@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap);

:root {
    --blue: #56A9BF;
    --black: #2B2B2B;
    --white: #FFFFFF
}

@font-face {
    font-family: 'Actay Wide';
    src: url(../resources/fonts/actaywide-bold.woff2) format('woff2'), url(../resources/fonts/actaywide-bold.woff) format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url(../resources/fonts/montserrat_light.woff2) format('woff2'), url(../resources/fonts/montserrat_light.woff) format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

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

.page {
    height: 100%;
    font-family: "Nunito Sans", Inter, sans-serif;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden
}

@media (min-width:320px) {
    .page {
        font-size: calc(100vw / 390 * 10);
        overflow-x: hidden
    }
}

@media (min-width:640px) {
    .page {
        overflow-x: visible;
        font-size: calc(100vw / 1440 * 10)
    }
}

.page__body {
    margin: 0;
    min-width: 32rem;
    min-height: 100%;
    font-size: 2.4rem;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

main {
    position: relative;
    z-index: 2;
    width: 100%
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden
}

.content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

a,
button {
    -webkit-transition: color .2s, background-color .2s, background .2s, opacity .2s, -webkit-transform .2s;
    transition: color .2s, background-color .2s, background .2s, opacity .2s, transform .2s, -webkit-transform .2s;
    -o-transition: color .2s, background-color .2s, background .2s, opacity .2s, transform .2s;
    cursor: pointer
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    padding: 0;
    margin: 0
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

dd,
dl,
dt {
    margin: 0
}

ul {
    padding-left: 1rem;
    margin: 0;
    list-style-type: none
}

ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

ul li::before {
    content: '';
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    display: block;
    background-color: inherit;
    margin-right: .7rem;
    margin-top: 1rem
}

li:not(:last-child) {
    margin-bottom: 1.5rem
}

.is-hidden {
    display: none !important
}

.btn-reset {
    border: none;
    padding: 0;
    background: 0 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

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

.input-reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: #fff
}

input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

textarea {
    resize: none
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
    display: none
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0)
}

.container {
    width: 137rem;
    max-width: 100%;
    margin: 0 auto
}

@media (max-width:640px) {
    .page__body {
        font-size: 1.8rem;
        overflow-x: hidden
    }

    ul li::before {
        margin-right: .7rem;
        margin-top: .7rem
    }

    li:not(:last-child) {
        margin-bottom: 1.1rem
    }

    .container {
        width: 37rem
    }
}

.main-btn {
    font-family: "Nunito Sans";
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: #56a9BFCC;
    border: 1px solid #fffFFF80;
    backdrop-filter: blur(12px);
    text-align: center;
    -webkit-transition: .2s;
    transition: .2s;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: .5rem;
    position: relative;
    z-index: 1;
    padding: 2rem 5rem
}

.white-btn {
    color: #000;
    background: #fffFFFCC
}

@media (max-width:640px) {
    .main-btn {
        font-size: 1.6rem;
        padding: 1.5rem 3rem;
        text-align: center
    }
}

.title {
    font-family: 'Actay Wide';
    font-weight: 700;
    font-size: 6.4rem;
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
    text-wrap: balance
}

.title.main-title {
    font-size: 8.4rem;
    color: var(--white);
    text-align: left
}

.subtitle {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #969696;
    text-align: center;
    margin-bottom: 1rem
}

@media (max-width:640px) {
    .title {
        font-size: 3.2rem;
        margin-bottom: 3rem
    }

    .title.main-title {
        font-size: 2.8rem;
        margin-bottom: 2rem
    }

    .subtitle {
        font-size: 1.4rem;
        margin-bottom: .5rem
    }
}

.form__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem
}

.form__input {
    font-family: "Nunito Sans";
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--white);
    background: 0 0;
    font-weight: 300;
    padding: 1.6rem 2rem;
    border: 1px solid #fffFFF80;
    width: 100%;
    outline: 0;
    margin-bottom: 0;
    border-radius: .5rem;
    margin-top: 0
}

.form__input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .7)
}

.form__input::-moz-placeholder {
    color: rgba(255, 255, 255, .7)
}

.form__input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .7)
}

.form__input::-ms-input-placeholder {
    color: rgba(255, 255, 255, .7)
}

.form__input::placeholder {
    color: rgba(255, 255, 255, .7)
}

.animated {
    visibility: hidden;
    opacity: 0
}

.custom-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.custom-checkbox>span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.custom-checkbox>span::before {
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border: 1px solid #bdbdbd;
    margin-right: .6rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% 70%;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    margin-bottom: .2rem
}

.custom-checkbox>input:focus+span::before,
.custom-checkbox>input:focus:not(:checked)+span::before,
.custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
    border-color: var(--blue)
}

.custom-checkbox>input:checked+span::before {
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6741 5.89355L8.01619 15.7883L4.30566 12.0778' stroke='rgb(255, 255, 255)' stroke-width='1.94595' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.custom-checkbox>input:disabled+span::before {
    background-color: #e9ecef
}

.form__btn {
    text-transform: uppercase;
    width: 100%;
    font-size: 1.8rem;
    border-radius: .5rem;
    padding: 1.8rem 5rem;
    margin-top: 1.5rem;
    margin-bottom: 0
}

.acceptance__text {
    font-size: 1.1rem;
    line-height: 1.1;
    font-weight: 200;
    letter-spacing: -.02em;
    color: #fff;
    opacity: .5
}

.modal {
    position: fixed;
    z-index: 999;
    inset: 0;
    bottom: initial;
    background: #00000080;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s, visibility .2s;
    transition: opacity .2s, visibility .2s;
    overflow-y: scroll
}

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

.modal__inner {
    position: relative;
    max-width: 78.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.modal__content {
    border-radius: 1rem;
    padding: 3.2rem 10rem 5rem;
    background-color: #2b2b2b;
    width: 100%
}

.modal__content::-webkit-scrollbar {
    width: 0;
    height: 0
}

.modal__close {
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: transparent;
    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;
    position: absolute;
    z-index: 10;
    top: 1rem;
    -webkit-transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    right: 1rem;
    color: #fff
}

.modal__close svg {
    width: 1.2rem;
    height: 1.2rem
}

.modal__title {
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 3.1rem
}

.modal__form {
    max-width: 37.5rem;
    margin: 0 auto
}

.modal__form .form__input {
    background: #fffFFF33
}

@media (max-width:640px) {
    .modal__inner {
        max-width: 37rem
    }

    .modal__content {
        padding: 3rem 1.2rem
    }

    .modal__title {
        font-size: 3rem;
        margin-bottom: 2.3rem
    }
}

.header {
    padding: 1.7rem 0;
    background: linear-gradient(90.01deg, rgba(156, 156, 156, .025) .01%, rgba(11, 28, 36, .25) 50.22%, rgba(156, 156, 156, .025) 99.99%);
    border-bottom: 1px solid #fff;
    backdrop-filter: blur(35px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header__btn {
    color: #fff;
    background-color: transparent;
    border-radius: .5rem;
    -webkit-box-shadow: 0 0 10px 0 #00000026 inset;
    box-shadow: 0 0 10px 0 #00000026 inset;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
    border: 1px solid #fff
}

.header__logo {
    display: block;
    width: 38.6rem;
    height: 7.7rem;
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    /* mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%); */
    /* background: linear-gradient(90.01deg, rgba(156, 156, 156, 1) .01%, rgba(11, 28, 36, 1) 50.22%, rgba(156, 156, 156, 1) 99.99%); */
border-radius: 1rem;
}
.header__logo img {
    object-fit: contain;
}
.header__logo::before {
    content: "";
    z-index: -1;
    position: absolute;
    height: calc(100% + 1rem);
    width: calc(100% + 1rem);
    top: -120%;
    left: -120%;
    background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.1) 55%, transparent 100%);
    /* transition: all 8s; */
    transform: rotate(-45deg);
    animation: shine 8s infinite forwards;
  filter: blur(5px);

}
/* .header::after {
    content: "";
    z-index: 2;
    width: 38.6rem;
    height: 7.7rem;
    display: block;
    position: absolute;
    border: 1rem solid rgba(255, 255, 255, 0.1);
    filter: blur(10px);
    top: 1rem;
    left: 53rem;
} */

@keyframes shine {
    0% {
      top: -120%;
      left: -120%;
    }
    20% {
      left: 100%;
      top: 100%;
    }
    40% {
      left: 100%;
      top: 100%;
    }
    100% {
      left: 100%;
      top: 100%;
    }
  }
.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1rem
}

.header__link {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    padding-bottom: .7rem;
    border-bottom: .2rem solid transparent
}

.header__link.current {
    border-bottom: .2rem solid var(--blue);
    font-weight: 700
}

.current-menu-item .header__link {
    border-bottom: .2rem solid var(--blue);
    font-weight: 700
}

.header__nav li:not(:last-child) {
    margin-bottom: 0;
}
.header__contacts {
    display: flex;
    gap: 2rem;
}
.header__phone, .header__email {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
}
.header__phone::before, .header__email::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url(../img/svg/phone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1rem;
}
.header__email::before {
    background-image: url(../img/svg/email.svg);
}
.header__phone {
    padding-right: 2rem;
    border-right: 1px solid #fff;
}
@media (hover:hover) {
    .main-btn:hover {
        opacity: .7
    }

    .header__link:hover {
        color: var(--blue)
    }

    .about__item:hover .about__box {
        opacity: 1;
        visibility: visible
    }
}

@media (hover:none) {
    .main-btn:active {
        opacity: .7
    }

    .header__link:active {
        color: var(--blue)
    }
}

.burger__menu,
.header__burger {
    display: none
}

@media (max-width:640px) {
    .header__burger {
        display: block;
        padding: 1.4rem 1rem;
        border-radius: .5rem;
        border: 1px solid #ffffff80;
        color: #ffffff80
    }

    .header__burger svg {
        width: 2.3rem;
        height: 1.6rem;
        display: none
    }

    .header__burger svg.active {
        display: block
    }

    .header {
        padding: 2.9rem 0
    }

    .header__btn {
        display: none
    }

    .burger__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        position: absolute;
        top: 10.5rem;
        right: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 1.5rem 3rem 5rem;
        background-color: #2b2b2b;
        backdrop-filter: blur(35px);
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        -webkit-transition: .2s linear;
        transition: .2s linear
    }

    .burger__menu.active {
        opacity: 1;
        visibility: visible;
        z-index: 999
    }

    .burger__menu .header__btn {
        color: #fff;
        background-color: transparent;
        border-radius: .5rem;
        -webkit-box-shadow: 0 0 10px 0 #00000026 inset;
        box-shadow: 0 0 10px 0 #00000026 inset;
        font-size: 2rem;
        line-height: 1.2;
        font-weight: 400;
        border: 1px solid #fff;
        display: block
    }

    .header__logo {
        display: block;
        width: 8rem;
        height: 4.1rem;
        background-image: url(../img/base/short-logo.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: .3rem;
    }

    .header__logo img,
    .header__nav {
        display: none
    }

    .burger__menu .header__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 2.3rem;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 1rem;
        margin-bottom: 5rem
    }

    .header__link {
        font-size: 2rem;
        font-weight: 300;
        line-height: 1.2;
        padding-bottom: .7rem;
        border-bottom: .2rem solid transparent
    }

    .header__link.current {
        border-bottom: .2rem solid var(--blue);
        font-weight: 700
    }
    .header__contacts {
        display: none;
        gap: 2rem;
    }

    .burger__menu .header__contacts {
        display: flex;
        flex-direction: column;
    }
    
    .header__phone {
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid #fff;
        border-right: none;
    }
}

.banner {
    /* background-image: url(../img/base/banner.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 10rem;
    margin-bottom: 7.5rem;
    position: relative;
}

.banner__inner {
    padding: 14.3rem 0 18.5rem
}

.banner__title {
    text-transform: uppercase;
    letter-spacing: -.03em;
    margin-bottom: 1.1rem;
    text-align: left
}

.banner__title span {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
    padding: 1.8rem 4rem;
    color: #fffefe;
    letter-spacing: normal;
    background: #a1a1A133;
    border: 2px solid #ffffff80;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    font-family: "Nunito Sans";
    text-transform: none;
    -webkit-transform: translateY(-2.5rem);
    transform: translateY(-2.5rem);
    position: relative;
    display: inline-block
}

.banner__text {
    color: #eaeaea;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 6rem;
    text-wrap: balance
}

.banner__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.banner__advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 1.8rem
}

.banner__item {
    background-color: #28282899;
    border: 2px solid #ffffff80;
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    width: 25.4rem;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 600
}

.about-main .banner__text {
    max-width: 80rem;
    text-wrap: balance
}
.banner__video{
    position: absolute;
    inset: 0;
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
@media (max-width:640px) {
    .banner {
        padding-top: 10rem;
        margin-bottom: 5rem
    }

    .banner__inner {
        padding: 7.8rem 0 10.1rem
    }

    .banner__title {
        margin-bottom: 2rem
    }

    .banner__title span {
        font-size: 1rem;
        line-height: 1.2;
        font-weight: 600;
        padding: 1.1rem 2.3rem;
        border-radius: .5rem;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        margin-top: 2rem;
        backdrop-filter: blur(5px)
    }

    .banner__text {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 4rem;
        font-weight: 400
    }

    .banner__btn:nth-child(2) {
        display: none
    }

    .banner__advantages {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem
    }

    .banner__item {
        padding: 1.1rem 1.7rem;
        border-radius: .3rem;
        width: 15rem;
        font-size: 1rem
    }

    .about-main .banner__text {
        max-width: 100%
    }
}

.about {
    padding: 7.5rem 0
}

.about__description {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 300;
    text-wrap: balance;
    text-align: center;
    margin: 0 auto 4.6rem
}

.about__grid {
    display: grid;
    grid-template-columns: 55.9rem auto 55.9rem;
    grid-template-rows: repeat(2, auto);
    gap: 3rem
}

.about__item:nth-child(1) {
    grid-area: 1/1/2/3
}

.about__item:nth-child(2) {
    grid-area: 1/3/2/4
}

.about__item:nth-child(3) {
    grid-area: 2/1/3/2
}

.about__item:nth-child(4) {
    grid-area: 2/2/3/4
}

.about__item {
    border-radius: .5rem;
    border: 1px solid #ffffff80;
    position: relative
}

.about__img {
    width: 100%;
    height: 100%
}

.about__box {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(43.07%, rgba(0, 0, 0, 0)), color-stop(84.27%, rgba(0, 0, 0, .8)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.07%, rgba(0, 0, 0, .8) 84.27%);
    position: absolute;
    inset: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 2.5rem 2.2rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.about__title {
    font-size: 2, 8rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: .5rem
}

.about__text {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 300;
    color: #c9c9c9;
    text-wrap: balance
}

@media (max-width:640px) {
    .about {
        padding: 5rem 0
    }

    .about__description {
        display: none
    }

    .about__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 2rem
    }

    .about__item:nth-child(1),
    .about__item:nth-child(2),
    .about__item:nth-child(3),
    .about__item:nth-child(4) {
        grid-area: auto
    }

    .about__item {
        height: 17.7rem
    }

    .about__box {
        padding: 2rem;
        opacity: 1;
        visibility: visible
    }

    .about__title {
        font-size: 2rem
    }

    .about__text {
        font-size: 1.1rem
    }
}

.offer {
    padding: 7.5rem 0
}

.offer__inner .title {
    margin-bottom: 9rem
}

.product__card {
    -webkit-box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    border: 1px solid #ffffff80;
    background: #0d141533;
    opacity: .5;
    pointer-events: none;
    border-radius: 1rem
}

.swiper-slide-active .product__card {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .2s linear;
    transition: .2s linear;
    pointer-events: all;
    opacity: 1
}

.product__img {
    border-radius: 1rem;
    border: 1px solid #ffffff80;
    -webkit-box-shadow: 0 4.02px 10.05px 0 #00000026;
    box-shadow: 0 4.02px 10.05px 0 #00000026;
    margin-bottom: 2rem
}

.product__box {
    padding: 0 3rem 3.6rem
}

.product__title {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: -.04em;
    color: #fffefe;
    text-transform: uppercase;
    padding-bottom: 2rem;
    border-bottom: 1px solid #fffFFF40;
    margin-bottom: 2rem
}

.product__excerpt {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 200;
    margin-bottom: 4rem
}

.product__btn {
    background-color: #fffefe;
    border-radius: 1rem;
    padding: 1.8rem 5rem;
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: .02em;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    text-align: center
}

.offer__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5.7rem;
    margin-top: 9rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.offer__btns .swiper-button-next,
.offer__btns .swiper-button-prev {
    position: static;
    width: 18.9rem;
    height: 6.1rem;
    border-radius: .5rem;
    background: #a1a1A11A;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff80
}

.offer__btns .swiper-button-next:after,
.offer__btns .swiper-button-prev:after {
    content: '';
    background-image: url(../img/svg/arrow-right.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 5.5rem;
    height: 1rem
}

.offer__btns .swiper-button-prev:after {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.offer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.9rem
}

.offer__card {
    background-color: #0d141533;
    border: 1px solid #ffffff90;
    -webkit-box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    border-radius: 1rem;
    padding: 2rem 3.7rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.offer__card__image {
    width: 100%;
    height: 24.6rem;
    -webkit-box-shadow: 0 4.02px 10.05px 0 #00000026;
    box-shadow: 0 4.02px 10.05px 0 #00000026;
    border: 1px solid #ffffff90;
    margin-bottom: 3.3rem;
    border-radius: 1rem;
}

.offer__card__title {
    padding-bottom: 2rem;
    border-bottom: 1px solid #fffFFF40;
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: #fffefe;
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: Montserrat
}

.offer__card__title span {
    font-size: 2rem;
    opacity: .5;
    margin-left: 2rem
}

.offer__card__description {
    font-size: 2rem;
    line-height: 1;
    font-weight: 200;
    letter-spacing: -.02em;
    margin-bottom: 3.6rem;
    color: #fffefe;
    opacity: .7
}

.offer__card__btn {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    border-radius: 1rem;
    margin-top: auto;
}

.offer__card__btn.white-btn {
    background-color: #fffefe;
    color: #000;
    margin-bottom: 1rem
}

.offer__card__btn.black-btn {
    background-color: transparent;
    color: #fff
}

@media (max-width:640px) {
    .offer {
        padding: 5rem 0
    }

    .offer__inner .title {
        margin-bottom: 3rem
    }

    .offer__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem
    }

    .offer__card {
        border-radius: .5rem;
        padding: 1.1rem 2rem
    }

    .offer__card__image {
        width: 100%;
        height: 13.7rem;
        margin-bottom: 2rem
    }

    .offer__card__title {
        padding-bottom: .8rem;
        font-size: 1.8rem;
        margin-bottom: 1rem
    }

    .offer__card__title span {
        font-size: 1.2rem;
        margin-left: 1rem
    }

    .offer__card__description {
        font-size: 1.2rem;
        margin-bottom: 2rem
    }

    .offer__card__btn {
        font-size: 1.2rem;
        padding: .9rem;
        border-radius: .5rem
    }

    .offer__card__btn.white-btn {
        margin-bottom: .5rem
    }

    .offer__btns .swiper-button-next,
    .offer__btns .swiper-button-prev {
        width: 13.8rem;
        height: 3.7rem
    }
}

.values {
    margin: 6.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5rem;
    padding: 4.5rem 0;
    border-top: 1px solid #ffffff80;
    border-bottom: 1px solid #ffffff80
}

.values__subtitle {
    color: #777;
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Actay Wide';
    letter-spacing: -.04em;
    text-transform: uppercase
}

.values__content {
    width: 90rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 2.6rem;
    line-height: 1.25;
    font-weight: 200;
    text-align: right
}

.values__content strong {
    font-weight: 600
}

.values__content p:not(:last-child) {
    margin-bottom: 1.5rem
}

@media (max-width:640px) {
    .values {
        margin: 5rem 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        gap: 5rem;
        padding: 3.7rem 0;
        border-top: 1px solid #ffffff80;
        border-bottom: 1px solid #ffffff80
    }

    .values__subtitle {
        text-align: right
    }

    .values__content {
        width: 100%;
        font-size: 1.6rem
    }

    .values__content p:not(:last-child) {
        margin-bottom: 1rem
    }
}

.phylo {
    padding: 7rem 0 15rem
}

.phylosophy__box {
    margin-top: 4.7rem;
    display: grid;
    grid-template-columns: 34.4rem auto 38.6rem 31.6rem;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    background-image: url(../img/base/phylo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 64.6rem
}

.phylo__item:nth-child(1) {
    grid-area: 2/1/3/2;
    background-color: #41606980
}

.phylo__item:nth-child(2) {
    grid-area: 1/2/2/3;
    background-color: #56a9BF80
}

.phylo__item:nth-child(3) {
    grid-area: 2/3/3/4;
    background-color: #92929280
}

.phylo__item:nth-child(4) {
    grid-area: 1/4/2/5;
    background-color: #074D6180
}

.phylo__item {
    border: 1px solid #ffffff80;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-wrap: balance;
    color: #fff;
    backdrop-filter: blur(20px)
}

.phylo__name {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    text-transform: uppercase
}

.phylo__text {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.04em
}

@media (max-width:640px) {
    .phylo {
        padding: 5rem 0
    }

    .phylo__inner {
        width: 100%
    }

    .phylosophy__box {
        margin-top: 4rem;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 7.2rem;
        background-image: url(../img/base/phylo-mobile.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center
    }

    .phylo__item:nth-child(1) {
        grid-area: auto;
        background-color: #41606980
    }

    .phylo__item:nth-child(2) {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        text-align: right;
        grid-area: auto;
        background-color: #56a9BF80
    }

    .phylo__item:nth-child(3) {
        grid-area: auto;
        background-color: #92929280
    }

    .phylo__item:nth-child(4) {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        text-align: right;
        grid-area: auto;
        background-color: #074D6180
    }

    .phylo__item {
        min-height: 20rem
    }
}

.contacts {
    padding: 4.4rem 0 20rem;
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1
}

.contacts__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.contacts__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1
}

.contacts__box:nth-child(3) {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end
}

.contacts__subtitle {
    text-transform: uppercase;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 400
}

.contacts__btn {
    background-color: #0d141533;
    color: #fffefe;
    border-radius: .5rem;
    border: 1px solid #ffffff80;
    backdrop-filter: blur(12px);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    padding: 1.5rem 4rem;
    margin: 0 auto
}

@media (max-width:640px) {
    .contacts {
        padding: 3rem 0 20rem
    }

    .contacts__inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 4rem
    }

    .contacts__box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .contacts__box:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .contacts__box:nth-child(2) {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .contacts__box:nth-child(3) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.footer {
    padding: 4.1rem 0 12.1rem;
    background: linear-gradient(90.01deg, rgba(156, 156, 156, .025) .01%, rgba(11, 35, 36, .1875) 50.22%, rgba(156, 156, 156, .025) 99.99%);
    border-top: 1px solid;
    border-image-source: linear-gradient(89.99deg, rgba(86, 169, 191, .025) 0);
    border-image-slice: .5;
    backdrop-filter: blur(35px)
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 4rem
}

.footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    width: 33%
}

.footer__socials a,
.footer__socials svg,
.footer__socials img {
    width: 4rem;
    height: 4rem;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.footer__socials a:hover {
    opacity: .7
}

.footer__logo {
    margin: 0 auto;
    width: 20.5rem;
    height: 10.5rem
}

.footer__btn {
    margin-left: auto;
    background-color: #fff;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 4px 10px 0 #0000001A inset;
    box-shadow: 0 4px 10px 0 #0000001A inset;
    border-radius: 1rem;
    padding: 2rem 4rem;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: -.04em;
    color: #000;
    height: auto
}

.footer_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #ccc;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 200;
    text-decoration: underline;
    letter-spacing: -.02em
}

@media (hover:hover) {
    .product__btn:hover {
        cursor: pointer;
        opacity: .7
    }

    .contacts__btn:hover,
    .footer__btn:hover,
    .footer_bottom a:hover {
        opacity: .7
    }

    .clients__item:hover .clients__before::before {
        opacity: 0;
        visibility: hidden
    }

    .clients__item:hover .clients__logo {
        opacity: 1;
        visibility: visible;
        z-index: 1
    }

    .clients__item:hover .clients__name {
        opacity: 1
    }
}

@media (max-width:640px) {
    .footer {
        padding: 6rem 0 23rem
    }

    .footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 4rem;
        gap: 3rem
    }

    .footer__socials {
        gap: 1.3rem;
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .footer__socials a,
    .footer__socials svg {
        width: 2.8rem;
        height: 2.8rem
    }

    .footer__logo {
        margin: 0;
        width: 9.4rem;
        height: 4.8rem;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .footer__btn {
        margin-left: 0;
        border-radius: .5rem;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        height: auto;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .footer_bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2rem;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding-top: 4rem;
        border-top: 1px solid #fffFFF80
    }
}

.projects {
    padding-bottom: 7rem
}

.projects .subtitle,
.projects .title {
    text-align: left
}

.projects .description {
    max-width: 500px;
    text-wrap: balance;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -.04em;
    margin-bottom: 4rem
}

.projects__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.projects__item {
    backdrop-filter: blur(20px);
    background: #92929280;
    border: 1px solid;
    border-image-source: linear-gradient(318.7deg, rgba(255, 255, 255, .2) 76.56%, #fff 100%), linear-gradient(55.75deg, rgba(255, 255, 255, .2) 77%, #fff 100%);
    padding: 1rem 1.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.projects__item__link {
    position: absolute;
    inset: 0;
    margin: 0
}

.projects__item__img {
    width: 100%;
    height: 20rem;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid;
    border-image-source: linear-gradient(93.73deg, rgba(255, 255, 255, .5) 8.9%, rgba(255, 255, 255, .2) 96.59%)
}

.projects__item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.projects__item__name {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.04em;
    text-wrap: balance;
    margin-bottom: 1rem
}

.projects__item__text {
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 2.3rem
}

.projects__item__more {
    background-color: var(--blue);
    border: 1px solid;
    border-image-source: linear-gradient(93.73deg, rgba(255, 255, 255, .5) 8.9%, rgba(255, 255, 255, .2) 96.59%);
    backdrop-filter: blur(10px);
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -.03em;
    padding: .9rem;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: auto;
}

.projects__item__more:hover {
    background-color: transparent
}

.projects__text {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 300;
    color: #eaeaea
}

.projects__slogan {
    font-family: 'Actay Wide', sans-serif;
    font-size: 8.4rem;
    line-height: 1.37;
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    background: linear-gradient(180deg, #818181 0%, #4F4F4F 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}
/* 
.projects__slogan span {
    max-width: 19rem
} */

@media (max-width:640px) {
    .projects {
        padding-bottom: 5rem
    }

    .projects .subtitle,
    .projects .title {
        text-align: center
    }

    .projects .description {
        display: none
    }

    .projects__list {
        grid-template-columns: repeat(1, 1fr)
    }

    .projects__item {
        padding: 2rem 1rem
    }

    .projects__item__more:hover {
        background-color: transparent
    }

    .projects__text {
        font-size: 1.6rem;
        line-height: 1.4;
        font-weight: 300;
        color: #eaeaea
    }

    .projects__slogan {
        font-size: 3.2rem;
        font-weight: 700;
        color: #5f5f5f;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .projects__slogan span {
        max-width: 100%
    }
}

.clients {
    padding: 7rem 0
}

.clients__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    border-top: 1px solid #fffFFF80;
    border-bottom: 1px solid #fffFFF80
}

.clients__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-right: 1px solid #fffFFF80
}

.clients__left .title {
    margin-bottom: 0
}

.clients__left .description {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 300
}

.clients__right {
    width: 65.3rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    counter-reset: clients
}

.clients__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    counter-increment: clients;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.clients__item:not(:last-child) {
    border-bottom: 1px solid #ffffff80
}

.clients__before {
    width: 13rem;
    height: 13rem;
    border-right: 1px solid #ffffff80;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative
}

.clients__before .clients__logo {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    height: 100%;
    width: 100%;
}

.clients__before .clients__logo img {
    object-fit: contain;
    max-width: 90%;
    max-height: 90%;
}


.clients__before::before {
    content: '/' counter(clients, decimal-leading-zero);
    font-weight: 200;
    font-size: 3.2rem;
    line-height: 1.25;
    opacity: .25;
    position: absolute;
    inset: 0;
    margin: auto;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.clients__name {
    padding-left: 3.5rem;
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 400;
    opacity: .5;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.clients__left .subtitle {
    display: none
}

.clients__item.active .clients__before::before {
    opacity: 0;
    visibility: hidden
}

.clients__item.active .clients__logo {
    opacity: 1;
    visibility: visible;
    z-index: 1
}

.clients__item.active .clients__name {
    opacity: 1
}

@media (max-width:640px) {
    .clients {
        padding: 5rem 0
    }

    .clients__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-top: none;
        border-bottom: 1px solid #fffFFF80
    }

    .clients__left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        border-right: none
    }

    .clients__left .title {
        margin-bottom: 4.1rem;
        text-align: center
    }

    .clients__left .description {
        display: none
    }

    .clients__left .subtitle {
        display: block;
        text-align: center
    }

    .clients__right {
        width: 100%
    }

    .clients__item:not(:last-child) {
        border-bottom: 1px solid #ffffff80
    }

    .clients__item:first-child {
        border-top: 1px solid #ffffff80
    }

    .clients__before {
        width: 8rem;
        height: 8rem
    }

    .clients__before .clients__logo {
        max-width: 90%;
        max-height: 90%
    }

    .clients__before::before {
        font-size: 1.8rem
    }

    .clients__name {
        padding-left: 1.9rem;
        font-size: 1.8rem
    }
}

.feedback {
    padding: 6rem 0 12rem
}

.feedback__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5rem;
    padding-top: 5rem;
    border-top: 1px solid;
    border-image-source: linear-gradient(318.7deg, rgba(255, 255, 255, .2) 76.56%, #fff 100%), linear-gradient(55.75deg, rgba(255, 255, 255, .2) 77%, #fff 100%);
    border-image-slice: 1
}

.feedback__header h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 400
}

.feedback__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    margin-top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.feedback__card {
    background-color: #92929280;
    border: 1px solid;
    border-image-source: linear-gradient(318.7deg, rgba(255, 255, 255, .2) 76.56%, #fff 100%), linear-gradient(55.75deg, rgba(255, 255, 255, .2) 77%, #fff 100%);
    backdrop-filter: blur(20px);
    padding: 3rem 2.2rem;
    text-wrap: balance;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5rem;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    font-weight: 400
}

.feedback__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem
}

.feedback__img {
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: white;
}
.feedback__img img{
    object-fit: contain;
}

.feedback__name {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    font-weight: 600
}

.feedback__descr {
    opacity: .5;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -.04em
}

@media (max-width:640px) {
    .feedback {
        padding: 5rem 0 17.7rem;
        position: relative
    }

    .feedback__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 4rem;
        padding-top: 5rem
    }

    .feedback__header h2 {
        font-size: 3.2rem;
        line-height: 1.1;
        font-weight: 700;
        color: var(--blue);
        text-transform: uppercase;
        font-family: 'Actay Wide';
        text-align: center
    }

    .feedback__btns {
        gap: 2.8rem;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: absolute;
        bottom: 10rem;
        left: 0;
        right: 0;
        margin: 4rem auto 0
    }

    .feedback__card {
        padding: 2.5rem 1.8rem;
        gap: 5rem;
        font-size: 1.4rem
    }

    .feedback__box {
        gap: 1.6rem
    }

    .feedback__img {
        width: 3.7rem;
        height: 3.7rem
    }

    .feedback__name {
        font-size: 1.6rem
    }

    .feedback__descr {
        opacity: .5;
        font-weight: 300;
        font-size: 1.2rem
    }
}

.contact-us {
    margin-bottom: 12rem;
    background-image: url(../img/base/contact-us-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8.2rem 15rem
}

.contact-us__inner {
    background-color: #92929280;
    border: 1px solid;
    border-image-source: linear-gradient(318.7deg, rgba(255, 255, 255, .2) 76.56%, #fff 100%), linear-gradient(55.75deg, rgba(255, 255, 255, .2) 77%, #fff 100%);
    border-image-slice: 1;
    backdrop-filter: blur(20px);
    padding: 4rem 4.3rem
}

.contact-us__inner .title {
    text-transform: none;
    color: #7fc3d6;
    font-size: 6.4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2.1rem
}

.contact-us__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 7.5rem;
    position: relative
}

.contact-us__content::before {
    content: '';
    display: block;
    width: 10.9rem;
    height: 3.4rem;
    background-image: url(../img/base/logo-short.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.contact-us__text {
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 300;
    max-width: 40.6rem;
    text-wrap: balance
}

@media (max-width:640px) {
    .contact-us {
        margin-bottom: 12rem;
        padding: 4rem 0
    }

    .contact-us__inner {
        padding: 2rem 1.2rem
    }

    .contact-us__inner .title {
        font-size: 3.2rem;
        margin-bottom: 2.3rem
    }

    .contact-us__content {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .contact-us__content::before {
        content: none
    }

    .contact-us__text {
        display: none
    }

    .contact-us__form {
        width: 100%
    }
}

.objects {
    padding: 10rem 0
}

.objects__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 3rem
}

.objects__item:nth-child(1) {
    grid-area: 1/1/3/4
}

.objects__item:nth-child(2) {
    grid-area: 3/1/5/4
}

.objects__item:nth-child(3) {
    grid-area: 1/4/2/5
}

.objects__item:nth-child(4) {
    grid-area: 2/4/4/5
}

.objects__item:nth-child(5) {
    grid-area: 4/4/5/5
}

.objects__text {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 300;
    color: #eaeaea
}

.objects__img {
    width: 100%;
    max-height: 40rem;
    border: 1px solid #ffffff80;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: .5rem
}

.objects__name {
    opacity: .25;
    font-size: 2.6rem;
    line-height: 1.25;
    font-weight: 600
}

@media (max-width:640px) {
    .objects {
        padding: 6rem 0
    }

    .objects__inner {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 2rem
    }

    .objects__item:nth-child(1) {
        grid-area: auto;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .objects__item:nth-child(2) {
        grid-area: auto;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .objects__item:nth-child(3) {
        grid-area: auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .objects__item:nth-child(4) {
        grid-area: auto;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        text-align: right
    }

    .objects__item:nth-child(5) {
        grid-area: auto;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        text-align: right
    }

    .objects__img {
        width: 100%;
        max-height: 16.5rem
    }

    .objects__name {
        font-size: 1.6rem
    }
}

.product-modal {
    padding: 3rem 3rem 4.7rem;
    border: 1px solid #ffffff80;
    -webkit-box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    border-radius: 1rem
}

.product-modal .title {
    margin-bottom: 0;
    text-align: center
}

.product-modal__span {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #969696
}

.product-modal__description {
    padding: 2.5rem;
    color: #fff;
    background-color: #4a4a4a;
    -webkit-box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    box-shadow: 0 -4.02px 20.09px 0 #fffFFF08 inset;
    border-radius: 1rem;
    border: 1px solid #ffffff80;
    margin-bottom: 3rem;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 300;
    text-wrap: balance;
    max-width: 66.1rem;
    margin-left: auto;
    margin-right: auto
}

.product-modal__advantages__title {
    text-transform: uppercase;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
    margin: 0 auto 2.1rem;
    text-align: center
}

.product-modal__advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 4rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.product-modal__advantages__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.product-modal__advantages__icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem
}

.product-modal__advantages__icon img {
    -o-object-fit: contain;
    object-fit: contain
}

.product-modal__advantages__text {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 300;
    color: #fff
}

@media (max-width:640px) {
    .product-modal {
        padding: 3rem 2rem 2.5rem
    }

    .product-modal__span {
        font-size: 1.2rem
    }

    .product-modal__description {
        padding: 1.8rem 2.5rem;
        margin-bottom: 4rem;
        font-size: 1.2rem;
        max-width: 100%
    }

    .product-modal__advantages__title {
        font-size: 1.6rem;
        margin: 0 auto 2.7rem
    }

    .product-modal__advantages {
        gap: 2rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .product-modal__advantages__item {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 25%
    }

    .product-modal__advantages__icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.5rem
    }

    .product-modal__advantages__text {
        font-size: 1.2rem
    }
}

.footer__inner {
    display: flex;
    align-items: stretch;
    gap: 20rem;

}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.footer__logo {
    width: 18rem;
    height: 9.2rem;
    margin-bottom: 2rem;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__link {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 200;
    color: #CCCCCC;
    text-wrap: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (hover: hover) {
    .footer__link:hover {
        color: #fff;
    }
}
@media (hover: none) {
    .footer__link:active {
        color: #fff;
    }
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__subtitle {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -.04em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
}
.footer__subtitle::after {
    content: '';
    width: 10.4rem;
    height: 2px;
    background-color: var(--blue);
    display: block;
    margin-top: 1.2rem;
}

.footer__address, .footer__phone, .footer__email {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
}

.footer__phone::before, .footer__email::before, .footer__address::before {
    content: '';
    width: 2rem;
    height: 2rem;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1.4rem;
    flex-shrink: 0;
}

.footer__phone::before {
    background-image: url(../img/svg/phone.svg);
}

.footer__email::before {
    background-image: url(../img/svg/email.svg);
}   
.footer__address::before {
    background-image: url(../img/svg/location.svg);
}   

.footer__text {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #898989;
}

@media (hover: hover) {
    .footer__phone:hover, .footer__email:hover {
        color: var(--blue);
    }
}
@media (hover: none) {
    .footer__phone:active, .footer__email:active {
        color: var(--blue);
    }
}

@media (max-width: 640px) {
    .footer__inner {
        flex-direction: column;
        gap: 5rem;
    
    }
    
    .footer__left {
        gap: 3rem;
    }
    
    .footer__logo {
        width: 18rem;
        height: 9.2rem;
        margin-bottom: 2rem;
    }
    
    .footer__link {
        font-size: 1.2rem;
        
    }
    
    .footer__columns {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }
    
    
}

.contact-us__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}
.contact-us__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
.contact-us__row.row-2 {
    grid-template-columns: repeat(2, 1fr);
}
.contact-us__row.row-3 {
    grid-template-columns: repeat(3, 1fr);
}
.contact-us__row.row-1 {
    grid-template-columns: repeat(1, 1fr);
}

.contact-us__label {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    margin-bottom: .3rem;
}
.contact-us__label span {
    font-size: 1.2rem;

}

.choices__inner {
    background-color: transparent;
    font-family: "Nunito Sans";
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--white);
    font-weight: 300;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
    background: 0px 0px;
    padding: 1.6rem 2rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
    border-image: initial;
    outline: 0px;
    border-radius: 0.5rem;
}
.choices[data-type*=select-one]::after {
    border-color: var(--white) transparent transparent;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: var(--blue);
}
.choices__list--dropdown, .choices__list[aria-expanded] {
    background-color: rgba(146, 146, 146, 1);
    color: var(--white);
}

@media (max-width: 640px) {
   
    .contact-us__row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    .contact-us__row.row-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-us__row.row-3 {
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-us__row.row-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .contact-us__label {
        font-size: 1.6rem;
        line-height: 1.2;
        font-weight: 300;
        color: #fff;
        margin-bottom: .3rem;
    }
    .contact-us__label span {
        font-size: 1.2rem;
    
    }
    
    .choices__inner {
        background-color: transparent;
        font-family: "Nunito Sans";
        font-size: 1.6rem;
        line-height: 1.3;
        color: var(--white);
        font-weight: 300;
        width: 100%;
        margin-bottom: 0px;
        margin-top: 0px;
        background: 0px 0px;
        padding: 1.6rem 2rem;
        border-width: 1px;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.5);
        border-image: initial;
        outline: 0px;
        border-radius: 0.5rem;
    }
    .choices[data-type*=select-one]::after {
        border-color: var(--white) transparent transparent;
    }
    .choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
        background-color: var(--blue);
    }
    .choices__list--dropdown, .choices__list[aria-expanded] {
        background-color: rgba(146, 146, 146, 1);
        color: var(--white);
    }
}

.about-us__decor {
    width: 100%;
    height: 29.5rem;
}
.about-us__decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal__advantages__list {
    text-align: left;
    list-style: none;
    padding-left: 0;
}
.product-modal__advantages__list li {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.product-modal__advantages__list li::before {
    content: '';
    display: block;
    width: .8rem;
    height: .8rem;
    background-color: var(--blue);
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 0;
    flex-shrink: 0;
}
.product-modal__advantages__title {
    text-align: left;
}
@media (max-width: 640px) {
    .product-modal__advantages__list li{
        font-size: 1.4rem;
        margin-bottom: .5rem;
    }
}