@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');


:root{
    --accent-color:#152B4F;
    --action-color:#9884fc;
}
*,
*:after,
*::before {
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}
html{
    font-size:14px;
}
body{
    background: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    color:#222;
}

/* GENERAL */
.bg-none{
    background:none;
}
.bg-accent{
    background-color:var(--accent-color);
}
.bg-action{
    background-color:var(--action-color);
}
.text-accent{
    color:var(--accent-color);
}
.text-action{
    color:var(--action-color);
}
.object-fit-cover{
    object-fit: cover;
}
.object-fit-contain{
    object-fit: contain;
}
.article{
    line-height: 2;
}
.article ul,
.article ol{
    margin-left:30px;
    line-height:2;
}
.btn.btn-accent{
    background: var(--accent-color);
    border-color: transparent;
    color:#fff;
}
.btn.btn-accent:hover{
    opacity: 0.9;
}
.btn.btn-outline-accent{
    background:transparent;
    border-color: var(--accent-color);
    color:var(--accent-color);
}
.btn.btn-outline-accent:hover{
    background: var(--accent-color);
    color:#fff;
}
.rounded-20{
    border-radius: 20px;
}
.preloader{
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    opacity: 1;
    visibility: visible;
}
.preloader img{
    width: 300px;
}
.preloader.out{
    opacity: 0;
    visibility: hidden;
}
.slick-arrow{
    width: 30px;
    height: 30px;
    border:none;
    background: var(--accent-color);
    color:#fff;
    position: absolute;
    top:50%;
    left:-15px;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    outline: none;
}
.slick-arrow.slick-next{
    left:auto;
    right:-15px;
}
/* NAVBAR */
#navbar{
    position: sticky;
    position: -webkit-sticky;
    top:0;
    z-index: 99;
    background: var(--accent-color);
    padding:0;
    box-shadow: 0px 10px 50px -20px #0001;
}
#navbar:before{
    content:"";
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background: url(../images/background/batik-pattern.png) center top;
    background-size: 100px;
    opacity: 0.3;
}
#navbar .container{
    position: relative;
}
.navbar-brand{
    font-weight:bold;
    color:#fff;
}
.navbar-brand img{
    height:60px;
    object-fit: contain;
    margin:0 15px 0 0;
}
#navbar .navbar-nav > li{
    position: relative;
}
#navbar .navbar-nav > li > a{
    transition: .3s ease;
    font-weight:500;
    padding:0 15px;
    line-height: 80px;
    color:#ccc;
}
#navbar .navbar-nav > li > a:hover{
    color:#fff;
}
#navbar .navbar-nav > li.active > a{
    color:#fff;
    font-weight: bold;
    border-bottom: 4px solid var(--accent-color);
}
#navbar .navbar-nav > li > ul{
    position: absolute;
    top:100%;
    left:0;
    transition: .3s ease;
    background: #fff;
    border-radius: 4px;
    display: none;
}
#navbar .navbar-nav > li:hover > ul{
    display: block;
}
#navbar .navbar-nav > li > ul:before{
    content: "";
    position: absolute;
    border:10px solid transparent;
    border-bottom: 10px solid #fff;
    top:-20px;
    left:30px;
}
#navbar .navbar-nav > li > ul > li > a{
    color:#333;
    white-space: nowrap;
    min-width: 200px;
    padding:10px 15px;
}
#navbar .navbar-nav > li > ul > li > a:hover{
    background: #eee;
}
#navbar .navbar-nav > li:nth-child(n+3) > ul{
    left:auto;
    right:0;
}
#navbar .navbar-nav > li:nth-child(n+3) > ul:before{
    left:auto;
    right:30px;
}
.btn-group-lang .btn{
    background:#fff3;
    border:none;
    color:#fff;
}
.btn-group-lang .btn.active{
    background:#fff;
    color:var(--accent-color);
}
#navbar .searchform{
    border-radius: 4px;
    overflow: hidden;
}
/* SECTION */
.slick-dots{
    text-align: center;
    margin-top:30px;
}
.slick-dots li{
    display: inline-block;
}
.slick-dots li button{
    width: 10px;
    height: 10px;
    text-indent: -9999px;
    margin:5px;
    border-radius: 50%;
    border:none;
    background: #0001;
}
.slick-dots li.slick-active button{
    background: #333;
}
.video-player{
    position: relative;
}
.video-player .cover{
    width: 100%;
    border-radius: 10px;
}
.video-player .btn-play{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.section-slider .slick-dots{
    position: absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}
.section-slider .slick-dots li button{
    background: #fff3;
}
.section-slider .slick-dots li.slick-active button{
    background: #fff;
}

footer{
    
}
footer a{
    
}
.nav-social a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin:5px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color:#091526!important;

}
footer .information{
    color:#fff5;
}
.product-tabs .nav-tabs{
    border:none;
}
.product-tabs .nav-link{
    padding:15px 30px;
    font-weight: bold;
    color:#555;
}
.product-tabs .nav-link.active{
    color:#333;
}
.tab-content{
    border:1px solid #ddd;
}
.image-big{
    position: relative;
}
.image-big img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.image-big.video:before{
    content: "\f144";
    font-family: "fontawesome";
    font-size: 60px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    color:#fff;
}
.row-image-thumbnails{
    position: relative;
    margin-top:10px;
}
.row-image-thumbnails .img-thumbs{
    outline: none!important;
}
.img-thumbs[data-type="video"]{
    position: relative;
    display: block;
}
.img-thumbs[data-type="video"]:before{
    content: "\f144";
    font-family: "fontawesome";
    font-size: 30px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    color:#fff;
    z-index: 99;
}
.row-image-thumbnails img{
    height: 100px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
}
.row-image-thumbnails .slick-arrow{
    width: 30px;
    height: 30px;
    border:none;
    background: var(--accent-color);
    color:#fff;
    position: absolute;
    top:50%;
    left:0;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    outline: none;
}
.row-image-thumbnails .slick-arrow.slick-next{
    left:auto;
    right:0;
}
.card-product{
    border:1px solid #ddd;
    text-decoration: none;
    color:#333!important;
    text-decoration: none!important;
    overflow: hidden;
}
.card-product .card-image{
    height: 150px;
    width: 100%;
    object-fit: cover; 
}
.row-destination .slick-arrow{
    position: absolute;
    top:50%;
    left:-40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border:none;
    background: #152B4F;
    color:#fff;
    border-radius: 50%;
    outline: none;
}
.row-destination .slick-arrow.slick-next{
    left:auto;
    right:-40px;
}
.card-destination{
    border:none;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
}
.card-destination .card-image{
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.card-destination .card-img-overlay{
    color:#fff;
    font-weight: bold;
    background:linear-gradient(#0000,#000c);
}
.card-destination .card-img-overlay .label{
    font-size: 14px;
}
.card-destination .card-img-overlay .value{
    font-size: 18px;
}
.pagination .page-link{
    margin:2px;
    border-radius: 4px;
    color:#555;
}
.pagination .page-item.active .page-link{
    background: var(--accent-color);
    color:#fff;
    border-color: transparent;
}
/* RESPONSIVE */
@media (max-width: 768px){
    #navbar .navbar-nav > li > a{
        line-height: 1;
        height: 40px;
        line-height: 40px;
        background: #fff1;
        border:none!important;
    }
    #navbar .navbar-nav > li.active > a{
        background: #fff;
        color:#333;
    }

    
}
@media (max-width: 480px){


    
}