body {
    margin: 0;
    font-style: cursive;
    font-size: 15px;
    line-height: 1.6;
    color: black;
    font-family: 'TildaSans', Arial, sans-serif;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
img {
    margin: 0;
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url("images/backgroung.jpg") center no-repeat;

    /* background: rgb(25, 0, 255); */
    /* opacity: 0.1; */
    /* align-items: center; */
    /* opacity: 0.5; */
    position: relative;
    -webkit-background-size: cover;
    background-size: cover;
}


.intro::before {
    content: "";
    position: absolute;
    inset: 0;
    /* too, lest, right, bottom = 0  */
    background: -webkit-linear-gradient(top, rgba(9, 24, 51, 0.8), rgba(9, 8, 31, 0.7));
    /* background: -webkit-linear-gradient(top, rgba(9, 47, 51, 0.8), rgba(8, 29, 31, 0.7)); */
    /* background: rgba(10, 10, 10, 0.3); */
}



.intro__inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro__title {
    color: rgb(240, 245, 255);
    font-size: 65px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 2;
}


.content {
    /* text-align: center; */
    font-size: 22px;
    color: rgb(240, 245, 255);
    font-weight: 300;
}


/* Container */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    /* padding-top: 10px; */
    width: 100%;
    /* height: 100px;   */
    /* relative - относительное позиционирование
    absolute - по факту какое  */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3)
}

.header.active {
    padding: 10px 0;

    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    background-color: #0a0322;

}

.header.active .header__inner {
    height: 50%;
}

header::after {
    content: "";
    display: block;
    width: 100%;
}

.header__inner {
    /* position: relative; */
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    width: auto;
    height: 100px;
    /* justify-content Отвечает за выравнивание элементов по главной оси: */
    /* align-items работает с осью, перпендикулярной главной оси. */
    align-items: center;
}

.header__logo {
    font-family: 'Cairo', sans-serif;
    font-size: 25px;
    font-style: initial;
    color: whitesmoke;
    cursor: pointer;
    transition: color .2s linear;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header__logo .logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: opacity .2s linear;
}

.header__logo .logo-text {
    color: whitesmoke;
    font-family: 'Cairo', sans-serif;
    font-size: 25px;
    font-weight: 500;
}

.header__logo:hover .logo-img {
    opacity: 0.85;
}

.header__logo:hover .logo-text {
    color: rgba(245, 245, 245, 0.862);
}

.privacy__logo {
    text-decoration: none;
    color: white;
}

.nav {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav__link {
    /*  элемент отображается как строчный элемент, но его содержимое может быть отформатировано как блок. */
    display: inline-block;
    /* Выравнивает верхний край элемента и его потомков с верхним краем всей строки. */
    margin: 0 10px;
    position: relative;
    color: white;
    text-decoration: none;

}

.nav__link:hover:after {
    opacity: 1;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;

    background-color: #ffffff;

    opacity: 0;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;

    transition: opacity .3s linear;
}

.header__logo:hover {
    color: rgba(245, 245, 245, 0.862)
}

.nav-toggle {
    display: none;
    padding: 10px 0;
    width: 30px;
    position: absolute;
    top: 34%;
    right: 3%;
    /* top: 40px;
    right: 30px; */
    z-index: 1;


    cursor: pointer;
    font-size: 0;
    color: transparent;
    border: 0;
    background: 0;
}

.nav-toggle {
    outline: 0;
}

/* Три полоски у бургер меню */
.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;

    transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item::before,
.nav-toggle__item::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform .2s linear;
}

.nav-toggle__item::before {
    top: -8px;
}

.nav-toggle__item::after {
    bottom: -8px;
}

/* Делаем крестик, когда бургер меню активно */
.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle.active .nav-toggle__item::before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0, -3px, 0);
}

.nav-toggle.active .nav-toggle__item::after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translateY(2px);
}



/* Moveon */
.moveon {
    width: 100%;

}

.moveon__inner {
    width: 20px;
    position: absolute;
    right: 46%;
    bottom: 60px;
    cursor: pointer;
}

.moveon__inner::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;

    border-top: 3px solid white;
    border-right: 3px solid white;

    position: absolute;
    right: 50%;
    transform: translateY(-50%) rotate(135deg);

}


/* Arrow */

.arrow {
    display: block;
    cursor: pointer;
    position: absolute;
    z-index: 1000;
    right: 50%;
    transform: translateX(50%);
    bottom: 60px;
    padding-bottom: 18px;

    font-size: 0;
    color: transparent;
    border: 0;
    background: 0;
}

.arrow__icon {
    display: block;
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1;
    transition: stroke 0.3s linear;
    animation: slide 2.5s ease-in-out infinite;
}

.arrow__icon:hover {
    stroke: #a6abad;
}

@keyframes slide {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(18px);
    }


    100% {
        transform: translateY(0);
    }

}

/* Mission */
.section {
    /* Внутренний отступ (1 парам -> по горизонтали, 2 парам -> по вертикали  */
    padding: 197px 0;
}

.section--gray {
    background-color: #ededed;
    padding: 0;
}

.ourmission {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ourmission__item {
    padding: 0 15px;
    display: flex;
    text-align: center;
    align-items: center;
    width: 50%;
}

.ourmission__img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ourmission__content {
    text-align: center;

}

.ourmission__title {
    font-size: 35px;
    font-weight: 900;
    color: #000000;
    font-family: 'Noto Sans Display', sans-serif;

}

.ourmission__title::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 55px;
    height: 2.2px;
    background-color: #259da8;
    margin: 22px auto;
}


.ourmission__text {
    font-size: 16px;
    font-weight: 200;
    color: #5f6466;
    font-family: 'Noto Sans Display', sans-serif;

}

/* Services */

.services {
    box-sizing: border-box;
    background-color: #ffffff;
    margin: 0 10px;
}

.section__header {
    padding: 150px 0;
    text-align: center;
}

.section__title {
    font-size: 49px;
    font-family: 'Noto Sans Display', sans-serif;
    font-weight: 570;
}

.service {
    width: 100%;
    display: flex;
    flex-wrap: wrap;

    /* margin: 0 -15px; */
}

.service__item {
    width: 50%;
    min-height: 250px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service__img {
    max-width: 100%;
    height: auto;
}

.service__about {
    padding: 0 40px;
}

.about__title {
    font-size: 40px;
    font-weight: 500;
    font-family: 'Noto Sans Display', sans-serif;
    line-height: 1.6;
    padding-bottom: 20px;
}

.about__content {
    font-size: 16px;
    font-weight: 200;
    color: #5f6466;
    font-family: 'Noto Sans Display', sans-serif;
}

/* Pricing */

.pricing {
    background-color: #ededed;
    padding: 92px 0;
}

.pricing__inner {
    display: flex;
    justify-content: center;
}

.pricing__content {
    width: 100%;
    max-width: 760px;
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #dfe4e7;
    border-radius: 8px;
    padding: 46px 44px;
    box-shadow: 0 14px 32px rgba(12, 23, 40, 0.08);
}

.pricing__eyebrow {
    color: #2d7980;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.35;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.pricing__title {
    color: #111111;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 58px;
    font-weight: 620;
    line-height: 1.1;
    margin-bottom: 18px;
}

.pricing__text {
    color: #4f5557;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 580px;
}

/* Contacts */

.contacts {
    background-color: #ededed;
}

.contants__header {
    text-align: center;
}

.contacts__title {
    padding: 160px 0;
    font-size: 50px;
    font-weight: 530;
}

.contacts__email {
    font-size: 40px;
    font-weight: 550;
    padding-bottom: 130px;
    word-wrap: break-word;
    /* Перенос длинных слов */
    /*     text-align: center; Центрирование текста
font-size: 1.2em; Размер шрифта */
}

.contacts__address {
    font-size: 22px;
    font-weight: 0;
    color: #282727;
    font-family: 'Noto Sans Display', sans-serif;
    padding-bottom: 30px;
}

.contacts__emblem {
    text-transform: uppercase;
    font-size: 18px;
    color: #6a6f71;
    padding-bottom: 200px;
}

.footer {
    background-color: #111111;
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(220px, 1.15fr) minmax(130px, 0.65fr) minmax(220px, 1fr) minmax(250px, 1.1fr);
    gap: 34px;
    width: 100%;
    max-width: 1160px;
    height: auto;
    align-items: flex-start;
    color: #ffffff;
    margin: 0 auto;
    padding: 46px 35px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.footer__brand {
    gap: 12px;
}

.footer__logo {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 650;
}

.footer__company,
.footer__text {
    color: #c8cdd0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.55;
}

.footer__title {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.footer__dp,
.footer__link {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s linear;
}

.footer__dp {
    color: #dce0e2;
}

.footer__dp:hover,
.footer__link:hover {
    color: #4acef7;
    text-decoration: underline;
}

/* Privacy */

.privacy__container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 30px;
}

.privacy__header {
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 1;
}

.privacy__name {
    font-size: 26px;
    line-height: 1.45;
    font-weight: 600;
    color: #000;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}


.privacy-header__name {
    padding: 50px 0;
}

.privacy-header__inner {
    text-align: center;
}

.privacy-title {
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
    color: #000;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;

    text-transform: uppercase;
    padding: 30px 0;
}

.content__text {
    font-size: 20px;
    line-height: 1.55;
    /* font-family: 'TildaSans', Arial, sans-serif; */
    font-weight: 300;
    color: #000000ec;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
    text-align: left;
    margin-bottom: 5px;
}

.numeric {
    font-weight: 700;
}

/* Documents */

.documents {
    background-color: #ededed;
    min-height: 100vh;
    padding: 150px 0 180px;
}

.documents__container {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
}

.documents__hero {
    margin-bottom: 28px;
}

.documents__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #2d7980;
    background-color: rgba(37, 157, 168, 0.14);
    border: 1px solid rgba(37, 157, 168, 0.22);
    border-radius: 999px;
    padding: 6px 14px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.documents__title {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.1;
    color: #111111;
    font-family: 'Noto Sans Display', sans-serif;
    margin-bottom: 14px;
}

.documents__lead {
    font-size: 18px;
    max-width: 680px;
    color: #4f5557;
    font-family: "Inter", sans-serif;
    margin-bottom: 22px;
}

.documents__panel {
    background-color: #ffffff;
    border: 1px solid #dfe4e7;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 12px 24px rgba(12, 23, 40, 0.06);
}

.documents__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #131719;
    font-family: "Inter", sans-serif;
    margin-bottom: 16px;
}

.documents__details {
    overflow: hidden;
    border: 1px solid #d6dde0;
    border-radius: 12px;
    background-color: #ffffff;
}

.documents__row {
    display: grid;
    grid-template-columns: minmax(220px, 32%) 1fr;
    border-top: 1px solid #d6dde0;
}

.documents__row:first-child {
    border-top: 0;
}

.documents__row--highlight {
    background-color: rgba(37, 157, 168, 0.06);
}

.documents__label {
    background-color: #f3f6f8;
    border-right: 1px solid #d6dde0;
    color: #243033;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
    padding: 16px;
}

.documents__value {
    color: #202629;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    padding: 16px;
}

.documents__value a {
    color: #2d7980;
}

.documents__value p {
    margin-bottom: 10px;
}

.documents__value p:last-child {
    margin-bottom: 0;
}

.documents__ordered-list {
    margin: 0;
    padding-left: 20px;
}

.documents__ordered-list li + li {
    margin-top: 8px;
}

.documents__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.documents__item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    background: #fbfcfd;
    border: 1px solid #d6dde0;
    border-radius: 12px;
    overflow: hidden;
}

.documents__link {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    color: #111111;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.4;
    font-family: "Inter", sans-serif;
    font-weight: 550;
    transition: background-color 0.2s linear, color 0.2s linear;
}

.documents__link:hover {
    background-color: rgba(37, 157, 168, 0.06);
    color: #0f2f32;
}

.documents__link:focus-visible {
    outline: 2px solid #2d7980;
    outline-offset: -2px;
}

.documents__doc-title {
    display: block;
}

.documents__doc-action {
    font-size: 14px;
    color: #2d7980;
    font-weight: 600;
}

.documents__file {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #445154;
    border-left: 1px solid #d6dde0;
    background-color: #f3f6f8;
    padding: 0 14px;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
}

.nav__link--active::after {
    opacity: 1;
}


/* Адаптивность */

/* Монитор */
@media (max-width: 1050px) {
    .header__inner {}

    .about__title {
        font-size: 32px;
    }

    .about__content {
        font-size: 14px;
    }

    .pricing__title {
        font-size: 50px;
    }
}

/* Планшет */
@media (max-width: 990px) {

    /* Ourmission */
    .ourmission__title {
        font-size: 30px;
    }

    .ourmission__text {
        font-size: 16px;
    }

    /* Service */
    .about__title {
        font-size: 28px;
    }

    .footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 36px;
        padding: 36px 30px;
    }
}

@media (max-width: 870px) {
    .about__title {
        font-size: 22px;
    }

    .about__content {
        font-size: 12px;
    }

    .service__about {
        padding: 0 25px;
    }

    .pricing {
        padding: 74px 0;
    }

    .pricing__content {
        padding: 38px 30px;
    }
}

@media (max-width: 770px) {

    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(10, 3, 34, 0.3);
    }

    .nav.active {
        display: block;
    }

    .nav-toggle {
        display: block;
    }

    .nav__link {
        display: block;
        margin: 0;
        padding: 8px 10px;
    }

    .nav__link::after {
        width: 15%;
    }

    .service__item {
        width: 100%;
        height: auto;
    }

    .ourmission__item {
        width: 100%;
        margin-bottom: 35px;
        align-items: center;
        display: block;
    }

    .ourmission__item .ourmission__img {
        display: block;
        margin: 0 auto;
    }

    .about__title {
        font-size: 26px;
        font-weight: 500;
    }

    .about__content {
        font-size: 16px;
    }

    .pricing__title {
        font-size: 44px;
    }
}



/* Мобилка */
@media (max-width: 575px) {

    .intro__title {
        font-size: 44px;
        line-height: 1.25;
    }

    /* Ourmission */
    .ourmission__title {
        font-size: 30px;
    }

    .ourmission__text {
        font-size: 16px;
    }

    .footer__logo,
    .footer__company,
    .footer__text,
    .footer__dp,
    .footer__link {
        font-size: 13px;
    }

    .contacts__email {
        font-size: 30px;
        /* Уменьшить размер шрифта на мобильных устройствах */
    }

    .pricing {
        padding: 58px 0;
    }

    .pricing__content {
        padding: 32px 20px;
    }

    .pricing__eyebrow {
        font-size: 12px;
    }

    .pricing__title {
        font-size: 38px;
    }

    .pricing__text {
        font-size: 16px;
    }

}

@media (max-width: 575px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 32px 22px;
        text-align: left;
    }

    .footer__dp,
    .footer__link {
        width: auto;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .documents__title {
        font-size: 36px;
    }

    .documents__lead {
        font-size: 16px;
    }

    .documents__panel {
        border-radius: 12px;
        padding: 18px 16px;
    }

    .documents__row {
        display: block;
    }

    .documents__label {
        border-right: 0;
        border-bottom: 1px solid #d6dde0;
        padding: 14px;
    }

    .documents__value {
        padding: 14px;
    }

    .documents__item {
        flex-direction: column;
        align-items: stretch;
    }

    .documents__file {
        min-width: 0;
        border-left: 0;
        border-top: 1px solid #d6dde0;
        justify-content: flex-start;
        padding: 12px 20px;
    }

    .documents__link {
        font-size: 16px;
        padding: 16px;
    }
}
