/* Reset & Base */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Image Optimization */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.menu-toggle{
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
}

/* Header-Hero Section with Background */
.header-hero {
    background-image: url('../imgs/obsh_vid.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: auto;
    position: relative;
}

.header-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.header-hero .header {
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

/* Desktop Header */
.header-desktop {
    display: block;
}

/* Mobile Header */
.header-mobile {
    display: none;
}

.nav-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav__left {
    width: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav__center {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.nav__right {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav__logo .logo {
    height: 30px;
    width: auto;
    transition: all 0.3s ease;
}

.nav__logo {
    width: auto;
    display: flex;
    align-items: center;
    margin-right: auto;
    gap: 8px;
}

.nav__logo p {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.1;
    letter-spacing: 0.6px;
    color: white;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .container {
        max-width: 2400px;
    }
    
    .nav__logo p {
        font-size: 14px;
        letter-spacing: 0.7px;
    }
}

@media (min-width: 1200px) {
    .nav__logo .logo {
        height: 35px;
    }
}

@media (min-width: 1440px) {
    .nav__logo .logo {
        height: 40px;
    }
    
    .nav__logo p {
        font-size: 20px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 768px) {
    .nav__logo .logo {
        height: 36px;
    }
    
    .nav__logo p {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .nav__logo .logo {
        height: 42px;
    }
    .nav__logo {
        width: auto;
    }
    
    .nav__logo p {
        font-size: 9px;
        letter-spacing: 0.45px;
    }
}

.right_c {
    position: relative;
    left: 0;
    width: 20%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    margin-top: 10%;
}

.right_c__txt {
    width: 100%;
    aspect-ratio: 3 / 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    margin-bottom: 12px;
    padding: 5px 12px 5px 30px;
    position: relative;
    color: white;
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    align-items: center;
    display: flex;
}

.right_c__txt::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.socials {
    display: flex;
    position: relative;
    margin-left: auto;
    margin-top: 25px;
    gap: 1.3vw;
}
.socials__txt {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
    line-height: 1.3;
    margin-top: 25px;
    margin-left: auto;
    padding-bottom: 60px;
}

.left_c {
    position: relative;
    left: 0;
    width: 20%;
    height: auto;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    margin-top: 10%;
}

.left_c__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 2.3rem;
    color: white;
    line-height: 1;
}

.left_c__subtitle{
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: white;
    line-height: 1.3;
    margin-top: 50px;
}


.left_c__btn {
    background: white;
    color: #2395DB;
    border: none;
    padding: 18px 26px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.left_c__btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.left_c__btn .btn-arrow {
    transition: transform 0.3s ease;
}

.left_c__btn:hover .btn-arrow {
    transform: translateX(4px);
}

.left_c__note {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: white;
    line-height: 1.3;
    margin-top: 15px;
    margin-left: 1.6rem;
    padding-bottom: 60px;
}

.nav__phone .phone-link {
    color: #2395DB;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border: 2px solid #2395DB;
    border-radius: 27px;
    padding: 3px 12px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.nav__phone {
    background: white;
    text-align: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 25px 20px;
    min-height: 75px;
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.language-selector {
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    gap: 5px;
    display: flex;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
}
.menu-toggle span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle-m {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
}
.menu-toggle-m span {
    width: 24px;
    height: 3px;
    background: #2395DB;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.central_c {
    width: 48%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 20px;
    gap: 30px;
    box-sizing: border-box;
}

/* Заголовок */
.central__title {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
    color: #1a1a1a;
    text-align: left;
    margin: 0;
    line-height: 1.3;
    width: 100%;
}

.title-online {
    font-weight: 400;
    display: inline;
}

.central__image-container {
    position: relative;
    border-radius: 64px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    aspect-ratio: 1.78;
}

.central__image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(35, 149, 219, 0.75);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: rgba(35, 149, 219, 0.75);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow--left {
    left: 20px;
}

.nav-arrow--right {
    right: 20px;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

.central__badge {
    position: absolute;
    bottom: 0;
    background: rgba(35, 149, 219, 0.65);
    color: white;
    padding: 16px 20px;
    border-radius: 0 0 64px 64px;
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central__badge p {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.central__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.central__dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #2395DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.central__dots .dot.active {
    background: #2395DB;
    border-color: #2395DB;
    transform: scale(1.2);
}

.central__description {
    font-size: 16px;
    color: #000000;
    text-align: left;
    line-height: 1.6;
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
}

.central__scroll-indicator {
    color: #0066CC;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Main */
.main {
    margin-top: 0;
}



/* Directions Section */
.directions {
    padding: 0px 0 30px 0;
    background: white;
}

.directions--kronstadt {
    background: rgba(35, 149, 219, 0.1);
}

/* How It Works Section */
.how-it-works {
    background: #FFFFFF;
    padding: 0 0 30px 0;
}

.how-it-works__title {
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333333;
    text-align: left;
    margin-bottom: 60px;
}

.how-it-works__steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    max-width: 280px;
}

.step__number {
    font-family: 'Mulish', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ADD8E6;
    line-height: 1;
}

.step__title {
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.3;
}

.step__description {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;
    font-family: 'Mulish', sans-serif;
}

/* Reviews Section */
.reviews {
    background: #FFFFFF;
    padding: 60px 0;
}

.reviews__title {
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333333;
    text-align: left;
    margin-bottom: 60px;
    margin-top: 30px;
}

.reviews__list {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    cursor: grab;
    scroll-behavior: auto;
    scroll-snap-type: none;
    scroll-padding: 0;
    touch-action: auto;
}

.reviews__list::-webkit-scrollbar {
    display: none;
    height: 0;
}

.reviews__list::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
}

.reviews__list:active,
.reviews__list.active {
    cursor: grabbing;
}

.reviews__list.active .review {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.review {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    width: 400px;
}

.review__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.review__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.review__text {
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.5;
    margin: 0;
    font-style: normal;
}

.review__author {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

/* Hero Image Section */
.hero-image {
    background: #FFFFFF;
    padding: 0;
    overflow: hidden;
}

.hero-image__container {
    width: 100%;
    aspect-ratio: 3.6;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-image__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3.6;
    border-radius: 64px;
    display: block;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    background: #FFFFFF;
    padding: 60px 0;
}

.faq__title {
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    text-align: left;
    margin-bottom: 60px;
    margin-top: 30px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__item {
    border-bottom: 1px solid #2395DB;
    transition: all 0.3s ease;
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq__header:hover {
    background: rgba(35, 149, 219, 0.05);
}

.faq__question {
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq__toggle {
    background: #2395DB;
    opacity: 0.75;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq__toggle:hover {
    background: #9BC4D1;
    transform: scale(1.05);
}

.faq__toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(35, 149, 219, 0.02);
    border-radius: 8px;
    margin: 0 20px 0 0;
}

.faq__answer p {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* Active state */
.faq__item.active .faq__answer {
    max-height: 215px;
    padding: 20px 0;
}

.faq__item.active .faq__toggle svg {
    transform: rotate(180deg);
}

.faq__item.active .faq__header {
    background: rgba(35, 149, 219, 0.05);
}

/* CTA Section */
.cta {
    background: #FFFFFF;
    padding: 60px 0;
}

.cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.cta__title {
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    text-align: left;
    margin-bottom: 0;
}

.cta__btn {
    background: #2395DB;
    color: #FFFFFF;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(35, 149, 219, 0.3);
}

.cta__btn:hover {
    background: #1e7bb8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 149, 219, 0.4);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.direction-category {
    margin-bottom: 80px;
}

.direction-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.direction-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.excursion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.excursion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    position: relative;
}

.card-image-placeholder::after {
    content: "📷";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.5;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

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

.detail-label {
    font-size: 14px;
    color: #666;
}

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.buy-ticket-btn {
    background: #0066CC;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.buy-ticket-btn:hover {
    background: #0052a3;
}

/* Footer placeholder */
.footer {
    background: #2395DB;
    color: #ffffff;
    padding: 28px 0 22px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 24px;
}

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

.footer__logo {
    height: 2.8vw;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 16px 40px;
}

.footer__col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

.footer__link:hover { opacity: 1; text-decoration: underline; }

.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

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

.footer__social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

.footer__phone {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    margin-top: 20px;
}

.footer__email {
    font-family: 'Mulish', sans-serif;
    font-size: 0.7rem;
    opacity: 0.95;
    margin-bottom: 20px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.footer__copyright {
    font-family: 'Mulish', sans-serif;
    font-size: 0.7rem;
    opacity: 0.9;
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__payments img {
    width: 4vw;
    height: auto;
}

.pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.15);
    font-size: 12px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer__brand { justify-content: center; }
    .footer__contact { align-items: center; }
    .footer__bottom { flex-direction: column; gap: 10px; }
}

/* Mobile Hero Styles */
.hero-mobile {
    display: none;
    background: white;
    padding: 0 0 40px 0;
}

.left_c__btn_mobile {
    background: #ffffff;
    color: #2395DB;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 86%;
    max-width: 420px;
    margin: 18px auto 8px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.left_c__btn_mobile:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-mobile__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.hero-mobile__title {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.hero-mobile__image-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1.78;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-mobile__image-container:active {
    cursor: grabbing;
}

.hero-mobile__image-container * {
    pointer-events: none;
}

.hero-mobile__image-container {
    pointer-events: auto;
}

.hero-mobile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.hero-mobile__badge {
    position: absolute;
    bottom: 0;
    background: rgba(35, 149, 219, 0.9);
    color: white;
    padding: 3px 4px;
    border-radius: 0 0 32px 32px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mobile__badge p {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.hero-mobile__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
}

.hero-mobile__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #2395DB;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.hero-mobile__dot:hover {
    background: rgba(35, 149, 219, 0.3);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(35, 149, 219, 0.3);
}

.hero-mobile__dot.active {
    background: #2395DB;
    border-color: #2395DB;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(35, 149, 219, 0.5);
}

.hero-mobile__description {
    font-size: 16px;
    color: #333;
    text-align: left;
    line-height: 1.6;
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    max-width: 350px;
}

.hero-mobile__btn {
    background: #2395DB;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(35, 149, 219, 0.3);
}

.hero-mobile__btn:hover {
    background: #1e7bb8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 149, 219, 0.4);
}

.hero-mobile__btn .btn-arrow {
    transition: transform 0.3s ease;
}

.hero-mobile__btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-mobile__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 350px;
    margin: auto;
    margin-top: 16px;
}

.hero-mobile__features-container {
    background-image: url('../imgs/obsh_vid.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    padding: 40px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-mobile__features-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 149, 219, 0.1);
    z-index: 1;
}

.hero-mobile__features-title{
    font-family: 'Mulish', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    max-width: 350px;
    margin: 0;
    margin: auto;
    margin-bottom: 12px;
}

.hero-mobile__features-subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 12.5px;
    font-weight: 300;
    color: white;
    line-height: 1.3;
    max-width: 350px;
    margin: 0;
    margin: auto;
    margin-bottom: 10px;
}

.hero-mobile__features {
    position: relative;
    z-index: 2;
}

.hero-mobile__feature {
    min-height: 135px;
    border-radius: 32px;
    padding: 16px;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mobile__socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.hero-mobile__social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 149, 219, 0.1);
    transition: all 0.3s ease;
}

.hero-mobile__social-icon:hover {
    background: rgba(35, 149, 219, 0.2);
    transform: scale(1.1);
}

.hero-mobile__social-icon img {
    width: 24px;
    height: 24px;
}

.hero-mobile__socials-text {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

.left_c__note_mobile {
    text-align: center;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.9;
    margin: 4px 0 0 0;
}

@media (max-width: 390px) {
    .left_c__btn_mobile {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
    .left_c__note_mobile {
        font-size: 11.5px;
    }
    .hero-mobile__features-title {
        margin: 0 auto 0 0;
    }
}
@media (min-width: 2100px) {
    .central__title {
        font-size: 52px;
    }
    .central__description {
        font-size: 20px;
    }
}
/* Responsive Design */
@media (max-width: 1350px) {
    .container {
        padding: 0 40px;
    }
    .left_c__btn {
        margin-top: 145px;
    }
    

}

@media (max-width: 1024px) {

    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        display: none;
    }
    .hero-mobile__dots{
        margin: 0;
    }
    .hero-mobile__dot{
        width: 10px;
        height: 10px;
    }
    .hero-mobile {
        display: block;
    }
    .hero-mobile__title {
        font-weight: 800;
        font-size: 32px;
    }
    .hero-mobile__title {
        line-height: 1.1;
    }
    .central_c {
        padding: 30px 15px;
        gap: 25px;
    }
    
    .central__title {
        font-size: 32px;
    }
    
    .central__image {
        height: 300px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow--left {
        left: 15px;
    }
    
    .nav-arrow--right {
        right: 15px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .excursions-grid {
        grid-template-columns: 1fr;
    }
    .left_c__btn {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-desktop {
        display: none;
    }
    
    .header-mobile {
        display: block;
        background: #ffffff;
    }
    
    .header-mobile .nav__logo {
        width: auto;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .header-mobile .nav__logo p {
        font-family: 'Mulish', sans-serif;
        font-weight: 800;
        font-size: 14px;
        line-height: 1.1;
        letter-spacing: 0.5px;
        color: rgb(0, 0, 0);
        margin: 0;
        text-align: left;
        white-space: nowrap;
    }
    
    .hero-mobile__title {
        font-size: 32px;
    }
    
    .hero-mobile__image-container {
        max-width: 350px;
    }
    
    .hero-mobile__badge p {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .hero-mobile__description {
        font-size: 16px;
    }
    
    .hero-mobile__btn {
        padding: 14px 28px;
        font-size: 18px;
        display: none;
    }
    
    .hero-mobile__feature {
        font-size: 13px;
        padding: 8px 8px;
    }
    
    .hero-mobile__social-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-mobile__social-icon img {
        width: 20px;
        height: 20px;
    }
    
    .how-it-works {
        padding: 40px 0;
    }
    
    .how-it-works__title {
        font-size: 32px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
    
    .how-it-works__steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step {
        gap: 12px;
        max-width: 100%;
    }
    
    .step__number {
        font-size: 44px;
    }
    
    .step__title {
        font-size: 18px;
    }
    
    .step__description {
        font-size: 14px;
        max-width: 100%;
    }
    
    .reviews {
        padding: 40px 0;
    }
    
    .reviews__title {
        font-size: 32px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
    
    .reviews__list {
        flex-direction: column;
        gap: 30px;
    }
    
    .review {
        max-width: 100%;
        gap: 15px;
    }
    
    .review__image {
        width: 60px;
        height: 60px;
    }
    
    .review__text {
        font-size: 16px;
    }
    
    .review__author {
        font-size: 14px;
    }
    
    .hero-image__container {
        padding: 0 20px;
    }
    
    .hero-image__img {
        border-radius: 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    
    .faq {
        padding: 40px 0;
    }
    
    .faq__title {
        font-size: 32px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
    
    .faq__item {
        padding: 20px 0;
    }
    
    .faq__question {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq__toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq__toggle svg {
        width: 14px;
        height: 14px;
    }
    
    .faq__answer p {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .faq__answer {
        margin: 0 15px 0 0;
    }
    
    .cta {
        padding: 40px 0;
    }
    
    .cta__content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: center;
        min-height: auto;
    }
    
    .cta__title {
        font-size: 32px;
        margin-bottom: 0;
        margin-top: 0;
        text-align: center;
    }
    
    .cta__btn {
        font-size: 18px;
        padding: 16px 28px;
        width: 100%;
        max-width: 350px;
    }
    
    .central_c {
        padding: 20px 10px;
        gap: 20px;
    }
    
    .central__title {
        font-size: 28px;
    }
    
    .central__image {
        height: 250px;
    }
    
    .nav-arrow {
        width: 36px;
        height: 36px;
    }
    
    .nav-arrow--left {
        left: 10px;
    }
    
    .nav-arrow--right {
        right: 10px;
    }
    
    .central__badge {
        font-size: 14px;
        padding: 12px 16px;
        left: 10px;
        right: 10px;
    }
   
    
    .central__dots {
        bottom: 70px;
    }
    
    .central__description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 30px;
        text-align: left;
        margin-bottom: 20px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(35, 149, 219, 0.9);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    overflow: hidden;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.mobile-menu__logo .logo {
    height: 4vw;
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .mobile-menu__logo .logo {
        height: 40px;
    }
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-menu__close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.mobile-menu__close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: rotate(-45deg);
}

/* Mobile Menu Navigation */
.mobile-menu__nav {
    margin-bottom: 20px;
}

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

.mobile-menu__list li {
    margin-bottom: 0;
}

.mobile-menu__link {
    color: white;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    gap: 10px;
}

.mobile-menu__link .arrow {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    margin-right: auto;
}

/* Mobile Menu Contact */
.mobile-menu__contact {
    margin-bottom: 15px;
}

.mobile-menu__phone {
    display: block;
    background: white;
    color: #2395DB;
    text-decoration: none;
    font-size: 23px;
    font-weight: 700;
    padding: 2px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-radius: 32px;
}

.mobile-menu__phone:hover {
    background: #f8f9fa;
}

.mobile-menu__email {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
}

.email-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    margin-left: auto;
}

/* Mobile Menu Social */
.mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mobile-menu__social .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu__social .social-icon:hover {
    transform: scale(1.1);
}

.footer-mobile { display: none; }

.footer-mobile {
    background: #2395DB;
    color: #ffffff;
    padding: 16px 0 14px;
}
.footer-m__logo { height: 10vw; filter: brightness(0) invert(1); }
.footer-m__brand { display: flex; justify-content: center; }

.footer-m__socials { display: flex; gap: 16px; margin: 14px 0; justify-content: center; }
.footer-m__social img { width: 27px; height: 27px; filter: brightness(0) invert(1); }

.footer-m__links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 12px 0; }
.footer-m__col { font-family: 'Mulish', sans-serif; font-size: 1rem; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-m__col a { color: #ffffff; text-decoration: none; font-family: 'Mulish', sans-serif; font-size: 13.5px; font-weight: 600; }

.footer-m__call { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: #ffffff; color: #2395DB; text-decoration: none; font-weight: 800; margin: 12px 0 6px; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); border-radius: 0; box-sizing: border-box; }
.footer-m__arrow { color: #2395DB; }

.footer-m__email { display: flex; align-items: center; gap: 8px; font-size: 12px; opacity: 0.95; margin-bottom: 5px; }
.footer-m__email img { width: 16px; height: 16px; }

.footer-m__payments {justify-content: center; display: flex; gap: 12px; align-items: center; margin: 20px 0 10px; }
.footer-m__payments img { height: 22px; width: auto; filter: brightness(0) invert(1); }

.footer-m__copyright {font-family: 'Mulish', sans-serif; text-align: center; font-size: 10px; opacity: 0.8; }

/* Visibility rules */
@media (max-width: 768px) {
  .footer-desktop { display: none; }
  .footer-mobile { display: block; }
}

.directions__head { display: grid; grid-template-columns: 330px 1fr; gap: 40px; align-items: start; margin-bottom: 24px; }
.directions__category { font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 20px; color: #2395DB; margin-top: 20px;}
.directions__intro { font-family: 'Mulish', sans-serif; font-weight: 400; font-size: 12px; color: #000000; line-height: 1.5; margin-top: 20px;}

@media (min-width: 1440px) {
    .directions__head {
        grid-template-columns: 400px 1fr;
        gap: 50px;
        margin-bottom: 30px;
    }
    
    .directions__category {
        font-size: 22px;
    }
    
    .directions__intro {
        font-size: 14px;
    }
}

@media (min-width: 1920px) {
    .directions__head {
        grid-template-columns: 450px 1fr;
        gap: 60px;
    }
    
    .directions__category {
        font-size: 24px;
    }
    
    .directions__intro {
        font-size: 16px;
    }
}

.cards-carousel { 
    display: grid; 
    grid-auto-flow: column; 
    grid-auto-columns: 320px; 
    gap: 18px; 
    overflow-x: auto; 
    padding-bottom: 8px; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    cursor: grab;
    scroll-behavior: auto;
    scroll-snap-type: none;
    scroll-padding: 0;
    align-items: stretch;
    touch-action: auto;
}
.cards-carousel::-webkit-scrollbar { display: none; height: 0; }
.cards-carousel::-webkit-scrollbar-thumb { background: transparent; border-radius: 0; }

.cards-carousel:active,
.cards-carousel.active {
    cursor: grabbing;
}

.cards-carousel.active .tour-card {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media (min-width: 1440px) {
    .cards-carousel {
        grid-auto-columns: 380px;
        gap: 24px;
        justify-content: start;
    }
}

@media (min-width: 1920px) {
    .cards-carousel {
        grid-auto-columns: 420px;
        gap: 30px;
        justify-content: start;
    }
}

.tour-card { background: #ffffff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.08); display: flex; flex-direction: column; height: 100%; padding-bottom: 10px;}
.tour-card__image { height: 200px; background: #e9eef3; }
.tour-card__body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-card__title { font-family: 'Mulish', sans-serif; font-weight: 700; font-size: 1.2rem; color: #1a1a1a; line-height: 1.35; }
.tour-card__meta { display: grid; gap: 6px; font-family: 'Mulish', sans-serif; padding-bottom: 30px;}
.tour-card__meta dt { color: #7a7a7a; font-size: 1rem; font-weight: 400; }
.tour-card__meta dd { color: #1a1a1a; font-size: 1rem; font-weight: 600; margin: 0; margin-left: auto; }
.tour-card__btn { margin-top: auto; align-self: center; background: #ffffff; color: #2395DB; border: 2px solid #2395DB; border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: 14px; cursor: pointer; line-height: 1; min-height: 40px; min-width: 200px; display: inline-flex; align-items: center; justify-content: center; box-shadow: none; }
.tour-card__btn:hover { background: #2395DB; color: #ffffff; border-color: #2395DB; }

@media (max-width: 768px) {
  .directions__head { grid-template-columns: 1fr; gap: 10px; }
  .directions__category { font-size: 18px; color: #2395DB;}
  .directions__intro { font-size: 14px; }
  .cards-carousel { 
      grid-auto-columns: 78%; 
      gap: 14px; 
      scroll-padding: 0;
  }
  .language-selector {
    color: black;
    margin-right: 7px;
    font-size: 12px;
  }
  
  .language-selector[href^="tel:"] {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
  }
  
  .language-selector[href^="tel:"]:hover {
    text-decoration: underline;
  }
}

@media (max-width: 710px) {
    .tour-card__title{
        font-size: 1.1rem;
    }
    .tour-card__meta dt {
        font-size: 0.9rem;
    }
    .tour-card__meta dd {
        font-size: 0.9rem;
    }
}

@media (max-width: 450px) {
    .tour-card__title{
        font-size: 1rem;
    }
    .tour-card__meta dt {
        font-size: 0.8rem;
    }
    .tour-card__meta dd {
        font-size: 0.8rem;
    }
    .header-mobile .nav__logo p {
        font-size: 10px;
    }
    .nav__logo .logo {
        height: 30px;
    }
}
@media (min-width: 800px){
    .for_dekstop {
        justify-content: center;
    }
}
@media (min-width: 1700px) {
    .central__badge p {
        font-size: 1.65rem;
    }
}

@media (min-width: 2050px) {
    .central__badge p {
        font-size: 2rem;
    }
    .left_c__subtitle {
        font-size: 1.2rem;
    }
    .right_c__txt {
        aspect-ratio: 4 / 1;
        font-size: 1.8rem;
        margin-bottom: auto;
    }
    .nav__phone .phone-link {
        font-size: 22px;
    }
    .tour-card__btn {
        font-size: 18px;
        padding: 12px 22px;
    }
    .rightlctitle {
        margin-bottom: auto;
    }
}

@media (max-width: 1250px) {
    .central__badge p {
        font-size: 0.85rem;
    }
}

/* Carousel Container & Arrows */
.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(35, 149, 219, 0.9);
    border: none;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
    background: rgba(35, 149, 219, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(35, 149, 219, 0.4);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow--left {
    left: -36px;
}

.carousel-arrow--right {
    right: -36px;
}

.carousel-arrow svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.5;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(35, 149, 219, 0.5);
}

.carousel-arrow:disabled:hover {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Smaller arrows on mobile */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow--left {
        left: -20px;
    }
    
    .carousel-arrow--right {
        right: -20px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carousel-arrow--left {
        left: -18px;
    }
    
    .carousel-arrow--right {
        right: -18px;
    }
    
    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
}
