@import url('https://fonts.googleapis.com/earlyaccess/notosanskufiarabic.css');
@font-face {
    font-family: 'arabswell_1';
    src: url('../fonts/arabswell_1.woff2') format('woff2'),
        url('../fonts/arabswell_1.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
body{
    font-family: 'Noto Sans Kufi Arabic', sans-serif;
    font-size: 14px;
    color: #212121;
}

/***
Custom Scrollbars
***/
::-webkit-scrollbar {  
    width: 12px;  
}  
::-webkit-scrollbar-track {  
    background-color: #eaeaea;  
    border-right: 1px solid #cecece;  
}  
::-webkit-scrollbar-thumb {  
    background-color: #cecece;  
}  
::-webkit-scrollbar-thumb:hover {  
    background-color: #aaa;  
}  
::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

/*Selection*/
::selection {
    color: #ffffff;
    background: #3fd0d4;
}

:root {
  --animate-duration: 1s;
}
/*fadeInLeft*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


/*fadeInRight*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

a {
    transition: all .35s;
    text-decoration: none !important;
    color: #303030;
}

/*.btn:hover{
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%) !important;
}*/

.topbar{
    background: #212121;
    font-size: 13px;
    color: #ffffff;
}
.topbar .topbar-right .btn{
    font-size: 13px;
    background: #3fd0d4;
    color: #ffffff;
    border-radius: 0;
    padding: 10px 20px;
}
.topbar .topbar-right .dropdown-toggle{
    background: #36c4c8;
}
.topbar .topbar-right .list-inline>li:first-child{
    margin: 0 0 0 -4px;
}

.topbar .list-inline>li{
    margin-left: 20px;
}
.topbar .list-inline>li:last-child{
    margin-left: 0;
}
.topbar .list-inline>li>a{
    color: #ffffff;
}
.topbar .list-inline>li>a>i{
    margin-left: 5px;
}
.topbar .list-inline>li>a:not(.btn):hover{
    color: #3fd0d4;
}
.social>a{
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background: #5f6161;
    color: #ffffff;
    font-size: 10px;
    border-radius: 50%;
}
.social>a:hover{
    background: #3fd0d4;
    color: #ffffff !important;
}
.social>a>i{
    margin: 0 !important;
}

.topbar-left .list-inline li,
.footer-top .list-inline li{
    position: relative;
}
.topbar-left .list-inline li::after,
.footer-top .list-inline li::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 16px;
    left: -12px;
    top: 2px;
    background: rgba(255, 255, 255, 0.4);
}
.topbar-left .list-inline li:last-child::after,
.footer-top .list-inline li:last-child::after{
    display: none;
}

@media (min-width: 768px){
    .navbar.stuck .navbar-brand img{
        width: 120px;
    }
    header .dropdown-menu {
        display: block;
        background: rgba(255, 255, 255, 1);
        border: none;
        border-radius: 0;
        min-width: 100px;
        padding: 5px 0;
        box-shadow: 0 2px 2px rgba(0,0,0,.06);
        
        visibility: hidden;
        opacity: 0;
        -webkit-transform: rotateX(90deg);
        -moz-transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        transform: rotateX(90deg);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -o-transition: 0.3s;
        transition: 0.3s;
        -ms-transition: 0.3s;
        -moz-transition: 0.3s;
        -webkit-transition: 0.3s;
    }
    header .dropdown:hover .dropdown-menu{
        visibility: visible;
        opacity: 1;
        -webkit-transform: rotateX(0);
        -moz-transform: rotateX(0);
        -ms-transform: rotateX(0);
        transform: rotateX(0);
    }
    header .dropdown-menu .dropdown-item{
        font-size: 14px;
        color: #303030;
        font-weight: 400;
        padding: 7px 15px;
        border-bottom: 0;
    }
    header .dropdown-menu .dropdown-item:hover,
    header .dropdown-menu .dropdown-item:focus,
    header .dropdown-menu .dropdown-item:active{
        background-color: #FAFAFA;
        color: #041A31;
    }
    .navbar .navbar-nav .nav-link::after{
        display: none;
    }
}


.stuck {
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 999;
    width: 100%;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-name: fixedHeader;
    animation-name: fixedHeader;
} 

@keyframes fixedHeader {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fixedHeader {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cover{
    background-color: #3fd0d4;
    background-image: url(../images/cover-bg.jpg);
    background-size: cover;
    padding: 30px 0 150px;
}

.search-area{
    background-color: rgba(14, 14, 14, 0.5);
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0 30px;
}
.search-area .nav-tabs{
    border-bottom: 0;
    margin-bottom: 30px;
}
.search-area .nav-tabs .nav-item{
    margin-left: 30px;
}
.search-area .nav-tabs .nav-link{
    padding: 10px 0;
    color: #ffffff;
    border: 0;
    border-radius: 0;
}
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
    background-color: transparent;
    border-bottom: 3px solid #3fd0d4;
}
.search-area .nav-tabs .nav-link label{
    margin-right: 5px;
}
.form-check-input:checked {
    background-color: #3fd0d4;
    border-color: #3fd0d4;
}

.trip-from,
.trip-to{
    background: #ffffff;
    padding: 23px 15px;
    border-radius: 5px;
}
.trip-from label,
.trip-to label{
    padding-right: 30px;
}
.trip-from .form-control,
.trip-to .form-control,
.trip-datepicker .form-control,
.trip-passengers .form-control{
    border: 0;
    box-shadow: none !important;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    padding-right: 55px;
}
.trip-from .form-control{
    background: url(../images/icons/input-from.png) right center no-repeat;
}
.trip-to .form-control{
    background: url(../images/icons/input-to.png) right center no-repeat;
}

.trip-datepicker,
.trip-passengers{
    background: #3a404e;
    text-align: center;
    color: #ffffff;
    height: 100px;
    padding: 10px 20px;
    border-radius: 5px;
}
.trip-datepicker i,
.trip-passengers i{
    font-size: 35px;
}
.trip-datepicker .form-control,
.trip-passengers .form-control{
    text-align: center;
    color: #ffffff;
    padding: 0;
    margin-top: 10px;
}
.trip-datepicker .form-control::placeholder,
.trip-passengers .form-control::placeholder{
    color: rgba(255, 255, 255, 0.7);
}

.search-area .tab-content .btn{
    height: 100px;
    border-radius: 5px;
    width: 100%;
    background-color: #3fd0d4;
    color: #ffffff;
    font-size: 35px;
}
.search-area .tab-content .btn:hover{
    background: #36c4c8;
}

.services-bar{
    padding: 0 15px;
}
.services-bar>div{
    position: relative;
}
.services-bar>div:before,
.services-bar>div:after{
    content: "";
    height: 4px;
    background: #ffffff;
    position: absolute;
    top: 23px;
    width: 50%;
}
.services-bar>div:before{
    right: 0;
}
.services-bar>div:after{
    left: 0;
}
.services-bar>div>a{
    color: #ffffff;
    font-weight: 700;
}
.service-icon{
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    background: #3fd0d4;
    color: #ffffff;
    text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
    z-index: 99;
    overflow: hidden;
}

.services-bar>div>a:hover .service-icon img,
.services-bar>div>a:hover .service-icon i{
    -webkit-animation: toRightFromLeft 0.3s forwards;
    -moz-animation: toRightFromLeft 0.3s forwards;
    animation: toRightFromLeft 0.3s forwards;
}
@-webkit-keyframes toRightFromLeft {
	49% {
		-webkit-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toRightFromLeft {
	49% {
		-moz-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toRightFromLeft {
	49% {
		transform: translate(100%);
	}
	50% {
		opacity: 0;
		transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}

.banners{
    margin-top: -60px;
}
.banner-item{
    background: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(35, 31, 32, 0.48);
    border-radius: 10px;
    overflow: hidden;
}
.banner-item img{
    max-width: 100%;
    transition: all 0.5s;
}
.banner-item:hover img{
    transform: scale(1.1);
}

/*Owl Override*/
.owl-theme .owl-dots{
    padding: 20px 0 0;
    text-align: center;
}
.owl-theme .owl-dots .owl-dot{
    display: inline-block;
}
.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #3fd0d4;
    border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span{
    background: #28adb1;
}
.owl-carousel .owl-nav .owl-next, 
.owl-carousel .owl-nav .owl-prev{
    color: #cbcbcb;
    font-size: 22px;
    position: absolute;
    top: 50%;
    margin-top: -40px;
}
.owl-carousel .owl-nav .owl-next{
    right: -20px;
}
.owl-carousel .owl-nav .owl-prev{
    left: -20px;
}
.owl-carousel .owl-nav .owl-next:hover, 
.owl-carousel .owl-nav .owl-prev:hover{
    color: #3fd0d4;
}

.owl-carousel .owl-item{
    padding: 10px;
}

.section{
    padding: 100px 0;
}
.sec-head{
    text-align: center;
    margin-bottom: 30px;
}
.sec-head h5{
    font-size: 24px;
    color: #16e5eb;
    font-family: 'arabswell_1';
    margin-bottom: 15px;
}
.sec-head h2{
    color: #212121;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 20px;
}
.sec-head p{
    font-size: 19px;
    color: #212121;
    line-height: 35px;
}

.destination-item{
    display: block;
    overflow: hidden;
    position: relative;
    background: #212121;
    box-shadow: 0px 0px 10px 0px rgba(126, 126, 126, 0.32);
    border: 1px solid #f4f4f4;
    border-radius: 10px;
    margin-bottom: 30px;
}
.destination-item img{
    max-width: 100%;
    opacity: 0.8;
    transition: all 0.5s;
}
.destination-item:hover img{
    transform: scale(1.1);
}
.destination-item .caption{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
}
.destination-item .caption h3{
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.destination-item .caption-centered{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    inset: 0;
}
.destination-item .caption-centered h3{
    font-family: 'arabswell_1';
    font-size: 45px;
    font-weight: 100;
}

.owl-carousel .owl-item .destination-item{
    margin-bottom: 0;
}

.videos{
    background-color: #3fd0d4;
    background-image: url(../images/videos-bg.jpg);
    background-size: cover;
}
.video-wrap{
    position: relative;
    bottom: -40px;
    margin-top: -40px;
}
.video-wrap > a {
    display: block;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 72px;
    background: #3fd0d4;
    color: #ffffff;
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -35px;
    border-radius: 50%;
}
.video-wrap > a:hover{
    background: #ffffff;
    color: #3fd0d4;
}
/*div.pp_pic_holder{
    direction: ltr;
}*/

.register-sec{
    background: #3fd0d4;
    padding: 30px 0;
}
.register-sec h2{
    color: #ffffff;
    font-size: 20px;
}
.register-sec .btn{
    background: #f8f8f8;
    color: #212121;
}

footer{
    font-size: 14px;
    color: #ffffff;
}
.footer-top{
    background: #242424;
    padding: 50px 0;
}
.footer-top .social>a{
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 18px;
}
.footer-top .list-inline li{
    margin-left: 20px;
}
.footer-top .list-inline li a{
    color: #ffffff;
}
.footer-top .list-inline li a:hover{
    color: #3fd0d4;
}

.footer-bottom{
    background: #212121;
    padding: 20px 0;
}
.footer-bottom .copyrights{
    font-size: 12px;
    line-height: 25px;
}
.footer-bottom .copyrights>a{
    color: #ffffff;
}


/*Preloader*/
#loading{
	background-color: #ffffff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	margin-top: 0px;
	top: 0px;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 150px;
	width: 150px;
	margin-top: -75px;
	margin-left: -75px;
}
.object{
	width: 20px;
	height: 20px;
	background-color: #3fd0d4;
	float: left;
	margin: 0 10px;
	margin-top: 65px;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
}

#object_one {	
	-webkit-animation: object_one 1.5s infinite;
	animation: object_one 1.5s infinite;
	}
#object_two {
	-webkit-animation: object_two 1.5s infinite;
	animation: object_two 1.5s infinite;
	-webkit-animation-delay: 0.25s; 
    animation-delay: 0.25s;
	}
#object_three {
    -webkit-animation: object_three 1.5s infinite;
	animation: object_three 1.5s infinite;
	-webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
	
	}

@-webkit-keyframes object_one {
75% { -webkit-transform: scale(0); }
}

@keyframes object_one {

  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }

}


@-webkit-keyframes object_two {
 

  75% { -webkit-transform: scale(0); }


}

@keyframes object_two {
  75% { 
    transform: scale(0);
    -webkit-transform:  scale(0);
  }

}

@-webkit-keyframes object_three {

  75% { -webkit-transform: scale(0); }

}

@keyframes object_three {

  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  
}