.header {
    position: fixed;
    width: 100%;
    padding: 30px 20px 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100000;
}
.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 42px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 15px 30px;
}
.header__lang {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__lang a {
    border: 1px solid #111;
    padding: 2px 10px;
    border-radius: 20px;
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 112.5% */
    position: relative;
    padding-bottom: 2px;
}
.header__lang a:hover {
    color: #111;
}
.header__lang a.active {
    color: #fff;
    background-color: #111;
    pointer-events: none;
}
.header__nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header__nav ul a {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 112.5% */
    position: relative;
    padding-bottom: 2px;
}
.header__nav ul a.active {
    color: #111;
    pointer-events: none;
}
.header__nav ul a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    transition: 0.3s;
    background: #111;
}
.header__nav ul a:hover {
    color: #4e4e4e;
}
.header__nav ul a:hover::after {
    width: 100%;
}
.header .socials-mob {
    display: none;
}
.header__socials {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header__socials ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__socials ul a svg path {
    transition: 0.3s;
}
.header__socials ul a:hover svg path {
    fill: #807F7B;
}
.header__socials .btn-hov {
    width: 180px;
}
.header .burger {
    position: relative;
    width: 25px;
    height: 18px;
    cursor: pointer;
    display: none;
}
.header .burger span {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #111;
    transition: 0.3s;
}
.header .burger span:first-of-type {
    top: 0;
}
.header .burger span:nth-last-of-type(2) {
    top: 46%;
}
.header .burger span:last-of-type {
    bottom: 0;
}
.header .burger.active span:first-of-type {
    transform: rotate(-45deg);
    top: 8px;
    background-color: #fff;
}
.header .burger.active span:last-of-type {
    transform: rotate(45deg);
    bottom: 8px;
    background-color: #fff;
}
.header .burger.active span:nth-last-of-type(2) {
    display: none;
}
.header__lang-mob {
    display: none;
}
@media (max-width: 1240px) {
    .header img {
        width: 95px;
    }
    .header__nav ul {
        gap: 15px;
    }
    .header__nav ul a {
        font-size: 14px;
    }
    .header__socials {
        gap: 15px;
    }
    .header__socials ul {
        gap: 10px;
    }
    .header__socials .btn-hov {
        width: 140px;
    }
}
@media (max-width: 1140px) {
    .header .burger {
        display: block;
        z-index: 1000;
        order: 3;
    }
    .header__nav {
        position: fixed;
        width: 100%;
        height: 100%;
        top: -100%;
        left: 0;
        background-color: #111;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 100;
    }
    .header__nav.active {
        top: 0;
    }
    .header__nav ul {
        flex-direction: column;
    }
    .header__nav ul a {
        color: #E6E6E6;
    }
    .header__nav ul a.active {
        color: #fff;
        font-weight: 900;
    }
    .header .socials-mob {
        display: flex;
        flex-direction: row;
        margin-top: 30px;
    }
    .header__socials ul {
        display: none;
    }
    .header__lang {
        display: none;
    }
    .header__lang-mob {
        display: block;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .header img {
        width: 70px;
    }
    .header__socials .btn-hov {
        width: 100px;
        padding: 7px;
        font-size: 14px;
    }
}

.hero {
    padding: 70px 20px 0;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/hero-line.svg") center no-repeat;
    background-size: contain;
}
.hero__wrapper {
    border: 1px solid #F4E9D2;
    background: linear-gradient(180deg, #FCFBF7 0%, #F4E8D0 100%);
    border-radius: 25px;
}
.hero__wrapp {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 10% 20px 5%;
    position: relative;
    z-index: 5;
}
.hero__left {
    width: 100%;
    max-width: 435px;
}
.hero__left h1 {
    color: #111;
    font-family: Gotham;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    /* 100% */
    margin-bottom: 20px;
}
.hero__left p {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    margin-bottom: 40px;
}
.hero__right {
    width: 100%;
    max-width: 500px;
}
.hero__slider {
    height: 100%;
}
.hero__slide {
    position: relative;
    padding-top: 92%;
    height: 100%;
}

.hero__slide img {
    max-width: 320px;
    border-radius: 25px;
}
@media (max-width: 1280px) {
    .hero__left h1 {
        font-size: 60px;
    }
    .hero__right {
        max-width: 375px;
    }
}
@media (max-width: 992px) {
    .hero__wrapp {
        flex-direction: column-reverse;
    }
    .hero__right {
        max-width: 100%;
    }
    .hero__slider {
        width: 50%;
    }
    .hero__slide {
        padding-top: 130%;
    }
    .hero__left {
        max-width: 100%;
    }
    .hero__left h1 {
        font-size: 36px;
    }
    .hero__left a {
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .hero__left h1 {
        font-size: 30px;
    }
}

.categories__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.categories__card {
    position: relative;
    background: linear-gradient(180deg, #FCFBF7 0%, #F4E8D0 100%);
    border-radius: 25px;
    height: 500px;
    overflow: hidden;
}
.categories__card img {
    -webkit-mask-image: url("../img/mask-img.png");
    mask-image: url("../img/mask-img.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    border-radius: 25px 25px 0 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s;
}
.categories__card:hover img {
    transform: scale(1.1);
}
.categories__card h3 {
    color: #282627;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px;
    /* 145.833% */
    padding-bottom: 50px;
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
@media (max-width: 992px) {
    .categories__wrapper {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .categories__card {
        max-width: 405px;
    }
}

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

.clients__wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.clients__left {
    width: 100%;
    max-width: 290px;
}
.clients__left ul {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 45px;
}
.clients__right {
    width: 100%;
    display: flex;
    gap: 30px;
}
.clients__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 365px;
}
.clients__container img:first-child {
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 25px;
}
.clients__container img:last-child {
    width: 100%;
    height: 100%;
    max-height: 600px;
    border-radius: 25px;
}
.clients__right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 25px;
    width: 100%;
    max-width: 458px;
}
@media (max-width: 992px) {
    .clients__wrapper {
        flex-direction: column;
    }
    .clients__right {
        flex-direction: column-reverse;
    }
    .clients__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .clients__container {
        max-width: 100%;
    }
    .clients__container img:first-child, .clients__container img:last-child {
        max-height: 400px;
    }
    .clients__right img {
        max-width: 100%;
    }
}

.certificate__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}
.certificate__wrapper .logo-span {
    font-size: 200px;
    font-style: normal;
    font-weight: 900;
    line-height: 210px;
    /* 105% */
    background: linear-gradient(140deg, #FFF -40.74%, #FFF -39.52%, #FFF -39.52%, #F2F4F4 137.69%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
}
.certificate__left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: 604px;
    justify-items: center;
}
.certificate__left::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 604px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FCFBF7 0%, #F4E8D0 100%);
}
.certificate__left div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.certificate__left div:first-of-type {
    align-items: end;
}
.certificate__left div:nth-of-type(2) {
    margin-top: 75px;
}
.certificate__left img {
    width: 100%;
    max-width: 220px;
    height: 320px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    cursor: zoom-in;
}
.certificate__left img.fullscreen {
    cursor: zoom-out;
    max-width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 50px 80px;
}
.certificate__right {
    width: 100%;
    max-width: 425px;
    position: relative;
}
.certificate__right span {
    color: #807F7B;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 27px;
    /* 150% */
    position: relative;
    display: block;
    margin-bottom: 15px;
}
.certificate__right p {
    color: #807F7B;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 138.889% */
    margin-top: 30px;
}
@media (max-width: 992px) {
    .certificate__wrapper {
        flex-direction: column-reverse;
    }
    .certificate__left {
        max-width: 100%;
    }
    .certificate__right {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .certificate__left img {
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.advantages {
    position: relative;
    z-index: 5;
}
.advantages__wrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}
.advantages__card {
    position: relative;
}
.advantages__card img {
    border-radius: 25px;
}
.advantages__container {
    position: relative;
    z-index: 5;
    padding: 90% 30px 10%;
}
.advantages__content {
    padding: 30px;
}
.advantages .slide {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all 500ms ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.advantages .slide h3 {
    color: #FFF;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    line-height: 45px;
    /* 128.571% */
    opacity: 0;
}
.advantages .slide p {
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 138.889% */
    opacity: 0;
    margin-top: 20px;
}
.advantages .slide.active {
    flex: 2;
    filter: grayscale(0%);
    opacity: 1;
}
.advantages .slide.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}
.advantages .slide.active p {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}
@media (max-width: 992px) {
    .advantages__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .advantages .slide h3 {
        opacity: 1;
        font-size: 24px;
    }
    .advantages .slide p {
        opacity: 1;
        font-size: 16px;
    }
}
@media (max-width: 640px) {
    .advantages__wrapper {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.form {
    position: relative;
    background: linear-gradient(180deg, #FCFBF7 0%, #F4E8D0 100%);
}
.form::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 20%;
    top: -45px;
    left: 0;
    background: #FFF;
    filter: blur(30px);
}
.form img {
    opacity: 0.2;
}
.form__wrapper {
    position: relative;
    z-index: 5;
    padding: 10% 20px;
    opacity: 1;
    text-align: center;
}
.form__wrapper p {
    color: #807F7B;
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 138.889% */
    margin: 30px auto 0;
    max-width: 920px;
}
.form__wrapper form {
    max-width: 470px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.form__wrapper form input {
    color: #807F7B;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 138.889% */
    background-color: transparent;
    border-bottom: 1px solid #4e4e4e;
    padding-bottom: 10px;
}

.footer {
    background: #282627;
}
.footer__top {
    padding-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 30px;
}
.footer__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__item h3 {
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 138.889% */
}
.footer__item p {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 156.25% */
}
.footer__item a {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
}
.footer__item a:hover {
    color: #FCFBF7;
}
.footer__item ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__bot {
    border-top: 1px solid #4e4e4e;
    padding: 20px 0;
}
.footer__bot-wrapp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.footer__bot-wrapp a {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
}
.footer__bot-wrapp a:hover {
    color: #FFF;
}
@media (max-width: 767px) {
    .footer__top {
        grid-template-columns: 1fr;
    }
    .footer__bot-wrapp {
        flex-direction: column;
        align-items: baseline;
    }
}

.breadcrumbs {
    padding-top: 160px;
    margin-bottom: 50px;
}
.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumbs ul li {
    position: relative;
}
.breadcrumbs ul li:not(:last-child) {
    padding-right: 7px;
}
.breadcrumbs ul li:not(:last-child)::after {
    position: absolute;
    content: "/";
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
}
.breadcrumbs ul a, .breadcrumbs ul li {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 112.5% */
}
.breadcrumbs ul li:last-child {
    color: #546E7A;
}

.services {
    margin-bottom: 60px;
}
.lift {
    position: relative;
    z-index: 5;
}
.lift__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.lift__card {
    border-radius: 22px;
    background: #FFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
    border-radius: 25px;
}
.lift__img {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}
.lift__img img {
    border-radius: 25px 25px 0 0;
    transition: 0.6s;
}
.lift__card:hover img {
    transform: scale(1.1);
}
.lift__content {
    padding: 20px;
}
.lift__content h3 {
    color: #282627;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    /* 100% */
    transition: 0.3s;
}
.lift__card:hover h3 {
    color: #546E7A;
}
.lift__content p {
    color: #807F7B;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 128.571% */
    margin-top: 10px;
}
.lift__pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 50px 0 70px;
    justify-content: center;
}
.lift__pagination svg rect, .lift__pagination svg path {
    transition: 0.3s;
}
.lift__pagination a:hover svg rect {
    fill: #111;
}
.lift__pagination a:hover svg path {
    stroke: #fff;
}
.lift__pagination ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lift__pagination ul a {
    border-radius: 50%;
    background: #F4E8D0;
    color: #282627;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 112.5% */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}
.lift__pagination ul a:hover {
    background-color: #546E7A;
    color: #fff;
}
.lift__pagination ul a.active {
    background-color: #111;
    color: #fff;
    pointer-events: none;
}
@media (max-width: 1140px) {
    .lift__content h3 {
        font-size: 20px;
    }
}
@media (max-width: 992px) {
    .lift__wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .lift__content h3 {
        font-size: 18px;
    }
}
@media (max-width: 540px) {
    .lift__wrapper {
        grid-template-columns: 1fr;
    }
}

.lift-inner__wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    margin-bottom: 50px;
}
.lift-inner__left {
    width: 100%;
    max-width: 625px;
}
.lift-inner__text p {
    margin-top: 30px;
    margin-bottom: 50px;
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 175% */
}
.lift-inner__left ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.lift-inner__left ul li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lift-inner__left ul li {
    color: #212121;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}
.lift-inner__left ul li span {
    color: #807F7B;
}
.lift-inner__right {
    width: 100%;
    max-width: 515px;
    position: relative;
    padding-top: 50%;
}
.lift-inner__right img {
    border-radius: 25px;
}
@media (max-width: 992px) {
    .lift-inner__wrapper {
        flex-direction: column;
    }
}

.escalators {
    position: relative;
}
.escalators::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 100%;
    background: url(../img/hero-line.svg) center no-repeat;
    background-size: contain;
}
.escalators__wrapper {
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    border-radius: 25px;
    border: 1px solid #F4E9D2;
    background: linear-gradient(180deg, #FCFBF7 0%, #F4E8D0 100%);
    padding: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}
.escalators__wrapper h3 {
    color: #282627;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px;
    /* 116.667% */
}
.escalators__wrapper a {
    color: #282627;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 112.5% */
    border-radius: 42px;
    border: 1px solid #282627;
    background: rgba(40, 38, 39, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    position: relative;
    z-index: 5;
}
.escalators__wrapper a:hover {
    background-color: #111;
    color: #fff;
}
.escalators__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 5;
}
.escalators__img {
    position: relative;
    width: 100%;
    max-width: 530px;
    height: 100%;
    max-height: 390px;
    border-radius: 25px;
    overflow: hidden;
}
.escalators__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 25px;
}
.escalators__container ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 260px;
}
.escalators__container ul:first-of-type {
    text-align: right;
}
.escalators__slider {
    height: 480px;
    position: relative;
}
.escalators__slider::after {
    position: absolute;
    content: "";
    top: -100px;
    left: 50px;
    width: 100%;
    max-width: 490px;
    height: 100%;
    max-height: 210px;
    background: url("../img/big-logo.svg") center no-repeat;
}
@media (max-width: 992px) {
    .escalators__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .escalators__container ul:first-of-type {
        text-align: center;
    }
    .escalators__container ul {
        text-align: center;
        gap: 20px;
    }
    .escalators__wrapper h3 {
        font-size: 24px;
    }
    .escalators__wrapper a {
        font-size: 14px;
    }
}

.escalators-slider {
    height: 100%;
    position: static;
}

.escalators-slide {
    height: 95%;
}

.escalators-slider .swiper-wrapper .swiper-slide:nth-child(even) {
    transform: translateY(23px);
}

.escalators-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 25px;
}

.escalators-slider .swiper-button-prev::after,
.escalators-slider .swiper-button-next::after {
    content: "";
}

.escalators-slider .swiper-button-prev,
.escalators-slider .swiper-button-next {
    width: 45px;
    height: 45px;
}

.escalators-slider .swiper-button-prev {
    left: 0;
}

.escalators-slider .swiper-button-next {
    right: 0;
}

.escalators-slider .swiper-button-prev svg rect,
.escalators-slider .swiper-button-next svg rect,
.escalators-slider .swiper-button-prev svg path,
.escalators-slider .swiper-button-next svg path {
    transition: 0.3s;
}

.escalators-slider .swiper-button-prev:hover svg rect,
.escalators-slider .swiper-button-next:hover svg rect {
    fill: #111;
}

.escalators-slider .swiper-button-prev:hover svg path,
.escalators-slider .swiper-button-next:hover svg path {
    stroke: #fff;
}

.about__wrapper {
    display: flex;
    gap: 30px;
}
.about__left {
    width: 100%;
    max-width: 608px;
}
.about__item:last-of-type {
    margin-top: 50px;
}
.about__item p {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 156.25% */
    margin-top: 30px;
}
.about__right {
    width: 100%;
    max-width: 625px;
    position: relative;
}
.about__right img {
    border-radius: 25px;
}
@media (max-width: 992px) {
    .about__wrapper {
        flex-direction: column;
    }
    .about__left {
        max-width: 100%;
    }
    .about__right {
        padding: 40%;
        max-width: 100%;
    }
}

.contacts__img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    position: relative;
    padding-top: 39%;
    overflow: hidden;
}
.contacts__img img {
    border-radius: 25px;
}
.contacts__wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.contacts__left {
    border-radius: 25px;
    border: 1px solid #F4E9D2;
    background: linear-gradient(180deg, #FCFBF7 0%, #F4E8D0 100%);
    width: 100%;
    max-width: 410px;
    padding: 40px;
}
.contacts__container {
    display: flex;
    flex-direction: column;
    gap: 47px;
}
.contacts__item {
    display: flex;
    flex-direction: column;
}
.contacts__item h1,
.contacts__item h3 {
    color: #282627;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px; /* 116.667% */
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.contacts__item a {
    color: #807F7B;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 138.889% */
}
.contacts__item a:hover {
    color: #111;
}
.contacts__right {
    width: 100%;
}
.contacts__right iframe {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}
@media (max-width: 992px) {
    .contacts__left {
        padding: 20px;
    }
    .contacts__item h3 {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .contacts__wrapper {
        flex-direction: column;
    }
    .contacts__left {
        max-width: 100%;
    }
    .contacts__right {
        height: 400px;
    }
    .contacts__item h3 {
        font-size: 20px;
    }
}

.policy {
    margin-bottom: 50px;
}
.policy p {
    color: #807F7B;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 175% */
    margin-top: 30px;
}

.error {
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.error img {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 400px;
}
.error a {
    max-width: 350px;
    margin: 50px auto;
}

.fade-in, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-200%);
}

.fade-in-right {
    transform: translateX(200%);
}

.visible-left {
    opacity: 1;
    transform: translateX(0);
}

.visible-right {
    opacity: 1;
    transform: translateX(0);
}
