@charset "UTF-8";

/* Шрифты */
@font-face {
    font-family: "Fira Sans Condensed";
    src: url("/fonts/FiraSansCondensed-Regular.woff2") format("woff2"), url("/fonts/FiraSansCondensed-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Fira Sans Condensed";
    src: url("/fonts/FiraSansCondensed-SemiBold.woff2") format("woff2"), url("/fonts/FiraSansCondensed-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Fira Sans Condensed";
    src: url("/fonts/FiraSansCondensed-Bold.woff2") format("woff2"), url("/fonts/FiraSansCondensed-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Fira Sans Condensed";
    src: url("/fonts/FiraSansCondensed-Medium.woff2") format("woff2"), url("/fonts/FiraSansCondensed-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: fallback;
}

/* Основные настройки */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    font-family: "Fira Sans Condensed", Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.45;
    color: #fff;
    background-color: #000;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.header,
.footer {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
}

.wrapper {
    background-image: url("images/main-bg2.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 20px 0;
}

.header__logo {
    max-width: 400px;
    min-width: 250px;
    width: 100%;
}

.header__icon {
    width: 100%;
    height: 100px;
    fill: #fff;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main__title {
    margin-bottom: 25px;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
}

.main__text {
    padding: 0;
    margin: 0;
    font-size: 26px;
    text-align: center;
}

.footer {
    padding: 20px 0 60px;
}

.footer__title {
    padding: 0;
    margin: 0 0 25px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

.contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-list__item {
    padding: 5px 0;
}

.contact-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 22px;
    font-weight: 400;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.contact-list__link:hover {
    color: #ffd000;
}

.contact-list__icon {
    display: block;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    fill: #fff;
    -webkit-transition: fill 0.2s ease;
    -o-transition: fill 0.2s ease;
    transition: fill 0.2s ease;
}

.contact-list__link:hover .contact-list__icon {
    fill: #ffd000;
}

@media screen and (max-width: 560px) {
    .main__title {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.1;
    }

    .main__text {
        font-size: 18px;
    }

    .footer__title {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .contact-list__link {
        font-size: 18px;
    }

    .contact-list__icon {
        width: 22px;
        height: 22px;
    }
}