:root {
  --mainColor: #ea5f24;
  --secondColor: #fcec05;
}
body {
  font-family: 'Poppins', sans-serif;
}

/* Let's get this party started */
body::-webkit-scrollbar {
  width: 10px;
}
/* Track */
body::-webkit-scrollbar-track {
  /* -webkit-border-radius: 10px;
  border-radius: 10px; */
}
/* Handle */
body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--mainColor);
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: var(--mainColor);
}

::-webkit-search-results-decoration {
  color: #fff;
  background-color: var(--mainColor);
}
::-moz-selection {
  color: #fff;
  background-color: var(--mainColor);
}
::selection {
  color: #fff;
  background-color: var(--mainColor);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a, a:hover {
  text-decoration: none;
  transition: .4s ease-in-out;
}

.preloders {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  height: 100%;
}

.preloders svg {
  visibility: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

/* START => Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.20);
}
header .head-header {
  border-bottom: 1px solid #fff;
  padding: .5rem 0;
}
header .head-header .left-head a {
}
header .head-header .left-head a:first-child {
  margin-right: .6rem
}
header .head-header .left-head a i {
  width: 20px;
}
header .head-header .left-head a:hover {
  color: var(--secondColor);
}
header .head-header .right-head {
  display: flex;
  align-items: center;
}
header .head-header a {
  color: #fff;
  font-size: 14px;
}
.social-head {}
.social-head a {
  color: #ececec;
  margin: auto .5rem;
}
.social-head a i {
  transition: 0.4s;
}
.social-head a:hover {
  color: var(--mainColor);
}
.social-head a:hover i.fa-facebook-f {
  color: #3b5998
}
.social-head a:hover i.fa-twitter {
  color: #55acee
}
.social-head a:hover i.fa-instagram {
  color: #e95950
}
.social-head a:hover i.fa-whatsapp {
  color: #4dc247
}
.social-head a:hover i.fa-linkedin-in {
  color: #007bb5
}
.social-head a:hover i.fa-youtube {
  color: #e95950
}
.social-head a:hover i.fa-telegram-plane {
  color: #0088cc;
}
.social-head a:hover i.fa-pinterest-p {
  color: #cb2027;
}
header .head-header .right-head a.langs {
  margin-left: 1rem;
  border-left: 1px solid #fff;
  padding-left: 1rem;
}
header .head-header .right-head a.langs:hover {
  color: var(--mainColor);
}

header .logo {}
header .logo a {
  display: block;
}
header .logo a img {
  max-height: 56px;
}
header nav {}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {}
header nav ul li a {
  display: inline-block;
  padding: 1rem;
  color: #ececec;
  font-weight: 500;
  position: relative;
}
header nav ul li a::before,
header nav ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--mainColor);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: .5s;
}
header nav ul li a::after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transform-origin: left;
}
header nav ul li a.active::before,
header nav ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
header nav ul li a.active::after,
header nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}
header nav ul li a.active,
header nav ul li a:hover {
  color: #fff;
}
header nav ul li a:hover,
header nav ul li a.active {
  background-color: rgba(234, 95, 36, 0.4);
}
header nav ul li .dropdown-menu {
  inset: 20px 0 auto auto !important;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
header nav ul li .dropdown-menu.show {
  inset: 0px 0 auto auto !important;
}
header nav ul li .dropdown-menu .dropdown-item {
  padding: .25rem .5rem;
}
header nav ul li .dropdown-menu a:hover {
  color: var(--mainColor);
}
header nav ul li .dropdown-menu a::after,
header nav ul li .dropdown-menu a::before{
  content: unset;
}
.dropdown-toggle::after {
  border: 0;
}
.btn-account {
  color: #fff;
  padding: 1rem;
}
.btn-account:hover {
  color: #fff;
}
.langs_down .dropdown-menu {
  inset: 20px 0 auto auto !important;
  border-radius: 6px;
  min-width: 6rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 0;
  transition: 0.5s;
}
.langs_down .dropdown-menu.show {
  inset: 0px 0 auto auto !important;
}
.langs_down .dropdown-menu a {
  font-size: 14px;
  display: block;
  text-align: center;
  /* background-color: var(--mainColor); */
  color: var(--mainColor);
  border-radius: 5px;
  padding: .5rem;
  display: block;
}
.langs_down .dropdown-menu a {
  color: #444;
  display: block;
  padding: .5rem;
}
.langs_down .dropdown-menu a:hover {
  color: var(--mainColor);
}
.menu-mobile li.logo,
.toggle-menu {
  display: none;
}
/* START => Header */

/* START => Home Sliders */
.sec-slider {
  position: relative;
}
.home-slider,
.home-slider .owl-stage-outer,
.home-slider .owl-stage,
.home-slider .owl-item,
.home-slider .item {
  height: calc(100vh - 50px);
}
.home-slider .item {
  /* background-position: 100% 100%; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-slider .item .img-slide {
  width: 100%;
  height: 100%;
}
.home-slider .item .img-slide img {
  height: 100%;
  object-fit: cover;
}
.home-slider .item .item-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.home-slider .item .item-txt span {
  color: #fff;
  padding-left: .2rem;
  display: block;
  margin-bottom: 1rem;
}
.home-slider .item .item-txt h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.home-slider .item .item-txt p {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  padding-left: .2rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.btn-style1 {
  background-color: transparent;
  border: 2px solid var(--mainColor);
  color: #FFF;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  padding: 15px 30px;
  margin-top: 20px;
  /* width: 200px; */
  font-weight: 500;
  border-radius: 10px;
  transition: all .5s;
  display: inline-block;
}
.btn-style1:hover {
  background-color: var(--mainColor);
  color: #fff;
}
/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1
}
/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0
}
/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
.animate-300ms {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
.animate-500ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.animate-200ms {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.animate-400ms {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}
.animate-600ms {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.animate-800ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}
.animate-100ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}
.home-slider.owl-theme .owl-dots {
  position: absolute;
  top: 50%;
  right: 50px;
  height: 100%;
  /* writing-mode: vertical-lr;
  text-orientation: mixed; */
  /* transform: rotate(90deg);*/
  transform-origin: right top 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateY(-50%);
  text-orientation: sideways;
  /* z-index: 999; */
  margin-top: 0 !important;
}
.home-slider.owl-theme .owl-dots>button {
  margin: 10px 0;
  font-size: 16px;
  cursor: pointer;
  transform: rotate(90deg);
  color: #FFF;
  outline: 0;
  transition: .5s;
}
.home-slider.owl-theme .owl-dots>button.active {
  color: var(--mainColor);
  font-size: 20px;
}
.home-slider.owl-theme .owl-nav {
  position: absolute;
  right: 25px;
  bottom: 20px;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--mainColor);
}
.home-slider.owl-theme .owl-nav>button {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--mainColor);
  padding: .5rem 1.3rem !important;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}
.home-slider.owl-theme .owl-nav>button:focus,
.home-slider.owl-theme .owl-nav>button:hover {
  outline: 0;
  background-color:var(--mainColor);
  color: #fff;
}
/* //END => Home Sliders */

/* START => About Us */
.section-aboutus {
  
}
.txt-about {
  padding-top: 1rem;
}
.txt-about strong {}
.txt-about p {
  padding-left: .5rem;
  padding-right: 2rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.btn-more {
  background-color: transparent;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  padding: 15px 2rem;
  margin-top: 1rem;
  border-radius: 5px;
  transition: all .5s;
  display: inline-block;
}
.btn-more:hover {
  color: #FFF;
  background-color: var(--mainColor);
}
.btn-more.btn-more-arrow {
  background-color: transparent;
  margin-top: 0;
  border: 0;
  padding: 0;
  opacity: .8;
  text-transform: uppercase;
}
.btn-more.btn-more-arrow:hover {
  color: var(--mainColor);
  opacity: 1;
}

.img-about {
  position: relative;
}
.img-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.img-about:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.img-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.5s;
}
.img-about:hover::after {
  top: 10px;
  left: -10px;
  background-color: var(--mainColor);
}
.btn-play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  color: #fff;
  font-size: 2rem;
  animation: shadow-pulse 1s infinite;
  cursor: pointer;
  z-index: 1;
}
.btn-play-vid:hover {
  color: #fff;
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0)
  }
}
/* START => About Us */

/* START => Programs */
.sec-title strong {
  color: #333;
}
.sec-title p {
  color: #333;
}
.item-program {}
.item-program a {
  display: block;
  position: relative;
  height: 500px;
}
.item-program a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-program a strong {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  transition: .5s;
}
.item-program:hover a strong {
  bottom: 50px;
}
.item-program a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,0.7035189075630253) 0%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.7035189075630253) 0%, rgba(255,255,255,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,0.7035189075630253) 0%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  transition: .5s;
}

.item-program:hover a::before {
  height: 50%;
}
/* START => Programs */

/* START => */
.item-today-tours {
  position: relative;
  margin-bottom: 20px;
}
.item-today-tours .img-today-tours {
  overflow: hidden;
  position: relative;
  /* background-color: var(--mainColor); */
  z-index: 1;
}
.item-spiral:hover .item__partner:before,
.item-today-tours:hover .item-spiral:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/spiral.gif);
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: -1;
  margin: 0;
  opacity: 0.14;
}
.item-today-tours .img-today-tours a {
  display: block;
  height: 197px;
  overflow: hidden;
}
.item-today-tours .img-today-tours img {
  -ms-hyphenate-limit-zone: 450px;
  object-fit: fill;
  width: 100%;
  height: 100%;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.item-today-tours:hover .img-today-tours img {
  transform: scale(1.1);
}
.item-today-tours .txt-today-tours {
  background-color: #f9f9f9;
  position: relative;
  padding: .5rem;
}
.item-today-tours a.title {
  font-weight: 500;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--mainColor);
  display: block;
  position: relative;
  padding-bottom: .3rem;
  
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.item-today-tours a.title:hover {
  color: var(--mainColor);
}
.item-today-tours a.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--mainColor);
  transition: 0.5s;
}
.item-today-tours .txt-today-tours:hover a.title::after {
  width: 100%;
}
.item-today-tours .txt-today-tours a.title:hover::after {
  background-color: var(--mainColor);
}
.item-today-tours .txt-today-tours p {
  font-weight: 300;
  color: #333;
  font-size: 13px;
  margin: auto;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}
.item-today-tours .txt-today-tours .sites {
  font-size: 13px;
}
.item-today-tours .txt-today-tours .sites i {
  width: 20px;
}
.item-today-tours a.read-more i {
  width: 20px;
}
.item-today-tours a.read-more {
  color: var(--mainColor);
  font-size: 16px;
  font-weight: 700;
}
.item-today-tours a.read-more:hover {
  color: var(--mainColor);
}
.item-today-tours a.more-plus {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--mainColor);
  color: #fff;
  padding: 20px;
  border-radius: 100px 10px 0;
  transition: 0.5s;
}
.item-today-tours a.more-plus:hover {
  background-color: var(--mainColor);
}
.item-today-tours a.read-more i,
.item-today-tours a.more-plus i {
  transition: 0.5s;
}
.item-today-tours:hover a.more-plus i {
  transform: scale(1.5) rotate(360deg);
}
/* START => Today Tours */

/* START => Galleries */
.swiper-galleries {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.item-gallery {
  position: relative;
}
.item-gallery .link-item {
  display: block;
  height: 300px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  position: relative;
  z-index: 1;
}
.item-gallery .link-item::after {
  content: "";
  /* background: linear-gradient(rgba(70,43,93,0),rgba(0,0,0,0.89),#000); */
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.51), rgba(0, 0, 0, 0.61));
  padding: 30px 9px 9px;
  transition: .3s all ease;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 60px;
}
.item-gallery .link-item:hover::after {
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.item-gallery .link-item .icon-play {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background-color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  vertical-align: middle;
  transition: .4s;
  z-index: 1;
}
.item-gallery:hover .link-item .icon-play {
  transform: translateX(-50%) scale(1.2);
  color: var(--mainColor);
}
.swiper-galleries {
  padding-bottom: 0;
  padding-top: 0;
  width: 100%;
  margin-top: 60px;
}
.item-gallery {
  background-position: center;
  background-size: cover;
  /* width: 350px; */
}
.swiper-galleries .screenshot-style2 .swiper-pagination-bullet-active {
  background: #ec919a;
}
.swiper-galleries .swiper-pagination-bullet {
  background: #dddddd;
  opacity: 1 !important;
  width: 12px;
  height: 12px;
}
.item-gallery-active {
  position: relative;
}
.item-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-galleries .screenshot-style2 {
  background-color: #0f1129;
}
.swiper-galleries .swiper-pagination-bullet-active {
  background: #007aff none repeat scroll 0 0 !important;
  opacity: 1;
}
.swiper-galleries .swiper-button-next {
  display: block !important;
  opacity: 1;
}
.swiper-galleries .swiper-button-prev {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 45px;
  left: -50px;
  font-size: 25px;
  padding-right: 0;
  top: 60%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: var(--blueColor);
}
.swiper-galleries .swiper-button {
  position: absolute;
  top: 40%;
}
.swiper-galleries .swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 45px;
  padding-left: 0;
  right: -50px;
  font-size: 25px;
  top: 60%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: var(--blueColor);
}
.swiper-galleries .swiper-button-prev:hover,
.swiper-galleries .swiper-button-next:hover,
.swiper-galleries .swiper-button-prev:focus,
.swiper-galleries .swiper-button-next:focus {
  outline: none;
  background: var(--orangeColor);
}
.swiper-galleries .swiper-pagination-fraction,
.swiper-galleries .swiper-pagination-custom,
.swiper-galleries .swiper-pagination-bullets {
  display: none;
}
.swiper-galleries .swiper-button-next:after,
.swiper-galleries .swiper-button-prev:after {
  font-size: 20px;
}
/* START => Galleries */

/* START => testimonial */
.sec-tistimonilas .sec-title {
  color: #fff;
}
.bg__sections {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.bg__sections.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(234, 95, 36, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sec-tistimonilas .media-body p {
  color: #fff;
  line-height: 1.8;
  letter-spacing: 1.3px;
  word-wrap: break-word;
  font-size: 18px;
  font-weight: 300;
}
.name__client {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.swiper-button-next, .swiper-button-prev {
  color: #fff;
  font-weight: bold;
}
/* //END => testimonial */

/* START => Footer */
footer {
  position: relative;
  background-size: cover;
  background-position: top center;
}
footer a {
  color: #333;
  padding: 0 0 .4rem 0;
  display: block;
  font-size: 14px;
}
footer a:hover {
  color: var(--mainColor);
}
footer .footer-links a:hover {
  color: var(--mainColor);
  transform: translateX(5px);
}
.social-links li,
.social-links a {
  display: inline-block;
  margin: auto 3px;
}
.social-links i {
  color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: .5s;
}
.social-links a:hover i {
  transform: scale(1.2) rotate(360deg);
}
footer .fa-facebook-f { background-color: #3b5998 }
footer .fa-twitter { background-color: #55acee }
footer .fa-google-plus-g { background-color: #dd4b39 }
footer .fa-instagram { background-color: #e95950 }
footer .fa-linkedin-in { background-color: #007bb5 }
footer .fa-youtube { background-color: #e95950 }
footer .fa-snapchat { background-color: #ffcd36; }

.footer-copyright a {
  color: var(--mainColor);
  font-weight: bold;
}
/* //END => Footer */

/*

***************************************************************************************
***************************************************************************************

===================================  SRTAT Pages ======================================

***************************************************************************************
***************************************************************************************

*/

/* Start => Breadcrumb */
.breadcrumb {
  padding: 150px 0 40px 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  border-bottom: 5px solid var(--blueDark);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 0;
  margin: 0;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #EF5A00 0%, #008afe 90%);
  opacity: .9;
  z-index: -1;
}
.site-header__decor {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  z-index: 99;
}

.site-header__decor-row {
  margin-left: -7px;
  margin-right: -7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header__decor-single {
  padding-left: 7px;
  padding-right: 7px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.33333%;
          flex: 1 1 33.33333%;
  max-width: 33.33333%;
}

[class*=site-header__decor-inner-] {
  position: relative;
}

[class*=site-header__decor-inner-]::before {
  content: '';
  /* position: absolute; */
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--mainColor);
  opacity: 0.9;
}

.site-header__decor-inner-2::before {
  background-color: var(--secondColor);
}

.site-header__decor-inner-3::before {
  background-color: dodgerblue;
}
.breadcrumb h2 {
  margin: auto;
  font-weight: 700;
  line-height: 2;
  color: #FFF;
  text-transform: capitalize;
}
.line-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  /* background-image: url(../imgs/curve.svg);
  background-repeat: no-repeat;
  background-position: center center; */
  z-index: 99;
  width: 100%;
  height: 100%;
}
.line-curve svg {
  display: inline-block;
  vertical-align: middle;
}
/* //END => Breadcrumb */

/* START => Page Contact Us */
.map-contact {
  line-height: 0;
}
.map-contact iframe {
  width: 100% !important;
  height: 300px !important;
}
.page-contactus {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-contactus::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:rgba(255, 255, 255, 0.9);
  z-index: -1;
}
.page-contactus .box-contact {
  width: 75%;
  margin: auto;
  padding: 30px 50px 50px 50px;
  box-shadow: 0 5px 10px #ddd;
  background-color: #fff;
  position: relative;
}
.page-contactus .box-contact::before,
.page-contactus .box-contact::after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.page-contactus .box-contact::after {
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
.page-contactus .box-contact .form-control {
  height: auto;
  padding: .6rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.page-contactus .box-contact textarea {
  height: 120px;
  resize: none;
}
.btn-contactus {
  display: inline-block;
  text-align: center;
  background-color: var(--mainColor);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  opacity: 0.8;
}
.btn-contactus:hover {
  color: #fff;
  opacity: 1;
  background-color: var(--mainColor);
}

.inf-contact h3 {
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--blueDark);
}
.inf-contact p {
  margin-bottom: 20px;
}
.inf-contact p a {
  color: #666;
  display: block;
}
.inf-contact p a:hover {
  color: var(--purpleDark);
}
.inf-contact p a i {
  width: 30px;
  color: var(--orangColor);
}
.inf-contact .social-contacts {
  margin-top: 40px;
}
.inf-contact .social-contacts li {
  display: inline-block;
  margin: auto .2rem;
}
.inf-contact .social-contacts li i {
  color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: .4s;
}
.inf-contact .social-contacts li i:hover {
  transform: scale(1.1);
}
.inf-contact .social-contacts li .fa-facebook-f {
  background-color: #3b5998
}
.inf-contact .social-contacts li .fa-twitter {
  background-color: #55acee
}
.inf-contact .social-contacts li .fa-google-plus-g {
  background-color: #dd4b39
}
.inf-contact .social-contacts li .fa-instagram {
  background-color: #e95950
}
.inf-contact .social-contacts li .fa-whatsapp {
  background-color: #4dc247
}
.inf-contact .social-contacts li .fa-linkedin-in {
  background-color: #007bb5
}
.inf-contact .social-contacts li .fa-youtube {
  background-color: #e95950
}
/* //END => Page Contact Us */

/* START => Today Tours Details */
.imgs-trip .gallery-top2 {
  border-bottom: 3px solid var(--mainColor);
}
.imgs-trip .gallery-top2 .swiper-slide a {
  display: block;
  height: 350px;
}
.imgs-trip .gallery-top2 .swiper-slide a img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.imgs-trip .gallery-top2 .swiper-slide:hover a img {
  filter: blur(1px) grayscale(20%) opacity(0.9);
}
.imgs-trip .swiper-slide .thumb {
  height: 100px;
}
.imgs-trip .swiper-slide .thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.become-teacher__form {
  /* padding-left: 70px; */
  position: relative;
}
.become-teacher__form:before {
  content: '';
  width: 197px;
  height: 268px;
  background-image: url(../images/dot-pattern-1-2.png);
  position: absolute;
  bottom: -11%;
  left: 87%;
  z-index: -1;
}
.become-teacher__form-top {
  background-color: var(--mainColor);
  padding-left: 60px;
  position: relative;
}
.become-teacher__form-top::before {
  content: '';
  width: 38px;
  height: 10px;
  background-image: url(../images/become-form-angle.png);
  background-position: 0 0;
  position: absolute;
  top: 100%;
  left: 60px;
}
.become-teacher__form-title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  padding: 29px 0;
}
.become-teacher__form-content {
  border-style: solid;
  border-width: 2px;
  border-color: #f1f1f1;
  background-color: white;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.become-teacher__form textarea,
.become-teacher__form input {
  border: none;
  outline: none;
  width: 100%;
  background-color: #f1f1f1;
  height: 77px;
  font-size: 15px;
  color: #81868a;
  font-weight: 500;
  padding-left: 15px;
  display: block;
  margin-bottom: 10px;
}
.become-teacher__form textarea::-webkit-input-placeholder,
.become-teacher__form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #81868a;
}
.become-teacher__form textarea::-moz-placeholder,
.become-teacher__form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #81868a;
}
.become-teacher__form textarea::-ms-input-placeholder,
.become-teacher__form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #81868a;
}
.become-teacher__form textarea::-moz-placeholder,
.become-teacher__form input:-moz-placeholder {
  /* Firefox 18- */
  color: #81868a;
}
.become-teacher__form textarea {
  min-height: 100px;
  padding-top: 1rem;
}
.become-teacher__form-btn {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 21.5px 58px;
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--mainColor);
  opacity: 0.8;
  transition: 0.3s;
}
.become-teacher__form-btn:hover {
  color: #fff;
  opacity: 1;
}
.become-teacher__title {
  margin: 0;
  color: var(--secondColor);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 40px;
}
.become-teacher__subtitle {
  font-size: 20px;
  color: var(--secondColor);
  font-weight: 600;
  margin: 0;
  margin-top: 40px;
  margin-bottom: 20px;
}
.become-teacher__text {
  font-size: 16px;
  line-height: 34px;
  font-weight: 500;
  color: #81868a;
  margin: 0;
}

.video-trip {
  margin-top: 2rem;
}
.video-trip iframe {
  width: 100% !important;
  height: 300px !important;
}

.details h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--mainColor);
  margin-bottom: 1rem;
}

.lead__txt {
  font-size: 16px;
  font-weight: 300;
  color: #666;
}

blockquote {
  padding: 40px 50px;
  background: #fff8e8;
  padding-left: 109px;
  margin: 28px 0;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
blockquote::before {
  content: "\f10d";
  left: 50px;
  top: 38px;
  position: absolute;
  color: var(--mainColor);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 45px;
}
/* START => Today Tours Details */

/* START => About US */
.sec-about {
  overflow: hidden;
}
.sec-about .img-about {
  position: relative;
  overflow: hidden;
  height: 300px;
  padding: .5rem;
}
.sec-about .img-about::after,
.sec-about .img-about::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  background-color: var(--main);
  z-index: -1;
}
.sec-about .img-about::after {
  width: 2px;
  height: 50%;
}
.sec-about .img-about::before {
  width: 50%;
  height: 2px;
}
.sec-about .img-about img {
  width: 100%;
  height: 100%;
  transition: 10s ease;
}
.sec-about .img-about::after img,
.sec-about .img-about::before img {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 4px;
  background-color: var(--main);
  z-index: -1;
}
.sec-about .img-about::after img {
  width: 2px;
  height: 50%;
}
.sec-about .img-about::before img {
  width: 50%;
  height: 2px;
}

.block-vision.block-mission strong,
.sec-about .txt-about h1 {
  color: var(--main);
  font-weight: 300;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.sec-about .txt-about h1::after {
  content: "";
  background-color: var(--main);
  width: 20%;
  height: 5px;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec-about .txt-about h3 {
  color: #666;
}
.sec-about .txt-about p.lead__txt {
  color: #666;
  font-weight: 400 !important;
}

.sec-about .txt-about strong {
  margin-bottom: 1rem;
}
.sec-about li.lead__txt {
  font-size: 1.1rem !important;
  padding: .3rem 0;
}


.clients-block .img-client {
  width: 12.5%;
  flex: 0 0 12.5%;
  height: 100px;
  margin: 1.5rem auto;
  padding: 0 1rem;
  border: 1px solid #f8f8f8;
}
.clients-block .img-client img {
  object-fit: contain;
  height: 100%;
  /* width: 100%; */
  display: block;
  margin: auto;
}

.btn-menu {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--black);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  transition: 0.2s;
  margin: auto;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
}
.btn-menu:hover {
  color: #fff;
  background-color: var(--main);
}
/* //END => About US */

/* START => */
/* START => */