@font-face {
    font-family: 'TTFirsNeue';
    src: url('../fonts/TTFirsNeue-Medium.woff') format('woff'),
         url('../fonts/TTFirsNeue-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: 'TTFirsNeue';
    src: url('../fonts/TTFirsNeue-Regular.woff') format('woff'),
         url('../fonts/TTFirsNeue-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "TTFirsNeue", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    background: #002971 url(../img/backgrounds/page-bg.jpg) top no-repeat;
    background-size: max(1500px, 100%) auto;
    /* background-color: #012e7b; */
    margin: 0;
    padding: 0;
    text-rendering: optimizeSpeed;
}
.body-wrapper {
    overflow: clip;
    margin: 0;
}
a {
    text-decoration: none;
    transition: all .2s ease;
    color: #98cbff;
}
img, picture {
    max-width: 100%;
    display: block;
}
.header {
    width: 100%;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
}
.header__container {
    width: 100%;
    min-width: 0;
    padding: 34px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    transition: all .3s ease;
    max-width: calc(100dvw - 6.25% - 6.25%);
    color: #d2dbe4;
}
.header__container a {
    color: #d2dbe4;
}
.header__container a:hover {
    color: #fff;
}
.logo {
    width: max-content;
}
.logo:hover {
    transform: scale(1.04);
    transform-origin: center center;
}
.header__first {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 45px;
}
.nav-wrap {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
}
.nav__multi {
    position: relative;
}
.multi-title {
    padding: 16px 24px;
    padding-right: 44px;
    border-radius: 10px;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
}
.multi-title::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    top: 55%;
    right: 24px;
    transform: translateY(-50%) scale(1, -1);
    background: url(../img/icons/nav-multi_arrow.png) center no-repeat;
    background-size: cover;
    transition: all .3s ease;
}
.nav__multi.active, .nav__multi:hover .multi-title {
    border-radius: 10px;
    background: #1e4793;
    color: #fff;
}
.nav__multi.active .multi-title::after {
    transform: translateY(-50%) scale(1, 1);
}
.multi-list {
    position: absolute;
    display: flex;
    min-width: 0;
    flex-direction: column;
    top: 100%;
    left: 50%;
    width: 350px;
    transform: translateX(-50%);
    padding: 10px 0;
    margin-top: 8px;
    border-radius: 10px;
    background: #103984;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}
.nav__multi.active .multi-list {
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0 0 20px rgba(1, 27, 79, 0.3));
}
.multi-el {
    padding: 16px 24px;
    width: 100%;
    transition: all .3s ease;
    font-weight: 400;
}
.multi-el:hover {
    background: #1e4793;
}
.nav__list {
    display: flex;
    min-width: 0;
    gap: 60px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__list-el {
    margin: 0;
    padding: 0;
    position: relative;
}
.nav__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
}
.header__second {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 18px;
}
.swap-lang-wrap {
    display: flex;
    min-width: 0;
    align-items: center;
    cursor: pointer;
    position: relative;
    text-transform: none;
}
.swap-lang {
    position: relative;
    z-index: 5;
}
.swap-lang-item {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    color: #d2dbe4;
    font-size: 12px;
    text-transform: uppercase;
    width: 38px;
    height: 38px;
    background: #12306d;
    border-radius: 56%;
    transition: all .3s ease;
}
.swap-lang-item:hover {
    color: #fff;
    background: #1b4599;
}
.lang-item-name {
    transition: all .2s ease;
}
.lang-list .swap-lang-item:hover .lang-item-name {
    color: #fff;
    width: 30px;
}
.lang-list {
    position: absolute;
    width: max-content;
    top: 100%;
    left: 50%;
    min-width: 0px;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    transition: all .3s ease-in-out;
    z-index: 0;
    cursor: default;
}
.lang-list .lang-item-name {
    color: #a9a7b2;
    font-size: 13px;
    font-weight: 400;
}
.swap-lang-wrap:hover .lang-list {
    opacity: 1;
    visibility: visible;
}
.btn {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 18px 35px;
    font-size: 16px;
    border-radius: 25px;
    background: #e5e5e5;
    color: #001343;
    transition: all .3s ease;
    width: max-content;
    border: none;
    outline: none;
    position: relative;
    gap: 15px;
    padding-right: 20px;
}
.btn-arrow {
    position: relative;
    content: "";
    width: 11px;
    height: 9px;
    background-image: url(../img/icons/btn-arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transition: all .3s ease;
}
.btn-arrow::after {
    position: absolute;
    content: "";
    width: 11px;
    height: 9px;
    background-image: url(../img/icons/btn_blue-arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .3s ease;
    right: 0;
    opacity: 0;
    transition: all .3s ease;
}
.btn:hover .btn-arrow::after {
    opacity: 1;
}
.header__container .btn {
    color: #001343;
}
.btn:hover {
    color: #fff;
    background: #3567b9;
}
.header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease,
        min-height 0.3s ease;
}
.header__container {
    transition: padding 0.3s ease;
}
header.is-scrolled {
    background: rgba(0, 0, 0, 0.247);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(25, 0, 255, 0.199);
}
header.is-scrolled .header__container {
    padding: 10px 0;
}

section {
    display: flex;
    min-width: 0;
    justify-content: center;
    position: relative;
    padding: 100px 6.25%;
}
section:first-child {
    /* margin-top: 120px; */
    /* padding-top: 115px; */
    padding-top: calc(120px + 115px);
}
section:last-child {
    padding-bottom: 200px;
}
.container {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
}

/* WELCOME */
.section-title {
    line-height: 1.2;
    color: #fff;
    font-size: 44px;
    text-align: left;
    margin-bottom: 35px;
}
.section-title span {
    color: #7dbdff;
}
section.welcome .section-title {
    max-width: 750px;
}
.section-desc {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}
section.welcome .section-desc {
    max-width: 570px;
}
.section-btns {
    margin-top: 48px;
    display: flex;
    min-width: 0;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
}
.section-features {
    margin-top: 120px;
    display: flex;
    min-width: 0;
    gap: 14px;
}
.feature {
    display: flex;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    max-width: 240px;
    width: 100%;
    padding: 15.5px 18px;
    background: #103984;
    border-radius: 10px;
    gap: 14px;
}
.feature-img {
    flex-shrink: 0;
}
.feature-text {
    text-align: left;
    font-size: 15px;
    line-height: 1.3;
    text-wrap: balance;
}
.feature-text span {
    color: rgba(125, 189, 255, 0.8);
}
.illustration {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    user-select: none;
}
.illustration.mobile {
    display: none;
}

/* SERVICES */
.services-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 13px;
    row-gap: 13px;
}
.service {
    position: relative;
    text-align: left;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/backgrounds/service.png);
    padding: 7.3% 8.5%;
    overflow: hidden;
}
.service.light {
    background-image: url(../img/backgrounds/service-star.png);
}
.service-title {
    color: rgba(152, 203, 255, 0.8);
    display: flex;
    min-width: 0;
    gap: 8px;
    align-items: center;
}
.service-desc {
    font-size: 15px;
    max-width: 90%;
    text-wrap: balance;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 25px;
}
.service-link {
    display: flex;
    min-width: 0;
    align-items: flex-end;
    gap: 8px;
    font-size: 12px;
    color: #98cbff;
    line-height: 1;
    width: max-content;
}
.link-arrow {
    height: 8px;
    margin-bottom: 1.5px;
}
.service-link:hover {
    filter: brightness(120%);
}
.service-img {
    position: absolute;
    top: 48%;
    right: -21%;
    user-select: none;
    pointer-events: none;
}
.service-img.visa {
    top: 40%;
    right: -30%;
}
.service-img.growth {
    top: 46%;
    right: 4%;
}
.service-img.license {
    top: 50%;
    right: -15%;
}
.service-img.money {
    top: 41%;
    right: -13%;
}
.service-img.briefcase {
    top: 53%;
    right: -8%;
}
.service-img.court {
    top: 54%;
    right: -12%;
}
.service-img.time {
    top: 45%;
    right: -4%;
}
.services-block {
    margin-top: 24px;
    width: 100%;
    display: flex;
    min-width: 0;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    border-radius: 6px;
    background: #103984;
}
.block-first {
    display: flex;
    min-width: 0;
    gap: 26px;
    align-items: center;
    justify-content: flex-start;
}
.block-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    text-align: left;
    gap: 9px;
}
.block-title {
    color: #7dbdff;
    line-height: 1;
}
.block-desc {
    font-size: 15px;
    line-height: 1;
}

/* RENT */
.rent-categories {
    display: flex;
    min-width: 0;
    gap: 10px;
    width: 100%;
}
.category {
    aspect-ratio: 190/52;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    width: 190px;
    background: #011b50;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 15px;
    line-height: 1;
}
.category.active {
    background: #164494;
}
.category:not(.active):hover {
    filter: brightness(130%);
}
.rent-items {
    width: 100%;
    margin-top: 36px;
}
.transport-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
    row-gap: 22px;
}
.transport {
    padding: 24px;
    background: #164494;
    border-radius: 10px;
}
.transport-img {
    width: 100%;
    aspect-ratio: 271.79/137.95;
    border-radius: 10px;
    background: rgba(12, 52, 121, 0.5);
    overflow: hidden;
    margin-bottom: 24px;
}
.transport-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.transport-title {
    font-size: 15px;
    line-height: 1;
    color: rgba(125, 189, 255, 0.8);
    text-align: left;
}
.transport-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: left;
    font-size: 13px;
    gap: 10px;
}
.transport-action {
    display: flex;
    min-width: 0;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}
.action-price {
    line-height: 1;
}
.price-day {
    font-size: 15px;
    color: rgba(125, 189, 255, 0.8);
    padding-bottom: 10px;
}
.price-min {
    font-size: 13px;
}
.btn.blue {
    padding: 17px 28px;
    background: #3567b9;
    color: rgba(255, 255, 255, 0.8);
}
.btn.blue:hover {
    background: #fff;
    color: #001343;
}
.btn.rent {
    width: 100%;
    margin-top: 24px;
    background: #01235d;
    color: rgba(255, 255, 255, 0.8);
}
.btn-arrow.light {
    background-image: url(../img/icons/btn_blue-arrow.png);
}
.btn-arrow.light::after {
    background-image: url(../img/icons/btn-arrow.png);
}
.btn.rent:hover {
    background: #fff;
    color: #001343;
}
.transport-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
    row-gap: 22px;
    overflow: hidden;
}
.transport {
    animation: fadeIn 0.4s ease;
}
.transport.is-hidden {
    display: none;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.transport:nth-child(10) ~ .transport {
    display: none;
}

/* ADVANTAGES */
section.advantages .section-desc {
    max-width: 960px;
}
.advantages-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 26px;
    margin-top: 40px;
    width: 100%;
}
.advantage {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding: 33px;
    aspect-ratio: 542/300;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 16px;
    overflow: hidden;
}
.advantage:first-child {
    background-image: url(../img/advantages/advantage_01-bg.jpg);
}
.advantage:nth-child(2) {
    background-image: url(../img/advantages/advantage_2-bg.jpg);
}
.advantage:last-child {
    background-image: url(../img/advantages/advantage_3-bg.jpg);
}
.advantage-title {
    color: rgba(125, 189, 255, 0.8);
    line-height: 1;
}
.advantage-desc {
    font-size: 15px;
    max-width: 320px;
    line-height: 1.3;
}

/* FAQ */
.spoiler {
	--spoiler-container-rows: 0fr;
	--spoiler-container-opacity: 0;
	--spoiler-container-maring: 0 0;
	--spoiler-container-padding: 0 46px;
	--spoiler-bgc-heading: #164494;
	--spoiler-transition: 0.3s all;
	--spoiler-arrow-transform: scale(1, 1);
    border-radius: 36px;
    background: var(--spoiler-bgc-heading);
	transition: var(--spoiler-transition);
	box-sizing: border-box;
	transition: var(--spoiler-transition);
		color: rgba(255, 255, 255, 0.8);
}
[data-spoiler="active"] {
	--spoiler-container-rows: 1fr;
	--spoiler-container-opacity: 1;
	--spoiler-container-maring: 0;
	--spoiler-container-padding: 26px 46px;
	--spoiler-arrow-transform: scale(1, -1);
}
.spoiler__heading {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	padding: 26px 47px;
	line-height: 1.1;
	min-height: 54px;
	box-sizing: border-box;
}
[data-spoiler-trigger] {
	cursor: pointer;
}
.spoiler__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
	color: rgba(var(--color-0), 1);
	margin-left: auto;
	transition: var(--spoiler-transition);
	transform: var(--spoiler-arrow-transform);
}
.spoiler__arrow:after {
	content: "";
	display: inline-block;
	position: relative;
    width: 13px;
    height: 8px;
    background: url(../img/icons/spoiler-arrow.png) center no-repeat;
    background-size: contain;
}
.spoiler__content {
	display: grid;
}
.spoiler__title {
	color: rgba(255, 255, 255, 0.8);
	font-style: normal;
	line-height: normal;

	/* @media (--v8) {
		font-size: 16px;
	} */
}
.spoiler__container {
	margin: var(--spoiler-container-maring);
	padding: var(--spoiler-container-padding);
	display: grid;
	grid-template-rows: var(--spoiler-container-rows);
	overflow: hidden;
	opacity: var(--spoiler-container-opacity);
	transition: var(--spoiler-transition);
	box-sizing: border-box;
}
.spoiler__content {
	min-height: 0;
	font-size: 15px;
    text-align: left;

	/* @media (--v8) {
		font-size: 16px;
	} */
}
.faq-list {
	display: grid;
	gap: 12px;
    width: 100%;
}

/* CONTACTS */
.contacts-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 12px;
    background: url(../img/backgrounds/conatcts-bg.jpg) center no-repeat;
    background-size: cover;
    padding: 46px;
    gap: 30px;
}
.contacts .section-title {
    max-width: 680px;
    margin-bottom: 25px;
}
.contacts .section-desc {
    font-size: 20px;
    color: rgba(125, 167, 223, 0.8)
}
.contacts-socials {
    margin-top: 36px;
    display: flex;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}
.social {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    color: #d8e5f1;
    font-size: 16px;
    height: 54px;
    width: 162px;
    border-radius: 27px;
    background: linear-gradient(45deg, rgb(55,116,207) 0%, rgba(55,116,207,0.85) 15%, rgb(55,116,207) 100%);
}
.social.whatsapp {
    background: linear-gradient(45deg, rgb(44,183,66) 20%, rgb(10,152,33) 100%);
}
.social.telegram {
    background: linear-gradient( 45deg, rgb(39,167,231) 20%, rgb(0,133,199) 100%)
}
.social.instagram {
    background: url(../img/backgrounds/social_instagram-bg.jpg) center no-repeat;
    background-size: cover;
}
.social.number {
    width: 224px;
}
.social:hover {
    filter: brightness(120%);
}
.social.number span {
    margin-left: 8px;
}
.contacts-second {
    max-width: 720px;
    width: 100%;
}
.form-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}
.form-line input {
    padding: 10px 36px;
    outline: none;
    background: #2a61b6;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 72px;
    color: #fff;
    font-size: 18px;
}
.form-line input::placeholder {
    color: rgba(125, 167, 223, 0.8);
}

/* CHAT */
.chat {
    position: fixed;
    right: 6.25%;
    bottom: 6.25%;
    z-index: 5;
    border-radius: 50%;
    width: 66px;
    height: 66px;
}
.chat:hover {
    filter: brightness(120%);
}

/* FOOTER */
.footer {
    background: url(../img/backgrounds/footer-bg.jpg) center no-repeat;
    background-size: cover;
}
.footer__container {
    margin: 0 auto;
    padding: 0 6.25%;
    padding-top: 70px;
    padding-bottom: 80px;
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
}
.footer__first {
    display: flex;
    min-width: 0;
    flex-direction: column; 
}
.footer__socials {
    display: flex;
    min-width: 0;
    gap: 11px;
}
.footer__link-soc {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #0c356e;
    flex-shrink: 0;
}
.footer__link-soc:hover {
    filter: brightness(120%);
}
.footer__links {
    margin-top: 20px;
    display: flex;
    min-width: 0;
    gap: 8px;
    flex-direction: column;
}
.footer__link {
    transition:  all .3s ease;
}
.footer__link:hover {
    filter: brightness(80%);
    text-decoration: underline;
}
.footer__second {
    display: flex;
    min-width: 0;
    flex-direction: column;
    max-width: 750px;
    width: 100%;
    line-height: 1.5;
    gap: 26px;
}
.footer-h {
    color: #d2dbe4;
}
.footer-p {
    color: #8eabc7;
    line-height: 1.6;
}
.watermark {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    cursor: pointer;
    max-width: max-content;
    text-align: left;
    text-transform: uppercase;
    color: rgba(182, 209, 234, 1);
    margin-top: 15px;
    filter: opacity(0.6);
}
.watermark:hover {
    filter: opacity(0.8);
}


/* VISA */
.nav__list-el.solo {
    list-style: none;
}

.feature.wide {
    max-width: 334px;
}

section.services.visa .service-desc {
    font-weight: 400;
    max-width: 100%;
    text-wrap: inherit;
}
.service-img.computer {
    top: 56%;
    right: -10%;
}
.service-img.education {
    top: 61%;
    right: -18%;
}
.service-img.moneybag {
    top: 57%;
    right: -4%;
}
.service-img.crown {
    top: 56%;
    right: -5%;
}
.service-img.herb {
    top: 50%;
    right: -4%;
}
.service-img.beach {
    top: 47%;
    right: -5%;
}
.service-img.family {
    top: 55%;
    right: -1%;
}

.banner-wrap {
    background: url(../img/backgrounds/banner-bg.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    padding: 56px 67px;
    border-radius: 12px;
}
.banner-form {
    max-width: 740px;
    margin-left: auto;
}
.banner-form .form-lines {
    margin-bottom: 40px;
}
.banner-form .form-line input {
    width: 100%;
    background: #5296f7;
}
.banner-form .form-line input::placeholder {
    color: rgba(149, 193, 255, 0.8);
}
.banner-form .btn:hover {
    background: #5296f7;
}

section.advantages.visa .advantage:first-child {
    background-image: url(../img/advantages/advantage_02-bg.jpg);
}

section.processes .container {
    position: relative;
    min-height: 308px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.processes-text {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.processes-text .section-title {
    text-align: center;
}
.process {
    border-radius: 10px;
    padding: 35px;
    background: url(../img/backgrounds/process-bg.jpg) center no-repeat;
    background-size: cover;
    overflow: hidden;
    max-width: 380px;
    text-align: left;
    position: absolute;
}
.process-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: rgba(125, 189, 255, 0.8);
    line-height: 1;
}
.process-desc {
    margin-top: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}
.process.first {
    top: 0;
    left: 0;
}
.process.fourth {
    top: 0;
    right: 0;
}
.process.second {
    bottom: 0;
    left: 190px;
}
.process.third {
    bottom: 0;
    right: 190px;
}
.btn.mobile {
    display: none;
}

section.feedbacks .container {
    position: relative;
}
.feedbacks-slider {
    position: relative;
    overflow: visible;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}
.feedback {
    position: relative;
    text-align: left;
    padding: 35px;
    padding-bottom: 30px;
    background: #1e52a9;
    border-radius: 10px;
}
.feedback-name {
    color: rgba(125, 189, 255, 0.8);
    line-height: 1;
}
.feedback-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    margin-bottom: 24px;
}
.feedback-source {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(125, 189, 255, 0.8);
    line-height: 1;
    gap: 8px;
    max-width: max-content;
}
.feedback-source:hover {
    filter: brightness(120%);
}
.feedback-source_arrow {
    position: relative;
    width: 8px;
    height: 8px;
    background: url(../img/icons/link-arrow.png) center no-repeat;
    background-size: contain;
}
.feedback-stars {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
}
.feedbacks-slider .swiper-wrapper {
    align-items: stretch;
}
.feedbacks-slider .swiper-slide {
    height: auto;
}
.feedback-source {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.feedback-stars {
    position: absolute;
    display: flex;
    min-width: 0;
    gap: 4px;
    margin-top: auto;
    top: 35px;
    right: 35px;
}
.feedback-date {
    position: absolute;
    bottom: 30px;
    right: 35px;
    line-height: 1;
    color: rgba(125, 189, 255, 0.8);
    font-size: 12px;
}
.feedback-btns {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 8px;
    right: 0;
}
.feedbacks-btn {
    position: relative;
    z-index: 5;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #04378f;
    cursor: pointer;
    transition: all .3s ease;
    appearance: none;
}
.feedbacks-btn::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 12px;
    background: url(../img/icons/feedbacks-btn.png) center no-repeat;
    background-size: contain;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.feedbacks-btn_prev::before  {
    transform: translateX(-50%) translateY(-50%) scale(-1, 1);
}
.feedbacks-btn:not(.feedbacks-btn.swiper-button-disabled):hover {
    filter: brightness(120%);
}
.feedbacks-btn.swiper-button-disabled {
    opacity: .4;
    cursor: default;
}

.banner_small-wrap {
    position: relative;
    border-radius: 12px;
    background: url(../img/backgrounds/banner-small.jpg) center no-repeat;
    background-size: cover;
    padding: 56px;
    width: 100%;
}
.banner_small-content {
    max-width: 650px;
    margin-left: auto;
}
section.banner.small .section-title {
    margin-bottom: 0;
}
section.banner.small .section-desc {
    font-size: 20px;
    color: rgba(157, 195, 255, 0.8);
    margin: 30px 0;
}
.banner_small-discount {
    position: absolute;
    top: 56px;
    left: 56px;
    padding: 12px 32px;
    border-radius: 22px;
    font-size: 20px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    background: #56a0fd;
}
.banner_small-content .btn:hover {
    background: #56a0fd;
}

.service-img.documents {
    top: 41%;
    right: -24%;
}
.service-img.lock {
    top: 59%;
    right: -6%;
}
.service-img.money {
    top: 61%;
    right: -8%;
}
section.services.visa .service-desc {
    max-width: 100%;
    text-wrap: inherit;
}

.audience-list {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    text-align: left;
}
.audience-item {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 16px;
    border-radius: 10px;
    padding: 24px 20px;
    background: #1349a8;
    max-width: 475px;
}
.audience-icon {
    flex-shrink: 0;
}
.audience-text {
    line-height: 1.3;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}
.audience-text span {
    color: rgba(125, 189, 255, 0.8);
}
section.audience .btn {
    margin: 0 auto;
    margin-top: 38px;
}

section.banner.work .banner-wrap {
    background: url(../img/backgrounds/banner_2-bg.jpg) center no-repeat;
    background-size: cover;
}

.stages-blocks {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.stages-block {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 20px;
    max-width: 66.33%;
    width: 100%;
}
.stages-block:nth-child(2) {
    margin-left: auto;
}
.stage {
    position: relative;
    width: 50%;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 24px;
    padding: 34px;
    border-radius: 12px;
    background: #1349a8;
    overflow: hidden;
    text-align: left;
}
.stage-title {
    color: rgba(125, 189, 255, 0.8);
}
.stage-desc {
    color: rgba(255, 255, 255, 0.8);
    max-width: 60%;
}
.stage-img {
    position: absolute;
    right: 3%;
    top: 18%;
    user-select: none;
    pointer-events: none;
}

section.advantages.work .advantage:first-child {
    background-image: url(../img/advantages/advantage_03-bg.jpg);
}

section.banner.small.work .banner_small-wrap {
    background: url(../img/backgrounds/banner_2-small.jpg) center no-repeat;
    background-size: cover;
}

/* ADAPTIVE */
.burger {
    position: relative;
    width: 30px;
    height: 30px;
    border: none;
    display: none;
    z-index: 1002;
    background-color: transparent;
    cursor: pointer;
}
.burger span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background-color: #fff;
    left: 6px;
    transition: transform .5s;
    will-change: transform;
}
.burger span:nth-child(1) {
    transform: translateY(-7.5px);
} 
.burger span:nth-child(3) {
    transform: translateY(7.5px);
} 
.burger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
} 
.burger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.burger.active span:nth-child(2) {
    display: none;
}
.menu {
    display: none;
    visibility: hidden;
    z-index: 1001;
    min-height: 100vh;
}
.menu__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}


@media(max-width:1850px) {
    body {
        font-size: 16px;
    }
    
    .header__container {
        font-size: 14px;
    }
    .multi-list {
        width: 310px;
    }
    .multi-el {
        padding: 14px 21px;
    }

    .illustration img {
        max-height: 750px;
    }

    .services-list {
        column-gap: 10px;
        row-gap: 10px;
    }
    .service-icon {
        transform: scale(0.82);
    }
    .service-title {
        gap: 6px;
        font-size: 16px;
    }
    .service-desc {
        font-size: 13px;
    }
    .service-link {
        font-size: 10.5px;
    }
    .link-arrow {
        height: 7px;
    }
    .link-arrow img {
        width: 7px;
        height: 7px;
    }
    .service-img {
        transform: scale(0.88);
        transform-origin: top;
    }

    .audience-item {
        max-width: 465px;
    }
    .banner-form {
        max-width: 670px;
    }
    .stage-img {
        transform: scale(0.88);
        transform-origin: bottom right;
    }
    .stage-title {

    }
    .stage-desc {
        max-width: 74%;
    }

    .transport {
        padding: 18px;
    }
    .transport-title {
        font-size: 12px;
    }
    .transport-list {
        row-gap: 16.5px;
        column-gap: 15px;
    }
    .transport-img {
        margin-bottom: 18px;
    }
    .transport-info {
        margin-top: 22.5px;
        margin-bottom: 22.5px;
        gap: 7.5px;
        font-size: 12px;
    }
    .price-day {
        font-size: 12px;
        padding-bottom: 7.5px;
    }
    .price-min {
        font-size: 12px;
    }
    .btn.blue {
        padding: 12.75px 21px;
    }
}

@media(max-width: 1750px) {
    .illustration img {
        max-height: 680px;
    }
}

@media(max-width: 1650px) {
    body {
        font-size: 12px;
    }

    .header__container {
        font-size: 12px;
        padding: 25px 0;
    }
    .header__first {
        gap: 33px;
    }
    .logo img {
        width: 32.25px;
    }
    .nav-wrap {
        gap: 12px;
    }
    .multi-title {
        padding: 12px 18px;
        padding-right: 33px;
        border-radius: 7.5px;
    }
    .multi-title::after {
        width: 7.5px;
        height: 4.5px;
        right: 18px;
    }
    .multi-list {
        padding: 7.5px 0;
        margin-top: 6px;
        width: 232.5px;
    }
    .multi-el {
        padding: 10.5px 15px;
    }
    .nav__list {
        gap: 45px;
    }
    .header__second {
        gap: 13.5px;
    }
    .swap-lang-item {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .lang-list {
        gap: 7.5px;
        padding-top: 7.5px;
    }
    .btn {
        padding: 13.5px 26px;
        font-size: 12px;
        border-radius: 18.75px;
    }
    .btn {
        padding-right: 15px;
        gap: 11px;
    }
    .btn-arrow, .btn-arrow::after {
        width: 8.25px;
        height: 6.75px;
    }
    .chat {
        width: 49.5px;
        height: 49.5px;
    }
    section {
        padding: 75px 6.25%;
    }
    section:first-child {
        padding-top: calc(90px + 86.25px);
    }
    
    section.welcome .section-title {
        max-width: 562.5px;
    }
    .section-title {
        font-size: 33px;
        margin-bottom: 26.25px;
    }
    section.welcome .section-desc {
        max-width: 427.5px;
    }
    .section-btns {
        margin-top: 36px;
        gap: 18px;
    }
    .section-features {
        margin-top: 80px;
        gap: 10.5px;
    }
    .feature {
        padding: 11.6px 13.5px;
        gap: 9px;
        max-width: 192px;
    }
    .feature-img {
        transform: scale(0.75);
    }
    .feature-text {
        font-size: 12px;
    }
    .illustration {
        max-width: 718px;
    }

    .service {
        padding: 5.5% 6.3%;
    }
    .services-list {
        column-gap: 7.5px;
        row-gap: 7.5px;
    }
    .service-title {
        gap: 3px;
        font-size: 12px;
    }
    .service-icon {
        transform: scale(0.615);
    }
    .service-desc {
        font-size: 12px;
        margin-top: 7.5px;
        margin-bottom: 18.75px;
    }
    .service-link {
        font-size: 12px;
        gap: 6px;
    }
    .link-arrow {
        height: 5.25px;
    }
    .link-arrow img {
        width: 5.25px;
        height: 5.25px;
    }
    .service-img {
        transform: scale(0.5);
    }
    .service-img {
        top: 58%;
        right: -26%;
    }
    .service-img.visa {
        top: 52%;
        right: -36%;
    }
    .service-img.growth {
        top: 48%;
        right: -7%;
    }
    .service-img.license {
        top: 57%;
        right: -23%;
    }
    .service-img.money {
        top: 58%;
        right: -20%;
    }
    .service-img.briefcase {
        top: 55%;
        right: -20%;
    }
    .service-img.court {
        top: 56%;
        right: -22%;;
    }
    .service-img.time {
        top: 47%;
        right: -15%;
    }
    .services-block {
        margin-top: 18px;
        padding: 22.5px 26.25px;
    }
    .block-first {
        gap: 19.5px;
    }
    .block-img img {
        width: 35.25px;
    }
    .block-text {
        gap: 6.75px;
    }
    .block-desc {
        font-size: 12px;
    }

    .rent-categories {
        gap: 7.5px;
    }
    .category {
        width: 142.5px;
        font-size: 12px;
    }
    .btn.rent {
        margin-top: 18px;
    }

    .advantages-list {
        column-gap: 19.5px;
        margin-top: 30px;
    }
    .advantage {
        gap: 7.5px;
        padding: 24.75px;
    }
    .advantage-desc {
        font-size: 12px;
        max-width: 240px;
    }
    .advantage-title {
        filter: drop-shadow(0 0 3px #000);
        color: rgb(140, 197, 255);
    }

    .faq-list {
        gap: 8px;
    }
    .spoiler__heading {
        gap: 7.5px;
        min-height: 40.5px;
        padding-left: 34.5px;
        padding-right: 34.5px;
    }
    .spoiler {
        border-radius: 27px;
    }
    [data-spoiler="active"] {
        --spoiler-container-padding: 19.5px 34.5px;
    }
    .spoiler__container {
        padding-left: 34.5px;
        padding-right: 34.5px;
    }
    .spoiler__content {
        font-size: 12px;
    }
    .spoiler__arrow::after {
        width: 9.75px;
        height: 6px;
    }
    .spoiler__title {
        font-size: 13.5px;
    }

    .contacts-block {
        padding: 34.5px;
        gap: 22.5px;
    }
    .contacts .section-title {
        max-width: 510px;
        margin-bottom: 18.75px;
    }
    .contacts .section-desc {
        font-size: 15px;
    }
    .contacts-socials {
        margin-top: 27px;
        gap: 8px;
    }
    .social {
        font-size: 12px;
        height: 40.5px;
        border-radius: 20.25px;
        width: 121.5px;
    }
    .social.number {
        width: 168px;
    }
    .social.number span {
        margin-left: 6px;
    }
    .social.number img {
        transform: scale(0.75);
    }
    .contacts-second {
        max-width: 540px;
    }
    .form-lines {
        gap: 7.5px;
        margin-bottom: 18.75px;
    }
    .form-line input {
        padding: 13.5px 27px;
        height: 54px;
        font-size: 13.5px;
    }

    .footer__container {
        padding-top: 52px;
        padding-bottom: 60px;
        font-size: 12px;
    }
    .footer__socials {
        gap: 8.25;
    }
    .footer__link-soc {
        height: 30px;
        width: 30px;
    }
    .footer__link-soc img {
        transform: scale(0.75);
    }
    .footer__links {
        margin-top: 15px;
        gap: 6px;
    }
    .footer__second {
        gap: 19.5px;
        max-width: 562.5px;
    }
    .watermark {
        gap: 7.5px;
        font-size: 12px;
        margin-top: 11.25px;
    }
    .watermark-img img {
        width: 102px;
    }

    .feature.wide {
        max-width: 267.2px;
    }
    .service-img.computer {
        top: 56%;
        right: -22%;
    }
    .service-img.education {
        top: 69%;
        right: -29%;
    }
    .service-img.moneybag {
        top: 62%;
        right: -20%;
    }
    .service-img.crown {
        top: 62%;
        right: -16%;
    }
    .service-img.herb {
        top: 51%;
        right: -14%;
    }
    .service-img.beach {
        top: 52%;
        right: -14%;
    }
    .service-img.family {
        top: 57%;
        right: -12%;
    }

    .banner-wrap {
        padding: 42px 50.25px;
    }
    .banner-form {
        max-width: 502.5px;
    }
    .banner-form .form-lines {
        margin-bottom: 30px;
    }

    .audience-list {
        gap: 15px;
    }
    .audience-item {
        gap: 8px;
        padding: 18px 15px;
        max-width: 348.75px;
    }
    .audience-icon img {
        transform: scale(0.75);
    }
    .audience-text {
        font-size: 12px;
    }
    section.audience .btn {
        margin-top: 28.5px;
    }

    .stages-blocks {
        gap: 15px;
    }
    .stages-block {
        gap: 15px;
    }
    .stage {
        gap: 8px;
        padding: 25.5px;
    }
    .stage-img {
        transform: scale(0.5);
        transform-origin: center;
    }
    .stage-img.docs {
        top: 0%;
        right: -15%;
    }
    .stage-img.scales {
        top: 0;
        right: -10%;
    }
    .stage-img.building {
        top: -5%;
        right: -10%;
    }
    .stage-img.folder {
        top: 0;
        right: -5%;
    }

    .feedback {
        padding: 26.25px;
        padding-bottom: 22.5px;
    }
    .feedback-text {
        margin-top: 15px;
        margin-bottom: 18px;
        font-size: 12px;
    }
    .feedback-source {
        gap: 4px;
        font-size: 12px;
    }
    .feedback-source_icon {
        transform: scale(0.75);
    }
    .feedback-source_arrow {
        width: 6px;
        height: 6px;
    }
    .feedback-stars {
        gap: 0px;
    }
    .feedback-stars {
        top: 26.25px;
        right: 26.25px;
    }
    .feedback-star {
        transform: scale(0.75);
    }
    .feedback-date {
        bottom: 22.5px;
        right: 26.25px;
        font-size: 12px;
    }
    .feedback-btns {
        gap: 6px;
        top: 6px;
    }
    .feedbacks-btn::before {
        width: 12px;
        height: 9px;
    }
    .feedbacks-btn {
        width: 33.75px;
        height: 33.75px;
    }

    .banner_small-wrap {
        padding: 42px;
    }
    .banner_small-content {
        max-width: 495px;
    }
    section.banner.small .section-desc {
        font-size: 15px;
        margin: 22.5px 0;
    }
    .banner_small-discount {
        top: 42px;
        left: 42px;
        padding: 9px 24px;
        border-radius: 16.5px;
        font-size: 15px;
    }

    header.is-scrolled .header__container {
        padding: 7.5px 0;
    }

    .processes-text {
        max-width: 420px;
    }
    .process {
        padding: 26.25px;
        max-width: 304px;
    }
    .process-title {
        gap: 5px;
    }
    .process-icon {
        transform: scale(0.75);
    }
    .process-desc {
        margin-top: 6px;
        font-size: 12px;
    }
    section.processes .container {
        min-height: 231px;
    }
    .process.second {
        left: 140px;
    }
    .process.third {
        right: 140px;
    }
}

@media(max-width: 1500px) {
    .service-img {
        display: none;
    }
}

@media(max-width: 1420px) {
    .transport-list {
        grid-template-columns: repeat(4, 1fr);
    }
    .transport:nth-child(8) ~ .transport {
        display: none;
    }
}

@media(max-width: 1200px) {
    body {
        font-size: 12px;
    }

    .nav-wrap, .header__second .btn {
        display: none;
    }
    .burger {
        display: block;
        position: relative;
        transition: transform .2s ease;
    }
    .logo:hover {
        transform: none;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .menu__list li:first-of-type {
        border-top: 1px solid #6a4bffcc;
    }
    .menu__list li {
        text-align: center;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid #6a4bffcc;
        padding-left: 5%;
    }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 81.5px 0;
        transform: translateY(-100%);
        transition: all .5s;
        display: block;
    }
    header.is-scrolled .menu {
        padding: 46.5px 0;
    }
    .logo {
        z-index: 1002;
    }
    .menu.active {
        transform: translateY(0);
        visibility: visible;
        background-color: rgba(19, 0, 108, 0.95);
    }
    .menu__item a {
        font-size: 14px;
        width: calc(100% - 25px);
        height: 100%;
        display: flex;
        padding: 15px 0;
        text-transform: none;
    }
    .menu__list .menu__item:last-child {
        border-top: none;
    }
    .no-scroll {
        overflow: hidden;
    }
    .header__scroll {
        top: 10px;
    }
    .header__scroll .menu {
        top: -10px;
        padding: 50px 0;
    }
    .menu__item-special {
        padding-top: 20px;
        display: flex;
        min-width: 0;
        justify-content: center;
        align-items: center;
    }
    .menu__item-special .btn {
        display: flex;
    }
    .header__container {
        max-width: calc(100dvw - 5% - 5%);
    }

    section {
        padding: 40px 5%;
    }
    section:first-child {
        padding-top: calc(130px + 81.5px);
    }
    section:last-child {
        padding-bottom: 100px;
    }
    .illustration {
        display: none;
    }
    .illustration.mobile {
        display: block;
        width: 360px;
        left: 50%;
        transform: translateX(-50%);
    }

    section.welcome .section-title {
        text-align: center;
    }
    .section-title {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .section-btns {
        justify-content: center;
        margin: 0 auto;
        margin-top: 22px;
        flex-wrap: wrap;
        gap: 7px;
    }
    .btn {
        padding: 8.5px 18px;
        font-size: 12px;
        border-radius: 18.75px;
    }
    .section-features {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    .feature {
        padding: 6px 7px;
        gap: 5px;
        max-width: 170px;
    }
    .feature.wide {
        max-width: 240px;
    }
    .feature-text {
        font-size: 12px;
    }
    .feature-img img {
        max-width: 13px;
        width: 100%;
        flex-shrink: 0;
    }

    section.welcome .container {
        justify-content: center;
        align-items: center;
    }
    section.welcome .section-desc {
        text-align: center;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr)
    }
    .service-title {
        font-size: 12px;
    }
    .service-desc {
        font-size: 12px;
    }

    .banner-wrap {
        padding: 21px 25px;
        background-position: right !important;
    }
    .banner-form {
        max-width: 340px;
    }
    .banner-form .section-title {
        text-align: center;
    }
    .banner-form .form-lines {
        margin-bottom: 15px;
    }
    .banner-wrap .btn {
        margin: 0 auto;
    }

    .advantages-list {
        display: flex;
        justify-content: center;
        gap: 10px;
        min-width: 0;
        flex-wrap: wrap;
    }
    section.advantages.visa .advantages-list, section.advantages.work .advantages-list {
        margin-top: 0;
    } 
    .advantage {
        padding: 20px;
        width: 100%;
        max-width: 324px;
    }
    .advantage-desc {
        font-size: 12px;
    }
    .advantage-title, .advantage-desc {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    }

    .process-wrap {
        display: flex;
        min-width: 0;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .process {
        position: unset;
        padding: 15px;
    }
    .process-desc {
        font-size: 12px;
    }
    .processes-text .btn {
        display: none;
    }
    .btn.mobile {
        margin-top: 20px;
        display: flex;
    }

    .feedback {
        padding: 15px;
    }
    .feedback-text {
        font-size: 12px;
        margin-top: 9px;
        margin-bottom: 10px;
    }
    .feedback-stars {
        top: 15px;
        gap: 3px;
    }
    .feedback-star {
        width: 10px;
        transform: scale(1);
    }
    .feedback-date {
        bottom: 20px;
    }
    .feedback-source_icon {
        transform: scale(0.55);
    }
    .feedback-btns {
        top: 0;
    }
    .feedbacks-btn {
        width: 20px;
        height: 20px;
    }
    .feedbacks-btn::before {
        width: 7.3px;
        height: 5.5px;
    }
    .spoiler {
        border-radius: 20px;
    }
    .spoiler__heading {
        padding: 10px 15px;
        min-height: 21px;
        font-size: 12px;
    }
    .spoiler__arrow::after {
        width: 5.9px;
        height: 3.6px;
    }
    [data-spoiler="active"] {
        --spoiler-container-padding: 10px 27px;
    }
    .spoiler__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .spoiler__content {
        font-size: 12px;
    }

    .banner_small-content {
        position: relative;
        max-width: 350px;        
    }
    .banner_small-wrap {
        background-position: right;
        padding: 24px;
    }
    .section-desc {
        font-size: 12px;
    }
    section.banner.small .section-desc {
        font-size: 12px;
        margin: 13px 0;
    }
    .banner_small-discount {
        top: auto;
        left: auto;
        bottom: 24px;
        right: 24px;
        padding: 6px 15px;
        font-size: 12px;
    }
    .chat {
        width: 35px;
        height: 35px;
        right: 5%;
        bottom: 5%;
    }

    .stages-block {
        flex-wrap: wrap;
        gap: 10px;
        max-width: 340px;
    }
    .stage {
        width: 100%;
        gap: 5.5px;
        padding: 15px;
    }
    .stage-desc {
        max-width: 75%;
    }
    .stage-img.folder {
        top: -26px;
        right: -11%;
    }
    .stage-img.building {
        top: -40%;
        right: -16%;
    }
    .stage-img.scales {
        top: -31%;
        right: -15%;
    }
    .stage-img.docs {
        top: -34%;
        right: -19%;
    }

    .services-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }
    .block-first {
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    .block-title, .block-desc {
        text-align: center;
    }
    .block-desc {
        font-size: 12px;
    }

    .rent-categories {
        flex-wrap: wrap;
    }
    .category {
        width: fit-content;
        font-size: 12px;
        padding: 7px 12px;
        aspect-ratio: unset;
    }
    .rent-items {
        margin-top: 20px;
    }
    .transport-list {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 7px;
        row-gap: 7px;
    }
    .transport:nth-child(6) ~ .transport {
        display: none;
    }
    .transport {
        padding: 8px;
        /* max-width: 174px; */
    }
    .transport-title {
        font-size: 12px;
    }
    .transport-info {
        margin: 10px 0;
        gap: 3px;
        font-size: 12px;
    }
    .price-day {
        font-size: 12px;
    }
    .price-min {
        font-size: 12px;
    }
    .btn.blue {
        padding: 7px 10px;
    }

    .form-line input {
        padding: 10px 15px;
        height: 30px;
    }
    
    section.banner.small.work .banner_small-wrap {
        background-position: right;
    }

    .contacts-second {
        max-width: 340px;
    }
    .contacts .section-desc{
        font-size: 12px;
    }
    .contacts-block {
        padding: 20px;
        gap: 14px;
        flex-wrap: wrap;
    }
    .contacts-socials {
        justify-content: flex-start;
        align-items: center;
        margin-top: 15px;
    }
    .social {
        height: 25px;
        font-size: 12px;
        width: 80px;
    }
    .social.number {
        width: 140px;
    }
    .social.number span {
        margin-left: 0px;
    }
    .social.number img {
        transform: scale(0.55);
    }
    .form-line input {
        font-size: 12px;
    }
    .form-lines {
        gap: 5px;
        margin-bottom: 10px;
    }

    .footer__container {
        padding-top: 34px;
        padding-bottom: 40px;
        font-size: 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer__first {
        align-items: center;
    }
    .footer__links {
        margin-top: 10px;
    }
    .footer__second {
        gap: 5px;
        text-align: left;
    }
    .watermark {
        margin: 0 auto;
        margin-top: 5px;
    }
    .footer-h {
        text-align: center;
    }
}

@media(max-width: 1070px) {
    .transport-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width: 930px) {
    .contacts-block {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .contacts-form .btn {
        margin: 0 auto;
    }
    .contacts-first {
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
    }
    .contacts-first .section-title, .contacts-first .section-desc {
        text-align: center;
    }
    .contacts-socials {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media(max-width: 884px) {
    .transport-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .transport:nth-child(6) ~ .transport {
        display: none;
    }
}
@media(max-width: 710px) {
    .transport-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .transport:nth-child(6) ~ .transport {
        display: none;
    }
}
@media(max-width: 400px) {
    .transport-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .transport:nth-child(4) ~ .transport {
        display: none;
    }
}

@media(max-width: 780px) {
    section.advantages .container {
        align-items: center;
    }
}


@media(max-width: 650px) {
    section.services .container {
        align-items: center;
    }
    .services-list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7.5px;
        flex-wrap: wrap;
    }
    .service {
        max-width: 290px;
    }
}

@media(max-width: 600px) {
    .service-img {
        display: none;
    }
    .service-title {
        height: 30px;
        line-height: 1.3;
    }
    .service-desc {
        max-width: 100%;
    }
    .service-link {
        font-size: 12px;
    }
    .link-arrow {
        height: 4.7px;
        flex-shrink: 0;
    }
    .link-arrow img {
        width: 4.7px;
        height: 4.7px;
    }
}

@media(max-width: 550px) {
    section.stages .container {
        align-items: center;
    }
    .stages-blocks {
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .stages-block {
        gap: 10PX;
    }
    .stages-block:nth-child(2) {
        margin: 0;
    }
}

@media(max-width: 500px) {
    section.welcome .container {
        justify-content: flex-start;
        align-items: flex-start;
    }
    section.welcome .section-desc {
        text-align: left;
    }
}

@media(max-width: 400px) {
    .banner_small-wrap {
        padding: 10px;
    }
    .banner_small-discount {
        bottom: 10px;
        right: 10px;
    }
}


/* SCROLL REVEAL — ОБЩАЯ АНИМАЦИЯ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.2, .65, .25, 1),
                transform .8s cubic-bezier(.2, .65, .25, 1);
    will-change: opacity, transform;
}

.reveal_visible {
    opacity: 1;
    transform: translateY(0);
}

/* СТУПЕНЧАТАЯ АНИМАЦИЯ ДЛЯ СПИСКОВ */
.reveal_stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.2, .65, .25, 1),
                transform .7s cubic-bezier(.2, .65, .25, 1);
}

.reveal_stagger_visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Индивидуальные задержки */
.reveal_stagger > *:nth-child(1)  { transition-delay: .00s; }
.reveal_stagger > *:nth-child(2)  { transition-delay: .12s; }
.reveal_stagger > *:nth-child(3)  { transition-delay: .24s; }
.reveal_stagger > *:nth-child(4)  { transition-delay: .36s; }
.reveal_stagger > *:nth-child(5)  { transition-delay: .48s; }
.reveal_stagger > *:nth-child(6)  { transition-delay: .60s; }
.reveal_stagger > *:nth-child(7)  { transition-delay: .72s; }
.reveal_stagger > *:nth-child(8)  { transition-delay: .84s; }
.reveal_stagger > *:nth-child(9)  { transition-delay: .96s; }
.reveal_stagger > *:nth-child(10) { transition-delay: 1.08s; }
.reveal_stagger > *:nth-child(11) { transition-delay: 1.20s; }
.reveal_stagger > *:nth-child(12) { transition-delay: 1.32s; }
.reveal_stagger > *:nth-child(13) { transition-delay: 1.44s; }
.reveal_stagger > *:nth-child(14) { transition-delay: 1.56s; }
.reveal_stagger > *:nth-child(15) { transition-delay: 1.68s; }
.reveal_stagger > *:nth-child(16) { transition-delay: 1.80s; }
.reveal_stagger > *:nth-child(17) { transition-delay: 1.92s; }
.reveal_stagger > *:nth-child(18) { transition-delay: 2.04s; }
.reveal_stagger > *:nth-child(19) { transition-delay: 2.16s; }
.reveal_stagger > *:nth-child(20) { transition-delay: 2.28s; }

@media (max-width: 800px) {
    .project-card:nth-child(odd):last-child {
       display: none;
    }
}
@media (min-width: 801px) {
    .project-card:nth-child(3n - 1):last-child,
    .project-card:nth-child(3n - 2):nth-last-child(2),
    .project-card:nth-child(3n - 2):last-child {
       display: none;
    }
}

.contacts-form {
    position: relative;
}

.form-notice {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    transition: opacity .25s ease, transform .25s ease;
}

.form-notice.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.form-notice__content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    background: rgba(20, 20, 20, 0.92);
    white-space: nowrap;
}

.form-notice.success .form-notice__content {
    background: rgba(9, 170, 70, 0.92);
}

.form-notice.error .form-notice__content {
    background: rgba(210, 40, 40, 0.95);
}

input.error {
    border: 1px solid rgba(255, 90, 90, 0.95) !important;
    box-shadow: 0 0 0 2px rgba(255, 90, 90, 0.15);
}

.form-line input {
    transition: border-color .2s ease, box-shadow .2s ease;
    border: 1px solid transparent;
}

.contacts-form button.btn {
    border: none;
    cursor: pointer;
}

@media (max-width: 800px) {
    .form-notice {
        top: -48px;
        width: calc(100% - 20px);
    }

    .form-notice__content {
        white-space: normal;
        text-align: center;
        font-size: 14px;
        padding: 12px 14px;
    }
}