@import url("https://fonts.googleapis.com/css?family=Poppins:200i,300,300i,400,400i,500,500i,600,600i,700,700i&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Long+Cang&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
}

.fixed-call-btn {
  position: fixed;
  background: green;
  color: white;
  font-size: 14px;
  width: 100%;
  height: 40px;
  padding: 10px 10px;
  text-align: center;
  bottom: 0;
  left: 0;
  z-index: 50;
  text-decoration: none;
  display: none;
}

@media (max-width: 768px) {
  .fixed-call-btn {
    display: block;
  }
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0rem;
  background-color: white;
  -webkit-transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: width;
  z-index: 99;
}

.nav.is-active {
  width: 100%;
}

.nav .nav__trigger {
  position: absolute;
  top: 90px;
  right: 1rem;
  margin-top: -10px;
  padding: 8px 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 10;
  cursor: pointer;
  background: #FFCC00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  .nav .nav__trigger {
    top: 5%;
  }
}

.nav .nav__trigger .bars {
  position: relative;
}

.nav .nav__trigger .bars, .nav .nav__trigger .bars:before, .nav .nav__trigger .bars:after {
  width: 3px;
  height: 3px;
  background-color: white;
  border-radius: 50px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.nav .nav__trigger .bars:before, .nav .nav__trigger .bars:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.nav .nav__trigger .bars:before {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.nav .nav__trigger .bars:after {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.nav .nav__trigger.is-active .bars:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 25px;
  margin-left: -11px;
}

.nav .nav__trigger.is-active .bars:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 25px;
  margin-left: -11px;
}

.nav .nav__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0s linear 0.25s;
  transition: 0s linear 0.25s;
  overflow-y: scroll;
  padding: 50px 60px 50px 60px;
}

.nav .nav__content::-webkit-scrollbar {
  width: 0px;
}

@media (max-width: 768px) {
  .nav .nav__content {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .nav .nav__content {
    padding-right: 20px;
  }
}

.nav .nav__content.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0s linear;
  transition: 0s linear;
}

.nav .nav__content.is-active .nav__item a {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-property: opacity, color, -webkit-transform;
  transition-property: opacity, color, -webkit-transform;
  transition-property: transform, opacity, color;
  transition-property: transform, opacity, color, -webkit-transform;
  -webkit-transition-duration: 0.55s, 0.55s, 0.3s;
          transition-duration: 0.55s, 0.55s, 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out, ease-in-out;
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out, ease-in-out;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(1) a {
  -webkit-transition-delay: 0s, 0s, 0s;
          transition-delay: 0s, 0s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(2) a {
  -webkit-transition-delay: 0.05s, 0.05s, 0s;
          transition-delay: 0.05s, 0.05s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(3) a {
  -webkit-transition-delay: 0.1s, 0.1s, 0s;
          transition-delay: 0.1s, 0.1s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(4) a {
  -webkit-transition-delay: 0.15s, 0.15s, 0s;
          transition-delay: 0.15s, 0.15s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(5) a {
  -webkit-transition-delay: 0.2s, 0.2s, 0s;
          transition-delay: 0.2s, 0.2s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(6) a {
  -webkit-transition-delay: 0.25s, 0.25s, 0s;
          transition-delay: 0.25s, 0.25s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(7) a {
  -webkit-transition-delay: 0.3s, 0.3s, 0s;
          transition-delay: 0.3s, 0.3s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(8) a {
  -webkit-transition-delay: 0.35s, 0.35s, 0s;
          transition-delay: 0.35s, 0.35s, 0s;
}

.nav .nav__content.is-active .nav__list .nav__item:nth-of-type(9) a {
  -webkit-transition-delay: 0.4s, 0.4s, 0s;
          transition-delay: 0.4s, 0.4s, 0s;
}

.nav .nav__content .logo {
  width: 100px;
  margin-top: 0px;
}

.nav .nav__content .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  .nav .nav__content .logo {
    width: 70px;
  }
}

.nav__list {
  height: 100%;
  padding-left: 80px;
  margin-top: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  .nav__list {
    padding-left: 0px;
  }
}

.nav__list ul {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 27%;
          flex: 0 0 27%;
  list-style: none;
  margin: 0;
  padding: 0px 10px;
}

@media (max-width: 1024px) {
  .nav__list ul {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

@media (max-width: 768px) {
  .nav__list ul {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.nav__list ul span {
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
  color: #FFCC00;
}

@media (max-width: 768px) {
  .nav__list .nav_list-ul1 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav__list .nav_list-ul2 {
    display: none;
  }
}

.nav__item {
  overflow: hidden;
}

.nav__item a {
  margin-top: 15px;
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform, opacity;
  background: #f3f3f3;
  display: block;
  padding: 8px 15px;
}

.nav__item a:hover {
  color: white;
}

.nav__divider {
  margin: 1.75rem 0 1.5rem;
  width: 100%;
  height: 2px;
  background-color: black;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn {
  text-decoration: none;
}

.s-a {
  background: #FFCC00 !important;
  color: black !important;
}

.m-a {
  color: #FFCC00 !important;
}

main .sidemenu {
  width: 300px;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  background: #2c2c2c;
  z-index: 100;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main .sidemenu .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

main .sidemenu span {
  font-size: 2rem;
  color: white;
  display: block;
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 20px;
}

main .sidemenu ul {
  margin: 0;
  padding: 0;
}

main .sidemenu ul li {
  list-style: none;
}

main .sidemenu ul li a {
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  background: #272727;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 13px;
}

main .sidemenu ul li a:hover {
  background: #FFCC00;
  color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main .menu-active {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main .shimmer {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 60;
  display: none;
}

main .popup {
  position: fixed;
  width: 40%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  left: 50%;
  top: 50%;
  z-index: 100;
  background: white;
  padding: 25px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 10px #3636364a;
          box-shadow: 0px 0px 10px #3636364a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 800px) {
  main .popup {
    width: 95%;
  }
}

main .popup .close {
  width: 100%;
}

main .popup .close span {
  display: block;
  width: 30px;
  height: 30px;
  float: right;
  position: relative;
  top: 8px;
  cursor: pointer;
}

main .popup .close span i {
  color: #2c2c2c;
}

main .popup .form-holders h2 {
  display: block;
  margin-bottom: 20px;
}

main .popup .form-holders input {
  width: 100%;
  height: 45px;
  border: none;
  border-bottom: 2px solid #2c2c2c;
  margin-bottom: 20px;
  background: none;
  outline: none;
}

main .popup .form-holders ::-webkit-input-placeholder {
  font-size: 13px;
  font-family: sans-serif;
  color: black;
}

main .popup .form-holders :-ms-input-placeholder {
  font-size: 13px;
  font-family: sans-serif;
  color: black;
}

main .popup .form-holders ::-ms-input-placeholder {
  font-size: 13px;
  font-family: sans-serif;
  color: black;
}

main .popup .form-holders ::placeholder {
  font-size: 13px;
  font-family: sans-serif;
  color: black;
}

main .popup .form-holders .btn {
  display: block;
  width: 140px;
  text-align: center;
  font-weight: bold;
  color: white;
  margin-top: 0px;
  background: #2c2c2c;
  text-decoration: none;
  padding: 14px 0px;
  font-size: 14px;
  text-transform: uppercase;
}

main .popup .form-holders p {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  display: block;
  margin-top: 10px;
  opacity: 0.7;
}

main .popup .form-holders p a {
  text-decoration: none;
  font-style: italic;
  color: black;
}

main .pop-active {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}



main #hero {
  width: 100%;
  height: 100vh;
  background-color: #363636;
  background: url("../images/bannerold.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  main #hero {
    background: url("../images/mobile-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

main #hero .content-container {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  color: white;
  z-index: 5;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  main #hero .content-container {
    width: 100%;
  }
}

main #hero .content-container h1 {
  font-size: 4.5rem;
  margin: 0;
  padding: 0;
  font-family: 'Kalam', cursive;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0em;
  font-family: 'Long Cang', cursive;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  main #hero .content-container h1 {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  main #hero .content-container h1 {
    font-size: 3rem;
  }
}

@media (max-width: 425px) {
  main #hero .content-container h1 {
    font-size: 3rem;
  }
}

main #hero .content-container .hero-head-animation {
  opacity: 1;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main #hero .content-container h3 {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 15px;
  font-weight: 800;
}

@media (max-width: 768px) {
  main #hero .content-container h3 {
    font-size: 1rem;
    letter-spacing: 7px;
  }
}

main #hero .content-container .banner-main-btn {
  background: #FFCC00;
  padding: 10px 10px;
  display: block;
  width: 280px;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #hero .content-container .banner-main-btn:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
}

main #hero:after {
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 1;
}

main #hero .scorll-btn {
  position: absolute;
  bottom: 25px;
  left: 48%;
  z-index: 5;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #hero .scorll-btn span {
  border: 2px solid white;
  width: 30px;
  height: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

main #hero .scorll-btn span::before {
  position: absolute;
  width: 7px;
  height: 7px;
  background: white;
  content: '';
  border-radius: 50px;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 15px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

main #about-section {
  width: 100%;
  float: left;
  padding: 80px 80px 100px 80px;
}

@media (max-width: 768px) {
  main #about-section {
    padding: 60px 40px 80px 40px;
  }
  main #about-section h1 {
    font-size: 1.7em;
  }
}

@media (max-width: 480px) {
  main #about-section {
    padding: 40px 20px;
  }
}

main #about-section h1 {
  text-align: center;
  color: #575656;
  font-weight: 600;
}

main #about-section p {
  color: #666565;
  line-height: 1.4;
  font-size: 20px;
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  main #about-section p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 30px;
  }
}

main .tittle-holder {
  padding: 20px 25%;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  main .tittle-holder {
    padding: 20px 20px;
  }
}

main .tittle-holder h1 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0px;
}

main .tittle-holder h1 span {
  font-weight: bolder;
  font-size: 2.1rem;
}

main .tittle-holder p {
  font-size: 15px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.473);
  font-weight: 500;
}

main #things {
  width: 100%;
  float: left;
  background: white;
}

@media (max-width: 800px) {
  main #things {
    margin-top: 0px;
  }
}

main #things .things-holder-right {
  width: 100%;
  height: 400px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  main #things .things-holder-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 600px;
    margin-bottom: 30px;
  }
}

main #things .things-holder-right .things-image {
  width: 60%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 800px) {
  main #things .things-holder-right .things-image {
    width: 100%;
  }
}

main #things .things-holder-right .things-image:after {
  width: 200px;
  height: 100%;
  position: absolute;
  content: '';
  background: white;
  right: -180px;
  top: 0;
  -webkit-transform: rotate(20deg) scale(1.8);
          transform: rotate(20deg) scale(1.8);
}

@media (max-width: 800px) {
  main #things .things-holder-right .things-image:after {
    display: none;
  }
}

main #things .things-holder-right .things-image .things-image-right-animation {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: white;
  left: -13%;
  top: 0;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 480px) {
  main #things .things-holder-right .things-image .things-image-right-animation {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
    left: 0;
  }
}

main #things .things-holder-right .things-image .slideRight {
  left: -110%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 1024px) {
  main #things .things-holder-right .things-image .slideRight {
    left: -115%;
  }
}

main #things .things-holder-right .things-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #things .things-holder-right .things-content {
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  main #things .things-holder-right .things-content {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}

main #things .things-holder-right .things-content div {
  width: 50%;
}

@media (max-width: 800px) {
  main #things .things-holder-right .things-content div {
    width: 100%;
  }
}

main #things .things-holder-right .things-content div h2 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: #e0ba20;
}

main #things .things-holder-right .things-content div p {
  line-height: 22px;
  font-family: sans-serif;
  font-weight: 400;
  opacity: 0.9;
  font-size: 16px;
  margin-bottom: 10px;
}

main #things .things-holder-right .things-content div a {
  text-decoration: none;
  font-weight: 500;
  color: #363636;
  border: 2px solid #FFCC00;
  border-radius: 50px;
  padding: 3px 25px;
  margin-top: 10px;
  float: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .things-holder-right .things-content div a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .things-holder-left {
  width: 100%;
  height: 400px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  main #things .things-holder-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 600px;
  }
}

main #things .things-holder-left .things-image {
  width: 60%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 800px) {
  main #things .things-holder-left .things-image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

main #things .things-holder-left .things-image:after {
  width: 200px;
  height: 100%;
  position: absolute;
  content: '';
  background: white;
  left: -180px;
  top: 0;
  -webkit-transform: rotate(20deg) scale(1.8);
          transform: rotate(20deg) scale(1.8);
}

@media (max-width: 800px) {
  main #things .things-holder-left .things-image:after {
    display: none;
  }
}

main #things .things-holder-left .things-image .things-image-left-animation {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: white;
  right: -13%;
  top: 0;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 480px) {
  main #things .things-holder-left .things-image .things-image-left-animation {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
    right: 0%;
  }
}

main #things .things-holder-left .things-image .slideLeft {
  right: -110%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 1024px) {
  main #things .things-holder-left .things-image .slideLeft {
    right: -115%;
  }
}

main #things .things-holder-left .things-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #things .things-holder-left .things-content {
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 800px) {
  main #things .things-holder-left .things-content {
    width: 100%;
    height: auto;
    padding: 20px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

main #things .things-holder-left .things-content div {
  width: 50%;
}

@media (max-width: 800px) {
  main #things .things-holder-left .things-content div {
    width: 100%;
  }
}

main #things .things-holder-left .things-content div h2 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: #e0ba20;
}

main #things .things-holder-left .things-content div p {
  line-height: 22px;
  font-family: sans-serif;
  font-weight: 400;
  opacity: 0.9;
  font-size: 16px;
  margin-bottom: 10px;
}

main #things .things-holder-left .things-content div a {
  text-decoration: none;
  font-weight: 500;
  color: #363636;
  border: 2px solid #FFCC00;
  border-radius: 50px;
  padding: 3px 25px;
  margin-top: 10px;
  float: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .things-holder-left .things-content div a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .mini-tittle {
  display: none;
  float: left;
  width: 100%;
  text-align: right;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  font-size: 14px;
  margin-top: 0px;
  opacity: 0.5;
}

@media (max-width: 1000px) {
  main #things .mini-tittle {
    margin-top: 0px;
  }
}

main #things .owl-carousel {
  width: 100%;
  float: left;
  display: none;
}

main #things .owl-carousel .item .image-holder {
  height: 400px;
  background: #363636;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

main #things .owl-carousel .item .image-holder .image-holder-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.74);
  z-index: 2;
}

main #things .owl-carousel .item .image-holder .image-holder-animation1 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .owl-carousel .item .image-holder .image-holder-animation-active1 {
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .owl-carousel .item .image-holder .image-holder-animation2 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main #things .owl-carousel .item .image-holder .image-holder-animation-active2 {
  height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main #things .owl-carousel .item .image-holder .image-holder-animation3 {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

main #things .owl-carousel .item .image-holder .image-holder-animation-active3 {
  height: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

main #things .owl-carousel .item .image-holder .image-holder-animation4 {
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

main #things .owl-carousel .item .image-holder .image-holder-animation-active4 {
  height: 0;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

main #things .owl-carousel .item .image-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .owl-carousel .item .image-holder .image-content {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 10;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: white;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1000px) {
  main #things .owl-carousel .item .image-holder .image-content {
    opacity: 1;
  }
}

main #things .owl-carousel .item .image-holder:after {
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

@media (max-width: 1000px) {
  main #things .owl-carousel .item .image-holder:after {
    opacity: 1;
  }
}

main #things .owl-carousel .item .image-holder:hover .image-content {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .owl-carousel .item .image-holder:hover:after {
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .owl-carousel .item .image-holder:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .ind-more-btn {
  width: 100%;
  float: left;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  main #things .ind-more-btn {
    display: inherit;
    padding-right: 20px;
  }
}

main #things .ind-more-btn a {
  text-decoration: none;
  color: white;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 25px;
  border-radius: 50px;
  float: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things .ind-more-btn a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #room-listing {
  width: 100%;
  float: left;
  padding: 80px 80px;
}

@media (max-width: 1024px) {
  main #room-listing {
    padding: 60px 60px;
  }
}

@media (max-width: 768px) {
  main #room-listing {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  main #room-listing {
    padding: 60px 0px;
  }
}

main #room-listing h1 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}

main #room-listing .room-listing-main {
  width: 100%;
  float: left;
  margin-top: -30px;
}

main #room-listing .room-listing-main .room-listing-box {
  text-decoration: none;
  width: calc(100% / 3 - 50px);
  margin: 25px;
  margin-top: 50px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #room-listing .room-listing-main .room-listing-box:hover {
  -webkit-box-shadow: 0 0 20px #d1d1d1;
          box-shadow: 0 0 20px #d1d1d1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #room-listing .room-listing-main .room-listing-box:hover .room-listing-img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1024px) {
  main #room-listing .room-listing-main .room-listing-box {
    width: calc(100% / 3 - 30px);
    margin: 15px;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  main #room-listing .room-listing-main .room-listing-box {
    width: calc(100% / 2 - 30px);
  }
}

@media (max-width: 480px) {
  main #room-listing .room-listing-main .room-listing-box {
    width: calc(100% / 1 - 30px);
  }
}

main #room-listing .room-listing-main .room-listing-box .room-listing-img {
  width: 100%;
  height: 200px;
  background: black;
  overflow: hidden;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details {
  width: 100%;
  padding: 10px;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: black;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details p {
  color: #928f8f;
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
  line-height: 1.3;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details .room-listing-rating1 {
  width: 65%;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details .room-listing-rating1 .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details .room-listing-rating1 .rating i {
  color: #ffee00;
  font-size: 12px;
  margin-right: 5px;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details .room-listing-rating1 .text-rating {
  margin-top: 5px;
  font-size: 12px;
  color: #6e6e6e;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details .room-listing-rating2 {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details .room-listing-rating2 .rating-box {
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
  font-size: 12px;
  font-weight: 500;
  color: white;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .room-listing-more-details .room-listing-rating2 span {
  font-size: 12px;
  color: #6e6e6e;
  margin-top: 5px;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .price-column {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .price-column span {
  font-size: 14px;
  color: grey;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .price-column span i {
  margin-right: 5px;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .price-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: green;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .price-column h4 i {
  margin-right: 5px;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .price-column .room-listing-book-btn {
  text-decoration: none;
  background: #FFCC00;
  color: white;
  text-align: center;
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .price-column .room-listing-book-btn:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #room-listing .room-listing-main .room-listing-box .room-listing-details .price-section .prc-value {
  display: none;
}

main #room-listing .ind-more-btn {
  width: 100%;
  float: left;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  main #room-listing .ind-more-btn {
    display: inherit;
    padding-right: 20px;
  }
}

main #room-listing .ind-more-btn a {
  text-decoration: none;
  color: white;
  background: #FFCC00;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 25px;
  border-radius: 50px;
  float: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #room-listing .ind-more-btn a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #student-package {
  width: 100%;
  float: left;
  padding: 80px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../images/dandelicontactpagebanner.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}

main #student-package::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  z-index: -1;
  background: rgba(0, 0, 0, 0.692);
}

main #student-package h1 {
  color: white;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
  text-shadow: 0 0 2px black;
}

@media (max-width: 480px) {
  main #student-package h1 {
    font-size: 1.7em;
  }
}

main #student-package a {
  text-decoration: none;
  background: #FFCC00;
  color: white;
  padding: 13px 30px;
  border-radius: 50px;
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #student-package a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #featured-resort {
  width: 100%;
  float: left;
  padding: 80px 80px;
}

@media (max-width: 1024px) {
  main #featured-resort {
    padding: 60px 60px;
  }
}

@media (max-width: 768px) {
  main #featured-resort {
    padding: 60px 40px;
  }
}

@media (max-width: 480px) {
  main #featured-resort {
    padding: 60px 20px;
  }
}

main #featured-resort h1 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}

main #featured-resort .featured-resort-main {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -10px;
}

main #featured-resort .featured-resort-main .featured-resort-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  overflow: hidden;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #featured-resort .featured-resort-main .featured-resort-box:hover {
  -webkit-box-shadow: 0 0 20px #d1d1d1;
          box-shadow: 0 0 20px #d1d1d1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #featured-resort .featured-resort-main .featured-resort-box:hover .featured-resort-img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1024px) {
  main #featured-resort .featured-resort-main .featured-resort-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 768px) {
  main #featured-resort .featured-resort-main .featured-resort-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 480px) {
  main #featured-resort .featured-resort-main .featured-resort-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-img {
  width: 40%;
  overflow: hidden;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 768px) {
  main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-img {
    width: 100%;
    height: 200px;
  }
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details {
  width: 60%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details {
    width: 100%;
    padding: 10px;
  }
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: black;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details p {
  font-size: 12px;
  color: #928f8f;
  line-height: 1.3;
  margin-top: 5px;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details .featured-resort-rating1 {
  width: 65%;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details .featured-resort-rating1 .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details .featured-resort-rating1 .rating i {
  color: #ffee00;
  font-size: 12px;
  margin-right: 5px;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details .featured-resort-rating1 .text-rating {
  margin-top: 5px;
  font-size: 12px;
  color: #6e6e6e;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details .featured-resort-rating2 {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details .featured-resort-rating2 .rating-box {
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
  font-size: 12px;
  font-weight: 500;
  color: white;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-more-details .featured-resort-rating2 span {
  font-size: 12px;
  color: #6e6e6e;
  margin-top: 5px;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .price-column {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .price-column span {
  font-size: 14px;
  color: grey;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .price-column span i {
  margin-right: 5px;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .price-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: green;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .price-column h4 i {
  margin-right: 5px;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .price-column .featured-resort-book-btn {
  text-decoration: none;
  background: #FFCC00;
  color: white;
  text-align: center;
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .price-column .featured-resort-book-btn:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #featured-resort .featured-resort-main .featured-resort-box .featured-resort-details .featured-resort-price-section .prc-value {
  display: none;
}

main #featured-resort .ind-more-btn {
  width: 100%;
  float: left;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  main #featured-resort .ind-more-btn {
    display: inherit;
  }
}

main #featured-resort .ind-more-btn a {
  text-decoration: none;
  color: white;
  background: #FFCC00;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 25px;
  border-radius: 50px;
  float: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #featured-resort .ind-more-btn a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #gallery-index {
  float: left;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main #gallery-index .tittle-holder {
  width: 100%;
}

main #gallery-index .gallery-holder {
  width: calc(100% / 4);
  height: 280px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #gallery-index .gallery-holder:hover::before {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

main #gallery-index .gallery-holder:hover img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

main #gallery-index .gallery-holder::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  z-index: 1;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  background: rgba(255, 255, 255, 0.466);
}

@media (max-width: 1450px) {
  main #gallery-index .gallery-holder {
    height: 350px;
  }
}

@media (max-width: 1024px) {
  main #gallery-index .gallery-holder {
    height: 250px;
  }
}

@media (max-width: 900px) {
  main #gallery-index .gallery-holder {
    width: calc(100% / 3);
    height: 240px;
  }
}

@media (max-width: 768px) {
  main #gallery-index .gallery-holder {
    width: calc(100% / 2);
    height: 160px;
  }
}

main #gallery-index .gallery-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #gallery-index .gallerymore {
  width: 100%;
  margin-top: 30px;
}

main #gallery-index .gallerymore a {
  display: block;
  padding: 8px 6px;
  width: 150px;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
  color: white;
  border-radius: 50px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 480px) {
  main #gallery-index .gallerymore a {
    float: right;
    margin-right: 20px;
  }
}

main #gallery-index .gallerymore a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #testimonials {
  width: 100%;
  float: left;
  padding: 80px 80px 0px 80px;
}

@media (max-width: 768px) {
  main #testimonials {
    padding: 60px 40px 0px 40px;
  }
}

@media (max-width: 480px) {
  main #testimonials {
    padding: 60px 20px 0px 20px;
  }
}

main #testimonials h1 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}

main #testimonials .test-body {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main #testimonials .test-body .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  main #testimonials .test-body .item {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

main #testimonials .test-body .item .text-content {
  width: 100%;
  padding: 20px 15px;
  background: #f7f7f7;
  border-radius: 5px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.075);
}

main #testimonials .test-body .item .text-content::before {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #f7f7f7;
  content: '';
  bottom: -10px;
  left: 50px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  border-right: 1px solid rgba(0, 0, 0, 0.075);
}

main #testimonials .test-body .item .text-content p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}

main #testimonials .test-body .item .basic-details {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 480px) {
  main #testimonials .test-body .item .basic-details {
    margin-top: 10px;
  }
}

main #testimonials .test-body .item .basic-details .image {
  width: 25%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #testimonials .test-body .item .basic-details .image img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 480px) {
  main #testimonials .test-body .item .basic-details .image img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  main #testimonials .test-body .item .basic-details .image {
    width: 30%;
  }
}

main #testimonials .test-body .item .basic-details .details {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  main #testimonials .test-body .item .basic-details .details {
    width: 70%;
  }
}

main #testimonials .test-body .item .basic-details .details .name {
  font-weight: 600;
  color: green;
  text-transform: uppercase;
  font-size: 16px;
}

main #testimonials .test-body .item .basic-details .details .desig {
  margin-top: 5px;
  color: #acacac;
  font-weight: 400;
}

main #testimonials .test-body .item .basic-details .details .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
}

main #testimonials .test-body .item .basic-details .details .star i {
  margin-right: 5px;
  font-size: 12px;
  color: #ffd000;
}

main #testimonials .ind-more-btn {
  width: 100%;
  float: left;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  main #testimonials .ind-more-btn {
    display: inherit;
  }
}

main #testimonials .ind-more-btn a {
  text-decoration: none;
  color: white;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 25px;
  border-radius: 50px;
  float: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #testimonials .ind-more-btn a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #place-to-visit {
  width: 100%;
  float: left;
  padding: 80px 80px;
}

@media (max-width: 768px) {
  main #place-to-visit {
    padding: 60px 40px;
  }
}

@media (max-width: 480px) {
  main #place-to-visit {
    padding: 60px 20px;
  }
}

main #place-to-visit h1 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}

main #place-to-visit .place-to-visit-main {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -40px;
}

main #place-to-visit .place-to-visit-main .place-to-visit-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  main #place-to-visit .place-to-visit-main .place-to-visit-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}

@media (max-width: 480px) {
  main #place-to-visit .place-to-visit-main .place-to-visit-box {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

main #place-to-visit .place-to-visit-main .place-to-visit-box img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  main #place-to-visit .place-to-visit-main .place-to-visit-box img {
    height: 200px;
  }
}

main #place-to-visit .place-to-visit-main .place-to-visit-box h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}

main #place-to-visit .place-to-visit-main .place-to-visit-box p {
  font-size: 16px;
  line-height: 1.4;
  color: #757474;
  margin-top: 15px;
}

@media (max-width: 768px) {
  main #place-to-visit .place-to-visit-main .place-to-visit-box p {
    font-size: 14px;
  }
}

main #place-to-visit .place-to-visit-main .place-to-visit-box a {
  text-decoration: none;
  border: 1px solid #FFCC00;
  color: #FFCC00;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  padding: 5px 10px;
  border-radius: 50px;
  width: 80px;
  text-align: center;
}

main #place-to-visit .ind-more-btn {
  width: 100%;
  float: left;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  main #place-to-visit .ind-more-btn {
    display: inherit;
  }
}

main #place-to-visit .ind-more-btn a {
  text-decoration: none;
  color: white;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 25px;
  border-radius: 50px;
  float: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #place-to-visit .ind-more-btn a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #things-to-do {
  width: 100%;
  float: left;
  padding: 0px 80px 50px 80px;
}

@media (max-width: 768px) {
  main #things-to-do {
    padding: 0px 40px 60px 40px;
  }
}

@media (max-width: 480px) {
  main #things-to-do {
    padding: 0px 20px 60px 20px;
  }
}

main #things-to-do .inner-resort-box {
  float: left;
  width: 100%;
  padding: 20px 40px;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  background: white;
  margin-top: 30px;
  border-left: 5px solid #FFCC00;
}

@media (max-width: 480px) {
  main #things-to-do .inner-resort-box {
    padding: 20px;
  }
}

main #things-to-do .inner-resort-box h2 {
  font-size: 20px;
  font-weight: 500;
}

main #things-to-do .inner-resort-box p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 20px;
}

main #things-to-do .inner-resort-box .inner-resort-box-main {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

main #things-to-do .inner-resort-box .inner-resort-box-main span {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 50px;
}

main #things-to-do .inner-resort-box .inner-resort-box-main a {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  border-radius: 50px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #FFCC00;
  text-decoration: none;
}

@media (max-width: 480px) {
  main #things-to-do .inner-resort-box .inner-resort-box-main a {
    width: 100%;
  }
}

main #things-to-do .inner-resort-box .inner-resort-box-main a:hover {
  background: #FFCC00;
  border: 1px solid #FFCC00;
  color: white;
}

main #sight-seening {
  width: 100%;
  float: left;
  padding: 0px 80px 80px 80px;
}

@media (max-width: 768px) {
  main #sight-seening {
    padding: 0px 40px 60px 40px;
  }
}

@media (max-width: 480px) {
  main #sight-seening {
    padding: 0px 20px 60px 20px;
  }
}

main #sight-seening .inner-resort-box {
  float: left;
  width: 100%;
  padding: 20px 40px;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  background: white;
  margin-top: 30px;
  border-left: 5px solid #FFCC00;
}

@media (max-width: 480px) {
  main #sight-seening .inner-resort-box {
    padding: 20px;
  }
}

main #sight-seening .inner-resort-box h2 {
  font-size: 20px;
  font-weight: 500;
}

main #sight-seening .inner-resort-box p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 20px;
}

main #sight-seening .inner-resort-box .inner-resort-box-main {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

main #sight-seening .inner-resort-box .inner-resort-box-main span {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 50px;
}

main #sight-seening .inner-resort-box .inner-resort-box-main a {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  border-radius: 50px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #FFCC00;
  text-decoration: none;
}

@media (max-width: 480px) {
  main #sight-seening .inner-resort-box .inner-resort-box-main a {
    width: 100%;
  }
}

main #sight-seening .inner-resort-box .inner-resort-box-main a:hover {
  background: #FFCC00;
  border: 1px solid #FFCC00;
  color: white;
}

main #best-time-to-visit {
  width: 100%;
  float: left;
  padding: 0px 80px 80px 80px;
}

@media (max-width: 768px) {
  main #best-time-to-visit {
    padding: 0px 40px 60px 40px;
  }
}

@media (max-width: 480px) {
  main #best-time-to-visit {
    padding: 0px 20px 60px 20px;
  }
}

main #best-time-to-visit .best-time-to-visit-main {
  width: 100%;
  height: 300px;
  overflow: hidden;
  float: left;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  padding: 20px 40px;
  padding-bottom: 50px;
  border-left: 5px solid #FFCC00;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  main #best-time-to-visit .best-time-to-visit-main {
    padding: 20px 20px 40px 20px;
  }
}

@media (max-width: 480px) {
  main #best-time-to-visit .best-time-to-visit-main {
    padding: 20px 10px 40px 10px;
  }
}

main #best-time-to-visit .best-time-to-visit-main::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.418)), to(white));
  background: linear-gradient(rgba(255, 255, 255, 0.418), white);
  z-index: 1;
  bottom: 0;
  left: 0;
}

main #best-time-to-visit .best-time-to-visit-main h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

main #best-time-to-visit .best-time-to-visit-main ul {
  margin-left: 40px;
  margin-top: 40px;
}

@media (max-width: 480px) {
  main #best-time-to-visit .best-time-to-visit-main ul {
    margin-left: 20px;
  }
}

main #best-time-to-visit .best-time-to-visit-main ul li {
  line-height: 1.5;
  font-size: 16px;
  opacity: 0.9;
  margin-top: 20px;
  font-weight: 300;
}

main #best-time-to-visit .best-time-to-visit-main .best-time-more-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #FFCC00;
  padding: 8px 15px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

main #best-time-to-visit .best-time-to-visit-main .best-time-more-btn:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
}

main #best-time-to-visit .best-time-to-visit-main .best-time-btn2 {
  display: none;
}

main #best-time-to-visit .best-time-to-visit-active {
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main #resorts #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #resorts #hero {
    height: 10vh;
  }
}

main #resorts .resorts-holder {
  width: 100%;
  padding: 0px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 800px) {
  main #resorts .resorts-holder {
    padding: 0px;
  }
}

main #resorts .resorts-holder .resort {
  width: calc(100% / 4 - 20px);
  margin: 10px;
  display: block;
  text-decoration: none;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main #resorts .resorts-holder .resort:hover {
  -webkit-box-shadow: 0 0 15px #d8d8d8;
          box-shadow: 0 0 15px #d8d8d8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main #resorts .resorts-holder .resort:hover .image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 800px) {
  main #resorts .resorts-holder .resort {
    width: calc(100% / 2 - 10px);
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  main #resorts .resorts-holder .resort {
    width: 100%;
  }
}

main #resorts .resorts-holder .resort .image {
  width: 100%;
  height: 280px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
}

@media (max-width: 800px) {
  main #resorts .resorts-holder .resort .image {
    height: 250px;
  }
}

main #resorts .resorts-holder .resort .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #resorts .resorts-holder .resort .content {
  width: 100%;
  padding: 10px 10px;
}

main #resorts .resorts-holder .resort .content h1 {
  font-size: 16px;
  text-transform: uppercase;
  color: #363636;
  text-align: center;
}

main #resorts .resorts-holder .resort .content p {
  font-size: 14px;
  line-height: 24px;
}

main #resorts-inner #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #resorts-inner #hero {
    height: 10vh;
  }
}

main #resorts-inner .content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

@media (max-width: 900px) {
  main #resorts-inner .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: 0px;
  }
}

main #resorts-inner .content-wrapper .suggetions {
  width: 25%;
}

@media (max-width: 900px) {
  main #resorts-inner .content-wrapper .suggetions {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

main #resorts-inner .content-wrapper .suggetions .sections {
  padding: 15px;
}

main #resorts-inner .content-wrapper .suggetions .sections h2 {
  font-size: 15px;
  letter-spacing: 0.1em;
}

main #resorts-inner .content-wrapper .suggetions .sections h3 {
  font-size: 13px;
  margin-bottom: 10px;
}

main #resorts-inner .content-wrapper .suggetions .sections p {
  font-size: 13px;
  line-height: 20px;
}

main #resorts-inner .content-wrapper .suggetions .sections .quick_call {
  text-decoration: none;
  display: block;
  width: 140px;
  padding: 8px 10px;
  margin-top: 15px;
  font-size: 12px;
  background: #2c2c2c;
  color: white;
  border: 1px solid black;
}

main #resorts-inner .content-wrapper .suggetions .sections ul {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

main #resorts-inner .content-wrapper .suggetions .sections ul li {
  list-style: none;
}

main #resorts-inner .content-wrapper .suggetions .sections ul li a {
  display: block;
  text-decoration: none;
  padding: 15px 10px;
  border-bottom: 0.5px solid #2e2e2e;
  color: black;
  font-size: 13px;
  font-weight: 500;
}

main #resorts-inner .content-wrapper .suggetions .sections ul li a:hover {
  font-weight: bold;
  font-style: italic;
}

main #resorts-inner .content-wrapper .resort--contents {
  width: 75%;
  padding: 15px;
}

@media (max-width: 900px) {
  main #resorts-inner .content-wrapper .resort--contents {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

main #resorts-inner .content-wrapper .resort--contents .owl-resort-images {
  width: 100%;
}

main #resorts-inner .content-wrapper .resort--contents .owl-resort-images .item {
  height: 350px;
}

main #resorts-inner .content-wrapper .resort--contents .owl-resort-images .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #resorts-inner .content-wrapper .resort--contents .contents {
  width: 100%;
  padding-top: 20px;
}

main #resorts-inner .content-wrapper .resort--contents .contents h1 {
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

main #resorts-inner .content-wrapper .resort--contents .contents p {
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
}

main #resorts-inner .content-wrapper .resort--contents .contents .book-direct {
  background: #FFCC00;
  display: block;
  width: 120px;
  text-decoration: none;
  padding: 13px 10px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  color: black;
  text-align: center;
}

main #resorts-inner .content-wrapper .resort--contents .contents .suggested-activities {
  width: 100%;
  margin-top: 20px;
}

main #resorts-inner .content-wrapper .resort--contents .contents .suggested-activities h3 {
  font-weight: 600;
  font-size: 14px;
}

main #resorts-inner .content-wrapper .resort--contents .contents .suggested-activities .owl-suggest {
  margin-top: 20px;
}

main #resorts-inner .content-wrapper .resort--contents .contents .suggested-activities .owl-suggest .item .image {
  height: 200px;
}

main #resorts-inner .content-wrapper .resort--contents .contents .suggested-activities .owl-suggest .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #resorts-inner .content-wrapper .resort--contents .contents .suggested-activities .owl-suggest .item .content {
  padding: 10px 6px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.2em;
}

main #inner-resort-section {
  width: 100%;
  float: left;
}

main #inner-resort-section #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #inner-resort-section #hero {
    height: 10vh;
  }
}

main #inner-resort-section .inner-resort-main {
  float: left;
  width: 100%;
  padding: 40px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  main #inner-resort-section .inner-resort-main {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  main #inner-resort-section .inner-resort-main {
    padding: 40px 20px;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  main #inner-resort-section .inner-resort-main .inner-resort-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-image {
  width: 50%;
}

@media (max-width: 768px) {
  main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-image {
    width: 100%;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-image .image {
  width: 100%;
  height: 350px;
  background: black;
}

@media (max-width: 768px) {
  main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-image .image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-image .image {
    height: 250px;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details {
  width: 50%;
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details {
    width: 100%;
    padding-left: 0%;
    margin-top: 20px;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details h1 {
  font-size: 2.5em;
  font-weight: 400;
  color: #727272;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 480px) {
  main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details h1 {
    font-size: 2em;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details hr {
  margin-top: 20px;
  height: 1px;
  background: #727272;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .spacialities {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f3f3f3;
  padding: 10px 20px;
  margin-top: 20px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .spacialities .spl-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .spacialities .spl-item .spl-item-icon {
  width: 20px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .spacialities .spl-item .spl-item-icon i {
  color: green;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .spacialities .spl-item .spl-item-text {
  width: calc(100% - 20px);
  padding-left: 10px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .spacialities .spl-item .spl-item-text p {
  font-size: 14px;
  font-weight: 500;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .rating {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .rating span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .rating span i {
  color: #ffd000;
  margin-right: 5px;
  font-size: 12px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .rating p {
  font-size: 12px;
  margin-left: 10px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .price {
  margin-top: 20px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .price .old-price {
  font-size: 16px;
  color: #979796;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .price .new-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .price .new-price h3 {
  color: green;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .price .new-price p {
  font-size: 14px;
  margin-left: 20px;
  font-weight: 500;
  margin-top: 2px;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .view-location{
    font-size:12px;
    margin-top:10px;
    text-decoration:none;
                        color:blue;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .main-btn {
  margin-top: 20px;
  width: 200px;
  text-align: center;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #FFCC00;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

main #inner-resort-section .inner-resort-main .inner-resort-head .inner-resort-head-details .main-btn:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #inner-resort-section .inner-resort-main .inner-resort-body {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #inner-resort-section .inner-resort-main .inner-resort-body p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details h2 {
  font-size: 20px;
  font-weight: 500;
  color: #FFCC00;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(95, 95, 95, 0.829);
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details p a {
  text-decoration: none;
  color: #FFCC00;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details h4 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details ul {
  margin-top: 10px;
  padding-left: 20px;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .resort-package-details ul li {
  font-size: 14px;
  margin-top: 7px;
  line-height: 1.5;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box {
  width: 100%;
  padding: 20px 40px;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  background: white;
  margin-top: 30px;
  border-left: 5px solid #FFCC00;
}

@media (max-width: 480px) {
  main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box {
    padding: 20px;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box h2 {
  font-size: 20px;
  font-weight: 500;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 20px;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box .inner-resort-box-main {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box .inner-resort-box-main span {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 50px;
}

main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box .inner-resort-box-main a {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  border-radius: 50px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #FFCC00;
  text-decoration: none;
}

@media (max-width: 480px) {
  main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box .inner-resort-box-main a {
    width: 100%;
  }
}

main #inner-resort-section .inner-resort-main .inner-resort-body .inner-resort-box .inner-resort-box-main a:hover {
  background: #FFCC00;
  border: 1px solid #FFCC00;
  color: white;
}

main #offer #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #offer #hero {
    height: 10vh;
  }
}

main #offer .content-wrapper {
  width: 100%;
  padding: 0px 80px;
}

@media (max-width: 1.24px) {
  main #offer .content-wrapper {
    padding: 0px 40px;
  }
}

@media (max-width: 800px) {
  main #offer .content-wrapper {
    padding: 0px 20px;
  }
  main #offer .content-wrapper .tittle-holder h1 {
    font-size: 1.3em;
  }
  main #offer .content-wrapper .tittle-holder h1 span {
    font-size: 1.5em;
  }
}

main #offer .content-wrapper .offer-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

main #offer .content-wrapper .offer-holder::after {
  content: '';
  height: 0;
  width: calc(100% / 3 - 20px);
}

@media (max-width: 800px) {
  main #offer .content-wrapper .offer-holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main #offer .content-wrapper .offer-holder .sep {
  width: calc(100% / 3 - 20px);
  padding: 0px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(206, 206, 206, 0.459);
          box-shadow: 0 0 10px rgba(206, 206, 206, 0.459);
  margin-top: 60px;
}

@media (max-width: 1024px) {
  main #offer .content-wrapper .offer-holder .sep {
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 800px) {
  main #offer .content-wrapper .offer-holder .sep {
    width: 100%;
  }
}

main #offer .content-wrapper .offer-holder .sep:hover .image img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #offer .content-wrapper .offer-holder .sep .image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

main #offer .content-wrapper .offer-holder .sep .image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}

main #offer .content-wrapper .offer-holder .sep .content {
  width: 100%;
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #offer .content-wrapper .offer-holder .sep .content h1 {
  margin: 0;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

main #offer .content-wrapper .offer-holder .sep .content .price {
  background: rgba(238, 238, 238, 0.692);
  float: left;
  display: none;
  padding: 10px;
}

main #offer .content-wrapper .offer-holder .sep .content .price span {
  font-size: 20px;
  font-weight: 500;
}

main #offer .content-wrapper .offer-holder .sep .content .price .old-price {
  color: #c2c2c2;
}

main #offer .content-wrapper .offer-holder .sep .content .price .new-price {
  color: green;
  margin-left: 20px;
}

main #offer .content-wrapper .offer-holder .sep .content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
}

main #offer .content-wrapper .offer-holder .sep .content h3 {
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600;
  color: #FFCC00;
  margin-bottom: 10px;
}

main #offer .content-wrapper .offer-holder .sep .content ul {
  margin: 0;
  padding: 0;
}

main #offer .content-wrapper .offer-holder .sep .content ul li {
  list-style: none;
  display: block;
  line-height: 1.8;
  font-weight: 500;
  font-size: 13px;
}

main #offer .content-wrapper .offer-holder .sep .content .offerbtn {
  display: block;
  width: 100%;
  padding: 10px 6px;
  text-align: center;
  text-decoration: none;
  background: #FFCC00;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
}

main #offer .content-wrapper .suggested-activities {
  width: 100%;
  margin-top: 60px;
}

main #offer .content-wrapper .suggested-activities h3 {
  font-weight: 600;
  font-size: 18px;
}

main #offer .content-wrapper .suggested-activities .owl-suggest {
  margin-top: 20px;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item {
  padding-bottom: 20px;
  margin: 0 10px;
}

@media (max-width: 800px) {
  main #offer .content-wrapper .suggested-activities .owl-suggest .item {
    margin: 0;
  }
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 5px #eee;
          box-shadow: 0 0 5px #eee;
  text-decoration: none;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .image {
  height: 200px;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content h1 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: black;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content ul {
  margin-top: 10px;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content ul li {
  list-style: none;
  line-height: 1.7;
  color: rgba(66, 66, 66, 0.849);
  font-size: 14px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content ul li .col1 {
  width: 25%;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content ul li .col1 b {
  font-weight: 500;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content ul li .col2 {
  width: 75%;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content ul li .col2 p {
  margin-left: 10px;
}

main #offer .content-wrapper .suggested-activities .owl-suggest .item .suggested-things .content ul li .col2 p span {
  color: green;
  font-weight: 500;
}

main #gallery-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main #gallery-inner #hero {
  width: 100%;
  height: 60vh;
  background: url("../images/ratingbanner.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 4px;
}

main #gallery-inner .gallery-holder {
  width: calc(100% / 4 - 2px);
  margin-bottom: 4px;
  height: 280px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  background: red;
}

@media (max-width: 1000px) {
  main #gallery-inner .gallery-holder {
    width: calc(100% / 3 - 2px);
    height: 280px;
  }
}

@media (max-width: 768px) {
  main #gallery-inner .gallery-holder {
    width: calc(100% / 3 - 2px);
    height: 230px;
  }
}

@media (max-width: 600px) {
  main #gallery-inner .gallery-holder {
    width: calc(100% / 2 - 2px);
    height: 230px;
  }
}

@media (max-width: 375px) {
  main #gallery-inner .gallery-holder {
    width: calc(100% / 2 - 2px);
    height: 180px;
  }
}

main #gallery-inner .gallery-holder:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  left: 0;
  top: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
}

main #gallery-inner .gallery-holder a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 6;
}

main #gallery-inner .gallery-holder a span {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  font-size: 2rem;
  color: white;
  z-index: 6;
  opacity: 0;
}

main #gallery-inner .gallery-holder a:hover:after {
  opacity: 1;
}

main #gallery-inner .gallery-holder a:hover span {
  opacity: 1;
}

main #gallery-inner .gallery-holder a:hover img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #gallery-inner .gallery-holder a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #about #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #about #hero {
    height: 10vh;
  }
}

main #about .tittle-holder span {
  color: #FFCC00;
}

main #about .content-holder {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  main #about .content-holder {
    padding: 20px;
  }
}

main #about .content-holder h2 {
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  opacity: 0.98;
}

main #about .content-holder .btn {
  display: block;
  width: 200px;
  border: 2px solid #2c2c2c;
  padding: 10px 15px;
  margin: 0 auto;
  margin-top: 20px;
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #about .content-holder .btn:hover {
  background: #2c2c2c;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main #about .content-holder .secure {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

main #about .content-holder .secure:after {
  content: '';
  height: 0;
  width: 31%;
}

@media (max-width: 800px) {
  main #about .content-holder .secure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main #about .content-holder .secure div {
  width: calc(100% / 3 - 20px);
  padding: 20px;
  margin-top: 20px;
  border: 1px dashed #36363636;
}

@media (max-width: 800px) {
  main #about .content-holder .secure div {
    width: 100%;
  }
}

main #about .content-holder .secure div h2 {
  text-align: left;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.9;
  text-transform: lowercase;
  color: #c5a00b;
}

main #about .content-holder .secure div p {
  text-align: left;
  line-height: 25px;
  font-size: 14px !important;
}

main #about .terms {
  padding: 50px 80px;
}

@media (max-width: 768px) {
  main #about .terms {
    padding: 50px 40px;
  }
}

@media (max-width: 480px) {
  main #about .terms {
    padding: 50px 20px;
  }
}

main #about .terms h1 {
  font-weight: 400;
}

@media (max-width: 768px) {
  main #about .terms h1 {
    font-weight: 600;
    font-size: 20px;
  }
}

main #about .terms p {
  line-height: 1.5;
}

main #about .terms ul {
  padding-left: 18px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  main #about .terms ul {
    padding-left: 10px;
  }
}

main #about .terms ul li {
  list-style-type: decimal;
  line-height: 1.5;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

main #about .terms ul ul {
  margin-top: 0px;
}

main #about .terms ul ul li {
  list-style-type: lower-alpha;
}

main #contact #hero {
  width: 100%;
  height: 50vh;
  background: url("../images/dandelicontactpagebanner.jpg");
  background-size: cover;
  background-position: center;
}

main #contact .contact-wrapper {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -60px;
}

@media (max-width: 1024px) {
  main #contact .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
  }
}

main #contact .contact-wrapper .contact-thumbnail {
  width: 30%;
}

@media (max-width: 1024px) {
  main #contact .contact-wrapper .contact-thumbnail {
    display: none;
  }
}

main #contact .contact-wrapper .contact-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #contact .contact-wrapper .contact-details {
  width: 35%;
  padding: 80px 0px 80px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  main #contact .contact-wrapper .contact-details {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
  }
}

main #contact .contact-wrapper .contact-details h1 {
  font-size: 2em;
  margin: 0;
}

main #contact .contact-wrapper .contact-details h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
}

main #contact .contact-wrapper .contact-details h2 {
  font-size: 18px;
  color: #FFCC00;
  font-weight: 600;
  margin-top: 20px;
}

main #contact .contact-wrapper .contact-details p {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 16px;
}

main #contact .contact-wrapper .contact-details a {
  margin-top: 10px;
  text-decoration: none;
  color: black;
  font-size: 16px;
}

main #contact .contact-wrapper .contact-details span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

main #contact .contact-wrapper .contact-details span a {
  margin-right: 20px;
  font-size: 14px;
}

main #contact .contact-wrapper .contact-form {
  width: 35%;
  padding: 80px;
}

@media (max-width: 1024px) {
  main #contact .contact-wrapper .contact-form {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
  }
}

main #contact .contact-wrapper .contact-form .form-box {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  padding: 20px 30px;
}

main #contact .contact-wrapper .contact-form .form-box h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #FFCC00;
}

main #contact .contact-wrapper .contact-form .form-box .form-column {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #contact .contact-wrapper .contact-form .form-box .form-column input {
  width: 100%;
  height: 35px;
  border: none;
  border-bottom: 1px solid #2b2b2b;
  font-size: 12px;
  padding: 10px 0px;
  outline: none;
  margin-top: 20px;
}

main #contact .contact-wrapper .contact-form .form-box .form-column textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 1px solid #2b2b2b;
  font-size: 12px;
  padding: 10px 0px;
  outline: none;
  margin-top: 10px;
}

main #contact .contact-wrapper .contact-form .form-box .form-column button {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  background: #FFCC00;
  color: white;
  font-weight: 500;
  border: none;
  outline: none;
  text-transform: uppercase;
}

main #testimonials {
  float: left;
}

main #testimonials #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #testimonials #hero {
    height: 10vh;
  }
}

main #testimonials .tittle-holder span {
  color: #FFCC00;
}

main #things-to-do-section {
  width: 100%;
  float: left;
}

main #things-to-do-section #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #things-to-do-section #hero {
    height: 10vh;
  }
}

main #things-to-do-section .things-to-do-head {
  width: 100%;
  float: left;
  height: 80vh;
  padding: 10px;
  position: relative;
}

@media (max-width: 480px) {
  main #things-to-do-section .things-to-do-head {
    padding: 0px;
    height: 35vh;
  }
}

main #things-to-do-section .things-to-do-head .things-to-do-img {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
}

main #things-to-do-section .things-to-do-head .things-to-do-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: black;
}

main #things-to-do-section .things-to-do-head .things-to-do-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #things-to-do-section .things-to-do-head .things-to-do-text h1 {
  font-size: 4em;
  font-family: 'Kalam', cursive;
  background: rgba(0, 0, 0, 0.863);
  color: white;
  padding: 5px 10px;
  font-weight: 300;
  text-align: center;
}

@media (max-width: 1024px) {
  main #things-to-do-section .things-to-do-head .things-to-do-text h1 {
    font-size: 3em;
  }
}

@media (max-width: 480px) {
  main #things-to-do-section .things-to-do-head .things-to-do-text h1 {
    font-size: 28px;
  }
}

main #things-to-do-section .things-to-do-body {
  width: 100%;
  float: left;
  padding: 0px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  main #things-to-do-section .things-to-do-body {
    padding: 0px 40px;
  }
}

@media (max-width: 480px) {
  main #things-to-do-section .things-to-do-body {
    padding: 0px 20px;
  }
}

main #things-to-do-section .things-to-do-body h1 {
  font-size: 1.5em;
}

main #things-to-do-section .things-to-do-body p {
  font-size: 14px;
  line-height: 1.5;
}

main #things-to-do-section .things-to-do-body p span {
  color: green;
  font-weight: 600;
}

main #things-to-do-section .things-to-do-body h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFCC00;
}

main #things-to-do-section .things-to-do-body h3 {
  float: left;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

main #things-to-do-section .things-to-do-body h4 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

main #things-to-do-section .things-to-do-body ul {
  margin-top: 10px;
  padding-left: 20px;
}

main #things-to-do-section .things-to-do-body ul li {
  font-size: 14px;
  margin-top: 7px;
  line-height: 1.5;
}

main #things-to-do-section .things-to-do-body .price {
  padding: 5px 15px;
  border: 1px solid green;
  font-size: 16px;
  font-weight: 500;
  color: green;
  margin-bottom: 10px;
  margin-top: -5px;
  width: 150px;
  text-align: center;
}

main #things-to-do-section .things-to-do-body .price i {
  font-size: 14px;
}

main #things-to-do-section .things-to-do-body a {
  text-decoration: none;
  margin-top: 10px;
  color: green;
}

main #things-to-do-section .things-to-do-body .images-section {
  width: 100%;
  margin-top: 50px;
}

main #things-to-do-section .things-to-do-body .images-section .image-box {
  width: calc(100% / 4);
  float: left;
  height: 250px;
  border: 2px solid white;
  background: black;
}

@media (max-width: 1024px) {
  main #things-to-do-section .things-to-do-body .images-section .image-box {
    height: 200px;
  }
}

@media (max-width: 768px) {
  main #things-to-do-section .things-to-do-body .images-section .image-box {
    width: calc(100% / 3);
  }
}

@media (max-width: 480px) {
  main #things-to-do-section .things-to-do-body .images-section .image-box {
    width: calc(100% / 2);
  }
}

main #things-to-do-section .things-to-do-body .images-section .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #things-to-do-section .things-to-do-body .inner-resort-box {
  width: 100%;
  padding: 20px 40px;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  background: white;
  margin-top: 50px;
  border-left: 5px solid #FFCC00;
}

@media (max-width: 480px) {
  main #things-to-do-section .things-to-do-body .inner-resort-box {
    padding: 20px;
  }
}

main #things-to-do-section .things-to-do-body .inner-resort-box h2 {
  font-size: 20px;
  font-weight: 500;
}

main #things-to-do-section .things-to-do-body .inner-resort-box p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 20px;
}

main #things-to-do-section .things-to-do-body .inner-resort-box .inner-resort-box-main {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

main #things-to-do-section .things-to-do-body .inner-resort-box .inner-resort-box-main span {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 50px;
}

main #things-to-do-section .things-to-do-body .inner-resort-box .inner-resort-box-main a {
  padding: 5px 15px;
  border: 1px solid #adadad;
  margin-right: 10px;
  border-radius: 50px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #FFCC00;
  text-decoration: none;
}

@media (max-width: 480px) {
  main #things-to-do-section .things-to-do-body .inner-resort-box .inner-resort-box-main a {
    width: 100%;
  }
}

main #things-to-do-section .things-to-do-body .inner-resort-box .inner-resort-box-main a:hover {
  background: #FFCC00;
  border: 1px solid #FFCC00;
  color: white;
}

main #testimonials-page {
  float: left;
  width: 100%;
}

main #testimonials-page #hero {
  width: 100%;
  height: 30vh;
  background: #363636;
}

@media (max-width: 1000px) {
  main #testimonials-page #hero {
    height: 10vh;
  }
}

main #testimonials-page .tittle-holder span {
  color: #FFCC00;
}

main #testimonials-page .testimonials {
  padding-bottom: 2.2em;
  text-align: center;
  color: #666;
  float: left;
  margin-top: 80px;
  width: 100%;
}

main #testimonials-page .testimonials h1 {
  color: #222;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

main #testimonials-page .testimonials .test-body {
  padding: 1em;
  width: 100%;
}

main #testimonials-page .testimonials .item {
  text-align: center;
  padding: 1em 0;
}

main #testimonials-page .testimonials img {
  width: 4.8em;
  height: 4.8em;
  border-radius: 50%;
}

main #testimonials-page .testimonials .name {
  color: #FFCC00;
}

main #testimonials-page .testimonials .desig {
  font-size: 0.7em;
  padding: 0.5em 0;
  color: #777;
}

main #testimonials-page .testimonials .share {
  margin: 0 auto;
  width: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main #testimonials-page .testimonials i {
  color: #bfbfbf;
  padding: 0.5em 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

main #testimonials-page .testimonials i:hover {
  color: blue;
}

main #testimonials-page .testimonials p {
  max-width: 27em;
  margin: 0 auto;
  font-size: 0.8em;
  line-height: 25px;
}

main #testimonials-page .testimonials a {
  font-size: 12px;
  background-color: none;
  background: linear-gradient(-45deg, #ff9900, #ffee00);
  text-decoration: none;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

main #testimonials-page .testimonials a:hover {
  background: linear-gradient(-45deg, #ffee00, #ff9900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 38.4rem) {
  main #testimonials-page .testimonials {
    font-size: 1.2em;
  }
  main #testimonials-page .testimonials .test-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  main #testimonials-page .testimonials p {
    text-align: left;
    padding: 1em;
  }
}

footer {
  width: 100%;
  background: #2b2b2b;
  margin-top: 60px;
  padding: 20px 80px;
  float: left;
}

@media (max-width: 768px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 0px;
  }
}

footer .sep {
  width: calc(100% / 5);
  height: 100%;
  padding: 20px 10px;
  float: left;
}

@media (max-width: 768px) {
  footer .sep {
    width: 100%;
  }
}

footer .sep .logo p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: white;
}

footer .sep h1 {
  font-size: 16px;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: white;
}

footer .sep ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .sep ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 15px;
}

footer .sep ul li a {
  text-decoration: none;
  padding: 5px 0px;
  font-size: 13px;
  color: white;
  font-weight: 300;
}

footer .sep ul li a:hover {
  border-bottom: 1px solid white;
  width: auto;
}

footer .sep ul .title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  color: white;
}

footer .sep ul .content {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  color: white;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .fooret-about {
  width: 100%;
  float: left;
  border-top: 1px solid #929292;
  margin-top: 20px;
  padding: 40px 0px 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  footer .fooret-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px 50px 0px;
  }
}

footer .fooret-about .logo-image {
  width: auto;
  height: 100px;
}

footer .fooret-about .logo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .fooret-about .fooret-about-content {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 20px;
}

@media (max-width: 800px) {
  footer .fooret-about .fooret-about-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer .fooret-about .fooret-about-content h1 {
  font-size: 16px;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: white;
}

@media (max-width: 800px) {
  footer .fooret-about .fooret-about-content {
    text-align: center;
  }
}

footer .fooret-about .fooret-about-content p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  color: white;
}

@media (max-width: 800px) {
  footer .fooret-about .fooret-about-content {
    text-align: center;
  }
}

footer .fooret-about .fooret-about-content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

footer .fooret-about .fooret-about-content span a {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin-right: 15px;
}

footer .fooret-about .fooret-about-content h4 {
  font-size: 12px;
  text-align: center;
  color: #b3b3b3;
  font-weight: 300;
  margin-top: 40px;
}

footer .fooret-about .fooret-about-content h4 i {
  color: red;
  margin: 0px 5px;
  position: relative;
  top: -1px;
  -webkit-animation: bounce 0.5s;
          animation: bounce 0.5s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

footer .fooret-about .fooret-about-content h4 a {
  text-decoration: none;
  color: #b3b3b3;
}
/*# sourceMappingURL=style.css.map */