﻿@import url("https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900");


@font-face {
    font-family: Arm;
    src: url('../fonts/arm.TTF');
}

@font-face {
    font-family: MontserratArm400;
    src: url('../fonts/Montserratarm-Regular.otf') format('opentype');
}

@font-face {
    font-family: MontserratArm500;
    src: url('../fonts/Montserratarm-Medium.otf') format('opentype');
}

@font-face {
    font-family: MontserratArm700;
    src: url('../fonts/Montserratarm-Bold.otf') format('opentype');
}

@font-face {
    font-family: MontserratArm600;
    src: url('../fonts/Montserratarm-SemiBold.otf') format('opentype');
}



:lang(en):root {
    --fontFamilyDefault: sans-serif;
    --fontFamily400: sans-serif;
    --fontFamily500: sans-serif;
    --fontFamily600: sans-serif;
    --fontFamily700: sans-serif;
}

:lang(ru):root {
    --fontFamilyDefault: "Inter", sans-serif;
    --fontFamily400: "Inter", sans-serif;
    --fontFamily500: "Inter", sans-serif;
    --fontFamily600: "Inter", sans-serif;
    --fontFamily700: "Inter", sans-serif;
}

:lang(am):root {
    --fontFamilyDefault: Arm;
    --fontFamily400: MontserratArm400, sans-serif;
    --fontFamily500: MontserratArm500, sans-serif;
    --fontFamily600: MontserratArm600, sans-serif;
    --fontFamily700: MontserratArm700, sans-serif;
}

:root {
    --white: #fff;
    --blue: #001a46;
    --gray: #8490a4;
    --gray2: #667085;
    --backgroundGray: #f9fafb;
    --gradient: linear-gradient(0deg, #12bee5 0%, #c071e9 50%, #f24f5a 100%);
    --btnColor: linear-gradient(90deg, #001a46 0%, #012563 100%);
    --btnHover: #022052;
    --btnHoverBorder: 2px solid linear-gradient(90deg, #001a46 0%, #012563 100%);
    --btnHoverSecondary: var(--btnHoverBorder);
    --btnPressed: #0c2a5c;
    --backgroundSlider: #e5ffff;
}

textarea::-webkit-scrollbar-track {
    background: var(--backgroundSlider)
}
textarea::-webkit-scrollbar-thumb {
    background: var(--blue)
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

    *,
    *:before,
    *:after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    background-color: var(--backgroundGray);
    height: 100%;
    width: 100%;
    font-size: 100%;
    font-family: var(--fontFamilyDefault);
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding: 120px;
}

    body.lock, body.lock-m {
        overflow: hidden;
    }
    body.lock-m {
        position:relative;
        height: max-content;
    }
        body.lock-m:before {
            content: "";
            inset: 0;
            background: rgba(0,0,0,0.5);
            position: absolute;
            height: auto;
            z-index: 2
        }

input,
button,
textarea {
    font-family: inherit;
}

    input::-ms-clear {
        display: none;
    }

button {
    cursor: pointer;
}

    button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

a,
a:visited {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 20px;
    line-height: 32px;
    color: var(--white);
    border-radius: 8px;
    letter-spacing: 0.05em;
    background: var(--btnColor);
}

.wrapper {
    max-width: 2125px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 20px;
}

.title {
    font-family: var(--fontFamily700);
    font-weight: 700;
    font-size: 30px;
    line-height: 32.57px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--blue);
}

.subtitle {
    color: var(--gray2);
    font-size: 20px;
    line-height: 30px;
    font-family: var(--fontFamily400);
    text-align: center;
    margin-bottom: 32px;
}

.common-slide {
    background-color: var(--backgroundSlider);
    padding: 32px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: auto;
}

    .common-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        overflow: hidden;
        border-radius: 8px;
    }

.next-button,
.prev-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.next-button {
    right: -92px;
}

.prev-button {
    left: -92px;
}

    .next-button img,
    .prev-button img {
        width: 100%;
        height: 100%;
    }

.modal-swiper .swiper-button-next, .blog__swiper .swiper-button-next, .blog__swiper .swiper-button-prev, .modal-swiper .swiper-button-prev {
    color: var(--white) !important;
}
.common-form {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

    .common-form label {
        border-bottom: 1px solid var(--gray);
    }

    .common-form input,
    .common-form textarea {
        width: 100%;
        padding: 22px 20px;
        background-color: transparent;
        font-size: 18px;
        font-family: var(--fontFamily400);
        color: var(--blue);
    }

.common-form label textarea {
    resize: none;
    min-height: 150px;
}

.common-form button {
    display: block;
    width: max-content;
    margin: 24px auto 0 auto;
}

.loader-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    z-index: 100000;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    color: #6D24D6;
}

.loader__container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #A31BAD;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%, 100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

#send-callback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(25px);
    opacity: .97;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100001;
}

    #send-callback .send-wrapper {
        animation: wrapperAni 230ms ease-in 200ms forwards;
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        display: inline-block;
        height: 400px;
        margin: 0 20px;
        opacity: 0;
        position: relative;
        vertical-align: top;
        width: 300px;
    }

    #send-callback .header-send__wrapper {
        height: 200px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    #send-callback .header-send {
        animation: headerAni 230ms ease-in 430ms forwards;
        border-radius: 0;
        height: 700px;
        left: -200px;
        opacity: 0;
        position: absolute;
        top: -500px;
        width: 700px;
        background-color: #BEF0C8;
    }

        #send-callback .header-send .sign {
            animation: signAni 430ms ease-in 660ms forwards;
            border-radius: 50%;
            bottom: 50px;
            display: block;
            height: 100px;
            left: calc(50% - 50px);
            opacity: 0;
            position: absolute;
            width: 100px;
            background-color: #4EC45E;
            box-shadow: 0 0 0 15px #74D181, 0 0 0 30px #9BDEA4;
        }

            #send-callback .header-send .sign:before,
            #send-callback .header-send .sign:after {
                background: var(--white);
                border-radius: 2px;
                content: "";
                display: block;
                height: 40px;
                left: calc(50% - 2px);
                position: absolute;
                top: calc(50% - 20px);
                width: 5px;
            }

            #send-callback .header-send .sign:before {
                left: calc(50% + 5px);
                transform: rotate(45deg);
                top: calc(50% - 20px);
            }

            #send-callback .header-send .sign:after {
                height: 20px;
                left: calc(50% - 15px);
                transform: rotate(-45deg);
                top: calc(50% - 5px);
            }

    #send-callback .text-wrapper {
        text-align: center;
        margin-top: 50px;
        padding: 0 15px;
    }

        #send-callback .text-wrapper p {
            font-size: 25px;
            line-height: 31px;
            color: var(--blue);
            margin-bottom: 12px;
        }

@keyframes wrapperAni {
    0% {
        opacity: 0;
        transform: scale(.95) translateY(40px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes headerAni {
    0% {
        border-radius: 0;
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        border-radius: 50%;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes signAni {
    0% {
        opacity: 0;
        transform: scale(.3) rotate(180deg);
    }

    60% {
        transform: scale(1.3);
    }

    80% {
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}




/* Header ======================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 2125px;
    z-index: 10;
    margin: 0 auto;
    background: #1e1e1eb2;
    backdrop-filter: blur(10px);
}

    .header .container {
        max-width: 1920px;
        padding: 0 200px;
    }

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
    z-index: 11;
}

.header__logo {
    width: 185px;
    height: 87px;
    gap: 10px;
    position: relative;
    z-index: 11;
    display:flex;
    align-items:center;
}
.logo-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align:left;
    font-weight: 800;
    gap: 5px;
    font-family: Arial, sans-serif;
    font-size: 13px;
}
    .logo-text span{
        color: var(--white);
    }
    

.header__logo img {
    width: 72px;
    height: 87px;
}

.header__burger {
    display: none;
}
:lang(ru) .nav__list {
    gap: 25px;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__item {
    transition: all 0.3s ease;
}

    .nav__item a {
        color: var(--white);
    }

    .nav__item.button {
        transition: all 0.3s ease;
    }

    .nav__item.toSection a {
        font-size: 18px;
        line-height: 21.6px;
    }

    .nav__item.tel {
        font-size: 26px;
        line-height: 31.2px;
        letter-spacing: 0.05em;
        font-family: var(--fontFamil700);
    }

    .nav__item.languages form {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav__item.languages button {
        background: transparent;
    }
:lang(ru) .nav__item.button .btn {
    padding: 12px 22px;
}
/* Main-section =================================== */
.main-section {
    background-image: url('../img/home-bus.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    margin-bottom: 100px;
}

.main-section__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
}

.main-section__title {
    font-size: 48px;
    line-height: 57.6px;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 440px;
}

.main-section__text {
    font-family: var(--fontFamily400);
    font-size: 16px;
    line-height: 19.5px;
    margin: 32px 0;
    max-width: 370px;
}

/* Car rental =================================== */
.rental-cars {
    margin-bottom: 100px;
}

    .rental-cars .container {
        position: relative;
    }

    .rental-cars .item__img {
        max-width: 516px;
        max-height: 300px;
        height: 300px;
    }

.rental-cars__slider .swiper-wrapper {
    position: relative;
}

.rental-slider__item .content__name span {
    display: block;
    color: var(--blue);
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    opacity: 0.7;
    margin: 24px 0 20px 0;
}

.rental-slider__item .content__info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #647eaa;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.rental-slider__item .info__march {
    color: var(--gray);
    font-family: var(--fontFamily400);
}

.rental-slider__item .info__price {
    font-family: var(--fontFamily700);
    font-weight: 700;
}

.rental-slider__item .content__order {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .rental-slider__item .content__order span {
        font-size: 20px;
        line-height: 32px;
        font-family: var(--fontFamily700);
        font-weight: 700;
        color: var(--blue);
        opacity: 0.7;
    }

:lang(ru) .rental-slider__item .content__order .btn {
    padding: 12px 25px;
}

.rental-slider__item .content__order .btn {
    padding: 12px 64px;
}



.characteristics-info .modal__content .item__content {
    padding: 0 0 20px 0;
}

/* Why choose =============================== */
.why-choose {
    background-color: var(--blue);
    padding: 50px 0;
    color: var(--white);
    margin-bottom: 100px;
}

.why-choose__title {
    color: var(--white);
}

.why-choose__cards {
    display: flex;
    gap: 20px;
}

.why-choose__card {
    flex: 1;
    background: linear-gradient(var(--blue), var(--blue)) padding-box, linear-gradient(0deg, #12bee5 0%, #c071e9 50%, #f24f5a 100%) border-box;
    border-radius: 20px;
    border: 2px solid transparent;
    padding: 44px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.card__content span {
    display: block;
    font-family: var(--fontFamily600);
    font-size: 32px;
    margin-bottom: 8px;
}

.card__content p {
    font-family: var(--fontFamily400);
    font-size: 18px;
    line-height: 24px;
}

.card__content .card__icon {
    width: 65px;
    height: 65px;
}

    .card__content .card__icon img {
        width: 100%;
        height: 100%;
    }
/* Tours ============================ */

    .tours .container {
        position: relative;
    }

    .tours .item__img {
        max-width: 516px;
        height: 300px;
    }

.tours-slider__item .item__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1 1 auto;
}
    .tours-slider__item  .btn {
        width: 100%;
        text-align:center;
    }
    .tours-slider__item .content__name {
        flex: 1 1 auto;
    }

    .tours-slider__item .content__name span {
        display: block;
        color: var(--blue);
        font-size: 20px;
        line-height: 28px;
        font-family: var(--fontFamily500);
        font-weight: 500;
        opacity: 0.7;
        margin: 20px 0 24px 0;
    }

.tours-slider__item .content__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tours-slider__item .info__days {
    color: var(--gray);
    font-family: var(--fontFamily400);
    font-size: 18px;
    line-height: 24px;
}

.tours-slider__item .info__price {
    font-size: 32px;
    opacity: 0.7;
    color: var(--blue)
}

.tours-slider__item .content__order a {
    width: 100%;
    text-align: center;
}


.tours-swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.characteristics-info .order__wrapper {
    display: flex;
    gap: 20px;
    padding: 40px;
    max-height: 85vh;
    overflow: auto;
}

  

        .characteristics-info .order__wrapper.car .item__content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
        }


.characteristics-info .modal__content {
    max-width: 420px
}

.tours-swiper .swiper-slide {
    overflow: hidden;
}

    .tours-swiper .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        overflow: hidden
    }

.tours-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tours-swiper .swiper-css-mode > .swiper-wrapper > .swiper-slide {
    height: 300px !important;
}

.modal-swiper {
    width: 100%;
}

.slider__wrapper {
    display: flex;
    gap: 8px;
}

.swiper-vertical > .swiper-wrapper {
    width: 84px;
}

.swiper-vertical {
    height: 303px;
    cursor: pointer;
}

.tour__form.common-form {
    padding: 20px 50px;
    margin-top: 9px;
    position: sticky;
    top: 9px;
    right: 0;
    height: max-content;
}

.tour__form__title, .car__form__title {
    font-family: var(--fontFamily700);
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    line-height: 29px;
    color: var(--blue);
    margin-bottom: 32px;
}

.characteristics-info .modal__content {
    color: var(--blue)
}

    .characteristics-info .modal__content .content__name {
        margin-top: 24px;
    }

        .characteristics-info .modal__content .content__name span {
            font-size: 20px;
            line-height: 24px;
            font-family: var(--fontFamily700);
            font-weight: 700;
        }

    .characteristics-info .modal__content .content__info {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 16px 0
    }

    .characteristics-info .modal__content .info__price {
        font-size: 32px;
        line-height: 32px;
        opacity: .7
    }

    .characteristics-info .modal__content .info__days {
        font-size: 18px;
        color: var(--gray);
        font-family: var(--fontFamily400);
    }

.content__description {
    font-size: 16px;
    font-family: var(--fontFamily400);
    color: var(--gray2);
    line-height: 24px;
}

.tour__form.common-form .btn {
    width: 100%
}



/* Individual tours  ================================================== */
.individual-tours {
    color: var(--blue);
        background: #fff;
        padding: 100px 0
}
.individual-tours__wrapper {
    display:flex;
    gap: 150px;
}
.individual-tours__info {
    display:flex;
    flex-direction:column;
    gap: 20px;
}
    .individual-tours__info h3 {
        font-size: 20px;
        line-height: 24px;
        font-family: var(--fontFamily700);
        font-weight: 700;
    }
    .individual-tours__info p {
        font-size: 18px;
        line-height: 21.94px;
        font-family: var(--fontFamily400);
    }
    .individual-tours__info .btn {
        width: fit-content;
    }
    .individual-tours__swiper {
        width: 360px;
        height: 400px;
    }

    .individual-tours__swiper .swiper-slide {
        position: relative;
        border-radius: 20px;
        user-select: none;
    }

        .individual-tours__swiper .swiper-slide img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


/* Blog =================================== */
.blog {
    margin-bottom: 80px;
}
.blog__poster {
    position:relative;
}
    .blog__poster .poster {
        height: 350px;
        width: 100%;
        object-fit: cover;
        border-radius: 5px;
        filter: brightness(0.5);
    }
.blog .play {
    position:absolute;
    top: 50%;
    left:50%;
    transform:translate(-50%, -50%);
    cursor:pointer;
}
.blog__video, .blog__description,.blog__swiper {
    flex: 1;
}
.blogs__swiper {
    padding-bottom: 80px;
}
    .blog__swiper {
        height: 350px;
    }
        .blog__swiper img {
            height: 100%;
            width: 100%;
            object-fit:cover;
        }
.blog__description p {
    line-height: 150%;
    font-family: var(--fontFamily400);
    text-align: justify;
    overflow: hidden;
}
.blog__description {
    max-height: 350px;
    overflow:auto;
    padding-right: 15px;
}

    .blog__description::-webkit-scrollbar-track {
        background: var(--backgroundSlider)
    }

    .blog__description::-webkit-scrollbar-thumb {
        background: var(--blue)
    }
    .blog__description::-webkit-scrollbar {
        width: 5px;
    }
        .blog__wrapper {
        display: flex;
        gap: 30px;
        color: var(--blue)
    }

.blog strong {
    text-align: center;
    font-size: 25px;
    display: block;
    font-family: var(--fontFamily700);
    margin-bottom: 25px;
}
.blog__buttons {
    position: absolute;
    right: 50px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 1;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    bottom: 45px;
}
    .blog__buttons div {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        margin: 0 5px;
        border: 2px solid var(--blue);
        transition: 0.3s;
    }
    .blog__buttons .swiper-button-prev {
        left: -40px;
    }
        .blog__buttons div:after {
            font-size: 17px;
            color: var(--blue);
            font-weight: 700;
        }
    .blog__buttons .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: -40px !important;
    }
    /* FAQ =================================== */
    .faq {
        background: var(--white);
        padding: 100px 0;
    }

.faq__container {
    max-width: 780px;
    margin: 0 auto;
}

.faq__item__container {
    border-bottom: 1px solid #eaecf0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

    .faq__item__container:last-child {
        border-bottom: none;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

.faq__item {
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq__question {
    font-size: 18px;
    font-family: var(--fontFamily500);
    font-weight: 500;
    padding: 8px 0;
    line-height: 150%;
    color: #101828;
}

.faq__answer {
    font-size: 16px;
    font-family: var(--fontFamily400);
    color: var(--gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq__answer {
    line-height: 24px;
}

.icon {
    position: relative;
}

    .icon:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        content: '+';
        font-family: sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
        background: linear-gradient(0deg, #12bee5 0%, #c071e9 50%, #f24f5a 100%), linear-gradient(to bottom, #3498db, #2ecc71);
        -webkit-background-clip: text;
        color: transparent;
        z-index: 1;
    }

    .icon:after {
        content: '';
        display: block;
        width: 20px; /* Adjust the width and height as needed */
        height: 20px;
        border-radius: 50%;
        border: 2px solid transparent;
        background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(0deg, #12bee5 0%, #c071e9 50%, #f24f5a 100%) border-box, linear-gradient(to bottom, #3498db, #2ecc71);
        z-index: -1;
    }

    .icon.active::before {
        content: '-';
        font-size: 30px;
        top: 47%;
    }

/* Contacts ================================ */
.contacts {
    padding: 100px 0;
}

.contacts__items {
    gap: 38px;
    display: flex;
    justify-content: center;
}
    .contacts__items a {
        width: 48px;
        height: 48px;
    }
        .contacts__items a img {
            width: 100%;
            height: 100%;
        }
        /* Callback ================================== */
        .callback {
            margin-bottom: 100px;
        }

.callback__wrapper {
    display: flex;
    align-items: center;
    gap: 220px;
}

.callback__content {
    max-width: 490px;
}

.callback__title {
    font-size: 30px;
    line-height: 36.57px;
    font-family: var(--fontFamily700);
    font-weight: 700;
    color: var(--blue);
}

.callback__subtitle {
    font-size: 18px;
    line-height: 24px;
    font-family: var(--fontFamily400);
    margin: 24px 0;
    color: var(--blue);
}

.callback__free {
    color: var(--gray);
    font-size: 16px;
    font-family: var(--fontFamily400);
}


/* Footer ==================================== */
.footer {
    padding: 32px 0;
    background-color: var(--blue);
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
}

.footer__allrights {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    font-size: 18px;
    font-family: var(--fontFamily400);
    color: var(--gray);
}

    .powered {
        display: flex;
        align-items: center;
        gap: 10px;
    }
      
        .powered span {
            margin-top: 7px;
        }
        .powered span {
            display: block;
            margin-top: 10px;
        }

.contacts__phone > a {
    color: var(--white);
    font-size: 26px;
    line-height: 31px;
    letter-spacing: 0.05em;
    text-align: center;
    font-family: var(--fontFamily700);
    font-weight: 700;
}

.contacts__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 19px;
}
    .contacts__social a {
        width: 48px;height: 48px;
    }
    .contacts__social a img {
        width: 100%;
        height:100%;
    }
    /* Media screens  ======================= */
    @media (min-width: 992px) {
        ::-webkit-scrollbar {
        width: 10px;
        position: relative;
        z-index: 1000000000;
    }

    ::-webkit-scrollbar-track {
        background: var(--backgroundSlider)
    }

    ::-webkit-scrollbar-thumb {
        background: var(--blue)
    }
    .btn:hover {
        background: none;
        background-color: var(--btnHover);
    }

    .btn .nav__item.button:hover .btn {
        background: none;
        background-color: var(--btnHover);
    }

    .btn:focus {
        background: var(--btnPressed);
    }
}

@media screen and (max-width: 1440px) {
    .container {
        max-width: 1180px;
    }

    .header .container {
        max-width: 1180px;
        padding: 0 20px;
    }

    .buttons {
        display:none;
    }

    .next-button,
    .prev-button {
        top: auto;
        left: auto;
        right: auto;
        bottom: -100px;
    }

    .prev-button {
        right: 95px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 1024px;
    }
    :lang(ru) .nav__list {
        gap: 15px;
    }
    :lang(ru) .nav__item.tel {
        font-size: 22px;
    }
    :lang(ru) .nav__item.toSection a {
        font-size: 16px;
    }
    .common-slide {
        padding: 20px;
    }

    .card__content span {
        font-size: 26px;
    }

    .card__content p {
        font-size: 17px;
    }

    .callback__wrapper {
        gap: 110px;
    }
    .individual-tours {
        padding: 50px 0;
    }
    .individual-tours__wrapper {
        gap: 85px;
        padding-left: 50px;
    }
    .blog {
        margin-bottom: 50px;
    }
    .blog__wrapper {
        flex-direction:column-reverse !important;
    }
    .blog__swiper {
        flex: none;
        margin: 0 auto !important;
        width: 550px;
    }
    .blogs__swiper {
        padding-bottom: 100px;
    }
    .blog__description {
        max-width: 800px;
        margin: 0 auto;
    }
    .blog__video {
        width: 550px;
        height: 300px;
        margin: 0 auto
    }
    .blog__buttons {
        bottom: 45px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }

    .title {
        font-size: 24px;
        margin-bottom: 24px;
        line-height: 29px;
    }
    .header__logo {
        height: 56px;
    }
    .logo-text {
        font-size: 9px;
        gap: 4px;
    }
    .header__wrapper {
        height: 56px;
    }

        .header__logo img {
            width: 38px;
            height: 48px;
        }

        .header__burger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 48px;
            position: relative;
            gap: 8px;
            cursor: pointer;
            z-index: 10;
        }

        .header__burger span {
            width: 100%;
            height: 2px;
            background-color: var(--white);
            border-radius: 3px;
        }

        .header__burger.active {
            gap: 0;
        }

            .header__burger.active span {
                transform: rotate(45deg);
                background-color: var(--blue);
            }

                .header__burger.active span:nth-child(1) {
                    transform: rotate(45deg);
                    position: relative;
                    top: 2.3px;
                }

                .header__burger.active span:nth-child(2) {
                    display: none;
                }

                .header__burger.active span:nth-child(3) {
                    transform: rotate(-45deg);
                }

    .nav {
        position: fixed;
        right: -100%;
        top: 0;
        background-color: var(--white);
        height: 100vh;
        transition: all 0.3s ease;
        width: 300px;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-end;
        height: 100%;
        padding: 100px 20px 60px 20px;
        gap: 0;
    }

    .nav__item {
        width: 100%;
        text-align: right;
        padding: 16px 0;
    }

        .nav__item.tel {
            font-size: 26px;
            order: 3;
        }

        .nav__item.languages {
            flex: 1 1 auto;
        }

            .nav__item.languages form {
                align-items: stretch;
                justify-content: flex-end;
            }

        .nav__item.button {
            order: 4
        }

            .nav__item.button .btn {
                font-size: 14px;
            }

        .nav__item a {
            color: var(--blue);
        }

        .nav__item.button a {
            color: var(--white);
        }

    .header__burger.active ~ nav {
        right: 0;
    }

    .main-section {
        margin-bottom: 52px;
    }

    .container {
        max-width: 960px;
    }

    .nav__list {
        gap: 16px;
    }

    .nav__item.tel {
        font-size: 20px;
    }

    .nav__item.button .btn {
        padding: 12px 20px;
    }

    .rental-slider__item .content__order .btn{
        padding: 12px 45px;
    }

    :lang(ru) .rental-slider__item .content__order .btn {
        padding: 8px 25px;
    }

    .info__carName {
        font-size: 18px;
    }

    .info__passengers {
        font-size: 16px;
    }
    .why-choose {
        margin-bottom: 50px;
    }

    .why-choose__cards {
        flex-wrap: wrap;
    }

    .characteristics-info .order__wrapper {
        flex-direction: column;
        align-items: center;
    }

    .characteristics-info .modal__content {
        max-width: 490px;
    }

    .tours-swiper {
        height: auto;
        margin-bottom: 8px;
    }
        .tours-swiper .swiper-slide {
            height: 300px;
        }

        .characteristics-info .item__description {
            text-align: center;
        }
    .characteristics-info .modal__content .content__info {
        justify-content:center;
    }

    .tour__form.common-form {
        flex: none;
        width: 100%
    }

    .slider__wrapper {
        display: block;
    }

    .individual-tours__wrapper {
        flex-direction:column;
        padding-left: 0
    }
    .individual-tours__swiper {
        width: 300px;
        height: 333px;
    }
    .individual-tours__info {
        max-width: 600px;
        margin: 0 auto;
        text-align:center;
        align-items:center;
    }

    .callback {
        background-color: var(--white);
        padding-bottom: 60px;
        margin-bottom: 0;
    }

    .callback__wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .callback__content {
        text-align: center;
    }

    .callback__form {
        flex: none;
        max-width: 500px;
        width: 100%;
    }

        .callback__form button {
            width: 100%;
            font-size: 14px;
        }

    .footer__wrapper {
        flex-direction: column;
        gap: 100px;
        align-items:center;
    }

    .footer__allrights {
        order: 3;
        gap: 20px;
    }

}

@media screen and (max-width: 768px) {
    .subtitle {
        font-size: 14px;
        line-height: 17px;
    }

    .header__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 48px;
        position: relative;
        gap: 8px;
        cursor: pointer;
        z-index: 10;
    }

        .header__burger span {
            width: 100%;
            height: 2px;
            background-color: var(--white);
            border-radius: 3px;
        }

        .header__burger.active {
            gap: 0;
        }

            .header__burger.active span {
                transform: rotate(45deg);
                background-color: var(--blue);
            }

                .header__burger.active span:nth-child(1) {
                    transform: rotate(45deg);
                    position: relative;
                    top: 2.3px;
                }

                .header__burger.active span:nth-child(2) {
                    display: none;
                }

                .header__burger.active span:nth-child(3) {
                    transform: rotate(-45deg);
                }

    .nav {
        position: fixed;
        right: -100%;
        top: 0;
        background-color: var(--white);
        height: 100vh;
        transition: all 0.3s ease;
        width: 300px;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-end;
        height: 100%;
        padding: 100px 20px 60px 20px;
        gap: 0;
    }

    .nav__item {
        width: 100%;
        text-align: right;
        padding: 16px 0;
    }

        .nav__item.tel {
            font-size: 26px;
            order: 3;
        }

        .nav__item.languages {
            flex: 1 1 auto;
        }

            .nav__item.languages form {
                align-items: stretch;
                justify-content: flex-end;
            }

        .nav__item.button {
            order: 4
        }

            .nav__item.button .btn {
                font-size: 14px;
            }

        .nav__item a {
            color: var(--blue);
        }

        .nav__item.button a {
            color: var(--white);
        }

    .header__burger.active ~ nav {
        right: 0;
    }
    .common-slide {
        border-radius: 14px;
    }
    .rental-cars {
        margin-bottom: 80px;
    }
    .rental-cars .container, .tours .container {
        padding-right: 0;
    }

        .rental-cars .item__img {
            max-width: 100%;
            
        }

    .rental-slider__item .content__name span {
        font-size: 20px;
        margin: 8px 0;
    }

    .rental-slider__item .content__order span {
        font-size: 16px;
        line-height: 24px;
    }

    .rental-slider__item .content__order .btn {
        padding: 6px 32px;
        border-radius: 6px;
        font-size: 14px;
    }
    .why-choose {
        margin-bottom: 30px;
    }

    .why-choose__card {
        padding: 32px;
        gap: 20px;
    }

    .card__content span {
        font-size: 32px;
    }

    .card__content p {
        font-size: 18px;
    }

    .common-slide {
        padding: 16px;
    }
    .tours-slider__item .content__name span {
        font-size: 16px;
    }

    .tours-slider__item .info__price {
        font-size: 20px;
    }

    .tours-slider__item .info__days,
    .tours-slider__item .content__order a {
        font-size: 14px;
    }

    .characteristics-info .order__wrapper {
        padding-top: 60px;
    }
    .individual-tours .container {
        padding: 0;
    }
    .individual-tours__wrapper {
        gap: 33px;
        overflow:hidden;
    }
    .individual-tours__info .btn {
        font-size: 16px;
    }
    .individual-tours__info {
        padding: 0 20px;
        max-width: 600px;
        text-align: left;
        align-items: stretch;
    }
        .individual-tours__info h3 {
            font-size: 16px;
            line-height: 19px;
        }
        .individual-tours__info p {
            font-size: 12px;
            line-height: 14.63px;
        }
    .blog {
        padding: 20px 0 0 0;
        margin-bottom: 30px;
    }
    .blog strong {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .blog__description p {
        font-size: 14px;
    }
    .blog__video iframe {
        height: 300px;
    }
    .blog__swiper {
        max-width: 550px !important;
        width: 100%;
        height: 300px;
    }
    .blog__poster .poster {
        height: 300px;
    }
    .blog__video {
        width: 100%;
    }
    .blogs__swiper {
        padding-bottom: 80px;
    }
    .faq {
        padding: 50px 0;
    }

    .faq__item {
        gap: 24px;
    }

    .faq__question {
        font-size: 14px;
        line-height: 21px;
    }

    .faq__answer {
        font-size: 14px;
        line-height: 17px;
        padding-right: 24px;
    }

    .contacts {
       padding: 32px 0
    }

    .contacts__title.title {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .contacts__subtitle.subtitle {
        font-size: 14px;
        line-height: 17px;
    }

    .contacts__items {
        gap: 35px;
    }

        .contacts__items a, .contacts__social a {
            width: 38px;
            height: 38px;
        }

            .contacts__items a img {
                width: 100%;
                height: 100%;
            }

    .callback {
        padding-top: 32px
    }

    .callback__wrapper {
        gap: 24px;
    }

    .callback__content {
        max-width: 440px;
    }

    .callback__title {
        font-size: 20px;
        line-height: 29px;
    }

    .callback__subtitle {
        margin: 20px 0;
    }

    .callback__free {
        font-size: 14px;
    }

    .footer__logo {
        width: 44px;
        height: 52px;
    }

        .footer__logo img {
            width: 100%;
            height: 100%;
        }

    .footer__allrights {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        line-height: 19px;
        text-align: center;
    }
        .footer__allrights .alrights {
            display: flex;
            flex-direction: column;
        }

        .footer__allrights span {
            font-size: 14px;
        }

    .powered a {
        width: 90px;
    }

        .powered a img {
            width: 100%;
        }

    .contacts__social {
        margin-top: 16px;
    }

        .contacts__social a img {
            width: 100%;
            height: 100%;
        }
}

@media (max-width: 576px) {
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 30px !important;
    }
    .blog__buttons div {
        width: 40px;
        height: 40px;
    }
    .blog__buttons .swiper-button-prev {
        left: -20px;
    }
    .blog__buttons div:after {
        font-size: 16px !important;
    }
    .container {
        max-width: 100%;
    }

    .main-section__title {
        font-size: 32px;
        line-height: 38px;
    }

    :lang(ru) .main-section__title {
        font-size: 26px;
    }

    .main-section__text {
        font-size: 12px;
        line-height: 14px;
    }

    .nav__item.tel {
        font-size: 20px;
    }

    .characteristics-info .order__wrapper {
        padding: 80px 20px 30px 20px;
        align-items: stretch;
        gap: 16px;
        height: 100vh;
        max-height: 100vh;
    }
        :lang(ru) .rental-slider__item .content__order {
            flex-direction: column;
            align-items: flex-start;
        }

        :lang(ru) .rental-slider__item .content__order span {
            margin-bottom: 8px;
        }

    :lang(ru) .rental-slider__item .content__name span {
        font-size: 18px;
    }

    .tours-swiper .swiper-slide img {
        border-radius: 8px;
    }

    .characteristics-info .modal__content .content__name span {
        font-size: 16px;
    }

    .characteristics-info .modal__content .info__price {
        font-size: 20px;
    }

    .characteristics-info .modal__content .info__days, .content__description, .tour__form.common-form button {
        font-size: 14px;
    }

    .characteristics-info .modal__content .content__info {
        margin: 8px 0
    }
    .characteristics-info .order__wrapper.car .item__content {
        flex-direction: column;
        gap: 15px;
        align-items:stretch;
    }
    .tours-swiper .swiper-slide {
        height: 220px;
    }
    .tour__form__title, .car__form__title {
        font-size: 24px;
    }

    .tour__form.common-form {
        padding: 0
    }
    .common-form input, .common-form textarea {
        font-size: 14px;
    }
    .tours .item__img {
        height: 180px;
    }
    .rental-cars .item__img {
        height: 200px;
    }
    .individual-tours__info .btn {
        width: 100%;
        text-align: center;
    }
    :lang(ru) .individual-tours__info .btn {
        font-size: 14px;
        padding: 12px;
    }

}

@media screen and (max-width: 360px) {
    .why-choose__card {
        padding: 17px;
    }

    .card__content span {
        font-size: 26px;
    }
    .individual-tours__swiper {
        width: 250px;
    }
}
