/* RESET */
body{font-family:Arial;margin:0}

/* MENU */
.navbar{background:#0f9d58;border:none;border-radius:0;margin-bottom:0}
.navbar-nav>li>a{color:#fff!important;font-weight:bold;padding:15px 20px}
.navbar-nav>li>a:hover{background:#34c759!important}
.navbar-nav>.active>a{background:#0b7d46!important}
.navbar .navbar-nav{float:none;display:inline-block}
.navbar .container{text-align:center}

/* SLIDER */
.carousel-inner>.item>img{
width:100%;
height:250px;
object-fit:cover
}

/* SIDEBAR */
.sidebar{text-align:center}
.sidebar img{
width:100%;
margin-bottom:10px;
height:120px;
object-fit:cover
}

/* TOUR */
.tour-box{
border:1px solid #eee;
padding:10px;
margin-bottom:20px;
transition:.3s
}
.tour-box:hover{box-shadow:0 5px 15px rgba(0,0,0,.2)}
.tour-box img{
width:100%;
height:180px;
object-fit:cover
}

/* GALLERY */
.gallery img{
width:100%;
height:200px;
object-fit:cover;
margin-bottom:15px;
border-radius:6px;
transition:.3s
}
.gallery img:hover{transform:scale(1.05)}

/* FOOTER */
.footer{
background:#0b7d46;
color:#fff;
padding:30px;
margin-top:40px;
text-align:center
}

.footer a{
color:#d4f5e9;
text-decoration:none;
font-weight:500;
transition:all 0.3s ease;
position:relative;
}

.footer a:hover{
color:#ffffff;
}

.footer a::after{
content:"";
position:absolute;
width:0;
height:2px;
left:0;
bottom:-2px;
background:#ffffff;
transition:0.3s;
}

.footer a:hover::after{
width:100%;
}

.footer a.highlight{
color:#ffe082;
font-weight:600;
}

.footer a.highlight:hover{
color:#fff3b0;
}

/* RESPONSIVE MOBILE & IPAD */
@media(max-width:991px){

.container > .row{
display:flex;
flex-direction:column;
}

/* ORDER */
.col-md-9{order:2}           /* MAIN */
.col-md-3.sidebar{order:4}   /* SIDEBAR LAST */

/* IMAGE SIZE */
.carousel-inner>.item>img{height:180px}
.sidebar img{height:90px}
.tour-box img{height:140px}
.gallery img{height:140px}

}