
@font-face {
    font-family: 'alexandria';
    src: url('../mainfont/Alexandria/alexandria.ttf') format('truetype');
    

}
/* color variables  */


:root {
    --main-color: #00a58e;
    --secondary-color: #94D0FD;
    --white-color: #ffffff;
    --black-color: #329b78;
    --black-color-opacity: #2b2540c4;
    --go2-font: 'DM Sans', sans-serif;
    --go2-reey-font: "reeyregular";
    --go2-gray: #79817c;
    --go2-gray-rgb: 121, 129, 124;
    --go2-white: #ffffff;
    --go2-white-rgb: 255, 255, 255;
    --go2-base: #a79132;
    --go2-base-rgb: 167, 145, 50;

    --go2-black-rgb: 18, 56, 33;
    --go2-primary: #f8f7f1;
    --go2-primary-rgb: 248, 247, 241;
    --go2-letter-spacing: -0.04em;
    --paragraph-color: #d6d6d6;
    --bg-color: #F3F6FD;
    --transition: .4s all ease-in-out;
}



/* end of variables */
*,
*:before,
*:after {
    box-sizing: inherit
}

* {
    scroll-behavior: smooth !important
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box
}

body {
    font-family: 'alexandria', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.8
}

a {
    color: var(--main-color);                               ;
    display: inline-block
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none
}

a:hover {
    color: #C4C4C4
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #01024A;
    margin: 0;
    font-weight: 600;
    font-family: 'alexandria', sans-serif;
    line-height: 1.2
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    margin: 0
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    height: auto
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none
}

::-moz-selection {
    background: #555;
    color: #fff;
    text-shadow: none
}

::selection {
    background: #555;
    color: #fff;
    text-shadow: none
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

.preloader {
    position: fixed;
    z-index: 999999;
    background-color:rgb(244, 244, 244);
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader video {
    max-width: 100%; 
    height: auto;   
}  


.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:var(--black-color); /* Initial background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background-color 1s ease, transform 1s ease;
}

.loading-text {
    color: var(--white-color);
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px); /* Initial off-screen position */
    animation: text-reveal 1s ease forwards; /* Trigger animation */
}

.content {
    display: none; /* Hidden until loading finishes */
    padding: 20px;
}

/* When the loading changes state */
.loading.blue-background {
    background-color: var(--black-color); /* Change to blue */
}

.loading.hidden {
    transform: translateY(-100%);
    transition: transform 1s ease;
}

/* Keyframes for the text reveal effect */
@keyframes text-reveal {
    to {
        opacity: 1;
        transform: translateX(0); /* Move to the final position */
    }
}

/* 
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #9A864C;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 99999
}

.loader {
    position: relative;
    width: 90px;
    height: 90px
}

.loader span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(calc(18deg * var(--i)))
}

.loader span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transform: scale(0);
    animation: loader 2s linear infinite;
    animation-delay: calc(0.1s * var(--i))
}

@keyframes loader {
    0% {
        transform: scale(0)
    }

    10% {
        transform: scale(1.2)
    }

    80%,
    100% {
        transform: scale(0)
    }
}

.loader-plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: loader-rotating 2s linear infinite;
    animation-delay: -1s
}

@keyframes loader-rotating {
    0% {
        transform: rotate(10deg)
    }

    100% {
        transform: rotate(370deg)
    }
}

.loader-plane::before {
    content: '\f072';
    position: absolute;
    font-family: "font awesome 6 pro";
    font-weight: 400;
    top: 53px;
    left: 58px;
    color: #fff;
    font-size: 38px;
    transform: rotate(135deg)
} */

.ovrflow-hidden {
    overflow: hidden
}

.text-right {
    text-align: right
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.c-pd {
    padding: 0 7rem
}

.s-pd {
    padding: 0 12rem
}

.h-100 {
    height: 100%
}

.h-100vh {
    height: 100vh
}

.bg {
    background-color: #f5f7fc
}

@media all and (max-width:1399px) {
    .container {
        max-width: 95%
    }
}

.site-heading {
    margin-bottom: 50px;
    position: relative
}

.site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    background: var(--main-color);
    border-radius: 50px;
    padding: 5px 20px
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 40px;
    color: var(--white-color);
    margin-top: 8px;
    margin-bottom: 0
}

.site-title span {
    color: var(--main-color)
}

.site-heading p {
    margin-top: 15px
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: var(--main-color);
    width: 90px;
    overflow: hidden
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #fff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px)
    }

    50% {
        transform: translateX(85px)
    }

    100% {
        transform: translateX(-1px)
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px)
    }

    50% {
        transform: translateX(85px)
    }

    100% {
        transform: translateX(-1px)
    }
}

@media all and (max-width:992px) {
    .shadow-title {
        font-size: 100px
    }
}

.pb-140 {
    padding-bottom: 140px
}

.pd-50 {
    padding: 50px 0
}

.py-120 {
    padding: 120px 0
}

.pt-120 {
    padding-top: 120px
}

.pb-120 {
    padding-bottom: 120px
}

.pt-0 {
    padding-top: 0
}

.pt-10 {
    padding-top: 10px
}

.pt-20 {
    padding-top: 20px
}

.pt-30 {
    padding-top: 30px
}

.pt-40 {
    padding-top: 40px
}

.pt-50 {
    padding-top: 50px
}

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

.pt-80 {
    padding-top: 80px
}

.pt-90 {
    padding-top: 90px
}

.pt-100 {
    padding-top: 100px
}

.pb-0 {
    padding-bottom: 0
}

.pb-10 {
    padding-bottom: 10px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-100 {
    padding-bottom: 100px
}

.mt-0 {
    margin-top: 0
}

.mt-10 {
    margin-top: 10px
}

.mt-20 {
    margin-top: 20px
}

.mt-30 {
    margin-top: 30px
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.mt-60 {
    margin-top: 60px
}

.mt-70 {
    margin-top: 70px
}

.mt-80 {
    margin-top: 80px
}

.mt-90 {
    margin-top: 90px
}

.mt-100 {
    margin-top: 100px
}

.mb-0 {
    margin-bottom: 0
}

.mb-10 {
    margin-bottom: 10px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-100 {
    margin-bottom: 100px
}

.mr-300 {
    margin-right: 300px
}

.ml-300 {
    margin-left: 300px
}

.pos-rel {
    position: relative;
    z-index: 1
}

.theme-btn {
    font-size: 16px;
    color: #fff;
    padding: 11px 20px;
    transition: all .5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--main-color);
    box-shadow: 0 3px 24px rgb(0 0 0/12%);
    z-index: 1
}

.theme-btn::before {
    content: "";
    height: 400px;
    width: 400px;
    background: var(--black-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1
}

.theme-btn:hover {
    color: #fff
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1)
}

.theme-btn i {
    margin-left: 5px
}

.theme-btn span {
    margin-right: 5px
}

.theme-btn2 {
    background: var(--black-color);
    color: #4f4b8b
}

.theme-btn2::before {
    background: var(--main-color)
}

.theme-btn2:hover {
    color: #fff
}
.theme-btn3 {
    background: transparent !important;
    color: var(--black-color) !important;
    border: 1px solid var(--black-color);
}

.theme-btn3::before {
    background: var(--black-color)
}

.theme-btn3:hover {
    color:white !important;
}
#scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 25px;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    transition: all .5s ease-in-out;
    z-index: 1
}

@media all and (min-width:768px) and (max-width:1399px) {
    #scroll-top {
        bottom: 70px
    }
}


.main {
    margin-top: -10rem
}
/* header area */


.header{
    background: transparent;
position: relative;
    left: 0px;
    top: 0px;
    right: 0;
    width: 100%;
    transition: all 500ms ease;
    z-index: 999;
    background-image: linear-gradient(180deg, rgba(154, 134, 76,0.5) 0%, rgba(255, 255, 255, 0) 100%);
}



@media all and (min-width:992px) {
    
    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 30px 0;
        font-size: 17px;
        font-weight: 500;
        color: var(--black-color);
        text-transform: uppercase;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 8px;
        border: none;
        left: -15px;
        border-radius: 12px;
        background: #fff;
        width: 220px;
        box-shadow: 0 0 50px 0 rgb(32 32 32/15%)
    }

    .navbar .nav-item .dropdown-menu::before {
        content: "\f0d8";
        position: absolute;
        font-family: "font awesome 6 pro";
        color: #fff;
        font-size: 45px;
        font-weight: 700;
        left: 25px;
        top: -40px
    }

    .navbar .nav-item .dropdown-menu li {
        border-bottom: 1px solid #eee
    }

    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0;
        border-bottom: none
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        font-weight: 500;
        padding: 10px 0 10px 20px;
        color: var(--black-color);
        position: relative;
        text-transform: capitalize;
        transition: all .5s ease-in-out;
        z-index: 1
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: 0 0;
        color: var(--main-color);
        padding-left: 30px
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "\f111";
        position: absolute;
        font-family: "font awesome 6 pro";
        left: 12px;
        top: 20.5px;
        color: var(--main-color);
        font-weight: 700;
        font-size: 6px;
        transform: scale(0, 0);
        transition: all .5s ease-in-out;
        z-index: -1
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        transform: scale(1, 1)
    }

    .navbar .nav-item .nav-link {
        position: relative
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--main-color)
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg)
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%
    }

    .header-nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-left: 30px
    }

    .header-nav-link {
        position: relative;
        width: 45px;
        height: 45px;
        line-height: 45px;
        color: var(--black-color);
        display: flex;
        align-items: center;
        justify-content: center
    }

    .header-nav-link:hover {
        color: var(--main-color)
    }

    .header-nav-link.search-box-outer {
        font-size: 18px
    }

    #main_nav {
        justify-content: space-around;
    }

    .navbar .dropdown-menu.mega-menu {
        width: 850px;
        left: -345px;
        padding: 15px 10px
    }

    .navbar .dropdown-menu.mega-menu::before {
        display: none
    }

    .navbar .dropdown-menu.mega-menu div[class*=col-] {
        border-right: 1px solid rgba(0, 0, 0, .05)
    }

    .navbar .dropdown-menu.mega-menu .dropdown-item {
        padding-top: 5px;
        padding-bottom: 5px
    }

    .navbar .dropdown-menu.mega-menu .dropdown-item::before {
        top: 15px
    }

    .navbar .dropdown-menu.mega-menu ul li {
        border-bottom: none
    }
}

.navbar {
    background: 0 0;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999
}

.navbar.fixed-top {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .17);
    animation: slide-down .7s
}

.navbar.fixed-top .nav-item .nav-link {
    color: var(--black-color) !important
}

.navbar.fixed-top .header-nav-link {
    color: var(--black-color) !important;
}

.navbar.fixed-top .header-nav-link:hover {
    color: var(--main-color)
}

.navbar.fixed-top .nav-item .nav-link.active,
.navbar.fixed-top .nav-item:hover .nav-link {
    color: var(--main-color)
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.navbar .navbar-brand .logo-display {
    display: block
}

.navbar .navbar-brand .logo-scrolled {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none
}

.navbar-toggler-btn-icon {
    display: inline-block;
    width: inherit;
    height: inherit
}

.navbar-brand {
    margin-right: 0
}

.navbar-brand img {
    width: 150px
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'font awesome 6 pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px
}

@media all and (max-width:1199px) {
    .header-nav-right {
        gap: 5px;
        margin-left: 15px
    }

    .navbar .nav-item .nav-link {
        margin-right: 15px
    }

    .navbar .header-btn {
        display: none
    }
}

.mobile-menu-right {
    display: none
}

@media all and (max-width:991px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed
    }

    .navbar-bg {
        height: 59px
    }

    .navbar-bg::before {
        transform: translateY(0px) skew(-15deg);
        left: -8px
    }

    .navbar-brand {
        padding-left: 10px
    }

    .navbar-brand img {
        width: 59px
    }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: #fff
    }

    .dropdown-toggle::after {
        float: right
    }

    .navbar .nav-item .nav-link {
        color: #4f4b8b;
        font-weight: 700;
        transition: all .5s ease-in-out
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--main-color) !important
    }

    .navbar-toggler {
        padding: 0;
        border: none
    }

    .mobile-menu-right {
        display: flex;
        align-items: center
    }

    .mobile-menu-link {
        font-size: 20px;
        color: #4f4b8b;
        font-weight: 500;
        padding-right: 20px;
        margin-bottom: 0;
        position: relative
    }

    .mobile-menu-link:hover {
        color: var(--main-color)
    }

    .navbar-toggler-btn-icon {
        font-size: 25px;
        color: var(--black-color);
        font-weight: 600
    }

    .navbar.fixed-top .mobile-menu-link {
        color: #4f4b8b
    }

    .navbar.fixed-top .navbar-toggler-btn-icon {
        color: #4f4b8b
    }

    .navbar .dropdown-menu {
        border-radius: 8px
    }

    .header-nav-right {
        display: none
    }
}

.navbar .nav-item .dropdown-submenu {
    position: relative
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
    display: none
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 12px;
    font-weight: 600
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: 0 0;
    color: #fff
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible
}

@media all and (max-width:991px) {
    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 4px
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--main-color)
    }
}



/* hero section START 0000000000000 */

/* .hero-section {
    background-image: linear-gradient(0deg, rgb(246, 245, 238) 0%, rgba(255, 255, 255, 0) 100%);
    background-color:rgb(246, 245, 238);
display: block;
    overflow: hidden;
}


.hero-single {
    padding-top: 320px;
    padding-bottom: 270px;
    background-image: url(../img/cloud-1.png);
    position: relative;
    top: 0;
    left: 0;
    width: 1920px;
    height: 100%;
    background-repeat: repeat-x;
    background-position: -1920px 100%;
    z-index: 1;
    animation: cloudMove 30s linear 0s infinite;
    mix-blend-mode: luminosity;
    opacity: 0.7;
  }




@keyframes cloudMove {
    0% {
      background-position: -1920px 100%;
    }
  
    100% {
      background-position: 0 100%;
    }
  }
/*  content here */
/* 
.banner_thirteen_text h3{
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 60px;
    border: 2px solid var(--main-color);
    border-bottom: none;

    z-index: 99;
    opacity: 1;
    -webkit-animation: 1s 1.2s flipInX both;
    animation: 1s 1.2s flipInX both;
 }
 .banner_thirteen_text h1 {
    position: absolute;
    font-size: 140px;
    font-weight: bold;
    line-height: 150px;
    color: var(--main-color);
    top: 30%;
    left: 22%;
    text-align: center;
    opacity: 1;
    -webkit-animation: 1s 1.2s flipInX both;
    animation: 1s 1.2s flipInX both;
}
 .banner_thirteen_text p{
    color: var(--black-color-opacity);
    border: 1px solid var(--black-color-opacity);
    border-top: none;
    padding-bottom: 44px;
    opacity: 1;
    padding-top: 12px;
    -webkit-animation: 1s 1.2s flipInY both;
    animation: 1s 1.2s flipInY both;
 } */ .sty {
    background-image: rgb(246, 245, 238);
    overflow: hidden;
    position: relative;
    display: block;
}

/* --Banner Area-- */
#home_thirteen_banner {
    position: relative;
    padding: 131px 0px 322px 0px;
    height: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/webimages/bg.jpg");
    background-repeat: repeat-x;
    background-position: -1920px 100%;

    animation: cloudmove 90s linear 0s infinite;
}

@keyframes cloudmove {
    0% {
        background-position: -1920px 100%;
    }
    100% {
        background-position: 0 100%;
    }
}

/* Apply luminosity effect to the background image */
#home_thirteen_banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* Adjust opacity if needed */
    mix-blend-mode: luminosity;
}

.banner_thirteen_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    height: 100%;
    padding: 60px 0;
}

.banner_thirteen_text h3,
.banner_thirteen_text h1,
.banner_thirteen_text p {
    width: 100%;
}


.banner_thirteen_text h1 {
    font-size: 72px;
    font-weight: bold;
    line-height: 150px;
    color: var(--black-color);
    white-space: nowrap;
    z-index: 99;
    opacity: 1;
    -webkit-animation: 1s 1.2s flipInX both;
    animation: 1s 1.2s flipInX both;
    margin: 0 auto;
    margin-left: -9%;
    padding: 60px 0px 20px 0px;
}

.banner_thirteen_textrtl h1 {
    font-size: 72px;
    font-weight: bold;
    line-height: 150px;
    color: var(--black-color);
    white-space: nowrap; 
    z-index: 99;
    opacity: 1;
    -webkit-animation: 1s 1.2s flipInX both;
    animation: 1s 1.2s flipInX both;
    margin: 0 auto; 
    padding: 60px 0px 20px 0px;
}

[dir=rtl] .border-right {
    border-left: 1px solid rgba(0, 0, 0, 0.3) !important;
    border-right: none !important;
}


.banner_thirteen_text p {
    color: #ffffff;
    border: 2px solid var(--main-color);
    border-top: none;
    padding-bottom: 44px;
    opacity: 1;
    padding-top: 12px;
    -webkit-animation: 1s 1.2s flipInY both;
    animation: 1s 1.2s flipInY both;
}


/* Media queries */
@media (max-width: 1440px) {
    .banner_thirteen_text h1 {
        font-size: 100px;
    }
}

@media (max-width: 990px) {
    .copyright {
        margin-bottom: 80px;
    }
    .sty2{
     
        height: 40vh;
    }
    
    .banner_thirteen_text {
        margin-top: 61px;
    }
    .banner_thirteen_text h1 {
        font-size: 80px;
        line-height: 100px;
        margin-left: 0;
    }
    .banner_thirteen_text h3 {
        margin-bottom: 0;
    }
}

@media (max-width: 770px) {
    .banner_thirteen_text h1 {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 480px) {
    .sty {
        height: 40vh;
    }
    .banner_thirteen_text h1 {
        font-size: 40px;
        line-height: 50px;
        margin-left: 0;
    }
}


/* end */

.mt-top1 {
    margin-top: -332px;
}
.mt-top2 {
    margin-top: 0;
}
.search-area {
    position: relative;
    z-index: 2;

}

.search-wrapper {
  
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(48, 48, 55, 0.37);
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 3.5px );

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid rgba( 255, 255, 255, 0.38 );
    padding: 10px;
}
.blurbg {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 2px solid rgba( 255, 255, 255, 0.3);
}
.search-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.search-nav {
    display: inline-block;
    background: transparent;
    border-radius: 50px;
    margin-bottom: -28px
}

.search-nav .nav-item {
    margin: 5px
}

.search-nav .nav-link {
    background: transparent;
    border-radius: 0px;
    padding: 6px 16px;
    font-weight: 500;
    color: var(--black-color);
    position: relative;
    transition: none;
    border: 1px solid var(--main-color);

}

.search-nav .nav-link span , .search-nav .nav-link i
 {
    margin-right: 7px;
    color: var(--main-color);
    font-size: 30px;
 
}

.search-nav .nav-link.active span ,.search-nav .nav-link.active i {
    color: #fff
}
.border-right {
    border-right: 1px solid rgba(0, 0, 0, 0.3);
}

[dir=rtl] .border-right {
    border-left: 1px solid rgba(0, 0, 0, 0.3) !important;
    border-right: none !important;
}


.search-nav .nav-link.active {
    background: var(--main-color)
}

.search-wrapper .tab-content {
    background: transparent;
    padding: 1px 20px;
    border-radius: 20px;

}

.search-wrapper .search-box {
    background: transparent;
    padding: 30px 30px 50px;
    border-radius: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.search-wrapper .search-box.flight-search {
    padding-top: 20px
}

.search-form .form-group {
    position: relative;
    padding:5px;
    border-radius: 12px;
}

.search-form .form-group label {
    color: var(--black-color-opacity);

}

   /*  search area tabs */
   
   .scrollable-tabs-container {

    background: transparent;
    max-width: 100%;
    margin: 6px auto;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  
  .scrollable-tabs-container svg {
    width: 30px;
    height: 30px;
    padding: 4px;
    cursor: pointer;
    color:var(--main-color);

    pointer-events: auto;
    background: linear-gradient(to left, #c4c4c4 10%, transparent);
    z-index: 5;
  }
  .scrollable-tabs-container ul {
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
  
  }
  .scrollable-tabs-container ul {
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  
  .scrollable-tabs-container ul.dragging button {
    pointer-events: none;
  }
  
  .scrollable-tabs-container ul.dragging {
    scroll-behavior: auto;
  }
  
  .scrollable-tabs-container ul::-webkit-scrollbar {
    display: none;
  }
  
  .scrollable-tabs-container button {
    color: #fff;
    text-decoration: none;
    background: #333;
    padding: 4px 24px;
    display: inline-block;
    border-radius: 4px;
    user-select: none;
    white-space: nowrap;
  }
  
  .scrollable-tabs-container button.active {
    background: #fff;
    color: #000;
  }
  
  .scrollable-tabs-container .right-arrow,
  .scrollable-tabs-container .left-arrow {
    position: absolute;
    height: 100%;
    width: 100px;
    top: 0;
    display: none;
    align-items: center;
    padding: 0 10px;
    pointer-events: none;
  }


  [dir=rtl] .scrollable-tabs-container .right-arrow {
    left: 0;
    right: auto;
    background: linear-gradient(to right, #f0f0f0 10%, transparent) !important;
  }

  
  .scrollable-tabs-container .right-arrow.active,
  .scrollable-tabs-container .left-arrow.active {
    display: flex;
  }
  
  .scrollable-tabs-container .right-arrow {
    right: 0;
    background: linear-gradient(to left, #f0f0f0 10%, transparent);
    justify-content: flex-end;
  }
  
  .scrollable-tabs-container .left-arrow {
    background: linear-gradient(to right, #f0f0f0 10%, transparent);
  }
  
  .scrollable-tabs-container svg:hover {
    background: #333;
  }
  
.search-form .form-control {
    border-radius: 12px;
    padding: 5px 0;
    box-shadow: none;
    color: #212529;
    background: 0 0;
    border: none;
    font-size: 19px;
    font-weight: 500;
    width: 100%;
}

.search-form .form-group i {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 28px;
    color: #212529
}
[dir=rtl] .search-form .form-group i {
    right: auto;
    left: 16px;
}

[dir=rtl] .nice-select  {
    text-align: right !important;
}

.search-form .form-group p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--black-color-opacity);
    font-size: 15px
}

.search-form-swap {
    position: absolute;
    left: -33px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}

[dir=rtl] .search-form-swap {
    left: auto;
    right: -33px;
}

.search-form-swap i {
    background: #eae8ff;
    font-size: 19px !important;
    position: unset !important;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    border: 3px solid #fff;
    color: var(--main-color)
}
/* search select */


/*  */
.search-form-date {
    display: flex
}

.search-form .passenger-total {
    border-radius: 12px;
    padding: 2.4px 0;
    color: #212529;
    font-size: 19px;
    font-weight: 500
}

.search-form .passenger-box {
    cursor: pointer
}

.search-form .passenger-box .dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 10px;
    width: 291px;
    right: -15px !important;
    margin-top: 15px !important;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.search-form .static-dropdown.passenger-box .dropdown-menu {
    right: 0 !important
}

.search-form .passenger-box .dropdown-item:hover {
    background: 0 0
}

.search-form .passenger-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.search-form .passenger-qty {
    display: flex;
    align-items: center;
    gap: 5px
}

.search-form .passenger-qty button {
    border: none;
    width: 35px;
    height: 35px;
    line-height: 32px;
    border-radius: 50px;
    background: rgba(113, 103, 255, .15)
}

.search-form .passenger-qty button i {
    position: unset !important;
    font-size: 16px !important
}

.search-form .passenger-qty input {
    width: 25px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 500;
    color: #212529
}

.search-form .passenger-class-info .form-check {
    margin-top: 10px
}

.search-form .passenger-class-info .form-check-input {
    box-shadow: none;
    margin-top: 7px
}

.search-form .search-btn .theme-btn {
    position: absolute;
    border-radius: 0px;
    border: none;
    bottom: 0;
    left: 50%;
    padding: 7px 25px;
    white-space: nowrap;
    margin-bottom: 5px;
    transform: translateX(-50%);
}

.search-form .flight-type {
    margin-bottom: 10px
}

.search-form .flight-type .form-check-input {
    margin-top: 6.5px;
    box-shadow: none;
    border: 2px solid #4f4b8b
}

.search-form .flight-type .form-check-label {
    font-weight: 500;
    color: #4f4b8b
}

.search-wrapper .flight-search-wrapper .tab-content {
    box-shadow: none;
    background: 0 0;
    border-radius: 0;
    padding: 0
}

.flight-search .search-form-return {
    display: none
}

.search-form .flight-multicity-item {
    margin-top: 25px;
    display: none
}

.search-form .multicity-btn {
    padding-top: 31px;
    padding-bottom: 31px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #4f4b8b
}

.search-form .multicity-item-remove {
    color: #f96768
}

.search-form .multicity-item-remove i {
    color: #f96768 !important
}

@media all and (max-width:1199px) {
    .search-area .container {
        max-width: 100%
    }

    .search-form .form-group {
        margin-bottom: 5px
    }
}

@media all and (max-width:991px) {

    .search-wrapper .tab-content {
        border-radius: 20px
    }

    .search-form-swap {
        left: 50%;
        top: -30px;
        transform: translateX(-50%)
    }
}
/* search area for mobile */
@media (max-width:600px){
    .mt-top1 {
        margin-top: 0px;
   
    }
 
}
/*  */
.ui-widget.ui-widget-content {
    border: none;
    padding: 8px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 24px rgb(0 0 0/10%)
}

.ui-widget-header .ui-icon {
    background-image: unset
}

.ui-datepicker .ui-widget-header {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 8px
}

.ui-datepicker .ui-datepicker-prev::after {
    content: "\f100";
    left: 5px;
    position: absolute;
    font-family: "font awesome 6 pro";
    color: #fff
}

.ui-datepicker .ui-datepicker-next::after {
    content: "\f101";
    right: 5px;
    position: absolute;
    font-family: "font awesome 6 pro";
    color: #fff
}

.ui-datepicker .ui-datepicker-header .ui-corner-all,
.ui-datepicker .ui-datepicker-header .ui-state-hover {
    cursor: pointer;
    border: 0;
    background: 0 0;
    font-weight: 600;
    top: 3px
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: center;
    text-decoration: none
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border: none;
    border-radius: 8px
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
    border: none;
    background: var(--black-color);
    color: #fff
}

.ui-state-active,
.ui-widget-content .ui-state-active {
    background: var(--main-color);
    color: #fff
}

.ui-timepicker.ui-widget.ui-widget-content {
    box-shadow: none
}

.ui-timepicker-standard {
    border: none !important;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    z-index: 2 !important
}

.ui-timepicker-standard a {
    border: none !important;
    transition: none !important;
    border-radius: 8px
}

.ui-timepicker-standard a#ui-active-item,
.ui-timepicker-standard a:hover {
    background: var(--main-color);
    color: #fff
}

.price-range-slider {
    margin-bottom: 50px
}

.price-range-slider .price-range-info {
    margin-bottom: 20px
}

.priceRange {
    background: 0 0;
    border: none;
    font-weight: 800;
    outline: none;
    color: var(--main-color)
}

.price-range-slider label {
    color: #4f4b8b;
    font-weight: 500
}

.price-range-slider .ui-slider-handle {
    top: -.36em !important;
    border-radius: 50px;
    background: #fff !important;
    border: 4px solid var(--main-color) !important;
    width: 1.1em;
    height: 1.1em;
    outline: none
}

.price-range-slider .ui-widget.ui-widget-content {
    background: #e6e9ec;
    border: none;
    border-radius: 50px;
    padding: 0;
    height: .4em
}

.price-range-slider .ui-widget-header {
    background: var(--main-color)
}

.play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 20px;
    text-align: center;
    background: var(--black-color);
    color: #fff !important;
    position: absolute;
    border-radius: 50%;
    z-index: 1
}

.play-btn i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--black-color);
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .5s ease-in-out
}

@keyframes ripple-wave {
    0% {
        opacity: .8;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2)
    }
}

.destination-area {
    position: relative
}

.destination-item {
    margin-bottom: 25px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    height: 300px;

   
}

.destination-item::after {
  content: "";
    position: absolute;
width: 100%;
height: 40%;
bottom: 0;
left: 0;
transition: all 0.3s;
background: linear-gradient(to top, var(--black-color) 0%, rgba(0, 0, 128, 0));

   
}


.destination-item img {
    border-radius: 0px;
    width: 100%;
  height: 100%;
  object-fit: cover;
    transition: all .5s
}

.destination-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.destination-info {
    position: absolute;
    bottom: -45px;
    left: 15px;
    transition: all .3s ease-in-out;
    z-index: 1
}

.destination-item:hover .destination-info {
    bottom: 15px
}

.destination-info h4 {
    color: #fff;
    font-size: 25px
}

.destination-rate {
    font-size: 15px;
    margin-top: 5px
}

.destination-rate i {
    color: #ffa903
}

.destination-rate span {
    color: #fff;
    font-weight: 400
}

.destination-more-info {
    margin-bottom: 50px;
    transition: all .3s ease-in-out;
}

.destination-item:hover .destination-more-info {
    margin-top: 8px
}

.destination-more-info ul {
    display: flex;
    gap: 10px
}

.destination-more-info ul li {
    color: #fff;
    font-size: 16px
}

.destination-more-info ul li i {
    margin-right: 2px
}

.destination-btn {
    position: absolute;
    width: 55px;
    height: 55px;
    line-height: 56px;
    text-align: center;
    background: #fff;
    color: var(--main-color) !important;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    top: 50%;
    left: 50%;
    font-size: 22px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 24px rgb(0 0 0/10%);
    transition: all .5s ease-in-out;
    z-index: 1
}

.destination-item:hover .destination-btn {
    visibility: visible;
    opacity: 1
}

.destination-2 .destination-info {
    bottom: 15px
}

.destination-2 .destination-more-info {
    margin-top: 8px
}

.destination-2 .destination-btn {
    width: unset;
    height: unset;
    line-height: unset;
    font-size: 16px;
    padding: 5px 15px;
    font-weight: 500
}

.destination-2 .destination-btn:hover {
    background: var(--black-color);
    color: #fff !important
}

.destination-slider.owl-theme .owl-nav {
    margin-top: 0
}

.destination-slider.owl-theme .owl-nav button {
    color: var(--white-color);
    font-size: 20px;
    margin: 0;
    padding: 0;
    background:var(--main-color);
    display: inline-block;
    cursor: pointer;
    height: 45px;
    width: 45px;
    border-radius: 0px;
    line-height: 45px;
    text-align: center;
    box-shadow: 0 3px 24px rgb(0 0 0/10%);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .5s ease-in-out
}

.destination-slider.owl-theme .owl-nav button:hover {
    background: var(--black-color-opacity);
    color: var(--main-color)
}

.destination-slider.owl-theme .owl-nav .owl-prev {
    left: -25px
}

.destination-slider.owl-theme .owl-nav .owl-next {
    right: -25px
}

.destination-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
    display: none;
}

.destination-slider .owl-dots .owl-dot span {
    background: 0 0;
    margin: 5px;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    width: 12px;
    height: 12px;
    display: inline-block;
    transition: all .5s ease-in-out
}

.destination-slider .owl-dots .owl-dot.active span {
    background: var(--main-color)
}

@media all and (max-width:1399px) {
    .destination-info h4 {
        font-size: 23px
    }

    .destination-more-info ul li {
        font-size: 15px
    }
}

@media all and (max-width:767px) {
 

    .destination-slider.owl-theme .owl-nav {
        display: block
    }
}

.flight-area {
    position: relative
}

.flight-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.flight-img {
    overflow: hidden;
    border-radius: 12px;
    position: relative
}

.flight-img img {
    border-radius: 12px
}

.flight-item:hover .flight-img img {
    transform: scale(1.1)
}

.flight-img .badge {
    background: #23bcb9;
    border-radius: 50px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1
}

.flight-img .badge-discount {
    background: #f96768
}

.flight-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 36px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px
}

.flight-title {
    margin-top: 15px
}

.flight-title-info {
    display: flex;
    align-items: center;
    gap: 7px
}

.flight-title-info img {
    width: 20px
}

.flight-title-info h4 {
    font-size: 18px
}

.flight-title-info a {
    color: #4f4b8b
}

.flight-title-info a:hover {
    color: var(--main-color)
}

.flight-title-info a i {
    margin: 0 5px;
    font-size: 16px
}

.flight-date {
    margin-top: 10px;
    font-weight: 500;
    color: #4f4b8b
}

.flight-date i {
    margin-right: 5px
}

.flight-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.flight-price {
    color: #4f4b8b;
    font-weight: 500
}

.flight-price span {
    font-weight: 700;
    color: var(--black-color);
    font-size: 19px
}

.flight-text-btn a {
    color: #4f4b8b;
    font-weight: 500
}

.flight-text-btn a i {
    font-size: 14px
}

.flight-text-btn a:hover {
    color: var(--main-color)
}

.hotel-area {
    position: relative
}

.hotel-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 5px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.hotel-img {
    border-radius: 12px;
    position: relative
}

.hotel-img img {
    border-radius: 12px
}

.hotel-img .badge {
    background: #23bcb9;
    border-radius: 50px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    position: absolute;
    right: 20px;
    top: -15px
}

.hotel-img .badge-discount {
    background: #f96768
}

.hotel-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 36px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px
}

.hotel-img .add-wishlist:hover {
    background: var(--black-color);
    color: #fff
}

.hotel-content {
    padding: 20px 15px 10px
}

.hotel-title a:hover {
    color: var(--main-color)
}

.hotel-content p {
    margin: 8px 0;
    color: #4f4b8b;
    font-weight: 500
}

.hotel-rate .badge {
    background: #ffa903;
    font-size: 13px
}

.hotel-rate-type {
    color: var(--main-color);
    font-weight: 500;
    margin: 0 5px
}

.hotel-rate-review {
    color: #4f4b8b;
    font-weight: 500
}

.hotel-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px
}

.hotel-price-amount {
    color: var(--black-color);
    font-weight: 700;
    font-size: 19px
}

.hotel-price-type {
    font-size: 14px;
    font-weight: 500;
    color: #4f4b8b
}

.hotel-text-btn a {
    color: #4f4b8b;
    font-weight: 500
}

.hotel-text-btn a i {
    font-size: 14px
}

.hotel-text-btn a:hover {
    color: var(--main-color)
}

.hotel-slider .hotel-item {
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: none
}

.hotel-slider.owl-theme .owl-nav {
    margin-top: 0
}

.hotel-slider.owl-theme .owl-nav button {
    color: var(--main-color);
    font-size: 20px;
    margin: 0;
    padding: 0;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    height: 45px;
    width: 45px;

    line-height: 45px;
    text-align: center;
    box-shadow: 0 3px 24px rgb(0 0 0/10%);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .5s ease-in-out
}

.hotel-slider.owl-theme .owl-nav button:hover {
    background: var(--main-color);
    color: #fff
}

.hotel-slider.owl-theme .owl-nav .owl-prev {
    left: -25px
}

.hotel-slider.owl-theme .owl-nav .owl-next {
    right: -25px
}

.hotel-slider .owl-dots {
    text-align: center;
    margin-top: 30px
}

.hotel-slider .owl-dots .owl-dot span {
    background: 0 0;
    margin: 5px;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    width: 12px;
    height: 12px;
    display: inline-block;
    transition: all .5s ease-in-out
}

.hotel-slider .owl-dots .owl-dot.active span {
    background: var(--main-color)
}

.hotel-list .hotel-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.hotel-list .hotel-img {
    width: 350px
}

.hotel-list .hotel-content {
    flex: 1
}
.room-card {
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 5px;
}

.room-card .body {
    padding: 10px;
}

@media all and (max-width:767px) {
    .hotel-slider.owl-theme .owl-nav {
        display: block
    }

    .hotel-list .hotel-item {
        display: block
    }

    .hotel-list .hotel-img {
        width: 100%
    }
}

.room-type-item {
    position: relative;
    margin-bottom: 25px
}

.room-type-item::before {
    content: "";
    position: absolute;
    background: rgba(13, 35, 62, .2);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    left: 0;
    top: 0
}

.room-type-item img {
    border-radius: 12px
}

.room-type-item .theme-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    color: #4f4b8b;
    transform: translate(-50%, -50%)
}

.room-type-item .theme-btn:hover {
    color: #fff
}

.room-area {
    position: relative
}

.room-item {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.room-img {
    border-radius: 12px;
    position: relative
}

.room-img img {
    border-radius: 12px
}

.room-img .badge {
    background: #23bcb9;
    border-radius: 50px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    position: absolute;
    right: 20px;
    top: -15px
}

.room-img .badge-discount {
    background: #f96768
}

.room-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px
}

.room-img .add-wishlist:hover {
    background: var(--black-color);
    color: #fff
}

.room-content {
    padding: 20px 15px 10px
}

.room-title a:hover {
    color: var(--main-color)
}

.room-content p {
    margin: 8px 0;
    color: #4f4b8b;
    font-weight: 500
}

.room-rate .badge {
    background: #ffa903;
    font-size: 13px
}

.room-rate-type {
    color: var(--main-color);
    font-weight: 500;
    margin: 0 5px
}

.room-rate-review {
    color: #4f4b8b;
    font-weight: 500
}

.room-info-list {
    margin-top: 10px
}

.room-info-list li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 8px;
    background-color: #fff7f7;
    border-radius: 5%;
    padding: 10px;
    
}

.room-info-list i {
    color: var(--main-color);
    margin-right: 6px
}

.room-detail-btn a {
    margin-top: 8px;
    text-decoration: underline;
    color: var(--main-color)
}

.room-detail-btn a:hover {
    color: #f96768
}

.room-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px
}

.room-price-amount {
    color: var(--black-color);
    font-weight: 700;
    font-size: 19px
}

.room-price-type {
    font-size: 14px;
    font-weight: 500;
    color: #4f4b8b
}

.room-text-btn a {
    color: #4f4b8b;
    font-weight: 500
}

.room-text-btn a i {
    font-size: 14px
}

.room-text-btn a:hover {
    color: var(--main-color)
}

.room-select-btn {
    background: var(--black-color);
    border-radius: 8px;
    padding: 5px 12px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.room-select-btn .form-check-input {
    margin-top: 7px;
    box-shadow: none;
    border: none
}

.room-select-btn .form-check-label {
    color: #fff;
    font-weight: 500
}

.room-list .room-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.room-list .room-img {
    width: 350px
}

.room-list .room-content {
    flex: 1
}

.room-list .room-info-list {
    width: 400px
}

@media all and (max-width:767px) {
    .room-list .room-item {
        display: block
    }

    .room-list .room-img {
        width: 100%
    }

    .room-list .room-info-list {
        width: 100%
    }
}

.banner-area {
    position: relative
}

.banner-item {
    position: relative
}

.banner-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 35, 62, .65);
    border-radius: 15px;
    left: 0;
    top: 0
}

.banner-img img {
    border-radius: 15px
}

.banner-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    text-align: center
}

.banner-content h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 600
}

.banner-content h3 span {
    color: var(--black-color);
    font-weight: 700
}

.banner-content p {
    color: #fff;
    margin: 15px 0
}

.banner-content .theme-btn {
    margin-top: 10px
}

@media all and (max-width:991px) {
    .banner-item {
        margin-bottom: 25px
    }
}

@media all and (max-width:767px) {
    .banner-content {
        padding: 15px
    }

    .banner-img img {
        height: 310px
    }

    .banner-content h3 {
        font-size: 25px
    }
}

.tour-area {
    position: relative
}

.tour-item {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.tour-img {
    border-radius: 12px;
    position: relative
}

.tour-img img {
    border-radius: 12px
}

.tour-img .badge {
    background: #23bcb9;
    border-radius: 50px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    position: absolute;
    right: 20px;
    top: -15px
}

.tour-img .badge-discount {
    background: #f96768
}

.tour-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    position: absolute;
    left: 10px;
    top: 10px
}

.tour-img .add-wishlist:hover {
    background: var(--black-color);
    color: #fff
}

.tour-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #4f4b8b;
    font-weight: 500
}

.tour-top i {
    color: var(--main-color)
}

.tour-top a:hover {
    color: var(--main-color)
}

.tour-content {
    padding: 15px 15px 10px
}

.tour-title a:hover {
    color: var(--main-color)
}

.tour-content p {
    margin: 8px 0;
    color: #4f4b8b;
    font-weight: 500
}

.tour-rate .badge {
    background: #ffa903;
    font-size: 13px
}

.tour-rate-type {
    color: var(--main-color);
    font-weight: 500;
    margin: 0 5px
}

.tour-rate-review {
    color: #4f4b8b;
    font-weight: 500
}

.tour-duration {
    margin-top: 10px;
    color: #4f4b8b;
    font-weight: 500
}

.tour-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px
}

.tour-price {
    color: #4f4b8b;
    font-weight: 500
}

.tour-price span {
    font-weight: 700;
    color: var(--black-color);
    font-size: 19px
}

.tour-text-btn a {
    color: #4f4b8b;
    font-weight: 500
}

.tour-text-btn a i {
    font-size: 14px
}

.tour-text-btn a:hover {
    color: var(--main-color)
}

.filter-controls {
    margin-bottom: 35px
}

.filter-btns {
    text-align: center
}

.filter-btns li {
    display: inline-block;
    background: #fff;
    color: #4f4b8b;
    margin: 5px;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.filter-btns li.active {
    background: var(--main-color);
    color: #fff
}

.tour-list .tour-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.tour-list .tour-img {
    width: 410px
}

.tour-list .tour-content {
    flex: 1
}

@media all and (max-width:767px) {
    .tour-list .tour-item {
        display: block
    }

    .tour-list .tour-img {
        width: 100%
    }
}

.car-area {
    position: relative
}

.car-item {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.car-img {
    border-radius: 12px;
    position: relative
}

.car-img img {
    border-radius: 12px
}

.car-img .badge {
    background: #23bcb9;
    border-radius: 50px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    position: absolute;
    right: 20px;
    top: -15px
}

.car-img .badge-discount {
    background: #f96768
}

.car-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 36px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px
}

.car-img .add-wishlist:hover {
    background: var(--black-color);
    color: #fff
}

.car-content {
    padding: 20px 15px 10px
}

.car-title a:hover {
    color: var(--main-color)
}

.car-content p {
    margin: 8px 0;
    color: #4f4b8b;
    font-weight: 500
}

.car-rate .badge {
    background: #ffa903;
    font-size: 13px
}

.car-rate-type {
    color: var(--main-color);
    font-weight: 500;
    margin: 0 5px
}

.car-rate-review {
    color: #4f4b8b;
    font-weight: 500
}

.car-info-list {
    margin-top: 10px
}

.car-info-list li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 8px
}

.car-info-list i {
    color: var(--main-color);
    margin-right: 6px
}

.car-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px
}

.car-price-amount {
    color: var(--black-color);
    font-weight: 700;
    font-size: 19px
}

.car-price-type {
    font-size: 14px;
    font-weight: 500;
    color: #4f4b8b
}

.car-text-btn a {
    color: #4f4b8b;
    font-weight: 500
}

.car-text-btn a i {
    font-size: 14px
}

.car-text-btn a:hover {
    color: var(--main-color)
}

.car-slider .car-item {
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: none
}

.car-slider.owl-theme .owl-nav {
    margin-top: 0
}

.car-slider.owl-theme .owl-nav button {
    color: var(--main-color);
    font-size: 20px;
    margin: 0;
    padding: 0;
    background: #fff;
    display: inline-block;
    cursor: pointer;
    height: 45px;
    width: 45px;
    border-radius: 50px;
    line-height: 45px;
    text-align: center;
    box-shadow: 0 3px 24px rgb(0 0 0/10%);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .5s ease-in-out
}

.car-slider.owl-theme .owl-nav button:hover {
    background: var(--main-color);
    color: #fff
}

.car-slider.owl-theme .owl-nav .owl-prev {
    left: -25px
}

.car-slider.owl-theme .owl-nav .owl-next {
    right: -25px
}

.car-slider .owl-dots {
    text-align: center;
    margin-top: 30px
}

.car-slider .owl-dots .owl-dot span {
    background: 0 0;
    margin: 5px;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    width: 12px;
    height: 12px;
    display: inline-block;
    transition: all .5s ease-in-out
}

.car-slider .owl-dots .owl-dot.active span {
    background: var(--main-color)
}

.car-list .car-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.car-list .car-img {
    width: 410px
}

.car-list .car-content {
    flex: 1
}

@media all and (max-width:767px) {
    .car-slider.owl-theme .owl-nav {
        display: none
    }

    .car-list .car-item {
        display: block
    }

    .car-list .car-img {
        width: 100%
    }
}

.activity-area {
    position: relative
}

.activity-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 5px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.activity-img {
    border-radius: 12px;
    position: relative
}

.activity-img img {
    border-radius: 12px
}

.activity-img .badge {
    background: #23bcb9;
    border-radius: 50px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    position: absolute;
    right: 20px;
    top: -15px
}

.activity-img .badge-discount {
    background: #f96768
}

.activity-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 36px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px
}

.activity-img .add-wishlist:hover {
    background: var(--black-color);
    color: #fff
}

.activity-content {
    padding: 20px 15px 10px
}

.activity-title a:hover {
    color: var(--main-color)
}

.activity-content p {
    margin: 8px 0;
    color: #4f4b8b;
    font-weight: 500
}

.activity-rate .badge {
    background: #ffa903;
    font-size: 13px
}

.activity-rate-type {
    color: var(--main-color);
    font-weight: 500;
    margin: 0 5px
}

.activity-rate-review {
    color: #4f4b8b;
    font-weight: 500
}

.activity-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px
}

.activity-price-amount {
    color: var(--black-color);
    font-weight: 700;
    font-size: 19px
}

.activity-text-btn a {
    color: #4f4b8b;
    font-weight: 500
}

.activity-text-btn a i {
    font-size: 14px
}

.activity-text-btn a:hover {
    color: var(--main-color)
}

.activity-list .activity-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.activity-list .activity-img {
    width: 350px
}

.activity-list .activity-content {
    flex: 1
}

@media all and (max-width:767px) {
    .activity-list .activity-item {
        display: block
    }

    .activity-list .activity-img {
        width: 100%
    }
}

.cruise-area {
    position: relative
}

.cruise-item {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.cruise-img {
    border-radius: 12px;
    position: relative
}

.cruise-img img {
    border-radius: 12px
}

.cruise-img .badge {
    background: #23bcb9;
    border-radius: 50px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    position: absolute;
    right: 20px;
    top: -15px
}

.cruise-img .badge-discount {
    background: #f96768
}

.cruise-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 36px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px
}

.cruise-img .add-wishlist:hover {
    background: var(--black-color);
    color: #fff
}

.cruise-content {
    padding: 20px 15px 10px
}

.cruise-title a:hover {
    color: var(--main-color)
}

.cruise-content p {
    margin: 8px 0;
    color: #4f4b8b;
    font-weight: 500
}

.cruise-rate .badge {
    background: #ffa903;
    font-size: 13px
}

.cruise-rate-type {
    color: var(--main-color);
    font-weight: 500;
    margin: 0 5px
}

.cruise-rate-review {
    color: #4f4b8b;
    font-weight: 500
}

.cruise-info-list {
    margin-top: 10px
}

.cruise-info-list li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 8px
}

.cruise-info-list i {
    color: var(--main-color);
    margin-right: 6px
}

.cruise-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px
}

.cruise-price-amount {
    color: var(--black-color);
    font-weight: 700;
    font-size: 19px
}

.cruise-price-type {
    font-size: 14px;
    font-weight: 500;
    color: #4f4b8b
}

.cruise-text-btn a {
    color: #4f4b8b;
    font-weight: 500
}

.cruise-text-btn a i {
    font-size: 14px
}

.cruise-text-btn a:hover {
    color: var(--main-color)
}

.cruise-list .cruise-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.cruise-list .cruise-img {
    width: 410px
}

.cruise-list .cruise-content {
    flex: 1
}

@media all and (max-width:767px) {
    .cruise-list .cruise-item {
        display: block
    }

    .cruise-list .cruise-img {
        width: 100%
    }
}

.listing-header {
    margin-top: 20px;
    display: flex;
    justify-content: space-between
}

.listing-title {
    font-size: 25px
}

.listing-location {
    color: #4f4b8b;
    margin: 5px 0
}

.listing-rate .badge {
    background: #ffa903;
    margin-right: 5px
}

.listing-rate-type {
    color: var(--main-color);
    font-weight: 500
}

.listing-rate-review {
    color: #4f4b8b
}

.listing-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.listing-feature {
    display: flex;
    gap: 10px;
    margin-bottom: 25px
}
.listing-item p{
color: var(--paragraph-color);
}
.listing-feature-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: rgba(113, 103, 255, .2);
    border-radius: 12px;
    font-size: 18px;
    text-align: center;
    color: var(--main-color)
}

.listing-feature-content span {
    color: #4f4b8b
}

.listing-highlight {
    margin: 25px 0
}

.listing-highlight h5 {
    margin-bottom: 15px
}

.listing-item .list li {
    margin-bottom: 15px;
    padding-left: 18px;
    position: relative
}

.listing-item .list li::before {
    content: "\e122";
    position: absolute;
    font-family: "font awesome 6 pro";
    font-size: 10px;
    color: var(--main-color);
    font-weight: 700;
    top: 6.7px;
    left: 0
}

.listing-info {
    margin-top: 20px;
    margin-bottom: 20px
}

.listing-info h5 {
    margin-bottom: 15px
}

.listing-info .list li {
    padding-left: 0
}

.listing-info .list li span {
    margin-right: 10px;
    color: #4f4b8b
}

.listing-info .list li::before {
    display: none
}

.listing-included h5 {
    margin-bottom: 15px
}

.listing-included .list li {
    padding-left: 24px
}

.listing-included .list li::before {
    content: "\f00c";
    font-size: 16px;
    top: 0;
    color: #09ad95
}

.listing-notincluded h5 {
    margin-bottom: 15px
}

.listing-notincluded .list li::before {
    content: "\f00d";
    font-size: 16px;
    top: 0;
    color: #f96768
}

.listing-item iframe {
    border-radius: 15px;
    margin-bottom: 15px
}

.listing-item.faq-area {
    margin-bottom: 35px
}

.listing-item.faq-area .accordion-item {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .08)
}

.listing-item.faq-area .accordion-body {
    padding-top: 0
}

.listing-item.faq-area .accordion-button:not(.collapsed) {
    border: none
}

.listing-amenity-item .list li::before {
    content: "\f00c";
    font-size: 14px;
    top: 0;
    left: 4px;
    color: #09ad95
}

.listing-amenity-item h6 {
    margin-bottom: 15px;
    margin-top: 15px
}

.listing-amenity-item h6 i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 8px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    color: var(--main-color);
    background: rgba(113, 103, 255, .1)
}

.listing-amenity-item .list li {
    margin-bottom: 5px;
    padding-left: 25px;
    font-size: 15px
}

.listing-stop {
    font-weight: 500
}

.listing-stop .badge {
    background: #09ad95
}

.listing-flight .flight-booking-time .start-time,
.listing-flight .flight-booking-time .end-time {
    display: flex;
    align-items: center;
    gap: 12px
}

.listing-flight .flight-booking-time .start-time-text,
.listing-flight .flight-booking-time .end-time-text {
    color: #4f4b8b;
    font-weight: 700
}

.listing-flight .flight-destination {
    color: #4f4b8b;
    font-weight: 500
}

.listing-flight .flight-booking-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.listing-flight .start-time-icon {
    font-size: 25px;
    color: #4f4b8b
}

.listing-flight .flight-stop {
    text-align: center
}

.listing-flight .flight-stop-number {
    color: #4f4b8b;
    font-weight: 500
}

.listing-flight .flight-stop-arrow {
    margin-top: 5px;
    border-top: 2px solid #4f4b8b;
    position: relative;
    width: 140px
}

.listing-flight .flight-stop-arrow::before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #4f4b8b transparent transparent transparent;
    right: -1.5px;
    top: -9.6px;
    transform: scaleY(-1)
}

.listing-flight .flight-has-stop::after {
    content: "\e122";
    position: absolute;
    left: 50%;
    top: -15px;
    font-family: "font awesome 6 pro";
    color: #4f4b8b;
    font-weight: 700
}

.listing-flight .flight-booking-return .flight-has-stop::after {
    top: -16px
}

.listing-flight .flight-booking-duration .duration-text {
    color: #4f4b8b;
    font-weight: 500
}

.listing-baggage {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .08)
}

.listing-baggage-check .form-group {
    margin-bottom: 25px
}

.listing-baggage-check .form-group label {
    color: #4f4b8b;
    margin-bottom: 5px
}

.listing-baggage-check .form-group-icon {
    position: relative
}

.listing-baggage-check .form-group-icon i {
    position: absolute;
    left: 18px;
    top: 20px;
    font-weight: 600;
 color: var(--black-color);
}

.listing-baggage-check .form-control {
    padding: 15px 18px 15px 45px;
    border-radius: 12px;
    box-shadow: none;
    color: #4f4b8b
}

.listing-baggage-check .nice-select {
    width: 100%;
    height: 55px;
    line-height: 55px;
    border-radius: 12px;
    border-color: #ced4da;
    padding-left: 45px;
    font-size: 16px;
    color: #4f4b8b;
    margin-bottom: 25px
}

.listing-baggage-check .form-control:focus,
.listing-baggage-check .nice-select:focus {
    border-color: var(--main-color)
}

.listing-baggage-check .nice-select .list {
    width: 100%;
    border-radius: 12px
}

.listing-baggage-check .nice-select:after {
    width: 9px;
    height: 9px;
    margin-top: -7px;
    right: 15px
}

.listing-slider img {
    border-radius: 15px
}

.listing-slider.owl-theme .owl-nav {
    margin-top: 0
}

.listing-slider.owl-theme .owl-nav .owl-prev,
.listing-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    color: var(--main-color);
    font-size: 20px;
    margin: 0;
    padding: 0;
    background: #fff;
    display: inline-block;
    cursor: pointer;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50px;
    text-align: center;
    transition: all .5s ease-in-out
}

.listing-slider.owl-theme .owl-nav .owl-prev:hover,
.listing-slider.owl-theme .owl-nav .owl-next:hover {
    background: var(--main-color);
    color: #fff
}

.listing-slider.owl-theme .owl-nav .owl-prev {
    left: 20px
}

.listing-slider.owl-theme .owl-nav .owl-next {
    right: 20px
}

.listing-review-rating {
    display: flex;
    align-items: center;
    gap: 20px
}

.listing-rating-count {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, .08)
}

.listing-rating-count h2 {
    font-weight: 700;
    font-size: 50px;
    color: var(--main-color)
}

.listing-rating-star i {
    color: #f8a611
}

.listing-rating-count p {
    margin-top: 5px
}

.listing-rating-range-star i {
    color: #f8a611;
    font-size: 14px
}

.listing-rating-range-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0
}

.listing-progress {
    margin: 0 15px;
    width: 300px;
    height: 5px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background-color: #e9ecef
}

.listing-progress-width {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    border-radius: 5px;
    background: var(--main-color)
}

.listing-review {
    background: #fff;
    border-radius: 5px;
    margin-top: 30px
}

.listing-review h5 {
    margin-bottom: 35px
}

.listing-review-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.listing-review-author img {
    width: 60px;
    border-radius: 50%
}

.listing-review-item {
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, .08)
}

.review-reply-item {
    margin-left: 80px
}

.listing-review-item p {
    margin-top: 10px
}

.listing-review-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.listing-review-author-rating i {
    color: #f8a611
}

.listing-review-author-info span {
    font-size: 14px
}

.listing-review-reply {
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

.review-reaction {
    display: flex;
    gap: 15px
}

.listing-review-reply a:hover {
    color: var(--main-color)
}

.review-reaction .active {
    color: #f96768
}

.listing-review-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    background: #f5f7fc
}

.listing-review-form h4 {
    margin-bottom: 20px
}

.listing-review-form .form-group {
    margin-bottom: 30px
}

.listing-review-form .form-group .star-label {
    font-weight: 500
}

.listing-review-form .form-control {
    box-shadow: none;
    padding: 15px 20px;
    border-radius: 12px
}

.listing-review-form .form-control:focus {
    border-color: var(--main-color)
}

.listing-info-card {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.listing-info-card-body {
    display: flex;
    align-items: center;
    gap: 15px
}

.listing-info-card-body i {
    color: var(--main-color);
    font-size: 30px
}

.listing-info-card p {
    margin-top: 10px
}

.star-rating-wrapper {
    display: inline-block
}

.star-rating-box {
    direction: rtl !important
}

.star-rating-box label {
    display: inline-block;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 38px;
    transition: color .2s
}

.star-rating-box input {
    display: none
}

.star-rating-box label:hover,
.star-rating-box label:hover~label,
.star-rating-box input:checked~label {
    color: #f8a611
}

.itinerary-content-box {
    margin-top: 50px;
    margin-bottom: 30px
}

.itinerary-single-box {
    position: relative;
    padding-left: 110px;
    padding-bottom: 62px
}

.itinerary-single-box::before {
    position: absolute;
    content: '';
    width: 1px;
    border-left: 2px dashed var(--main-color);
    height: 100%;
    left: 31px;
    top: 10px;
    z-index: -1
}

.itinerary-single-box img {
    width: 200px;
    border-radius: 15px;
    margin-bottom: 15px
}

.itinerary-single-box:last-child::before {
    display: none
}

.itinerary-single-box span {
    position: absolute;
    display: inline-block;
    left: 5px;
    top: 3px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
    background: var(--main-color);
    font-weight: 500;
    text-align: center;
    border-radius: 15px
}

.itinerary-single-box span::before {
    position: absolute;
    content: '';
    background: #fff;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    left: -5px;
    top: -5px;
    border-radius: 50%;
    box-shadow: 0 10px 40px 0 rgb(0 0 0/20%);
    z-index: -1
}

.itinerary-single-box h4 {
    display: block;
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--main-color)
}

.itinerary-single-box h3 {
    display: block;
    font-size: 21px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 10px
}

.listing-price {
    margin-bottom: 10px
}

.listing-price-tag {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--main-color)
}

.listing-price-amount {
    margin-top: 10px;
    font-weight: 500
}

.listing-price-amount span {
    font-weight: 600;
    font-size: 23px;
    color: var(--black-color);
    margin-left: 5px;
    margin-right: 5px
}

.listing-side-content .search-form {
    margin-top: 25px
}

.listing-side-content .search-form .form-group {
    margin-bottom: 20px;
    background: 0 0;
    border: 1px solid rgba(0, 0, 0, .08)
}

.listing-side-btn .theme-btn,
.listing-side-btn .border-btn {
    width: 100%
}

.listing-side-btn .border-btn {
    border: 2px solid var(--main-color);
    margin-top: 25px;
    text-align: center;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 12px
}

.listing-side-btn .border-btn:hover {
    background: var(--main-color);
    color: #fff
}

.listing-side-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    color: #4f4b8b
}

.listing-side-share a:hover {
    color: var(--main-color)
}

.listing-side-list li {
    margin: 15px 0
}

.listing-side-list li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    border-radius: 50px;
    text-align: center
}

.listing-side-list li a {
    font-weight: 500
}

.listing-side-list li a:hover {
    color: var(--main-color)
}

.listing-side-organizer {
    text-align: center
}

.listing-side-organizer-img {
    margin-bottom: 15px
}

.listing-side-organizer-img img {
    border-radius: 50px;
    width: 95px
}

.listing-side-organizer .theme-btn {
    margin-top: 15px
}

@media all and (min-width:992px) and (max-width:1199px) {
    .listing-rating-range-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }

    .listing-progress {
        margin: 0
    }
}

@media all and (max-width:991px) {
    .listing-content {
        margin-bottom: 50px
    }
}

@media all and (max-width:767px) {
    .listing-header {
        flex-direction: column
    }

    .listing-review-rating {
        flex-direction: column
    }

    .listing-rating-range-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }

    .listing-progress {
        margin: 0
    }

    .listing-review-author-info {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 15px
    }

    .review-reply-item {
        margin-left: 30px
    }

    .listing-flight .flight-booking-time {
        flex-direction: column
    }
}

.deal-area {
    position: relative
}

.deal-item {
    margin-bottom: 25px
}

.deal-1 .deal-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.deal-1 .deal-info {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.deal-1 .deal-title {
    font-size: 22px
}

.deal-1 .deal-price {
    font-weight: 600;
    color: var(--black-color);
    font-size: 22px
}

.deal-1 .deal-item .theme-btn {
    padding: 6px 15px;
    margin-top: 25px
}

.deal-2 .deal-item {
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.deal-2 .deal-img {
    overflow: hidden;
    border-radius: 15px
}

.deal-2 .deal-item:hover .deal-img img {
    transform: scale(1.1)
}

.deal-2 .deal-img img {
    border-radius: 15px
}

.deal-2 .deal-info {
    margin: 10px 0 5px 10px
}

.deal-2 .deal-title {
    font-size: 20px
}

.deal-2 .deal-title a:hover {
    color: var(--main-color)
}

.deal-2 .deal-price span {
    font-weight: 600;
    color: #f96768
}

.download-area {
    position: relative
}

.download-img {
    text-align: center;
    position: relative;
    z-index: 1
}

.download-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 500px;
    height: 500px;
    background: #f1f0ff;
    border-radius: 50%;
    z-index: -1
}

.download-img img {
    width: 63%
}

.download-feature {
    margin: 20px 0 35px
}

.download-feature li {
    font-weight: 500;
    margin: 15px 0;
    text-transform: capitalize
}

.download-feature li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    margin-right: 10px
}

.download-link a img {
    border-radius: 12px;
    width: 90%
}

@media all and (max-width:991px) {
    .download-img {
        margin-bottom: 60px
    }
}

@media all and (max-width:767px) {
    .download-img::before {
        width: 280px;
        height: 280px;
        left: 50%;
        transform: translateX(-50%)
    }

    .download-link a:first-child {
        margin-bottom: 15px
    }
}

.booking-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.booking-sidebar .booking-item {
    margin-bottom: 35px
}

.booking-sidebar .booking-item:last-child {
    margin-bottom: 0
}

.booking-sidebar .booking-title {
    font-size: 19px;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
  
}
.booking-sidebar .booking-title::before,
.booking-sidebar .booking-title::after {
    content: "";
    height: 2px;
    border-radius: 50px;
    background-color: var(--main-color);
    position: absolute;
    bottom: 0;
}
.booking-sidebar .booking-title::before{
    width: 15px;
    left: 0;
}
.booking-sidebar .booking-title::after{
    width: 55px;
    left: 20px
}
.booking-sidebar .form-check-input {
    margin-top: 6px;
    box-shadow: none;
    border-color: #4f4b8b
}

.booking-sidebar .form-check-input:focus {
    border-color: var(--main-color)
}

.booking-sidebar .form-check-label {
    width: 100%;
    color: #4f4b8b
}

.booking-sidebar .form-check-label span {
    float: right
}

.booking-sidebar .form-check {
    margin: 12px 0
}

.booking-sidebar .flight-time .form-check {
    padding: 10px 15px 10px 38px;
    border-radius: 8px;
    background: rgba(113, 103, 255, .1)
}

.booking-sidebar .flight-time .form-check-label i {
    border-left: 1px solid rgba(0, 0, 0, .1);
    padding-left: 12px;
    margin-left: 5px;
    margin-right: 5px
}

.booking-sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    margin-bottom: 25px;
    padding: 10px 10px 10px 15px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.booking-sort-list-grid a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #ced4da;
    color: #4f4b8b;
    font-size: 18px
}

.booking-sort-list-grid a.active {
    border-color: var(--main-color);
    color: var(--main-color)
}

.booking-sort .nice-select {
    width: 100%;
    height: 46px;
    line-height: 44px;
    border-radius: 8px;
    padding-left: 15px;
    font-size: 16px;
    border-color: #ced4da;
    color: #4f4b8b
}

.booking-sort .form-control:focus,
.booking-sort .nice-select:focus {
    border-color: var(--main-color)
}

.booking-sort .nice-select .list {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 50px 0 rgb(32 32 32/15%)
}

.booking-sort .nice-select .option.focus,
.booking-sort .nice-select .option.selected.focus,
.booking-sort .nice-select .option:hover {
    background: #f6f6f6;
    color: var(--main-color);
    border-radius: 8px
}

.booking-sort .nice-select:after {
    width: 8px;
    height: 8px;
    margin-top: -6px;
    right: 15px
}

@media all and (max-width:767px) {
    .booking-sort {
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        padding-bottom: 20px
    }

    .booking-sort-box {
        width: 100%
    }
}

.flight-booking-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
    padding:5px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.flight-booking-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.flight-booking-item .flight-booking-content {
    display: flex;
    align-items: center;
    gap: 50px
}

.flight-booking-item .flight-booking-airline {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 2px solid rgba(0, 0, 0, .05);
}

.flight-booking-item .flight-airline-img {
    width: 120px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;

  
}
.pr-12 {
    padding-right: 4px;
}
.flight-booking-item .flight-booking-time .start-time,
.flight-booking-item .flight-booking-time .end-time {
    display: flex;
    align-items: center;
    gap: 12px
}

.flight-booking-item .flight-booking-time .start-time-text,
.flight-booking-item .flight-booking-time .end-time-text {
    color: #4f4b8b;
    font-weight: 700
}

.flight-booking-item .flight-destination {
    color: #4f4b8b;
    font-weight: 500
}

.flight-booking-item .flight-booking-time {
    display: flex;
    align-items: center;
    gap: 30px
}

.flight-booking-item .start-time-icon {
    font-size: 25px;
    color: #4f4b8b
}

.flight-booking-item .flight-stop {
    text-align: center
}

.flight-booking-item .flight-stop-number {
    color: #4f4b8b;
    font-weight: 500
}

.flight-booking-item .flight-stop-arrow {
    margin-top: 5px;
    border-top: 2px solid #4f4b8b;
    position: relative;
    width: 140px
}

.flight-booking-item .flight-stop-arrow::before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #4f4b8b transparent transparent transparent;
    right: -1.5px;
    top: -9.6px;
    transform: scaleY(-1)
}

.flight-booking-item .flight-has-stop::after {
    content: "\e122";
    position: absolute;
    left: 50%;
    top: -15px;
    font-family: "font awesome 6 pro";
    color: var(--black-color);
    font-weight: 700
}

.flight-booking-item .flight-booking-return .flight-has-stop::after {
    top: -16px
}

.flight-booking-item .flight-booking-duration .duration-text {
    color: var(--black-color);
    font-weight: 500
}

.flight-booking-item .price-info {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.flight-booking-item .price-info .price-amount {
    color: var(--black-color);
    font-weight: 600;
    font-size: 28px;
    padding: 0 12px 0 2px;

}
.maincolor {
    color: var(--main-color) !important;
}
.flight-booking-item .price-info .discount-price {
    margin-right: 5px;
    color: var(--black-color);
    text-align: left;
}

.flight-booking-item .flight-booking-price {
    padding-left: 30px;
    text-align: left;
    border-left: 1px solid rgba(0, 0, 0, .05);

    height: 100%;

}

.flight-booking-item .flight-booking-price .theme-btn {
    padding: 7px 18px
}

.flight-booking-item .flight-booking-return {
    margin-top: 20px
}

.flight-booking-item .flight-booking-return .flight-stop-arrow::before {
    right: unset;
    left: -1.5px;
    top: -9.6px;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #4f4b8b transparent;
    transform: scaleY(1)
}

.flight-booking-detail {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.flight-booking-detail-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;

}


.flight-booking-detail-header a {
    color: white;
    font-weight: 500;
    margin: 0 4px;
}

.flight-booking-detail-wrapper {
    margin-top: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.flight-booking-detail-wrapper .nav-tabs .nav-item .nav-link {
    font-weight: 500;
    color: #4f4b8b;
    border: none;
    border-bottom: 2px solid transparent
}

.flight-booking-detail-wrapper .nav-tabs .nav-link.active {
    border-color: var(--main-color);
    color: var(--main-color)
}

.flight-booking-detail-left .flight-booking-airline {
    margin-top: 15px;
    margin-bottom: 35px
}

.flight-booking-detail-left .flight-airline-model {
    color: #4f4b8b;
    font-weight: 500;
    font-size: 14px
}

.flight-booking-detail-left .flight-airline-class {
    color: #4f4b8b;
    font-weight: 500
}

.flight-booking-detail-left .flight-full-date {
    font-size: 14px;
    color: #4f4b8b;
    font-weight: 500
}

.flight-booking-detail-left .flight-booking-time {
    gap: unset;
    justify-content: space-between
}

.flight-booking-detail-left .flight-stop-arrow {
    width: 100px
}

.flight-booking-detail-right {
    position: relative;
    height: 100%;
    padding-bottom: 65px
}

.flight-booking-detail-info {
    padding-top: 15px
}

.flight-booking-detail-info .table {
    color: #4f4b8b
}

.flight-booking-detail-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    background: rgba(113, 103, 255, .1);
    border-radius: 0 0 5px 0;
    left: 0;
    bottom: 0;
    padding: 8px 18px;
    border-radius: 7px
}

.flight-detail-price-amount {
    color: var(--black-color);
    font-weight: 600;
    font-size: 18px
}

.flight-booking-policy ul li {
    font-size: 14px;
    margin: 6.1px 0;
    color: #4f4b8b
}

.flight-grid .flight-booking-wrapper {
    flex-direction: column
}

.flight-grid .flight-booking-item .flight-booking-content {
    justify-content: space-between
}

.flight-grid .flight-booking-info {
    width: 100%
}

.flight-grid .flight-booking-item .flight-booking-price {
    border-left: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: unset;
    width: 100%;
    margin-top: 30px
}

.flight-grid .flight-booking-item .price-info {
    margin-bottom: 0
}

.flight-grid .flight-booking-airline {
    flex-direction: column
}

.flight-grid .flight-booking-detail-left .flight-booking-airline {
    flex-direction: row
}

.flight-grid .flight-booking-item .flight-airline-img {
    width: 140px
}

.flight-grid .flight-booking-detail-info .flight-airline-img {
    width: 80px
}

.flight-grid .flight-booking-item .flight-airline-img img {
    width: 100%
}

.flight-grid .flight-booking-item .flight-booking-content {
    flex-direction: column;
    gap: 20px
}

.flight-grid .flight-booking-item .flight-booking-return {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.flight-grid .flight-booking-detail-left .flight-booking-detail-info {
    padding-bottom: 30px
}

@media all and (max-width:1199px) {
    .flight-booking-wrapper {
        flex-direction: column
    }

    .flight-booking-item .flight-booking-content {
        justify-content: space-between
    }

    .flight-booking-info {
        width: 100%
    }

    .flight-booking-item .flight-booking-price {
        border-left: 0;
        padding-left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: unset;
        width: 100%;
        margin-top: 30px
    }

    .flight-booking-item .price-info {
        margin-bottom: 0
    }

    .flight-booking-detail-left .flight-booking-detail-info {
        padding-bottom: 30px
    }
}

@media all and (max-width:767px) {
    .flight-booking-item .flight-airline-img {
        width: 140px
    }

    .flight-booking-detail-info .flight-booking-airline {
        flex-direction: row
    }

    .flight-booking-detail-info .flight-airline-img {
        width: 80px
    }

    .flight-booking-item .flight-airline-img img {
        width: 100%
    }

    .flight-booking-item .flight-booking-content {
        flex-direction: column;
        gap: 20px
    }

    .flight-booking-item .flight-booking-time {
        gap: 15px
    }

    .flight-booking-item .flight-stop-number {
        font-size: 13px
    }

    .flight-booking-item .flight-stop-arrow {
        width: 100px
    }

    .flight-booking-item .start-time-icon {
        font-size: 20px
    }

    .flight-booking-item .flight-booking-time .start-time-text,
    .flight-booking-item .flight-booking-time .end-time-text {
        font-size: 15px
    }

    .flight-booking-item .flight-destination {
        font-size: 12px
    }

    .flight-booking-item .flight-booking-return {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, .05)
    }
}

.cart-area thead tr {
    background: var(--main-color);
    color: #fff
}

.cart-area thead tr th {
    text-transform: uppercase;
    font-weight: 500
}

.cart-area thead tr th,
.cart-area thead tr td {
    white-space: nowrap;
    vertical-align: middle
}

.cart-area tr th,
.cart-area tr td {
    vertical-align: middle
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px
}

.cart-product-content {
    flex: 1;
    white-space: nowrap
}

.cart-product-title {
    font-size: 18px;
    font-weight: 500;
    color: #4f4b8b
}

.cart-product-title:hover {
    color: var(--main-color)
}

.cart-img {
    width: 120px;
    height: 120px
}

.cart-img img {
    width: 100%;
    border-radius: 8px
}

.cart-product-info span span {
    color: #4f4b8b;
    font-weight: 500
}

.cart-area tr td {
    color: #4f4b8b;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
    border-top: none;
    position: relative;
    padding: 20px 10px;
    font-size: 16px
}

.cart-qty {
    width: 150px
}

.cart-qty button {
    color: #4f4b8b;
    border: 0;
    border-radius: 5px;
    padding: 4px 13px
}

.cart-qty input {
    width: 50px;
    padding: 4px 13px;
    border-radius: 8px;
    border: none;
    background: #efefef;
    text-align: center
}

.cart-remove {
    width: 45px;
    height: 45px;
    font-size: 20px;
    text-align: center
}

.cart-remove:hover {
    color: #f96768
}

.cart-footer {
    margin-top: 40px
}

.cart-coupon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    position: relative
}

.cart-coupon .form-control {
    box-shadow: none;
    padding: 15px;
    border-radius: 10px
}

.cart-coupon .form-control:focus {
    border-color: #f96768
}

.coupon-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 8px 14px;
    color: #fff;
    border: none;
    background: var(--black-color);
    border-radius: 10px;
    transition: all .5s ease-in-out
}

.coupon-btn:hover {
    background: var(--main-color)
}

.cart-summary li {
    margin-bottom: 10px;
    width: 100%
}

.cart-summary li span {
    float: right
}

.cart-summary li strong {
    color: #13275b
}

.cart-total {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.cart-total span {
    font-weight: 700;
    color: #fe4b7b
}

.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-widget-title i{
 color: var(--main-color);
 padding: 4px;
}

.booking-form .form-group {
    margin-bottom: 20px
}

.booking-form .form-group label {
    margin-bottom: 5px;
    color: #4f4b8b;
    font-size: 15px;
    font-weight: 500
}

.booking-form .form-group .form-control {
    padding: 15px 18px 15px 45px;
    border-radius: 10px;
    box-shadow: none;
    color: #4f4b8b
}

.booking-form .form-group .nice-select {
    width: 100%;
    height: 56px;
    line-height: 52px;
    padding-left: 45px;
    border-radius: 10px;
    font-size: 16px;
    color: #4f4b8b;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-form .form-group .nice-select:focus,
.booking-form .form-group .form-control:focus {
    border-color: var(--main-color)
}

.booking-form .form-group .nice-select:after {
    width: 9px;
    height: 9px;
    right: 20px;
    margin-top: -7px
}

.booking-form .form-group .nice-select .list {
    width: 100%;
    border: none;
    max-height: 250px;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.booking-form .form-group-icon {
    position: relative
}

.booking-form .form-group-icon i {
    position: absolute;
    left: 18px;
    top: 20px
}

.booking-summary {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.booking-property-img img {
    border-radius: 10px
}

.booking-property-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px
}

.booking-property-title h5 {
    margin-bottom: 5px;
    font-size: 20px
}

.booking-property-title p {
    margin-bottom: 0;
    font-size: 15px
}

.booking-property-title p i {
    color: var(--main-color);
    margin-right: 5px
}

.book-edit-btn {
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    background: var(--main-color);
    border-radius: 8px;
    color: #fff
}

.book-edit-btn:hover {
    background: var(--black-color);
    color: #fff
}

.booking-property-rate {
    font-size: 15px
}

.booking-property-rate .badge {
    background: #ffa903;
    margin-right: 5px
}

.rate-text {
    color: #646a9b
}

.rate-type {
    color: var(--main-color)
}

.booking-info-summary {
    margin-top: 25px
}

.booking-info-summary h5 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee
}

.booking-info-summary li {
    font-weight: 500;
    color: #4f4b8b;
    margin-bottom: 12px
}

.booking-info-summary li span {
    float: right;
    font-weight: 400;
    color: #757f95
}

.booking-order-info h5 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee
}

.booking-order-info {
    margin-top: 30px
}

.booking-order-info span {
    font-weight: 400;
    color: #757f95
}

.booking-order-info li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #4f4b8b
}

.order-total {
    padding-top: 10px;
    border-top: 1px solid #eee
}

.order-total span {
    font-weight: 700;
    color: #f96768
}

.booking-payment-area .nav-link {
    background: 0 0 !important;
    border: 2px solid rgba(0, 0, 0, .05);
    text-align: center;
    border-radius: 12px;
    margin-right: 15px;
    margin-bottom: 20px;
    position: relative
}

.booking-payment-area .nav-link::before {
    content: "\f058";
    position: absolute;
    font-family: "font awesome 6 pro";
    font-weight: 700;
    font-size: 20px;
    color: var(--main-color);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    left: 7px;
    top: 0;
    transition: all .3s ease-in-out
}

.booking-payment-area .nav-link.active::before {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.booking-payment-area .nav-link span {
    color: #4f4b8b
}

.payment-card-img {
    padding-top: 15px;
    margin-bottom: 13px
}

.payment-card-img img {
    width: 30px
}

.booking-payment-img img {
    width: 130px
}

.booking-payment-area .nav-link.active {
    border-color: var(--main-color)
}

.booking-confirm-content {
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.booking-confirm-icon i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #23bcb9;
    color: #fff;
    font-size: 35px;
    border-radius: 50px;
    text-align: center
}

.booking-confirm-content h3 {
    margin-top: 20px
}

.booking-confirm-content p {
    margin: 15px 0
}

.booking-confirm-content .theme-btn {
    margin-top: 15px
}

.booking-confirm .booking-summary {
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.booking-confirm .booking-summary-content {
    padding: 80px 0
}

.booking-confirm .booking-summary-list {
    text-align: left
}

.booking-confirm .booking-summary-list .text-success {
    color: #23bcb9 !important
}

.booking-confirm .booking-summary-list h6 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.booking-confirm .booking-summary-list li span {
    float: right
}

.cancel-booking-note p {
    font-weight: 500
}

.booking-confirm .theme-btn.cancel-booking {
    background: var(--black-color);
    margin-left: 15px
}

.about-area {
    position: relative;
    display: block
}

.about-left {
    position: relative;
    margin: 0 40px 0 20px
}

.about-img img {
    border-radius: 15px
}

.about-img::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    border: 8px solid var(--main-color);
    border-radius: 0 0 0 20px;
    left: -20px;
    bottom: -20px;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: -1
}

.about-shape {
    position: absolute;
    right: -20px;
    bottom: -20px;
    z-index: -1
}

.about-experience {
    background: var(--main-color);
    position: absolute;
    border-radius: 15px 15px 0 0;
    left: 50px;
    bottom: 0;
    padding: 20px
}

.about-experience h1 {
    font-weight: 700;
    font-size: 45px;
    color: #fff
}

.about-experience .about-experience-text {
    color: #fff;
    font-weight: 500
}

.about-right {
    position: relative;
    display: block
}

.about-list-wrapper {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 35px
}

.about-list {
    position: relative;
    display: block
}

.about-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px
}

.about-list li .about-icon {
    position: relative;
    display: flex;
    align-items: center
}

.about-list li .about-icon span {
    font-size: 20px;
    color: var(--main-color)
}

.about-bottom {
    display: flex;
    align-items: center;
    gap: 25px
}

.about-call {
    display: flex;
    align-items: center;
    gap: 10px
}

.about-call-icon {
    width: 55px;
    height: 55px;
    font-size: 25px;
    border-radius: 50px;
    background: #4f4b8b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.about-call-content span {
    font-weight: 500;
    color: #4f4b8b
}

.about-call-number {
    font-size: 22px
}

.about-call-number a {
    color: var(--main-color)
}

@media all and (max-width:991px) {
    .about-left {
        margin-bottom: 60px
    }

    .about-experience {
        bottom: -20px
    }
}

@media all and (max-width:768px) {
    .about-bottom {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column
    }
}

.service-area {
    position: relative;
    display: block;
    overflow: hidden
}

.service-item {
    position: relative;
    padding: 30px 15px;
    margin-bottom: 25px;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    z-index: 1
}

.service-content {
    position: relative
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: var(--main-color);
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
    position: relative;
    transition: all .5s ease-in-out
}

.service-icon i {
    color: #fff;
    font-size: 40px;
    line-height: 1
}

.service-icon img {
    width: 70px
}

.service-arrow {
    margin-top: 25px
}

.service-title a {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4f4b8b
}

.service-title a:hover {
    color: var(--main-color)
}

.service-arrow a {
    width: 50px;
    height: 50px;
    line-height: 43px;
    border-radius: 50px;
    border: 3px solid var(--main-color);
    color: var(--main-color);
    font-size: 20px;
    text-align: center;
    position: relative;
    transition: all .5s ease-in-out;
    z-index: 1
}

.service-item:hover .service-arrow a {
    background: var(--main-color)
}

.service-item .service-arrow a i {
    transition: all .5s ease-in-out
}

.service-item:hover .service-arrow a i {
    color: #fff
}

.service-single-wrapper .widget-title {
    font-weight: 600
}

.service-single-list i {
    color: var(--main-color);
    margin-right: 10px
}

.service-download a {
    border: 2px solid var(--main-color);
    padding: 10px 20px;
    color: #4f4b8b;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: all .5s ease-in-out
}

.service-download a i {
    margin-right: 10px
}

.service-download a:hover {
    background-color: var(--main-color);
    color: #fff
}

.service-details h3 {
    color: #4f4b8b;
    font-weight: 600
}

.service-details img {
    border-radius: 15px
}

.feature-area {
    position: relative
}

.feature-item {
    padding: 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    transition: all .5s ease-in-out
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--main-color);
    font-size: 40px;
    color: #fff;
    margin: 0 auto 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.feature-icon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px dashed var(--main-color)
}

.feature-title {
    color: #4f4b8b;
    margin-bottom: 10px
}

@media all and (max-width:991px) {
    .feature-item {
        margin-bottom: 25px
    }
}

.video-content {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 0
}

.video-content::before {
    content: "";
    position: absolute;
    background: rgba(13, 35, 62, .5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    height: 450px;
    z-index: 100
}

.video-area .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.video-2 .video-content {
    border-radius: 12px;
    background-attachment: unset
}

.video-2 .video-content::before {
    border-radius: 12px
}

.video-2 .video-wrapper {
    height: 550px
}

@media all and (max-width:767px) {
    .video-wrapper {
        height: 250px
    }

    .video-wrapper h1 {
        font-size: 28px;
        margin-top: 25px
    }
}

.process-single {
    position: relative
}

.process-single .icon {
    height: 90px;
    width: 90px;
    line-height: 80px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    font-size: 37px;
    color: #fff;
    background: var(--main-color);
    padding: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 24px rgb(0 0 0/10%)
}

.process-single .icon::before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px dashed var(--main-color)
}

.process-single .icon img {
    border-radius: 50%
}

.process-single span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    background: var(--black-color);
    line-height: 35px;
    color: #fff;
    left: -8px;
    top: -13px;
    font-weight: 600;
    border-radius: 50px
}

.process-single h4 {
    margin-bottom: 10px;
    font-weight: 700
}

.process-single::before {
    content: "";
    position: absolute;
    width: 150px;
    border-top: 2px dashed rgba(0, 0, 0, .15);
    right: -170px;
    top: 50px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .process-single::before {
        display: none
    }
}

@media(max-width:767px) {
    .process-single::before {
        display: none
    }
}

.process-area .col-lg-3:last-child .process-single::before {
    display: none
}

.testimonial-area {
    position: relative;

 
}
.testimonial-area::before {
    content: " ";
    position: absolute;
    width:100%;
height: 100% ;
top:0;
left:0;
   background-image: url(../img/webimages/3.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: -1;
    opacity: 0.4;
}
.testimonial-area .site-heading {
    padding-right: 40px;
    margin-bottom: 0
}
p {
    color: var(--paragraph-color);
}
.testimonial-single {
    margin-top: 30px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 25px;
    position: relative
}

.testimonial-quote p {
    color: #4f4b8b
}

.testimonial-author-info {
    margin: 40px 0 5px
}

.testimonial-author-img {
    position: absolute;
    width: 90px;
    padding: 5px;
    border-radius: 50%;
    border: 4px solid #fff;
    left: 50%;
    top: -30px;
    transform: translateX(-50%)
}

.testimonial-author-img img {
    border-radius: 50%
}

.testimonial-author-info h4 {
    font-size: 22px;
    color: #4f4b8b
}

.testimonial-author-info p {
    color: var(--main-color);
    font-weight: 500
}

.testimonial-quote-icon {
    position: absolute;
    right: 15px;
    top: 35px;
    width: 120px;
    opacity: .1
}

.testimonial-rate {
    color: var(--main-color);
    margin-top: 10px
}

.testimonial-slider.owl-theme .owl-nav {
    margin-top: 0
}

.testimonial-slider.owl-theme .owl-nav button {
    color: var(--white-color);
    font-size: 20px;
    margin: 0;
    margin-top: -10px;
    padding: 0;
    background: var(--main-color);
    display: inline-block;
    cursor: pointer;
    height: 45px;
    width: 45px;
    border-radius: 0px;
    line-height: 45px;
    text-align: center;
    box-shadow: 0 3px 24px rgb(0 0 0/10%);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .5s ease-in-out
}

.testimonial-slider.owl-theme .owl-nav button:hover {
    background: var(--black-color-opacity);
    color: #fff
}

.testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -25px
}

.testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -25px
}

.testimonial-area .owl-dots {
    text-align: center
}

.testimonial-area .owl-dots .owl-dot span {
    background: 0 0;
    margin: 5px;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    width: 12px;
    height: 12px;
    display: inline-block;
    transition: all .5s ease-in-out
}

.testimonial-area .owl-dots .owl-dot.active span {
    background: var(--main-color)
}

@media all and (max-width:991px) {
    .testimonial-area .site-heading {
        margin-bottom: 50px
    }
}

@media all and (max-width:767px) {
    .testimonial-slider.owl-theme .owl-nav {
        display: block
    }
}
/* start second banner */
.counter-area {
    padding: 50px 20px;
    position: relative;
    background: var(--black-color);
    z-index: 1;

}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    position: relative;
    z-index: 1
}

.counter-box .icon {
    position: relative;
    font-size: 65px;
    width: 80px;
    height: 80px;
    line-height: 78px;
    text-align: center;
    background: transparent;
    display: inline-block;
    color: var(--main-color)
}

.counter-box .icon img {
    width: 65px
}

.counter-box .counter-number {
    display: flex;
    align-items: center
}

.counter-box .counter-sign {
    color: var(--secondary-color);
    font-size: 40px;
    line-height: 0;
    margin-left: 2px
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--secondary-color);
    font-size: 50px;
    font-weight: 600
}

.counter-box .title {
    color: var(--paragraph-color);
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize
}

@media all and (max-width:991px) {
    .counter-area .counter-box {
        margin: 40px 0;
        justify-content: flex-start
    }
}

.cta-area {
    position: relative
}

.cta-wrapper {
    position: relative;
    background-image: url(../img/cta/01.jpg);
    background-position: center;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 15px;
    z-index: 1
}

.cta-wrapper::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(13, 35, 62, .7);
    border-radius: 15px;
    left: 0;
    top: 0;
    z-index: -1
}

.cta-text h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px
}

.cta-text span {
    color: var(--main-color)
}

.cta-text p {
    color: #fff
}

.gallery-item {
    position: relative;
    width: 100%;
    margin-bottom: 25px
}

.gallery-img {
    height: 100%
}

.gallery-img img {
    width: 100%;
    border-radius: 12px
}

.gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.gallery-content::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--main-color);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.gallery-content:hover::before {
    opacity: .9;
    visibility: visible
}

.gallery-link {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    font-size: 25px;
    color: var(--main-color);
    margin-top: 50px
}

.gallery-link::before {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    border: 2px dashed #fff;
    border-radius: 50px
}

.gallery-link:hover {
    color: var(--main-color)
}

.gallery-content:hover .gallery-link {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.mission-img {
    position: relative
}

.mission-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.mission-img img {
    border-radius: 50%;
    box-shadow: 0 0 30px 20px rgb(0 0 0/8%)
}

.mission-img .mission-img-1 {
    width: 380px
}

.mission-img .mission-img-2 {
    position: absolute;
    bottom: -50px;
    right: -40px;
    border-radius: 100%;
    width: 190px;
    height: 190px;
    border: 8px solid #fff
}

.mission-shape {
    position: absolute;
    right: 90px;
    top: 0;
    z-index: -1
}

@media all and (max-width:991px) {
    .mission-right {
        margin-top: 100px
    }
}

@media all and (max-width:767px) {
    .mission-shape {
        right: 0
    }

    .mission-img .mission-img-2 {
        bottom: -70px;
        right: -10px
    }
}

.career-item {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.job-meta .badge {
    background: var(--black-color);
    border-radius: 50px;
    padding: 10px 20px
}

.job-time {
    color: var(--main-color)
}

.job-time i {
    margin-right: 5px
}

.job-info-list {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    color: #4f4b8b
}

.job-info-list li span {
    margin-right: 8px
}

.job-content h3 {
    font-size: 25px;
    margin: 10px 0;
    color: #4f4b8b
}

.job-btn {
    margin-top: 30px;
    border: 2px solid #4f4b8b;
    color: #4f4b8b;
    padding: 6px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all .5s ease-in-out
}

.job-btn:hover {
    background: #4f4b8b;
    color: #fff
}

.job-btn i {
    margin-left: 5px
}

.career-promo-single {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.career-promo-single span {
    color: var(--main-color);
    font-size: 35px;
    margin-bottom: 20px
}

@media all and (max-width:767px) {
    .job-meta {
        flex-direction: column-reverse;
        align-items: flex-start
    }

    .job-info-list {
        flex-direction: column;
        align-items: flex-start
    }

    .job-time {
        margin-top: 20px
    }
}

.job-single-img img {
    border-radius: 10px;
    margin-bottom: 10px
}

.job-single-list li {
    margin-bottom: 14px
}

.job-single-list li i {
    margin-right: 5px;
    color: var(--main-color);
    font-size: 12px
}

.job-overview-list li {
    position: relative;
    display: flex;
    font-size: 16px;
    margin-bottom: 20px
}

.job-overview-list li i {
    margin-right: 15px;
    font-size: 22px;
    color: var(--main-color);
    margin-top: 6px
}

.overview-item h6 {
    font-size: 18px
}

@media all and (max-width:991px) {
    .job-single-info {
        margin-top: 40px
    }
}

.blog-item {
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 15px;
    transition: all .5s ease-in-out
}

.blog-item-img {
    overflow: hidden;
    border-radius: 15px
}

.blog-item-img img {
    border-radius: 15px
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1)
}

.blog-item-meta ul {
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e8eb
}

.blog-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    color: #4f4b8b
}

.blog-item-meta ul li i {
    margin-right: 5px;
    color: var(--main-color)
}

.blog-item-meta a:hover {
    color: var(--main-color)
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize
}

.blog-item-info p {
    margin-bottom: 16px
}

.blog-item-info h4 a {
    color: #4f4b8b
}

.blog-item-info h4 a:hover {
    color: var(--main-color)
}

.blog-thumb-img {
    margin-bottom: 20px
}

.blog-single-content img {
    border-radius: 15px
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.blog-meta .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px
}

.blog-meta .blog-meta-left ul li {
    font-weight: 500
}

.blog-meta i {
    margin-right: 5px;
    color: var(--main-color)
}

.blog-meta a {
    color: #66788a;
    font-weight: 500
}

.blog-meta a:hover {
    color: var(--main-color)
}

.blog-details-title {
    font-size: 34px;
    color: #4f4b8b
}

.blockqoute {
    background: #f5f7fc;
    border-left: 5px solid var(--main-color);
    padding: 30px;
    font-size: 17px;
    font-style: italic;
    margin: 20px 0;
    border-radius: 0
}

.blockqoute-author {
    margin-top: 20px;
    padding-left: 60px;
    position: relative;
    color: #4f4b8b
}

.blockqoute-author::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background: var(--main-color);
    left: 0;
    top: 10px
}

.blog-details-tags {
    display: flex;
    align-items: center;
    gap: 20px
}

.blog-details-tags h5 {
    color: #4f4b8b;
    font-weight: 700
}

.blog-details-tags ul {
    display: flex;
    align-items: center;
    gap: 15px
}

.blog-details-tags ul a {
    background: #f5f7fc;
    color: #4f4b8b;
    padding: 6px 18px;
    border-radius: 8px;
    transition: all .5s ease-in-out
}

.blog-details-tags ul a:hover {
    background: var(--main-color);
    color: #fff
}

.blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: #f5f7fc;
    border-radius: 15px;
    margin: 50px 0;
    padding: 20px
}

.blog-author-img {
    width: 320px;
    position: relative
}

.blog-author-img::before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%
}

.blog-author-img img {
    border-radius: 15px
}

.author-name {
    font-size: 22px;
    color: var(--main-color);
    margin: 8px 0
}

.author-info {
    padding: 0 20px 0 30px
}

.author-social {
    margin-top: 10px
}

.author-social a {
    width: 35px;
    height: 35px;
    line-height: 32px;
    text-align: center;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    margin-right: 5px;
    color: var(--main-color);
    transition: all .5s ease-in-out
}

.author-social a:hover {
    color: #fff;
    background: var(--main-color)
}

.blog-comments {
    margin-bottom: 50px
}

.blog-comments h3 {
    color: #4f4b8b;
    font-weight: 600
}

.blog-comments-wrapper {
    margin: 30px 0
}

.blog-comments-single {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin-top: 50px
}

.blog-comments-img {
    margin-top: 3px
}

.blog-comments-single img {
    border-radius: 50%;
    width: 120px
}

.blog-comments-content {
    padding: 0 0 0 20px
}

.blog-comments-content span {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500
}

.blog-comments-content a {
    font-weight: 600;
    margin-top: 5px;
    color: var(--main-color)
}

.blog-comments-content a:hover {
    color: #4f4b8b
}

.blog-comments-content h5 {
    color: #4f4b8b;
    font-weight: 700;
    font-size: 20px
}

.blog-comments-reply {
    margin-left: 50px
}

.blog-comments-form {
    padding: 30px;
    margin-top: 50px;
    border-radius: 15px;
    background: #f5f7fc
}

.blog-comments-form h3 {
    margin-bottom: 20px
}

.blog-comments-form .form-group {
    margin-bottom: 20px
}

.blog-comments-form .form-control {
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: none;
    transition: all .5s ease-in-out
}

.blog-comments-form .form-control:focus {
    border-color: var(--main-color)
}

@media all and (max-width:767px) {
    .blog-meta {
        flex-direction: column;
        font-size: 15px
    }

    .blog-meta .blog-meta-left ul {
        gap: 10px
    }

    .blog-details-tags {
        flex-direction: column;
        align-items: flex-start
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px 0 0
    }

    .blog-comments-single {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
        margin-bottom: 30px;
        border-radius: 10px
    }

    .blog-comments-img {
        width: 100%
    }

    .blog-comments-content {
        padding: 20px
    }

    .blog-comments-reply {
        margin-left: 0
    }
}

.widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.widget .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 23px;
    color: #4f4b8b
}

.widget .widget-title::before {
    position: absolute;
    content: '';
    width: 15px;
    border-bottom: 3px solid var(--main-color);
    bottom: 0;
    left: 0
}

.widget .widget-title::after {
    position: absolute;
    content: '';
    width: 30px;
    border-bottom: 3px solid var(--main-color);
    bottom: 0;
    left: 22px
}

.widget .blog-search-form .form-control {
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: none
}

.widget .blog-search-form {
    position: relative
}

.widget .blog-search-form .form-control:focus {
    border-color: var(--main-color)
}

.widget .blog-search-form button {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    padding: 8px 18px 6px;
    background: 0 0;
    border: none;
    color: var(--main-color)
}

.widget .category-list a {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid #ced4da;
    transition: all .5s ease-in-out
}

.widget .category-list a:last-child {
    margin-bottom: 0;
    border-bottom: none
}

.widget .category-list a:hover {
    padding-left: 10px;
    color: var(--main-color)
}

.widget .category-list a i {
    margin-right: 5px;
    color: var(--main-color)
}

.widget .category-list a span {
    float: right
}

.widget .recent-post-single {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px
}

.widget .recent-post-img {
    margin-right: 20px
}

.widget .recent-post-img img {
    width: 120px;
    border-radius: 7px
}

.widget .recent-post-bio h6 {
    font-size: 18px
}

.widget .recent-post-bio span {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500
}

.widget .recent-post-bio span i {
    margin-right: 5px
}

.widget .recent-post-bio h6 a:hover {
    color: var(--main-color)
}

.widget .social-share-link a {
    width: 35px;
    height: 35px;
    line-height: 33px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    text-align: center;
    margin-right: 5px;
    border-radius: 50px;
    transition: all .5s ease-in-out
}

.widget .social-share-link a:hover {
    background: var(--main-color);
    color: #fff
}

.widget .tag-list a {
    background: #f5f7fc;
    color: #4f4b8b;
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 8px;
    display: inline-block;
    transition: all .5s ease-in-out
}

.widget .tag-list a:hover {
    background-color: var(--main-color);
    color: #fff
}

.partner-wrapper img {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid rgba(0, 0, 0, .07)
}

.contact-wrapper {
    position: relative
}

.contact-form {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.contact-form-header {
    margin-bottom: 30px
}

.contact-form-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black-color)
}

.contact-form .form-group {
    margin-bottom: 25px
}

.contact-form .form-group .form-control {
    padding: 15px 18px;
    border-radius: 10px;
    box-shadow: none;
    transition: all .5s ease-in-out
}

.contact-form .form-group .form-control:focus {
    border-color: var(--main-color)
}

.contact-map {
    margin-bottom: -9px
}

.contact-map iframe {
    width: 100%;
    height: 450px
}
.contact-content {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 15px;
    padding: 20px 30px;
    position: relative;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
    display: flex; /* Add flex display to align items horizontally */
flex-direction: column;
}



.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.contact-info-icon i {
    font-size: 25px;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px;
    background: var(--main-color);
}

.contact-info h5 {
    font-size: 22px;
    margin-bottom: 5px;
    color:#555;
}

.contact-info p {
    font-weight: 500;
}

@media all and (max-width:768px) {
    .contact-content {
        margin-bottom: 50px
    }
}

.team-area {
    position: relative
}

.team-item {
    margin-bottom: 70px;
    position: relative;
    z-index: 1
}

.team-img {
    border-radius: 10px
}

.team-img img {
    border-radius: 10px
}

.team-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -45px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.team-bio h5 {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: capitalize
}

.team-bio h5 a {
    color: #4f4b8b
}

.team-bio span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize
}

.team-bio h5 a:hover {
    color: var(--main-color)
}

.team-social-btn {
    position: absolute;
    right: 60px;
    top: 65px
}

.team-social-btn li {
    display: inline-block;
    position: absolute;
    bottom: 0;
    transition: .6s;
    list-style-type: none
}

.team-social-btn li i {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--main-color);
    border-radius: 50px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    transition: .6s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.team-social-btn li i:hover {
    background: #4f4b8b;
    color: #fff
}

.team-item li span i {
    opacity: 1;
    visibility: visible
}

.team-item:hover li span i {
    background: #4f4b8b;
    cursor: pointer
}

.team-item:hover .team-social-btn li i {
    opacity: 1;
    visibility: visible
}

.team-social-btn li:nth-child(1) {
    z-index: 1
}

.team-social-btn li:nth-child(2) {
    bottom: 0
}

.team-social-btn li:nth-child(3) {
    bottom: 0
}

.team-social-btn li:nth-child(4) {
    bottom: 0
}

.team-social-btn li:nth-child(5) {
    bottom: 0
}

.team-item:hover li:nth-child(1) {
    z-index: 1
}

.team-item:hover li:nth-child(2) {
    bottom: 48px
}

.team-item:hover li:nth-child(3) {
    bottom: 96px
}

.team-item:hover li:nth-child(4) {
    bottom: 144px
}

.team-item:hover li:nth-child(5) {
    bottom: 192px
}

.team-item:hover li:nth-child(6) {
    bottom: 240px
}

.pricing-item {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    transition: all .9s ease-in-out
}

.pricing-item:hover {
    transform: translateY(-10px)
}

.pricing-content {
    background: rgba(113, 103, 255, .2);
    padding: 20px 30px;
    border-radius: 20px
}

.pricing-content h4 {
    margin-bottom: 10px;
    color: var(--main-color)
}

.pricing-amount {
    color: #4f4b8b;
    font-weight: 700
}

.pricing-content p {
    color: #4f4b8b;
    font-weight: 500
}

.pricing-feature {
    margin-top: 20px
}

.pricing-feature ul {
    margin-top: 35px;
    margin-bottom: 35px
}

.pricing-feature ul li {
    position: relative;
    margin: 10px 0;
    padding-left: 25px
}

.pricing-feature ul li::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid var(--main-color);
    border-radius: 50px;
    left: 0;
    top: 8px
}

.faq-area .accordion-item {
    border: none;
    margin-bottom: 25px;
    background: #fff;
    color: var(--main-color);
    border-radius: 15px !important;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.faq-area .accordion-item span {
    width: 45px;
    height: 45px;
    margin-right: 15px
}

.faq-area .accordion-item i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    background: var(--main-color);
    text-align: center;
    color: #fff
}

.faq-area .accordion-button:not(.collapsed) {
    color: var(--main-color);
    background: 0 0;
    box-shadow: inset 0 -1px 0 rgb(0 0 0/13%)
}

.accordion-button {
    border-radius: 0 !important;
    background: 0 0;
    font-weight: 600;
    font-size: 20px;
    color: #4f4b8b;
    box-shadow: none !important
}

.accordion-button:not(.collapsed) {
    border-bottom: 1px dashed var(--main-color)
}

.accordion-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nIzIxMjUyOSc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBkPSdNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6Jy8+PC9zdmc+)
}

@media all and (max-width:991px) {
    .faq-right {
        margin-top: 50px
    }

    .accordion-button {
        font-size: 16px
    }
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;

    background-size: cover !important;
    position: relative;
  
    z-index: 1;
}
.flightp {
    padding:60px;
}
.hotelp {
    padding-top: 270px;
    padding-bottom: 90px;
}
.visabg{
background-color: #FAF8F7;
padding-top: 170px;
padding-bottom: 0;
}
.overlay1 {
    position: relative;
}
.overlay1::before {
    content: "";
    position: absolute;
    background: rgba(197, 197, 197, 0.3);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.overlay2{
    position: relative;
}
.overlay2::before {
    content: "";
    position: absolute;
    background: rgba(50, 50, 50, 0.1);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1
}
.bottompos{
    background-position: bottom !important;
}
.centerpos{
    background-position: center !important;
}


.site-breadcrumb .breadcrumb-title {
    font-size: 35px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize
}
.sway{
    animation: sway 8s infinite;
    animation-timing-function: ease-in-out;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
}
@keyframes sway {
    0% {
        transform: rotate(8deg);
    }
    
    50% {
        transform: rotate(-8deg);
    }
    100% {
        transform: rotate(8deg);
    }
}
.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize
}

.site-breadcrumb .breadcrumb-menu li a {
    color: #fff;
    transition: all .5s ease-in-out
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\e122';
    font-family: 'font awesome 6 pro';
    right: -18px;
    top: 5px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    font-weight: 700
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none
}

.site-breadcrumb .breadcrumb-menu li a:hover {
    color: var(--main-color)
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: var(--main-color)
}

@media(max-width:991px) {
    .site-breadcrumb {
        padding-top: 260px
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px
}

.pagination .page-link {
    border: none;
    background: #4f4b8b;
    color: #fff;
    margin: 0 10px;
    border-radius: 10px !important;
    width: 40px;
    height: 40px;
    line-height: 28px;
    text-align: center;
    transition: all .5s ease-in-out
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--main-color);
    color: #fff
}

.pagination-showing {
    text-align: center;
    margin-top: 10px;
    color: #4f4b8b
}
/* login */
.login-area{
    position: relative;
    background-color: #c4c4c4;
    z-index: 0;

}
.login-area::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/khakiarrow.svg');
    background-size: cover; /* Adjust the size of the background image */
    background-repeat: no-repeat; /* Prevent tiling of the image */
    background-position: center; /* Center the background image */
    z-index: -1; /* Position behind the content */
    opacity: 0.5;
 
}
.login-form {
    padding: 0px;
 
    border-radius: 25px;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.login-form .login-header {
    text-align: center;

    background-color: var(--secondary-color);
    padding: 20px 30px;
}

.login-form .login-header img {
    width: 200px;

}

.login-form .login-header h3 {
    color: var(--main-color);
    margin-bottom: 5px;
    font-weight: 800
}

.login-form .login-header p {
    font-size: 20px;

}
.loginbody {
    background-color: var(--black-color);
    padding: 20px 30px;
}
.login-form .login-footer {
    margin-top: 25px
}

.login-form .login-footer p {
    text-align: center
}

.login-form .login-footer a {
    color: var(--main-color);
    transition: .5s
}

.login-form .login-footer a:hover {
    color: var(--main-color)
}

.login-form .form-group {
    margin-bottom: 15px
}

.login-form .form-group-icon {
    position: relative;
   
}

.login-form .form-group i {
    position: absolute;
    top: 17px;
    left: 18px
}

.login-form label {
    color: #fff;
    margin-bottom: 5px
}

.login-form .form-group .form-control {
    border: 0;
    border-bottom: 2px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    border-radius: 10px;
    padding: 12px 18px 12px 47px;
    box-shadow: none;
    color: #fff;
    transition: .5s;
    background-color: #01024A;
}

.login-form .form-group .form-control::placeholder {
    color: white; /* Change the placeholder text color */
    opacity: 0.8;   /* Ensure opacity is set for the placeholder */
}

.login-form .form-check-input {
    box-shadow: none
}

.login-form .forgot-pass {
    color: var(--main-color);
    transition: .5s
}

.login-form .forgot-pass:hover {
    color: var(--main-color)
}

.login-form .theme-btn {
    width: 100%
}

.login-form .theme-btn::before {
    width: 480px;
    height: 480px
}

.login-form .theme-btn i {
    margin-right: 5px
}

.login-form .form-check-input {
    margin-top: 6.3px
}

.login-form .form-check-label a {
    color: var(--main-color);
    transition: .5s
}

.login-form .form-check-label a:hover {
    color: var(--main-color)
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color)
}

.login-divider {
    position: relative;
    margin: 15px 0;
    text-align: center
}

.login-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #e8e8e8
}

.login-divider span {
    position: relative;
    background: #fff;
    padding: 0 20px
}

.social-login a {
    display: block;
    margin-bottom: 15px;
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center
}

.social-login a i {
    float: left;
    margin-top: 6px
}

.btn-fb {
    border: 1px solid #506dab;
    color: #506dab !important
}

.btn-fb:hover {
    background: #506dab;
    color: #fff !important
}

.btn-gl {
    border: 1px solid #dd4b39;
    color: #dd4b39 !important
}

.btn-gl:hover {
    background: #dd4b39;
    color: #fff !important
}

@media only screen and (max-width:991px) {
    .login-form {
        padding: 40px 20px
    }
}

.header-account img {
    width: 60px;
    border-radius: 50%;
    padding: 3px;
    border: 3px solid rgba(0, 0, 0, .1);
    cursor: pointer
}

.header-account .dropdown-menu {
    border: none;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.header-account .dropdown-menu li a i {
    margin-right: 5px
}

.header-account .dropdown-menu .dropdown-item {
    padding: 8px 20px
}

.header-account .dropdown-menu .dropdown-item:hover {
    background: 0 0;
    color: var(--main-color);
    padding-left: 25px
}

.mobile-menu-right {
    gap: 20px
}

.mobile-menu-right .header-account img {
    width: 30px;
    padding: 0;
    border: none
}

.user-profile-sidebar {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.user-profile-sidebar-top {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.user-profile-img {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50px
}

.user-profile-img img {
    border-radius: 50%
}

.user-profile-sidebar-top p {
    color: #4f4b8b
}

.profile-img-file {
    display: none
}

.user-profile-img button {
    position: absolute;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: none;
    right: 0;
    bottom: 0
}

.user-profile-sidebar-list li {
    margin: 5px 0
}

.user-profile-sidebar-list li a {
    color: #4f4b8b;
    padding: 6px 6px 6px 15px;
    display: block;
    transition: all .5s ease-in-out
}

.user-profile-sidebar-list li a:hover {
    color: var(--main-color)
}

.user-profile-sidebar-list li a i {
    margin-right: 5px;
    color: var(--main-color)
}

.user-profile-sidebar-list .active i {
    color: #fff
}

.user-profile-sidebar-list .active {
    background: var(--main-color);
    color: #fff !important;
    border-radius: 8px
}

.user-profile-sidebar-list li .badge {
    float: right;
    margin-top: 5px;
    background: #f96768
}

.profile-menu-angle {
    float: right;
    margin-top: 6px
}

.profile-menu-list {
    margin-left: 40px
}

.profile-menu-list li a {
    position: relative
}

.profile-menu-list li a::before {
    content: "\e122";
    position: absolute;
    font-family: "font awesome 6 pro";
    left: 0;
    top: 13px;
    color: var(--main-color);
    font-size: 8px;
    font-weight: 700
}

.user-profile-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.user-profile-card-title {
    color: #4f4b8b;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.user-profile-card .text-success {
    color: var(--main-color) !important
}

.user-profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.user-profile-card-header .user-profile-card-title {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.user-profile-card-header-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.user-profile-search .form-group {
    position: relative
}

.user-profile-search .form-control {
    padding: 10px 12px 10px 35px;
    box-shadow: none;
    border-radius: 10px
}

.user-profile-search .form-control:focus {
    border-color: var(--main-color)
}

.user-profile-search i {
    position: absolute;
    left: 12px;
    top: 16px
}

.user-profile-card-header .theme-btn {
    padding: 8px 15px
}

.profile-info-list li {
    margin: 12px 0;
    font-weight: 700;
    color: #4f4b8b
}

.profile-info-list li span {
    float: right;
    font-weight: 400
}

.user-profile-form .form-group {
    margin-bottom: 20px
}

.user-profile-form .form-group label {
    color: #4f4b8b;
    margin-bottom: 5px
}

.user-profile-form .form-control {
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: none
}

.user-profile-form .form-control:focus {
    border-color: var(--main-color)
}

.user-profile-form .theme-btn {
    width: unset
}

.dashboard-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/3%)
}

.dashboard-widget-info span {
    font-weight: 500
}

.dashboard-widget-info h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px
}

.dashboard-widget-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 20px
}

.dashboard-widget-color-1 {
    background: rgba(113, 103, 255, .2);
    color: var(--main-color)
}

.dashboard-widget-color-1 h1 {
    color: var(--main-color)
}

.dashboard-widget-color-1 .dashboard-widget-icon {
    background: var(--main-color);
    color: #fff
}

.dashboard-widget-color-2 {
    background: rgba(0, 230, 130, .2);
    color: #09ad95
}

.dashboard-widget-color-2 h1 {
    color: #09ad95
}

.dashboard-widget-color-2 .dashboard-widget-icon {
    background: #09ad95;
    color: #fff
}

.dashboard-widget-color-3 {
    background: rgba(249, 103, 104, .2);
    color: #f96768
}

.dashboard-widget-color-3 h1 {
    color: #f96768
}

.dashboard-widget-color-3 .dashboard-widget-icon {
    background: var(--black-color);
    color: #fff
}

.user-notification-item {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 10px 0
}

.user-notification-item a {
    display: flex;
    gap: 15px
}

.user-notification-item a:hover {
    color: #4f4b8b
}

.user-notification-item:first-child {
    padding-top: 0
}

.user-notification-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.user-notification-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    margin-top: 5px;
    text-align: center
}

.user-notification-info {
    flex: 1
}

.user-notification-info p {
    font-size: 15px
}

.user-notification-info span {
    font-size: 14px
}

.table-property-info a {
    display: flex;
    align-items: center;
    gap: 10px
}

.table-property-info h6 {
    transition: all .5s ease-in-out
}

.table-property-info:hover h6 {
    color: var(--main-color)
}

.table-property-info img {
    width: 70px;
    border-radius: 8px
}

.user-profile-card .table>:not(caption)>*>* {
    vertical-align: middle;
    padding: .8rem
}

.user-profile-card .badge {
    border-radius: 50px
}

.user-profile-card .badge-success {
    background: rgba(9, 173, 149, .2);
    color: #09ad95
}

.user-profile-card .badge-warning {
    background: rgba(113, 103, 255, .2);
    color: var(--main-color)
}

.user-profile-card .badge-danger {
    background: rgba(249, 103, 104, .2);
    color: #f96768
}

.user-profile-card .btn {
    border-radius: 8px
}

.user-profile-card .table {
    color: #4f4b8b
}

.table-listing-info a {
    display: flex;
    gap: 10px
}

.user-profile-listing img {
    width: 120px;
    border-radius: 10px
}

.table-listing-content h6 {
    font-size: 18px;
    font-weight: 600
}

.table-listing-content p {
    font-size: 15px;
    color: #4f4b8b
}

.table-listing-content span {
    font-weight: 700;
    color: #4f4b8b
}

.user-profile-listing .bg-success {
    background: var(--main-color) !important
}

.user-profile-listing .table tbody tr td {
    padding: 1.5rem .8rem
}

.add-listing-form .form-group {
    margin-bottom: 15px
}

.add-listing-form .form-group label {
    margin-bottom: 5px;
    color: #4f4b8b;
    font-size: 15px
}

.add-listing-form .form-control {
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: none;
    color: #757f95
}

.add-listing-form .form-control::placeholder {
    color: #757f95
}

.add-listing-form .nice-select {
    width: 100%;
    height: 56px;
    line-height: 55px;
    border-radius: 12px;
    padding-left: 20px;
    font-size: 16px;
    border-color: #ced4da;
    color: var(--main-color);
    margin-bottom: 15px
}

.add-listing-form .form-control:focus,
.add-listing-form .nice-select:focus {
    border-color: var(--main-color)
}

.add-listing-form .nice-select .list {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 50px 0 rgb(32 32 32/15%)
}

.add-listing-form .nice-select .option.focus,
.add-listing-form .nice-select .option.selected.focus,
.add-listing-form .nice-select .option:hover {
    background: #f6f6f6;
    color: var(--main-color);
    border-radius: 8px
}

.add-listing-form .nice-select:after {
    width: 8px;
    height: 8px;
    margin-top: -5px;
    right: 15px
}

.add-listing-form .listing-img-upload {
    width: 100%;
    height: 140px;
    border: 2px dashed rgba(0, 0, 0, .1);
    border-radius: 10px;
    cursor: pointer
}

.add-listing-form .listing-img-file {
    display: none
}

.add-listing-form .listing-img-upload span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%
}

.add-listing-form .listing-img-upload span i {
    margin-right: 5px
}

.add-listing-form .form-check {
    margin-bottom: 15px
}

.add-listing-form .form-check-input {
    margin-top: 6.5px;
    box-shadow: none
}

.add-listing-form .form-check-input:focus {
    border-color: var(--main-color)
}

.add-listing-form .form-check label {
    color: #4f4b8b
}

.add-listing-form .form-group-icon {
    position: relative
}

.add-listing-form .form-group-icon i {
    position: absolute;
    left: 18px;
    top: 20px
}

.add-listing-form .form-group-icon .form-control {
    padding-left: 42px
}

.profile-message-wrapper {
    display: flex
}

.profile-message-inbox {
    max-width: 340px;
    border: 1px solid #edf1f9;
    border-radius: 10px
}

.profile-message-inbox {
    overflow: hidden
}

.message-content {
    padding-left: 30px;
    position: relative;
    overflow: hidden
}

.message-content-info {
    max-height: 750px;
    overflow-y: scroll;
    margin-right: -50px;
    padding-right: 50px
}

.profile-message-inbox,
.message-content {
    flex: 1
}

.profile-message-inbox ul {
    max-height: 950px;
    overflow-y: scroll;
    width: 357px;
    list-style: none;
    padding: 0;
    margin: 0
}

.profile-message-inbox ul li.message-active {
    border-left: 3px solid var(--main-color)
}

.profile-message-inbox ul li {
    border-bottom: 1px solid #edf1f9;
    transition: .2s;
    list-style: none
}

.profile-message-inbox ul li:last-child {
    border-bottom: none
}

.message-by-content h5 {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1
}

.profile-message-inbox ul li a {
    position: relative;
    display: block;
    padding: 30px
}

.profile-message-inbox .message-avatar {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%)
}

.message-avatar img {
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%
}

.message-avatar img {
    width: 50px;
    height: 50px
}

.profile-message-inbox .message-by {
    margin-left: 50px
}

.message-by-content h5 i {
    background: #f98f14;
    padding: 3px 8px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px
}

.message-by-content span {
    font-size: 13px;
    position: absolute;
    top: 25.5px;
    right: 25px;
    float: right;
    color: #888
}

.profile-message-inbox .message-by p {
    height: 26px;
    max-width: 205px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #6b747d;
    line-height: 27px
}

.message-item {
    display: block;
    position: relative;
    margin-bottom: 25px
}

.message-item .message-avatar {
    position: absolute;
    left: 0;
    top: 0
}

.message-item .message-avatar img {
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%
}

.message-item .message-description {
    margin-left: 70px;
    background: #f4f5f7;
    border-radius: 12px;
    padding: 20px;
    position: relative
}

.message-item .message-description::before {
    position: absolute;
    top: 0;
    left: -9px;
    content: "\f0d9";
    font-family: "font awesome 6 pro";
    font-weight: 700;
    font-size: 31px;
    color: #f4f5f7
}

.message-item .message-description p {
    font-size: 15px;
    padding: 0;
    margin: 0;
    line-height: 27px
}

.message-item.me .message-avatar {
    left: auto;
    right: 0;
    position: absolute;
    top: 0
}

.message-item.me .message-description {
    color: var(--main-color);
    background-color: rgba(114, 103, 255, .1);
    margin-left: 0;
    margin-right: 70px;
    border-radius: 12px;
    padding: 20px;
    position: relative
}

.message-item.me .message-description::before {
    content: "\f0da";
    left: auto;
    right: -11px;
    color: #f1f0ff
}

.message-reply {
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 15px
}

.message-reply .form-control {
    padding: 15px 20px;
    box-shadow: none;
    border-radius: 10px
}

.message-reply .form-control:focus {
    border-color: var(--main-color)
}

.message-reply .theme-btn {
    margin-top: 15px
}

.message-status {
    width: 12px;
    height: 12px;
    background: #252629;
    display: flex;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    right: -5px;
    top: 50%
}

.message-status.online {
    background: #09ad95
}

.message-status.offline {
    background: #dd4b39
}

.message-status.busy {
    background: #f6b500
}

.profile-message .header-account img {
    width: 45px
}

@media all and (max-width:991px) {
    .message-by-content span {
        right: 65px
    }

    .message-reply {
        right: 0
    }
}

@media all and (max-width:767px) {
    .table-property-info a {
        display: block
    }

    .table-property-info h6 {
        margin-top: 10px
    }

    .user-profile-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .user-profile-card-header-right {
        flex-direction: column-reverse;
        align-items: flex-start
    }

    .profile-message .profile-message-wrapper {
        flex-direction: column;
        gap: 50px
    }

    .profile-message .user-profile-card-header {
        flex-direction: row;
        align-items: center;
        gap: 20px
    }

    .profile-message .message-content {
        padding-left: 0;
        padding-bottom: 200px
    }

    .message-reply {
        left: 0
    }
}

.coming-soon {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    position: relative
}

.coming-soon .container {
    position: relative
}

.coming-soon:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.coming-soon .newsletter-form {
    position: relative;
    margin-top: 30px
}

.coming-soon .newsletter-form .input-newsletter {
    height: 55px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 25px;
    box-shadow: none
}

.coming-soon .newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    height: auto;
    border: none;
    border-radius: 50px;
    background: var(--main-color);
    display: inline-block;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 500;
    transition: .5s
}

.coming-soon .newsletter-form button:hover {
    background-color: var(--main-color);
    color: #fff
}

.coming-social {
    margin-top: 30px;
    text-align: center
}

.coming-social a {
    color: #fff;
    margin: 5px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50px;
    border: 2px solid #fff;
    display: inline-block;
    transition: .5s
}

.coming-social a:hover {
    background: var(--main-color);
    border-color: var(--main-color)
}

.countdown-wrap {
    margin-top: 30px
}

.countdown-single {
    border: 10px solid var(--main-color);
    background: #fff;
    padding: 15px 20px;
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    box-shadow: 0 3px 24px rgb(0 0 0/10%)
}

.countdown-single h2 {
    color: var(--main-color)
}

.countdown-single h5 {
    color: var(--main-color)
}

.error-wrapper {
    text-align: center
}

.error-wrapper h1 {
    font-size: 250px;
    letter-spacing: 5px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1
}

.error-wrapper h1 span {
    color: #4f4b8b
}

.error-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 10px
}

.error-wrapper img {
    width: 100%
}

.error-wrapper .theme-btn {
    margin-top: 30px
}

@media all and (max-width:767px) {
    .error-wrapper h1 {
        font-size: 160px
    }
}

.terms-content:not(:last-child) {
    margin-bottom: 54px
}

.terms-content:first-child {
    margin-top: -3px
}

.terms-content .terms-list {
    margin-top: 37px
}

.terms-content h3 {
    margin-bottom: 23px;
    position: relative;
    font-weight: 600
}

.terms-content p:not(:last-child) {
    margin-bottom: 26px
}

.terms-list li:not(:last-child) {
    margin-bottom: 16px
}

.footer-area {
  
    position: relative;
    overflow: hidden;
    z-index: 1
}



.footer-widget-box {
    margin-bottom: 20px
}

.footer-widget {
    position: relative;
    z-index: 1
}

.footer-logo img {
    width: 200px;
    margin-bottom: 30px
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(128, 137, 150, .1);

}
.bgmain {
    background-color: var(--main-color);
}
.bgdust {
    background-color:#c4c4c4
}
.copyright .footer-menu {
    margin: 0;
    padding: 0;
    text-align: right
}

.copyright .footer-menu li {
    display: inline-block;
    margin-left: 25px;
    font-size: 16px
}

.copyright .footer-menu li a {
    color: var(--black-color);
    transition: all .5s ease-in-out
}

.copyright .footer-menu li a:hover {
    color: var(--main-color)
}

.copyright .copyright-text {
    color: #333;
    margin-bottom: 0;
    font-size: 16px
}

.copyright .copyright-text a {
    color: var(--black-color);
    font-weight: 500
}

.footer-widget-title {
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 20px;
    z-index: 1
}

.footer-widget-title::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2.5px;
    background-color: var(--black-color-opacity);
    bottom: 0;
    left: 0
}

.footer-widget-title::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 10px;
    height: 2.5px;
    background-color: var(--main-color);
    bottom: 0;
    left: 35px
}



.footer-widget-box p {
    color: #e1e1e1;
    padding-right: 18px;
    margin-bottom: 20px
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end
}

.footer-social li a i {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    transition: all .5s ease-in-out
}

.footer-social li a i:hover {
    background: var(--secondary-color);
    color: #fff
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--paragraph-color);
    font-size: 16px;
    margin-bottom: 15px
}

.footer-contact li a {
    color: var(--paragraph-color);
    -webkit-transition: .3s;
    transition: .3s
}

.footer-contact li i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    margin-right: 15px;
    border-radius: 8px;
    background: var(--main-color);
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff
}

.footer-call {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px
}

.footer-call-icon i {
    background: 0 0 !important;
    font-size: 45px !important;
    color: var(--paragraph-color) !important
}

.footer-call-info h6 {
    color: var(--paragraph-color);
    font-weight: 700
}

.footer-call-info a {
    color: var(--paragraph-color) !important;
    font-size: 20px;
    font-weight: 700
}

@media all and (max-width:1199px) {
    .footer-widget-box {
        margin-bottom: 50px
    }
}

@media all and (max-width:991px) {
    .footer-widget-wrapper {
        padding-bottom: 0
    }

    .copyright .footer-menu {
        float: left;
        margin-top: 20px;
        text-align: left
    }

    .copyright .footer-menu li {
        margin-left: 0;
        margin-right: 15px
    }
}

@media all and (max-width:767px) {
    .footer-widget-wrapper {
        padding-bottom: 0
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px
    }
}

.home-2 .main {
    margin-top: 0
}



.home-2 .navbar {
    background: #fff
}

.home-2 .navbar-toggler-btn-icon {
    color: #4f4b8b
}

.home-2 .hero-single {
    padding-top: 200px
}

.home-2 .search-wrapper {
    margin-top: -150px
}

.home-2 .search-nav {
    margin-bottom: 10px
}

.home-2 .search-nav .nav-link {
    background: #fff
}

.home-2 .search-nav .nav-link.active {
    background: var(--main-color)
}

.home-2 .search-form .form-group {
    background: 0 0;
    border: 1px solid rgba(0, 0, 0, .15)
}

.home-2 .search-form-swap i {
    background: #fff;
    line-height: 38px;
    border: 1px solid rgba(0, 0, 0, .15)
}

.home-2 .search-form .search-btn .theme-btn {
    position: relative;
    box-shadow: none;
    border: none
}

.home-2 .feature-item {
    display: flex;
    text-align: left;
    gap: 15px;
    padding: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.home-2 .feature-icon::before {
    display: none
}

.home-2 .feature-color-1 .feature-icon {
    background: rgba(113, 103, 255, .2);
    border-radius: 20px;
    color: var(--main-color)
}

.home-2 .feature-color-2 .feature-icon {
    background: rgba(40, 213, 167, .2);
    border-radius: 20px;
    color: #28d5a7
}

.home-2 .feature-color-3 .feature-icon {
    background: rgba(249, 103, 104, .2);
    border-radius: 20px;
    color: #f96768
}

.home-2 .feature-info {
    flex: 1
}

.home-2 .footer-area {
    background: #0d233e
}

.home-2 .footer-area::after,
.home-2 .footer-area::before {
    opacity: .04
}

.home-2 .copyright .copyright-text {
    color: #fff
}

.home-2 .footer-social li a i {
    color: #fff
}

.home-2 .footer-list li a {
    color: #fff
}

.home-2 .footer-widget-box p {
    color: #fff
}

.home-2 .footer-contact li {
    color: #fff
}

.home-2 .footer-contact li a {
    color: #fff
}

.home-2 .footer-call-info h6 {
    color: #fff;
    font-weight: 600
}

.home-2 .footer-payment-method h6 {
    color: #fff;
    font-weight: 600
}

.home-2 .footer-call-info a {
    color: #fff !important
}

.home-2 .footer-widget-title {
    color: #fff;
    font-weight: 600
}

.home-2 .footer-contact li i {
    color: #fff !important
}

@media(min-width:992px) {
    .home-2 .navbar .nav-item .nav-link {
        color: #4f4b8b
    }

    .home-2 .navbar .nav-item .nav-link.active,
    .home-2 .navbar .nav-item .nav-link:hover {
        color: var(--main-color)
    }
}

@media(max-width:991px) {
    .home-2 .mt-top1 {
        margin-top: -100px
    }
}

.home-3 .main {
    margin-top: -6rem
}

.home-3 .hero-single {
    padding-top: 280px
}

.home-3 .search-nav {
    margin: 0;
    border-radius: 10px;
    background: 0 0
}

.home-3 .search-nav .nav-item {
    margin: 0
}

.home-3 .search-nav .nav-link {
    border-radius: 15px 15px 0 0;
    margin: 0 10px;
    padding: 12px 20px 8px;
    color: #fff;
    font-size: 17px;
    background: 0 0
}

.home-3 .search-nav .nav-link i {
    color: #fff
}

.home-3 .search-nav .nav-link.active {
    background: #fff;
    color: var(--main-color)
}

.home-3 .search-nav .nav-link.active i {
    color: var(--main-color)
}

.home-3 .search-form .search-btn .theme-btn {
    position: relative;
    box-shadow: none;
    border: none
}

@media all and (max-width:991px) {
    .home-3 .search-nav {
        background: #fff;
        border-radius: 15px;
        padding: 20px
    }

    .home-3 .search-nav .nav-link {
        border-radius: 10px;
        padding: 8px 20px;
        color: #4f4b8b
    }

    .home-3 .search-nav .nav-link i {
        color: #4f4b8b
    }

    .home-3 .search-nav .nav-link.active {
        box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
    }
}



/* header area /////////////////////////*/
.header {
    background: transparent;
    position: relative;
    left: 0px;
    top: 0px;
    right: 0;
    width: 100%;
    transition: all 500ms ease;
    z-index: 999;
  
  }
  .gradient-bg {
    background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  }

.main-menu__call {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 10px;
  }
  
  .main-menu__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--main-color);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__call-icon:hover {
    background-color: var(--black-color-opacity);
    color: var(--main-color);
  }
  
  .main-menu__call-content {
    margin-left: 10px;
  }
  [dir=rtl] .main-menu__call-content {
    margin-right: 10px;
  }
  
  .main-menu__call-sub-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color-opacity);
    line-height: 16px;
    text-align: left;
  }
  
  .main-menu__call-number {
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    margin-top: 6px;
    letter-spacing: 0;
    text-align: left;
  }
  [dir=rtl] .main-menu__call-number{
    text-align: right !important;
  }
  
  .main-menu__call-number a {
    color: #555;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__call-number a:hover {
    color: var(--black-color);
  }
 
  @media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
      margin-right: 22px;
      padding: 20px 10px;
      font-size: 17px;
      font-weight: 500;
      color: var(--black-color);
      text-transform: capitalize;
    }
    .navbar .nav-item:last-child .nav-link {
      margin-right: 0;
    }
    .navbar .nav-item .dropdown-menu {
      display: block;
      opacity: 0;
      visibility: hidden;
      transition: .3s;
      margin-top: 0;
      padding: 8px;
      border: none;
      left: -15px;
      border-radius: 12px;
      background: #fff;
      width: 220px;
      box-shadow: 0 0 50px 0 rgb(32 32 32/15%);
    }
    .navbar .nav-item .dropdown-menu::before {
      content: "\f0d8";
      position: absolute;
      font-family: "font awesome 6 pro";
      color: #fff;
      font-size: 45px;
      font-weight: 700;
      left: 25px;
      top: -40px;
    }
    .navbar .nav-item .dropdown-menu li {
      border-bottom: 1px solid #eee;
    }
    .navbar .nav-item .dropdown-menu li:last-child {
      margin-bottom: 0;
      border-bottom: none;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item {
      font-size: 16px;
      font-weight: 500;
      padding: 10px 0 10px 20px;
      color: #555;
      position: relative;
      text-transform: capitalize;
      transition: all .5s ease-in-out;
      z-index: 1;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
      background: 0 0;
      color: var(--main-color);
      padding-left: 30px;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item::before {
      content: "\f111";
      position: absolute;
      font-family: "font awesome 6 pro";
      left: 12px;
      top: 20.5px;
      color: var(--main-color);
      font-weight: 700;
      font-size: 6px;
      transform: scale(0, 0);
      transition: all .5s ease-in-out;
      z-index: -1;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
      transform: scale(1, 1);
    }
    .navbar .nav-item .nav-link {
      position: relative;
    }
    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
      color: var(--main-color);
    }
    .navbar .nav-item:hover .dropdown-menu {
      transition: .3s;
      opacity: 1;
      visibility: visible;
      top: 100%;
      transform: rotateX(0deg);
    }
    .navbar .dropdown-menu-end {
      right: 0;
      left: auto;
    }
    .navbar .dropdown-menu.fade-down {
      top: 80%;
      transform: rotateX(-75deg);
      transform-origin: 0% 0%;
    }
    .navbar .dropdown-menu.fade-up {
      top: 140%;
    }
    .header-nav-right {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-left: 30px;
    }
    .header-icons {
        display: flex;
        align-items: center;
        justify-content: center; 
        background-color: transparent;
      }
      .header-icons::before {
        content: "";
        height: 24px;
        width: 2px;
        background-color: #666;
        display: inline-block;
        margin-right: 15px;
        opacity: 0.4;
      }
    .header-nav-link {
      position: relative;
      /* width: 55px; */
      height: 55px;
      line-height: 45px;
      color: #009688;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .header-nav-link:hover {
      color: var(--main-color);
    }
    .header-nav-link span {
      font-size: 18px;
      font-weight: 600;
    }
    .header-nav-link::before {
      content: "";
      width: 45px;
      height: 45px;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      transition: all .5s ease-in-out;
    }
    .header-nav-link:hover::before {
      border-color: var(--main-color);
      transition: all .5s ease-in-out;
    }
  }
  
  @media (max-width: 991px) {
    .header-nav-right {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .header .navbar .navbar-toggler .navbar-toggler-btn-icon {
      background: 0 0;
      border: none;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .header .navbar .navbar-toggler .navbar-toggler-btn-icon i {
      color: var(--main-color);
    }
    .header .navbar .navbar-toggler .navbar-toggler-btn-icon:hover i {
      color: var(--main-color);
    }
    .header .navbar .navbar-toggler .navbar-toggler-btn-icon:hover::before {
      border-color: var(--main-color);
    }
  }
  /* Offcanvas styles */
  .offcanvas {
    background: rgba(1, 2, 74, 0.9);
    color: #EEEAD3;
  }
  .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .offcanvas-title {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .offcanvas-body {
    padding: 1.5rem;
  }
  .offcanvas-body .navbar-nav {
    margin-bottom: 1rem;
  }
  .offcanvas-body .nav-link {
    color: #EEEAD3;
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }
  .offcanvas-body .nav-link:hover {
    color: var(--main-color);
  }
  .offcanvas-footer {
    margin-top: 2rem;
    text-align: center;
  }
  .offcanvas-footer a {
    display: block;
    color: #EEEAD3;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  .offcanvas-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  .offcanvas-footer .social-icons a {
    color: #fff;
    font-size: 1.5rem;
  }
  .offcanvas-footer .social-icons a:hover {
    color: var(--main-color);
  }

  /* tours */
  
/* --Holiday Destinations Area-- */
.holiday_left_heading {
    background: #F3F6FD;
    border-radius: 0px;
    padding: 70px 45px;
    margin-top: 30px;
}

.holiday_small_boxed {
    margin-top: 30px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.holiday_small_boxed img {
    width: 100%;
    transition: var(--transition);
}

.holiday_small_boxed:hover img {
    transform: scale(1.1);
}

.holiday_small_boxed:hover .holiday_small_box_content {
    opacity: 1;
}

.holiday_small_box_content {
    background: linear-gradient(359deg, #94D0FD 0%, rgb(217 217 217 / 0%) 70%);
    border-radius: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.holiday_inner_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
}

.rating_outof {
    display: flex;
    align-items: center;
}

.rating_outof i {
    color: #94D0FD;
    font-size: 14px;
}

.rating_outof h5 {
    color: #94D0FD;
    padding-left: 10px;
    font-weight: 300;
}

.holiday_inner_content h3 {
    color: var(--white-color);
    padding: 10px 0;
    font-weight: 400;
}

.holiday_inner_content h4 {
    color: var(--white-color);
    font-weight: 400;
}

.holiday_inner_content p {
    color: var(--white-color);
    padding-top: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
/* tours choose flip cards ==============*/
.choose_des_inner_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
   
 
}

.choose_desti_wrapper:hover .choose_des_inner_wrap {
    transform: rotateY(180deg);
}

.choose_boxed_inner,
.flep_choose_box {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
 
}

.flep_choose_box {
    background-color: var(--black-color);
    transform: rotateY(180deg);
    border-radius: 0px;
    overflow: hidden;
    z-index: 0;
   
}
.flep_choose_box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ctext x='10' y='250' font-family='Arial' font-size='300' fill='none' stroke='%2394D0FD' stroke-width='1'%3EG%3C/text%3E%3C/svg%3E") bottom/contain no-repeat;
 opacity: 0.4;
    z-index: -1;
  
}
.choose_boxed_inner {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    z-index: 2;
    height: 600px;
}

.choose_boxed_inner img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gradient overlay */
.choose_boxed_inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%; /* Adjust the height as needed */
    background: linear-gradient(to top, #94D0FD, rgba(0, 0, 0, 0)); 
    z-index: 1; 
}

.choose_img_text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2; /* Ensure text is above the gradient overlay */
}

.owl-rtl .choose_img_text {
    left: auto;
    right: 30px;
}

.choose_img_text h2 {
    color: var(--white-color);
}

.choose_img_text h3 {
    color: var(--white-color);
    padding-top: 10px;
    font-weight: 400;
}

.flep_choose_box_inner {
    padding: 65px 25px 0px 35px;
}

.flep_choose_box_inner h2 {
    color: white;
    padding-top: 15px;
}

.flep_choose_box_inner h3 {
    color: #fff;
    padding-top: 12px;
    font-weight: 500;
}

.flep_choose_box_inner p {
    color: #ffffffd1;
    padding-top: 14px;
    font-weight: 300;
    line-height: 24px;
}

.flep_choose_box_inner a {
    color: var(--main-color);
    margin-top: 25px;
    border-bottom: 1px solid var(--main-color);
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
}

.choose_desti_wrapper {
    margin-top: 30px;
}
/* TOP Destinations  */


.section_heading_five {
    padding-bottom: 10px;
    position: relative;
}

.section_heading_five h5 {
    color: var(--main-color);
    padding-bottom: 16px;
}

.section_heading_five h2 {
    position: relative;
    padding-bottom: 16px;
    color: var(--black-color);
    line-height: 46px;
}

.section_heading_five h2::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background-color: var(--main-color);
    height: 2px;
    width: 80px;
}
.section_heading_fivertl h2::before {
    right: 0px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background-color: var(--main-color);
    height: 2px;
    width: 80px;
}



.popular_destination_img {
    position: relative;
}

.popular_destination_img img {
    width: 100%;
    height: auto;
}

.popular_destination_card:hover .popular_destination_img img {
    transform: scale(1.1);
}

.popular_destination_img img {
    width: 100%;
    transition: var(--transition);
}

.popular_destination_img {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}



.popular_destination_card {
    position: relative;
}

.popular_destination_text {
    position: absolute;
    bottom: 12px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--black-color-opacity);
    width: 90%;
    margin: auto;
    padding: 18px;
    border-radius: 0px;
    opacity: 0;
    transition: .4s all ease-in-out;
    colo
}

.popular_destination_text h5 {
    line-height: 26px;
    padding-right: 8px;
}

.popular_destination_text h5 a {
    color: var(--main-color);
}

.popular_destination_text h5 a:hover {
    color: var(--main-color);
}

.popular_destination_card:hover .popular_destination_text {
    opacity: 1;
}

.destination_card_two {
    margin-top: 40px;
}

/* TITLE style */

.section_heading_center {
 
    padding-bottom: 30px;
    position: relative; /* Make sure the parent container is positioned */
}

.section_heading_center h2 {
    position: relative;
    padding-bottom: 8px;
    display: inline-block; /* Ensure h2 is inline to align with the arrow */
    margin-bottom: 0; /* Remove bottom margin for better spacing control */
    font-size: 32px;
    color: var(--black-color);
}
.section_heading_center h2::after {
    content: url('../img/toplesskhaki.svg'); /* Replace with the path to your image */
    display: inline-block;
    margin-left: 50px; /* Adjust the space between the text and the image */
    vertical-align: middle; /* Align the image vertically with the text */
}


[dir=rtl] .section_heading_center h2::after {
    display: flex;
    text-align: center;
    justify-content: center;
    transform: rotateY(180deg);
}



.section_heading_center .arrow {
    display: block;
    margin: 0 auto; /* Center the arrow */
    padding-top: 2px; /* Adjust padding to control spacing between text and arrow */
    width: 240px; /* Adjust the width as needed */
}
/* card shapes */

.bg {
    position: relative;
 background: linear-gradient(to bottom, #f8f9fa, #FFFFFF);
}

/* destination plane */

/*--------------------------------------------------------------
# Price One
--------------------------------------------------------------*/
.price-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background-color: var(--black-color);
  
  }
  

  .price-one__right {
    position: relative;
    display: block;
  }
  
  .price-one__carousel {
    position: relative;
    display: block;
  }
  
  .price-one__single {
    position: relative;
    display: block;
  }
  
  .price-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 60px 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .cardbg2 {
    background-color: var(--secondary-color);
}
  .cardbg1{
    background-color: var(--black-color);
  }
  .cardbg3 {
    background-color: #C4C4C4;
  }


  
  .price-one__top p {
    font-size: 18px;
 
    font-weight: 700;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .cardp1 {
    color: var(--main-color);
  }
  .cardp2 {
    color: var(--black-color);
  }
 

  
  .price-one__top i {
    position: relative;
    display: inline-block;
    font-size: 15px;

    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  

  .price-one__content {
    position: relative;
    display: block;

    text-align: center;
    padding: 20px 0 40px;

    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .bg1{
    background-color: var(--main-color);
  }
  .bg2{
    background-color: var(--black-color);
  }
  .bg3{
    background-color: #c4c4c4;
  }
  .price-one__single:hover .price-one__content {
 
    background-color: transparent;
  }
  
  .price-one__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .price-one__img img {
    width: auto !important;
    mix-blend-mode: luminosity;
    opacity: .60;
  }

  
  .price-one__btn-box {
    position: relative;
    display: block;
  }



.card-body {
    padding: 20px;
}
.card-body p {
    text-align: left;
    color: var(--paragraph-color);
    text-transform: capitalize;
}

.color1{
    color: #c4c4c4;
}
.color2{
    color: var(--main-color);
}
.color3{
    color: var(--black-color);
}
.card-body {
    padding: 20px;
    position: relative;
}


.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.shapearrow img{
    margin-top: -20px;
}
.shapearrow h2{
    margin-left: 130px;
    margin-top: -44px;
}

.footerc {

    color: #fff;
    padding: 10px 20px;
}
.footerc a {
    color: #fff;
    text-decoration: none;
}
.bgfooter2{
    background-color: var(--main-color);
}
.bgfooter1{
    background-color: #999999;
}
.bgfooter3{
    background-color: var(--black-color);
}
.footerc a:hover {
    text-decoration: underline;
}

.cardborder{
    border: 1px solid var(--secondary-color);
}

.price-one__img img {
    transition: transform 0.3s ease; /* Smooth transition */
    width: 200px !important;
    height: auto;
    
}
.price-one__single:hover .price-one__img img {
    transform: scale(1.1); /* Scale the image on hover */
    opacity: 1;
}
/* visa start */
.section_padding {
    padding: 100px 0;
}
.destination_card_thirteen{
    position: relative;
}
.destination_thirteen_text{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.destination_thirteen_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--white-color);
    padding-bottom: 6px;
}
.destination_thirteen_head h2{
  color: var(--white-color);
  text-transform: uppercase;
}
.destination_thirteen_head h2 img{
  padding-bottom: 6px;
}

.destination_thirteen_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
}
.destination_thirteen_bottom p{
    color: var(--white-color);
}
.destination_thirteen_bottom a{
   color: var(--white-color);
}

/* .destination_card_thirteen:hover .destination_thirteen_bottom a{
    color: var(--main-color);
} */.destination_card_thirteen-two {
    margin-bottom: 30px;
    position: relative; /* Ensure proper positioning of child elements */
    height: 300px; /* Set a fixed height for the card */
    overflow: hidden; /* Hide overflow to prevent image from going outside */
    border-radius: 12px; /* Optional: maintain the rounded corners */
}

.off_text_thirteen {
    background-color: var(--main-color);
    padding: 4px 8px;
    position: absolute;
    right: 30px;
    top: 30px;
    border-radius: 4px;
}

.off_text_thirteen a {
    color: var(--white-color);
}

.destination_thirteen_img {
    width: 100%;
    height: 100%; /* Make the image container fill the card */
    overflow: hidden; /* Hide any overflow */
    border-radius: inherit; /* Ensure the image container respects the card's border radius */
}

.destination_thirteen_img img {
    width: 100%;
    height: 100%; /* Fill the container */
    object-fit: cover; /* Scale the image to cover the container while maintaining aspect ratio */
    object-position: center; /* Center the image within the container */
    transition: var(--transition); /* Optional: keep the transition effect */
}

.destination_card_thirteen:hover .destination_thirteen_img img {
    transform: scale(1.1); /* Scale effect on hover */
}
/* Services */
#best_travel_section {
 
    padding-top: 50px;
   
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
;
}

.location_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px; /* Adjust the size as needed */
    height: 70px; /* Adjust the size as needed */
    background-color: var(--main-color); /* Background color of the circle */
    border: 2px dotted var(--paragraph-color); /* Dotted border */
    border-radius: 50%; /* Makes the background circular */
}

.location_img i{
   padding: 25px;
   margin: 8px;
   font-size: 40px;
   font-weight: 600;
   color: var(--white-color);
}
#best_travel_section .section_heading_five {
    padding: 30px 0;
}

#best_travel_section .section_heading_five h2 {
    font-size: 24px;
    line-height: 36px;
    padding-right: 30px;
}


.benefit_list {
    display: flex;
    gap: 12px;
    padding: 30px 0;
    border-bottom: 1px dashed #DDDDDD;
}

.benefit_list:last-child {
    border-bottom: none;
}



.benefit_text {
    padding-right: 60px;
}

.benefit_text h3 {
    color: var(--main-color);
    font-weight: 500;
    padding-bottom: 8px;
}

.benefit_text p {
    color: var(--paragraph-color);
  
}


/*--------------------------------------------------------------
# Get Flight Two
--------------------------------------------------------------*/
.get-flight-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 2;
    overflow: hidden;
  }
  
  .get-flight-two__shape-1 {
    position: absolute;
    top: 0;
    right: 0px;
    opacity: 0.5;
  }
  
  .get-flight-two__shape-1 img {
    width: auto;
  }
  
  .get-flight-two__shape-2 {
    position: absolute;
    top: 47px;
    right: -232px;
    z-index: 2;
  }

  [dir=rtl] .get-flight-two__shape-2 {
    right: auto;
    left: -232px;
    transform: rotateY(190deg);
  }
  
  .get-flight-two__shape-2 img {
    width: auto;
  }
  
  .get-flight-two__shape-3 {
    position: absolute;
    top: 4px;
    left: 215px;
  }
  
  .get-flight-two__shape-3 img {
    width: 100px;
  }
  
  .get-flight-two__shape-4 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: .20;
    z-index: 2;
  }
  
  .get-flight-two__shape-4 img {
    width: auto;
  }
  
  .get-flight-two__content-box {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .get-flight-two__content-box:before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100000000px;
    left: 500px;
    bottom: 0;
    background-color: var(--main-color);
    z-index: -1;
  }
  
  .get-flight-two__inner {
    position: relative;
    display: block;
    background-color: var(--black-color);
    padding: 50px;
    padding-right: 335px;
    z-index: 1;
  }
  
  
  .get-flight-two__inner .get-flight__content-text {
    color: var(--paragraph-color);
  }
  
  .get-flight-two__inner .get-flight__content-text span {
    color: var(--paragraph-color);
  }
  


/*** 
=============================================
    Float Bob Y Animation Css
=============================================
***/
@-webkit-keyframes float-bob-y {
    0% {
      transform: translateY(-20px);
    }
  
    50% {
      transform: translateY(-10px);
    }
  
    100% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes float-bob-y {
    0% {
      transform: translateY(-20px);
    }
  
    50% {
      transform: translateY(-10px);
    }
  
    100% {
      transform: translateY(-20px);
    }
  }
  
  .float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  
/* contact title */

  .section-title {
    position: relative;
    display: block;
    margin-top: -9px;
    margin-bottom: 47px;
    z-index: 3;
 
  }
  
  .section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: var(--main-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    z-index: 1;
    padding-bottom: 30px;
  }
  .section-title__tagline::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2.5px;
    background-color: var(--main-color);
    bottom: 0;
    left: 0
}

.section-title__tagline::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 10px;
    height: 2.5px;
    background-color: var(--main-color);
    bottom: 0;
    left: 35px
}
  .section-title__title {
    margin: 0;
    color: var(--paragraph-color);
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-top: 5px;
  }  

  @media(max-width:600px) {
    

    .get-flight-two__inner {
        padding: 30px;
        padding-right: 0px;
        width: 100%;
    }

 

    .get-flight-two__shape-4 {
        display: none;
    }
    
    .get-flight-two__shape-1 {
   opacity: 0.3;
    }
    .section-title__title{
        font-size: 32px;
    }
.footer-widget-box p{
    color: var(--paragraph-color);
}
    .get-flight-two__shape-2 {
        display: none;
    }

    .get-flight-two__shape-4 {
        display: block;
    }
    
   
    .get-flight-two__content-box:before {
        display: none;
    }

    .get-flight-two {
        padding: 0px 0px 0px;
    }
    
  }

  /* service banner  */
  

/* counter thirteen  */
.counter_thirteen_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter_thirteen_area{
    text-align: center;
    border-right: 2px solid #d0d0d03d;
    width: 100%;
}
.counter_thirteen_area:last-child{
    border-right: none;
}

.counter_thirteen_area i{
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-size: 50px;
}

.counter_thirteen_area h3{
  font-weight: 400;
  color: var(--main-color);
}

#counter_thirteen{
    background-color: var(--black-color);
    padding: 5px 0;
}
.counter_thirteen {
    background-color: var(--black-color);
    padding: 5px 0;
}

#counter_thirteen_loading {
    background-color: var(--black-color);
    padding: 50px 0;
}

/* btn */

.btn-primary {
    --hover: var(--main-color);
    background-color: var(--main-color);
    border-color: var(--main-color) ;
    color: var(--white-color);
  }
  .btn-primary:hover,
  .btn-primary.hover {
    border-color: var(--main-color) var(--main-color) var(--main-color);
    color: var(--white-color);
  }
  .btn-primary:hover:not(.bg-transparent),
  .btn-primary.hover:not(.bg-transparent) {
    background-color: var(--main-color);
  }
  .btn-primary:focus,
  .btn-primary.focus {
    border-color: var(--main-color) var(--main-color) var(--main-color);
    color: var(--white-color);

  }
  .btn-primary:focus:not(.bg-transparent),
  .btn-primary.focus:not(.bg-transparent) {
    background-color: var(--main-color);
  }

.custom-btn-style-1 {
    position: relative;
    transition: ease transform 300ms;
    border-radius: 0;
  }
  .custom-btn-style-1 > span {
    position: relative;
    z-index: 1;
    color: white;
    text-transform: capitalize;
  
  }
  .custom-btn-style-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.7;
    border-radius: 0;
    transform: translate3d(5px, 5px, 0);
    transition: ease transform 300ms;
    z-index: 0;
  }
  .custom-btn-style-1:hover {
    transform: translate3d(2.5px, 2.5px, 0);
  }
  .custom-btn-style-1:hover:before {
    transform: translate3d(0, 0, 0);
  }

  .search-form .search-btn .btn-primary  {
    position: absolute;
    border-radius: 0px;
    border: none;
    bottom: 10px;
    left: 50%;
    padding: 7px 25px;
 
    margin-bottom: 5px;
    transform: translateX(-50%)
}



/* ==============================
     Flight Search Area
================================*/

.flight_search_items {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight_search_item_wrappper {
    margin-bottom: 30px;
}

.flight_search_left {
    display: flex;
    align-items: center;
    padding: 0 0px 0 23px;
}

.flight_search_middel {
    display: flex;
    align-items: center;
}

.flight_multis_area_wrapper {
    display: flex;
    justify-content: space-between;
}

.flight_search_destination {
    padding-left: 33px;
    width: 40%;
}

.flight_search_destination p {
    font-size: 14px;
    line-height: 16px;
}

.flight_search_destination h3 {
    font-weight: 500;
    padding-top: 5px;
}

.flight_search_destination h6 {
    padding-top: 5px;
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 140px;
}

.flight_right_arrow {
    text-align: center;
    width: 15%;
}

.flight_right_arrow img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 1px 4px 12px rgba(0, 0, 0, 0.1);
}

.flight_right_arrow p {
    font-size: 11px;
    line-height: 18px;
}

.flight_right_arrow h6 {
    font-size: 11px;
    font-weight: 700;
    padding-top: 10px;
}

.flight_search_right {
    background: #c4c4c4;
    padding: 25px 16px 20px 25px;
}

.flight_search_right h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--paragraph-color);
}

.flight_search_right h2 {
    padding-top: 10px;
}

.flight_search_right h2 sup {
    font-size: 13px;
    color: var(--main-color);
    font-weight: 600;
    top: -19px;
    padding-left: 5px;
}

.flight_search_right a {
    margin-top: 13px;
}

.flight_search_right p {
    font-size: 12px;
    padding-top: 2px;
    font-weight: 500;
    color: var(--black-color);
}

.flight_search_right h6 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 7px;
    cursor: pointer;
}

.load_more_flight {
    text-align: center;
    padding-top: 40px;
}

.load_more_flight button {
    border: 1px solid var(--main-color);
}

.load_more_flight button:hover {
    background: var(--main-color);
}

.flight_policy_refund {
    border: 1px solid #d7d6d6;
    border-radius: 10px;
    padding: 0px 20px;
}

.airline-details {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.airline-details .img {
    height: 24px;
    width: 24px;
    margin-right: 8px;
    border: 1px solid var(--main-color);
}

.airline-details .airlineName {
    margin-right: 8px;
    font-size: 11px;
    font-weight: 600;
}

.airline-details .flightNumber {
    font-size: .625rem;
    color: #4c4c4c;
}

.flight_inner_show_component .flight_det_wrapper {
    display: flex;
    align-items: flex-start;
    width: 185px;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .code_time {
    font-size: 18px;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .code_time .code {
    color: #4c4c4c;
    margin-right: 8px;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .code_time .time {
    font-weight: 600;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .airport {
    color: #4c4c4c;
    font-size: .75rem;
    line-height: 16px;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .date {
    color: #4c4c4c;
    font-size: .625rem;
}

.flight_inner_show_component .flight_duration {
    justify-content: center;
    width: 96px;
    text-align: center;
    align-items: flex-start;
    color: rgb(76, 76, 76);
    flex-wrap: wrap;
    line-height: 1;
    font-size: 16px;

}

.flight_inner_show_component .flight_duration span {
    font-size: 0.625rem;
    color: rgb(76, 76, 76);
    margin-top: 8px;
    font-weight: 500;
    display: inline-block;
}

.flight_inner_show_component .arrow_right {
    flex-basis: 88px;
    margin: 4px 1rem 0px;
    background-image: url('../img/icon/plane-right-blue.png');
    background-repeat: no-repeat;
    background-position: 50% center;
    text-align: center;
    min-height: 24px;
    min-width: 24px;
    background-size: 24px;
}

.flight_inner_show_component {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.TabPanelInner p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 16px
}

.TabPanelInner h4 {
    font-size: 18px;
    padding-bottom: 4px;
    border-bottom: 1px solid #8b3eea;
    display: inline-block;
    margin-bottom: 12px;
}

.flight_show_down_wrapper {
    display: flex;
    border-bottom: 1px solid #cdcdcd;
    padding-top: 25px;
}

.flight_refund_policy {
    display: flex;
    justify-content: space-between;
}

.flex_widht_less {
    width: 68%;
    padding-left: 22px;
}

.flight_info_taable h3 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 4px;
}

.fligth_top_search_main_form_wrapper .flight_categories_search {
    position: inherit;
    right: 30px;
    top: 0;
    margin-bottom: 20px;
}

/* weather cards */

.card {
    
        position: relative; 
        display: flex; 
        flex-direction: column; 
        justify-content: space-between; 
        width: 100%;
        height: 100%;
        padding: 40px;
        border-radius: 20px;
    
        box-shadow:
            0  0px 10px 5px rgba(154,160,185,0.1),
            0  0px 40px 5px rgba(166,173,201,0.2);
    }
    .card img {
        position: absolute; 
        top: -100px; 
         width: 300px;
        opacity: .8;  
    }
    .card span { font-size: 90px; }
    .card h2 { font-size: 30px; }
    
    hr { opacity: 0.2; } 
    
    #sky-color {
        background-image: linear-gradient(
            to bottom, #E0EAFC, #CFDEF3
        );
        color: darkslategray;
    }
    #ocean-color {
        background-image: linear-gradient(to bottom, #373B44, #4286f4);
        color: whitesmoke;
    }
    #storm-color {
        background-image: linear-gradient(to bottom, #1f2b47, #c4d7f7);
        color: white;
    }
    #worm-color {
        background-image: linear-gradient(to bottom, #FDC830, #F37335);
        color: rgb(66, 58, 49);
    }
    @media (max-width:700px){
        .mobile-none{
            display: none !important;
        }
    }
    @media (max-width: 992px) {
        .flight_multis_area_wrapper {
            display: inherit;
            padding: 20px 0;
        }
    }
    @media (max-width: 767px) {
        .flight_search_items {
            display: inherit;
        }
    }

    @media (min-width: 1400px) {

        .container,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl,
        .container-xxl {
            max-width: 1440px;
        }
    }
    
    @media (max-width: 1440px) {
        .flight_categories_search .nav-tabs {
            border-bottom: none;
            justify-content: center;
            margin-bottom: 30px;
        }
    
        .flight_categories_search {
            position: inherit;
        }
    
        .flight_Search_boxed input {
            font-size: 18px;
            width: 70%;
        }
    
        .dropdown_passenger_area button {
            font-size: 18px;
        }
    
        .banner_four_text h1 {
            font-size: 60px;
            font-weight: 500;
            padding-top: 13px;
            line-height: 70px;
        }
    
        .banner_four_text h3 {
            padding-top: 10px;
            font-weight: 500;
            font-size: 18px;
        }
    
        .banner_four_img {
            width: 42%;
        }
    
        .banner_four_text {
            padding-right: 200px;
        }
    
        .banner_bootom_four {
            padding-top: 100px;
        }
    
        .banner_five_text h1 {
            font-size: 82px;
            line-height: 102px;
        }
    
        .benefit_list {
            display: block;
        }
    
        .about_item_one::after {
            position: absolute;
            top: 71px;
            left: 33px;
            height: 100%;
            content: " ";
        }
    
        .amazing_end_bottom .amazing_tour_box .amazing_tour_box_content .rating_outof i{
            font-size: 10px;
        }
    
        .amazing_end_bottom .amazing_tour_box .amazing_tour_box_content .amazing_tour_content h5 {
            color: var(--white-color);
            font-size: 12px;
        }
    
        .banner_seven_text h1 {
            font-size: 70px;
            line-height: 100px;
        }
    
        #home_seven_banner {
            padding: 120px 0px 300px 0px;
        }
    
        .countre_seven_item {
            padding: 74px 26px;
            gap: 8px;
        }
        .countre_seven_item h3 {
            font-size: 36px;
            font-weight: 500;
        }
    
        .news_admin ::before{
            height: 0px;
            }
    
            .home_seven_news_content h3 a {
                font-size: 20px;
            }
            .padding_img{
                margin-bottom: -20px;
            }
    
            .banner_nine_text h1 {
                font-size: 163px;
            }
    
            .subcribe_form_area {
                padding: 100px 119px 100px 30px;
            }
    
            .theme_search_form_two{
                width: 100%;
                margin: auto;
            }
    
            .banner_ten_text h1 {
                font-size: 40px;
                line-height: 55px;
            }
    
            .banner_ten_slider_item {
                width: 100%;
                margin: auto;
            }
            .question_ten_wrapper {
                padding: 30px 0;
            }
    
            .banner_eleven_text h1 {
                font-size: 70px;
                line-height: 96px;
            }
            .slider-slide-btn .owl-carousel .owl-nav button.owl-prev {
                position: absolute;
                top: 64%;
                left: 30%;
            }
            .slider-slide-btn .owl-carousel .owl-nav button.owl-next {
                position: absolute;
                top: 64%;
                right: 30%;
            }
    
            .banner_thirteen_text h1 {
                font-size: 120px;
                left: 17%;
            }
    
            .news_card_thirteen_top {
                top: -71px;
                right: 0px;
            }
    
            .banner_fourteen_text h1 span::after {
                right: 15%;
                bottom: 24px;
            }
    }
    
    @media (max-width: 1199px) {
        .flight_show_down_wrapper {
            display: inherit;
        }
    
        .flex_widht_less {
            width: 68%;
            padding-left: 0px;
        }
    
        .flight_refund_policy {
            padding-top: 16px;
        }
    
        .room_book_item {
            display: inherit;
        }
    
        .room_book_img img {
            width: 100%;
        }
    
        .room_booking_right_side {
            padding: 15px 25px 25px 25px;
        }
    
        .theme_nav_tab_item .nav-tabs .nav-link {
            margin-bottom: 0;
            background: 0 0;
            border: 1px solid var(--main-color);
            color: var(--black-color);
            padding: 6px 20px;
            border-radius: 5px;
            margin-right: 14px;
        }
    
        .banner_one_text h1 {
            font-size: 50px;
        }
    
        .tab_destinations_conntent h3 {
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            width: 150px;
        }
    
        .video_play_area img {
            height: 50vh;
        }
    
        .banner_five_text h1 {
            font-size: 64px;
            line-height: 88px;
            padding-bottom: 16px;
        }
    
        .benefit_text {
            padding-right: 0px;
        }
    
        #download_area {
            padding: 100px 0;
        }
    
        .app_download_right {
            padding-right: 0px;
        }
    
        .about_item_one {
            margin-bottom: 30px;
        }
    
        .testimonial-text p {
            font-size: 18px;
            line-height: 32px;
        }
    
        .about_six_list_item {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: space-between;
        }
    
        .home_six_about_left {
            margin-bottom: 30px;
        }
    
        .theme_nav_tab_six_item .nav-tabs {
            justify-content: center;
        }
    
        .theme_nav_tab_six_item .nav-tabs .nav-link {
            margin-left: 6px;
            padding: 8px 19px;
        }
    
        .home_six_section_heading h2::after {
            left: 43%;
        }
    
        .benefit_list {
            padding: 18px 0;
        }
    
        .hotel_img, .flight_img {
            width: 50%;
        }
    
        .navbar_color_black .main-navbar .navbar .navbar-nav .nav-item a {
            color: var(--white-color);
        }
        
        .navbar_color_black .topbar-list li a {
            color: var(--white-color);
        }
        
        .navbar_color_black .topbar-list li i {
            color: var(--white-color);
        }
        
        .navbar_color_black .topbar-others-options li a {
            color: var(--white-color);
        }
        
        .navbar_color_black .topbar-others-options li .language-option button {
            color: var(--white-color);
        }
        
        #top_place .section_heading_five h2::before {
            left: 45%;
        }
    
        #best_travel_section {
            margin: 0px;
        }
    
        .benefit_list:last-child {
            padding-bottom: 0;
        }
        .trending_destinations_wrapper {
            justify-content: center;
            gap: 20px;
        }
        .amazing_end_bottom .amazing_tour_box .amazing_tour_box_content .amazing_tour_content h5 {
           display: none;
        }
    
        .banner_seven_text h1 {
            font-size: 48px;
            line-height: 72px;
        }
    
        #home_seven_banner {
            padding: 100px 0px 270px 0px;
        }
    
        .banner_seven_text p {
            width: 100%;
        }
        .home_seven_video_area {
            position: absolute;
            bottom: 34%;
            left: 48%;
        }
    
        .home_eight_card_text {
            width: 100%;
        }
    
        .banner_nine_text h1 {
            font-size: 120px;
        }
        #home_nine_banner {
            padding: 160px 0px 240px 0px;
        }
        .subcribe_form_area {
            padding: 60px 30px 60px 30px;
        }
    
        .banner_ten_slider_item {
           padding: 128px 0px 230px 0px;
        }
        .banner_ten_button_style.owl-theme .owl-nav {
            bottom: 29%;
        }
        .banner_ten_text {
            width: 80%;
        }
    
        .banner_eleven_text h1 {
            font-size: 56px;
            line-height: 76px;
        }
    
        .about_mission_vission_item {
            display: block;
        }
        .about_mission_icon, .about_vission_icon {
            width: 30%;
        }
        .about_experience h3 {
            padding-right: 0px;
        }
        .about_mission_area{
            margin-bottom: 16px;
        }
        .testimonial_eleven_text p {
            font-size: 20px;
            line-height: 32px;
        }
        .banner_twelve_text h1 {
            font-size: 60px;
            line-height: 100px;
        }
        .banner_twelve_text h1 span {
            font-size: 60px;
        }
    
        #banner_twelve {
            padding: 150px 0px 250px 0px;
        }
        .travel_service_content p{
            display: none;
        }
        .about_twelve_list_item {
            display: block;
        }
    
        /* .faq_img_twelve img{
           position: initial;
        } */
        .banner_thirteen_text h1 {
            font-size: 100px;
        }
    
        .discount_timer_text {
            width: 100%;
        }
        .testimonial_thirteen_text p {
            font-size: 20px;
            line-height: 36px;
        }
    
        .news_card_thirteen_list li {
            padding-right: 6px;
        }
    
        .banner_fourteen_text h1 {
            font-size: 68px;
            line-height: 90px;
        }
    
        .banner_fourteen_text p {
            width: 90%;
        }
    
        .news_card_fourteen_list li {
            font-size: 14px;
        }
    
        .news_card_ten_list li a {
            font-size: 14px;
        }
    
        .news_card_ten_text h3 a{
            font-size: 20px;
            line-height: 30px;
        }
    
        .news_card_ten_text h3 {
            padding-top: 10px;
            padding-bottom: 24px;
        }
    
        .news_card_ten_top h3{
            padding: 10px 20px;
        }
    
        .news_card_ten_top {
            padding: 0px 0px;
            right: 20px;
        }
        .news_card_fourteen_text h3 a{
            font-size: 20px;
            line-height: 30px;
        }
    
        .news_card_fourteen_text h3 {
            padding-top: 10px;
            padding-bottom: 24px;
        }
    
        .news_card_fourteen_top h3{
            padding: 10px 20px;
        }
    
        .news_card_fourteen_top {
            padding: 0px 0px;
            right: 20px;
        }
    
        .hotel_booking_content .discount_tab {
            right: 0px;
            top: -55px;
        }
    }
    
    @media (max-width: 992px) {
        .sty {
        
            height: 90vh;
         
        }
    
        .theme_search_form_tabbtn .nav-tabs {
            border-bottom: none;
            justify-content: center;
        }
    
        .theme_search_form_tabbtn .nav-item {
            margin-bottom: 20px;
        }
    
        .bus_seat_left_side {
            padding-top: 20px;
            text-align: center;
        }
    
        .side_map_wrapper {
            display: none;
        }
    
        .cruise_item_inner_content {
            padding: 15px 20px 22px 23px;
        }
    
        .top_details_four_item {
            display: none;
        }
    
        .theme_nav_tab_four_item {
            padding-bottom: 30px;
        }
    
        .theme_nav_tab_six_item {
            padding-bottom: 30px;
        }
    
        .four_banner_bottom_item {
            margin-bottom: 30px;
        }
    
        .vendor_img {
            display: none;
        }
    
        .about_us_right {
            padding-top: 60px;
        }
    
        .about_offer_banner {
            padding-bottom: 30px;
        }
    
        .about_service_boxed {
            margin-bottom: 30px;
        }
    
        .footer_link_area {
            padding-bottom: 30px;
        }
    
        #home_one_banner {
            padding: 275px 0 280px 0;
        }
    
        .topbar-list li:first-child {
            display: none;
        }
    
        #footer_area {
            padding: 70px 0px 40px 0;
        }
    
        .offer_area_box {
            margin-bottom: 30px;
        }
    
        .theme_nav_tab_item .nav-tabs .nav-link {
            margin-bottom: 10px;
        }
    
        .cat_form {
            padding-top: 30px;
        }
    
        .flight_Search_boxed {
            margin-bottom: 30px;
        }
    
        .imagination_boxed {
            padding-top: 30px;
        }
    
        .contact_boxed {
            margin-bottom: 30px;
        }
    
        .news_area_top_right {
            padding-top: 30px;
        }
    
        .recent_news_img {
            width: auto;
        }
    
        .flight_multis_area_wrapper {
            display: inherit;
            padding: 20px 0;
        }
    
        .home_client_wrpper {
            top: 25px;
        }
    
        .client_two_area_bg {
            padding: 75px 34px;
        }
    
        .two_client_area_left {
            padding-left: 15px;
        }
    
        .home_two_client_slider {
            padding: 0 20px;
        }
    
        .three_about_right {
            padding-top: 40px;
        }
    
        #three_We_area .owl-theme .owl-nav {
            margin-top: 30px;
            position: inherit;
            right: 0;
            top: 0;
        }
    
        .home_three_client_right {
            display: none;
        }
    
        #home_five_banner {
            text-align: center;
        }
    
        .destination_card_two {
            margin-top: 0px;
        }
    
        .popular_destination_card {
            margin-bottom: 30px;
        }
    
        .process_card {
            margin-bottom: 30px;
        }
    
        .phone_img {
            margin-bottom: -125px;
            margin-top: 20px;
        }
    
        .banner_five_img img {
            display: none;
        }
    
        .banner_five_img {
            text-align: center;
            margin-top: 30px;
        }
    
        .couple_tour {
            margin-bottom: 30px;
        }
    
        .five_about_img {
            margin-top: 30px;
        }
    
        .theme_nav_tab_six_item .nav-tabs {
            margin-top: 20px;
        }
    
        .theme_nav_tab_six {
            padding-top: 30px;
        }
    
        #home_five_banner {
            padding-top: 214px;
            padding-bottom: 68px;
        }
    
        .hotel_img, .flight_img {
            width: 30%;
        }
    
        #footer_area_bg {
            padding: 70px 0px 0px 0;
        }
    
        #our_partners{
            padding: 60px 0;
        }
    
        .why_choose_andtour_card{
            margin-bottom: 30px;
            text-align: center;
        }
    
        .discount_img{
            margin-top: 30px;
        }
        .discount_left_area {
            padding: 0px;
        }
    
        .amazing_end_bottom .amazing_tour_box .amazing_tour_box_content .rating_outof i{
            font-size: 14px;
        }
    
        .amazing_end_bottom .amazing_tour_box .amazing_tour_box_content .amazing_tour_content h5 {
            display: block;
            color: var(--white-color);
            font-size: 18px;
        }
    
        .countre_seven_item {
            padding: 52px 18px;
            gap: 8px;
        }
    
        .countre_seven_item h3 {
            font-size: 30px;
        }
    
        .countre_seven_item {
            padding: 54px 22px;
        }
    
        .choose_img {
            height: 60px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
        .banner_eight_text h1 {
            padding-top: 60px;
            font-size: 52px;
            line-height: 66px;
        }
    
        .home_eight_card {
            margin-bottom: 30px;
        }
    
        .home_eight_service_boxed {
            text-align: center;
        }
    
        .team-card {
            margin-bottom: 30px;
        }
    
        #home_eight_banner {
            height: 70vh;
        }
    
        .banner_nine_text p {
            padding: 0px 0px;
        }
    
        .subcribe_form_area {
            margin-top: 30px;
            border-radius: 8px;
        }
    
        .tour_category_nine_card {
            margin-bottom: 30px;
        }
    
        .news_card_nine_wrapper{
            margin-bottom: 30px;
        }
        .banner_ten_text {
            width: 90%;
        }
    
        .visa_service_card_wrapper{
            margin-bottom: 30px;
        }
    
        .home_ten_about_left {
            margin-bottom: 30px;
        }
        .check_form_img {
            margin-top: 30px;
        }
        .question_img img {
            display: none;
        }
        .banner_eleven_text{
            text-align: center;
        }
        .banner_eleven_text h1 {
            font-size: 50px;
            line-height: 76px;
        }
    
        .home_eleven_video_area{display: none;}
        .banner_eleven_text p {
            width: 100%;
        }
        .home_ten_about_right{
            margin-top: 30px;
        }
        .about_mission_icon, .about_vission_icon {
            width: 15%;
        }
        .home_eleven_service_boxed {
            text-align: center;
        }
        .section_heading_eight {
            padding-bottom: 30px;
            text-align: center;
        }
        .section_heading_eight h2::after {
            position: absolute;
            content: " ";
            background-color: var(--main-color);
            height: 2px;
            width: 80px;
            bottom: 0;
            left: 45%;
        }
    
        .gallery_eleven_boxed_area {
           display: block;
        }
        .gallery_eleven_boxed_wrapper{
            display: flex;
            gap: 30px;
        }
    
        .news_card_eleven_wrapper{
            margin-bottom: 30px;
        }
    
        .travel_service_content p{
            display: block;
        }
        .travael_serevice_twelve_wrapper {
            margin-bottom: 30px;
        }
        .home_twelve_about_right{
            margin-top: 30px;
        }
        .about_twelve_list_item {
            display: flex;
            align-items: center;
            gap: 100px;
        }
        .faq_img_twelve img{
            position: initial;
         }
    
         .certification_twelve_wrapper {
            margin-bottom: 30px;
        }
    
        .news_card_twelve_wrapper{
            margin-bottom: 30px;
        }
    
        .section_heading_twelve h2::before {
            left: 44%;
        }
    
        #home_ten_team_area {
            padding: 100px 0;
        }
        .banner_thirteen_text h1 {
            position: initial;
            font-size: 90px;
            line-height: 120px;
        }
        .banner_thirteen_text h3 {
            margin-bottom: 0;
        }
        .section_heading_thirteen h2::after {
            left: 36%;
        }
        .destination_card_thirteen {
            margin-bottom: 30px;
        }
        .discount_timer_text h2{
            font-size: 28px;
            line-height: 30px;
        }
    
        .discount_timer_text p {
            width: 100%;
        }
    
        .counter_thirteen_wrapper {
            flex-wrap: wrap;
            justify-content: space-evenly;
        }
    
        .counter_thirteen_area {
            width: 30%;
            border-right: none;
            margin-bottom: 30px;
        }
    
        .news_card_thirteen {
            margin-bottom: 30px;
        }
        .banner_fourteen_text h1 {
            font-size: 60px;
            line-height: 80px;
        }
        .banner_fourteen_text h1 span::after {
            width: 300px;
        }
    
        .country_card_box {
            margin-bottom: 30px;
        }
    
        .home_fourteen_about_right{
            margin-bottom: 30px;
        }
        .special_offer_fourteen_wrapper {
            margin-bottom: 30px;
        }
    
        .news_card_ten_list li a {
            font-size: 16px;
        }
    
        .hotel_booking_content .discount_tab {
            right: 9px;
            top: -30px;
        }
    }
    
    @media (max-width: 767px) {
        .cruise_content_bottom_wrapper {
            display: inherit;
            padding-top: 13px;
        }
    
        .cruise_content_bottom_right {
            padding-top: 20px;
        }
    
        .section_heading_left h2 {
            padding-bottom: 5px;
            font-size: 30px;
        }
    
        .button_style_top_left.owl-theme .owl-nav {
            margin-top: 28px;
            position: initial;
        }
    
        .banner_four_text {
            padding-right: 0px;
        }
    
        #home_four_banner {
            padding: 110px 0;
        }
    
        .banner_four_img {
            display: none;
        }
    
        #home_three_banner {
            padding: 190px 0 200px 0;
        }
    
        .banner_area_three h2 {
            font-size: 48px;
            line-height: 60px;
        }
    
        .partner_area_left {
            padding: 0 25px;
        }
    
        .banner_two_slider_item {
            padding: 155px 0 155px 0;
        }
    
        .banner_two_text h1 {
            font-size: 80px;
            padding-top: 8px;
        }
    
        .banner_two_text h2 {
            padding-top: 15px;
            font-size: 26px;
        }
    
        .topbar-area {
            display: none;
        }
    
        .room_booking_right_side {
            display: inherit;
        }
    
        .room_person_select {
            padding-left: 0px;
            padding-top: 15px;
        }
    
        .flight_search_items {
            display: inherit;
        }
    
        .common_author_form {
            padding: 50px 0px 0px 0px;
        }
    
        .comment_area_boxed {
            display: initial;
        }
    
        .comment_img {
            width: 100%;
        }
    
        .comment_text {
            padding-left: 0;
            padding-top: 20px;
            padding-bottom: 24px;
        }
    
        .counter_item {
            border-bottom: 1px solid #e9e9e9;
            border-right: none;
        }
    
        #consultation_area {
            padding: 100px 0 175px 0;
        }
    
        .multi_city_form {
            margin-bottom: 30px;
            border-bottom: 2px solid #8b3eea;
        }
    
        .range_plan {
            display: none;
        }
    
        .flight_categories_search {
            position: initial;
        }
    
        .theme_search_form_tabbtn .nav-tabs {
            justify-content: center;
        }
    
        .copyright_right {
            text-align: center;
        }
    
        .copyright_left {
            text-align: center;
            padding-bottom: 10px;
        }
    
        .heading_left_area h2 span {
            display: initial;
            border-bottom: none;
            padding-bottom: 0;
        }
    
        .heading_left_area {
            text-align: center;
        }
    
        .banner_one_text h1 {
            font-size: 50px;
            line-height: 50px;
        }
    
        #home_one_banner {
            padding: 160px 0 155px 0;
        }
    
        .section_heading_center h2 {
            padding-bottom: 11px;
            font-size: 30px;
        }
    
        #theme_search_form {
            margin-top: -150px;
        }
        #theme_search_form_eleven {
            margin-top: 50px;
        }
    
        .tour_details_heading_wrapper {
            display: inherit;
        }
    
        .tour_details_top_heading_right {
            padding-top: 20px;
        }
    
        .toru_details_top_bottom_item {
            display: inline-grid;
            align-items: center;
        }
    
        .main_header_arae {
            position: inherit;
            width: 100%;
            z-index: 9999;
        }
    
        #common_banner {
            padding: 100px 0 100px 0;
        }
    
        .news_two_content h2 {
            font-size: 24px;
            line-height: 38px;
        }
    
        .news_area_sidebar_area {
            padding-top: 60px;
        }
    
        .news_sidebar_content {
            padding-bottom: 25px;
        }
    
        #home_five_banner {
            padding-top: 72px;
        }
    
        #Nearby_destination .button_style_top_left.owl-theme .owl-nav {
            top: -27px;
        }
    
      
    
        .banner_five_text h1 {
            font-size: 60px;
            line-height: 83px;
            padding-bottom: 16px;
        }
    
        .section_heading_five h2 {
            font-size: 26px;
            line-height: 44px;
        }
    
        .section_heading_five h5 {
            padding-bottom: 10px;
        }
    
        .home_six_service_img {
            margin-top: 30px;
            text-align: center;
        }
    
        .home_six_section_heading h2 {
            font-size: 30px;
            line-height: 44px;
        }
    
        .home_six_section_heading h5 {
            margin-bottom: 8px;
        }
        .phone_img {
          display: none;
        }
    
        .partner_logo{
            text-align: center;
        }
    
        .hotel_img, .flight_img {
            width: 45%;
        }
    
        #Nearby_destination .button_style_top_left.owl-theme .owl-nav {
            margin-top: 25px;
            position: initial;
           
        }
    
        .section_heading_seven h2 {
            font-size: 30px;
        }
    
        .banner_seven_text h1 {
            font-size: 30px;
            line-height: 50px;
        }
    
       
        #home_seven_banner {
            padding: 100px 0px 162px 0px;
        }
    
        .discount_left_area h2 {
            font-size: 30px;
            line-height: 42px;
            padding-bottom: 8px;
        }
    
        .countre_seven_item {
            padding: 30px 22px;
        }
    
        .home_seven_video_area {
            position: absolute;
            bottom: 23%;
            left: 48%;
        }
    
        .banner_eight_text h1 {
            font-size: 36px;
            line-height: 50px;
        }
    
        .banner_eight_text p {
            color: var(--black-color);
            width: 100%;
            margin: auto;
        }
    
        .section_heading_eight h2 {
            font-size: 30px;
        }
        .section_heading_eight h5 {
            padding-bottom: 10px;
        }
    
        #home_eight_banner {
            height: 60vh;
        }
    
        .banner_nine_text h1 {
            font-size: 90px;
            line-height: 114px;
            font-weight: bold;
            padding: 10px 0;
        }
    
        .news_card_nine_heading h3 {
           font-size: 20px;
        }
    
        .banner_ten_slider_item {
            padding: 128px 0px 150px 0px;
        }
    
        .banner_ten_button_style.owl-theme .owl-nav {
            bottom: 17%;
            left: 45%;
        }
    
        .check_form_img {
            display: none;
        }
        #check_form_area {
           padding-top: 40px;
        }
    
        .question_ten_text h2{
            font-size: 30px;
        }
    
        .home_ten_section_heading h2{
            font-size: 30px;
            line-height: 44px;
        }
        .check_form_head {
            width: 100%;
        }
    
        .about_ten_list_item {
            display: block;
        }
        .banner_eleven_text h1 {
            font-size: 36px;
            line-height: 60px;
        }
        #home_eleven_banner {
            padding: 100px 0px 101px 0px;
        }
        .about_mission_icon, .about_vission_icon {
            width: 30%;
        }
    
        .gallery_eleven_boxed_wrapper{
            display: block;
        }
        .testimonial_eleven_text p {
            font-size: 16px;
            line-height: 32px;
        }
        .slider-slide-btn .owl-carousel .owl-nav button.owl-prev {
            position: absolute;
            top: 64%;
            left: 24%;
        }
        .slider-slide-btn .owl-carousel .owl-nav button.owl-next {
            position: absolute;
            top: 64%;
            right: 25%;
        }
        .banner_twelve_text h1 {
            font-size: 36px;
            line-height: 70px;
        }
        .banner_twelve_text h1 span{
            font-size: 36px;
        }
    
        #banner_twelve {
            padding: 120px 0px 120px 0px;
        }
        .about_twelve_list_item {
            display: block;
        }
    
        .section_heading_twelve h2{
            font-size: 30px;
            line-height: 40px;
        }
        

      .sty {
        height: 50vh;
      }
        #home_thirteen_banner {
            height: 100%;
            padding: 51px 0px 40px 0px;
        }
    
        .section_heading_thirteen h2{
            font-size: 30px;
            line-height: 40px;
        }
        .section_heading_thirteen h2::after {
            left: 30%;
        }
    
        .discount_timer_text h2 {
            line-height: 46px;
            padding: 12px 0;
        }
        .counter_thirteen_area {
            width: 50%;
        }
    
        .testimonial_thirteen_text p {
            font-size: 16px;
            line-height: 30px;
        }
    
        .banner_fourteen_text h1 {
            font-size: 42px;
            line-height: 58px;
        }
    
        .banner_fourteen_text p {
            width: 100%;
        }
    
        .banner_fourteen_text h1 span::after {
            width: 180px;
            right: 26%;
            bottom: 19px;
        }
    
        #home_fourteen_banner {
            padding: 120px 0px 120px 0px;
        }
    
        .about_fourteen_right_img {
            margin-bottom: 30px;
        }
    
        .testimonial-text p{
            font-size: 16px;
        }
    
        .home_twelve_section_heading h2 {
            padding-bottom: 8px;
            line-height: 44px;
            font-size: 30px;
        }
    
        .home_twelve_section_heading h5 {
            margin-bottom: 12px;
        }
    }
    
    @media (max-width: 576px) {
        .cruise_content_top_wrapper {
            display: inherit;
        }
    
        .cruise_content_top_right {
            padding-top: 10px;
        }
    
        .cruise_content_middel_wrapper {
            display: inherit;
        }
    
        .cruise_content_middel_right {
            padding-top: 12px;
        }
    
        .theme_nav_tab_four_item .nav-tabs {
            justify-content: center;
        }
    
        .theme_nav_tab_six_item .nav-tabs {
            justify-content: center;
        }
    
        .arrow_style.owl-carousel .owl-nav button.owl-next,
        .arrow_style.owl-carousel .owl-nav button.owl-prev {
            position: inherit;
            margin-top: 30px;
        }
    
        .about_three_flex {
            display: inherit;
            justify-content: space-between;
            padding-top: 30px;
        }
    
        .about_counter_item {
            margin-bottom: 30px;
        }
    
        .arrow_style.owl-theme .owl-nav {
            margin-top: 0px;
            position: inherit;
            width: 100%;
        }
    
        .verified_area {
            display: none;
        }
    
        .local_counter_area {
            display: inherit;
        }
    
        .local_counter_box {
            margin-right: 0;
            margin-top: 15px;
        }
    
        .home_two_button a {
            margin-right: 10px;
        }
    
        .banner_two_text h1 {
            font-size: 65px;
        }
    
        .room_booking_heading h3 {
            width: auto;
        }
    
        .flight_search_left {
            display: inherit;
            padding: 0;
            text-align: center;
        }
    
        .flight_search_middel {
            display: inherit;
            padding-left: 0;
            text-align: center;
        }
    
        .flight_search_destination h6 {
            padding-top: 10px;
            margin: 0 auto;
            padding-bottom: 15px;
        }
    
        .flight_search_destination {
            padding-left: 0;
        }
    
        .flight_right_arrow {
            text-align: center;
            padding-bottom: 20px;
        }
    
        .download_pdf_area {
            display: inherit;
        }
    
        .downloads_pdf_button {
            padding-top: 20px;
        }
    
        .phone_tuch_area {
            display: inherit;
        }
    
        .phone_tuch_area h3 a {
            margin-top: 10px;
            display: block;
        }
    
    
        .tour_details_top_heading h2 {
            font-size: 28px;
        }
    
        .accordion_flex_area {
            display: inherit;
        }
    
        .theme_search_form_tabbtn .nav-item {
            margin-right: 10px;
        }
    
        .theme_search_form_tabbtn .nav-tabs .nav-link {
            padding: 5px 8px;
            font-size: 16px;
        }
    
        .theme_search_form_tabbtn {
            margin-bottom: 15px;
        }
    
        .flight_categories_search .nav-tabs .nav-link {
            padding: 0 7px;
        }
    
        .theme_search_form_tabbtn .nav-tabs .nav-link i {
            padding-right: 5px;
            font-size: 14px;
        }
    
        .cta_left {
            display: inherit;
        }
    
        .cta_content {
            padding-left: 0px;
        }
    
        .cta_icon {
            width: 35%;
            padding-bottom: 20px;
        }
    
        .footer_first_area {
            padding-bottom: 30px;
        }
    
        .section_padding_top {
            padding: 60px 0 0 0;
        }
    
        .destinations_big_offer h1 {
            color: var(--white-color);
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 0;
        }
    
        .destinations_content_inner h2 {
            color: var(--white-color);
            padding-bottom: 12px;
            font-size: 26px;
        }
    
        .destinations_big_offer h6 {
            color: var(--white-color);
            line-height: 37px;
            padding-top: 0px;
        }
    
        .destinations_content_inner {
            width: 100%;
            text-align: center;
        }
    
        .destinations_big_offer {
            justify-content: center;
        }
    
        .tour_details_top_bottom {
            display: inherit;
        }
    
        .toru_details_top_bottom_item {
            display: inherit;
        }
    
        .banner_five_text h1 {
            font-size: 50px;
            line-height: 68px;
        }
    
        .phone_img {
            margin-bottom: -64px;
            margin-top: 20px;
        }
    
        .home_six_about_right .home_six_section_heading h2 {
            font-size: 30px;
            line-height: 42px;
        }
    
        .section_heading_five h2::after,
        #five_about_area .section_heading_five h2::after,
        #download_area .section_heading_five h2::after,
        #best_travel_section .section_heading_five h2::after {
            position: absolute;
            content: " ";
        }
        .about_six_list_item {
            display: block;
        }
    
        .couple_tour h2, .group_tour h2 {
            font-size: 28px;
            padding-bottom: 12px;
        }
    
        .group_tour p {
            padding-top: 6px;
        }
    
        .banner_nine_text h1 {
            font-size: 60px;
            line-height: 114px;
            font-weight: bold;
            padding: 0px 0;
        }
    
        #home_nine_banner {
            padding: 80px 0px 80px 0px;
        }
    
        .banner_nine_text h3 {
            font-size: 20px;
        }
    
        .banner_ten_text h1 {
            font-size: 28px;
            line-height: 48px;
        }
    
        .banner_eleven_text h1 {
            font-size: 30px;
            line-height: 52px;
        }
    
        .banner_fourteen_text h1 span::after {
           display: none;
        }
    .tour_category_fourteen_card{
        margin-bottom: 30px;
    }
    
    }
    
    @media (max-width: 480px) {
        .banner_four_text h1 {
            font-size: 42px;
            font-weight: 500;
            padding-top: 9px;
            line-height: 60px;
        }
    
        .booking_success_arae {
            display: initial;
            padding: 0px 0px;
            text-align: center;
        }
    
        .booking_success_text {
            padding-left: 0px;
            padding-top: 20px
        }
    
        .room_fasa_area ul {
            display: inherit;
            padding-top: 0px;
        }
    
        .room_fasa_area ul li {
            padding-right: 0px;
            padding-bottom: 8px;
        }
    
        .recent_news_item {
            display: block;
        }
    
        .recent_news_img {
            width: 100%;
        }
    
        .recent_news_text {
            padding-left: 0;
            padding-top: 10px;
        }
    
        .theme_nav_tab_item .nav-tabs .nav-link {
            padding: 4px 12px;
            margin-right: 10px;
            font-size: 14px;
        }
    
        .d-none-phone {
            display: none;
        }
    
        .date_flex_area {
            display: inherit;
            justify-content: space-between;
        }
    
        .banner_five_text h1 {
            font-size: 38px;
            line-height: 58px;
        }
    
        .theme_nav_tab_six_item .nav-tabs .nav-link {
            margin-bottom: 8px;
        }
    
        .about_six_about_author {
            justify-content: center;
            gap: 30px;
        }
    
        .home_seven_video_area {
            left: 48%;
        }
    
        .banner_eight_text h1 {
            font-size: 30px;
            line-height: 43px;
            padding-bottom: 8px;
        }
    
        .banner_nine_text h1 {
            font-size: 42px;
            line-height: 80px;
            font-weight: bold;
            padding: 0px 0;
        }
        .slider-slide-btn .owl-carousel .owl-nav button.owl-prev {
            position: absolute;
            top: 68%;
            left: 18%;
        }
        .slider-slide-btn .owl-carousel .owl-nav button.owl-next {
            position: absolute;
            top: 68%;
            right: 19%;
        }
    
        .banner_twelve_text h1 {
            font-size: 30px;
            line-height: 70px;
        }
        .banner_twelve_text h1 span{
            font-size: 30px;
        }
    
        #banner_twelve {
            padding: 80px 0px 80px 0px;
        }
      
    
        .counter_thirteen_area {
            width: 100%;
        }
    
        .watch_story_area_wrapper h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 60px;
            color: var(--white-color);
            width: 60%;
            text-align: end;
        }
    
        .watch_story_area_wrapper h1 span::before {
            right: 158px;
        }
    
        .banner_fourteen_text h1 {
            font-size: 36px;
            line-height: 48px;
        }
    
    }
    
    @media (max-width: 361px) {}
    
    /* not found card  */
    
/*----------------------------------------*/
/*  14. newsletter
/*----------------------------------------*/
.xb-newsletter {
    padding: 70px;

    border: 1px solid #EDF3F5;
    box-shadow: 0px 14px 19px rgba(221, 229, 236, 0.42);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
margin-left:20px;
margin-right: 20px;

}

.bgblack{
    background-color: var(--black-color);
}
    @media (max-width: 1199px) {
      .xb-newsletter {
        padding: 70px 50px; } }
    @media (max-width: 767px) {
      .xb-newsletter {
        padding: 40px 30px;
        margin-left:0px;
        margin-right: 0px; } }
    .xb-newsletter .xb-item--holder span {
      color: var(--secondary-color);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -0.12px;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 9px;
      line-height: 1; }
    .xb-newsletter .xb-item--holder h3 {
      font-size: 24px;
      font-weight: 600;
      letter-spacing: -0.72px;
    color: var(--main-color); }
    .xb-newsletter .xb-item--form {
      position: relative; }
    
    .xb-newsletter__img {
      position: absolute;
      top: 0;
      right: 0; }
      @media (max-width: 600px) {
        .xb-newsletter__img {
          display: none; } }

          .bgwhite {
            background-color: var(--white-color);
          }

    
/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 120px 0 160px;
    background:linear-gradient(to bottom, #c4c4c4, #FFFFFF);
    z-index: 0;
  }
  .about-one::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url('../img/webimages/3.svg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 50% auto;
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-20deg); /* Rotate by 180 degrees */
    transform-origin: center; /* Ensure the rotation happens from the center */
}
  .about-one__left {
    position: relative;
    display: block;
  }
  
  .about-one__left .section-title h2{
    margin-bottom: 28px;
    color: var(--black-color);
  }
  
  .about-one__points {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  .about-one__points li {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .about-one__points li+li {
    margin-top: 6px;
  }
  
  .about-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .about-one__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--main-color);
  }
  
  .about-one__points li .text {
    margin-left: 15px;
  }
  
  .about-one__points li .text p {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color-opacity);
  }
  
  .about-one__btn-call {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .about-one__btn-box {
    position: relative;
    display: block;
  }
  
  .about-one__call {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
  
  .about-one__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(238, 237, 229);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    width: 57px;
    height: 57px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .about-one__call-icon:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
  }
  
  .about-one__call-icon span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: var(--main-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .about-one__call-icon:hover span {
    color: var(--white-color);
  }
  
  .about-one__call-content {
    margin-left: 10px;
  }
  
  .about-one__call-sub-title {
    position: relative;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 500;
  }
  
  .about-one__call-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
  }
  
  .about-one__call-number a {
    color: var(--go2-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .about-one__call-number a:hover {
    color: var(--main-color);
  }
  
  .about-one__right {
    position: relative;
    display: block;
    margin-left: 60px;
    margin-right: 40px;
    z-index: 1;
  }
  
  .about-one__img-box {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .about-one__img-box:before {
    content: "";
    position: absolute;
    top: 90px;
    left: -40px;
    right: 40px;
    bottom: -40px;
    background-color: var(--main-color);
    z-index: -1;
  }
  
  .about-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    height: 600px;
    width: 100%;
  }
  
  .about-one__img:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
  }
  
  .about-one__img-box:hover .about-one__img:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
  }
  
  .about-one__img>img {
    width: 100%;
    height: 100%;
    object-fit:cover ;
  }
  
  .about-one__satisfied {
    position: absolute;
    bottom: 70px;
    right: -40px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    padding: 27px 40px 27px;
    z-index: 2;
  }
  
  .about-one__satisfied:before {
    content: "";
    position: absolute;
    bottom: -40px;
    right: 0;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #9a8528;
  }
  
  .about-one__satisfied-icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .about-one__satisfied-icon span {
    position: relative;
    display: inline-block;
    font-size: 62px;
    color: var(--black-color);
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
  .about-one__satisfied:hover .about-one__satisfied-icon span {
    transform: scale(.9);
  }
  
  .about-one__satisfied-content {
    margin-left: 20px;
  }
  
  .about-one__satisfied-content h3 {
    font-size: 40px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 40px !important;
 
    letter-spacing: 0;
  }
  
  .about-one__satisfied-content p {
    font-size: 14px;
    color: #ede2b1;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 20px;
  }
  
  .about-one__satisfied .odometer-formatting-mark {
    display: none;
  }
  
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;

    z-index: 1;
  }

  .page-header-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
   
    z-index: -1;
  }
  
 
  
  .page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    padding: 230px 0 151px;
    z-index: 15;
  }
  
  .page-header__inner h2 {
    font-size: 50px;
    color: var(--white-color);
    line-height: 60px;
    margin-bottom: 6px;
    font-weight: 700;
  }
  
  .thm-breadcrumb {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin-left: -4px;
    margin-right: -4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .thm-breadcrumb li {
    position: relative;
    font-size: 14px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 700;
    text-transform: uppercase;
   
    color: var(--black-color);
    letter-spacing: 0;
    padding: 15px 4px;
  }
  
  .thm-breadcrumb li:first-of-type {
    padding-left: 60px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  
  .thm-breadcrumb li:last-of-type {
    padding-right: 60px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  
  
  .thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black-color);
    letter-spacing: 0;
  }
  
  .thm-breadcrumb li:hover a {
    color: #c4c4c4;
    opacity: 1;
  }
  
  .thm-breadcrumb li span {
    font-size: 14px;
  }

  /* scroll dots */
  .scroll-dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden; /* Ensures dots do not overflow */
    z-index: 1; /* Ensure dots are visible above other elements */
  }
  
  .scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .scroll-dot.active {
    background-color: #333;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .scroll-dot {
      width: 8px;
      height: 8px;
    }
  }
  /* ////////////////////calendar card */
  .change-search-date {
   width: 100%;
}

.flight-dates {
    display: flex;
    overflow-x: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;

}

.date-button {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    border-right: 1px solid #ddd;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.date-button:last-child {
    border-right: none;
}

.date-text {
    font-size: 14px;
    margin: 0;
    font-weight: bold;
    color: #333;
}

.date-button:hover {
    background-color: #f1f1f1;
}

.date-button.active {
    background-color: var(--black-color);
    color: white;
}

.date-button.active .date-text {
    color: white;
}

/* Responsive display: show 3 buttons on mobile, 5 on desktop */
@media (max-width: 768px) {
    .date-button {
        padding: 10px;
    }

    .date-text {
        font-size: 12px;
    }

    /* Show only first 3 date buttons on mobile */
    .date-button:nth-child(n+4) {
        display: none;
    }
}

@media (min-width: 769px) {
    /* Show only first 5 date buttons on desktop */
    .date-button:nth-child(n+6) {
        display: none;
    }
}


.flight_logo {
    position: relative; /* Ensures ::after is positioned relative to this element */
    padding-right: 18px; /* Optional: Adds some space between the content and the border */
}

.flight_logo img {
    width: 122px;
    height: auto;
}

.flight_logo::after {
    content: ""; /* Necessary to display the pseudo-element */
    position: absolute; /* Positioning the pseudo-element absolutely */
    top: 0;
    right: 0;
    width: 1px; /* Width of the border */
    height: 100%; /* Full height of the parent element */
    background-color: var(--main-color); /* Color of the border */
    opacity: 0.5;
}

.colorwhite{
    color : white !important;
}
.colorwhite a {
    color: white !important;
}

.tour-details-table {
    border: 1px solid #ddd; /* Border color */
    border-radius: 10px;    /* Border radius */
    background-color: #fff; /* Background color for the table */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for better visual separation */
}
.tour-details-table td{
    vertical-align: middle;
}

.tour-details-table .table {
    border-radius: 10px; /* Ensures the table itself also follows the same border radius */
    overflow: hidden;    /* Prevents content from overflowing the rounded corners */
}

.tour-details-table .btn-primary {
    background-color: #007bff;
    border: none;
}



@media (min-width: 968px) {
    .scroll-dots-container {
        display: none;
    }
}

/* custom table */
 /* Custom styles for the table */
 .custom-table {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.custom-table .row {
    border-bottom: 1px solid #ddd; /* Border between rows */
}
.custom-table .row:last-child {
    border-bottom: none; /* Remove border for the last row */
}
.custom-table .col-md-3, .custom-table .col-md-2 {
    border-right: 1px solid #ddd; /* Optional: Add vertical borders between columns */
}
.custom-table .col-md-2:last-child {
    border-right: none; /* Remove right border for the last column */
}
.custom-table th, .custom-table td {
    padding: 15px;
    text-align: left;
    vertical-align: middle;
    color: var(--paragraph-color);
}

.custom-table strong{
   
    color: var(--black-color);
}
.custom-table span{
   
    color: var(--paragraph-color);
}
.custom-table .seats-left {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}
.custom-table .hotel-details {
    display: flex;
    align-items: center;
}
.custom-table .hotel-details .stars {
    margin-left: 10px;
    color: gold;
}
@media (max-width: 768px) {
    .custom-table th, .custom-table td {
        display: block;
        width: 100%;
        text-align: center;
    }
    .custom-table .col-md-3, .custom-table .col-md-2 {
        border-right: none; /* Remove vertical borders on small screens */
    }
}

/* flight table */

.table-responsive {
    overflow-x: auto; /* Enables horizontal scroll */
    margin: 20px 0;
    background-color: #c4c4c4;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 100%; /* Ensures a minimum width for the table */
}

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #555;
}

th {
    background-color: var(--black-color);
    color: #fff;
}

.airline-logo {
    width: 100px;
    height: auto;
}

.table-header {
    background-color: var(--black-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
}
td {
    color: #555;
}

@media (max-width: 768px) {
    th, td {
        font-size: 14px;
        color: var(--paragraph-color);
    }
    .airline-logo img {
        width: 30px;
    }
}

.bor{
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.airport-search {
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 5px 25px;
    border-radius: 10px;
    outline: none;
}
.drop-menu {
    width: 100%;
    position: absolute;
    background: #fdfdfd;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 0px;
    transition: height 0.3s ease;
    overflow: scroll;
    max-height: 500px;
    z-index: 2;
    
}

.drop-menu::-webkit-scrollbar {
    display: none;
  }

.drop-menu.open {
    height: auto;
}

.drop-container {
    padding: 15px 5px;
}

.drop-results {
    margin-top: 15px;
}
.drop-results button {
    outline: none;
    border: none;
    background-color: white;
    padding: 12px 15px;
    width: 100%;
    text-align: left;
    transition: 0.3s all;
}

[dir=rtl] .drop-results button {
    text-align: right;
}

.drop-results button:hover {
    background-color: #f4f4f4;
}
.has-error {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 0.9em;
}

.error-border {
    border: 1px solid red;
}
[dir=rtl] .nice-select .list {
    left: auto;
}


 
/* تصميم خاص لأجهزة الهواتف */
@media only screen and (max-width: 768px) {

    /* design mobile menu  */

    .mobile-nav {
        background: #00a58e; /* اللون البرتقالي من الصورة */
        position: fixed;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-around; /* توزيع الأيقونات بشكل متساوٍ */
        align-items: center;
        z-index: 999;
        padding: 10px 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .bloc-icon {
        display: flex;
        align-items: center;
        justify-content: center; /* محاذاة الأيقونة والنص في المنتصف */
        flex-direction: column;
        flex-grow: 1;
        text-align: center;
        color: white;
        position: relative; 
    }
    
    .bloc-icon i {
        font-size: 22px; /* تصغير الأيقونات لتناسب التصميم */
        color: white;
    }
    
    .bloc-icon p {
        font-size: 10px; /* تصغير النص تحت الأيقونات */
        margin: 5px 0 0;
    }
    
    .home-icon-container {
        position: relative;
        top: -25px; /* رفع الأيقونة الرئيسية للأعلى قليلاً */
    }
    
    .home-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .home-icon-circle {
        position: relative;
        left: 10%;
        width: 65px;
        height: 65px;
        background-color: #00a58e; /* اللون البرتقالي الرئيسي */
        border: 3px solid white; /* حدود بيضاء */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        color: white;
    }
    
    .home-icon-circle i {
        font-size: 30px; /* حجم أيقونة الصفحة الرئيسية */
        color: white;
    }
    
    .notification-badge {
        position: absolute;
        top: -5px;
        right: 10px;
        background-color: red;
        color: white;
        border-radius: 50%;
        padding: 2px 5px;
        font-size: 10px;
    }
    
    .hidden-mobile {
        display: none;
    }
    

    /* design mobile menu  */

    .flight_search_right a{
        margin-top: 0px;
    }

    .py-120 {
        padding: 17px 0;
    }

    .section_heading_center {
        padding-bottom: 0; 
    }

    .footer-contact li {
        display: flex;
    }

    .footer-call-info a {
        font-size: 12px;
    }

    .footer-contact li i {
        font-size: 20px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    h2.section-title__title {
        font-size: 18px;
    }

    .footer-call-info h6 {
        font-size: 14px;
    }

    h4.mb-3.mt-0 {
        font-size: 16px;
    }
   
    #pills-tab-1 > span,
    #pills-tab-2 > span,
    i.fa-light.fa-hotel,
    i.fa-sharp.fa-light.fa-users,
    i.fa-sharp.fa-light.fa-cars,
    i.fa-light.fa-ship,
    i.fa-sharp.fa-light.fa-hospitals,
    i.fa-light.fa-transporter,
    i.fa-light.fa-book-bookmark {
        font-size: 18px;
    }

    .scroll-dots-container { 
        gap:  1;
    }
    
   
    
    .search-nav , .search-nav  i {
        font-size: 20px;
        color: #fff;
        margin: 0px auto;
    }
    .banner_thirteen_text h1 {
        font-size: 30px;
        line-height: 0px;
    }    
    .scrollable-tabs-container ul {
        gap: 8px; /* تقليل المسافة بين العناصر */
        padding: 4px 8px; /* تقليل الهوامش بشكل أكبر */
    }

    .scrollable-tabs-container button {
        padding: 2px 8px; /* تصغير حجم الأزرار أكثر */
        font-size: 12px; /* تصغير حجم النص أكثر */
        border-radius: 3px; /* تصغير نصف القطر لتصميم أكثر احترافية */
    }

    .scrollable-tabs-container button:hover {
        background: #444; /* تغيير لون التفاعل للهواتف */
    }
}

.ui-datepicker  {
    width: 48% !important;
}

.site-links li {
    display: inline-block;
    font-size: 18px;
    margin: 0 10px;
    
}
.site-links li a {
    color: white !important;
}

@media only screen and (max-width: 768px) {
    table {
        min-width: auto;
    }
    .ui-datepicker {
        left: 0 !important;
        width: 50% !important;
    }
    .theme-btn {
        font-size: 12px;
    }
    .nice-select.open .list {
        width: 100%;
    }
    
    .hotel-bottom {
        display: block;
    }
    .thm-breadcrumb {
        bottom: 10px;
    }
    .form-check-label {
        font-size: 13px;
    }
    .site-links li {
        display: inline-block;
        font-size: 14px;
    }
    .hotel-list {
        top: -330px;
        position: relative;
    }
}
.social-links {
    text-align: center;
    list-style: none;
}

.social-links li {
    background-color: white;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    padding: 1px;
    border-radius: 5px;
    margin: 0 5px;
    font-size: 20px;
}

.site-links {
    list-style: none;
    text-align: center;
}

