:root {
  --dark-blue: #14264a;
  --golden: #a0935e;
  --golden-hover: #b3a054;
  --dark-blue-hover: #1f3a6e;
}

@font-face {
  font-family: "Quicksand Light";
  src: url("../webfonts/Quicksand-Light.ttf");
}

@font-face {
  font-family: "Quicksand Regular";
  src: url("../webfonts/Quicksand-Regular.ttf");
}

@font-face {
  font-family: "Quicksand Medium";
  src: url("../webfonts/Quicksand-Medium.ttf");
}

@font-face {
  font-family: "Quicksand Bold";
  src: url("../webfonts/Quicksand-Bold.ttf");
}

@font-face {
  font-family: "Viaoda Libre";
  src: url("../webfonts/ViaodaLibre-Regular.ttf");
}

body {
  font-family: "Quicksand Regular", sans-serif;
  font-size: 14px;
}
h1,
h2,
/* h3 {
  font-family: "Viaoda Libre", sans-serif;
} */
h3 {
  font-family: 'Gilda Display', serif;
}
.navbar {
  padding: 0 1rem;
  font-size: 0.95rem;
  transition: all 0.4s;
}

.navbar.with-bg {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.navbar-brand {
  padding: 0;
}

.navbar-logo {
  width: 90px;
  height: auto;
  transition: all 0.4s;
}

.with-bg .navbar-logo {
  width: 100px;
}
.nav-light {
  background-color: #fff !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.header {
  position: relative;
}

.header::before {
  z-index: 2;
  pointer-events: none;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 1) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    #ffffff 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

#heroSlider::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--dark-blue);
  font-weight: 400;
}

.nav-item.active .nav-link::after {
  display: block;
  content: "";
  height: 2px;
  width: 90%;
  margin: 0 auto;
  background: var(--dark-blue);
}

.btn-blue,
.btn-gold {
  border-radius: 30px;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  width: 130px;
  border: 0;
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

.btn-blue {
  background: var(--dark-blue);
}

.btn-gold {
  background: var(--golden);
}

.carousel-caption {
  bottom: 35%;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 1rem;
  }
}

.carousel-indicators {
  margin: 0 0 0 50px;
  right: auto;
  flex-direction: column;
  align-items: center;
  top: 0;
}

.carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  margin: 8px;
  opacity: 1;
  transition: all 0.2s;
}

.carousel-indicators li.active {
  height: 15px;
  width: 15px;
}

.carousel-caption {
  z-index: 3;
}

.hero-btn {
  margin: 0 15px;
  font-size: 0.9rem;
}

.carousel-caption-line1 {
  font-family: "Viaoda Libre", serif;
  font-size: 2.8rem;
}
/* .animationtext {
  clip-path: circle(13% at 85% 50%);
  animation: circleMove 100s ease-in-out infinite;
  background-color: red;
  color: white;
} */
.carousel-caption-line2 {
  font-size: 1.2rem;
}

.hero-btns {
  margin: 30px 0;
}

.checkavail-wrapper {
  /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    /* margin: 0 auto; */
    margin-top: -120px;
    z-index: 99;
    position: relative;
}

.checkavail {
  background: var(--dark-blue);
  color: #fff;
  padding: 20px;
  border-radius: 7px;
  -webkit-box-shadow: 0px 6px 60px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 6px 60px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 6px 60px 0px rgba(0, 0, 0, 0.4);
}

.checkavail-row {
  display: flex;
  justify-content: center;
}

.checkavail-title {
  margin: 0px 15px 20px 15px;
  font-size: 1.2rem;
}

.checkavail-row > * {
  flex: 1;
  margin: 0 15px;
}

.checkavail-row .form-control {
  width: 100%;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  appearance: none;
  height: 100%;
  padding: 0.5rem 1rem;
}

.checkavail-row select.form-control option {
  background: var(--dark-blue);
}

.checkavail-row .form-control::placeholder {
  color: currentColor;
}

.checkavail-row .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--golden);
}

.checkavail-row .datepicker {
  background: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M452,40h-24V0h-40v40H124V0H84v40H60C26.9,40,0,66.9,0,100v352c0,33.1,26.9,60,60,60h392 c33.1,0,60-26.9,60-60V100C512,66.9,485.1,40,452,40z M472,452c0,11-9,20-20,20H60c-11,0-20-9-20-20V188h432V452z M472,148H40v-48 c0-11,9-20,20-20h24v40h40V80h264v40h40V80h24c11,0,20,9,20,20V148z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='76' y='230' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='156' y='230' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='236' y='230' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='316' y='230' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='396' y='230' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='76' y='310' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='156' y='310' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='236' y='310' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='316' y='310' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='76' y='390' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='156' y='390' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='236' y='390' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='316' y='390' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Crect x='396' y='310' class='st0' width='40' height='40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")
    no-repeat 90% center / 15px;
}

.checkavail-row select.form-control {
  background: url("data:image/svg+xml,%0A%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 490.7 490.7' style='enable-background:new 0 0 490.7 490.7;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M487.5,120.4c-4.2-4.2-10.9-4.2-15.1,0L245.3,347.6L18.2,120.5c-4.2-4.2-10.9-4.2-15.1,0s-4.2,10.9,0,15.1 l234.7,234.7c2.1,2.1,4.8,3.1,7.6,3.1s5.5-1,7.5-3.1l234.7-234.7C491.7,131.4,491.7,124.6,487.5,120.4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    no-repeat 90% center / 12px;
}

.checkavail-row .btn-gold {
  width: auto;
  max-width: 125px;
}

.section-heading {
  font-family: "Viaoda Libre", serif;
  text-align: center;
  font-size: 2.2rem;
}

.section-why {
  padding: 4rem 0;
}

.why-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 0 auto;
  max-width: 80%;
}

.why-iconbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-iconbox-icon {
  width: 70px;
  /* background: var(--golden);
  height: 65px;
  padding: 15px; */
  border-radius: 50%;
}

.spacer-line {
  height: 1px;
  background: var(--golden);
  flex: 1;
  margin-top: -50px;
}

.why-iconbox-title {
  font-size: 14px;
  margin-top: 10px;
}

.section-atmosphere {
  padding: 3rem 0 4rem 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url("../img/atmosphere-bg.jpg") no-repeat left top / 30%;
}

.section-atmosphere .section-heading {
  text-align: left;
}

.atmosphere-leftimg-wrapper {
  position: relative;
  margin: 90px 0 0 0;
  display: block;
}

.atmosphere-leftimg {
  width: 130%;
  position: relative;
  z-index: 1;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 50px;
  height: 50px;
}

.atmosphere-rightimg,
.atmosphere-leftimg {
  border-radius: 5px;
  -webkit-box-shadow: 0px 6px 60px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 6px 60px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 6px 60px 0px rgba(0, 0, 0, 0.15);
}

.atmosphere-content {
  margin: 50px 5% 0px 20%;
}

.atmosphere-title {
  color: var(--golden);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.propertiescarousel-heading {
  margin: 0 0 0.9rem 0;
  font-size: 2.2rem;
  text-shadow: 2px 2px 7px black;
}

.propertiescarousel-details {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px;
  border-radius: 5px;
  color: #000;
}

.rate-title {
  font-weight: bold;
}

.location {
  font-family: "Quicksand Medium";
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.properties-btn {
  position: absolute;
  right: 8%;
  bottom: 10%;
  z-index: 2;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.propertiesSwiper {
  height: 600px;
  overflow: hidden;
}

.propertiesSwiper .swiper-pagination {
  display: flex;
  flex-direction: column;
  bottom: 48%;
  left: 5%;
  /* width: 40%; */
  right: auto;
  transform: translate(0, 0);
  margin: 0;
  top: auto;
  text-align: left;
}

.propertiesSwiper .swiper-pagination-bullet {
  font-size: 25px;
  color: #fff;
  width: 100%;
  background: transparent;
  order: 0;
  height: auto;
}

.propertiesSwiper .swiper-pagination-bullet-active {
  background: transparent;
  order: 1;
  font-size: 2.2rem;
}

.propertiesSwiper .carousel-caption {
  bottom: 25%;
  left: 5%;
  right: 15%;
  text-align: left;
  align-items: flex-start;
}

.propertiesSwiper .properties-control-prev,
.propertiesSwiper .properties-control-next {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #000;
  margin: 0 10px;
  opacity: 1;
  border: 0;
  z-index: 10;
}

/* .propertiesSwiper h5.propertiescarousel-heading {
  visibility: hidden;
} */
.swiper-pagination{
  z-index:0 !important;
}
.propertiesSlider-spacer {
  height: 1px;
  width: 120px;
  background: #fff;
  margin: 22px 10px;
}

.offering-iconrow {
  display: flex;
}

.offering-iconbox {
  display: flex;
  align-items: center;
  margin: 0 30px;
}

.offering-icon {
  width: 40px;
  margin-right: 10px;
}

.section-offering {
  padding: 4rem 0;
}

.offering-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offering-title {
  font-size: 1.1rem;
  color: var(--dark-blue);
  font-family: "Quicksand Medium";
}

.section-locations {
  padding: 3rem 0;
  background: #feecde;
  display: none;
}

#v-pills-tab {
  border-left: 1px solid var(--dark-blue);
  padding: 25px 0;
  position: relative;
}

#v-pills-tab::before {
  position: absolute;
  display: block;
  top: 0;
  left: -3px;
  height: 5px;
  width: 5px;
  background: var(--dark-blue);
  border-radius: 50%;
  content: "";
}

#v-pills-tab::after {
  position: absolute;
  display: block;
  bottom: 0;
  left: -3px;
  height: 5px;
  width: 5px;
  background: var(--dark-blue);
  border-radius: 50%;
  content: "";
}

#v-pills-tab > .nav-link {
  color: var(--dark-blue);
  padding: 0.7rem 0 0.7rem 1rem;
  font-size: 15px;
}

#v-pills-tab .nav-link.active,
#v-pills-tab .show > .nav-link {
  background: transparent;
  position: relative;
  font-size: 1.2rem;
  font-family: "Quicksand Medium";
}

#v-pills-tab .nav-link.active::before,
#v-pills-tab .show > .nav-link::before {
  content: "";
  background: var(--golden);
  display: block;
  position: absolute;
  left: -3px;
  width: 5px;
  height: 100%;
  border-radius: 5px;
  top: 0;
}

#v-pills-tab .nav-link.active::after,
#v-pills-tab .show > .nav-link::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 20px;
}

.location-property-card {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.location-property-img {
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s;
}

.location-property-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,272c59+99&0+0,1+100 */
  /* background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(39, 44, 89, 0.99) 99%,
    rgba(39, 44, 89, 1) 100%
  );  */
  /* FF3.6-15 */
  /* background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(39, 44, 89, 0.99) 99%,
    rgba(39, 44, 89, 1) 100%
  );  */
  /* Chrome10-25,Safari5.1-6 */
  /* background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(39, 44, 89, 0.99) 99%,
    rgba(39, 44, 89, 1) 100%
  );  */
  
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#272c59',GradientType=0 ); /* IE6-9 */
  color: #fff;
  border-radius: 5px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  transition: all 0.3s;
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgb(2 2 2 / 87%) 100%,
    rgb(20 20 20) 100%
  );
}

.location-property-card:hover {
  /* transform: translateY(-8px); */
}

/* .location-property-card:hover .location-property-content {
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(39, 44, 89, 0.99) 99%,
    rgba(39, 44, 89, 1) 100%
  ); 
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(39, 44, 89, 0.99) 99%,
    rgba(39, 44, 89, 1) 100%
  ); 
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(39, 44, 89, 0.99) 99%,
    rgba(39, 44, 89, 1) 100%
  ); 
} */

.property-title {
  font-size: 1.15rem;
}

.property-rate {
  font-size: 1.15rem;
}

.plus-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 15px;
  border: 0;
  transition: 0.2s ease all 0s;
}

.section-locations .section-heading {
  margin-bottom: 2.5rem;
}

.property-for {
  margin-top: 10px;
}

.section-locations .swiper-container {
  padding-top: 20px;
  padding-bottom: 60px;
}

.section-locations .swiper-pagination {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.section-locations .swiper-pagination-bullet,
.section-locations .swiper-pagination-bullet-active {
  background: var(--dark-blue);
  opacity: 1;
  transition: all 0.3s;
}

.section-locations .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
}

.section-season {
  display: none;
  padding: 3rem 0;
  text-align: center;
}

.section-season .section-desc {
  width: 50%;
  margin: 15px auto 15px auto;
  text-align: center;
}

#seasons-pills-tab .nav-link.active,
#seasons-pills-tab .show > .nav-link {
  background: transparent;
  position: relative;
  font-size: 1.2rem;
  font-family: "Quicksand Medium";
  color: var(--dark-blue);
}

#seasons-pills-tab .nav-link {
  color: var(--dark-blue);
  padding: 0.7rem 1rem 0.7rem 1rem;
  font-size: 15px;
  margin: 0 0.7rem;
}

#seasons-pills-tab .nav-link.active::after,
#seasons-pills-tab .show > .nav-link::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 5px;
}

#seasons-pills-tab {
  border-bottom: 1px solid var(--dark-blue);
  padding: 10px 25px 0 25px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

#seasons-pills-tab::before {
  position: absolute;
  display: block;
  bottom: -3px;
  left: 0;
  height: 5px;
  width: 5px;
  background: var(--dark-blue);
  border-radius: 50%;
  content: "";
}

#seasons-pills-tab::after {
  position: absolute;
  display: block;
  bottom: -3px;
  right: -3px;
  height: 5px;
  width: 5px;
  background: var(--dark-blue);
  border-radius: 50%;
  content: "";
}

#seasons-pills-tab .nav-link.active::before,
#seasons-pills-tab .show > .nav-link::before {
  content: "";
  background: var(--golden);
  display: block;
  position: absolute;
  bottom: -3px;
  height: 5px;
  width: 100%;
  border-radius: 5px;
  top: auto;
  left: 0;
}

.section-season .swiper-container {
  padding-bottom: 60px;
}

.section-season .swiper-pagination {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-season .swiper-pagination-bullet,
.section-season .swiper-pagination-bullet-active {
  background: var(--dark-blue);
  opacity: 1;
  transition: all 0.3s;
}

.section-season .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
}

.property-location-icon {
  width: 25px;
  margin-right: 5px;
}

.property-location {
  margin: 10px 0;
}

.season-hotel-desc,
.season-hotel-price {
  text-align: left;
  padding: 10px 10px 0 10px;
}

.season-hotel-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-block:first-child {
  border-right: 1px solid var(--dark-blue);
  padding-right: 18px;
}

.hotel-price-value {
  font-size: 1.1rem;
  font-family: "Quicksand Bold";
}

.star-block .fa-star {
  opacity: 0.3;
  color: var(--golden);
}

.star-block .fa-star.filled {
  opacity: 1;
}

.season-property-title {
  font-size: 1rem;
  font-family: "Quicksand Bold";
}

.footer-row {
  justify-content: space-between;
  align-items: center;
}

.social-icon ul {
  list-style: none;
  display: flex;
  margin-top: 25px;
  padding-left: 0;
}
.social-icon li {
  margin: 8px;
}
.social-icon i {
    background: #14264a;
    border-radius: 50px;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}
.footer-logo {
  text-align: center;
}
.text-para {
  position: relative;
  bottom: 10px;
  text-align: center;
}
/* .m-24 {
  margin: 0 25px;
} */
.para-dest {
  font-size: 20px;
  font-weight: 500;
  color: #a0935e;
}
.dest-list ul {
  list-style: none;
  padding-left: 0;
}
.dest-list li {
  padding: 10px 0px;
}

.vila-details ul {
  list-style: none;
  padding: 0;
}

.vila-details li {
  color: #14264a;
  padding: 10px 0;
  font-family: "Quicksand Medium";
  font-size: 20px;
}
footer {
  padding: 50px 0px;
}
.contact-us h3 {
  color: #14264a;
}
.contact-us i {
  color: #a0935e;
  font-size: 25px;
}
.icon-margin {
  position: relative;
  right: 10px;
}
.contact-us {
  padding: 50px 0px;
  border-bottom: 1px solid #14264a;
}
.supportheader {
  font-size: 22px;
  color: #a0935e;
}
.supportpara {
  color: #14264a;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.we-support {
  padding: 50px 0px;
  border-bottom: 1px solid #14264a;
}
/* .getintouch {
  background-image: linear-gradient(
      rgba(191, 181, 181, 0),
      rgba(191, 181, 181, 0),
      rgb(191, 181, 181, 0)
    ),
    url(../img/logo_illusatrtion_1-01.png);
  padding: 30px 0 70px 0;
  width: 100%;
  background-position: 90% top;
  background-size: 19%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  height: 63%;
  /* opacity: 0.5; */
 */
.getintouch .form-control {
  background: transparent !important;
  border-radius: 50px;
  outline: 0 !important;
  padding: 0.5rem 1rem;
  color: #14264a;
}
.getintouch input::placeholder {
  color: #14264a;
}
.getintouch textarea.form-control {
  background: transparent !important;
  border-radius: 7px;

  outline: 0 !important;
}
.getintouch textarea::placeholder {
  color: #14264a !important;
}
.getintouchheading h3 {
  color: #14264a;
  font-size: 35px;
  margin: 20px 0;
  position: relative;
  top:55px !important
}

.section-testimonials .section-heading {
  text-align: left;
}

.section-testimonials {
  background: #e6eaf3;
  /* padding: 5rem 0; */
  padding: 0;
}

.testimonial-content {
  display: flex;
  align-items: center;
}

#testimonialCarousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#testimonialCarousel .carousel-indicators {
  left: 36%;
}

#testimonialCarousel .reviewer-img-wrapper {
  position: relative;
  left: 0;
  margin: 0;
}

.reviewer-img-wrapper img {
  border-radius: 50%;
  width: 100%;
}

.reviewer-img-wrapper > div {
  filter: grayscale(1);
}

#testimonialCarousel .reviewer-img-wrapper .active {
  filter: grayscale(0);
}

.reviewer-img-wrapper {
  position: relative;
  /* min-height: 310px; */
  min-height: 265px;
}

.reviewer-img-wrapper .img4 {
  position: absolute;
  /* top: 0;
  left: 30%; */
    top: 15%;
    left: 30%;
}

.reviewer-img-wrapper .img3 {
  position: absolute;
  right: 10%;
  top: 20%;
}

.reviewer-img-wrapper .img1 {
  position: absolute;
  /* bottom: 40%;
  left: 10%; */
      top: 56%;
    left: 44%;
}

.reviewer-img-wrapper .img2 {
  position: absolute;
  bottom: 0;
  left: 30%;
}

.reviewer-img-wrapper > div {
  width: 80px;
  transition: all 0.3s;
}

.reviewer-img-wrapper > div.active {
  width: 110px;
}

#testimonialCarousel li {
  background: var(--dark-blue);
}

.testimonial-quote {
  width: 45px;
}

.testimonial-title {
  font-size: 1.3rem;
  color: var(--golden);
  margin-top: 15px;
}

.testimonial-subtitle {
  font-size: 1rem;
  color: var(--golden);
  margin: 3px 0 15px 0;
}

.ourslider .carousel-indicators li {
  background-color: #14264a !important;
}
.ourslider .section-locations {
  background-color: transparent;
}
.ourslider .section-locations .swiper-pagination {
  /* flex-direction: column !important; */
  text-align: left !important;
}
.comment-heading {
  font-size: 25px;
  padding: 10px 0px 5px 0;
  color: #a0935e;
}
.ourslider img {
  width: 45px !important;
}
.comment-subheading {
  font-size: 20px;
  color: #a0935e;
  padding: 5px 0px 5px 0;
}

.commnt-para p {
  padding: 5px 0;
  font-size: 15px;
  color: #2e2e2f;
}
.img3 {
  text-align: center;
}
.img1 {
  position: relative;
  bottom: 9rem;
  right: 15%;
}
.img2 {
  position: relative;
  bottom: 7rem;
}
.img4 {
  position: relative;
  left: 3rem;
}
.navbar-light .navbar-brand {
  position: relative;
}
.logobox {
  background: #fff;
  padding: 4px 4px;
  border-radius: 50%;

  position: absolute;
  top: -30px;
  border: 5px solid grey;
}

.mr-25 {
  margin-right: 25px;
}

.wesupport-heading h3 {
  font-size: 33px;
  font-weight: 500;

  /* position: relative;
  right: 35px; */
}
.contact-us h3 {
  font-size: 33px;
  font-weight: 500;
}
.btn-blue:hover {
  background: var(--dark-blue-hover);
}
.btn-gold:hover {
  background: var(--golden-hover);
}
@keyframes circleMove {
  0%,
  100% {
    clip-path: circle(13% at 85% 50%);
  }
  50% {
    clip-path: circle(13% at 15% 50%);
  }
}
.quicklink {
  color: #000;
}

.villadetails-texting {
  color: #14264a;
}
.why-timeline {
  height: 450px;
  width: 600px;
  border-radius: 50%;
  border: 1px solid var(--golden);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  position: relative;
}

.why-iconbox {
  position: absolute;
}

.why-iconbox.iconbox1 {
  left: -6%;
  bottom: 50%;
  transform: translateY(50%);
}

.why-iconbox.iconbox2 {
  left: 15%;
  bottom: 85%;
  transform: translateY(50%);
}

.why-iconbox.iconbox3 {
  bottom: 85%;
  right: 15%;
  transform: translateY(50%);
}

.why-iconbox.iconbox4 {
  right: -6%;
  bottom: 50%;
  transform: translateY(50%);
}

#navbarSupportedContent .nav-link {
  font-weight: bold !important;
}
.p-25 {
  padding: 0 50px;
}
#navbarSupportedContent .btn-blue {
  width: 145px;
  margin-right: -50px;
}
textarea#exampleFormControlTextarea1 {
  resize: none;
}

.location-property-card:hover .custom-card,
.custom-card:hover {
  opacity: 1;
  clip-path: circle(100%);
}

.custom-card {
  position: absolute;
  height: auto;
  background-color: rgba(20, 38, 74, 1);
  z-index: 2;
  color: #fff;
  padding: 20px;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0px;
  font-size: 15px;
  opacity: 0;
  clip-path: circle(0% at 100% 100%);
  transition: all 1s ease-out;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform-origin: left bottom;
}

.luxury-card-title {
  font-family: "Viaoda Libre", serif;
}

/* .plus-icon:hover {
  opacity: 1;

} */

.location-property-card:hover {
  opacity: 1;
}
.propertiescarousel-details .readmore-text {
  margin-top: 0.5rem !important;
  margin-bottom: 0rem !important;
}
.propertiescarousel-details .readmore-text a {
  color: #14264a;
}
.svg_img {
  height: 72%;
  opacity: 0.5;
}

.bannerimg {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(../img/aboutbanner.png);
  height: 150px;

  background-size: cover;
  /* background-repeat: no-repeat; */
  width: 100%;
}
.breadcrumb {
  padding-top: 50px;
  background-color: transparent;
}
.breadcrumb-item a {
  font-size: 20px;
  color: #fff;
}
.breadcrumb-item.active {
  color: #fff;
  font-size: 20px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}
.fancybox__content > .carousel__button.is-close {
  top: 10px;
  right: 5px;
  background-color: #a68231;
}

#atmosphereModal .modal-dialog {
  max-width: 800px;
  margin: 70px auto;
}

#atmosphereModal .modal-body {
  position: relative;
  padding: 0px;
}
#atmosphereModal .close {
  position: absolute;
  right: -10px;
  top: -20px;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #000;
  opacity: 1;
  background: var(--golden);
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 1;
  padding: 0;
}

#atmosphereModal .close > span {
  line-height: 1;
  height: auto;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 4px;
}
.gettouchimg img{
  width: 100%;
}
.enquire_custom_form .modal-header {
    background: #14264a;
    color: #fff;
}
.enquire_custom_form .close{
  color: #fff;
  opacity: 1;
}
.btn-grp{
      text-align: center;
}
.submit-btn {
   
    background: #14264a;
    border-color: #14264a;
}


.logobox-mobile{
  display: none;
}
 
.search-bar-field .form-control {
    width: 100%;
    height:100%;
    border-radius: 30px;
    background: transparent;
    /* color: #fff; */
    font-size: 1.3rem;
    appearance: none;
    height: 100%;
    padding: 0.5rem 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.search-bar-field .form-group {
    height: 100%;
}
/* .footer-row{
  display: block !important;
} */
.footer-mobile-view{
  display: none !important;
}
.offering-iconrow-mobile-view{
  display: none;
}
@media (max-width: 1199px){
  .header{
    height:95px;
  }
  .btn-blue, .btn-gold{
    width: 122px
  }
  .nav-item.active .nav-link::after{
    width: 100%;
  }
.logobox-mobile {
    display: block !important;
        background: #fff;
    padding: 4px 4px;
    border-radius: 50%;
    position: absolute;
    top: -48px;
    border: 5px solid grey;
    left: -13px;
    margin: 10px;
}
.offering-iconbox{
  margin: 0 15px;
}
.getintouchheading{
      position: relative;
    bottom: 30px;
}
.social-icon ul{
      flex-wrap: wrap;
}
.contact-us>.row{
width: 85%;
}
.logobox{
  display: none;
}
.offering-row{
  flex-wrap: nowrap;
}
}

@media(max-width:767px){
  .navbar.with-bg{
    background-color: #fff;
  }
  .hero {
    margin-top: 73px;
}
.checkavail-wrapper{
  position: relative;
  padding: 0px;
}
.checkavail{
  border-radius: 0;
}
.carousel-indicators{
  
    margin: 0 0 0 0px;
}
  .atmosphere-leftimg-wrapper{
        margin: 10px 0 10px 0;
  }
  .atmosphere-leftimg{
    width: 100%;
  }
#testimonialCarousel .carousel-indicators{
  /* top: 115%; */
  top:103%;
      flex-direction: row;

}
.section-testimonials{
  padding: 20px 0px;
}
.testimonial-desc {
    width: 300px;
    text-align: justify;
}
.section-testimonials .carousel-inner{
  height:25vh;
}
.p-0{
  padding:0;
}
.gettouchimg {
    display: none;
}
.getintouchheading h3{
  top:0pxt;
}
.reviewer-img-wrapper{
display: none;
}
.carousel-inner{
  /* width: 500px ; */
  width: auto;
}
.checkavail-row{
      flex-wrap: wrap;
}
.checkavail-row > *{
  margin: 10px 15px;
}
.checkavail-row .form-control{
  width: 120px;
}
.checkavail-row button{
      position: relative;
    top: 5px;
    right: 30px;
}
.why-iconbox.iconbox2{
  transform: translateY(0%);
  right:0;
  left: 0;
    margin-bottom: 4%;
    margin-right: 4%;
}
.why-iconbox.iconbox1{
  transform: translateY(0%);
  right:0;
  
}
.why-iconbox.iconbox3{
   transform: translateY(0%);
   right:0;
     margin-bottom: 4%;
    margin-right: 4%;
}
.why-iconbox.iconbox4{
  transform: translateY(0%);
  right:0;
}
.why-iconbox{
  position:relative;
}
.svg_img{
  display: none;
}
.why-timeline{
height: auto;
width: auto;
border-radius: 0;
border:0;
    margin: 10px auto 30px auto;
}
.atmosphere-content {
    margin: 50px 5% 0px 5%;
}
  .play-icon{
    left: 50%;
  }
.offering-iconrow {
    display: flex;
    flex-wrap: wrap-reverse;
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
        width: 500px;
    align-items: center;
}
 .offering-iconbox{
   margin: 5px 10px;
 }
.offering-row{
  flex-wrap: wrap;
}
.section-heading{
  width: 100%;
}
.section-heading span{
  display: inline !important;
}
.logobox-mobile {
   background: #fff;
    padding: 4px 4px;
    border-radius: 50%;
    position: absolute;
    top: -48px;

    border: 5px solid grey;
   
    left: -13px;
    margin: 10px;
}

.with-bg .navbar-logo-mobile {
    width: 90px;
}
.logobox{
  display: none;
}
.logobox-mobile{
  display: block !important;
}
.nav-item.active .nav-link::after {
    display: block;
    content: "";
    height: 2px;
    width: 10%;
    margin: 0 auto;
    background: var(--dark-blue);
    position: absolute;
}
.checkavail{
  margin-top:120px;
}
.aboutus-para {
    padding: 0px 30px;
}
.about-comment-section p{
  padding-right: 92px;
}
.faq-header h2{
  font-size: 29px;
}
.about-img img{
  display: none;
}
.search-bar-field {
    /* width: 475px; */
    width: 320px !important;
    margin: 10px;
}
div#iframe-form iframe {
    height: 280px !important;
}
.search-bar{
  flex-direction: column;
  height:96vh
    
}
.form-margin iframe{
  height: 800px;
}
.social-icon ul{
      flex-wrap: wrap;
}
.input-group{
  width:320px 
}
.why-iconbox-title{
      font-size: 12px;
      font-weight: 600;
      /* position: relative;
      right:8px; */
}
.section-why {
    padding: 0rem 0;
}
.footer-list {
    display: flex;
    justify-content: space-between;
    /* list-style: none; */
}
.footer-list ul{
  list-style: none;
  padding-left: 0 !important;
}
#footerheadingOne .btn-link{
  font-size: 16px !important;
  font-weight: bold !important;
  color:#a68232;
  width: 100%;
  text-align: left;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
#footerheadingTwo  .btn-link{
  font-size: 16px !important;
  font-weight: bold !important;
  color:#a68232;
  width: 100%;
    text-align: left;
}
.button-grp {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}
.footer-para-text{
  position: relative;
}
.text-para-mobile{
      position: absolute;
    bottom: -40px;
    text-align: center;
    /* margin: 0 auto; */
    width: 100%;
}
.footer-mobile-view{
  display: block !important;
}
.footer-row{
  display: none;
}
.navbar-collapse{
      z-index: 999;
    align-items: center;
    background: #fff;
}
.footeraccordian .card-header button:after {
  content: '-';
  float: right;
  
}

.footeraccordian .card-header button.collapsed:after {
  content: '+';
  
}
.footeraccordian .btn-link{
  position: relative;
}
.footeraccordian .card-header button:after{
      content: '-';
    float: right;
    font-size: 50px;
    position: absolute;
    right: 0;
    bottom: -17px;
}
.section-why{
margin-top: 55px;

}
.icon-margin {
  right:0
}
.contact-us p{
  margin-bottom: 0;
}
.contact-us h3{
  margin-bottom: 25px;
}
.contact-us i{
      margin-right: 15px;
      font-size: 22px;
      flex: 0 1 30px;
}
.contact-us .col-md-2 {
    margin: 20px 0;
}
.iconmainbox{
  display: flex;
  /* justify-content: center; */
}
.offering-iconrow{
  display: none;
}
.offering-iconrow-mobile-view{
  display: flex;
    justify-content: center;
    width: 100%;
}
.offering-icon{
  width: 30px;
}
/* .mail-margin {
    position: relative;
    left: 3px;
}
.num-margin {
    position: relative;
    left: 6px;
}
.para-margin {
    position: relative;
    left: 7px;
} */
.icon-margin {
      
    right: 0;
    /* width: 60px; */
    display: inline-block;
    flex: 0 0 45px;

}
.offering-title{
  font-size: 12px;

}
.icon-box1, .icon-box2, .icon-box3, .icon-box4{
  width:50%
}
.offering-iconrow-mobile-view > div{
      display: inline-block;

}

.header::before{
  background: none;
}

.mt-60 .col-md-4{
  margin: 10px 0;
}

}
.jarallax {
  position: relative;
  z-index: 0;
  height: 100vh;
}

.fancybox-button--arrow_left{
  left: 28% !important;
}
.fancybox-button--arrow_right{
  right: 28% !important;
}


.villas{
  padding: 60px 0px ;
}

.card{
  padding: 15px;
} 
.card-img h4{
  font-size: 18px;
  padding: 10px 0px;
  text-align: center;
  background-color: #14264a;
  color: #fff;
}
.card-body p{
  font-size: 18px;
  color: #7d7d7d;
  font-weight: 600;
  margin-bottom:0;
}
.card-link{
  margin-top: 30px;
}

.card-link a{
  padding: 10px 24px;
  background-color: #14264a;
  color: #fff;
}


@media (max-width: 576px) { 

  .fancybox-button--arrow_left{
    left: 0 !important;
  }
  .fancybox-button--arrow_right{
    right: 0 !important;
  }




  
 }


 @media (max-width: 575px){
  .section-why {
    margin-top: 123%;
}
.jarallax{
  height: 25vh;
}
 }


 .atmosphere-section .container{
  max-width: 100%;
 }
 .section-content h5{
    letter-spacing: 2px;
    font-family: 'Gilda Display', serif;
    color: #999;
    text-align: center;
    font-size: 25px;
 }
 .section-content h3{
  font-size: 35px;
    color: #000;
    font-family: 'Gilda Display', serif;
    max-width: 515px;
    margin: auto;
    padding-bottom: 50px;
    text-align: center;
   
 }
 .section-content p{
  color: #14264a;
  font-size: 16px;
  max-width: 550px;
  margin: auto;
  line-height: 30px;
  padding-bottom: 70px;
  text-align: center;
 }
 .btn-1{
  background: #14264a;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 19px;
  display: inline-block;
  letter-spacing: 1px;
  border-radius: 15px 0;
 }
 .btn-1:hover{
  color: #fff;
 }
 .explore{
  text-align: center;
 }
 .left{
  padding-right: 0;
 }

 
 .fancybox-caption-wrap{
    width: 30% ;
 }
 .fancybox-caption-wrap{
  left: 35.3% ;
  background-color: #14264a;
    padding: 0px;
    bottom: 75px;
 }
.fancybox-caption {
  padding: 10px;
  text-align:center;
}
.fancybox-caption-wrap, .fancybox-infobar, .fancybox-toolbar{
  transition:none;
}







/*--------------------------------------------------
		 atmosphere section
---------------------------------------------------*/


.view {
   float: left;
   overflow: hidden;
   position: relative;
   cursor: default;
   width:100%;
}
.view .mask,.view .content, .view .mask1, .view .mask2{
  
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   padding:20px;
}
.view img {
   display: block;
   position: relative;
}
.view h2 {
   text-transform: uppercase;
   color: #fff;
   position: relative;
   font-size: 25px;
   font-family:'Gilda Display', serif;

}
/* .view p {
  
   font-size: 11px;
   position: relative;
   color: #fff;
   line-height:18px;
   margin-bottom:15px;
   padding-right:25px;
 
} */

.view-tenth img {
   -webkit-transform: scaleY(1);
   -moz-transform: scaleY(1);
   -o-transform: scaleY(1);
   -ms-transform: scaleY(1);
   transform: scaleY(1);
   -webkit-transition: all 0.7s ease-in-out;
   -moz-transition: all 0.7s ease-in-out;
   -o-transition: all 0.7s ease-in-out;
   -ms-transition: all 0.7s ease-in-out;
   transition: all 0.7s ease-in-out;
}
.view-tenth .mask {
   background-color: rgba(245, 147, 52, 0.8);
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
     height:95%;
	 width:100%;
}
.view-tenth .mask1 {
   background-color: rgba(170, 215, 83, 0.8);
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
     height:100%;
	 width:100%;
}
.view-tenth .mask2 {
   background-color: rgba(236, 215, 36, 0.8);
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
     height:100%;
	 width:100%;
}
.view-tenth h2 {

   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   transform: scale(0);
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
  
}
.view-tenth p {
   
 
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   transform: scale(0);
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
}

.view-tenth:hover img {
   -webkit-transform: scale(10);
   -moz-transform: scale(10);
   -o-transform: scale(10);
   -ms-transform: scale(10);
   transform: scale(10);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
}
.view-tenth:hover .mask, .view-tenth:hover .mask1, .view-tenth:hover .mask2, .view-tenth:hover .mask3, .view-tenth:hover .mask4, .view-tenth:hover .mask5, .view-tenth:hover .mask6, .view-tenth:hover .mask7 {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}

.view-tenth:hover h2,.view-tenth:hover p,.view-tenth:hover {
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
 
}

.call, .mail{
  color: #212529;
}


.whatsapp-button{
  position: fixed;
  bottom: 120px;
  right: 10px;
  z-index: 9999;

}
.whatsapp-button a{
  display: block;
  width: 50px;
  height: 50px;
  /* background-color: #25d366; */
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: background-color 0.3s;
  
}
