@import url('https://fonts.googleapis.com/css2?family=Allura&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --primary-color: #e31919; 
    --secondary-color: #000000; 
    --black-color-1: #000000; 
    --black-color-2: #353535; 
    --black-color-3: #727272; 
    --white-color-1: #FFFFFF; 
    --white-color-2: #D5F4FF;
    --border-color-1: #DEE2E6;
    --border-color-2: #FFFFFF57;
    --bg-color: #FEF5EF;
    --font-family-1: "Inter", sans-serif;
    --font-family-2: "Allura", cursive;
    --transition: all 0.4s ease-in-out;
    --spacing-60: 60px;
}
@media (max-width: 767px) {
    :root{
        --spacing-60: 32px;
    }
}
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body {
    font-family: var(--font-family-1);
    font-size: 16px;
    color: var(--black-color-2);
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, p, ul, table, li, ol, th, td, span{
    margin: 0px;
}
h1 {font-size: 48px; font-weight: 700;}
h2 {font-size: 36px; font-weight: 600;}
h3 {font-size: 28px; font-weight: 600;}
h4 {font-size: 22px; font-weight: 500;}
h5 {font-size: 18px; font-weight: 500;}
h6 {font-size: 16px; font-weight: 600;}
p {font-size: 16px;}
small {font-size: 14px;}
o*/ a {font-size: 16px;}
button, .btn {font-size: 16px; font-weight: 600;}
nav a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
li {font-size: 16px;}
input, textarea, select {
    font-size: 15px;
}
a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}


@media (max-width: 768px) {
    h1 {font-size: 32px;}
    h2 {font-size: 26px;}
    h3 {font-size: 22px;}
    h4 {font-size: 18px;}
    body, p, li, a {font-size: 14px;}
}
.button_1{
    display: inline-flex;
    align-items: center;
}
.button_1 span{
    padding: 8px 24px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--white-color-1);
    transition: var(--transition);
    font-size: 16px; 
    font-weight: 600;
}
.button_1:hover span{
    background-color: var(--secondary-color);
    /* color: var(--primary-color); */
}
.button_1 i {
    height: 42px;
    width: 42px;
    min-width: 42px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color-1);
    transition: var(--transition);
}
.button_1:hover i {
    background-color: var(--secondary-color);
    /* color: var(--primary-color); */
    transform: rotate(-45deg);
}
.button_2{
    display: inline-flex;
    align-items: center;
}
.button_2 span{
    padding: 8px 24px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    background-color: var(--white-color-1);
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 16px; 
    font-weight: 600;
}
.button_2:hover span{
    background-color: var(--secondary-color);
    color: var(--white-color-1);
}
.button_2 i {
    height: 42px;
    width: 42px;
    min-width: 42px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color-1);
    color: var(--primary-color);
    transition: var(--transition);
}
.button_2:hover i {
    background-color: var(--secondary-color);
    color: var(--white-color-1);
    transform: rotate(-45deg);
}
#scrollTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--white-color-1);
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Header */
.hero-header {
    position: relative;
    min-height: 885px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 200px;
    padding-bottom: 100px;
}
.hero-header .content {
    position: relative;
    z-index: 1;
    max-width: 696px;
    width: 100%;
    text-align: center;
    padding: 12px;
}
.hero-header .content small{
    font-family: var(--font-family-2);
    color: var(--white-color-1);
    font-size: 24px;
}
.hero-header .content h1{
    color: var(--white-color-1);
}
.hero-header .content p{
    color: var(--white-color-1);
}
.hero-header .content p b{
    color: var(--white-color-1);
}
.hero-header::before{
    content: "";
    background-color: var(--black-color-1);
    opacity: 0.5;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.hero-header .bottom-svg {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    bottom: -1px;
    transform: rotate(180deg);
}
.bottom-svg svg {
    z-index: -1;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: calc(100% + 1.3px);
    height: 71px;
}
.bottom-svg svg path {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}
.hero-header .video-box{
    direction: ltr;
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    transition: opacity 1s;
}
.hero-header .video-box::before{
    content: "";
    background-color: var(--black-color-1);
    opacity: 0.5;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-header .video-box video{
    -o-object-fit: cover;
    object-fit: cover;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    border: none;
    line-height: 1;
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
    .hero-header{
        min-height: 520px;
        padding-top: 150px;
        padding-bottom: 120px;
    }
    .bottom-svg svg {
        height: 72px;
    }
}
@media (max-width: 767px) {
    .hero-header{
        min-height: 465px;
    }
    .bottom-svg svg {
        height: 45px;
    }
}

/* Header */
.main-header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99999;
}
header {
    padding: 12px 0px;
    border-bottom: 1px solid var(--border-color-2);
}
header .logo{
    max-width: 150px;
    width: 100%;
}
header .logo img{
    background-color: var(--white-color-1);
    border-radius: 4px;
}
header .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.menu-right-side{
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: end;
}
.menu-right-side a{
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white-color-1);
}
.menu-right-side a small{
    opacity: 0.6;
    display: block;
}
.menu-right-side a .icon{
    height: 50px;
    width: 50px;
    min-width: 50px;
    border: 1px solid var(--border-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: var(--transition);
}
.menu-right-side a:hover .icon{
    background-color: var(--primary-color);
}
.menu-right-side a select{
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--white-color-1);
    cursor: pointer;
    padding-right: 5px;
}
.menu-right-side a select option{
    color: var(--black-color-1);
}
aside nav ul{
    display: flex;
    align-items: center;
    gap: 24px;
}
aside {
    padding: 0px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border-color-2);
}
aside .menu-right-side{
    display: none;
}
aside nav ul li a {
    color: var(--white-color-1);
    transition: var(--transition);
    height: 63px;
    display: flex;
    align-items: center;
    gap: 8px;
}
aside nav ul li a:hover{
    color: var(--primary-color);
}
/* Dropdown */
.has-dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color-1);
    min-width: 220px;
    padding: 15px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 0px 0px 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
    display: block;
}

.submenu li {
    padding: 0;
}

.submenu li a {
    display: block;
    padding: 8px 20px;
    color: var(--black-color-1);
    font-size: 15px;
    transition: 0.3s;
    height: auto;
}

.submenu li a:hover {
    background: var(--primary-color);
    color: #fff;
}
.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#mainHeader.scrolled .submenu {
    background: #fff;
}
.menu-toggle{
    outline: none;
    height: 50px;
    width: 50px;
    min-width: 50px;
    border: 1px solid var(--border-color-2);
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: var(--transition);
    color: var(--white-color-1);
    background-color: var(--border-color-2);
    display: none;
}
#mainHeader.scrolled .menu-toggle,
#mainHeader.scrolled .menu-toggle i{
    color: var(--primary-color);
}
.top-close{
    display: none;
}
#overlay{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--black-color-1);
    opacity: 0.5;
    z-index: 9999;
    display: none;
}
#overlay.active {
    display: block;
}
body.menu-open {
    overflow: hidden;
    height: 100vh;
}
@media (max-width: 1024px) {
    .menu-toggle{
        display: flex;
    }
    aside {
        padding: 0px 12px 24px 12px;
        display: block;
        border-bottom: none;
        position: fixed;
        top: 0px;
        left: -280px;
        transition: var(--transition);
        z-index: 9999999;
        background: var(--white-color-1);
        width: 280px;
        height: 100%;
        border-right: 1px solid var(--border-color-1);
        box-shadow: 0px 0px 24px #00000020;
        overflow-y: scroll;
    }
    aside.active{
        left: 0px;
    }
    .top-close {
        display: block;
        margin-bottom: 10px;
        padding-bottom: 10px;
        padding-top: 20px;
        border-bottom: 1px solid var(--border-color-1);
        background: var(--white-color-1);
        position: sticky;
        top: 0px;
        z-index: 1;
    }
    .top-close button{
        background-color: transparent;
        border: none;
        outline: none;
    }
    .menu-right-side a{
        display: none;
    }
    aside .menu-right-side {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
        padding: 10px;
        background: var(--primary-color);
        border-radius: 10px;
        border: 1px solid var(--border-color-2);
    }
    #mainHeader.scrolled aside .menu-right-side {
        background: transparent;
    }
    aside .menu-right-side a{
        display: flex;
        width: 100%;
    }
    aside .menu-right-side a .text{
        width: 100%;
    }
    aside .button_1,
    aside .button_1 span{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    aside nav ul li {
        display: block;
        width: 100%;
    }
    aside nav ul li a {
        color: var(--black-color-1);
        height: auto;
        justify-content: space-between;
    }
    aside nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    #mainHeader.scrolled .submenu {
        background: var(--primary-color);
    }
    #mainHeader.scrolled .submenu *{
        color: var(--white-color-1);
    }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        padding-left: 15px;
        background: transparent;
        margin-bottom: 0px;
        background: var(--primary-color);
        border-radius: 6px;
    }

    .has-dropdown.active .submenu {
        display: block;
    }
    .has-dropdown .submenu li a{
        color: var(--white-color-1);
    }
    aside nav ul li a:hover {
        color: var(--primary-color);
    }
    .submenu li a {
        padding: 6px 0;
    }
}
/* Scroll Color */
#mainHeader{
    transition: var(--transition);
}
#mainHeader.scrolled {
  background: var(--white-color-1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#mainHeader.scrolled *{
    color: var(--black-color-1);
    border-color: var(--border-color-1);
}
#mainHeader.scrolled .button_1 *{
    color: var(--white-color-1);
}
/* #mainHeader.scrolled .button_1:hover *{
    color: var(--primary-color);
} */
#mainHeader.scrolled a .icon *{
    color: var(--primary-color);
    transition: var(--transition);
}
#mainHeader.scrolled a:hover .icon *{
    color: var(--white-color-1);
}
/* #mainHeader.scrolled aside nav ul li a:hover{
    opacity: 0.5;
} */

/* Section Title */
.section-title{
    margin-bottom: 32px;
}
.section-title small{
    --section-title: var(--primary-color);
    font-size: 24px;
    font-family: var(--font-family-2);
    color: var(--section-title);
    position: relative;
    padding: 0px 30px;
}
.section-title small::before{
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    /* right: calc(100% + 4px); */
    right: 0px;
    height: 2px;
    width: 24px;
    background-color: var(--section-title);
}
.section-title small::after{
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    /* left: calc(100% + 4px); */
    left: 0px;
    height: 2px;
    width: 24px;
    background-color: var(--section-title);
}
/* about us */
.about-us{
    padding: var(--spacing-60) 0px;
}
.about-us .content{
    padding: 32px;
    border-radius: 10px;
    background: linear-gradient(180deg,rgba(254, 245, 239, 1) 0%, rgba(254, 245, 239, 0) 100%);
    border-top: 4px solid var(--primary-color);
}
.about-us .image {
    margin-top: 20px;
}
.about-us .image img{
    border-radius: 10px;
    outline: 1px solid var(--border-color-2);
    outline-offset: -20px;
    box-shadow: 0px 0px 24px #00000020;
    max-height: 320px;
    object-fit: cover;
}
/* Destinations */
.destination{
    /* background-color: var(--bg-color); */
    padding: var(--spacing-60) 0px;
    background: linear-gradient(180deg,rgb(255, 255, 255) 0%, rgba(227, 25, 25, 1) 100%);
}
.destination-slide{
    padding: 0px 24px 0px 24px;
    padding-bottom: 32px;
}
.destination-slide .box{
    aspect-ratio: 1 / 1.5;
    width: 100%;
    padding: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.destination-slide .box::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%);
}
.destination-slide .box::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--black-color-1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.destination-slide .box:hover::after{
    visibility: visible;
    opacity: 0.5;
}
.destination-slide .box .content{
    z-index: 1;
}
.destination-slide .box .content h6{
    color: var(--white-color-1);
}
.destination-slide .box .content small{
    color: var(--primary-color);
}
.destination-slide .box .content i{
    color: var(--white-color-1);
    font-size: 24px;
    transition: var(--transition);
}
.destination-slide .box:hover .content i{
    transform: rotate(-45deg);
    color: var(--primary-color);
}
@media (max-width: 1024px) {
    .destination-slide{
        padding: 0px 12px 0px 12px;
        padding-bottom: 32px;
    }
}

/* our director */
.our-director{
    padding: var(--spacing-60) 0px;
    position: relative;
    border-top: 1px solid var(--white-color-1);
}
.our-director .box{
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 20px;
}
/* .our-director::before{
    content: "";
    position: absolute;
    left: auto;
    right: 0px;
    top: 0px;
    bottom: 0px;
    height: 100%;
    width: 50%;
    background-color: var(--primary-color);
    z-index: -1;
} */
.our-director .image img{
    border-radius: 10px;
}
.our-director .content i{
    font-size: 53px;
    color: var(--white-color-1);
}
.our-director .content p{
    font-size: 20px;
    margin: 32px 0px 16px;
    color: var(--white-color-1);
}
.our-director .content .director-name{
    color: var(--white-color-1);
    font-size: 32px;
    font-family: var(--font-family-2);
}
.our-director .content .qualification{
    opacity: 0.6;
    color: var(--white-color-1);
}
@media (max-width: 991px) {
    .our-director::before{
        display: none;
    }
    .our-director .image img{
        border-radius: 10px;
    }
}
/* popular travels */
.popular-travels{
    padding: var(--spacing-60) 0px;
    background-color: var(--bg-color);
}
.travels-slide{
    padding: 10px 24px 10px 24px;
    padding-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 991px) {
    .travels-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .travels-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .travels-slide {
        grid-template-columns: repeat(1, 1fr);
    }
}
.travels-slide .box{
    width: 100%;
    padding: 8px 8px 0px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-color: var(--white-color-1);
    box-shadow: 0px 0px 10px #00000020;
    height: 100%;
}
@media (max-width: 1024px) {
    .travels-slide{
        padding: 10px 12px 10px 12px;
        padding-bottom: 32px;
    }
}
.travels-slide .box .image{
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1.5 / 1;
    position: relative;
}
.travels-slide .box .image img{
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.4);
}
.travels-slide .box:hover .image img{
    transform: scale(1.04);
}
.travels-slide .box .content{
    padding: 12px;
}
.travels-slide .box .content .days{
    border: 1px dashed var(--white-color-1);
    color: var(--white-color-1);
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1;
    padding: 6px 10px;
    position: absolute;
    top: 20px;
    left: 20px;
}
.travels-slide .box .content h5{
    margin:0px 0px 4px;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.travels-slide .box .content p{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
/* .travels-slide .box .content p span{
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
} */
.travels-slide .box .content p i{
    color: var(--white-color-1);
    height: 24px;
    width: 24px;
    min-width: 24px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.travels-slide .swiper-pagination{
    bottom: 0px;
}
.travels-slide .swiper-pagination .swiper-pagination-bullet{
    height: 5px;
    width: 5px;
    border-radius: 10px;
    transition: var(--transition);
}
.travels-slide .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
    width: 20px;
}

.what-we-offer{
    padding: var(--spacing-60) 0px;
}
.what-we-offer .content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* .what-we-offer .content .box{
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
} */
.what-we-offer .content .box h4{
    color: var(--primary-color);
    margin-bottom: 10px;
}
.what-we-offer .content .box ul{
    padding-left: 20px;
    list-style: circle;
    color: var(--black-color-2);
    font-size: 14px;
}
.what-we-offer .image img{
    border-radius: 10px;
}

/* video section */
.video-section{
    padding: var(--spacing-60) 0px;
    background-color: var(--bg-color);
}
.video-section iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    box-shadow: 0px 0px 24px #00000020;
}
/* tourist guide */
.tourist-guide{
    padding: var(--spacing-60) 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 120px;
}
.tourist-guide::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
}
.tourist-guide .container-fluid{
    position: relative;
    z-index: 1;
}
.tourist-guide .section-title small{
    --section-title: var(--white-color-1);
}
.tourist-guide .section-title h2{
    color: var(--white-color-1);
}
.tourist-guide .section-title p{
    color: var(--white-color-1);
    opacity: 0.6 !important;
}
.tourist-guide .content {
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    padding: 32px 10px;
    border: 1px dashed var(--white-color-1);
    border-radius: 10px;
}
.tourist-guide .content .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--white-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.tourist-guide .content h1{
    color: var(--white-color-1);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.tourist-guide .content h6{
    color: var(--white-color-1);
    opacity: 0.6;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
.tourist-guide{
    padding-bottom: 60px;
}
}

/* three box */
.three-box{
    transform: translateY(-60px);
}
@media (max-width: 1024px) {
    .three-box{
        transform: translateY(-30px);
    }
}
.three-box .content{
    background-color: var(--white-color-1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 24px #00000020;
    height: 100%;
}
.three-box .content h5{
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.three-box .content p{
    opacity: 0.6;
}

/* Why Section */
.why-section{
    padding-bottom: var(--spacing-60);
}
.why-section .content p{
    opacity: 0.6;
}

/* Cards */
.cards{
    padding-bottom: var(--spacing-60);
}
.cards .content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 10px;
    border-radius: 20px 20px;
    overflow: hidden;
}
.cards .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.cards .content .inner {
    border: 1px dashed var(--white-color-1);
    height: 100%;
    position: relative;
    padding: 16px;
    border-radius: 20px;
    min-height: 284px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.cards .content .inner h3 {
    color: var(--white-color-1);
    margin-bottom: 4px;
}
.cards .content .inner p {
    color: var(--white-color-1);
}

/* testimonials */
.testimonials{
    padding: var(--spacing-60) 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 120px;
}
.testimonials::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
}
.testimonials .container{
    position: relative;
    z-index: 1;
}
.testimonials .section-title small{
    --section-title: var(--white-color-1);
}
.testimonials h2{
    color: var(--white-color-1);
}
.testimonials .image img{
    border-radius: 10px;
}
.testimonials-slide{
    padding-bottom: 52px;
}
.testimonials-slide .box{
    background-color: var(--white-color-1);
    padding: 20px;
    border-radius: 10px;
    min-height: 253px;
}
.testimonials-slide .box .top{
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color-1);
}
.testimonials-slide .box .top .image{
    max-width: 60px;
    min-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
}
.testimonials-slide .box .top .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.testimonials-slide .box .top h6,
.testimonials-slide .box .top small{
    color: var(--primary-color);
}
.testimonials-slide .box .top small{
    color: var(--black-color-3);
}
.testimonials-slide .swiper-pagination .swiper-pagination-bullet{
    height: 5px;
    width: 5px;
    border-radius: 10px;
    transition: var(--transition);
    background-color: var(--white-color-1);
}
.testimonials-slide .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
    width: 20px;
}
.testimonials-slide .box p{
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.blogs-section{
    padding: var(--spacing-60) 0px;
    background-color: var(--bg-color);
}
.blogs-section a{
    height: 100%;
}
.blogs-section .content{
    padding: 10px;
    background-color: var(--white-color-1);
    border: 1px solid var(--border-color-1);
    border-radius: 10px;
    height: 100%;
    box-shadow: 0px 0px 24px #00000020;
}
.blogs-section .content .image{
    position: relative;
}
.blogs-section .content .image img{
    aspect-ratio: 1.75 / 1;
    border-radius: 10px;
    transition: var(--transition);
}
.blogs-section .content .image .post {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    color: var(--white-color-1);
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1;
}
.blogs-section .content .image .view-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color-1);
    border-radius: 40px;
    font-size: 14px;
    margin-top: 20px;
    transition: var(--transition);
}
.blogs-section a:hover .content .image .view-more{
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
}
.blogs-section a:hover .content .image img{
    filter: brightness(0.5);
}
.blogs-section .content .inner{
    padding: 12px;
}
.blogs-section .content .inner h4{
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.blogs-section .content .inner p{
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.contact-us{
    padding: var(--spacing-60) 0px;
}
.contact-us .content{
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 100%;
}
.contact-us .content .inner{
    padding: 20px;
    border: 1px dashed var(--white-color-1);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-us .content .inner h4{
    color: var(--white-color-1);
    margin-bottom: 8px;
}
.contact-us .content .inner p{
    color: var(--white-color-1);
    opacity: 0.6;
    margin-bottom: 10px;
}
form label{
    display: block;
    margin-bottom: 20px;
}
form label input,
form label textarea,
form label select{
    outline: none;
    width: 100%;
    display: block;
    padding: 0px 0px 10px;
    border-radius: 0px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--white-color-1);
    color: var(--white-color-1);
    transition: var(--transition);
}
form label input:focus,
form label textarea:focus,
form label select:focus{    
    border-color: var(--secondary-color);
}
form label input::placeholder,
form label textarea::placeholder,
form label select::placeholder{
    color: var(--white-color-1);
}
form label select option{
    color: var(--black-color-2);
}


/* booking tour */
.booking-tour{
    padding: var(--spacing-60) 0px;
}
.booking-tour .content::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
}
.booking-tour .content{
    border-radius: 10px;
    padding: 20px;
    min-height: 520px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-tour .content .inner{
    position: relative;
    z-index: 1;
    text-align: center;
}
.booking-tour .content .inner h2{
    color: var(--white-color-1);
}
.booking-tour .content .inner p{
    margin: auto;
    margin-top: 8px;
    margin-bottom: 16px;
    color: var(--white-color-1);
    max-width: 599px;
    width: 100%;
}

footer{
    background-color: var(--primary-color);
    padding-top: var(--spacing-60);
    padding-bottom: 16px;
}
footer .logo{
    max-width: 150px;
    width: 100%;
}
footer .logo img{
    background-color: var(--white-color-1);
    border-radius: 4px;
}
footer .content{
    padding: 16px;
    border-radius: 10px;
    background-color: var(--border-color-2);
    height: 100%;
}
footer .content p{
    color: var(--white-color-1);
    font-size: 14px;
}
footer .content h6{
    color: var(--white-color-1);
}
footer .content a.contact-info{
    display: flex;
    align-items: start;
    gap: 8px;
    margin-top: 16px;
}
footer .content a.contact-info .icon{
    height: 45px;
    width: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color-1);
    border-radius: 100px;
    color: var(--primary-color);
    transition: var(--transition);
}
footer .content a.contact-info:hover .icon{
    background-color: var(--primary-color);
    color: var(--white-color-1);
}
footer .content h3{
    color: var(--white-color-1);
    font-size: 18px;
}
footer .content ul{
    margin-top: 16px;
    color: var(--white-color-1);
}
footer .content ul li a{
    transition: var(--transition);
    color: var(--white-color-1);
}
footer .content ul li:hover a{
    opacity: 0.8;
}
footer .content .follow-icon{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 4px;
}
footer .content .follow-icon a{
    height: 38px;
    width: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color-1);
    transition: var(--transition);
    border-radius: 50px;
    font-size: 18px;
    line-height: 1;
    color: var(--primary-color);
}
footer .content .follow-icon a:hover{
    background-color: var(--primary-color);
    color: var(--white-color-1);
}
footer .copyright{
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border-color-2);
}
footer .copyright p{
    text-align: center;
    color: var(--white-color-1);
}