:root {
  --light-2: #e5e5e5;
}

.header-image-height {
  height: 40px !important;
}

.home-carousel-height {
  height: auto !important;
}

.page-top-image {
  height: 200px !important;
}

.page-middle-image {
  height: 300px !important;
}

.light-2-c {
  color: var(--light-2);
}

.light-2-bg {
  background-color: var(--light-2);
}

.light-2-brdr {
  border-color: var(--light-2);
}

.twitter-bg {
  background-color: #08a0e9;
}

.facebook-bg {
  background-color: #3b5998;
}

.whatsapp-bg {
  background-color: #25d366;
}

.instagram-bg {
  background-color: #dd2a7b;
}

.youtube-bg {
  background-color: #c4302b;
}

.telegram-bg {
  background-color: #0088cc;
}

.linkedin-bg {
  background-color: #0077b5;
}

.twitter-c {
  color: #08a0e9;
}

.facebook-c {
  color: #3b5998;
}

.whatsapp-c {
  color: #25d366;
}

.instagram-c {
  color: #dd2a7b;
}

.hover-youtube-c {
  color: #c4302b;
}

.telegram-c {
  color: #0088cc;
}

.linkedin-c {
  color: #0077b5;
}

.custom-list {
  padding-inline-start: 30px;
}

.cfs-1 {
  font-size: calc(1rem * 1);
}

.cfs-2 {
  font-size: calc(1rem * 1.25);
}

.cfs-3 {
  font-size: calc(1rem * 1.5);
}

.cfs-4 {
  font-size: calc(1rem * 1.75);
}

.cfs-5 {
  font-size: calc(1rem * 2);
}

.cfs-6 {
  font-size: calc(1rem * 2.25);
}

.cfs-7 {
  font-size: calc(1rem * 2.5);
}

.cfs-8 {
  font-size: calc(1rem * 2.75);
}

.cfs-9 {
  font-size: calc(1rem * 3);
}

#button {
  display: inline-flex;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  vertical-align: middle;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.mfSideCont {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
}

.mfSideCont * {
  pointer-events: auto;
}

.mfSideCont.end {
  justify-content: flex-end;
}

.mfSideMenu {
  margin: auto 0;
  padding: 0;
  height: auto;
  width: auto;
  list-style-type: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.mfSideMenu li {
  width: auto;
}

.mfSideMenu li span {
  font-size: 1rem;
  margin: 20px;
  width: auto;
}

.mfSideMenu li a {
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.mfSideMenu li span.text {
  width: 100vw;
  display: inline;
}

.features {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-color: none;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.features .box {
  text-align: center;
  border: 1px solid #ccc;
}

.features .box .img-holder {
  position: relative;
  overflow: hidden;
}

.features .box .img-holder::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 100%;
}

.features .box .img-holder::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0px 0px 170px 500px;
  border-color: transparent transparent white transparent;
  transition: var(--main-transition);
}

.features .box .img-holder img {
  max-width: 100%;
}

.features .box:hover .img-holder::after {
  border-width: 170px 500px 170px 0;
}

.features .box h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 15px;
  height: 5px;
  width: calc(100% - 30px);
}

.features .box p {
  line-height: 2;
  font-size: 20px;
  margin: 30px 0;
  padding: 25px;
  color: #777;
}

.features .quality .img-holder::before {
  background-color: rgb(244 64 54 / 60%);
}

.features .quality a {
  color: #f44036;
  border-color: #f44036;
  background: linear-gradient(to right, #f44036 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.features .time .img-holder::before {
  background-color: rgb(0 150 136 / 60%);
}

.features .time a {
  color: #009688;
  border-color: #009688;
  background: linear-gradient(to right, #009688 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.features .passion .img-holder::before {
  background-color: rgb(3 169 244 / 60%);
}

.features .passion a {
  color: #03a9f4;
  border-color: #03a9f4;
  background: linear-gradient(to right, #03a9f4 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.features .box:hover a {
  background-position: left bottom;
  color: white;
}

@media (min-width: 576px) {
  .home-carousel-height {
    height: 600px !important;
  }

  .page-top-image {
    height: 400px !important;
  }

  .page-middle-image {
    height: 500px !important;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .header-image-height {
    height: 60px !important;
  }
}

@media (min-width: 1200px) {
}

.bg-wrapper {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
}

.section-header {
  padding-top: 5.625em;
  text-align: center;
}

.section-header h3 {
  margin-bottom: 0.5em;
}

.section-header .line-red {
  margin: 2.5em auto 2.9375em auto;
}

.line-red {
  display: block;
  width: 4em;
  height: 0.1875em;
  margin: 0 auto;
  background: #f38181;
}

/* Main Header Styles */
.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: Montserrat, sans-serif;
  color: #fff;
  background: transparent;
}

.main-header .header-wrapper {
  display: block;
  width: 70%;
  margin: 0 auto;
  padding-top: 1em;
}

.main-header .header-wrapper .main-logo {
  float: left;
  font-weight: 700;
  font-size: 1.875em;
}

.main-header .header-wrapper .main-menu {
  float: right;
  text-align: center;
}

.main-header .header-wrapper .main-menu li {
  display: inline-block;
  padding: 0.75em 1.875em;
}

.main-header .header-wrapper .main-menu li a {
  padding-bottom: 0.75em;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875em;
}

.main-header .header-wrapper .main-menu li a:hover {
  color: #fce38a;
  border-bottom: 0.1875em solid #fce38a;
  transition: 0.1s;
}

.main-header .header-wrapper .main-menu li a span {
  font-size: 1.2em;
}

/* Section-1 Styles */
#section-1 {
  height: 90vh;
  color: #fff;
  background-color: #222;
}

#section-1 .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

#section-1 .content-slider input {
  display: none;
}

#section-1 .content-slider .slider {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
}

#section-1 .content-slider .slider .banner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  width: inherit;
  height: inherit;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.5s ease;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper {
  height: 100%;
  padding-top: 6em;
  background-image: linear-gradient(
    rgba(243, 129, 129, 0.9),
    rgba(252, 227, 138, 0.9)
  );
  box-sizing: border-box;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
  padding-bottom: 0.3em;
  font-weight: 400;
  font-size: 2.5em;
  text-transform: none;
  margin: auto;
  text-align: center;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
  font-size: 6em;
  line-height: 95%;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
  display: block;
  width: 4em;
  height: 0.1875em;
  margin: 2.5em auto;
  background: #fff;
}

#section-1
  .content-slider
  .slider
  .banner
  .banner-inner-wrapper
  .learn-more-button {
  padding-bottom: 5em;
  z-index: 15 !important;
}

#section-1
  .content-slider
  .slider
  .banner
  .banner-inner-wrapper
  .learn-more-button
  a {
  padding: 0.5em 2em;
  text-align: center;
  font-size: 0.875em;
  color: #fff;
  text-transform: uppercase;
  border: 0.1875em solid #fff;
}

#section-1
  .content-slider
  .slider
  .banner
  .banner-inner-wrapper
  .learn-more-button
  a:hover {
  color: #e88382;
  border-color: #e88382;
  transition: 0.3s;
}

#section-1 .content-slider .slider #top-banner-1 {
  background-size: cover;
}

#section-1 .content-slider .slider #top-banner-2 {
  background-size: cover;
}

#section-1 .content-slider .slider #top-banner-3 {
  background-size: cover;
}

#section-1 .content-slider .slider #top-banner-4 {
  background-size: cover;
}

#section-1 .content-slider nav {
  position: absolute;
  bottom: 0.5em;
  width: 100%;
  z-index: 10;
  text-align: center;
}

#section-1 .content-slider nav .controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 70%;
  margin: 0 auto;
  color: #fff;
}

#section-1 .content-slider nav .controls label {
  position: relative;
  display: inline-block;
  width: 20%;
  overflow: hidden;
  margin: 0 1em;
  padding-top: 1em;
  text-align: left;
  text-transform: capitalize;
  font-size: 1em;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}

#section-1 .content-slider nav .controls label .progressbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: #fff;
  z-index: 100;
}

#section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
  position: inherit;
  width: inherit;
  height: inherit;
  margin-left: -100%;
  margin-right: 0;
  background: #008080;
}
html[dir="rtl"]
  #section-1
  .content-slider
  nav
  .controls
  label
  .progressbar
  .progressbar-fill {
  margin-left: 0;
  margin-right: -100%;
}

#section-1 .content-slider nav .controls label span {
  font-size: 1.3em;
  font-weight: 700;
}

#section-1 .content-slider nav .controls label:hover {
  color: #e88382;
}

#section-1 .content-slider #banner1:checked ~ .slider #top-banner-1,
#section-1 .content-slider #banner2:checked ~ .slider #top-banner-2,
#section-1 .content-slider #banner3:checked ~ .slider #top-banner-3,
#section-1 .content-slider #banner4:checked ~ .slider #top-banner-4 {
  opacity: 1;
  z-index: 1;
}

#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1),
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2),
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3),
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) {
  cursor: default;
  color: #fff;
  transition: all 0.5s;
}

#section-1
  .content-slider
  #banner1:checked
  ~ nav
  label:nth-of-type(1)
  .progressbar,
#section-1
  .content-slider
  #banner2:checked
  ~ nav
  label:nth-of-type(2)
  .progressbar,
#section-1
  .content-slider
  #banner3:checked
  ~ nav
  label:nth-of-type(3)
  .progressbar,
#section-1
  .content-slider
  #banner4:checked
  ~ nav
  label:nth-of-type(4)
  .progressbar {
  background: #fff;
}

#section-1
  .content-slider
  #banner1:checked
  ~ nav
  label:nth-of-type(1)
  .progressbar-fill,
#section-1
  .content-slider
  #banner2:checked
  ~ nav
  label:nth-of-type(2)
  .progressbar-fill,
#section-1
  .content-slider
  #banner3:checked
  ~ nav
  label:nth-of-type(3)
  .progressbar-fill,
#section-1
  .content-slider
  #banner4:checked
  ~ nav
  label:nth-of-type(4)
  .progressbar-fill {
  animation: progressBarFill 8s linear;
}

html[dir="rtl"]
  #section-1
  .content-slider
  #banner1:checked
  ~ nav
  label:nth-of-type(1)
  .progressbar-fill,
html[dir="rtl"]
  #section-1
  .content-slider
  #banner2:checked
  ~ nav
  label:nth-of-type(2)
  .progressbar-fill,
html[dir="rtl"]
  #section-1
  .content-slider
  #banner3:checked
  ~ nav
  label:nth-of-type(3)
  .progressbar-fill,
html[dir="rtl"]
  #section-1
  .content-slider
  #banner4:checked
  ~ nav
  label:nth-of-type(4)
  .progressbar-fill {
  animation: progressBarFillRtl 8s linear;
}

/* Animations */
@keyframes progressBarFill {
  from {
    margin-left: -100%;
  }

  to {
    margin-left: 0;
  }
}

@keyframes progressBarFillRtl {
  from {
    margin-right: -100%;
  }

  to {
    margin-right: 0;
  }
}

#button {
  display: inline-flex;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  vertical-align: middle;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}


.btn.book-now {
  border-radius: 0;
  color: #232323;
  display: inline-block;
  height: 50px;
  position: fixed;
  right: 0;
  text-align: center;
  text-decoration: none;
  z-index: 1000;
  text-transform: uppercase;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform-origin: bottom right;
  width: 150px;
  /* Hover styles, 
  media queries */
}


div .mode-text {
  margin: 0;
  font-size: 4vw;
  text-transform: uppercase;
  line-height: 1.9;
  height: 80vh;
}

.light .mode-text {
  color: #000;
  font-size: 4vw;
  height: 100%;
}

div .mode {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.light {
  background: #fff;
}

.light .mode {
  mix-blend-mode: lighten;
}

.bw {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
}

.bw {
  height: 100px;
  float: left;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}

.bw:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  transform: scale(0.2);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

#nav {
  position: fixed;
  top: 30%;
  left: 10px;
  right: auto;
  bottom: auto;
  z-index: 9999999;
  mix-blend-mode: difference;
}

html[dir="rtl"] #nav {
  right: 10px;
  left: auto;
}

#nav li {
  display: block;
  padding-bottom: 15px;
  position: relative;
}

#nav li a {
  text-decoration: none;
  color: #fff;
  font-family: arial;
  padding: 5px;
  padding-right: 15px;
  background: transparent;
}

.sub {
  display: none;
}

#nav li:hover .sub li {
  float: left;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.left-slide {
  height: 100%;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}

.left-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.left-slide h1 {
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: -30px;
  padding: -50px;
}

.left-slide p {
  padding: 100px;
}

.right-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 35%;
  width: 65%;
  transition: transform 0.5s ease-in-out;
}

.right-slide > div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}

button {
  background-color: #fff;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  padding: 15px;
}

button:hover {
  color: #222;
}

button:focus {
  outline: none;
}

.slider-container .action-buttons button {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}

.slider-container .action-buttons .down-button {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.slider-container .action-buttons .up-button {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.my-header-img {
  height: 50px;
  margin: 15px 0;
}
@media (min-width: 576px) {
  .my-header-img {
    height: 60px;
  }
}

@media (min-width: 992px) {
  .my-header-img {
    height: 70px;
  }
}

@media (min-width: 1200px) {
  .my-header-img {
    height: 80px;
  }
}

/* < 576px */
.test {
  width: 100%;
}
/* > 576px */
@media (min-width: 576px) {
  .test {
    width: 100%;
  }
}
/* > 768px */
@media (min-width: 768px) {
  .test {
    width: 90%;
  }
}
/* > 992px */
@media (min-width: 992px) {
  .test {
    width: 80%;
  }
}
/* > 1200px */
@media (min-width: 1200px) {
  .test {
    width: 80%;
  }
}

/*///////////////////////////////////////////////////////////*/

.welcome-modal {
  position: fixed;
  bottom: 0;
  right: 0;
  left: auto;
  display: none;
  z-index: 9999999;
  height: 18%;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

@media (min-width: 768px) {
  .welcome-modal {
    height: 30%;
  }
}

html[dir="rtl"] .welcome-modal {
  right: auto;
  left: 0;
}

.welcome-modal-enter {
  display: block;
  -webkit-animation: slide-in-fwd-right 0.4s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

html[dir="rtl"] .welcome-modal-enter {
}

.welcome-modal-exit {
  display: block;
  -webkit-animation: slide-out-bck-right 0.5s
    cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-bck-right 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

html[dir="rtl"] .welcome-modal-exit {
}

/* enter ltr */
@-webkit-keyframes slide-in-fwd-right {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(1000px);
    transform: translateZ(-1400px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-right {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(1000px);
    transform: translateZ(-1400px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}

/* exit ltr */
@-webkit-keyframes slide-out-bck-right {
  0% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-1100px) translateX(1000px);
    transform: translateZ(-1100px) translateX(1000px);
    opacity: 0;
  }
}
@keyframes slide-out-bck-right {
  0% {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-1100px) translateX(1000px);
    transform: translateZ(-1100px) translateX(1000px);
    opacity: 0;
  }
}
.vl {
  border-left: 2px solid #cccccc;
  height: 100px;
}

.v2 {
  border-left: 2px solid #cccccc;
  height: 250px;
}

.v3 {
  border-left: 2px solid #cccccc;
  height: 350px;
}