/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   


/* End Animations*/

html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Kanit';
}

p{
    font-family: 'Poppins';
    font-size: 18px;
}
.navbar{
    background-color: transparent!important;
    color: white;
    box-shadow: none!important;
    z-index: 10;
}

.navbar li a{
    font-weight:400;
    color: white;
    font-family: 'Poppins';
    font-size: 1.1em;
    margin: 0px 10px;
}

.navbar li a.active{

    color: white!important;
}

#home-head{
    height: 110vh;
    display: flex;
    align-items: center;
}

.custom-shape-divider-bottom-1722519241 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    
}

.custom-shape-divider-bottom-1722519241 svg {
    position: relative;
    display: block;
    width: calc(182% + 1.3px);
    height: 299px;
    
}

.custom-shape-divider-bottom-1722519241 .shape-fill {
    fill: #ffffff;
}

.open-box{
    background-color:#dd9d14 ;
    padding: 8px 20px;
    color: white;
    width: max-content;
    border-radius: 20px;
}


.button-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #1d1d1d;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
  }
  
  .button-main:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #ffd401;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
  }
  
  .button-main:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .button-main span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 10px 25px;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    font-family: 'Poppins';
   
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
  
  .button-main:hover span {
    color: #000000;
    animation: scaleUp 0.3s ease-in-out;
  }
  
  @keyframes scaleUp {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(0.95);
    }
  
    100% {
      transform: scale(1);
    }
  }

  .content-section{
    padding: 4em 0em;
  }

  .work-box{
    text-align: center;
    border: 2px solid transparent;
    background-color: rgba(247, 247, 247, 0.89);
    padding: 25px;
  }

  .work-box:hover{
    border:2px solid #dd9d14;
    border-style: dashed;
    background-color: white;
    transition-duration: 0.3s;
  }

  .work-box h4{
    color: #ffa600;
  }


  .accordion-button{
    color: #000000!important;
    
  }

  .price-box{
    background-color: #ffa600;
    padding: 25px;
  }

  .price-box .ms-auto{
    color: white;
  }

  #about-us{
    background-image: url('../img/about-bg-lgg.png');
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 50%;
  }

  #footer-banner{
    background: url('../img/luggagebag.png')#faad08;
    background-size: 30%;
    background-position: left bottom;
    background-repeat: no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
  }


  @media only screen and (max-width: 960px) {
    #home-head {
      height: 130vh;
    }
    .navbar{
        background-color: #faad08!important;
    }
    .btn-flex{
        display: block!important;
    }
    .btn-flex .button-main{
        margin-left: 0px!important;
        margin-top: 10px;
    }
    .open-box{
        margin-bottom: 20px;
    }
    .work-box{
        margin: 10px 0px;
    }
    #about-us{
        background-size: 80%;
        padding-bottom: 10em;
    }
    .hide-mob{
        display: none;
    }
    #footer-banner{
        background-size: 80%;
    }
  }