/*!
 * Start Bootstrap - Shop Item HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

@font-face {
	font-family: arial;
	src: url(../fonts/arial.ttf);
}
@font-face {
	font-family: aptos;
	src: url(../fonts/aptos-light.ttf);
}

* {
	font-family: aptos;
}
body, html {
	padding: 0px;
	margin: 0px;
}
.dcolor{
	color: #fb9f22;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.upper {
	text-transform: uppercase !important;
}
.capitalize {
	text-transform: capitalize !important;
}
.m-0 {
	margin: 0px !important;
}
.mt-0 {
	margin-top: 0px !important;
}
.mt-20{
	margin-top: 20px;
}
.mb-20{
	margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6
{
    font-weight: 500;
    color: #010202;
}
a {
	text-decoration: none;
}
a:hover{
}
ul, ol {
	margin: 0px;
	padding: 0px;
}
.center {
	width: 98%;
	margin: auto;
	position: relative;
}
.left {
	float: left !important;
}
.right {
	float: right !important;
}
.dBorder{
    border: 1px solid #007300;
    box-sizing: border-box;
}
.bold {
	font-weight: bold;
}
body{
    background-image: -moz-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
}
.container {
	width: 100%;
	max-width: 1980px;
	margin: auto;
	position: relative; 
	overflow: hidden;
	

}
.innerContainer {
	width: 99%;
	margin: auto;
	/*left: 50%;
	transform: translateX(-50%);
	margin: 0px 0px 20px 0px;
	overflow: hidden;*/
	
}
header, section, footer, .row {
	width: 100%;
	float: left;
	position: relative;
}
.half {
	width: 50%;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: -moz-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);

}

.logo {
	margin: 10px 0px 10px 30px;
}
.logo img {
	width: 230px;
}
.logo img:hover{
    animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  60%  { transform: translateY(0px); }
  80%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}


.contactBox {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    z-index: 9999;
    position: relative;
    margin: 0px 30px 0px 0px;
}
.phone, .email {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone svg, .email svg {
    width: 20px;
    margin-right: 5px;
    fill: #fb9f22;
}
.phone path{
    fill: #fb9f22 !important;
}
.contactBox a {
    color: #3a3a3a;
    font-size: 15px;
    text-decoration: none;
    transition: all ease 0.3s;
    display: block;
}
.contactBox a:hover{
    font-weight: bold;
}

.navSec {
    
}
.nav {
	background-image: -moz-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);

}
.nav ul {
	list-style: none;
	text-align: right;
}
.nav ul li {
	display: inline-block;
	position: relative;
	text-align: center;
	list-style: none;
	margin: 0px 0px 0px 20px;
	line-height: 30px;
}
.nav ul li a {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	padding: 0px;
	position: relative;
	letter-spacing: 1px;
	transition: all .5s ease;
	text-transform: uppercase;
	cursor: pointer;
	display: block;
	
	 background-image: linear-gradient(
    to right,
    #fb9f22,
    #fb9f22 50%,
    #fff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
.nav ul li a:before{
  content: '';
  background: #fb9f22;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.nav ul li a:hover {
	background-position: 0;
}
.nav ul li a:hover::before{
  width: 100%;
}

.nav ul li .active {
	background-image: linear-gradient(
    to right,
    #fb9f22,
    #fb9f22 50%,
    #fff 50%
  );
  background-size: 200% 100%;
  background-position: 0;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
.nav ul li a.active:before{
  content: '';
  background: #fb9f22;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
.dropdown {
    span {
        font-size: 12px;
    }
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ce8c3f;
    list-style: none;
    top: 30px;
    left: 0;
    width: auto;
    white-space: nowrap;
    padding: 5px 15px 0px 15px;
    margin: 0;
    z-index: 9999;
    background-image: -moz-linear-gradient(0deg, rgb(1 2 2) 0%, rgb(1 2 2) 12%, rgb(1, 2, 2) 61%, rgb(1, 2, 2) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(1 2 2) 0%, rgb(1 2 2) 12%, rgb(1, 2, 2) 61%, rgb(1, 2, 2) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(1 2 2) 0%, rgb(1 2 2) 12%, rgb(1, 2, 2) 61%, rgb(1, 2, 2) 100%);
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    float: left;
    position: relative;
    width: 100%;
    text-align: left !important;
    margin: 0px !important;
}
.active {
}
.hidden{
    transform: translateY(-100%);
    /*
    display: none; */
    transition: all ease 0.6s;
}
.header,
.nav {
  transition: transform 0.6s ease;
  
}
.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all ease 0.3s;
	animation: smoothScroll 1s forwards;
	margin-top: 0px;
}
@keyframes smoothScroll {
 0% {
 transform: translateY(-40px);
}
 100% {
 transform: translateY(0px);
}
}
.fixed {
  position: fixed;
  top:0; 
	left:0;
  width: 100%; 
	z-index: 9999;
	transition: all ease 0.7s;
	animation: smoothScroll 1s forwards;
	}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}
header.fixed
{
    height: 119px;
    background-image: -moz-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);

}
.fixed > .nav {
    position: fixed;
}
.fixed > .nav ul li a {
    font-size: 12px;
}
.fixed{
    .contactBox{
        
    }
    
    .logo img{
        width: 150px;
    }
} 

.logo.fixed {
	
}
.logo.fixed img{
    
}
.nav.fixed{
    top: 108px;
    width: 100%;
}
.sliderSec{
    background-image: -moz-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);

    padding-bottom: 8px;
}
.sliderTop{
    margin-top: 164px;
}
.bannerImg{
    height: 270px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.contentSection {
	margin: 10px 0px 0px 0px;
}
.contentSec {
	margin: 10px 0px 20px 0px;
}
.contentSec p a {
    font-weight: bold;
    color: #000;
    transition: all ease 0.3s;
}
.contentSec a:hover{
    color: #fb9f22;
    font-weight: bold;
}
.contentMainHeading {
	font-size: 2.3vw;
	color: #a1060c;
	width: 100%;
	float: left;
	position: relative;
	margin-top: 20px;
}
.mainHeading{
    h1{
        color: #010202;
        text-align: left;
        font-size: 30px;
        margin-bottom: 0px;
        text-transform: uppercase;
        letter-spacing: 1px;
        span{
            color: #fb9f22;
        }
    }
    h3{
         color: #010202;
        text-align: left;
        font-size: 30px;
        margin: 0px 0px 10px 0px;
        text-transform: uppercase;
        letter-spacing: 1px;
        span{
            color: #fb9f22;
        }
    }
}

.contentSec{
    box-sizing: border-box;
   
}
.contentSec p {
	width: 100%;
	float: left;
	position: relative;
	font-size: 15px;
	text-align: justify;
	color: #3a3a3a;
	margin: 0px 0px 20px 0px;
}
.contentSec ul{
    margin: 0px 0px 20px 30px;
    float: left;
    position: relative;
    width: 100%;
}
.contentSec ul li{
    font-size: 16px;
	color: #3a3a3a;
}
.contentSec li::marker{
    margin-left: 20px;
    color: #fb9f22;
}
.threeImgsSec{
    margin-bottom: 30px;
    border-radius: 8px;
    background: #fff;
    padding: 10px 0px 10px 0px;
}
.threeImgs {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
    .image-column{
        width: 19%;
    }
}
.viewport{
    position: relative;
    overflow: hidden;
    display: block;
  }

  .track{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }


.image-column {
    position: relative;
    overflow: hidden;
}
.slide {
    flex: 0 0 25%;
    border: none;
}
.controls{
    display: flex;
    justify-content: center;
    gap: 20px;
    button{
        background: none;
        border: none;
        width: 60px;
    }
    svg{
        width: 40px;
        transition: all ease 0.2s;
    }
    .carrow{
        transition: all ease 0.2s;
        cursor: pointer;
    }
    .carrow-prev svg:hover{
        margin-right: 5px;
    }
    .carrow-next svg:hover{
        margin-left: 5px;
    }
}
/* Image */
.colImg {
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.colImg img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

/* Content (visible by default) */
.imgContent {
    position: relative;
    width: 100%;
    padding: 0px;
    transform: translateY(0);
    transition: transform 1s ease, background 0.8s ease;
    z-index: 2;
}
.imgContent h3 { color: #fb9f22; font-size: 20px; text-transform: uppercase; letter-spacing: 1px; margin: 10px 0px 0px 0px; transition: transform 0.4s ease; } 
.imgContent p { 
    font-size: 16px; margin-top: 2px; 
    text-align: justify; 
    color: #3a3a3a; 
    transition: transform 0.4s ease; 
} 
.imgContent p a { 
    color: #000; 
    font-weight: bold; 
    transition: all ease 0.3s;
    
}
.imgContent p a:hover{
    color: #fb9f22; 
    font-weight: normal;
}
/* Hover – move content UP over image */
.image-column:hover .imgContent {
    transform: translateY(-230px); /* adjust height as needed */
    width: 98%;
    padding: 0px 5px 0px 5px;
}
.image-column:hover p{
    color: #fff;
}
.image-column:hover .colImg{
    background: #000;
}

/* Image zoom */
.image-column:hover img {
    transform: scale(1.15);
    opacity: 0.5;
}
.chooseSec{
    background: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    padding: 10px 0px 10px 0px;
    .innerContainer{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
.chooseSection{
    h3{
        margin-top: 0px;
    }
    ul{
        list-style: none;
    padding-left: 0;
    }
    li{
        position: relative;
    padding-left: 20px; /* space for bullet */
    margin: 10px 0px 0px 10px
    }
    li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
        height: 11px;
        background-color: #fb9f22;
        border-radius: 4px;
}
}
.chooseLogo{
    display: flex;
    img{
        width: 300px;
        margin-right: 30px;
    }
}
.teamImg {
    img{
        width: 100%;
        height: 300px;
        border-radius: 8px; 
    }
}

footer {
    

}

.footerNav {
    margin-top: 25px;
     background-image: -moz-linear-gradient( 0deg, rgb(1,2,2) 0%, rgb(1,2,2) 39%, rgb(251,159,34) 88%, rgb(251,159,34) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(1,2,2) 0%, rgb(1,2,2) 39%, rgb(251,159,34) 88%, rgb(251,159,34) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(1,2,2) 0%, rgb(1,2,2) 39%, rgb(251,159,34) 88%, rgb(251,159,34) 100%);

}
.footerNav ul {
    text-align: left;
	
}
.footerNav ul li {
	display: inline-block;
}
.footerNav ul li a {
	
}

.fdmenu {
    top: unset;
    bottom: 100%;
}
.fdropdown:hover .fdmenu{
    display: block;
}
.rights{
    margin: 20px 0px 20px 0px;
}
.rights p {
	color: #3a3a3a;
	font-size: 16px;
	margin: 0px;
}
.rights a {
	color: #000;
	font-weight: bold;
	transition: all ease 0.3s;
	
}
.rights a:hover {
    color: #fb9f22;
}
/******contact us***********/
.contactContent{
    .footerContacts{
        margin-left: 0px;
        width: 30%;
    margin: 0px;
    margin-left: 20px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    }
    .phone, .email {
        justify-content: flex-start;
    }
    svg, path{
        fill: #fb9f22 !important;
        stroke: #fb9f22;
    }
    a{
        color: #3a3a3a;
    }
}
.mapSection {
    margin-bottom: 20px;
    border-radius: 8px;
    iframe {
        width: 100%;
        height: 350px;
        border: 1px solid #fb9f22;
        box-sizing: border-box;
    border-radius: 8px;
    
    }
}
/*****gallery*****/
.gallerySection{
}
.gallerySec {
    display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: center;
      padding-bottom: 20px;
}
.galleryImgs img {
    width: 100%;
    
    border: 1px solid #fb9f22;
    box-sizing: border-box;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    padding: 0px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    transition: all 
ease 0.5s;
border-radius: 8px;

}
/*****tours*****/
.contentImgs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    img{
        width: 32.5%;
        border: 1px solid #fb9f22;
        box-sizing: border-box;
        border-radius: 8px;
    }
}
/*****responsive*****/
@media only screen and (max-width:1300px) {
    .logo img{
        
    }
    
}

@media only screen and (max-width:1024px) {
.innerContainer {
	max-width: 100%;
}

.nav ul li {
	margin: 0px 10px 0px 10px;
}
.nav ul li a {
	font-size: 12px;
}
.ss-slides-wrap {
	height: 300px;
}
.footerNav ul li a {
	font-size: 12px;
}
}

@media only screen and (max-width:645px) {
header{
    display: flex;
    flex-direction: column;
}
.header.fixed{
    height: auto;
    background-image: -moz-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(210,208,218) 88%, rgb(210,208,218) 100%);

}
.fixed{
    .contactBox{
        order: 2;
        margin-top: 0px;
        .email{
            margin: 0px;
            }
        }
    .logo {
        margin: 10px 0px 10px 0px;
        }
   .logo img {
        width: 150px;
        margin: 0px 0px 0px 10px;
    }
}
.contactBox{
    margin-right: 0px;
    flex-direction: column;
        gap: 0;
        margin-bottom: 0px;
}

.logo img {
	width: 125px;
}
.nav {
	width: 100%;
	margin: 0px;
	z-index: 9999;
	float: left;
	position: relative;
	background: none;
}
.nav p {
	width: 100%;
	padding-right: 0px;
	text-align: center;
	text-stroke: 1px #fff;
	-webkit-text-stroke: 1px #fff;
	margin: 10px auto 10px auto;
}
#menu {
	display: block !important;
	width: 35px;
	height: 28px;
	top: 28px;
	right: 10px;
	position: absolute;
	border-radius: 2px;
	cursor: pointer;
	z-index: 99999999;
	border: 1px solid #cdd1da;
}
#nav {
	display: none;
	width: 100%;
	float: none;
	top: 63px;
	left: 0px;
	position: fixed;
	background-image: -moz-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(251,159,34) 0%, rgb(251,159,34) 12%, rgb(1,2,2) 61%, rgb(1,2,2) 100%);

	z-index: 9999;
	padding: 0px;
}
.nav ul li {
	width: 100%;
	text-align: center;
	border: none;
	margin: 0px;
	padding: 0px;
	border-bottom: 1px solid #fff;
	line-height: 40px;
	height: 40px;
}
.nav ul li .active {
}
.nav ul li a {
	font-size: 16px;
	color: #fff;
	padding: 0px 0px 0px 0px;
	opacity: 1 !important;
	position: relative !important;
	left: unset !important;
	bottom: unset !important;
	top: unset !important;
}
.mainHeading {
    h1 {
        text-align: center;
    }
}

.threeImgs{
    flex-direction: column; 
    .image-column{
        width: 100%;
    }
}
.chooseSec {
    .innerContainer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
}
.chooseLogo{
    margin-top: 30px;
}
.ss-slides-wrap {
	height: 210px !important;
}

.contentSec {
	margin: 0px 0px 0px 0px;
}
.slide
{
   flex: 0 0 100%;
}
    .teamImg img {
        height: 170px;
    }

.footerNav {
    background-image: -moz-linear-gradient( 0deg, rgb(1,2,2) 0%, rgb(1,2,2) 39%, rgb(251,159,34) 88%, rgb(251,159,34) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(1,2,2) 0%, rgb(1,2,2) 39%, rgb(251,159,34) 88%, rgb(251,159,34) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(1,2,2) 0%, rgb(1,2,2) 39%, rgb(251,159,34) 88%, rgb(251,159,34) 100%);

    margin: 20px 0px 20px 0px;
	}
.footerNav ul li{
    
}
.footerNav ul li a {
	
	 
}
    .contactContent {
    .footerContacts {
        width: 100% !important;
        margin: 10px 0px 10px 0px;
        justify-content: center !important;
    }
   
    .phone, .email {
        justify-content: center !important;
    }
}
.rights p {
	margin-top: 0px;
	font-size: 14px;
	line-height: 25px;
}
.rights p > a {
	font-size: 14px;
	padding: 2px;
}
.map{
    margin-top: 20px;
}


}


