:root{
    --c-orange: #ff971d;
    --c-blue: #145374;
    --whatsapp: #25d366;
    --bar: 60px;
    --menu: 80px;
    --slide: 400px;
}
@media (min-width: 768px){
    :root{
        --menu: 100px;
        --slide: 500px;
    }
}
body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
html {
	box-sizing: border-box;
	font-size: 62.5%;
	font-size-adjust: 100%;
	margin-right: 0 !important;
	-ms-overflow-style: scrollbar;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}
html,
body {
	height: 100%;
}
body {
	color: #333;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	line-height: 1.5;
    background-image: url(../images/background.svg);
    background-size: cover;
    background-repeat: revert;
}
::-moz-selection {
	background-color: var(--c-orange);
	color: #fff;
}
::selection {
	background-color: var(--c-orange);
	color: #fff;
}
a, a:hover, a:focus{
    text-decoration: none!important;
    outline: none!important;
}
i{
    font-weight: 400!important;
}
figure, address{
    margin: 0;
}
button{
    cursor: pointer;
    outline: none!important;
}
.form-control{
    box-shadow: none!important;
    outline: none!important;
}
.top-bar{
    height: var(--bar);
    background-color: #FFF;
    border-bottom: 1px dashed #EAEAEA;
}
.bar{
    height: var(--bar);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bar-links{
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
.bar-links li:not(:last-child){
    margin-right: 2rem;
}
.bar-links a{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    height: var(--bar);
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
}
.bar-links a:hover, .bar-links a:focus{
    color: var(--c-orange);
}
.bar-right{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    height: var(--bar);
    width: 100%;
}
.bar-social{
    height: 100%;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
@media (min-width: 1200px){
    .bar-right{
        justify-content: flex-end;
        width: auto;
    }
    .bar-social{
        margin-left: 5rem;
    }
}
.bar-social a{
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: .3rem;
    background-color: var(--c-orange);
    color: #FFF;
}
.bar-social a:hover, .bar-social a:focus{
    background-color: var(--c-blue);
    color: #FFF;
}
.bar-social a:not(:first-child){
    margin-left: .5rem;
}
.bar-contact{
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.bar-contact a{
    color: #6c6c6c;
    font-size: 1.7rem;
    font-weight: 900;
}
@media (min-width: 567px){
    .bar-contact a{
        font-size: 1.6rem;
    }
}
@media (min-width: 768px){
    .bar-contact a{
        font-size: 1.7rem;
    }
}
.bar-contact a:not(:first-child){
    margin-left: 2rem;
}
.bar-contact a i{
    margin-right: .5rem;
}
.bar-contact a:first-child i{
    color: var(--c-orange);
}
.bar-contact a:last-child i{
    color: var(--whatsapp);
}
@media (max-width: 350px){
    .bar-contact a{
        font-size: 1.4rem;
    }
    .bar-social a{
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
}
.menu{
    background-color: #FFF;
}
.menu-bar{
    height: var(--menu);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    height: 100%;
    width: auto;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
.logo img{
    width: auto;
    height: 35px;
    object-fit: contain;
    transform: translateY(-5px);
}
@media (min-width: 768px){
    .logo img{
        height: 50px;
    }
}
.main-ul{
    height: 100%;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.main-li{
    height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.main-li:not(:first-child){
    margin-left: 2rem;
}
.main-a{
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.main-a i{
    margin-left: .5rem;
    transition: all .4s ease;
    display: inline-block;
}
.main-li:hover .main-a{
    color: var(--c-orange);
}
.main-li:hover .main-a i{
    transform: rotate(-180deg);
}
.main-a:hover, .main-a:focus{
    color: var(--c-orange);
}
.sub-ul{
    position: absolute;
    padding: 0;
    margin: 0;
    list-style-type: none;
    top: 100%;
    background-color: #FFF;
    z-index: 10;
    left: -3rem;
    right: -3rem;
    display: none;
    transition: all .4s ease-in-out;
    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
}
.main-li:hover .sub-ul{
    display: block;
}
.sub-a{
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1.4rem;
    width: 100%;
    padding: 1rem;
}
.sub-a:hover, .sub-a:focus{
    background-color: var(--c-orange);
    color: #FFF;
}
@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg)
    }
    70% {
        transform: rotateX(20deg) 
    }
    100% {
        transform: rotateX(0deg) 
    }
}
.menu-icon{
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: flex-end;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}
.mobile-menu{
    background-color: #FFF;
    display: none;
}
.mobile-menu ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.mobile-menu li:not(:last-child){
    border-bottom: 1px solid #EAEAEA;
}
.mobile-menu a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
}
@media (min-width: 768px){
    .mobile-menu a{
        font-size: 1.6rem;
    }
}
.drops{
    background-color: #f4f4f4;
    display: none;
}
.drops li{
    padding: 0 1rem;
}
.slide{
    height: var(--slide);
    background-color: #ddd;
    position: relative;
}
.slide .container-fluid{
    padding-left: 0;
    padding-right: 0;
}
.slide-side{
    background-position: center;
    background-repeat: no-repeat;
    height: var(--slide);
    background-size: cover;
    position: relative;
}
.slide-side:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.slide-text{
    height: var(--slide);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 1;
}
.slide-text h1{
    font-size: 3.3rem;
    font-weight: 900;
    color: #FFF;
}
.slide-link{
    background-color: var(--c-orange);
    color: #FFF;
    font-size: 1.4rem;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}
.slide-link:hover, .slide-link:focus{
    color: #FFF;
    background-color: var(--c-blue);
}
@media (min-width: 576px){
    .slide-text{
        width: 80%;
    }
}
@media (min-width: 768px){
    .slide-text h1{
        font-size: 5rem;
    }
    .slide-link{
        padding: 1.5rem 4rem;
    }
}
@media (min-width: 992px){
    .slide-text{
        width: 60%;
    }
}
@media (min-width: 1200px){
    .slide-text{
        width: 60%;
    }
    .slide-text h1{
        font-size: 6rem;
    }
    .slide-link{
        font-size: 1.5rem;
        padding: 1.5rem 4rem;
    }
}
.search{
    padding: 2rem 0;
    margin-top: -9rem;
    position: relative;
    z-index: 1;
}
.search .form-group{
    margin: 0;
    background-color: #FFF;
    padding: 2rem 3rem 4rem 3rem;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.search label{ 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: #333; 
}
.search .form-control{
    font-size: 1.6rem;
    color: #333;
    height: 50px;
    border: 1px solid #F6F6F6;
    background-color: #F6F6F6;
    transition: all .4s ease;
    font-weight: 500;
    padding: 1rem 2rem;
}
.owl-slider .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}
.owl-slider .owl-item.active .slide-link {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 1s;
}
.tours{
    padding: 8rem 0;
}
.tours-head{
    margin-bottom: 3rem;
}
.tours-head h2{
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--c-orange);
    margin: 0;
    text-transform: uppercase;
    display: block;
}
.tours-head p{
    margin-bottom: 0;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    padding-left: 3rem;
    display: inline-block;
}
.tours-head p:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 10px;
    height: 1px;
    background-color: var(--c-orange);
    right: 95%;
    border-radius: 50px;
}
.tours-head p span{
    font-style: italic;
    font-weight: 800;
}
@media (min-width: 576px){
    .tours-head h2{
        font-size: 4rem;
    }
    .tours-head p{
        font-size: 1.8rem;
    }
    .tours-head p:before{
        top: 12px;
        height: 2px;
    }
}
@media (min-width: 768px){
    .tours-head{
        margin-bottom: 3.5rem;
    }
    .tours-head h2{
        font-size: 4.5rem;
    }
    .tours-head p{
        padding-left: 4rem;
    }
    .tours-head p:before{
        height: 1px;
        right: 93%;
    }
}
@media (min-width: 1200px){
    .tours-head{
        margin-bottom: 4.5rem;
    }
    .tours-head p{
        padding-left: 5rem;
        font-size: 2rem;
    }
    .tours-head p:before{
        right: 92%;
        top: 13px;
        height: 2px;
    }
}
.tours-head h2 span{
    color: var(--c-blue);
}
.ribbon {
    position: absolute;
    right: -5px; top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px; height: 75px;
    text-align: right;
}
.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(var(--c-orange) 0%, #c68336 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px; right: -21px;
}
.ribbon span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid #8F5408;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
}
.ribbon span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #8F5408;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
}
.tour-box{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.05);
    border-radius: 0 0 1rem 1rem;
    margin-bottom: 3rem;
}
.tour-image{
    width: 100%;
    height: 220px;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.tour-image a{
    width: 100%;
    height: 100%;
}
.tour-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in-out;
}
.tour-box .content{
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.views{
    display: none;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.tour-box .content h3{
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-blue);
    transition: all .4s ease-in-out;
    flex: 1;
}
.tour-box .content h3:hover, .tour-box .content h3:focus{
    color: var(--c-orange);
}
.tour-box .content h3 a{
    color: inherit;
}
.tour-sub{
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: .5rem;
}
.price{
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--c-orange);
    display: block;
}
.tour-box-bar{
    border-radius: .5rem;
    background-color: #F4F4F4;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem 0;
    height: 40px;
}
.tb-item{
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #787878;
    font-weight: 600;
    position: relative;
}
.tb-item i{
    margin-right: .5rem;
}
.box-time{
    width: 50%;
}
.box-time:before{
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background-color: #333;
    opacity: .1;
}
.box-type{
    width: 50%;
}
.tour-box .content p{
    font-size: 1.6rem;
    color: #757575;
    font-weight: 400;
    line-height: 2.4rem;
    margin: 0;
}
.tour-link{
    margin-top: 1rem;
    display: inline-flex;
    font-size: 1.4rem;
    color: #333;
    border-radius: 0.3rem;
    border: 1px solid #EAEAEA;
    width: 100px;
    height: 45px;
    justify-content: space-evenly;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
}
.tour-link:hover, .tour-link:focus{
    border: 1px solid var(--c-orange);
    background-color: var(--c-orange);
    color: #FFF;
    box-shadow: 0px 15px 25px 0px rgba(255,151,29,.3);
}
.equal [class^="col"]{
    display: flex;
}
.blue-background{
    background-color: #19A7CE;
}
.orange-background{
    background-color: #FC4F00;
}
.red-background{
    background-color: #FF0303;
}
.boxes{
    padding: 5rem 0;
}
.boxes a{
    width: 100%;
    height: 80px;
    border-radius: .5rem;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
@media (min-width: 768px){
    .boxes a{
        margin-bottom: 0;
        height: 60px;
    }
}
@media (min-width: 1200px){
    .boxes a{
        font-size: 2rem;
        height: 80px;
    }
}
.box-icon{
    height: 100%;
    width: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.05);
}
.boxes span{
    display: inline-flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    width: calc(100% - 80px);
}
@media (min-width: 768px){
    .box-icon{
        width: 50px;
        font-size: 2.4rem;
    }
    .boxes span{
        width: calc(100% - 50px);
    }
}
@media (min-width: 992px){
    .box-icon{
        width: 80px;
        font-size: 2.8rem;
    }
    .boxes span{
        width: calc(100% - 80px);
    }
}
#footer{
    padding: 3rem 0 4rem 0;
    background-color: #F6F6F6;
}
.f-box{
    margin-bottom: 2rem;
}
.f-box h4{
    font-size: 1.6rem;
    font-weight: 800;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 1.6rem;
}
.f-box h4:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 50px;
    background-color: var(--c-blue);
    width: 25px;
}
.f-box h4:after{
    content: "";
    position: absolute;
    left: 30px;
    bottom: -10px;
    height: 2px;
    border-radius: 50px;
    background-color: var(--c-orange);
    width: 15px;
}
.f-box ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.f-box ul li{
    padding: .5rem 0;
}
.f-box ul li a{
    font-size: 1.4rem;
    color: #333;
    display: block;
    opacity: .8;
    font-weight: 500;
    transition: all .4s ease-in-out;
}
.f-box ul li:hover a{
    opacity: 1;
    padding-left: .5rem;
    color: var(--c-orange);
}
.f-box ul li a:hover, .f-box ul li a:focus{
    opacity: 1;
    padding-left: .5rem;
    color: var(--c-orange);
}
.f-tursab{
    text-align: center;
}
.tursab{
    width: auto;
    height: 100px;
}
.footer-logo{
    width: 100%;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    text-align: center;
}
.footer-logo img{
    width: auto;
    height: 45px;
    object-fit: contain;
}
.footer-logo-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    border-top: 1px dashed #ddd;
    padding-top: 2rem;
    margin-top: 4rem;
    flex-direction: column;
}
.pay-logo{
    height: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}
.pay-logo-item{
    height: 100%;
    width: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.pay-logo-item:not(:last-child){
    margin-right: 2rem;
}
.pay-logo-item img{
    filter: grayscale(20%);
}
.logo1 img{
    width: auto;
    height: 30px;
}
.logo2 img{
    width: auto;
    height: 20px;
}
.logo3 img{
    width: auto;
    height: 30px;
}
.pay-text{
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.pay-text p{
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}
.pay-text a{
    color: var(--c-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}
.pay-text a:hover{
    color: var(--c-orange);
}
@font-face{
    font-family: pill;
    src: url(../fonts/magnolia_sky.ttf);
}
.dip{
    padding: 1.5rem 0 .5rem 0;
    text-align: center;
    background-color: #333;
}
.dip a{
    font-size: 1.8rem;
    color: #FFF;
    font-family: pill;
}
@media (min-width: 576px){
    .footer-logo{
        text-align: left; 
    }
}
@media (min-width: 768px){
    .f-tursab{
        text-align: left;
    }
    .tursab{
        height: 80px;
    }
    .pay-logo{
        margin-bottom: 0;
    }
    .footer-logo-bar{
        justify-content: space-between;
        flex-direction: inherit;
        height: 80px;
    }
    .logo1 img{
        width: auto;
        height: 30px;
    }
    .logo2 img{
        width: auto;
        height: 20px;
    }
    .logo3 img{
        width: auto;
        height: 25px;
    }
    .pay-logo-item:not(:last-child){
        margin-right: 2rem;
    }
    .pay-text{
        justify-content: flex-end;
        text-align: right;
    }
    .pay-text p{
        font-size: 1.4rem;
    }
}
@media (min-width: 1200px){
    .f-box h4{
        font-size: 1.8rem;
    }
    .f-box ul li a{
        font-size: 1.6rem;
    }
    .footer-logo img{
        height: 50px;
    }
    .tursab{
        height: auto;
        width: 100%;
    }
    .pay-logo-item:not(:last-child){
        margin-right: 3rem;
    }
    .logo1 img{
        width: auto;
        height: 40px;
    }
    .logo2 img{
        width: auto;
        height: 30px;
    }
    .logo3 img{
        width: auto;
        height: 35px;
    }
    .pay-text p{
        font-size: 1.6rem;
    }
}
#loader{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
}
#loader img{
    width: auto;
    height: 100px;
    transition: all .4s ease-in-out;
    animation: spin 3s linear infinite
}
@media (min-width: 768px){
    #loader img{
        height: 120px;
    }
}
@keyframes spin{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(-360deg);
    }
}
.breads{
    box-shadow: 0px 15px 10px -15px #ddd;
    background-color: #FFF;
    border-top: 1px solid #EAEAEA;
}
.breads ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.breads ul li{
    height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.breads ul li:not(:last-child){
    margin-right: 2rem;
    padding-right: .5rem;
}
.breads ul li:not(:last-child):before{
    content: "\EA6E";
    font-family: "remixicon";
    position: absolute;
    right: -13px;
    top: 21px;
    color: #333;
    font-size: 1.2rem;
}
.breads ul li a{
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}
@media (min-width: 400px){
    .breads ul li a{
        font-size: 1.2rem;
    }
}
@media (min-width: 576px){
    .breads ul li a{
        font-size: 1.4rem;
    }
}
.breads ul .active a{
    color: var(--c-orange);
    font-weight: 700;
}
.p-settings{
    padding: 8rem 0;
    min-height: 50vh;
}
.general-head{
    margin-bottom: 2rem;
}
.general-head h1, .general-head h2{
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--c-blue);
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}
.general-text p{
    font-size: 1.4rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}
@media (min-width: 576px){
    .general-head h1, .general-head h2{
        font-size: 4rem;
    }
    .general-text p{
        font-size: 1.6rem;
    }
}
@media (min-width: 768px){
    .general-head h1, .general-head h2{
        font-size: 4.5rem;
    }
    .breads ul li a{
        font-size: 1.6rem;
    }
    .breads ul li:not(:last-child):before{
        right: -15px;
        top: 20px;
        color: #333;
        font-size: 1.4rem;
    }
}
.alert{
    padding: 1.5rem 2rem;
}
.details-box h1{
    margin-bottom: 0.5rem;
    color: var(--c-blue);
    font-size: 4rem;
    font-weight: 900;
}
.wdt-40{
    width: 320px;
}
.details-sub-head{
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--c-blue);
    margin-bottom: .5rem;
}
.details-text{
    padding: 1rem 0;
}
.details-text p{
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    line-height: 2.7rem;
}
.details-text b{
    color: var(--c-blue);
    font-style: italic;
    font-weight: 700;
}
.details-image{
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 1rem;
    margin: 2rem 0;
    row-gap: 1rem;
}
@media (min-width: 768px){
   .details-image{
        height: 280px;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 0;
   } 
}
.image-item{
    height: 100%;
    width: 100%;
    background-color: #F4F4F4;
    border-radius: .5rem;
    overflow: hidden;
    cursor: pointer;
}
.image-side2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
}
.image-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sticky{
    position: sticky;
    top: 1rem;
}
.booking{
    background-color: #FFF;
    border-radius: 1rem;
    box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.05);
    overflow: hidden;
}
.booking-price{
    background-color: var(--c-orange);
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
}
.booking-price h3{
    margin: 0;
    font-size: 2.4rem;
    font-weight: 900;
    color: #FFF;
}
.booking-price h3 small{
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
}
.booking-form{
    padding: 0 2rem 2rem 2rem;
    background-color: #FFF;
}
.flex-form-group{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-form-group label{
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    width: 60px;
}
.flex-form-group .form-control{
    border: 1px solid #EAEAEA;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    height: 40px;
    border-radius: .4rem;
    width: calc(100% - 60px);
}
.flex-form-group select.form-control{
    height: 40px!important;
}
.flex-form-group2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-form-group2:not(:last-child){
    margin-bottom: 1rem;
}
.flex-form-group2 label{
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    width: calc(100% - 150px);
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
.flex-form-group2 label span{
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
}
.flex-number{
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
}
.flex-number .form-control{
    border: 1px solid #EAEAEA;
    font-size: 1.6rem;
    border-radius: 0.4rem;
    height: 40px;
    width: 40px;
    text-align: center;
    margin: 0 1rem;
}
.number-control{
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    border: none;
    background-color: transparent;
}
.booking-sub{
    font-weight: 700;
    color: #333;
    font-size: 1.6rem;
    font-style: italic;
    margin: 2rem 0;
    display: block;
}
.total-box{
    border-top: 1px dashed #eaeaea;
    margin-top: 2rem;
    padding: 2rem 0 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-box span{
    font-size: 1.4rem;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-style: italic;
    display: inline-block;
}
.total-box h4{
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    color: #333;
}
.rezervasyon-button{
    width: 100%;
    height: 45px;
    display: block;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 1rem;
    background-color: var(--c-orange);
    color: #FFF;
    transition: all .4s ease-in-out;
}
.rezervasyon-button:hover{
    color: #FFF;
    background-color: var(--c-blue);
}
.help-box{
    background-color: #FFF;
    border-radius: 1rem;
    box-shadow: 0px 15px 25px 0px rgba(0,0,0,0.05);
    padding: 3rem;
    margin-top: 2rem;
}
.help-box h3{
    font-size: 2rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
}
.help-box p{
    font-size: 1.6rem;
    color: #333;
    opacity: .8;
}
.help-box a{
    display: block;
    width: 100%;
    font-size: 1.6rem;
    color: #333;
    font-weight: 800;
}
.help-box a:not(:last-child){
    margin-bottom: 1rem;
}
.help-box span{
    font-weight: 900;
    color: var(--c-blue);
    display: block;
    font-size: 1.4rem;
    margin-bottom: .3rem;
}
.r-alert{
    margin-top: 2rem;
    color: #333;
    font-weight: 700;
    font-style: italic;
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
}
.rezervasyon{
    padding: 8rem 0;
}
.rezervasyon-info h2{
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--c-blue);
}
.rezervasyon-info p{
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
}
.rezervasyon-info h3{
    background-color: var(--c-orange);
    color: #FFF;
    border-radius: 0.2rem;
    padding: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.rezervasyon-info select{
    height: 45px!important;
}
.rezervasyon-info label{
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
}
.rezervasyon-info .form-control{
    height: 45px;
    border: 1px solid #EAEAEA;
    color: #333;
    font-size: 1.6rem;
    font-weight: 400;
}
.btn-con{
    border-radius: 0.4rem;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: var(--c-blue);
    color: #FFF;
    transition: all .4s ease-in-out;
    margin-top: 1rem;
    display: inline-block;
    margin-bottom: 4rem;
}
@media (min-width: 768px){
    .btn-con{
        margin-bottom: 0;
    }
}
.btn-con:hover{
    color: #FFF;
    background-color: var(--c-orange);
}
.r-total-price{
    margin-bottom: 2rem;
    background-color: #F4F4F4;
    display: inline-block;
    border-radius: 0.4rem;
    padding: 2rem;
    font-size: 1.6rem;
    font-weight: 500;
}
.r-total-price span{
    font-weight: 800;
    font-style: italic;
}
.kurumsal-sub{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
    column-gap: 1rem;
    flex-wrap: wrap;
    row-gap: 1rem;
}
.kurumsal-sub a{
    font-size: 1.6rem;
    color: #333;
    font-weight: 700;
    width: 100%;
    text-align: center;
    border: 1px solid #EAEAEA;
    padding: 1.2rem 0;
}
.kurumsal-sub a:hover, .kurumsal-sub a:focus{
    border: 1px solid var(--c-orange);
    color: #FFF;
    background-color: var(--c-orange);
}
@media (min-width: 768px){
    .kurumsal-sub{
        flex-wrap: nowrap;
        row-gap: 0;
    }
    .kurumsal-sub a{
        font-size: 1.3rem;
    }
}
@media (min-width: 992px){
    .kurumsal-sub a{
        font-size: 1.6rem;
    }
}
.video-box{
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.video-img{
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.video-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-box .content{
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.video-box .content h2{
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-blue);
    margin: 0;
}
.video-box .content h2 a{
    color: inherit;
    font-size: inherit;
}
.video-box .content h2:hover{
    color: var(--c-orange);
}
.s-results{
    margin-top: 1rem;
    padding: 0;
    list-style-type: none;
    display: none;
}
.s-results li:not(:last-child){
    border-bottom: 1px solid #EAEAEA;
}
.s-results li a{
    font-size: 1.6rem;
    color: var(--c-blue);
    width: 100%;
    display: block;
    padding: 1rem 0;
    font-weight: 600;
}
.s-results li a:hover{
    color: var(--c-orange);
}
.table-head{
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    color: var(--c-blue);
}
.table-head span{
    color: var(--c-orange);
}
#tur-takvimi{
    margin-bottom: 2rem;
    border-collapse: collapse;
    width: 100%;
    background-color: #FFF;
}
#tur-takvimi td,th{
    padding: 1rem;
    border: 1px solid #EAEAEA;
    font-size: 1.6rem;
}
.centered{
    text-align: center;
}
#tur-takvimi a{
    color: inherit;
}
#tur-takvimi a:hover{
    color: var(--c-orange);
}
@media (max-width: 767px){
    #tur-takvimi tr:first-child{
        display: none;
    }
    #tur-takvimi tr{
        display: block;
        margin-bottom: 2rem;
    }
    #tur-takvimi td{
        display: grid;
        gap: .5rem;
        grid-template-columns: repeat(2, 1fr);
        text-align: right;
        font-size: 1.4rem;
        margin-bottom: .5rem;
    }
    #tur-takvimi tr:nth-child(2n) td{
        background-color: #F2F2F2;
    }
    #tur-takvimi th{
        display: none;
    }
    #tur-takvimi td:before{
        content: attr(data-cell) ": ";
        font-weight: 700;
        text-transform: capitalize;
        text-align: left;
        height: 100%;
        display: inline-block;
        width: 50%;
        border-right: 1px solid #DDD;
    }
}
.takvim-filter{
    border-radius: .4rem;
    background-color: #FFF;
    margin-bottom: 3rem;
    margin-top: -2.5rem;
    width: 100%;
    position: relative;
    display: inline-block;
}
@media (min-width: 768px){
    .takvim-filter{
        width: 50%;
    }
}
@media (min-width: 1200px){
    .takvim-filter{
        width: 35%;
    }
}
.takvim-filter .form-group{
    margin-bottom: 0;
}
.takvim-filter .form-control, select{
    height: 45px!important;
    font-size: 1.6rem;
    color: #333;
    border: 1px solid #EAEAEA;
}
.head-span{
    font-size: 1.8rem;
    color: #333;
    font-style: italic;
    display: block;
    margin-top: 1.5rem;
}
.parallax{
    padding: 0 0 8rem 0;
}
.parallax-box{
    background-image: url(../../layout/images/parallax.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    padding: 0 2rem 2rem 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.parallax-box:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,8,20);
    background: linear-gradient(200deg, rgba(0,8,20,0) 0%, rgba(0,8,20,1) 100%);
}
.parallax-index{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.parallax-index h2{
    color: #FFF;
    font-size: 4rem;
    font-family: 'Hurricane', cursive;
    margin-bottom: 1rem;
}
@media (min-width: 576px){
    .parallax-index{
        width: 80%;
    }
}
@media (min-width: 768px){
    .parallax-box{
        padding: 0 5rem 2rem 5rem;
    }
    .parallax-index{
        width: 60%;
    }
    .parallax-index h2{
        font-size: 4rem;
    }
}
@media (min-width: 1200px){
    .parallax-index{
        width: 40%;
    }
    .parallax-index h2{
        font-size: 6rem;
    }
}
.parallax-index p{
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .8);
    font-style: italic;
    margin-bottom: 1rem;
}
.parallax-index .form-control{
    background-color: rgba(255, 255, 255, .2);
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    height: 50px;
    border: none!important;
    outline: none!important;
}
.bulten{
    margin-top: 1.2rem;
    border-radius: 0.4rem;
    border: none;
    color: #FFF;
    width: 120px;
    height: 40px;
    background-color: var(--c-blue);
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;
}
.bulten:hover, .bulten:focus{
    color: #FFF;
    background-color: var(--c-orange);
}
.galeri-box{
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.galeri-image{
    width: 100%;
    height: 200px;
    border-radius: .5rem;
    overflow: hidden;
}
.galeri-box:hover .galeri-image img{
    transform: scale(1.1);
}
.galeri-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}
.galeri-box .content{
    padding: 2rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.galeri-box .content h3{
    color: var(--c-blue);
    font-size: 1.8rem;
    font-weight: 700;
    transition: all .4s ease-in-out;
}
.galeri-box .content h3:hover{
    color: var(--c-orange);
}
.galeri-box .content h3 a{
    color: inherit;
}
.bulten-sonuc{
    font-size: 1.6rem;
    color: var(--c-orange);
    margin-top: 1rem;
    display: none;
}
.blog{
    padding: 3rem 0 8rem 0;
}
.blog-box{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.blog-box-image{
    width: 100%;
    height: 280px;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1200px){
    .blog-box-image{
        height: 220px;
    }
}
.blog-box-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-box .content{
    padding: 2rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.blog-box .content h3{
    color: var(--c-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.blog-box .content h3:hover{
    color: var(--c-orange);
}
.blog-box .content h3 a{
    color: inherit;
}
.blog-box .content p{
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #333;
    flex: 1;
}
.blog-link{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--c-blue);
}
.blog-link:hover, .blog-link:focus{
    color: var(--c-orange);
}
.date{
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    width: 50px;
    height: 80px;
}
.date span{
    display: block;
    font-size: 1.6rem;
    color: #333;
}
.gun{
    font-weight: 600;
}
.ay{
    font-weight: 800;
}
.owl-blog .owl-stage{
    display: flex;
}
.owl-blog .owl-item{
    display: flex;
}
.i-box{
    margin-bottom: 2rem;
}
@media (min-width: 1200px){
    .i-box{
        margin-bottom: 0;
    }
}
.i-box h3{
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-blue);
    margin-bottom: 1rem;
}
.i-box ul{
    border-left: 2px solid #EAEAEA;
    position: relative;
    margin: 0;
    padding: 0 0 0 1rem;
    list-style-type: none;
}
.i-box li{
    padding: 1rem;
}
.i-box span{
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}
.i-box a{
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    display: block;
}
.i-box a:hover{
    color: var(--c-orange);
}
.i-box label{
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
}
.i-box .form-control{
    height: 50px;
    font-size: 1.6rem;
    color: #333;
    border: 1px solid #EAEAEA;
}
.i-box textarea{
    height: auto!important;
    padding: 1rem;
}
.btn-contact{
    border-radius: .4rem;
    font-size: 1.8rem;
    color: #FFF;
    background-color: var(--c-blue);
    padding: .8rem 3rem;
    border: none;
}
.btn-contact:hover{
    color: #FFF;
    background-color: var(--c-orange);
}
@media (min-width: 768px){
    .i-box h3{
        font-size: 3rem;
    }
    .i-box span{
        font-size: 2rem;
    }
    .i-box a{
        font-size: 1.8rem;
    }
}
.rform{
    padding: 2rem;
    background-color: #FBFBFB;
}
@media (min-width: 768px){
    .rform{
        padding: 5rem;
    }
}
.rform .form-control{
    height: 50px;
    border: 1px solid #EAEAEA;
    font-size: 1.6rem;
    color: #333;
}
.rform label{
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
}
.rform select{
    height: 50px!important;
}
.rform textarea{
    height: auto!important;
    padding: 1rem;
}
.rezervasyon-grid{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 4rem;
    margin: 1rem 0;
}
.r-grid-item{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
.r-grid-item label{
    margin: 0;
    padding-left: .5rem;
    font-size: 1.6rem;
    color: #333;
    font-weight: 500;
}