*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-size: 1.125rem;
    font-family: Regular;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    color: var(--text);
}
a{
    text-decoration: none;
} 
ul{
    list-style: none;
}

/* Colors */
:root{
    --primary: #573280;
    --primary-hover: #421e6a;
    --secondary: #23022E;  
    --background: #f4f4f4;
    --text: #442220;
    --white: #ffff; 
    --span: rgb(106, 255, 158);
}

/* Fonts */
@font-face {
    font-family: "Stylish";
    src: url(../fonts/Quintessential-Regular.ttf);
}
@font-face {
    font-family: "Regular";
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: "Black";
    src: url(../fonts/Montserrat-Black.ttf);
}

@font-face {
    font-family: "Bold";
    src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: "SemiBold";
    src: url(../fonts/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: "ExtraBold";
    src: url(../fonts/Montserrat-ExtraBold.ttf);
}

/* Utility Classes */
.container{
    width: 90%;
    padding: 0 15px;
    margin: 0 auto; 
}


/* MEDIA QUIRIES FOR CONTAINER */
/* @media screen and (max-width: 1236px) {
    .container{
        width: 80%;
    }
    
} */

 @media screen and (max-width:576px) {
    .container{
        width: 100%;
    }
}
@media (min-width:576px) and (max-width: 768px) {
    .container{
        width: 540px;
    }
}
@media (min-width:768px) and (max-width: 992px) {
    .container{
        width: 720px;
    }
}
@media (min-width:992px) and (max-width: 1200px) {
    .container{
        width: 960px;
    }
}
@media (min-width:1200px) and (max-width: 1400px) {
    .container{
        width: 1140px;
    }
} 
@media (min-width:1400px){
    .container{
        width: 80%;
    }
} 
@media (min-width:1552px){
    .container{
        width: 75%;
    }
} 
@media (min-width:1600px){
    .container{
        width: 70%;
    }
} 
.flex{
    display: flex;
}
.wrap{
    flex-wrap: wrap;
}
.flex-1{
    flex: 1;
}
.column{
    flex-direction: column;
}
.reverse{
    flex-direction: row-reverse;
}
.justify-between{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
.justify-evenly{
    justify-content: space-evenly;
}
.justify-around{
    justify-content: space-around;
}
.align-center{
    align-items: center;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}
.text-center{
    text-align: center;
}


/* Customization */
/* ------------- */

section{
    padding: 5rem 0;
}
.section-heading{
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: "Bold";
    color: var(--primary-hover);
    letter-spacing: 0.2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section .wrapper{
    margin-top: 3rem;
}
/* .section-heading::after{
    content: '';
    display: block;
    width: 200px;
    height: 4px;
    margin-top: 1rem;
    background: var(--secondary);
} */
.btn{
    position: relative;	
	padding: 0.8rem 1rem;
	font-size: 1.2rem;
    letter-spacing: 0.2rem;
    font-family: "SemiBold";
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.btn-primary{
    background-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover{
    background-color: var(--primary-hover);
    color: var(--white);
}

input, select:focus{
    outline: none;
}





/* -- Navbar -- */
header.navbar nav{
    position: relative;
    /* border: 1px solid #000; */
    padding: 0.2rem 0;
    background: var(--white);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    z-index: 1;
    background-color: var(--secondary);
}
header.navbar nav .logo span.q{
    color: var(--background);
}
header.navbar nav .logo span{
    font-family: "stylish";
    font-size: 2rem;
    color: var(--span);
}
header.navbar nav .menu ul li{
    padding: 1.5rem 1rem 1rem 1rem;
}
header.navbar nav .menu ul li a{
    font-size: 1.2rem;
    padding: 1.5rem 0 1rem 0;
    color: var(--white);
    font-family: "SemiBold";
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
header.navbar nav .menu ul li a.active{
    border-bottom: 4px solid var(--span);
}
header.navbar nav .menu ul li a:hover{
    border-bottom: 4px solid var(--span);
}
header.navbar nav .mobile-nav{
    display: none;
}
header.navbar nav .mobile-nav .icon{
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
}
header.navbar nav{
    position: relative;
}
header.navbar nav .mobile-navigation{
    position: fixed;
    width: 350px;
    height: 100vh;
    top: 0;
    left: -350px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}
header.navbar nav .mobile-navigation .close-nav{
    position: absolute;
    top: 0;
    right: 0;bac
    width: 50px;
    height: 50px;
    background-color: var(--primary-hover);
    cursor: pointer;
    /* color: var(--white); */
}
header.navbar nav .mobile-navigation .close-nav .icon i{
    font-size: 2rem;
    color: var(--background);
}
header.navbar nav .mobile-navigation .details{
    margin: 5rem 0 0 1rem;
}
header.navbar nav .mobile-navigation .details .logo span{
    color: var(--primary);
}
header.navbar nav .mobile-navigation .details .logo span.q{
    color: var(--white);
}
header.navbar nav .mobile-navigation .details .menu ul li a{
    color: var(--white);
    font-size: 1.36rem;
    border: none;
}
header.navbar nav .mobile-navigation .details .menu ul li a:hover{
    color: var(--primary-hover);
}
header.navbar nav .mobile-navigation .details .search .input input{
    margin-top: 2rem;
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
}
header.navbar nav .mobile-navigation .details .search button{
    margin: 1rem 0;
}
header.navbar nav .mobile-navigation .details .search button:hover{
    background: var(--primary);
    color: var(--white);
}


/* Section Let's find your best holiday trip */
section.find{
    background-image: url(../images/Summer-Swimming-Beach-Wallpaper-Computer-41-free-desktop-.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section.find .container{
    padding: 3rem;
    background-color: rgba(65, 55, 82, 0.4);
    background-blend-mode: overlay;
    backdrop-filter: blur(8px);
    border-radius: 12px;
}
section.find .heading h1{
    color: var(--white);
}
section.find .wrapper .heading h1 span{
    font-family: "ExtraBold";
}
section.find .wrapper .form .form-group label{
    text-transform: capitalize;
    font-family: "Bold";
    color: white;
}
section.find .wrapper .form .form-group .icon-input{
    margin-top: 0.5rem;
    border: 1px solid var(--span);
    border-radius: 4px;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.4);
}
section.find .wrapper .form .form-group .icon-input input::placeholder{
    color: rgba(255, 255, 255, 0.5);
}
section.find .wrapper .form .form-group .icon-input input, select{
    width: 100%;
    font-size: 1.2rem;
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    background-color: transparent;
}
section.find .wrapper .form .form-group .icon-input .icon{
    font-size: 1.5rem;
    color: var(--white);
}
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
section.find .wrapper .form .form-fields{
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}
 section.find .wrapper .form .form-fields .from{
    grid-area: 1 / 1 / 2 / 3;
}
section.find .wrapper .form .form-fields .to{
    grid-area: 1 / 3 / 2 / 5;
}
section.find .wrapper .form .form-fields .departure{
    grid-area: 2 / 1 / 3 / 2;
}
section.find .wrapper .form .form-fields .return{
    grid-area: 2 / 2 / 3 / 3;
}
section.find .wrapper .form .form-fields .cabin{
    grid-area: 2 / 3 / 3 / 4;
}
section.find .wrapper .form .form-fields .adult{
    grid-area: 2 / 4 / 3 / 5;
}
section.find .wrapper .form .form-fields .child{
    grid-area: 3 / 1 / 4 / 2;
}
section.find .wrapper .form .form-fields .infant{
    grid-area: 3 / 2 / 4 / 3;
}
section.find .wrapper .form .form-fields .fname{
    grid-area: 3 / 3 / 4 / 5;
}
section.find .wrapper .form .form-fields .email{
    grid-area: 4 / 1 / 5 / 3;
}
section.find .wrapper .form .form-fields .contact{
    grid-area: 4 / 3 / 5 / 5;
}
section.find .wrapper .form .form-fields .form-btn{
    grid-area: 5 / 2 / 6 / 4;
    width: 100%;
    /* border: 1px solid #000; */
}
section.find .wrapper .form .form-fields .form-btn button{
    width: 100%;
} 

/* Footer */
footer{
    background-color: var(--secondary);
    color: var(--white);
    padding: 5rem 0 2rem 0;
}
footer .wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}
footer .wrapper h3{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--background);
}
footer .wrapper a{
    color: var(--white);
    font-size: 1.2rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}
footer .wrapper a:hover{
    color: var(--span);
    padding: 0.5rem 0.1rem;
}
footer .wrapper ul li{
    margin: 1rem 0;
}
footer .wrapper .social-links a{
    padding: 0 0.5rem;
    color: var(--primary);
}
footer .wrapper .social-links a:hover{
    color: var(--span);
}
footer hr{
    margin: 2rem 0;
    border: none;
    border-top: 1px solid var(--text);
}
footer .copyright{
    color: var(--background);
}


/* Responsive */
@media screen and (max-width: 1200px) {
    section{
        padding: 3rem 0;
    }
}

@media screen and (max-width: 992px) {
    section.find .wrapper .form form .form-fields{
        display: flex;
        flex-direction: column;
    }
    footer .wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    header.navbar nav .wrapper{
        flex-direction: column;
    }
    footer .copyright span{
        line-height: 2rem;
    }

}
@media screen and (max-width: 576px) {
    header.navbar nav .wrapper{
        flex-direction: row;
    }
    header.navbar nav .container .menu{
        display: none;
    }
    header.navbar nav .mobile-nav{
        display: flex;
    }

}
@media screen and (max-width: 415px) {
    header.navbar nav .wrapper{
        flex-direction: row;
    }
    header.navbar nav .mobile-nav{
        display: flex;
    }
    header.navbar nav .mobile-navigation{
        width: 300px;
    }
    header.navbar nav .mobile-navigation .details .search .input input{
        width: 270px;
    }
}
@media screen and (max-width:380px) {
    footer .wrapper{
        padding: 0 2rem;
        grid-template-columns: 1fr;
    }
}
div.autocomplete-suggestions {
    background-color: white;
    color: black;
    overflow-y: hidden;
}
.autocomplete-suggestions{
  
    border: 1px solid #999;
    /*color: black;*/
    color: balck;
    background-color: white;
    cursor: default;
    overflow: auto;
    max-height: 200px !important;
    width: auto !important;

}
.autocomplete-selected {
    color: black;
    /*text-decoration-color: black;*/
    background-color: white;
}
.autocomplete-suggestions strong {
    overflow-y: hidden;
    font-weight: normal;
    color: black;
    background-color: white;
    /*text-decoration-color: black;*/
    /*color: #FFFEFE;*/
}
option{
    background-color: while;
    color: black;
}
