*,
ul,
ol {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #545454;
}

.wrapper {
    margin: 0 auto;
    overflow: clip;
}

.container {
    max-width: 1460px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.section__title {
    font-size: 24px;
    color: #000;
    font-weight: 800;
}

/* top bar */
.top-bar {
    padding: 10px 0;
    background: #f8f8f8;
}

.top-bar .row {
    align-items: center;
    gap: 20px 230px;
}


.top-bar__left {
    display: flex;
    align-items: center;
    gap: 95px;
}

.top-bar__services {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #545454;
    cursor: pointer;
}

.top-bar__socials {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar__socials a {
    display: flex;
    transition: .3s all ease;
    opacity: .7;
}

.top-bar__socials a:hover {
    opacity: 1;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 55px;
}

.top-bar__address {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
}

.top-bar__address span {
    border-bottom: 1px dashed;
}

.top-bar__address:hover span {
    border-color: transparent;
}

.top-bar__work {
    display: flex;
    gap: 11px;
    align-items: center;
    font-size: 15px;
    color: #868686;
}

/* header */
.header {
    /* position: sticky; */
    top: 0;
    z-index: 100;
    padding: 39px 0 29px 0;
    background: #ffffff;
    box-shadow: 0 2px 8px #0000000f;
}

.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    /* padding: 15px 0; */
    transform: translateY(-100%);
    transition: transform .35s ease;
}

.header--fixed.is-visible {
    transform: translateY(0);
}

.header--fixed .row {
    align-items: center;
}

.header--fixed .header__left .top-bar__socials {
    display: flex;
}

.header--fixed .header__right .top-bar__address {
    display: flex;
    margin-left: 52px;
}

.header--fixed .header__socials {
    margin-left: 30px;
}

.header--fixed .header__button {
    margin-left: 65px;
}

.header .row {
    justify-content: space-between;
}

.header__left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header__title {
    font-weight: 800;
    font-size: 18px;
    font-style: italic;
    color: #000;
    padding-right: 25px;
    border-right: 1px solid #dcdcdc;
}

.header__subtitle {
    font-size: 15px;
    font-weight: 600;
    max-width: 205px;
    font-style: italic;
}

.header__right {
    display: flex;
    align-items: center;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: bold;
    font-size: 24px;
}

.header__phone a {
    color: #000;
    transition: .3s all ease;
}

.header__phone a:hover {
    color: rgb(0, 186, 255);
}

.header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 95px;
}

.header__socials a {
    display: flex;
    transition: .3s all ease;
    opacity: .8;
}

.header__socials a:hover {
    opacity: 1;
}

.header__text {
    font-size: 12px;
    color: #222222;
    margin-right: 10px;
}

.header__button {
    border: 2px solid rgb(0, 186, 255);
    padding: 13px 30px;
    background-color: transparent;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    margin-left: 85px;
    transition: .3s all ease;
}

.header__button:hover {
    background-color: rgb(0, 186, 255);
    color: #fff;
}

.header__button:hover img {
    content: url(../assets/images/arrow-up-hover.png);
}


.hero {
    background-image: url(../assets/images/hero-bg.webp);
    color: #ffffff;
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: cover;
}

.hero .container {
    padding: 65px 0;
    position: relative;
}

.hero__inner {
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 40px;
    font-weight: extrabold;
    margin-bottom: 42px;
    color: #00c6ff;
    max-width: 630px;
    font-weight: 900;
}

.hero__description {
    font-size: 30px;
    line-height: 1.6;
    max-width: 797px;
    margin-bottom: 50px;
    color: #fff;
    font-weight: bold;
}

.hero__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 60px;
}

.hero__list li {
    position: relative;
    padding-left: 16px;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
}

.hero__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00baff;
}

.hero__action {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hero__button {
    padding: 30px 50px;
    border: none;
    cursor: pointer;
    background: #00a7e5;
    color: #ffffff;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s all ease;
}

.hero__button:hover {
    background: #15a0d3;
}

.hero__note {
    font-size: 12px;
    color: #b8b8b9;
    max-width: 175px;
}

.hero__visual {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
}

.hero__image {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
}

/* main nav */
.main-nav {
    position: sticky;
    top: var(--header-height, 150px);
    z-index: 90;
    background: #ffffff;
    padding: 25px 0;
    box-shadow: 0px 1px 26.4px 3.6px rgba(0, 0, 0, 0.1);

}

.main-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 39px;
    font-size: 15px;
    font-weight: 600;
}

.main-nav__item a {
    color: #000;
    transition: color .25s ease;
}

.main-nav__item--discount a {
    color: #ff0000;
    position: relative;
}

.main-nav__item--discount a span {
    font-size: 9px;
    position: absolute;
    top: -3px;
    right: -9px;
}

.main-nav__item a:hover,
.main-nav__item a:focus {
    color: #00a7e5;
}

.main-nav__item.active a,
.main-nav__item.active a span {
    color: #5c5c5c;
}

/* services */
.services {
    padding: 60px 0;
}

.services__desc {
    margin-top: 20px;
    font-size: 15px;
    color: #222;
}

.services__desc a {
    color: #22b3e8;
    border-bottom: 1px dashed #22b3e8;
}

.services__desc a:hover {
    border: none;
}

.services__block {
    margin-top: 48px;
}

.services__cards {
    display: flex;
    gap: 54px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.services__cards .card-item {
    width: calc(33.33% - 36px);
    position: relative;
    height: 296px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: .3s all ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    cursor: pointer;
    padding: 33px;
    color: #fff;
}

.services__cards .card-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s all ease;
    z-index: -1;
}

.services__cards .card-item .card-item__image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.services__cards .card-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: .3s all ease;
}

.services__cards .card-item h4 {
    font-size: 21px;
    font-weight: 700;
    position: absolute;
    top: 33px;
    left: 33px;
    right: 33px;
    margin: auto;
    z-index: 2;
    transition: .3s all ease;
}

.services__cards .card-item .line {
    font-size: 24px;
    color: #c8c8c8;
    position: relative;
    position: absolute;
    height: fit-content;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    transition: .3s all ease;
}

.services__cards .card-item .price {
    font-size: 21px;
    margin-top: 10px;
    color: #fff;
    z-index: 2;
    position: relative;
}

.services__cards .card-item .time {
    font-size: 21px;
    margin-top: 10px;
    color: #c8c8c8;
    z-index: 2;
    position: relative;
}

.services__cards .card-item span {
    font-size: 15px;
    margin-top: 10px;
    color: #fff;
    z-index: 2;
    position: relative;
}

.card-item__button {
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 22px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #1ac1ff 0%, #00a7e5 100%);
    border: none;
    cursor: pointer;
    width: fit-content;
    opacity: 0;
    transition: .3s all ease;
    box-shadow: 0px 1px 18px 2px rgba(0, 0, 0, 0.1);
}

.card-item__button:hover {
    /* bit darker */
    background: linear-gradient(90deg, #16b0e8 0%, #008ec2 100%);
}

.services__cards .card-item .card-item__button img {
    width: fit-content;
    position: relative;
}

.services__cards .card-item:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.services__cards .card-item:hover .card-item__button {
    opacity: 1;
    z-index: 3;
}

.services__bottom {
    display: flex;
    align-items: flex-start;
    padding: 50px 30px;
    background-image: url(../assets/images/service-bottom-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    margin-top: 55px;
    justify-content: end;
    gap: 32px;
}

.services__bottom h3 {
    font-size: 21px;
    font-weight: bold;
    max-width: 152px;
    color: #fff;
}

.services__bottom p {
    font-weight: 500;
    max-width: 436px;
    font-size: 17.5px;
    color: #fff;
    border-left: 1px solid rgba(256, 256, 256, 0.2);
    padding-left: 32px;
}


.services__bottom-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 37px;
    border-left: 1px solid rgba(256, 256, 256, 0.2);
    border-right: 1px solid rgba(256, 256, 256, 0.2);
}

.services__bottom-socials a {
    opacity: 0.9;
    display: flex;
    transition: .3s all ease;
}

.services__bottom-socials a:hover {
    opacity: 1;
}

.services__bottom .btn {
    padding: 20px 54px 20px 58px;
    background: linear-gradient(90deg, #3eccff 0%, #0eace5 100%);
    color: #fff;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: .3s all ease;
    gap: 14px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-family: 'Open sans', sans-serif;
}

.services__bottom .btn:hover {
    background: linear-gradient(90deg, #16b0e8 0%, #008ec2 100%);
}

/* examples */
.examples {
    margin: 50px 0;
    position: relative;
}

.examples__desc {
    font-size: 15px;
    margin-top: 20px;
    color: #000;
}

.examples__swiper {
    margin-top: 50px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.examples__swiper .examples__pagination {
    display: none ! important;
}

.examples__item {
    transition: .3s all ease;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.examples__item a {
    display: flex;
}

.examples__item img {
    width: 100%;
    opacity: 0.6;
    height: 100%;
    transition: .3s all ease;
}

.examples__item-socials {
    background-color: #00bbff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 359px;
}

.examples__item-socials .socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.examples__item-socials p {
    font-size: 18px;
    color: #fff;
    max-width: 271px;
    text-align: center;
}



.examples__swiper .swiper-slide-active .examples__item {
    transform: scale(1.3);
}

.examples__swiper .swiper-slide-active img {
    opacity: 1;
}

.examples__swiper .examples__item-socials img {
    width: 49px;
    opacity: .8;
}

.examples__swiper .examples__item-socials a:hover img {
    opacity: 1;
}

.examples__item-infos {
    padding: 20px;
    background-color: #fff;
    font-size: 9.93px;
}

.examples__item-infos span {
    font-weight: bold;
}

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

.examples .examples__pagination {
    position: relative;
    top: 0 !important;
    bottom: auto !important;
    right: 0 !important;
    width: fit-content !important;
    left: auto !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: end;
    margin: 0 !important;
}

.examples .examples__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0;
    transition: .3s all ease;
}

.examples .examples__pagination .swiper-pagination-bullet-active {
    background-color: #10bbf9;
}

.examples .examples__pagination .swiper-pagination-bullet-active:hover {
    background-color: #10bbf9 !important;
}

.examples .examples__pagination .swiper-pagination-bullet:hover {
    background-color: #7fddff;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    width: 54px;
    height: 54px;
    background-color: rgba(16, 191, 255, 0.5);
    opacity: 1 ! important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: .3s all ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #10befe;
}

.swiper-button-prev img {
    transform: rotate(180deg);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

.examples__swiper .examples__nav--next {
    right: 34%;
}

.examples__swiper .examples__nav--prev {
    left: 34%;
}

/* reviews */
.reviews {
    position: relative;
    background-color: #f7f7f7;
    padding: 50px 0;
}

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

.reviews__infos {
    display: flex;
    align-items: center;
    gap: 25px;
}

.reviews__infos p {
    font-size: 15px;
    color: #4c4c4c;
    padding-left: 25px;
    border-left: 1px solid #c0c0c0;
}

.reviews__infos p a {
    color: #00baff;
    text-decoration: none;
    border-bottom: 1px dashed #00baff;
}

.reviews .reviews__pagination {
    position: relative;
    top: 0 !important;
    bottom: auto !important;
    right: 0 !important;
    width: fit-content !important;
    left: auto !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: end;
    margin: 0 !important;
}

.reviews .reviews__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0;
    transition: .3s all ease;
}

.reviews .reviews__pagination .swiper-pagination-bullet-active {
    background-color: #10bbf9;
}

.reviews .reviews__pagination .swiper-pagination-bullet-active:hover {
    background-color: #10bbf9 !important;
}

.reviews .reviews__pagination .swiper-pagination-bullet:hover {
    background-color: #7fddff;
    opacity: 1;
}

.reviews__swiper {
    margin: -30px;
    margin-top: 50px;
    padding: 30px;
    transition: height 0.3s ease;
}

@media (max-width: 767px) {
    .reviews__swiper {
        height: auto;
        margin-top: 0;
    }
}

.reviews__item-video {
    display: flex;
    position: relative;
}

.reviews__item-video:hover::after {
    opacity: 1;
}

.reviews__item-video::after {
    content: '';
    opacity: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .3s all ease;
    box-shadow: 0 1px 30px 7px rgba(0, 0, 0, 0.26);
    background: rgba(0, 188, 255, 0.5);
}

.reviews__item-video:hover button {
    background-color: #fff;
    z-index: 4;
}

.reviews__item-video:hover button svg {
    fill: #0583ae;
    stroke: #0583ae;
}

.reviews__item-video img {
    width: 100%;
    height: 228px;
    object-fit: cover;
}

.reviews__item-video button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00a1e7;
}

.reviews__item-author {
    margin-top: 29px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.reviews__swiper .swiper-wrapper {
    height: auto !important;
}

.reviews__item-comment {
    padding: 26px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    height: 228px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    transition: .3s all ease;
}

.reviews__item-comment:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 26px;
    background: #fff;
}

.reviews__item:hover .reviews__item-comment {
    height: fit-content;
}

.reviews .reviews__nav--next {
    right: 56px;
    top: 118px;
    margin: 0;
    padding: 0;
}

.reviews .reviews__nav--prev {
    left: 56px;
    top: 118px;
    margin: 0;
    padding: 0;
}


.reviews__item--last .reviews__item-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    min-height: 228px;
    background-color: #00bbff;
    justify-content: center;
}

.reviews__item--last .reviews__item-socials p {
    font-size: 15px;
    color: #fff;
    max-width: 221px;
    text-align: center;
}

.reviews__item--last .reviews__item-socials .socials {
    display: flex;
    gap: 7px;
}

.reviews__item--last .reviews__item-socials .socials img {
    width: 45px;
    opacity: 0.8;
}

.reviews__item--last .reviews__item-socials .socials a:hover img {
    opacity: 1;
}

/* discount */
.discount {
    margin-top: 50px;
}

.discount .discount__pagination {
    position: relative;
    top: 0 !important;
    bottom: auto !important;
    right: 0 !important;
    width: fit-content !important;
    left: auto !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: end;
    margin: 0 !important;
}

.discount .discount__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0;
    transition: .3s all ease;
}

.discount .discount__pagination .swiper-pagination-bullet-active {
    background-color: #10bbf9;
}

.discount .discount__pagination .swiper-pagination-bullet-active:hover {
    background-color: #10bbf9 !important;
}

.discount .discount__pagination .swiper-pagination-bullet:hover {
    background-color: #7fddff;
    opacity: 1;
}

.discount__swiper {
    margin-top: 50px;
}

.discount-item {
    position: relative;
    height: 247px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    color: #fff;
}

.discount-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 186, 255, 0.8);
    box-shadow: 0px 1px 43px 7px rgba(0, 0, 0, 0.16);
    transition: .3s all ease;
}

.discount-item--last {
    padding: 0;
}

.discount-item--last::after {
    display: none;
}


.discount-item-socials {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #00bbff;
    height: 100%;
    width: 100%;
}

.discount-item-socials p {
    color: #fff;
    font-size: 15px;
    max-width: 231px;
    text-align: center;
    font-weight: 500;
}


.discount-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.discount-item-socials img {
    width: 34px;
    position: relative;
    z-index: 1;
    height: 34px;
    opacity: 0.8;
}

.discount-item-socials a:hover img {
    opacity: 1;
}


.discount-item h4 {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 18px;
    min-height: 98px;
}

.discount-item .reminder {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 13px;
}

.discount-item .time {
    font-size: 12px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.discount-item .card-item__button {
    font-size: 15px;
    padding: 15px 20px;
}

.card-item__button img {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.discount-item:hover:after {
    background-color: rgba(21, 27, 24, 0.38);
}

.discount-item:hover .card-item__button {
    opacity: 1;
    z-index: 2;
}

.services__bottom.services__bottom-discount {
    background-image: url(../assets/images/bottom-discount-bg.webp);
}

.services__bottom.services__bottom-discount h3 {
    max-width: 160px;
}

/* steps */
.steps {
    margin-top: 50px;
    padding: 50px 0;
    background-color: #f7f7f7;
}

.steps__block {
    display: flex;
    gap: 60px;
}

.steps-texts {
    max-width: 230px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.steps-texts p:after {
    position: absolute;
    top: -26px;
    width: 31px;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    background-color: #a1a1a1;
}

.steps-texts p {
    font-size: 15px;
    position: relative;
    color: #000;
}

.steps-wrapper--desktop {
    display: flex;
}

.steps-wrapper--mobile {
    display: none;
}

.steps-wrapper .step-item {
    width: 25%;
    padding: 0 45px;
    position: relative;
}

.steps .step-item:last-child::after {
    display: none;
}

.steps-wrapper .step-item:after {
    content: url(../assets/images/step-arrow.png);
    width: 36px;
    height: 20px;
    position: absolute;
    right: -18px;
    top: 35px;
}

.steps .step-item .number {
    width: 93px;
    height: 93px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
    color: #00a7e5;
    background-color: #fff;
    margin: 0 auto;
}

.step-item h4 {
    font-weight: bold;
    margin-top: 24px;
    color: #000;
    font-size: 15px;
    text-align: center;
}

.step-item p {
    margin-top: 10px;
    font-size: 15px;
    color: #000;
    text-align: center;
}

.step-item h4 a {
    color: #00b6ff;
    border-bottom: 1px dashed #00b6ff;
}

.step-item h4 a:hover {
    border: none;
}

/* Steps mobile swiper styles */
.steps-wrapper-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.steps-wrapper-swiper .swiper-wrapper {
    display: flex;
}

.steps-wrapper-swiper .swiper-slide {
    display: flex !important;
    align-items: stretch;
}

.steps-wrapper-swiper .step-item {
    width: 100%;
    padding: 0 20px;
    position: relative;
}

.steps-wrapper-swiper .step-item:after {
    display: none !important;
}

.steps__pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.steps__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.steps__pagination .swiper-pagination-bullet-active {
    background: #00a7e5;
}

/* about */
.about {
    margin-top: 50px;
}

.about .row {
    gap: 80px;
}

.about__me {
    max-width: 850px;
}

.about__text {
    display: flex;
    padding-right: 80px;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    border-right: 1px solid #e8e8e8;
}

.about__team .team-member:first-child {
    margin-top: 40px;
}

.about__team .team-member {
    margin-top: 20px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.about__team .team-member img {
    width: 127px;
    height: 127px;
    object-fit: cover;
    border-radius: 50%;
}

.team-member-info {
    max-width: 190px;
}

.team-member-info h4 {
    font-size: 15px;
    font-weight: bold;
    color: #000;
}

.team-member-info p {
    font-size: 15px;
    color: #000;
    margin-top: 5px;
}


/* advantages */

.advantages {
    margin-top: 50px;
}

.advantages__wrapper {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 38px 54px;
}

.advantages-item {
    width: calc(33.33% - 36px);
    padding: 30px 35px;
    box-shadow: 6px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-family: 'Pt sans';
    gap: 20px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

/* documents */
.documents {
    margin-top: 50px;
}

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

.documents .documents__pagination {
    position: relative;
    top: 0 !important;
    bottom: auto !important;
    right: 0 !important;
    width: fit-content !important;
    left: auto !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: end;
    margin: 0 !important;
}

.documents .documents__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0;
    transition: .3s all ease;
}

.documents .documents__pagination .swiper-pagination-bullet-active {
    background-color: #10bbf9;
}

.documents .documents__pagination .swiper-pagination-bullet-active:hover {
    background-color: #10bbf9 !important;
}

.documents .documents__pagination .swiper-pagination-bullet:hover {
    background-color: #7fddff;
    opacity: 1;
}

.documents__swiper {
    margin-top: 25px;
}

.documents-item a {
    display: block;
    width: 100%;
}

.documents-item a img {
    width: 100%;
    object-fit: cover;
}

.documents-item {
    position: relative;
}

.documents-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: .3s all ease;
}

.documents-item .icon img {
    width: fit-content;
}

.documents-item .icon {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transition: .3s all ease;
    z-index: 2;
}

.documents-item span {
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transition: .3s all ease;
    z-index: 2;
    padding: 0 20px;
}

.documents-item:hover::after,
.documents-item:hover .icon,
.documents-item:hover span {
    opacity: 1;
}

.swiper-button-prev.documents__nav--prev {
    left: 30px;
    right: auto;
}

.swiper-button-next.documents__nav--next {
    right: 30px;
    left: auto;
}

/* numbers */
.numbers {
    margin-top: 50px;
}

.numbers__infos {
    width: 50%;
    padding: 50px 0;
    position: relative;
    color: #fff;
}

.numbers__infos:after {
    content: '';
    background-image: url(../assets/images/numbers-infos-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
    width: calc(100% + 240px);
    left: -240px;
}

.numbers__infos .section__title {
    color: #fff;
}

.numbers__infos ul {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 18px;
}

.numbers__infos ul span {
    font-weight: 600;
}

.numbers__gallery {
    width: 50%;
    position: relative;
}

.numbers__gallery .section__title {
    position: absolute;
    top: 50px;
    left: 30px;
    color: #fff;
    z-index: 10;
}

.numbers__swiper {
    position: relative;
    height: 100%;
}

.numbers__swiper a {
    display: block;
    width: 100%;
    height: 100%;
}

.numbers__swiper a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.numbers__counter {
    position: absolute;
    bottom: 50px;
    left: 30px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    display: block;
}

.swiper-button-prev.numbers__nav--prev {
    left: 30px;
    right: auto
}

.swiper-button-next.numbers__nav--next {
    right: 30px;
    left: auto
}

/* faq */
.faq {
    margin-top: 50px;
    margin-bottom: 50px;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 50px;
}

.faq__item {
    padding: 40px 30px;
    background-color: #eeeeee;
    transition: .3s all ease;
}

.faq__item:hover {
    background-color: #07cdfe;
}

.faq__item:hover .faq__item-title,
.faq__item:hover .faq__item-body {
    color: #fff;
}

.faq__item .faq__item-title img {
    transition: .3s all ease;
}

.faq__item:hover .faq__item-title img {
    content: url(../assets/images/faq-arrow-white.png);
}

.faq__item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
}

.faq__item-body {
    font-size: 18px;
    color: #000;
    max-height: 0;
    overflow: hidden;
    transition: .3s all ease;
}

.faq__item.active .faq__item-title img {
    transform: rotate(180deg);
}

.faq__item.active .faq__item-body {
    max-height: 1000px;
    padding-top: 25px;
    transition: .3s all ease;
}

.information {
    margin-top: 50px;
}

.information .row {
    flex-wrap: nowrap;
    gap: 30px;
}

.information__side {
    max-width: 222px;
}

.information__right {
    width: 100%;
}

.information__side p {
    padding-top: 25px;
    margin-top: 35px;
    position: relative;
    font-size: 15px;
    color: #000;
}

.information__side p:after {
    content: '';
    width: 31px;
    height: 1px;
    background-color: #a1a1a1;
    position: absolute;
    top: 0;
    left: 0;
}

.information__side .socials {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.information__side .socials img {
    width: 47px;
    height: 46px;
    object-fit: cover;
}

.information__side .socials a {
    display: flex;
    opacity: .7;
}

.information__side .socials a:hover {
    opacity: 1;
}

/* footer */
footer {
    margin-top: 50px;
}

footer .see__contacts {
    display: flex;
    justify-content: end;
    gap: 40px;
    position: relative;
    z-index: 2;
}

footer .see__contacts.mobile-open {
    display: none;
}

footer .see__contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ccff;
}

footer .see__contacts span {
    border-bottom: 1px dashed #00ccff;
}

footer .see__contacts span:hover {
    border-color: transparent;
}

.footer__infos {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
    background-image: url(../assets/images/footer__infos.webp);
    background-size: cover;
    max-width: 412px;
    padding: 30px 0;
    position: relative;
    z-index: 3;
}

.footer__infos h3 {
    padding: 0 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    font-weight: bold;
    color: #000;
}

.footer__job {
    font-family: 'Open Sans', sans-serif;
    padding: 0 30px;
    font-size: 15px;
    font-style: italic;
    color: #686868;
}

.footer__contacts {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    bottom: 1px solid #ededed;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .tel {
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    font-weight: bold;
}

.contact-item .tel:hover {
    color: #00a1e7;
}

.contact-item .socials {
    display: flex;
    gap: 8px;
}

.contact-item .socials a {
    display: flex;
    opacity: .8;
}

.contact-item .socials a:hover {
    opacity: 1;
}

.contact-item .socials .time span {
    font-size: 15px;
}

.contact-item .socials .time p {
    color: #000;
    font-size: 15px;
}

.contact-item .location {
    font-size: 15px;
    color: #000;
}

.contact-item .location a {
    font-size: 15px;
    color: #00a1e7;
    border-bottom: 1px dashed #00a1e7;
}

.contact-item .location a:hover {
    border-color: transparent;
}

.footer__data {
    padding: 30px 30px 30px 60px;
    border-bottom: 1px solid #ededed;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__data p {
    font-size: 15px;
    color: #000;
}

.footer__data .inn {
    color: #989898;
}

.footer__data .info {
    font-size: 12px;
    color: #818181;
    display: block;
}


.footer__security {
    padding: 20px 30px 0 30px;
}

.footer__security a {
    font-size: 18px;
    color: #00a1e7;
    border-bottom: 1px dashed #00a1e7;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.footer__security a:hover {
    border-color: transparent;
}

.footer__map {
    position: relative;
    margin-top: 10px;
}

.footer__map iframe {
    width: 100%;
    height: 502px;
    position: relative;
    z-index: 2;
}

.footer__map .container {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.footer__top {
    margin: 0 0 auto auto;
    justify-content: space-between;
    margin-top: 25px;
    align-items: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer__socials span {
    font-size: 17px;
    color: #818181;
    max-width: 224px;
}

.footer__socials .socials {
    display: flex;
    gap: 8px;
}

.footer__socials a {
    display: flex;
    opacity: .7;
}

.footer__socials a:hover {
    opacity: 1;
}

.footer__socials img {
    width: 48px;
    height: 48px;
}

.footer__developer span {
    font-size: 15px;
    display: block;
}

.footer__developer a {
    font-size: 15px;
    color: #00a1e7;
    border-bottom: 1px solid #00a1e7;
}

.footer__developer a:hover {
    border-color: transparent;
}

.footer__bottom {
    margin-top: 90px;
    padding-bottom: 60px;
    font-size: 35px;
    font-weight: 600;
    color: #979797;
    text-align: center;
    text-transform: uppercase;
}

.header__left .top-bar__socials {
    display: none;
}

.header__right .top-bar__address {
    display: none;
}

.header__hamburger {
    display: none;
}

.header__menu {
    display: none;
}


/* 1600 */
@media (max-width: 1600px) {

    .footer__bottom {
        font-size: 34px;
    }

    .container {
        max-width: 1388px;
    }

    .top-bar__services {
        font-size: 14.5px;
    }

    .top-bar__address {
        font-size: 14.25px;
    }

    .top-bar__work {
        font-size: 14.25px;
    }

    .header__title {
        font-size: 17.1px;
    }

    .header__subtitle {
        font-size: 14.25px;
    }

    .header__phone {
        font-size: 22.8px;
    }

    .header__text {
        font-size: 11.4px;
    }

    .numbers__swiper {
        height: 100%;
    }

    .footer__top {
        max-width: 956px;
    }

    .services__bottom .btn {
        padding: 15px 20px;
    }
}

/* 1280 */
@media (max-width: 1400px) {
    html {
        zoom: 1;
    }

    .container {
        max-width: 1140px;
    }

    .header {
        position: sticky;
    }

    .header--fixed {
        display: none;
    }

    .services__cards .card-item {
        width: calc(50% - 27px);
    }

    .top-bar {
        display: none;
    }

    .header__title {
        font-size: 14.26px;
        padding-right: 20px;
    }

    .header__left {
        gap: 20px;
    }

    .header__right {
        justify-content: space-between;
    }

    .header__socials {
        margin-left: 20px;
    }

    .header__phone {
        font-size: 19px;
    }

    .header__subtitle {
        display: none;
    }

    .header__left .top-bar__socials {
        display: flex;
    }

    .header__left .top-bar__socials img {
        height: 23px;
    }

    .header__socials .header__text {
        display: none;
    }

    .header__right .top-bar__address {
        display: flex;
        font-size: 11.9px;
        margin-left: 33px;
    }

    .header__button {
        font-size: 10.3px;
        padding: 9px 28px;
        border-width: 2px;
        margin-left: 44px;
    }

    .header__socials img {
        width: 28px;
    }

    .header {
        padding: 10px 0 15px 0;
    }

    .main-nav {
        position: fixed;
        top: 63px;
        left: 0;
        width: 100%;
    }

    .hero {
        margin-top: 70px;
    }

    .hero__list {
        max-width: 700px;
    }

    .about__me {
        max-width: 615px;
    }

    .numbers__infos {
        width: 100%;
    }

    .numbers__gallery {
        width: 100%;
    }

    .services__bottom {
        flex-wrap: wrap;
    }
}

/* 960 */
@media (max-width: 1200px) {
    .container {
        max-width: 832px;
    }

    .header__left .top-bar__socials {
        display: none;
    }

    .header__title {
        font-size: 10.28px;
        padding-right: 16px;
    }

    .header__left {
        gap: 16px;
    }

    .header__subtitle {
        display: block;
        font-size: 8.16px;
        max-width: 112px;
    }

    .header__phone {
        font-size: 13px;
        gap: 7px;
    }

    .header__phone img {
        width: 7px;
    }

    .header__socials {
        margin-left: 16px;
        gap: 5px;
    }

    .header__socials img {
        width: 20px;
    }

    .header__right .top-bar__address {
        margin-left: 16px;
        font-size: 8.6px;
        gap: 5px;
    }

    .header__right .top-bar__address img {
        width: 8px;
    }

    .header__button {
        padding: 7px 17px;
        font-size: 7.43px;
        margin-left: 33px;
    }

    .main-nav {
        top: 53px;
    }

    .main-nav__list {
        gap: 15px;
        font-size: 12px;
    }

    .hero {
        margin-top: 66px;
    }

    .hero__content {
        position: relative;
        z-index: 2;
    }

    .hero__action {
        flex-direction: column;
        align-items: flex-start;
    }

    .services__bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .services__bottom h3 {
        max-width: fit-content;
    }

    .reviews__infos {
        flex-wrap: wrap;
    }

    .steps__block {
        flex-wrap: wrap;
    }

    .steps-wrapper .step-item {
        padding: 0;
    }

    .steps-texts {
        max-width: fit-content;
        gap: 20px;
    }

    .steps__block {
        gap: 40px;
    }

    .about__me {
        max-width: fit-content;
    }

    .about__text {
        border: none;
        padding: 0;
    }

    .advantages-item {
        width: calc(50% - 27px);
    }

    .footer__map {
        display: flex;
        flex-direction: column-reverse;
    }

    .footer__map .container {
        position: relative;
        top: 0;
        width: 100%;
    }

    .footer__infos {
        max-width: fit-content;
        background: transparent;
        box-shadow: none;
    }

    .footer__infos h3 {
        padding: 0;
    }

    .footer__contacts {
        padding: 0;
    }

    .footer__job {
        padding: 0;
    }

    .footer__data {
        padding: 0;
        margin-top: 20px;
    }

    .footer__security {
        padding-left: 0;
        padding-right: 0;
    }

    .footer__security a {
        text-align: start;
        margin: 0;
    }
}

/* 768 */
@media (max-width: 942px) {
    .container {
        max-width: 718px;
    }

    .header__subtitle {
        display: none;
    }

    .header__right .top-bar__address {
        margin-right: 26px;
    }

    .main-nav__list {
        gap: 25px;
        font-size: 9.68px;
    }

    .main-nav {
        padding: 15px 0;

    }

    .hero {
        margin-top: 43px;
    }

    .hero__inner {
        gap: 30px;
    }

    .hero__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .hero__description {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .hero__list li {
        font-size: 20px;
    }

    .hero__action {
        justify-content: center;
    }

    .hero__button {
        font-size: 20px;
        padding: 25px 40px;
    }

    .hero__image {
        max-width: 350px;
    }

    .services {
        padding: 40px 0;
    }

    .services__block {
        margin-top: 50px;
    }

    .section__title {
        font-size: 22px;
    }

    .services__desc {
        font-size: 14px;
    }

    .services__cards {
        gap: 30px;
        margin-top: 25px;
    }

    .services__cards .card-item {
        width: calc(50% - 15px);
        height: 280px;
        padding: 25px;
    }

    .services__cards .card-item h4 {
        font-size: 18px;
        top: 25px;
        left: 25px;
        right: 25px;
    }

    .services__cards .card-item .price,
    .services__cards .card-item .time {
        font-size: 18px;
    }

    .services__bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 25px;
    }

    .services__bottom h3 {
        font-size: 18px;
        max-width: none;
    }

    .services__bottom p {
        border-left: none;
        padding-left: 0;
        max-width: none;
        font-size: 16px;
    }

    .services__bottom-socials {
        border-left: none;
        border-right: none;
        padding: 0;
    }

    .services__bottom .btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .examples {
        margin: 40px 0;
    }

    .examples__desc {
        font-size: 14px;
    }

    .examples__swiper {
        margin-top: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .examples__top {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .examples__top h2 {
        font-size: 22px;
    }

    .examples__pagination {
        justify-content: flex-start;
    }

    .examples__swiper .swiper-slide-active .examples__item {
        transform: scale(1.05);
    }

    .examples__swiper .swiper-slide-active img {
        opacity: 1;
    }

    .examples__item img {
        opacity: 0.7;
    }

    .examples__item-infos {
        padding: 15px;
    }

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

    .examples__swiper .examples__nav--next {
        right: 20%;
    }

    .examples__swiper .examples__nav--prev {
        left: 20%;
    }

    .reviews__top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .steps-wrapper {
        gap: 20px;
    }

    .step-item {
        padding: 20px;
    }

    .about__inner {
        flex-direction: column;
        gap: 30px;
    }

    .advantages__wrapper {
        gap: 20px;
    }

    .documents__inner {
        flex-direction: column;
        gap: 30px;
    }

    .numbers__inner {
        flex-direction: column;
        gap: 30px;
    }

    .faq__inner {
        flex-direction: column;
        gap: 30px;
    }

    .information__inner {
        flex-direction: column;
        gap: 30px;
    }

    .advantages-item {
        width: calc(50% - 10px);
    }

    .footer__top {
        gap: 20px;
    }

    .footer__socials {
        flex-wrap: wrap;
    }

    .footer__bottom {
        font-size: 20px;
    }
}

/* 480 */
@media (max-width: 768px) {
    .container {
        max-width: 434px;
    }

    .header__right .top-bar__address {
        display: none;
    }

    .header__title {
        font-size: 9px;
        padding-right: 12px;
    }

    .header__left {
        gap: 11px;
    }

    .header__hamburger {
        display: flex;
        background-color: transparent;
        border: none;
    }

    .header__hamburger img {
        width: 22px;
    }

    .header__phone {
        gap: 5px;
    }

    .header__socials {
        margin-left: 15px;
    }

    .header__socials img {
        width: 25px;
    }

    .header__button {
        margin-left: 10px;
        padding: 6px 11px;
        gap: 4px;
    }

    .header__socials a:last-child {
        display: none;
    }

    .header__button img {
        width: 7px;
    }

    .main-nav {
        display: none;
    }

    .header__menu {
        position: fixed;
        display: block;
        left: -24px;
        top: 0;
        height: 100vh;
        transform: translateY(-200%);
        z-index: 100;
        width: 100%;
        transition: .3s all ease;
    }

    .header__menu.active {
        transform: translateY(0);
    }

    .header__menu .container {
        height: 100%;
        width: 100%;
    }

    .header__menu-content {
        background-color: #fff;
        height: 100%;
        max-width: 220px;
        display: flex;
        flex-direction: column;
        padding: 14px 24px;
        box-shadow: 0px 1px 26.4px 3.6px rgba(0, 0, 0, 0.1);
        background-image: url(../assets/images/menu-bg.webp);
        background-size: cover;
    }

    .menu__close {
        background-color: transparent;
        width: fit-content;
        border: none;
        display: flex;
    }

    .main-nav__list {
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;
        font-size: 15px;
    }

    .main-nav__list a {
        color: #00a7e5;
    }

    .main-nav__list a:hover {
        color: #2a2a2a;
    }

    .main-nav__item--discount a {
        color: #ff0000
    }

    .top-bar__socials {
        margin-top: 25px;
    }

    .top-bar__socials img {
        width: 25px;
    }

    .top-bar__address {
        margin-top: 25px;
        font-size: 11.89px;
    }

    .hero {
        margin-top: 0;
    }

    .header__menu .header__button {
        display: none;
    }

    .hero__title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero__description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero__list li {
        font-size: 16px;
    }

    .hero__button {
        font-size: 16px;
        padding: 15px 20px;
    }

    .hero__action {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }

    .hero__visual {
        display: none;
    }

    .examples {
        margin: 30px 0;
    }

    .examples__desc {
        font-size: 13px;
        margin-top: 15px;
    }

    .examples__swiper {
        padding-top: 30px;
        padding-bottom: 30px;
        max-width: 100%;
        margin-top: 0;
    }

    .examples__top {
        flex-direction: column;
        gap: 15px;
    }

    .examples__top h2 {
        font-size: 20px;
    }

    .examples__item {
        box-shadow: none;
    }

    .examples__item img {
        opacity: 1;
    }

    .examples__swiper .swiper-slide-active .examples__item {
        transform: none;
    }

    .examples__item-infos {
        padding: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: rgba(159, 201, 235, 0.8);
    }

    .examples__swiper .examples__nav--next {
        display: none;
    }

    .examples__swiper .examples__nav--prev {
        display: none;
    }

    .reviews__swiper .reviews__pagination {
        display: flex ! important;
        margin: 0 auto !important;
    }

    .services {
        padding: 30px 0;
    }

    .services__block {
        margin-top: 35px;
    }

    .section__title {
        font-size: 20px;
    }

    .services__desc {
        font-size: 13px;
    }

    .services__cards {
        gap: 20px;
        margin-top: 20px;
    }

    .services__cards .card-item {
        width: 100%;
        height: 260px;
        padding: 20px;
    }

    .card-item__button {
        font-size: 14px;
        padding: 15px;
        bottom: 50px;
    }

    .services__bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 20px;
        margin-top: 40px;
    }

    .services__bottom h3 {
        font-size: 16px;
        max-width: none;
    }

    .services__bottom p {
        border-left: none;
        padding-left: 0;
        max-width: none;
        font-size: 14px;
    }

    .services__bottom-socials {
        border-left: none;
        border-right: none;
        padding: 0;
        gap: 10px;
    }

    .services__bottom-socials img {
        width: 45px;
        height: 45px;
    }

    .services__bottom .btn {
        gap: 8px;
    }

    .services__bottom .btn img {
        width: 12px;
    }

    .services__bottom h3 {
        font-size: 18px;
    }

    .services__bottom p {
        font-size: 15px;
    }

    .examples__swiper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .reviews__infos {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .reviews__infos p {
        padding-left: 0;
        border-left: none;
    }

    .discount__content h2 {
        font-size: 24px;
    }

    .discount__content p {
        font-size: 16px;
    }

    .steps-wrapper--desktop {
        display: none;
    }

    .steps-wrapper--mobile {
        display: block !important;
    }

    .steps-wrapper-swiper {
        width: 100%;
        max-width: 100%;
    }

    .step-item h3 {
        font-size: 18px;
    }

    .step-item p {
        font-size: 14px;
    }

    .about__content h2 {
        font-size: 24px;
    }

    .about__content p {
        font-size: 16px;
    }

    .advantages-item h3 {
        font-size: 18px;
    }

    .documents__content h2 {
        font-size: 24px;
    }

    .documents__list {
        flex-direction: column;
        gap: 15px;
    }

    .numbers__item h3 {
        font-size: 24px;
    }

    .numbers__item p {
        font-size: 16px;
    }

    .faq__item h3 {
        font-size: 18px;
    }

    .faq__item p {
        font-size: 14px;
    }

    .information__content h2 {
        font-size: 24px;
    }

    .information__content p {
        font-size: 16px;
    }

    .steps-wrapper {
        flex-wrap: wrap;
    }

    .steps-wrapper .step-item {
        width: calc(50% - 10px);
    }

    .steps-wrapper .step-item:after {
        display: none;
    }

    .advantages-item {
        width: 100%;
        padding: 15px 20px;
    }

    .documents__top {
        flex-wrap: wrap;
        gap: 20px;
    }

    .numbers__infos {
        padding: 20px 15px;
    }

    .numbers__infos:after {
        left: 0;
        width: 100%;
    }

    .information .row {
        flex-direction: column;
    }

    .information__side {
        max-width: fit-content;
    }

    .hero__note {
        max-width: fit-content;
    }

    footer .see__contacts {
        gap: 10px;
        flex-wrap: wrap;
    }

    .services__cards .card-item__button {
        display: none;
    }

    .services__cards .card-item:hover .card-item__button {
        opacity: 1;
        z-index: 3;
    }

    .services__cards .card-item:hover::after {
        background: rgba(0, 0, 0, 0.3);
    }

    .services__cards .card-item::after {
        pointer-events: none;
    }

    .services__cards .card-item img {
        cursor: pointer;
        pointer-events: auto;
    }

    .examples {
        position: relative;
    }

    .examples__top .examples__pagination {
        position: absolute;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        margin: 0 auto !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .reviews {
        position: relative;
        padding: 30px 0;
    }

    .reviews__top .reviews__pagination {
        position: absolute;
        left: 0 !important;
        right: 0 !important;
        bottom: -10px !important;
        top: auto !important;
        margin: 0 auto !important;
    }

    .discount {
        position: relative;
    }

    .discount .discount__pagination {
        position: absolute;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        top: 391px !important;
        margin: 0 auto !important;
    }

    .discount__swiper {
        margin-top: 30px;
        padding-bottom: 60px;
    }

    .documents {
        position: relative;
        padding-bottom: 30px;
    }

    .documents .documents__pagination {
        position: absolute;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        margin: 0 auto !important;
    }

    .numbers__gallery .section__title {
        top: 10px;
        left: 20px;
    }

    .numbers__counter {
        bottom: 10px;
        left: 20px;
    }
}


/* 320 */
@media (max-width: 450px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header__button {
        display: none;
    }

    .header__menu .header__button {
        display: flex;
        margin-top: 20px;
        margin-left: 0;
        background-color: rgb(0, 186, 255);
        color: #fff;
        justify-content: center;
        width: fit-content;
        font-size: 9px;
    }

    .header__menu .header__button img {
        content: url(../assets/images/arrow-up-hover.png);
    }

    .hero .container {
        padding: 65px 15px;
    }

    .steps-wrapper .step-item {
        width: 100%;
        text-align: center;
    }

    .faq__item {
        padding: 20px 15px;
    }

    .hero__button {
        font-size: 13px;
        gap: 10px;
        padding: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* consultation modal */
body.modal-open {
    overflow: hidden;
}

.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consultation-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.consultation-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 18, 24, 0.78);
}

.consultation-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 687px;
    padding: 34px 34px 28px;
    background: #efefef;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.consultation-modal__close {
    position: absolute;
    top: -50px;
    right: -40px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: .6;
    transition: .3s all ease;
}

.consultation-modal__close:hover {
    opacity: 1;
}

.consultation-modal__title {
    margin-bottom: 18px;
    color: #000;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
}

.consultation-modal__subtitle {
    margin-bottom: 30px;
    color: #000;
    font-size: 20px;
    line-height: 1.4;
}

.consultation-modal__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.consultation-modal__input {
    width: 100%;
    height: 90px;
    padding: 0 28px;
    border: 0;
    outline: none;
    background: #ffffff;
    color: #222222;
    font-size: 18px;
}

.consultation-modal__input::placeholder {
    color: #747474;
}

.consultation-modal__field {
    position: relative;
    display: block;
}

.consultation-modal__label {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #747474;
    font-size: 18px;
    pointer-events: none;
    background: transparent;
    padding: 0;
    transition: top 0.2s ease, font-size 0.2s ease, background 0.2s ease, padding 0.2s ease, color 0.2s ease;
}

.consultation-modal__input:focus~.consultation-modal__label,
.consultation-modal__input:not(:placeholder-shown)~.consultation-modal__label {
    top: 0;
    font-size: 12px;
    padding: 0 6px;
    background: #efefef;
    color: #222222;
}

.consultation-modal__options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 60px;
    margin-top: 10px;
}

.consultation-modal__option {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #222222;
    font-size: 18px;
    cursor: pointer;
}

.consultation-modal__option input {
    display: none;
}

.consultation-modal__option span {
    position: relative;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 2px solid #eeeeee;
    border-radius: 50%;
    background: #ffffff;
}

.consultation-modal__option span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0cbef1;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.consultation-modal__option input:checked+span::after {
    transform: translate(-50%, -50%) scale(1);
}

.consultation-modal__submit {
    width: 100%;
    min-height: 88px;
    border: 0;
    background: linear-gradient(90deg, #20c9ff 0%, #00b4ef 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consultation-modal__submit:hover {
    background: linear-gradient(90deg, #16b0e8 0%, #008ec2 100%);
}

.consultation-modal__note {
    margin-top: 24px;
    color: #7d7d7d;
    font-size: 15px;
    line-height: 1.5;
}

.consultation-modal__note a {
    color: #03bfff;
    text-decoration: underline;
}

.consultation-modal__note a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .consultation-modal {
        padding: 16px;
    }

    .consultation-modal__dialog {
        max-width: 100%;
        padding: 28px 20px 22px;
    }

    .consultation-modal__close {
        top: 14px;
        right: 14px;
    }

    .consultation-modal__close img {
        width: 28px;
        height: 28px;
    }

    .consultation-modal__title {
        padding-right: 34px;
        font-size: 20px;
    }

    .consultation-modal__subtitle {
        font-size: 15px;
    }

    .consultation-modal__input {
        height: 60px;
        padding: 0 18px;
    }

    .consultation-modal__label {
        left: 18px;
        font-size: 16px;
    }

    .consultation-modal__input:focus~.consultation-modal__label,
    .consultation-modal__input:not(:placeholder-shown)~.consultation-modal__label {
        font-size: 11px;
    }

    .consultation-modal__options {
        gap: 14px;
    }

    .consultation-modal__option {
        font-size: 15px;
    }

    .consultation-modal__submit {
        min-height: 64px;
        font-size: 16px;
    }
}

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.privacy-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 18, 24, 0.78);
}

.privacy-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 904px;
    max-height: calc(100vh - 48px);
    padding: 52px 68px 56px;
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.privacy-modal__close {
    position: absolute;
    top: -69px;
    right: 0px;
    cursor: pointer;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    opacity: 0.6;
    transition: .3s all ease;
}


.privacy-modal__close:hover {
    opacity: 1;
}

.privacy-modal__title {
    margin: 0;
    color: #111111;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
}

.privacy-modal__content {
    margin-top: 45px;
    max-height: calc(100vh - 340px);
    overflow-y: auto;
    padding-right: 18px;
    color: #2f2f2f;
    font-size: 16px;
    line-height: 1.95;
}

.privacy-modal__content::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal__content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.privacy-modal__content::-webkit-scrollbar-thumb {
    background: #c7c7c7;
}

.privacy-modal__content p+p {
    margin-top: 10px;
}

@media (max-width: 992px) {
    .privacy-modal__dialog {
        padding: 36px 24px 32px;
    }
}

@media (max-width: 768px) {
    .privacy-modal {
        padding: 16px;
    }

    .privacy-modal__dialog {
        max-height: calc(100vh - 32px);
        padding: 28px 20px 24px;
    }

    .privacy-modal__close {
        top: 12px;
        right: 12px;
    }

    .privacy-modal__close img {
        width: 28px;
        height: 28px;
    }

    .privacy-modal__title {
        padding-right: 34px;
        font-size: 22px;
    }

    .privacy-modal__content {
        margin-top: 28px;
        max-height: calc(100vh - 180px);
        padding-right: 10px;
        font-size: 16px;
        line-height: 1.75;
    }

    .top-bar__address span {
        max-width: 105px;
        color: #000;
    }

    footer .see__contacts.mobile-none {
        display: none;
    }

    footer .see__contacts.mobile-open {
        display: flex;
        margin-top: 10px;
    }
}

.top-bar__address.js-open-map-modal {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.map-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.map-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 18, 24, 0.8);
}

.map-modal__dialog {
    position: relative;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.map-modal__close {
    position: absolute;
    top: -40px;
    right: 18px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

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

.map-modal__title {
    margin: 0;
    padding: 22px 72px 20px 28px;
    background: rgba(16, 18, 24, 0.92);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.map-modal__frame {
    height: min(57vh, 620px);
}

.map-modal__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-modal__route {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 20px;
    background: linear-gradient(90deg, #20c9ff 0%, #00b4ef 100%);
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    transition: .3s all ease;
}

.map-modal__route:hover {
    background: linear-gradient(90deg, #1ab8ed 0%, #009fd4 100%);
}

@media (max-width: 768px) {
    .map-modal {
        padding: 16px;
    }

    .map-modal__title {
        padding: 18px 56px 16px 18px;
        font-size: 18px;
    }

    .map-modal__close {
        right: 14px;
        width: 28px;
        height: 28px;
    }

    .map-modal__frame {
        height: 52vh;
    }

    .map-modal__route {
        min-height: 64px;
        padding: 16px;
        font-size: 18px;
    }

    .steps {
        margin-top: 30px;
        padding: 30px 0;
    }

    .about {
        margin-top: 30px;
    }

    .about__text {
        margin-top: 30px;
    }

    .about .row {
        gap: 30px;
    }

    .advantages__wrapper {
        margin-top: 30px;
    }

    .faq__items {
        margin-top: 30px;
    }
}


@media (max-width: 320px) {
    .header__phone {
        font-size: 9px;
    }

    .hero__title {
        font-size: 20px;
    }

    .consultation-modal__subtitle {
        margin-bottom: 10px;
    }

    .consultation-modal__form {
        gap: 20px;
    }
}

/* fancy box */

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    width: 40px;
    height: 40px;
    top: -8px;
    right: -40px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    opacity: 1;
    background: url(../assets/images/close-modal.png) center/contain no-repeat;
    opacity: 0.6;
    transition: .3s all ease;
    cursor: pointer;
}

.mfp-image-holder .mfp-close:hover,
.mfp-iframe-holder .mfp-close:hover {
    opacity: 1;
}

.mfp-image-holder .mfp-arrow {
    width: 54px;
    height: 54px;
    margin-top: -27px;
    opacity: 1;
    background: rgba(16, 191, 255, 0.5);
    border-radius: 0;
}

.mfp-image-holder .mfp-arrow:hover {
    background: #10befe;
}

.mfp-image-holder .mfp-arrow:before,
.mfp-image-holder .mfp-arrow:after {
    display: none;
}

.mfp-image-holder .mfp-arrow-left {
    left: max(16px, calc(50% - 460px));
}

.mfp-image-holder .mfp-arrow-right {
    right: max(16px, calc(50% - 460px));
}

.mfp-image-holder .mfp-arrow::after {
    content: url(../assets/images/next-arrow.png);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0;
    position: static;
}

.mfp-image-holder .mfp-arrow-left::after {
    transform: rotate(180deg);
}

.mfp-arrow-left:after {
    border: none;
}

.mfp-arrow-right:after {
    border: none;
}

.mfp-title {
    font-size: 14px;
    color: #d0d0d0;
    font-weight: 400;
    font-family: "Open Sans";
}

@media (max-width: 1800px) {
    html {
        zoom: 0.8;
    }

    .privacy-modal__content {
        max-height: calc(100vh - 240px);
    }
}