@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(-5px)
    }

    50% {
        transform: translateX(-50%) translateY(5px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate(-50px, 30px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20%)
    }

    to {
        opacity: .06;
        transform: translate(0)
    }
}

@keyframes fadeInUpImg {
    from {
        opacity: 0;
        transform: translateY(20%)
    }

    to {
        opacity: .04;
        transform: translate(0)
    }
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.8)
    }

    to {
        opacity: 1;
        transform: translate(0) scale(1)
    }
}

@keyframes fadeInUpRightSystem {
    from {
        opacity: 0;
        transform: translateX(-10%)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes fadeInLeftSystem {
    from {
        opacity: 0;
        transform: translateX(15%)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes fadeInUpAbout {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

html {
    scroll-behavior: smooth
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0
}

.title {
    font-size: 3rem;
    line-height: 2.5rem;
    font-weight: 700;
    font-family: "Space Grotesk";
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 24px;
    text-align: center;
    margin-bottom: 3rem
}

.title_mini {
    font-size: 2.25rem
}

.title_dark {
    font-size: 3rem;
    line-height: 1;
    color: #141414
}

body {
    font-family: Inter;
    overflow-x: hidden;
    color: #313131;
    margin: 0
}

body::-webkit-scrollbar-thumb {
    background-color: #141414;
    border: 3px solid #141414
}

body::-webkit-scrollbar {
    width: 6px;
    height: 8px
}

.container {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto
}

.btn {
    margin: 0 auto;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    height: 2.75rem;
    cursor: pointer;
    gap: .5rem;
    background: #141414;
    padding: 1.75rem 2.5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #fff;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    align-items: center;
    width: 332px;
    text-decoration: none
}

.btn:hover {
    background: rgba(20, 20, 20, .9);
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.btn:hover svg {
    --tw-translate-x: .25rem;
    transform: translate(.25rem, 0)
}

.btn svg {
    margin-left: .75rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    pointer-events: none;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0
}

.btn_white {
    background-color: #fff;
    color: #141414
}

.btn_white:hover {
    background-color: hsla(0, 0%, 100%, .9);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.btn_big {
    width: 100%
}

section {
    overflow: hidden
}

.promo {
    display: flex;
    height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, #000 0, #141414 100%);
    align-items: center
}

.promo__inner {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .03;
    z-index: 0
}

.promo__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px
}

.promo__logo {
    display: block;
    width: auto;
    height: 48px;
    opacity: 0
}

.promo__logo.visible {
    animation: fadeUp 1s forwards
}

.promo__time {
    font-family: Inter;
    font-size: 12px;
    margin-bottom: 24px;
    color: hsla(0, 0%, 100%, .4);
    text-transform: uppercase;
    letter-spacing: .3em;
    opacity: 0
}

.promo__time.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.promo__title {
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    font-family: "Space Grotesk";
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 24px;
    opacity: 0
}

.promo__title span {
    color: hsla(0, 0%, 100%, .4)
}

.promo__title.visible {
    animation: fadeUp 1s ease-out .4s forwards
}

.promo .container {
    position: relative;
    z-index: 1
}

.promo__desc {
    max-width: 640px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: hsla(0, 0%, 100%, .6);
    font-weight: 300;
    font-family: Inter;
    margin-bottom: 2.5rem;
    opacity: 0
}

.promo__desc.visible {
    animation: fadeUp 1s ease-out .6s forwards
}

.promo__contacts {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    width: 150px;
    justify-content: flex-end
}

.promo__tel {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    color: hsla(0, 0%, 100%, .4);
    text-decoration: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    opacity: 0
}

.promo__tel.visible {
    animation: fadeUp 1s forwards
}

.promo__tel:hover {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    color: #fff
}

.promo__tel svg {
    width: 18px
}

.promo__network {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px
}

.promo__network__item {
    display: block;
    text-decoration: none;
    color: hsla(0, 0%, 100%, .4);
    text-decoration: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    opacity: 0
}

.promo__network__item svg {
    width: 20px;
    height: 20px
}

.promo__network__item:hover {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    color: #fff
}

.promo__network__item.visible {
    animation: fadeUp 1.2s forwards
}

.promo__network__item:nth-child(2).visible {
    animation: fadeUp 1.4s forwards
}

.promo__network__item:nth-child(3).visible {
    animation: fadeUp 1.6s forwards
}

.promo__network__item:nth-child(4).visible {
    animation: fadeUp 1.8s forwards
}

.promo__features {
    max-width: 640px;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 3rem
}

.promo__features__item {
    display: flex;
    gap: .75rem;
    align-items: center;
    width: calc(50% - .375rem);
    opacity: 0
}

.promo__features__item.visible {
    animation: fadeInLeft 1s ease-out .8s forwards
}

.promo__features__item:nth-child(2).visible {
    animation: fadeInLeft 1s ease-out .9s forwards
}

.promo__features__item:nth-child(3).visible {
    animation: fadeInLeft 1s ease-out 1s forwards
}

.promo__features__icon {
    display: block;
    border: 1px solid hsla(0, 0%, 100%, .3019607843);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem
}

.promo__features__icon svg {
    color: hsla(0, 0%, 100%, .6);
    width: .75rem;
    height: .75rem
}

.promo__features__text {
    font-size: .875rem;
    line-height: 1.25rem;
    color: hsla(0, 0%, 100%, .8);
    font-family: Inter
}

.promo__btns {
    display: flex;
    gap: 1rem
}

.promo__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 1.75rem 2.5rem;
    height: 2.75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #141414;
    font-family: Inter;
    cursor: pointer;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    text-decoration: none;
    opacity: 0
}

.promo__btn:hover {
    background-color: hsla(0, 0%, 100%, .9);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.promo__btn.visible {
    animation: fadeUp 1s ease-out 1s forwards
}

.promo__btn_dark {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border: 1px solid hsla(0, 0%, 100%, .4)
}

.promo__btn_dark:hover {
    background-color: hsla(0, 0%, 100%, .9);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    color: #141414
}

.promo__btn_dark.visible {
    animation: fadeUp 1s ease-out 1.2s forwards
}

.promo__img {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    width: 800px;
    pointer-events: none;
    opacity: 0
}

.promo__img.visible {
    animation: fadeInRight 1.4s ease-out .8s forwards
}

.promo__img_small {
    width: 500px;
    right: 5rem;
    top: initial;
    bottom: 0;
    opacity: 0
}

.promo__img_small.visible {
    animation: fadeInUpImg 1.2s ease-out 1.4s forwards
}

.promo__img img {
    display: block;
    width: 100%;
    filter: brightness(2) contrast(.8)
}

.promo__arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: hsla(0, 0%, 100%, .3);
    animation: bounce 2s ease-in-out infinite
}

.promo__arrow svg {
    width: 20px
}

.location {
    padding: 7rem 0;
    background: linear-gradient(180deg, #000 0, #141414 100%)
}

.location__desc {
    display: flex;
    width: 220px;
    margin: 0 auto;
    margin-bottom: 1rem;
    gap: .5rem;
    align-items: center;
    color: hsla(0, 0%, 100%, .4)
}

.location__desc svg {
    display: block;
    width: 1rem
}

.location__desc span {
    text-transform: uppercase;
    letter-spacing: .3em;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    font-family: Inter
}

.location__desc.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.location__inner {
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.location__country {
    font-size: 1rem;
    line-height: 1.5rem;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-weight: 500;
    color: #fff
}

.location .title {
    opacity: 0
}

.location .title.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.location__item {
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: .75rem;
    border: 1px solid hsla(0, 0%, 100%, .2);
    background: hsla(0, 0%, 100%, .05);
    padding: .75rem 1.25rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #141414;
    opacity: 0
}

.location__item:hover {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    background: hsla(0, 0%, 100%, .2);
    border-color: hsla(0, 0%, 100%, .4)
}

.location__item:hover .location__country {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.location__item.visible {
    animation: fadeInUpScale 1s ease-out .4s forwards
}

.location__item:nth-child(2).visible {
    animation: fadeInUpScale 1s ease-out .45s forwards
}

.location__item:nth-child(3).visible {
    animation: fadeInUpScale 1s ease-out .5s forwards
}

.location__item:nth-child(4).visible {
    animation: fadeInUpScale 1s ease-out .55s forwards
}

.location__item:nth-child(5).visible {
    animation: fadeInUpScale 1s ease-out .6s forwards
}

.location__item:nth-child(6).visible {
    animation: fadeInUpScale 1s ease-out .65s forwards
}

.location__item:nth-child(7).visible {
    animation: fadeInUpScale 1s ease-out .7s forwards
}

.location__text {
    color: hsla(0, 0%, 100%, .4);
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: center;
    opacity: 0
}

.location__text.visible {
    animation: fadeUp 1s ease-out .9s forwards
}

.about {
    padding-top: 8rem;
    padding-bottom: 8rem;
    display: block;
    background: linear-gradient(180deg, #f9f9f9 0, #fff 100%)
}

.about__desc {
    letter-spacing: .3em;
    color: #737373;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0
}

.about__desc.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.about h2 {
    margin-bottom: 4rem
}

.about .title {
    opacity: 0
}

.about .title.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.about__iframe {
    display: flex;
    justify-content: center;
    opacity: 0
}

.about__iframe.visible {
    animation: fadeUp 1s ease-out .4s forwards
}

.about__video {
    display: block;
    margin: 0 auto;
    margin-bottom: 4rem
}

.about__video video {
    margin: 0 auto;
    max-width: 28rem;
    margin-bottom: 1.5rem
}

.about__video__desc {
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: center;
    color: #737373;
    margin-top: 1.5rem;
    opacity: 0
}

.about__video__desc.visible {
    animation: fadeUp 1s ease-out .8s forwards
}

.about__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.about__system {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 3rem);
    opacity: 0
}

.about__system.visible {
    animation: fadeInUpRightSystem 1s ease-out 1s forwards
}

.about__system__desc {
    display: block;
    width: 100%;
    color: #737373;
    line-height: 1.625;
    font-size: 1.125rem;
    margin-bottom: 2rem
}

.about__system__wrapper {
    display: flex;
    padding-top: 2rem;
    border-top: 1px solid #e6e6e6;
    gap: 1rem;
    width: 100%
}

.about__system__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    opacity: 0
}

.about__system__item.visible {
    animation: fadeInUpAbout 1s ease-out 1.1s forwards
}

.about__system__item:nth-child(2).visible {
    animation: fadeInUpAbout 1s ease-out 1.2s forwards
}

.about__system__item:nth-child(3).visible {
    animation: fadeInUpAbout 1s ease-out 1.3s forwards
}

.about__system__name {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    font-family: "Space Grotesk";
    margin-bottom: .25rem;
    text-align: center
}

.about__system__text {
    color: #737373;
    text-align: center;
    font-size: .75rem;
    line-height: 1rem
}

.about__steps {
    display: block;
    width: calc(50% - 3rem)
}

.about__steps__desc {
    color: #737373;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0
}

.about__steps__desc.visible {
    animation: fadeInLeftSystem 1s ease-out 1s forwards
}

.about__steps__item {
    gap: 1.5rem;
    display: flex;
    align-items: center;
    margin-top: 24px;
    opacity: 0
}

.about__steps__item.visible {
    animation: fadeInLeftSystem 1s ease-out 1.2s forwards
}

.about__steps__item:first-child {
    margin-top: 0
}

.about__steps__item:hover .about__steps__num {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    color: rgba(20, 20, 20, .3)
}

.about__steps__item:nth-child(3).visible {
    animation: fadeInLeftSystem 1s ease-out 1.3s forwards
}

.about__steps__item:nth-child(4).visible {
    animation: fadeInLeftSystem 1s ease-out 1.4s forwards
}

.about__steps__num {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    color: rgba(20, 20, 20, .1);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-family: "Space Grotesk"
}

.about__steps__text {
    color: #141414;
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-top: .5rem
}

.about .btn {
    opacity: 0
}

.about .btn.visible {
    animation: fadeUp 1s ease-out 1.6s forwards
}

.aud {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000 0, #141414 100%)
}

.aud__desc {
    margin: 0 auto;
    margin-bottom: 1rem;
    gap: .5rem;
    text-align: center;
    color: hsla(0, 0%, 100%, .4);
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3em;
    opacity: 0
}

.aud__desc.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.aud .title {
    margin-bottom: 4rem;
    opacity: 0
}

.aud .title.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.aud .btn {
    opacity: 0
}

.aud .btn.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.aud__wrapper {
    display: flex;
    align-items: center;
    gap: 1px;
    background: linear-gradient(180deg, #000 0, #141414 100%);
    overflow: hidden
}

.aud__num {
    color: hsla(0, 0%, 100%, .2);
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    font-family: "Space Grotesk";
    margin-bottom: 1rem
}

.aud__name {
    color: #fff;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-family: "Space Grotesk";
    margin-bottom: .75rem
}

.aud__text {
    color: hsla(0, 0%, 100%, .6);
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    line-height: 1.625;
    font-size: .875rem
}

.aud__logo {
    margin-bottom: 1.5rem;
    display: block;
    color: hsla(0, 0%, 100%, .4);
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    width: 2rem
}

.aud__item {
    flex: 1;
    background: #141414;
    padding: 3rem;
    animation-duration: .5s;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;
    opacity: 0
}

.aud__item.visible {
    animation: fadeUp 1s ease-out .4s forwards
}

.aud__item:nth-child(2).visible {
    animation: fadeUp 1s ease-out .6s forwards
}

.aud__item:nth-child(3).visible {
    animation: fadeUp 1s ease-out .8s forwards
}

.aud__item:hover {
    background: #fff
}

.aud__item:hover .aud__text {
    color: #737373
}

.aud__item:hover .aud__name {
    color: #141414
}

.aud__item:hover .aud__num {
    color: rgba(20, 20, 20, .1)
}

.aud__item:hover .aud__logo {
    color: rgba(20, 20, 20, .3)
}

.aud__notice {
    padding: 1.5rem;
    margin-top: 3rem;
    border: 1px solid rgba(230, 230, 230, .1);
    color: hsla(0, 0%, 100%, .4);
    text-align: center;
    opacity: 0
}

.aud__notice.visible {
    animation: fadeUp 1s ease-out 1s forwards
}

.program {
    padding: 8rem 0
}

.program__desc {
    letter-spacing: .3em;
    color: #737373;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0
}

.program__desc.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.program h2 {
    margin-bottom: 4rem
}

.program .title {
    opacity: 0
}

.program .title.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.program .btn {
    opacity: 0
}

.program .btn.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.program__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: stretch
}

.program__item {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: 18rem;
    text-align: center;
    padding: 1.25rem;
    border: 1px solid #e6e6e6;
    opacity: 0
}

.program__item.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.program__item:nth-child(2).visible {
    animation: fadeUp 1s ease-out .4s forwards
}

.program__item:nth-child(3).visible {
    animation: fadeUp 1s ease-out .6s forwards
}

.program__title {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #141414;
    font-family: "Space Grotesk"
}

.program__title span {
    color: rgba(20, 20, 20, .1);
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700
}

.program__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.program__list__item {
    color: #737373;
    line-height: 1.625;
    font-size: .75rem;
    position: relative;
    padding-left: 12px;
    text-align: left
}

.program__list__item::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #737373
}

.program__notice {
    display: flex;
    margin: 0 auto;
    width: -moz-max-content;
    width: max-content;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #737373;
    opacity: 0
}

.program__notice.visible {
    animation: fadeUp 1s ease-out .8s forwards
}

.program__notice span {
    color: #141414;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    font-family: "Space Grotesk"
}

.program__notice::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    background: #737373;
    height: 1px;
    left: -4rem
}

.program__notice::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    background: #737373;
    height: 1px;
    right: -4rem
}

.outcome {
    padding: 7rem 0;
    background: linear-gradient(180deg, #000 0, #141414 100%)
}

.outcome__desc {
    margin: 0 auto;
    margin-bottom: 1rem;
    color: hsla(0, 0%, 100%, .4);
    text-align: center;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3em;
    opacity: 0
}

.outcome__desc.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.outcome .btn,
.outcome .title {
    opacity: 0
}

.outcome .btn.visible,
.outcome .title.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.outcome__wrapper {
    display: flex;
    gap: 1px;
    background: linear-gradient(180deg, #000 0, #141414 100%);
    align-items: stretch;
    flex-wrap: wrap;
    padding-bottom: 1px
}

.outcome__item {
    flex: 1;
    background: #141414;
    padding: 2rem;
    animation-duration: .5s;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0
}

.outcome__item.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.outcome__item:nth-child(2).visible {
    animation: fadeUp 1s ease-out .4s forwards
}

.outcome__item:nth-child(3).visible {
    animation: fadeUp 1s ease-out .6s forwards
}

.outcome__item:nth-child(4).visible {
    animation: fadeUp 1s ease-out .8s forwards
}

.outcome__item:nth-child(5).visible {
    animation: fadeUp 1s ease-out 1s forwards
}

.outcome__item:nth-child(6).visible {
    animation: fadeUp 1s ease-out 1.2s forwards
}

.outcome__item:nth-child(7).visible {
    animation: fadeUp 1s ease-out 1.4s forwards
}

.outcome__item__num {
    color: hsla(0, 0%, 100%, .2);
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-family: "Space Grotesk";
    margin-bottom: 1rem
}

.outcome__item__name {
    color: #fff;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-weight: 600;
    font-family: "Space Grotesk";
    margin-bottom: .5rem
}

.outcome__item__text {
    color: hsla(0, 0%, 100%, .6);
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-size: .875rem;
    line-height: 1.25rem
}

.outcome__item:hover {
    background: #fff
}

.outcome__item:hover .outcome__item__text {
    color: #737373
}

.outcome__item:hover .outcome__item__name {
    color: #141414
}

.outcome__item:hover .outcome__item__num {
    color: rgba(20, 20, 20, .1)
}

.outcome__item:hover .aud__logo {
    color: rgba(20, 20, 20, .3)
}

.outcome__item__last {
    display: flex;
    width: 100%;
    justify-content: center;
    background: linear-gradient(180deg, #000 0, #141414 100%);
    margin-top: 1px
}

.outcome__item__last .outcome__item {
    width: 25%;
    flex: none
}

.form {
    padding: 8rem 0;
    overflow: visible;
}
.wpcf7 form .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
	width: max-content;
    margin: 2em auto 1em;
    padding: 15px 20px;
    border: 2px solid rgba(20, 20, 20, .2);
}
.form__inner {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    opacity: 0
}

.form__inner.visible {
    animation: fadeUp 1s ease-out .2s forwards
}

.form .program__desc {
    opacity: 0
}

.form .program__desc.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.form .title {
    opacity: 0
}

.form .title.visible {
    animation: fadeUp 1s ease-out 0s forwards
}

.form__row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.form__row:first-child {
    margin-bottom: 1.5rem
}

.form__item {
    display: block;
    width: calc(50% - .75rem)
}

.form__label {
    display: block;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    margin-bottom: .75rem
}

.form__input {
    height: 50px;
    padding: 18px 12px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    outline: 0;
    border: 1px solid rgba(20, 20, 20, .2);
    width: 100%;
    position: relative;
    font-size: .875rem;
    line-height: 1.25rem
}

.form__input:active,
.form__input:focus {
    border-color: #141414;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #141414, 0 0 rgba(0, 0, 0, 0)
}

.form__input:nth-child(3) {
    margin-bottom: 10px
}

.form__input::-moz-placeholder {
    color: #737373
}

.form__input::placeholder {
    color: #737373
}

.form__options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
    display: none;
    z-index: 50;
    overflow: hidden;
    padding: 4px
}

.form__select {
    position: relative;
    display: flex;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .5rem .75rem;
    border: 1px solid rgba(20, 20, 20, .2);
    justify-content: space-between;
    align-items: center;
    height: 50px;
    cursor: pointer
}

.form__select svg {
    width: 16px
}

.form__select:focus {
    border-color: #141414;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #141414, 0 0 rgba(0, 0, 0, 0)
}

.form__select.active .form__options {
    display: block
}

.form select {
    position: absolute;
    border: 0;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    overflow-wrap: normal;
    font-family: 'Inter';
}
.form__select .wpcf7-form-control-wrap{
    position: absolute;
}
.option {
    padding: 8px 12px;
    transition: all .2s
}

.option:hover {
    background: rgba(20, 20, 20, .9);
    color: #fff;
    transition: all .2s
}

.option.selected {
    background: rgba(20, 20, 20, .9);
    color: #fff
}
/* Убираем лишние отступы и блоки CF7, чтобы не ломать верстку */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Скрываем нативный селект CF7 внутри нашего кастомного */
.form__select select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

/* Стили для кнопки (теперь это submit) */
button.btn_big {
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
}
.footer {
    background: linear-gradient(180deg, #000 0, #141414 100%);
    padding: 4rem 0
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer__block {
    display: flex;
    align-items: center;
    gap: 1rem
}

.footer__block span {
    color: hsla(0, 0%, 100%, .3);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .75rem;
    line-height: 1rem
}

.footer__logo {
    height: 1.5rem
}

.footer__copy {
    color: hsla(0, 0%, 100%, .3);
    font-size: .75rem;
    line-height: 1rem;
    letter-spacing: .025em
}

.footer .promo__contacts {
    justify-content: center
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
}

.modal.active {
    opacity: 1;
    visibility: visible
}

.modal__wrapper {
    background-color: #fff;
    padding: 1.5rem;
    max-width: 28rem;
    overflow: visible;
    position: relative
}
.modal__wrapper .wpcf7 form .wpcf7-response-output, .modal__wrapper.wpcf7 form.sent .wpcf7-response-output {
	width: 100%;
    margin: 2em auto 1em;
    margin: 2em auto 1em;
    padding: 15px 20px;
    border: 2px solid rgba(20, 20, 20, .2);
}
.modal__title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-family: "Space Grotesk";
    text-align: center;
    letter-spacing: -.025em;
    font-weight: 600;
    color: #141414;
    margin-bottom: 6px
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    opacity: .7;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.modal__close:hover {
    opacity: 1;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.modal__close:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #141414, 0 0 rgba(0, 0, 0, 0);
    outline: 2px solid rgba(0, 0, 0, 0);
    outline-offset: 2px
}

.modal__close svg {
    display: block;
    width: 100%
}

.modal__text {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #737373;
    text-align: center;
    margin-bottom: 1rem
}

.modal .form__item {
    width: 100%
}

.modal .form__row {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px
}

.modal .btn {
    margin-top: 16px
}

.modal .btn:disabled {
    opacity: .5;
    pointer-events: none
}

@media(min-width:1400px) {
    .container {
        max-width: 1400px
    }
}

@media(max-width:1279px) {
    .promo__title {
        font-size: 60px
    }
}

@media(max-width:1023px) {
    .promo__title {
        font-size: 3rem
    }

    .promo__img_small {
        display: none
    }

    .location {
        padding: 5rem 0
    }

    .about {
        padding: 6rem 0
    }

    .about__content {
        flex-direction: column;
        gap: 4rem
    }

    .about__system {
        width: 100%
    }

    .about__steps {
        width: 100%
    }

    .aud {
        padding: 6rem 0
    }

    .aud__item {
        padding: 30px
    }

    .btn {
        margin-top: 3rem
    }

    .title {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .title_mini {
        font-size: 1.875rem
    }

    .program {
        padding: 6rem 0
    }

    .program__wrapper {
        flex-direction: column
    }

    .program__item {
        width: 100%
    }

    .program__list {
        margin: 0 auto;
        width: 255px
    }

    .outcome {
        padding: 6rem 0
    }

    .outcome__wrapper {
        flex-wrap: wrap
    }

    .outcome__item {
        flex: auto;
        width: calc(50% - .5px);
        padding: 24px
    }

    .outcome__item__last .outcome__item {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .form {
        padding: 6rem 0
    }
}

@media(max-width:768px) {
    .promo__title {
        font-size: 2.25rem
    }

    .promo__desc {
        font-size: 1.125rem;
        line-height: 1.625rem
    }

    .promo__img {
        display: none
    }

    .title {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .title_mini {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .location__item {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .location__country {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .location__inner {
        gap: .75rem
    }

    .aud__wrapper {
        flex-direction: column
    }

    .aud__item {
        width: 100%
    }
}

@media(max-width:639px) {
    .promo__features {
        flex-direction: column
    }

    .promo__features__item {
        width: 100%
    }

    .promo__btns {
        flex-direction: column
    }

    .container {
        padding: 0 1.5rem
    }

    .program__notice {
        max-width: 75%;
        text-align: center
    }

    .program__notice::before {
        left: -60px
    }

    .program__notice::after {
        right: -60px
    }

    .program .container {
        padding: 0;
        margin: 0 auto;
        width: calc(100% - 3rem);
        overflow: hidden
    }

    .outcome__item {
        width: 100%
    }

    .outcome__item__last .outcome__item {
        width: 100%
    }

    .form__row {
        flex-wrap: wrap;
        gap: 1.5rem
    }

    .form__item {
        width: 100%
    }

    .btn_big {
        padding: 1.75rem .5rem
    }

    .footer__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem
    }
}

@media(max-width:360px) {
    .btn {
        width: 100%
    }
}