/*
Global Rules Start */
:root {
    --transition-main: 0.5s;
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
}

/* carousel Hero Start */
.carousel-item .image {
    height: 480px;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
.carousel-caption h5 {
    font-size: 45px;
    margin-bottom: 25px !important;
    color: var(--warning);
}
.carousel-caption p {
    width: 60%;
    font-size: 18px;
    line-height: 1.9;
}
.carousel-item .image {
    position: relative;
}
.carousel-item .image::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000099;
}
@media (max-width: 767px) {
    .carousel-item .image {
        height: 600px;
    }
    .carousel-caption h5 {
        font-size: 38px;
    }
    .carousel-caption p {
        width: 90%;
    }
    .carousel-caption a {
        font-size: 15px;
    }
}
@media (max-width: 574px) {
    .carousel-caption h5 {
        font-size: 24px;
    }
    .carousel-caption p {
        font-size: 16px;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
:link {
    text-decoration: none;
}
.heading {
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
    width: fit-content;
}
.heading::before {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background-color: var(--secondary);
}
.heading::after {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 30%;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background-color: var(--warning);
}
body {
    position: relative;
}
.go-to-up {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    background: var(--warning);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    transition: all 0.3s;
}
.go-to-up-show {
    display: flex !important;
}
/* Global Rules End */

/* Header Start */
.header-pure.bg-light {
    background-color: transparent !important;
}
.header-pure.navbar {
    background: var(--light) !important;
}
.header-pure.w-100 {
    height: 100vh;
}
.header-pure .navbar-nav a {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}
.header-pure .navbar-light .nav-item .nav-link {
    color: black;
}
.header-pure .navbar-light .nav-item:hover .nav-link,
.header-pure .navbar-light .nav-item.active .nav-link {
    color: var(--warning);
}
.header-pure .navbar-toggler {
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
    background: #fff;
}
@media (max-width: 991px) {
    .header-pure .navbar-nav {
        text-align: center;
        flex-direction: column !important;
    }
}
/* Dropdown Button */
.dropbtn {
    background-color: #3498db;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
    background-color: #2980b9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.navbar-nav .nav-link {
    color: #333 !important;
}
.navbar-nav .nav-link:hover {
    color: var(--warning) !important;
}
.dropend .dropdown-toggle {
    margin-left: 1em;
}
.dropend .dropdown-toggle span {
    width: 110px;
}
.dropdown .dropdown-menu {
    display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    margin-top: -6px;
    margin-left: 0.125em;
}
@media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }
    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
}
.show {
    display: block;
}
/* Header End */

/* carousel Hero End */

/* Destination start */
.destination .card {
    border-radius: 10px;
}
.destination .card:hover h4 {
    color: var(--primary) !important;
    transition: 0.5s;
}
.destination .container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
  }
.destination  .profile-details .job {
    font-size: 12px;
    font-weight: 500;
    color: #4d4d4d;
    text-align: right;
}
.destination  .swiper-navBtn {
    color: #000;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
}
.destination .swiper-navBtn::before,
.destination .swiper-navBtn::after {
    font-size: 18px;
}
.destination .swiper-pagination-bullet {
    background-color: #000;
}
.destination .image {
    height: 360px;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.destination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    padding: 40px 0;
}
.destination .container {
    width: 100%;
}
.destination .container .image-list .image {
    width: 100%;
    height: 340px;
    background-size: cover;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.destination .container .image-list .card:hover h5 {
    color: var(--primary) !important;
    transition: all 0.4s;
}
.destination .container .image-list .swiper-slide {
    width: 280px !important;
    border-radius: 10px;
}
/* Destination End */

/* Deals Start */
.deals {
    padding: 50px 0;
    width: 100%;
}
.deals .container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.deals .deal {
    width: 500px;
    height: 225px;
    background: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    border-radius: 5px;
}
.deals .deal .image {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    width: 100%;
    height: 100%;
    background-size: cover;
}
.deals .deal .content {
    padding-right: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 572px) {
    .deals .deal .content h5 {
        font-size: 16px;
    }
    .deals .deal .content p {
        font-size: 12px;
    }
}
/* .deals .deal .image img {
    width: 100%;
    height: 100%;
} */
.deal:hover {
    transform: scale(1.03);
    transition: 0.3s;
}
/* End Start */

/* promotions Start */
.promotions {
    width: 100%;
    padding: 40px 0;
    background: #fff;
}
.promotions .container button.active {
    background: var(--warning) !important;
}
.promotions .container button {
    color: var(--dark) !important;
    font-weight: 500;
}
.promotions .card {
    height: 385px !important;
    position: relative;
}

.our-dest.card {
    background: #f1f1f1 !important;
}

/* offers start  */
.offer {
    height: 360px !important;
}
.offer .image {
    position: relative;
    width: 100%;
    height: 225px;
    background-size: cover;
}
.offer .image::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000029;
}
.offer-btns {
    width: 100%;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1000;
}
/* .offer-btns a {
    width: 100%;
}
.offer-btns a:nth-child(1) {
    margin-left: 10px;
} */
/*  */
/* Show Details start */
/* .show-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    min-height: 100vh;
    position: relative;
} */
/* .show-details .image {
    width: 100%;
    position: relative;
} */
/* .show-details .image img {
    width: 100%;
    height: 340px;
    position: relative;
} */
/* .show-details .image::before {
    content: "";
    width: 100%;
    height: 340px;
    background-color: #00000050;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
} */
.show-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 50px;
}
.show-details .image {
    width: 100%;
    height: 360px;
    background-size: cover;
    position: relative;
}
.show-details .image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 360px !important;
    z-index: 1000;
    background-color: #00000055;
}
.show-details .image .text {
    height: 360px;
    padding-right: 100px;
    gap: 10px;
    position: sticky;
    z-index: 10000;
}
.show-details .content {
    /* max-width: 700px; */
}
.show-details p {
    max-width: 800px;
    line-height: 2;
    text-align: center;
}
@media (max-width: 992px) {
    .show-details p {
        text-align: right;
    }
}
@media (max-width: 768px) {
    .show-details p {
        max-width: 600px;
    }
}
@media (max-width: 768px) {
    .show-details p {
        width: 100%;
        padding: 0 30px;
    }
}
/* Show Details End */

/* Gallery Start */
.gallery {
    padding: 25px 0 50px;
    direction: rtl;
    background: #fff;
    width: 100%";
}
.shirt p {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 10000;
}
.shirt .image {
    position: relative;
}
.shirt .image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #00000055;
}
.trip,
.shirt,
.discovery,
.archive {
    transition: all 0.3s;
}
.trip:hover,
.shirt:hover,
.discovery:hover,
.archive:hover {
    transform: scale(1.03);
}
.image-map {
    position: relative;
}
.image-map a {
    position: absolute;
    z-index: 1000;
}
.image-map a.trip-link {
    top: 48%;
    left: 4%;
}
.image-map a.shirt-link {
    top: 20%;
    left: 27%;
}
.image-map a.home-link {
    top: 27%;
    left: 79%;
}
.image-map a.discovery-link {
    top: 53%;
    left: 63%;
}
.image-map a.archive-link {
    top: 53%;
    left: 35%;
}
.image-map a.trip-link img {
    width: 60px;
}
.image-map a.shirt-link img {
    width: 60px;
}
.image-map a.home-link img {
    width: 60px;
}
.image-map a.discovery-link img {
    width: 60px;
}
.image-map a.archive-link img {
    width: 60px;
}
@media (min-width: 768px) {
    .image-map a img {
        width: 100px !important;
    }
    .image-map a.trip-link img {
        width: 120px !important;
    }
    .image-map a.trip-link {
        top: 55%;
        left: 7%;
    }
    .image-map a.shirt-link {
        top: 20%;
        left: 27%;
    }
    .image-map a.home-link {
        top: 27%;
        left: 79%;
    }
    .image-map a.discovery-link {
        top: 50%;
        left: 63%;
    }
    .image-map a.archive-link {
        top: 53%;
        left: 35%;
    }
}
@media (max-width: 767px) {
    .image-map a img {
        width: 80px !important;
    }
    .image-map a.trip-link img {
        width: 90px !important;
    }
    .image-map a.trip-link {
        top: 55%;
        left: 7%;
    }
    .image-map a.shirt-link {
        top: 20%;
        left: 27%;
    }
    .image-map a.home-link {
        top: 27%;
        left: 79%;
    }
    .image-map a.discovery-link {
        top: 50%;
        left: 63%;
    }
    .image-map a.archive-link {
        top: 53%;
        left: 35%;
    }
}
@media (max-width: 576px) {
    .image-map a img {
        width: 40px !important;
    }
    .image-map a.trip-link img {
        width: 60px !important;
    }
    .image-map a.trip-link {
        top: 55%;
        left: 7%;
    }
    .image-map a.shirt-link {
        top: 20%;
        left: 27%;
    }
    .image-map a.home-link {
        top: 27%;
        left: 79%;
    }
    .image-map a.discovery-link {
        top: 50%;
        left: 63%;
    }
    .image-map a.archive-link {
        top: 53%;
        left: 35%;
    }
}
/* Gallery End  */

/* Footer Start */
.footer {
    background-color: #24324a;
    color: #8a99b3;
}
.footer a {
    color: #8a99b3 !important;
}
.footer a.nav-link:hover {
    color: #fff !important;
    transition: 0.3s;
}
.footer .contact-us p:hover,
.footer .contact-us p:hover a {
    color: #fff !important;
    transform: translateX(10px);
    transition: 0.5s;
}
.footer form button {
    background-color: #8a99b360 !important;
}
.footer form button:hover {
    transform: scale(1.1);
    transition: 0.4s;
}
@media (max-width: 768px) {
    .footer > div {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer .nav {
        justify-content: center;
    }
}
/* Footer End */
