* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #ffffff;
        }

        /* =========================================
           HERO SLIDER
        ========================================= */

        .travel-slider {
            position: relative;
            width: 100%;
            height: 680px;
            overflow: hidden;
            background: #071c38;
        }

        /* Slide */

        .travel-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;

            opacity: 0;
            visibility: hidden;

            transition:
                opacity 0.8s ease,
                visibility 0.8s ease;
        }

        .travel-slide.active {
            opacity: 1;
            visibility: visible;
        }

        /* Background Image */

        .travel-slide-image {
            position: absolute;
            inset: 0;

            width: 100%;
            height: 100%;

            object-fit: cover;
            object-position: center;
        }

        /* Dark Gradient */

        .travel-slide-overlay {
            position: absolute;
            inset: 0;


        }

        /* Content */

        .travel-slide-content {
            position: relative;
            z-index: 3;

            width: 100%;
            max-width: 1250px;

            height: 100%;

            margin: auto;

            display: flex;
            align-items: center;

            padding: 50px;
        }

        .travel-slide-text {
            max-width: 620px;
        }

        /* Small Script Heading */

        .travel-eyebrow {
            font-family: 'Pacifico', cursive;

            font-size: 55px;
            line-height: 1;

            color: #f5c65d;

            margin-bottom: 10px;

            font-weight: 400;
        }

        /* Main Heading */

        .travel-title {
            font-size: clamp(55px, 7vw, 100px);

            line-height: 0.95;

            letter-spacing: 1px;

            color: #ffffff;

            font-weight: 800;

            margin-bottom: 25px;

            text-transform: uppercase;
        }

        /* Gold Line */

        .travel-line {
            width: 100px;
            height: 5px;

            background: #f5c65d;

            margin-bottom: 25px;
        }

        /* Description */

        .travel-description {
            font-size: 22px;

            line-height: 1.5;

            color: #ffffff;

            font-weight: 500;

            margin-bottom: 35px;
        }

        /* Button */

        .travel-button {
            display: inline-flex;

            align-items: center;
            gap: 15px;

            padding: 16px 28px;

            border: 1px solid rgba(255,255,255,0.9);

            background: transparent;

            color: #ffffff;

            text-decoration: none;

            font-size: 15px;

            font-weight: 700;

            letter-spacing: 0.5px;

            transition: all 0.3s ease;
        }

        .travel-button i {
            transition: transform 0.3s ease;
        }

        .travel-button:hover {
            background: #ffffff;
            color: #08264a;
        }

        .travel-button:hover i {
            transform: translateX(5px);
        }

        /* =========================================
           ARROWS
        ========================================= */

        .travel-arrow {
            position: absolute;

            top: 50%;

            transform: translateY(-50%);

            z-index: 10;

            width: 60px;
            height: 60px;

            border-radius: 50%;

            border: 1px solid rgba(255,255,255,0.4);

            background: rgba(0,0,0,0.35);

            color: #ffffff;

            display: flex;

            align-items: center;
            justify-content: center;

            font-size: 22px;

            cursor: pointer;

            transition: all 0.3s ease;
        }

        .travel-arrow:hover {
            background: #ffffff;
            color: #08264a;
        }

        .travel-arrow.prev {
            left: 35px;
        }

        .travel-arrow.next {
            right: 35px;
        }

        /* =========================================
           DOTS
        ========================================= */

        .travel-dots {
            position: absolute;

            z-index: 10;

            bottom: 35px;

            left: 50%;

            transform: translateX(-50%);

            display: flex;

            align-items: center;

            gap: 12px;
        }

        .travel-dot {
            width: 13px;
            height: 13px;

            border-radius: 50%;

            border: 2px solid rgba(255,255,255,0.8);

            background: transparent;

            cursor: pointer;

            transition: all 0.3s ease;
        }

        .travel-dot.active {
            background: #ffffff;

            border-color: #ffffff;

            transform: scale(1.15);
        }

        /* =========================================
           SLIDE ANIMATION
        ========================================= */

        .travel-slide.active .travel-slide-text {
            animation: slideText 1s ease forwards;
        }

        @keyframes slideText {

            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }

        }

        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 992px) {

            .travel-slider {
                height: 600px;
            }

            .travel-slide-content {
                padding: 40px;
            }

            .travel-eyebrow {
                font-size: 42px;
            }

            .travel-title {
                font-size: 65px;
            }

            .travel-description {
                font-size: 18px;
            }

        }

        @media (max-width: 768px) {

            .travel-slider {
                height: 620px;
            }

            .travel-slide-overlay {
                background:
                    linear-gradient(
                        90deg,
                        rgba(3, 25, 55, 0.88),
                        rgba(3, 25, 55, 0.45)
                    );
            }

            .travel-slide-content {
                padding: 30px;
                align-items: center;
            }

            .travel-slide-text {
                max-width: 90%;
            }

            .travel-eyebrow {
                font-size: 36px;
            }

            .travel-title {
                font-size: 52px;
            }

            .travel-description {
                font-size: 16px;
            }

            .travel-arrow {
                width: 45px;
                height: 45px;

                font-size: 16px;
            }

            .travel-arrow.prev {
                left: 15px;
            }

            .travel-arrow.next {
                right: 15px;
            }

        }

        @media (max-width: 480px) {

            .travel-slider {
                height: 560px;
            }

            .travel-slide-content {
                padding: 25px;
            }

            .travel-eyebrow {
                font-size: 30px;
            }

            .travel-title {
                font-size: 42px;
            }

            .travel-line {
                width: 70px;
                height: 4px;
            }

            .travel-description {
                font-size: 15px;
            }

            .travel-button {
                padding: 13px 20px;
                font-size: 13px;
            }

            .travel-dots {
                bottom: 22px;
            }

        }

/* =========================================
   NAVBAR
========================================= */

.main-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}


/* Navbar */

.navbar {
    width: 100%;
    max-width: 1450px;

    height: 95px;

    margin: auto;

    padding: 0 40px;

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


/* =========================================
   LOGO IMAGE
========================================= */

.navbar-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.navbar-logo img {
    display: block;
    width: auto;
    height: 55px;
    max-width: 220px;
    object-fit: contain;
}

/* Keep the old text-logo classes hidden when using logo.png */
.navbar-logo .logo-main,
.navbar-logo .logo-sub {
    display: none;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar-menu {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-left: auto;
    margin-right: 40px;
}


.nav-link {
    position: relative;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.4px;

    padding: 38px 0;

    transition: 0.3s ease;
}


.nav-link i {
    font-size: 9px;

    transition: transform 0.3s ease;
}


.nav-link:hover,
.nav-link.active {
    color: #f5c65d;
}


.nav-link:hover i {
    transform: rotate(180deg);
}


/* Animated underline */

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 29px;

    width: 0;

    height: 2px;

    background: #f5c65d;

    transition: width 0.3s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================
   RIGHT SIDE
========================================= */

.navbar-right {
    display: flex;

    align-items: center;

    gap: 22px;
}


.navbar-search {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.4);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}


.navbar-search:hover {
    background: #ffffff;

    color: #09264a;
}


/* =========================================
   PLAN JOURNEY BUTTON
========================================= */

.navbar-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 21px;

    background: #f5c65d;

    color: #08264a;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.3px;

    transition: all 0.3s ease;
}


.navbar-button i {
    transition: transform 0.3s ease;
}


.navbar-button:hover {
    background: #ffffff;

    color: #08264a;
}


.navbar-button:hover i {
    transform: translateX(5px);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    gap: 6px;
}


.mobile-menu-button span {
    display: block;

    width: 26px;
    height: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 25px;
    }

    .navbar-menu {
        gap: 20px;

        margin-right: 20px;
    }

    .nav-link {
        font-size: 12px;
    }

    .navbar-button {
        padding: 12px 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .navbar {
        height: 80px;

        padding: 0 20px;
    }


    .navbar-menu {

        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        margin: 0;

        padding: 20px;

        background: rgba(5, 27, 55, 0.98);

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;
    }


    .navbar-menu.show {
        display: flex;
    }


    .nav-link {
        width: 100%;

        padding: 16px 5px;

        font-size: 14px;
    }


    .nav-link::after {
        display: none;
    }


    .navbar-right {
        margin-left: auto;

        margin-right: 15px;
    }


    .navbar-button {
        display: none;
    }


    .mobile-menu-button {
        display: flex;
    }


    .navbar-logo img {
        height: 48px;
        max-width: 190px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .navbar-search {
        width: 38px;
        height: 38px;
    }

    .navbar-right {
        margin-right: 5px;
    }

}

/* ===================
tour css 
====================== */

.tour-area .tour-item {
  background: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.tour-area .tour-img img {
  border-radius: 15px;
}

.tour-area .tour-wish {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  right: 20px;
  top: 20px;
  border-radius: 50px;
  background: #FCA702;
  color: #fff;
  text-align: center;
  transition: all .5s ease-in-out;
}

.tour-area .tour-wish:hover {
  background: #fff;
  color: #FCA702;
}

.tour-area .tour-sale {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 0px 14px;
  border-radius: 50px;
  background: #000000;
  color: #fff;
}

.tour-area .tour-meta {
  background-color: #000000;
  margin-bottom: 25px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -25px;
  padding: 10px 0;
  border-radius: 8px;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.tour-area .tour-meta ul li {
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 0 12px;
  position: relative;
}

.tour-area .tour-meta ul li::before {
  color: #fff;
  content: "|";
  line-height: 0.8;
  position: absolute;
  right: -3px;
  top: 0;
}

.tour-area .tour-meta ul li:last-child::before {
  display: none;
}

.tour-area .tour-meta ul li:first-child {
  padding-left: 0;
}

.tour-area .tour-meta ul li:last-child {
  padding-right: 0;
}

.tour-area .tour-meta ul li i {
  margin-right: 5px;
}

.tour-area .tour-info {
  padding: 0 20px;
}

.tour-area .tour-info h5 {
  font-size: 20px;
  color: #051242;
  margin-bottom: 10px;
  transition: all .5s ease-in-out;
}

.tour-area .tour-info h5:hover {
  color: #FCA702;
}

.tour-area .tour-rating i {
  color: #FCA702;
}

.tour-area .tour-rating span {
  margin-left: 10px;
}

.tour-area .tour-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid rgba(175,175,175,.1);
}

.tour-area .tour-price {
  font-size: 25px;
  font-weight: 700;
  color: #FF0143;
}

.tour-area .tour-price small {
  font-size: 15px;
  color: #9ca3a9;
  font-weight: 500;
}

.tour-area .tour-btn {
  border: 2px solid #7a7a7a;
  border-radius: 50px;
  padding: 4px 20px;
  color: #232323;
  transition: all .5s ease-in-out;
}

.tour-area .tour-btn:hover {
  background: #000000;
  color: #fff;
}

.tour-area .tour-btn i {
  margin-left: 5px;
}

/* tour sidebar */

.tour-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tour-sort-box .nice-select {
  border-radius: 8px;
}

.tour-sort-box .nice-select::after {
  width: 7px;
  height: 7px;
  margin-top: -5px;
}

.tour-sort-box .nice-select .list {
  width: 100%;
}

.tour-sidebar .search-area {
  margin-top: 0;
}

.tour-sidebar .search-form-wrapper {
  padding: 30px;
}

.tour-sidebar h4 {
  margin-bottom: 10px;
}

.tour-sidebar .search-form-wrapper .search-input {
  margin-bottom: 15px;
}

.tour-widget {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.tour-sidebar ul {
  margin-top: 20px;
}

.tour-sidebar li {
  margin-bottom: 10px;
}

.tour-sidebar li .form-check .form-check-input {
  margin-top: 6px;
  box-shadow: none;
}

.tour-sidebar li .form-check .form-check-input:focus {
  border-color: #FCA702;
}

.tour-sidebar li .form-check-input:checked {
  background-color: #FCA702;
  border-color: #FCA702;
}

.tour-sidebar .form-check-label i {
  color: #FCA702;
}

/* tour-area 2 */

.tour-area2 .tour-item {
  margin-top: 35px;
}

.tour-area2 .tour-img {
  position: relative;
}

.tour-area2 .tour-footer {
  padding: 10px 20px;
}

/* tour-area 3 */

.tour-area3 .tour-img {
  padding: 20px;
}

.tour-area3 .tour-meta {
  margin: 20px;
}

.tour-area3 .tour-wish {
  top: 30px;
  right: 30px;
}

.tour-area3 .tour-sale {
  top: 30px;
  left: 30px;
}

/* tour-area offer */

.tour-area-offer .tour-item {
  margin: 5px 5px 30px 5px;
}

.tour-offer-percentage {
  position: absolute;
  height: 80px;
  width: 80px;
  left: -15px;
  top: -15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50px;
  background: #FF0143;
}

.tour-offer-percentage h6 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.tour-offer-percentage span {
  color: #fff;
  font-weight: 700;
}

.tour-area-offer .tour-rating {
  margin-bottom: 10px;
}

.tour-area-offer .tour-price del {
  font-size: 20px;
  margin-right: 5px;
}

/* tour cart */

.tour-cart thead tr {
  background: #FCA702;
  color: #fff;
}

.cart-img {
  width: 150px;
}

.cart-img img {
  width: 100%;
  border-radius: 8px;
}

.tour-cart tr td {
  color: #383838;
  vertical-align: middle;
  border-bottom: 1px solid #dee2e6;
  border-top: none;
  position: relative;
  padding: 20px;
  font-size: 16px;
}

.cart-qty {
  width: 150px;
}

.cart-qty button {
  color: #383838;
  border: 0;
  border-radius: 5px;
  padding: 4px 13px;
}

.cart-qty input {
  width: 50px;
  border-radius: 5px;
  padding: 4px 13px;
  border: none;
  background: #EFEFEF;
  text-align: center;
}

.cart-remove:hover {
  color: #FF0143;
}

.cart-footer {
  margin-top: 40px;
}

.cart-coupon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.cart-coupon .form-control {
  box-shadow: none;
  padding: 10px 14px;
  border-radius: 8px;
}

.cart-coupon .form-control:focus {
  border-color: #FCA702;
}

.coupon-btn {
  padding: 8px 14px;
  color: #fff;
  border-radius: 8px;
  border: none;
  background: #FCA702;
  transition: all .5s ease-in-out;
}

.coupon-btn:hover {
  background: #051242;
}

.cart-summary {
  float: right;
}

.cart-summary li {
  margin-bottom: 10px;
  width: 200px;
}

.cart-summary li span {
  float: right;
}

.cart-total {
  border-top: 1px solid #eee;
}

.cart-total span {
  font-weight: bold;
}

/* tour booking */

.booking-widget {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.booking-widget-title {
  margin-bottom: 20px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form .form-group .form-control {
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: none;
}

.booking-form .form-group .form-control:focus {
  border-color: #FCA702;
}

.booking.cart-summary {
  float: none;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.booking.cart-summary li {
  width: 100%;
}


/* =========================================
   EXCLUSIVE COLLECTIONS
========================================= */

.exclusive-collections {
    width: 100%;
    padding: 60px 30px 70px;
    background: #ffffff;
}

.exclusive-container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
}

.exclusive-heading {
    text-align: center;
    margin-bottom: 42px;
}

.exclusive-heading h2 {
    margin: 0 0 16px;
    color: #061a42;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.exclusive-heading p {
    margin: 0 auto;
    max-width: 900px;
    color: #101010;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.exclusive-card {
    min-width: 0;
    background: #ffffff;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.025);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.exclusive-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
}

.exclusive-image-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: visible;
}

.exclusive-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 17px 17px 0 0;
}

.exclusive-country {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 6px 17px;
    border-radius: 22px;
    background: #000000;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

.exclusive-meta {
    position: absolute;
    z-index: 4;
    left: 38px;
    right: 38px;
    bottom: -28px;
    min-height: 57px;
    padding: 0 14px;
    border-radius: 8px;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    box-shadow: 0 6px 17px rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.exclusive-meta span {
    display: inline-flex;
    align-items: center;
}

.exclusive-meta i {
    margin-right: 7px;
    font-size: 17px;
}

.exclusive-meta-divider {
    opacity: 0.9;
}

.exclusive-card-body {
    min-height: 165px;
    padding: 60px 24px 20px;
}

.exclusive-card-body h3 {
    margin: 0 0 18px;
    color: #061a42;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
}

.exclusive-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fca702;
    font-size: 19px;
}

.exclusive-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 102px;
    padding: 20px;
    border-top: 1px solid rgba(175, 175, 175, 0.18);
}

.exclusive-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 168px;
    padding: 12px 24px;
    border: 2px solid #858585;
    border-radius: 30px;
    background: #ffffff;
    color: #151515;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease;
}

.exclusive-book-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.exclusive-book-btn:hover {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

.exclusive-book-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1550px) {
    .exclusive-container {
        max-width: 1370px;
    }

    .exclusive-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .exclusive-collections {
        padding-left: 25px;
        padding-right: 25px;
    }

    .exclusive-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .exclusive-heading p {
        font-size: 18px;
    }
}

@media (max-width: 800px) {
    .exclusive-collections {
        padding: 50px 20px 60px;
    }

    .exclusive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .exclusive-heading {
        margin-bottom: 32px;
    }

    .exclusive-heading h2 {
        font-size: 22px;
    }

    .exclusive-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .exclusive-desktop-break {
        display: none;
    }

    .exclusive-image-wrap,
    .exclusive-image {
        height: 200px;
    }

    .exclusive-country {
        top: 20px;
        left: 20px;
        font-size: 16px;
    }

    .exclusive-meta {
        left: 20px;
        right: 20px;
        font-size: 12px;
        gap: 7px;
    }

    .exclusive-meta i {
        font-size: 14px;
        margin-right: 5px;
    }

    .exclusive-card-body {
        min-height: 145px;
        padding: 54px 18px 18px;
    }

    .exclusive-card-body h3 {
        font-size: 21px;
    }
}

@media (max-width: 560px) {
    .exclusive-collections {
        padding: 42px 15px 50px;
    }

    .exclusive-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 390px;
        margin: 0 auto;
    }

    .exclusive-heading h2 {
        font-size: 20px;
    }

    .exclusive-heading p {
        font-size: 15px;
    }

    .exclusive-image-wrap,
    .exclusive-image {
        height: 220px;
    }

    .exclusive-country {
        font-size: 17px;
    }

    .exclusive-meta {
        left: 35px;
        right: 35px;
        font-size: 13px;
    }

    .exclusive-card-body h3 {
        font-size: 23px;
    }
}
