@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');

:root{
  --darkblue : #0e1e2c ;
  --darkblue2 : #132738 ;
  --lightbg : #f5f5f5 ;
  --ligthbg2 : #F4F8FB ;
  --linkcolor : #0a66c2 ;
   --bordercolor : #DBE1E5 ;
   --cardbg : #fff ;
   --textcolorlight : #595959 ;
   --textcolordark : #212221 ;
   --cardinnerborder : #CFDDFF ;
   --cardinnerbg : #cfddff33 ;
   --fontfamily : Muli, sans-serif ;
}

body{
    font-family: var(--fontfamily);
    padding: 0px;
    margin: 0px;    
  
}
.mob-header-bottom-inner ul{
   margin: 0px ;
   padding: 0px;
} 
.mob-header-bottom-inner ul li{
    list-style: none;
    margin: 10px 0px 10px 0px;
    color: var(--darkblue);
}
.mob-header-bottom-inner a{
    text-decoration: none;
    color: var(--darkblue);
}
.mob-social-media-link h5{
    margin-bottom: 15px;
    margin-top: 30px;
}
.mob-social-media-link i{
    font-size: 26px;
    margin: 0px 15px  0 0;
}
.menu-bar{
    display: none;
}
.header-top{

    padding: 10px;
    background-color: var(--darkblue);
}
.header-top-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
    max-width: 1320px;
}
.header-top img{
    height: 45px;
}
.btn-sec{
    display: flex;
    gap: 20px;
}
.btn-sec i{
    color: var(--cardbg) !important;
    margin-right: 4px;  
}

.btn-sec a{
    font-size: 15px;
    text-decoration: none;
    color: var(--cardbg);
}

.btn-sec a:hover{
    font-size: 15px;
    text-decoration: none;
    color: var(--cardinnerbg) !important;
}


/* header destination list sec css */

.dropdown-wrapper {
  
    display: inline-block; /* So it fits around content */

  }
  .tour-h-main ,
.destination-h-main {
    position: absolute; /* instead of absolute */
    top: 100%; /* or whatever vertical spacing you want */
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999 !important;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    padding:10px 0px;
 
  
}

/* .destination-list-sec-h{
  width: 100% !important;
  max-width: 100%;  
  height: 100vh;
  background-color: #00000075;
} */

.dest-list-h-inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 1000px;
    margin: -1px auto 0px auto;
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 3px  3px 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.dropdown-wrapper:hover .destination-h-main , .dropdown-wrapper:hover .tour-h-main{
    opacity: 1;
    top: 100%;
    pointer-events: auto;
    display: block;
  }
  .dropdown-wrapper:hover .desti-h-link i , .dropdown-wrapper:hover .tour-h-link i{
    transform: rotate(180deg) !important;
    transition: all 0.7s;
  }

.destination-list-sec-h img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 10px;
}
.destination-list-sec-h h2{
    font-size: 20px;
    font-family: sans-serif !important;
    font-weight: 700;
    margin-bottom: 20px;
}
.destination-list-sec-h ul{
    padding: 0px;
    display: block !important;
}
.destination-list-sec-h li{
    list-style: none;
    margin: 0 0 15px 0 !important;
    display: block !important;
    color: var(--darkblue) !important;
}
.destination-list-sec-h ul li a:hover{
    color: var(--textcolorlight) !important;
}
.destination-list-sec-h a{
    color: var(--darkblue) !important;
    text-decoration: none;
}
.destination-list-sec-h a:hover{
    color: var(--textcolorlight) !important;
}
.trend-card
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

/* header bottom  */

.header-bottom 
{
    background-color: #132738ed;
    padding: 10px 7px;
}
    
.header-bottom-inner{
    margin: 0px auto;
    max-width: 1000px;
    position: relative;
}
.header-bottom-inner ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
}
.header-bottom-inner li{
   margin: 0px;
   list-style-type: none;    
}
.header-bottom-inner a{
    color: var(--cardbg);
    text-decoration: none;
    font-size: 15px;
}
.header-bottom-inner a:hover{
    color: #ffffffc1 !important;                         
    text-decoration: none;
    font-size: 15px;
}
.offcanvas {
    width: 100% !important;
    display: none !important;
}
.offcanvas-backdrop.show {
    opacity: -1 !important;
}
.offcanvas-backdrop {
    display: none !important;
}
.offcanvas img{
    height: 39px;
}
@media (max-width:990px)
{
    .header-top img{
        height: 39px;
    }
    .header-bottom{
        display: none;
    }
    .btn-sec{
        display: none;
    }
    .menu-bar {
        display: flex;
        gap: 10px;
    }
    .menu-bar i{
        color: #fff;
        font-size: 18px;
    }
    .offcanvas{
        display: block !important;
    }
}