@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
:root {
    --neutral4: #0B0F0F;
    --neutral12: #1D2021;
    --neutral70: #A9ACAC;

    --primary30: #005234;
    --primary50: #0A885A;
    --primary60: #2EA462;
    --primary70: #4FC07B;
    --primary80: #72DAA5;
    --primary90: #89F9AE;
    --primary95: #BFFFD9;

}
html {
    font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Unbounded', sans-serif;
    color: white;
}
body {
    background-color: var(--neutral4);
}
a {
    text-decoration: none;
}
button {
    border: none;
    cursor: pointer;
}
input {
    border: none;
}
input:focus {
    outline: none;
}
.container {
    max-width: 1420px;
    padding: 0 10px;
    margin: 0 auto;
    position: relative;
}
.header {
    padding-top: 10px;
    position: fixed;
    width: 100%;
    z-index: 100;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 25px;
    background-color: var(--neutral12);
    border-radius: 20px;
}
.header__logo {
    width: 42px;
}
.header__nav ul {
    display: flex;
    align-items: center;
    column-gap: 45px;
    list-style-type: none;
}
.header__link {
    font-size: 1rem;
    transition: color .1s;
}
.header__link:hover {
    color: var(--primary80);
}
.btn {
    display: inline-block;
    padding: 12px 50px;
    border-radius: 20px;
    transition: background-color .1s;
}
.btn-primary {
    background-color: var(--primary80);
    color: black;
}
.btn-primary:hover {
    background-color: var(--primary70);
}
.btn-primary:active {
    background-color: var(--primary60);
} 
main {
    margin-bottom: 80px;
}
main section {
    padding-top: 80px;
}
.main-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    color: var(--primary95);
}
.main-description {
    font-size: 2.25rem;
    color: var(--primary80);
}
.section__header {
    position: relative;
    margin-bottom: 70px;
}
.section__title {
    display: inline;
    margin-left: 100px;
    font-size: 2rem;
    position: relative;
    padding: 0 30px;
    background-color: var(--neutral4);
}
.section__header::before {
    content: '';
    height: 3px;
    width: 100%;
    background-color: var(--primary80);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color: var(--primary80);
}
.swiper .swiper-pagination-bullet {
    background-color: var(--primary30);
}
.footer {
    background: url('../images/footer-bg.svg') top / cover no-repeat;
    padding-top: 160px;
}
.footer-form {
    display: flex;
    margin-bottom: 110px;
}
.footer-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-form__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
}
.c-accent {
    color: var(--primary80);
}
.footer-form__form {
    display: flex;
    max-width: 320px;
    width: 100%;
    flex-direction: column;
    row-gap: 20px;
}
.footer-form__input {
    border-radius: 20px;
    padding: 12px 30px;
    color: black;
}
.footer-form__input, .footer-form__submit {
    height: 55px;
    width: 100%;
}
.footer-form__graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-form__like-icon:nth-child(1) {
    position: relative;
    top: -50px;
}
.footer-form__like-icon:nth-child(2) {
    position: relative;
    top: 50px;
}
.footer-info {
    display: flex;
    padding: 40px 0;
    column-gap: 150px;
    border-top: 3px solid var(--primary80);
}
.footer-logo {
    width: 100px;
    height: 105px;
}
.footer__columns {
    display: flex;
    column-gap: 70px;
}
.footer-column__title {
    font-size: 1.5rem;
    color: var(--primary60);
    font-weight: 500;
    margin-bottom: 20px;
}
.footer-column__list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    list-style-type: none;
}
.footer-column-list-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 1rem;
}
.burger-icon {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 9999;
    cursor: pointer;
}
.burger-icon__line {
    width: 100%;
    height: 3px;
    border-radius: 50px;
    background: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .1s ease, transform .1s ease;
}
.burger-icon__line::before, .burger-icon__line::after {
    content: '';
    width: 32px;
    height: 3px;
    border-radius: 50px;
    background: white;
    position: absolute;
}
.burger-icon__line::before {
    bottom: 10px;
    transition: opacity .1s ease;
}
.burger-icon__line::after {
    top: 10px;
}
.burger-icon_close > .burger-icon__line::before {
    opacity: 0;
}
.burger-icon_close > .burger-icon__line {
    transform: rotate(45deg);
}
.burger-icon_close > .burger-icon__line::after {
    transform: rotate(-90deg);
    top: 0;
}
.modal-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-wrapper_active {
    display: flex;
}
.modal {
    background-color: var(--neutral12);
    border-radius: 20px;
    padding: 20px 20px 40px;
}
.modal__close-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.modal__close-btn {
    cursor: pointer;
}
.modal__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary80);
}
.modal__form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 0 20px;
    margin-bottom: 15px;
}
.modal__input {
    height: 55px;
    width: 100%;
    padding: 0 30px;
    border-radius: 20px;
    font-size: 16px;
    color: black;
}
.modal__submit {
    height: 55px;
}
.modal__agreement {
    text-align: center;
    font-size: 12px;
}
.modal__politics-link {
    text-decoration: underline;
    color: var(--primary50);
}
.notification {
    background-color: var(--neutral12);
    border-radius: 15px;
    font-size: 14px;
    padding: 10px;
    max-width: 300px;
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 103;
    transition: opacity .3s;
}
@media screen and (max-width: 1200px) {
    .footer-info {
        column-gap: 50px;
    }
    .footer__columns {
        column-gap: 25px;
    }
    .footer-column__title {
        font-size: 1.25rem;
    }
    .footer-column-list-item {
        font-size: 0.75rem;
    }
}
@media screen and (max-width: 1100px) {
    .header__nav {
        display: none;
        position: fixed;
        z-index: 10;
        left: 0;
        top: 0;
        width: 100dvw;
        height: 100dvh;
        background-color: var(--neutral12);
    }
    .header__nav ul {
        flex-direction: column;
        justify-content: center;
        column-gap: 0;
        row-gap: 30px;
        width: 100%;
        height: 100%;
    }
    .header__nav_active {
        display: block;
    }
    .header__link {
        font-size: 16px;
    }
    .burger-icon {
        display: block;
    }
}
@media screen and (max-width: 1080px) {
    .footer-form__title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .footer-form__form {
        max-width: 250px;
    }
    .footer-form__input {
        font-size: 12px;
    }
    .footer-form__like-icon:nth-child(1) {
        width: 170px;
    }
    .footer-form__like-icon:nth-child(2) {
        width: 120px;
    }
}
@media screen and (max-width: 800px) {
    .header__inner {
        height: 70px;
    }
}
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    .section__header {
        display: flex;
        justify-content: center;
    }
    .section__title {
        margin-left: 0;
    }
    .footer-column__title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 660px) {
    .footer-info {
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 40px;
    }
}
@media screen and (max-width: 640px) {
    .footer-form {
        justify-content: center;
    }
    .footer-form__graphic {
        display: none;
    }
    .footer-column-list-item {
        font-size: 10px;
    }
}
@media screen and (max-width: 630px) {
    html {
        font-size: 13px;
    }
}
@media screen and (max-width: 580px) {
    html {
        font-size: 12px;
    }
}
@media screen and (max-width: 550px) {
    .main-title {
        font-size: 3.5rem;
    }
    .main-description {
        font-size: 1.75rem;
    }
    .news__inner {
        gap: 10px;
    }
    .footer__columns {
        flex-direction: column;
        column-gap: 0;
        row-gap: 30px;
    }
    .footer-column__title {
        text-align: center;
    }
    .footer-column-list-item {
        justify-content: center;
    }
}
@media screen and (max-width: 430px) {
    .main-title {
        font-size: 2.5rem;
    }
    .main-description {
        font-size: 1.25rem;
    }
}
@media screen and (max-width: 400px) {
    .modal {
        width: 100%;
    }
}