@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap&subset=latin-ext');

:root{
    --primary-hue: 31;
    --primary-saturation: 93%;
    --primary-light: 54%;

    --primary-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-light));
	--primary-color-darken: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-light) - 10%));
	--primary-color-lighten: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-light) + 40%));
    
    --default-text-color: #0d3364;
    --secondary-text-color: #a0a0a0;
    --default-font-family: 'Roboto', sans-serif;
    --default-box-shadow: 0 22px 38px 0px rgba(47,90,113,0.17);
    --default-border-radius: 0.5rem;
    --default-transition: 0.3s all;
}
.container{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

input,
select,
button{
    -webkit-appearance: none !important;
}

@media only screen and (min-width: 320px){
    .container{width: auto;}
    header > .container,
    footer > .container{flex-direction: column;}
    
    #menu-bar{display: block;}
    .navbar-wrapper{
        display: none;
        justify-content: center;
        height: 0;
    }

    .navbar-wrapper,
    header .navbar-list{flex-direction: column;align-items: center;}
    header .navbar-list > .nav-item{
        margin-bottom: 50%;
    }
    footer .navbar-list > .nav-item{margin-bottom: 10%;}
    
    #secondary-section{
        display: block;
        width: 100%;
        overflow: auto;
    }
    
    .section-item{width: 100%; min-width: 250px;text-align: center;}
    .section-item > .title{align-items: center;}
    .section-title > h1{font-size: 26px;}
    footer .navbar-list{flex-direction: row;flex-wrap: wrap;}
    footer .navbar-list > .nav-item{width: 33%;}
    footer .navbar-list > .nav-item:nth-child(9),
    footer .navbar-list > .nav-item:last-child{width: 16.5%;}

    html #aweb-search-panel.aweb-sbox-wide .aweb-direction,
    html #aweb-search-panel.aweb-sbox-wide .aweb-direction .aweb-col{width: 100%;}
    
    html #aweb-search-panel .aweb-dates{width: 100%;}
    html #aweb-search-panel .aweb-pax{width: 100%;}
    html #aweb-search-panel .aweb-search-btn,
    html #aweb-search-panel .aweb-search-btn .aweb-btn{width: 100%;}
}
@media only screen and (min-width: 768px){
    .container{width: 970px;}
    header > .container,
    footer > .container{flex-direction: row;}
    
    #menu-bar{display: none;}
    .navbar-wrapper{
        display: flex;
        justify-content: space-between;
        height: auto;
    }
    .navbar-wrapper,
    header .navbar-list{flex-direction: row;}

    header .navbar-list > .nav-item,
    footer .navbar-list > .nav-item{margin-right: 20px;margin-bottom: 0;}
    
    .section-item{width: 20%;text-align: left;}
    .section-item > .title{align-items: flex-start;}
    .section-title > h1{font-size: 36px;}
    footer .navbar-list{flex-direction: row;}
    footer .navbar-list > .nav-item{width: auto;}
    footer .navbar-list > .nav-item:nth-child(9),
    footer .navbar-list > .nav-item:last-child{width: auto;}

    html #aweb-search-panel.aweb-sbox-wide .aweb-direction,
    html #aweb-search-panel.aweb-sbox-wide .aweb-direction .aweb-col{width: 50%;}

    html #aweb-search-panel .aweb-dates{width: 50%;}
    html #aweb-search-panel .aweb-pax{width: 35%;}
    html #aweb-search-panel .aweb-search-btn{width: 15%;}
    html #aweb-search-panel .aweb-search-btn .aweb-btn{width: auto;}
}
@media only screen and (min-width: 1200px){
    .container{width: 1170px;}
    
    header > .container,
    footer > .container{flex-direction: row;}

    #menu-bar{display: none;}
    
    .navbar-wrapper{
        display: flex;
        justify-content: space-between;
        height: auto;
    }

    .navbar-wrapper,
    header .navbar-list{flex-direction: row;}

    header .navbar-list > .nav-item,
    footer .navbar-list > .nav-item{margin-right: 20px;}
    
    .section-item{width: 20%;text-align: left;}
    .section-item > .title{align-items: flex-start;}
    .section-title > h1{font-size: 36px;}
    footer .navbar-list{flex-direction: row;}
    footer .navbar-list > .nav-item{width: auto;}
    footer .navbar-list > .nav-item:nth-child(9),
    footer .navbar-list > .nav-item:last-child{width: auto;}

    html #aweb-search-panel.aweb-sbox-wide .aweb-direction,
    html #aweb-search-panel.aweb-sbox-wide .aweb-direction .aweb-col{width: 50%;}
    
    html #aweb-search-panel .aweb-dates{width: 50%;}
    html #aweb-search-panel .aweb-pax{width: 35%;}
    html #aweb-search-panel .aweb-search-btn{width: 15%;}
    html #aweb-search-panel .aweb-search-btn .aweb-btn{width: auto;}
}

html{
    scroll-behavior: smooth;
}
body{
    padding: 0;
    margin: 0;
    background-color: white;
    font-family: var(--default-font-family);
    color: var(--default-text-color);
}

/* HEADER BEGIN */
header{
    background-color: white;
    box-shadow: var(--default-box-shadow);
    z-index: 1;
}
header > .container{
    display: flex;
    padding: 5px;
}
html .is-navbar-active{display: flex; height: 100%;}
#menu-bar{
    position: absolute;
    top: 25px;
    right: 30px;
}
#menu-bar > i{font-size: 24px; color: currentColor;}
.brand-logo{margin-right: 50px;}
.brand-logo > a > img{width: 150px;}

.navbar-wrapper{
    width: 100%;
}
.navbar-list,
.social-media-wrapper{
    display: flex;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
.navbar-list > .nav-item,
.social-media-wrapper > .social-media-item,
.sub-navbar{
    display: flex;
    align-items: center;
    height: 100%;
}
.navbar-list > .is-active{border-bottom: 3px solid var(--default-text-color);}
.navbar-list > .is-active > a{font-weight: 700;}
.navbar-list > .nav-item > a{
    color: currentColor;
    text-decoration: none;
    text-transform: capitalize;
}
/* HEADER END */

/* MAIN BEGIN */

main{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 100vh;
}

main > section{width: 100%;margin: 5% 0;}
section p{
    color: var(--secondary-text-color);
}
.section-title{
    color: var(--secondary-text-color);
    text-transform: capitalize;
}
.section-title > h1{
    margin: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: normal;
}
.section-title > span{font-weight: 600;}
.section-sub-title{
    color: var(--primary-color);
    text-transform: capitalize;
    font-weight: 600;
}

#secondary-section > .secondary-section-inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-item{
    height: 100%;
    min-height: 200px;
}
.section-item > .title{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.section-item > .title > i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    padding: 10px;
    margin-bottom: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 20px;
}
.section-item > .title > h4{
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}
.section-item > .content{
    color: var(--secondary-text-color);
}
.section-frame > iframe{height: 50vh;}
#contact-section > .section-title{
    display: flex;
    flex-direction: column;
}
#contact-section span{margin-bottom: 30px; font-weight: normal;}
#contact-section span:last-child > span{text-transform: lowercase;}
/* MAIN END */

/* FOOTER BEGIN */
footer{padding: 30px 0;}
footer > .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .navbar-list{align-items: center;}
footer .nav-item img{width: 50px;}
footer .nav-item .fab{font-size: 1.5em;}


.social-media-wrapper > .social-media-item{margin-right: 20px;}
.social-media-wrapper > .social-media-item:last-child{margin-right: 0;}
.social-media-wrapper > .social-media-item > a{
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #eee;
    border-radius: 50%;
    color: var(--default-text-color);
    text-decoration: none;
}
.social-media-wrapper > .social-media-item i{
    font-size: 20px;
}
/* FOOTER END */

/* AWEB WIDGET CUSTOM CSS BEGIN */
.aweb-widget-wrapper,
.section-frame{
    margin: 5% 0;
}
#aweb-widget-search-container,
.section-frame{
    display: flex;
    padding: 10px;
    box-shadow: var(--default-box-shadow);
    border-radius: var(--default-border-radius);
    font-weight: 700;
    text-transform: capitalize;
}
html #aweb-search-panel.aweb-sbox-wide{height: inherit;}
html #aweb-search-panel .aweb-direction #aweb-dir1-label{border-radius: 3px 0 0 3px;}
html #aweb-search-panel .aweb-direction #aweb-dir2-label{border-radius: 0 3px 3px 0;}
html #aweb-search-panel .aweb-dates{padding-right: 0;}
html #aweb-search-panel .aweb-pax .aweb-pax-adt{padding-left: 0;}
html #aweb-search-panel .aweb-search-btn{
    padding: 0;
    margin-top: 22px;
    text-align: left;
}
html #aweb-search-panel .aweb-search-btn .aweb-btn{padding: 10px 30px;}
/* AWEB WIDGET CUSTOM CSS END */