@font-face {
  font-family: 'Montserrat';
  font-style: thin;
  font-weight: 200;
  src: url("./../fonts/Montserrat-ExtraLight.eot");
  src: url("./../fonts/Montserrat-ExtraLight.woff") format("woff"), url("fonts/Montserrat-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: light;
  font-weight: 300;
  src: url("./../fonts/Montserrat-Light.eot");
  src: url("./../fonts/Montserrat-Light.woff") format("woff"), url("fonts/Montserrat-Light.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: regular;
  font-weight: 400;
  src: url("./../fonts/Montserrat-Regular.eot");
  src: url("./../fonts/Montserrat-Regular.woff") format("woff"), url("fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: medium;
  font-weight: 500;
  src: url("./../fonts/Montserrat-Medium.eot");
  src: url("./../fonts/Montserrat-Medium.woff") format("woff"), url("fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: medium;
  font-weight: 600;
  src: url("./../fonts/Montserrat-SemiBold.eot");
  src: url("./../fonts/Montserrat-SemiBold.woff") format("woff"), url("fonts/Montserrat-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: bold;
  font-weight: 700;
  src: url("./../fonts/Montserrat-Bold.eot");
  src: url("./../fonts/Montserrat-Bold.woff") format("woff"), url("fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: heavy;
  font-weight: 800;
  src: url("./../fonts/Montserrat-ExtraBold.eot");
  src: url("./../fonts/Montserrat-ExtraBold.woff") format("woff"), url("fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat';
  font-style: fat;
  font-weight: 900;
  src: url("./../fonts/Montserrat-Black.eot");
  src: url("./../fonts/Montserrat-Black.woff") format("woff"), url("fonts/Montserrat-Black.ttf") format("truetype");
}

::root{
  --orange : #ff9921;
}

a {
  text-decoration: none !important;
}

@media(min-width:1400px){
  .container{
    max-width: 1170px;
  }
}

/****************************************new styles**********************/
*{
	line-height: normal;
	list-style: none;
	box-sizing: border-box;
	font-family: 'Montserrat';
}
    #whatsapp-button {
        position: fixed;
        bottom: 85px;
        right: 10px;
        background-color: #25D366; /* WhatsApp green color */
        color: #fff;
        padding: 10px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        height: 60px;
    }

    #whatsapp-button a {
        text-decoration: none;
        color: #fff;
        font-size: 35px;
        margin: 5px;
    }
body{
	font-size: 14px;
	font-family: 'Montserrat';
	background: #fff;
}
input:focus,
button:focus,
textarea:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}
ul,ol{
  padding: 0;
  margin: 0;
}
.wrapper{
  overflow-x: hidden;
}
.menubar{
  background: #fff;
  position: relative;
  z-index: 101;
  box-shadow:  0 5px 20px 0 #0000000f;
}
.logobar img{
  width: 128px;
}
.whauto{
  width: auto;
  height: auto;
}
.logobar{
  padding-left: 20px;
}
.logobar h1{
  font-size: 11px;
  margin-left: 40px!important;
  margin-bottom: 5px;
  font-weight: 600;
}
.logobar p{
  font-size: 11px;
  margin-left: 40px!important;
  font-weight: 500;
  display: block;
}
.logobar p a{
  color: black;
}
.mainmenu ul{
  margin-right: 15px;
}
.mainmenu ul li{
  transition: 0.4s all;
  position: relative;
  border-bottom: 2px solid white;
}
.mainmenu ul li a{
  padding: 15px 25px;
  text-transform: uppercase;
  display: block;
  color: #000;
  font-weight: 500;
  transition: 0.4s all;
}
.mainmenu ul li:hover{
  border-bottom: 2px solid var(--orange);
}
.mainmenu ul li:hover a{
  color: var(--orange);
}
.mainmenu ul li.active{ 
  border-bottom: 2px solid var(--orange);
}
.mainmenu ul li.active a{
  color: var(--orange);
}
.mainmenu ul li ul{
  position: absolute;
  top: 48px;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 20px 20px 0px;
  background: #fff;
  width: 300px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all;
  padding: 0;
}
.mainmenu ul li ul li{
  border: none!important;
}
.mainmenu ul li:hover ul{
  opacity: 1;
  visibility: visible;
}
.mainmenu ul li.menu-item-has-children::after{
  content: url('../img/arrow.svg');
  position: absolute;
  right: 5px;
  top: 12px;
  width: 10px;
  height: 10px;
  z-index: 10;
  transition: 0.2s all;
}
.mainmenu ul .menu-item-has-children:hover::after{
  filter: invert(52%) sepia(99%) saturate(1614%) hue-rotate(351deg) brightness(100%) contrast(99%);
}
.mainmenu ul li ul li a{
  color: #555!important;
}
.mainmenu ul li ul li:hover a{
  color: var(--white)!important;
  background: var(--orange);
}
.searchicon{
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--orange);
  font-size: 20px;
  cursor: pointer;
}
.slider{
  height: 500px;
}
.sliderbox{
  position: relative;
}
.slider img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 100s all;
}
.sliderpost{
  overflow: hidden;
}
.sliderbtns{
  position: absolute;
  left: 0;
  right: 0;
  top: 47.5%;
  display: block;
  margin: 0 auto;
  z-index: 10;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
}
.sliderbtns .next{
  position: absolute;
  right: 15px;
  cursor: pointer;
}
.sliderbtns .prev{
  position: absolute;
  left: 15px;
  cursor: pointer;
}
.mysubtitle{
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.mytitle{
  font-size: 20px;
  font-weight: 700;
}
.box1post{
  border-radius: 30px;
  box-shadow: 0 0 10px 0 #ccc;
  padding: 50px 30px;
  height: 100%;
}
.box1post i{
  color: var(--orange);
  font-size:30px;
}
.box1post h3{
  font-weight: 600;
  font-size: 16px;
}
.box1post p{
  white-space: pre-line;
}
.line{
  width:150px;
  height: 1px;
  background: var(--orange);
  display: table;
  margin: 0 auto;
}
.mybtn{
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  display: table;
  margin: 0 auto;
  transition: 0.4s all;
}
.mybtn:hover{
  background: black;
  color: white;
}
.box2{
  background: #00A6510A;
  padding: 50px 0;
}
.box2post{
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 0 10px 0 #eee;
  transition: 0.4s all;
}
.box2post:hover{
  box-shadow: 0 0 10px 0 #00000024;
}
.box2post img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.box2post h3{
  font-weight: 600;
  color: black!important;
  font-size: 16px;
}
.postinfo{
  padding: 15px;
}
.box2postb1 p{
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
}
.box2postb1 p:first-child{
  padding-right: 20px;
  border-right: 1px solid var(--orange);
  margin-right: 20px!important;
}
.box2postb1 p i{
  margin-right: 5px;
}
.box2visit{
  font-size: 12px;
  color: #666;
  font-style: italic;
}
.box2visit span{
  color: var(--orange);
  font-weight: 600;
}
.postcontent span{
  color: var(--orange);
  font-weight: 600;
  font-size: 12px;
  font-style: italic;
}
.postcontent p{
  color: #666;
  font-size: 12px;
}
.box2read{
  color: var(--orange)!important;
  text-decoration: underline!important;
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin-bottom: 20px;
}
.box2post .mybtn{
  margin: 0 auto 0 0;
  border-radius: 10px;
  padding: 12px 30px;
}
.box2post .box2price{
  color: var(--orange);
  font-weight: 800;
  font-size: 26px;
}
.box2 .col-xl-4{
  margin-bottom: 30px;
}
.box3more{
  background: #1faf38;
  padding: 12px 40px;
  margin-top: 20px;
}
.box3more:hover{
  background: var(--orange);
}
.box3 .mytitle{
  white-space: pre-line;
  font-size: 25px;
}
.box3 form input{
  background: #f5f5f5;
  padding: 15px;
  border: none;
  width: 100%;
  margin-bottom: 15px;
}
.box3 form select{
  background: #f5f5f5;
  padding: 15px;
  border: none;
  margin-bottom: 15px;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -ms-ppearance: none;
  -webkit-ppearance: none;
  -o-appearance: none;
  outline: none!important;
}
.box3 form .selectbox{
  position: relative;
}
.box3 form .selectbox::after{
  content: "";
  position: absolute;
  right: 15px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg);
}
.box3 form textarea{
  background: #f5f5f5;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  width: 100%;
}
.box3 .d-flex div{
  width: 49.2%;
}
.box3 button{
  border: none;
  padding: 12px 40px;
  cursor: pointer;
}
.box4{
  padding: 5px 0 80px 0;
  background: #00A6510A;
}
.box4 .line{
  width: 70%;
  position: relative;
  top: 1px;
  height: 1px;
}
.box4 .mysubtitle{
  font-size: 12px;
}
.fw500{
  font-weight: 700;
}
.f13{
  font-size: 13px;
}
.box5{
  padding: 50px 15px;
}
.box5post{
  background: #fff;
  border-radius: 20px;
  padding: 10px 10px 30px;
  box-shadow: 0 0 10px 0 #eee;
  transition: 0.4s all;
}
.box5post:hover{
  box-shadow: 0 0 10px 0 #00000024;
}
.box5post img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.box5post h3{
  font-weight: 600;
  color: black!important;
  font-size: 22px;
}
.box5post p{
  font-size: 12px;
}
.box5post .mybtn{
  background: #1faf38;
}
.box5post .mybtn:hover{
  background: var(--orange);
}
.footer{
  background: black;
  padding: 50px 65px 50px 50px;
}
.f1 span{
  color: white;
  font-size: 18px;
  font-style: italic;
}
.f1 p{
  color: white;
  font-size: 14px;
}
.f1 form input{
  width: 49%;
  padding: 10px;
  border: none;
  margin-bottom: 10px;
  border-radius: 6px;
}
.f1 form input::placeholder{
  color: var(--orange);
}
.f1 form input[type=email]{
  width: 100%;
}
.f1 form button{
  width: 100%;
  padding: 15px;
  background: var(--orange);
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.4s all;
}
.f1 form button:hover{
  background: white;
  color: var(--orange);
}
.social{
  margin-right: 50px;
}
.social li{
  margin-bottom: 10px;
}
.social li:last-child{
  margin: 0;
}
.social li a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  width: 45px;
  height: 45px;
  color: white;
  background: var(--orange);
  border-radius: 100px;
  transition: 0.4s all;
}
.social li a:hover{
  color: var(--orange);
  background: white;
}
.flink{
  padding: 0 10px;
}
.flink span{
  font-weight: bold;
  color: white;
  font-size: 16px;
}
.flink ul{
  margin-top: 50px;
}
.flink ul li{
  margin-bottom: 20px;
}
.flink ul li:last-child{
  margin: 0;
}
.flink ul li a{
  color: var(--orange);
  transition: 0.4s all;
}
.flink ul li:hover a{
  color: white;
}
.copy{
  background: black;
  padding: 20px;
  border-top: 1px solid white;
}
.copy p{
  color: white;
  font-size: 14px;
}
.linkb2{
  width: 27%;
}
.resopen{
  font-size: 25px;
  color: var(--orange);
}
.resblock{
  display: none;
}
.resmenu{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 15px 15px 30px 15px;
  z-index: 100;
  transition: 0.4s all;
  opacity: 0;
  visibility: hidden;
}
.resmenu ul li{
  font-size: 14px;
  margin-bottom: 32px;
  position: relative;
  text-transform: uppercase;
}
.resmenu ul li:last-child{
  margin: 0;
}
.resmenu ul li a{
  color: black;
  padding-right: 30px;
  position: relative;
  font-weight: 400;
}
.resmenu ul li.active a{
  color: var(--orange);
}
.resmenu ul li ul{
  display: none;
  margin-top: 15px;
}
.resmenu ul li.menu-item-has-children a::after{
  content: url('../img/arrow.svg');
  position: absolute;
  right: 5px;
  top: -3.5px;
  width: 10px;
  height: 10px;
  z-index: 10;
  transition: 0.2s all;
}
.resmenu ul li ul{
  width: 100%;
  padding: 15px;
  background: #f8f8f8;
}
.resmenu ul li ul li a::after{
  display: none;
}
.resmenu ul li ul li{
  margin: 0;
  padding: 0;
}
.resmenu ul li ul li a{
  display: block;
  padding: 10px 0!important;
}
.closemenu{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: 0.4s all;
  visibility: hidden;
  opacity: 0;
}
.resopen .rescloseicon{
  display: none;
}
.searchbox{
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  display: block;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 768px;
  transition: 0.4s all;
  opacity: 0;
  visibility: hidden;
  max-width: 90%;
  z-index: 102;
}
.searchbox form{
  width: 100%;
}
.searchbox input{
  background: #fff;
  padding: 20px;
  color: #000;
  border: none;
  width: 100%;
  font-size:16px;
  border-radius: 8px;
}
.searchbox input::placeholder{
  color: #fff;
}
.searchbox button{
  background: transparent;
  position: absolute;
  top: 17px;
  right: 10px;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: 0.4s all;
  border: none;
}
.searchbox button:hover{
  color: var(--orange)
}
.closesearchbox{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: #000000de;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all;
}
.blogbox{
  margin: 70px auto;
}
.w100{
  width: 100%;
}
.c1 .mytitle{
  font-size: 40px;
  margin-bottom: 50px;
  line-height: 0.8;
  white-space: pre-line;
  color: #00a651;
}
.c1post{
  border-radius: 10px;
  box-shadow: 0 0 10px 0 #ccc;
  padding: 30px;
}
.c1post h3{
  color: #00a651;
  font-weight: 600;
  font-size: 16px;
}
.c1post p{
  color: #000;
  font-weight: 500;
  white-space: pre-line;
  font-size: 13px;
}
.c2{
  margin: 50px auto;
}
.c2 .mytitle{
  font-size: 40px;
  margin-bottom: 50px;
  line-height: 0.8;
  white-space: pre-line;
  color: var(--orange);
}
.terms{
  position: relative; 
  height: 700px;
}
.termthumbnail{
  object-fit: cover;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  z-index: -1;
}
.termstitle{
  position: absolute;
  bottom: 100px;
  left: 15px;
  width: 100%;
  right: 0;
  display: block;
  margin: 0 auto;
  z-index: 2;
  color: white;
}
.terms .mytitle{
  font-size: 70px;
  white-space: pre-line;
  line-height: 0.8;
  margin-bottom: 30px;
}
.terms p{
  font-size: 20px;
}
.termpost{
  box-shadow:  0 0 20px 0 #ccc;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  height: 100%;
}
.bold{
  font-weight: bold;
}
.termptitle{
  color: var(--orange);
  white-space: pre-line;
  font-size: 25px;
  margin-bottom: 30px;
}
.italic{
  font-style: italic;
}
.termpost p{
  font-size: 16px;
  margin: 0;
  white-space: pre-line;
}
.termpost ul{
  padding: 20px 50px;
}
.termpost ul li{
  line-height: 1.5;
  white-space: pre-line;
  font-size: 17px;
  margin-bottom: 10px;
  list-style: disc;
}
.termpost ul li:last-child{
  margin: 0;
}
.whcall{
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1000;
}
.whcall a{
  width: 70px;
  height: 70px;
  border-radius: 100px;
  background: #00a651;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whcall a i{
  color: #fff;
  font-size: 40px;
}
.singleimg img{
  width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
}
.maincontent p{
  line-height: 1.8;
  font-size: 16px;
}
.maincontent .mytitle{
  color: var(--orange);
  font-size: 2em;
}
.singleimg ul{
  position: absolute;
  top: 15px;
  left: 30px;
}
.singleimg ul li{
  margin-right: 10px;
}
.singleimg ul li a{
  display: block;
  padding: 8px 15px;
  border-radius: 100px;
  background: var(--white);
  color: var(--three);
  transition: 0.4s all;
} 
.singleimg ul li a:hover{
  color: var(--white);
  background: var(--orange);
}
.singleinfo{
  font-size: 14px;
}
.singleinfo i{
  color: var(--orange);
}
.tags{
  border-top: 1px solid #eee;
  padding: 15px 0;
}
.tags ul li{
  margin-right: 5px;
  font-size: 12px;
}
.tags ul li a{
  display: block;
  transition: 0.4s all;
  padding: 5px 20px;
  border-radius: 100px;
  color: #00a651;
  border: 1px solid #00a651;
}
.tags ul li a:hover{
  background: #00a651;
  color: var(--white);
}
.tripsdl{
  background: var(--three);
  padding: 10px 20px;
  border: none;
  color: var(--white)!important;
  cursor: pointer;
  transition: 0.4s all;
  font-size: 15px;
  display: block;
  text-transform: uppercase;
  border-radius: 100px;
}
.eform input{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #00a651;
  margin-bottom: 15px;
}
.eform input::placeholder{
  color: #555;
}
.eform select{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--two);
    margin-bottom: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    -o-appearance: none;
    color: #555;
    appearance: none;
    background: url(../img/arrow-down.png) no-repeat 30px #fff;
    background-position: 98%;
}
.eform select:focus{
  outline: none;
}
.eform textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--two);
    margin-bottom: 15px;
    resize: none;
}
.eform input[type=submit]{
    background: var(--three);
    transition: 0.4s all;
    color: var(--white);
    cursor: pointer;
    border: 1px solid var(--three);
}
.about h1{
  position: absolute;
  right: 30px;
  bottom: 0;
  white-space: pre-line;
}
.about-box1 .row{
  padding: 50px;
}
.aboutb1post{
  background: var(--orange);
  padding: 50px 30px;
  position: relative;
  height: 100%;
  color: #fff;
  box-shadow: 0 0 10px 0 #777;
  border-radius: 20px;
}
.aboutb1post i{
  font-size:45px;
  margin-bottom: 20px;
}
.aboutb1post h2{
  white-space: pre-line;
  font-weight: 500;
  font-size: 14px;
}
.aboutb1post .line{
  background: #fff;
}
.aboutb1post p{
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}
.aboutb2p2{
  padding: 0 150px!important;
}
.aboutb2post img{
  min-height: 630px;
  object-fit: cover;
}
.aboutb2p2 h2{
  color: #00a651;
  font-weight: bold;
  font-size: 35px;
}
.aboutb2p2 p{
  white-space: pre-line;
  font-size: 17px;
  line-height: 1.5;
}
.aboutb2p2 .line{
  margin: 0 auto 0 0;
  background: #00a651;
}
.about-box2 .row:nth-child(even){
  direction: rtl;
}
.about-box3{
  background: #ff9921;
  padding: 60px 0;
  color: #fff;
  border-bottom: 2px solid #fff;
}
.about-box3 ul{
  padding: 20px 0;
  margin-right: 50px;
  padding-right: 50px;
  border-right: 1px solid #fff;
}
.about-box3 ul li{
  margin-bottom: 10px;
}
.about-box3 ul li:last-child{
  margin: 0;
}
.about-box3 ul li svg{
  width: 25px;
  height: 25px;
}
.aboutb3post h2{
  font-size: 25px;
  font-weight: bold;
  width: 90%;
  margin-bottom: 30px;
}
.aboutb3post p{
  line-height: 1.3;
  font-size: 16px;
  white-space: pre-line;
}
.book{
  height: 230px;
}
.book .mytitle{
  margin: 0;
}
.book .termstitle{
  transform: translateY(50%);
  bottom: 50%;
}
.bookbox .mytitle{
  color: var(--orange);
  font-size: 25px;
}
.bookbox form label{
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}
.bookbox form input{
  width: 100%;
  background: #fff;
  border: none;
  border-bottom: 1px solid #000;
  margin-bottom: 50px;
  font-size: 20px;
  transition: 0.4s all;
}
.mb-10{
  margin-bottom: 100px;
}
.bookbox form .d-flex input{
  margin: 0 10px 0 0;
  width: auto;
  position: relative;
  top: -4px;
  cursor: pointer;
}
.bookbox form .d-flex label{
  width: auto;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
}
.bookbox form select{
  height: 55px;
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 20px;
  transition: 0.4s all;
  border-bottom: 1px solid #000;
}
.bookbox form input[type=submit]{
  width: 200px;
  background: var(--orange);
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 17px;
  transition: 0.4s all;
  margin: 50px auto 0 auto;
}
.bookbox form input[type=submit]:hover{
  background: #000;
}
select:focus{
  outline: none;
}
.bookbox form input:focus{
  border-bottom: 1px solid var(--orange);
}
.iti{
  display: block!important;
  margin-bottom: 50px;
}
.iti__selected-flag{
  padding: 15px 0!important;
  height: auto!important;
}
#mobile_code{
  padding-left: 80px!important;
  height: 50px;
}
.iti__selected-flag{
  width: 80px!important;
}
.iti__selected-flag{
  background: transparent!important;
}
.tips2posttitle{
  color: var(--orange);
  font-size: 25px;
}
.tips2post{
  margin-bottom: 50px;
}
.tips2post:last-child{
  margin: 0;
}
.tips2title2{
  color: var(--orange);
  font-size: 20px;
}
.tips2post p{
  line-height: 1.5;
  font-size: 15px;
}
.tips2post img{
  border-radius: 15px;
  object-fit: cover;
  height: 300px;
  box-shadow: 0 0 10px 0 #ccc;
}
.bgorange{
  color: #fff;
  background: var(--orange);
}
.bgorange .termptitle{
  color: #fff;
}
.t4 .termptitle{
  font-size: 25px;
}
.t4 .termpost{
  transform: rotateY(0);
  transition: 0.4s all;
  transform-style: preserve-3d;
  overflow: hidden;
}
.t4 .col-lg-12,.t4 .col-lg-4,.t4 .col-lg-6{
  position: relative;
}
.t4 .col-lg-12:hover .termpost,.t4 .col-lg-4:hover .termpost,.t4 .col-lg-6:hover .termpost{
  transform: rotateY(180deg);
}
.t4 .termpost img{
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: rotateY(180deg);
  z-index: 2;
  transition: 0.3s all;
}
.t4 .col-lg-12:hover .termpost img,.t4 .col-lg-4:hover .termpost img,.t4 .col-lg-6:hover .termpost img{
  opacity: 1;
}
.t4 .col-lg-12 .termpost::after,.t4 .col-lg-4 .termpost::after,.t4 .col-lg-6 .termpost::after{
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s all;
  border-radius: 15px;
}
.t4 .col-lg-12:hover .termpost::after,.t4 .col-lg-4:hover .termpost::after,.t4 .col-lg-6:hover .termpost::after{
  background: #fff;
}
.cblack{
  color: #000;
}
.t6 .mytitle{
  font-size: 20px;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 15px;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
}
.t6 ul{
  border-bottom: 1px solid var(--orange);
}
.t6 ul li{
  width: 25%;
}
.t6 ul li h3{
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  transition: 0.4s all;
  margin: 0;
  color: var(--orange);
  font-weight: normal;
}
.t6 ul li h3.active{
  background: var(--orange);
  color: var(--white);
}
.t6 ul li:hover h3{
  background: var(--orange);
  color: var(--white);
}
.t6 .tab-content h4{
  font-weight: 500;
  color: #000;
  font-size: 15px;
  font-style: italic;
  margin: 20px 0;
}
.hpost{
  position: relative;
}
.hpost::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top,#000,transparent);
  height: 50%;
  border-radius: 0 0 15px 15px;
}
.hpost img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 #ccc;
}
.hpost p{
  position: absolute;
  z-index: 2;
  color: var(--white);
  font-size: 20px;
  bottom: 15px;
  right: 15px;
}
.tabbox{
  margin-bottom: 50px;
}
.tabbox:last-child{
  margin: 0;
}
.t5{
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.t5bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  object-position: top;
  left: 0;
  filter: brightness(0.2);
  -webkit-filter: brightness(0.2);
}
.t5 ul{
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 2;
  padding: 15px 0;
  background: #000000ba;
}
.t5 ul li{
  width: 50%;
  text-align: center;
}
.t5 ul li h3{
  font-size: 24px;
  margin: 0;
  cursor: pointer;
  position: relative;
}
.t5 ul li h3::after{
  content: url('../img/t5arrow.png');
  width: 10px;
  position: absolute;
  left: 0;
  bottom: -21px;
  right: 15px;
  margin: 0 auto;
  height: 10px;
  transform: scale(0.5);
  z-index: 10;
  display: none;
}
.t5 ul li h3.active::after{
  display: block;
}
.t5 .tab-pane h4{
  font-size: 16px;
}
.t5 .tab-content{
  position: relative;
  z-index:1;
}
.t5 .tname{
  padding: 15px;
  border-bottom: 1px solid #fff;
  background:#0d3921eb;
}
.t5 .fesbox{
  margin-bottom: 30px;
}
.t5 .fesbox:last-child{
  margin: 0;
}
.t5 .festboxpost{
  padding: 10px 0;
  border-bottom: 1px solid #00a651;
}
.t5 .festboxpost:last-child{
  border: none!important;
}
.t5 .tab-content{
  border-top: 1px solid #fff;
}
.t5boxes{
  background: #00a651;
  padding: 50px;
  color: #fff;
  border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
}
.t5boxes h2{
  font-size: 30px;
  white-space: pre-line;
  margin-bottom: 30px;
}
.t5boxes p{
  line-height: 1.5;
  white-space: pre-line;
  margin: 0;
  font-size: 16px;
}
.t5boxes .t5b1{
  border-right: 1px solid #fff;
  padding:50px 50px 50px 0;
}
.t5boxes .t5b2{
  padding:50px 0 50px 50px;
}
.t5boxes .t5b2 h2{
  text-align: right;
}






@media(max-width:1200px){
  .linkb2{
    width: 100%;
  }
  .linkb2 .flink:first-child{
    text-align: right;
  }
  .flink{
    margin-bottom: 30px;
    padding: 0;
  }
  .flink ul{
    margin-top: 20px;
  }
  .social{
    margin: 20px auto 40px auto;
    display: flex;
  }
  .social li{
    margin-right: 10px;
  }
  .d1200none{
    display: none;
  }
  .about-box1 .col-xl-3{
    margin-bottom: 15px;
  }
  .aboutb2p2{
    padding: 0 70px!important;
  }
} 
@media(max-width:992px){
  .menubar{
    padding: 15px;
  }
  .logobar{
    padding: 0;
  }
  .resnone{
    display: none;
  }
  .mainmenu{
    display: none;
  }
  .box1 .col-lg-4{
    margin-bottom: 30px;
  }
  .box5 .col-lg-4{
    margin-bottom: 30px;
  }
  .footer{
    padding: 50px 15px;
  }
  .flink span{
    font-size: 18px;
  }
  .resblock{
    display: block;
  }
  .contactpage .col-lg-7{
    padding: 0 40px;
  }
  .mytitle{
    white-space: inherit!important;
  }
  .c2 img{
    transform: scale(2);
  }
  .terms .mytitle{
    font-size: 40px;
  }
  .termstitle{
    padding: 0 45px;
    bottom: 50px;
    left: 0;
  }
  .terms p{
    font-size: 14px;
  }
  .whcall{
    display: block;
  }
  .singleimg img{
    height: 300px;
  }
  .blogbox{
    margin-top: 20px;
  }
  .tr-tabs li{
    margin-bottom: 10px;
  }
  .about h1{
    width: 316px;
    max-width: 80%;
    font-size: 35px;
  }
  .about-box1 .row{
    padding: 50px 15px;
  }
  .about-box2{
    margin: 0!important;
  }
  .aboutb2post img{
    min-height: auto;
    height: 415px;
  }
  .aboutb2p2{
    padding: 50px 30px!important;
  }
  .about-box3 ul{
    padding: 0;
    margin: 0 0 20px 0;
    border-right: none;
    display: flex;
  }
  .about-box3 ul li{
    margin: 0 10px 0 0;
  }
  .about-box3{
    padding: 50px 0;
  }
  .m1{
    margin-top: 30px;
  }
  .tips2post img{
    margin-top: 30px;
  }
  .t6 .col-lg-4{
    margin-bottom: 30px;
  }
  .t5boxes .t5b1{
    padding: 0 0 40px 0;
    border: none;
    border-bottom: 1px solid #fff;
  }
  .t5boxes .t5b2{
    padding: 0;
    margin-top: 40px;
  }
  .t5boxes .t5b2 h2{
    text-align: left;
  }
}
@media(max-width:768px){
    .slider img{
    height: 400px;
  object-fit: fill;
 
}
  .linkb2 .flink:first-child{
    text-align: left;
  }
  .t5 .tab-pane h4,.festboxpost{
    font-size: 11px;
  }
}
.mainmenu ul li ul li ul{
  top: 0!important;
  left: 100%!important;
  opacity: 0!important;
  visibility: hidden!important;
}
.mainmenu ul li ul li::after{
  transform: rotate(270deg);
  right: 15px!important;
  top: 20px!important;
}
.mainmenu ul li ul li:hover::after{
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%)!important;
}
.mainmenu ul li ul li:hover ul{
  opacity: 1!important;
  visibility: visible!important;
}
.mainmenu ul li ul li:hover ul li a{
  background: var(--white)!important;
  color: #555!important;
}
.mainmenu ul li ul li ul li:hover a{
  background: var(--orange)!important;
  color: var(--white)!important;
}
.resmenu ul li ul li.menu-item-has-children > a::after{
  content: url('../img/arrow.svg');
  position: absolute;
  right: 5px;
  top: 7px;
  width: 10px;
  height: 10px;
  z-index: 10;
  transition: 0.2s all;
  display: block!important;
}
.resmenu ul li ul li ul{
  margin: 0;
  background: #fff;
}