/* ADDITIONAL STYLE */
@font-face {
  font-family: "GeneralSans-Regular";
  src: url("../fonts/GeneralSans-Regular.otf");
}
@font-face {
  font-family: "GeneralSans-Medium";
  src: url("../fonts/GeneralSans-Medium.otf");
}
@font-face {
  font-family: "GeneralSans-Semibold";
  src: url("../fonts/GeneralSans-Semibold.otf");
}

@font-face {
  font-family: "KeplerStd-BlackScnItSubh";
  src: url("../fonts/KeplerStd-BlackScnItSubh.otf");
}

@font-face {
  font-family: "KeplerStd-LightCnItDisp";
  src: url("../fonts/KeplerStd-LightCnItDisp.otf");
}

html {
  scroll-behavior: smooth;
}

.none,
.show-mobile {
  display: none!important;
}

body, html {
  /* overflow-x: hidden; */
}

body{
  font-family: 'GeneralSans-Regular', sans-serif;
  color: #000;
}

.pointer {
  cursor: pointer;
}

/* HEADER */
header{
  /* background-color: rgba(255, 255, 255, 0.9)!important; */
  /* border-bottom: 1px solid #eeeeee; */
  /* background-color: transparent !important; */
  	height: 90px;
  	transition: 0.8s;
	-webkit-transition:  0.8s;
}
header .navbar{
	padding-top: .2rem;
    padding-bottom: .2rem;
}

@media (min-width: 767px) and (max-width: 991px) {
	header nav.container{
		max-width: 98% !important;
	}
}
header.bg-main{
  background-color: #13a59a !important;
}

.navbar-nav {
  margin-top: -5px;
}
.navbar-brand{
	padding-top: 0;
}

.navbar-brand img{
  height: 45px;
  transition: 0.8s;
-webkit-transition:  0.8s;
}

.navbar-collapse{
    float: right;
}

header{
  background-color: rgba(26, 144, 128, 1) !important;
}

header.scrolled{
	height: 60px;
	background-color: rgba(26, 144, 128, 1) !important;
}
header.scrolled .navbar-brand img{
	height: 30px;
}

.navbar-light .navbar-nav .nav-link {
  /* font-family: "GeneralSans-Semibold"; */
  font-family: "GeneralSans-Medium";
  padding: 0 10px;
  line-height: 61px;
  color: #fff!important;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.navbar-light .navbar-nav li:last-child a.nav-link{
  color: #1a9080 !important;
  background-color: #FFFFFF;
  display: inline;
  padding: 10px 15px;
  border-radius: 30px;
}
.navbar-light .navbar-nav li:last-child a.nav-link::after{
  display: none !important;
}

.navbar-light .navbar-nav a.nav-link {
  text-decoration: none;
  /* display: inline-block; */
  position: relative;
}
.navbar-light .navbar-nav a.nav-link:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 15px;
  content: "";
  /* display: block; */
  height: 1px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.navbar-light .navbar-nav a.nav-link:hover:after { 
  width: 100%; 
  left: 0; 
}
.navbar-light .navbar-nav a.nav-link:hover {
}
.navbar-light .navbar-nav .nav-link img.hamburger {
  width: 22px;
  height: 10px;
  margin-top: -3px;
}

.navbar-light .navbar-toggler{
	margin-top: 15px;
  height: 30px;
}

/* .navbar-expand-md .navbar-collapse{
	justify-content: center !important;
} */
.navbar-expand-md .navbar-collapse .btn-modal.nav-link{
	position: absolute;
    right: 0;
	margin-top: -10px;
}
.navbar-expand-md .navbar-collapse .btn-modal.nav-link img{
	width: 40px;
}
/* HEADER ============== */

/* HOME */
.carousel-item img{
  width: 100%;
}
/* HOME ================ */

/*==============================*/


input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button,
input[type='number'] {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield !important;
}

.btn-check:focus+.btn, 
.btn:focus,
.form-select:focus,
.form-control:focus {
  outline: 0;
  box-shadow: none !important;
}

/* ====================== animation ====================== */
.animated-background {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: #eeeeee;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(8%, #eeeeee),
    color-stop(18%, #dddddd),
    color-stop(33%, #eeeeee)
  );
  background: -webkit-linear-gradient(
    left,
    #eeeeee 8%,
    #dddddd 18%,
    #eeeeee 33%
  );
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  -webkit-background-size: 800px 104px;
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

.lineImage {
  height: 185px;
  width: 100%;
}
.line100 {
  height: 15px;
  width: 100%;
}
.line70 {
  height: 15px;
  width: 70%;
}

/* ====================== animation ====================== */

a{
  text-decoration: none!important;
  color: #000;
}

a:hover{
  color: #000;
}

.featurette-divider {
  height: 90px;
}

.uppercase {
  text-transform: uppercase;
}


.lang-dropdown{
    min-width: 50px!important;
}

.lang img{
  /* height: 20px!important; */
  width: 23px!important;
  margin-top: -3px;
}

.bg-white{
    -webkit-box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, 0.3);
        box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, 0.3);
        transition-delay: .2s;
}

.pull-header{
  height: 70px;
}

.dropdown-menu {
  min-width: 70px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.dropdown-item {
  font-size: 13px;
  font-family: 'GeneralSans-Regular';
}
.dropdown-item:hover {
  background: #000;
  color: #fff;
}

.dropdown-menu[data-bs-popper] {
  left: -120px;
}
.dm-dropdown.dropdown-menu[data-bs-popper]{
  left: -5px;
}

.experience.for-list {
  margin-bottom: 20px;
}
.experience.for-list img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
}
.experience.for-list h4 {
  color: #000;
  font-family: 'GeneralSans-Medium';
  font-size: 35px;
font-style: normal;
font-weight: 500;
line-height: 99%; /* 34.65px */
text-transform: uppercase;
margin-bottom: 100px;
}
.experience.for-list p {
  font-family: 'GeneralSans-Regular';
  font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 135%; /* 24.3px */
}
hr.for-list {
  border-top: none;
  border-bottom: 1px solid #000;
}

.experience-menu-item{
  margin-bottom: 5px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  border-radius: 6px;
  padding: 5px;
}
.experience-menu-item:hover{
  color: #fff;;
  background: #279384;
}

.experience-menu-image{
  padding-right: 5px;
}

.experience-menu{
  min-width: 430px;
  padding: 5px 5px 0 5px;
}

.experience-menu h5{
  font-family: 'GeneralSans-Medium';
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 13px;
}

.experience-menu p{
  font-size: 8px;
  font-weight: 400;
  line-height: 10px;
  margin-bottom: 0px;
}

.experience-menu .img-background {
  width: 93%;
  height: 60px;
  border-radius: 6px;
}


.navbar-toggler-icon{
  color: #333;
}

.navbar-toggler:focus {
    box-shadow: transparent !important;
    border-color: transparent !important;
}

.bg-transparent .navbar-toggler {
    color: #333!important;
    border-color: transparent!important;
    transition: none;
	margin-top: 5px;
}

.bg-white .navbar-toggler {
    border-color: transparent!important;
}

.bg-transparent .navbar-toggler:focus , .bg-white .navbar-toggler:focus {
    box-shadow: none;
}

.nav-pills .nav-link.active{
    background-color: transparent;
}

.nav-pills .nav-link.active:after{
    width: 100%;
    left: 0
}

.bg-white .nav-pills .nav-link.active{
    color: #fff;
}

.bg-white .nav a:after{
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    /* position: absolute; */
    background: #000;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.bg-transparent .nav a:hover:after, .bg-white .nav a:hover:after{
  /* width: 100%; */
  left: 0;
}

.navbar-divider{
    height: 150px;
}

.form-header{
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 50px;
}

.search-form{
  background: #F2F2F2;
  padding: 20px;
}

.search-form h4{
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-family: 'GeneralSans-Medium';
}

.search-form img.date {
  height: 16px;
  width: auto;
  margin-top: 5px;
}

.search-form-bg{
  background: #fff;
  padding: 5px 30px;
  border-radius: 50px;
  width: 100%;
}

.bg-about-home{
  background-image: url("../../../images/bg-about-home.jpg");
  background-repeat: no-repeat;
  height: 700px;
  position: relative;
  background-size: cover;
}

.bg-about-home-arrow{
  position: absolute;
  right: 5%;
  bottom: 10%;
}

.bg-about-home-btn{
  position: absolute;
  right: 5%;
  top: 5%;
  font-size: 25px;
}

.bg-about-home-left{
  position: relative;
}
.bg-about-home-left p {
  font-size: 16px;
  font-family: 'GeneralSans-Medium';
}

.about-home-left-upper{
  width: 80%;
  position: absolute;
  left: 5%;
  top: 0;
  text-transform: uppercase;
}
.about-home-left-upper .col-md-1 {
  width: 28px;
}

.about-home-left-bottom{
  width: 80%;
  position: absolute;
  left: 5%;
  bottom: 0;
}

.about-home-left-bottom h2{
  font-family: 'GeneralSans-Medium';
  font-weight: 500;
  font-size: 85px;
  line-height: 82.12%;
}

.about-home-left-bottom h2 span{
  font-family: "KeplerStd-LightCnItDisp", sans-serif;
  font-style: italic;
  font-weight: 500!important;
}

.second-banner-villas{
  background-repeat: no-repeat;
  height: 1000px;
  position: relative;
  background-size: cover;
}

.second-banner-travel{
  background-repeat: no-repeat;
  height: 750px;
  position: relative;
  background-size: cover;
}

.second-banner-travel-caption h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 85px;
  line-height: 82.12%;
  color: #fff!important;
}

.second-banner-villas-caption, .second-banner-travel-caption {
  width: 60%;
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.second-banner-villas-caption h2 {
  font-style: normal;
font-weight: 400;
font-size: 83px;
line-height: 82.12%;
  color: #fff!important;
}

.villa-list-box{
  padding-right: 20px;
}

.villa-list-box ::-webkit-scrollbar-thumb {
    background: #279384;
}

.villa-list-box ::-webkit-scrollbar {
  height: 7px;      
  width: 7px;
  background: #D9D9D9;    
}

.villa-list-box #pagination {
  margin: 0;
  padding: 0;
  text-align: center
}
.villa-list-box #pagination li {
  display: inline
}
.villa-list-box #pagination li a {
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  color: #888888;
  font-size: 13px;
  font-family: 'GeneralSans-Medium';
}
.villa-list-box #pagination li a {
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s
    
}
.villa-list-box #pagination li a.active {
  color: #000;
  text-decoration: underline !important;
}
.villa-list-box #pagination li a:hover:not(.active) {
  /* background-color: #ddd; */
  text-decoration: underline !important;
} 
.villa-list-box #pagination li a img {
  width: 32px;
  height: 32px;
}

#filterModal ::-webkit-scrollbar {
  height: 7px;      
  width: 7px;
  background: #279384;    
}

#filterModal .btn-bedroom {
  cursor: pointer;
}

#form-booking-btn-contact {
  display: none!important;
}
#form-booking-btn-contact.inline-block {
  display: inline-block!important;
}
.filter-search .btn-border-white,
.filter-search a#form-booking-btn-contact  {
  padding: 5px 40px 6px 40px;
  font-family: 'GeneralSans-Medium';
  font-size: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.filter-search .btn-border-white:hover,
.filter-search a#form-booking-btn-contact:hover {
  background: #fff;
  color: #279384 !important;
}

.villa-list{
  padding: 20px 80px;
  /* height: 1000px; */
  overflow: auto;
  white-space: nowrap;
}
.villa-list-loading {
  padding: 20px 80px;
}

.villa-list h4{
  font-style: normal;
  font-weight: 500;
  font-size: 27.8146px;
  line-height: 140.62%;
  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
  color: #000000!important;
  margin-bottom: 0;
}
.villa-list a.btn-tosca {
  font-style: normal;
  font-weight: 500;
  font-size: 10.5714px;
  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
  padding: 8px 40px;
  height: 32px !important;
}
.villa-list a.btn-tosca:focus {
  outline: none;
  box-shadow: none;
}
.villa-list .villa-list-header img {
  width: 16px;
  height: auto;
  margin-top: -3px;
  margin-left: 5px;
}
.villa-list p.no_data {
  font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 18px;
font-family: 'GeneralSans-Medium';
white-space: break-spaces;
}

.villa-item-left{
  padding-right: 10px;
  padding-bottom: 30px;
}
.villa-item-left img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}
.villa-item-left .content-details .btn-bg-white {
  font-style: normal;
font-weight: 500;
font-size: 10px;
line-height: 82.12%;
font-family: 'GeneralSans-Medium';
}
.villa-item-left .content {
  max-width: 100% !important;
}

.villa-item-right{
  padding-left: 10px;
  padding-bottom: 30px;
}

.villa-item-caption{
  padding: 15px 10px;
}

.villa-item-caption p{
  font-style: normal;
font-weight: 500;
font-size: 12px;
line-height: 140.62%;
/* identical to box height, or 17px */

text-transform: uppercase;
font-family: 'GeneralSans-Medium';
  color: #000;
  margin-bottom: 5px;
}

.villa-item-caption p.span{
  font-weight: 400;
font-size: 11px;
line-height: 140.62%;
/* or 15px */

text-transform: capitalize;
  color: #000;
  white-space: pre-wrap!important;
  font-family: 'GeneralSans-Regular';
}
.villa-item-caption h4 {
  font-size: 22px;
  align-items: center;
}

.villa-item-caption i{
  color: rgba(0, 0, 0, 0.35);
}

.villa-item-caption i:hover{
  color: #279384!important;
}

.villa-item-attribute {
  font-weight: 400;
  font-size: 14px;
  line-height: 140.62%;
  text-transform: capitalize;
  color: #000;
  white-space: pre-wrap!important;
  font-family: 'GeneralSans-Regular';
}
.villa-item-attribute img {
  width: 32px;
  height: auto;
}
.villa-item-attribute img:first-child {
  margin-left: -5px;
  margin-right: 5px;;
}
.villa-item-attribute img:nth-child(2) {
  margin-left: 10px;
  margin-right: -3px;
}

.after_modal_appended
{
  position:relative;
}

.villa-list-box .modal, .modal-backdrop {
    position: absolute !important;
    overflow-y:auto!important;
}
.villa-list-box .modal {
  height: 100vh;
  width: 50%;
  right: 0;
  left: auto;
}

.experience-banner{
  background-repeat: no-repeat;
  height: 100vh!important;
  position: relative;
  background-size: cover;
  background-position: top center;
  padding-top: 10%;
}

.experience-banner h4{
  font-weight: 500;
  font-size: 28.7952px;
  line-height: 99%;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: 'GeneralSans-Medium';
  margin-bottom: 20px;
}

.experience-banner h1{
  font-weight: 400;
  /* font-size: 115.181px; */
  font-size: 100px;
  line-height: 82.12%;
  /* or 95px */
  color: #FFFFFF;
  margin-bottom: 60px;
  margin-top: 60px;
}

.experience-banner-list{
  color: #fff;
  margin-top: 5%;
  font-size: 18px;
  width: 100%;
}

.experience-banner-list a,
.experience-banner-list p{
  font-weight: 400;
  font-size: 20px;
  display: inline;
  color: #fff;
}
.experience-banner-list p{
  text-decoration-line: underline;
}
.experience-banner-list p.no-underline{
  text-decoration: none;
}

.experience-banner-list-number{
  width: 40px;
  vertical-align: top;
}

.experience-banner-list-content{
  width: 100%;
  display: inline-block;
}

.experience-interested {
  padding-top: 50px;
}
.experience-interested h4 {
  margin-bottom: 0px;
  font-weight: 500;
font-size: 29px;
line-height: 99%;
  font-family: 'GeneralSans-Medium';
}
.experience-interested .right {
  text-align: right;
}
.experience-interested a {
  font-weight: 500;
font-size: 22.0929px;
line-height: 99%;
font-family: 'GeneralSans-Medium';
margin-top: -10px;
}
.experience-interested hr {
  margin-top: 30px;
}
.experience-interested.bg-tosca {
  background: #279384;
  color: #fff !important;
  padding-top: 60px;
    padding-bottom: 60px;
}
.experience-interested.bg-tosca h4 {
  font-weight: 500;
  font-size: 85px;
  line-height: 99%;
}
.experience-interested.bg-tosca a {
  font-weight: 500;
  font-size: 22.0929px;
  line-height: 99%;
  font-family: 'GeneralSans-Medium';
  margin-bottom: 0px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  border: 1px solid #FFF;
}
.experience-interested.bg-tosca a:hover {
  background: #FFF;
  border: 1px solid #FFF;
  color: #000 !important;
  text-decoration: underline !important;
}

.bg-experience{
  /* background-repeat: no-repeat;
  background-size: cover; */
}

.bg-experience h1{
  font-style: normal;
  font-weight: 400;
  font-size: 83.237px;
  line-height: 96.12%;
  /* or 80px */

  text-align: center;

  color: #FFFFFF;
  display: block;
  width: 70%;
}

.bg-experience-desc{
  padding: 20px 100px;
}

.bg-experience-desc h4{
  font-weight: 500;
  font-size: 23.3064px;
  line-height: 99%;
  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';

}

.bg-experience-desc p{
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 122%;
  font-family: 'GeneralSans-Regular', sans-serif;
}
.bg-experience-desc p b,
.bg-experience-desc p strong{
  font-family: 'GeneralSans-Medium';
}
.bg-experience-desc.popular p {
  line-height: 22px;
}
.bg-experience-desc.popular p b {
  font-family: 'GeneralSans-Semibold';
}

.bg-experience-desc table{
  width: 100%;
}

.bg-experience-desc .inclusion {
  margin-bottom: 25px;
}
.bg-experience-desc .inclusion p {
  display: inline-block;
}
.bg-experience-desc .inclusion img {
  width: 26px;
  height: auto;
  display: inline-block;
  margin-right: 10px;
}

.bg-experience-down-arrow{
  display: none;
}

.bg-contact{
  background-image: url("../../../images/bg_contact.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact{
  padding: 40px 80px;
}

.contact h1{
  font-style: normal;
  font-weight: 600;
  font-size: 61.4444px;
  line-height: 82.12%;
}

.contact h4{
  font-weight: 600;
  font-size: 30px;
  line-height: 99%;
}

#send-contact small.error,
#form-payment small.error {
  font-size: 10px;
  color: #ff0000;
  font-family: 'GeneralSans-Medium';
}

.order-summary{
  border-left: 1px solid #000;
}

.bg-about-us {
  background-repeat: no-repeat;
  height: 600px;
  position: relative;
  background-size: cover;
  margin-top: 60px;
  margin-bottom: 0px;
}
.about-us .tosca-bg {
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-us .about-us-ribbon {
  justify-content: center;
}
.about-us .about-us-ribbon h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 29.1329px;
  line-height: 99%;
  /* identical to box height, or 29px */

  text-align: center;
  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
}
.about-us .tosca-bg h1 {
  font-weight: 500;
  font-size: 85px;
  line-height: 99%;
  /* or 84px */

  text-transform: lowercase;
  text-align: right;
  font-family: 'GeneralSans-Medium';
}
.about-us .tosca-bg p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 122.62%;
  font-family: 'GeneralSans-Medium';
}
.container-about-us{
  padding: 10% 10% 10% 10%;
}
.about-us-upper{
  margin-bottom: 200px;
}
.about-us-upper h2{
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 82.12%;
  font-family: 'GeneralSans-Medium';
  word-break: break-word;
}
.about-us-upper h2 span{
  font-family: "KeplerStd-LightCnItDisp", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 100px;
  line-height: 82.12%;
}
.about-us-left-upper {
  font-weight: 500;
  font-size: 16px;
  line-height: 136.5%;
  font-family: 'GeneralSans-Medium';
}
.about-us-bg{
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: center;
}
.about-us-bg .overlay {
  background: rgba(0,0,0,0.7);
  border-radius: 0px;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0%;
  top: 0;
  bottom: 0;
  right: 0%;
  opacity: 0.6;
}
.about-us-bg h4{
  font-weight: 500;
  font-size: 59.7662px;
  line-height: 100.12%;
  /* or 60px */

  text-align: center;
  text-transform: uppercase;
  width: 80%;
  z-index: 999;
  color: #fff!important;
  font-family: 'GeneralSans-Medium';
}

.about-us-bg2{
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 600px;
  padding-bottom: 70px;
}
.about-us-bg2 h4{
  color: #fff!important;
  font-style: normal;
  font-weight: 500;
  font-size: 75px;
  line-height: 82.12%;
  font-family: 'GeneralSans-Medium';
}
.about-us-bg2 .align-items-end {
  justify-content: end;
}
.about-us-bg2 a,
.about-us-bg2 a:hover {
  color: #000 !important;
  background: #fff !important;
  text-decoration: underline !important;
  width: 300px;
  font-weight: 500;
  font-size: 29.1329px;
  line-height: 99%;
  /* or 29px */
  text-align: center;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 13px;
  font-family: 'GeneralSans-Medium';
}
.about-us .our-team h2 {
  font-family: 'GeneralSans-Medium';
  font-weight: 500;
  font-size: 64px;
  line-height: 100.12%;
  /* or 64px */

  text-align: center;
  text-transform: capitalize;
}

.our-team h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 27.2765px;
  line-height: 99%;
  /* or 27px */

  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
}
.our-team p {
  font-style: normal;
  font-weight: 500;
  font-size: 12.4692px;
  line-height: 99%;
  /* identical to box height, or 12px */

  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
}
.our-team img {
  width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.contact-page h1 {
  font-weight: 500;
font-size: 61.4444px;
line-height: 82.12%;
font-family: 'GeneralSans-Medium';
}
.contact-page p {
  font-weight: 500;
font-size: 16.3114px;
line-height: 99%;
font-family: 'GeneralSans-Medium';
}
.contact-page label {
  font-weight: 600;
font-size: 15px;
/* or 32px */

text-align: justify;
font-family: 'GeneralSans-Semibold';
margin-bottom: 0px;
}
.contact-page input,
.contact-page textarea {
  font-weight: 500;
font-size: 13px;
line-height: 99%;
font-family: 'GeneralSans-Medium';
padding-top: 8px;
padding-bottom: 8px;
}
.contact-page .btn-border-black {
  font-weight: 500;
font-size: 17.155px;
line-height: 99%;
/* or 17px */

text-align: center;
text-transform: uppercase;
font-family: 'GeneralSans-Medium';
}


.other-page h1,
.about-us h1 {
  font-style: normal;
font-weight: 500;
font-size: 117px;
line-height: 100.12%;
text-transform: uppercase;
font-family: 'GeneralSans-Medium';
}
.other-page h2{
  font-style: normal;
font-weight: 500;
font-size: 85px;
line-height: 99%;
/* or 84px */
text-transform: lowercase;
font-family: 'GeneralSans-Medium';
}
.other-page h4{
  font-style: normal;
font-weight: 500;
font-size: 45px;
line-height: 82.12%;
font-family: 'GeneralSans-Medium';
}
.other-page .accordion-button {
  font-style: normal;
font-weight: 500 !important;
font-size: 18px;
line-height: 82.12%;
font-family: 'GeneralSans-Medium';
}
.other-page .accordion-body,
.other-page .accordion-body p {
  font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 154.12%;
font-family: 'GeneralSans-Medium';
}

.accordion-item {
    border: transparent;
}

.all-in-one h1, .contact-footer h1{
  font-weight: 500;
  font-size: 85px;
  line-height: 99%;
  text-transform: lowercase;
font-family: 'GeneralSans-Medium';
}

.all-in-one a.btn-border-black,
.other-page a.btn-border-black {
  font-family: 'GeneralSans-Medium';
  font-weight: 500;
font-size: 22.0929px;
line-height: 99%;
/* or 22px */

text-align: center;
text-transform: uppercase;
}

.allinone-content h4{
  font-weight: 500;
font-size: 45px;
line-height: 100.12%;
font-family: 'GeneralSans-Medium';
}

.allinone-content p {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 122.62%;
  font-family: 'GeneralSans-Regular', sans-serif;
}
.allinone-content p strong,
.allinone-content p b{
  font-family: 'GeneralSans-Medium';
}

.allinone-content{
  padding-right: 20%;
}

.border-black-box{
  border: 1px solid #000;
  border-radius: 30px;
  height: 150px;
  width: 150px;
}

.box-bg-allinone{
  position: relative;
}
.box-bg-allinone a {
  font-weight: 500;
font-size: 24px;
line-height: 100.12%;
text-align: center;
text-transform: capitalize;
font-family: 'GeneralSans-Medium';
padding: 10px 30px 12px 30px;
}

.bg-allinone{
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 290px;
  max-height: 400px;
  width: 100%;
  background-position: top center;
  z-index: 1;
  border-radius: 30px;
}

.bg-allinone2{
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 290px;
  max-height: 400px;
  width: 100%;
  background-position: top center;
  z-index: 1;
  border-radius: 30px;
}

.bg-allinone-caption{
  width: 30%;
}

.bg-allinone-caption h4{
  color: #fff;
  font-weight: 500;
  font-size: 55px;
  line-height: 100.12%;
  text-align: center;
  font-family: 'GeneralSans-Medium';
  text-transform: lowercase;
}

.round-all-in-one{
  height: 100px;
  width: 100px;
  background: #279384;
  border-radius: 50%;
  border: 5px solid #fff;
  z-index: 999;
  position: absolute;
  top: 40%;
  left: 45%;
}

.round-all-in-one i{
  font-size: 27px;
  color: #fff;
}

.box-bg-allinone .btn-border-black{
  width: 100%;
}

.bg-services{
  background-repeat: no-repeat;
  height: 600px;
  position: relative;
  background-size: cover;
  margin-top: 60px;
  margin-bottom: 60px;
}

.services h1{
  font-weight: 500;
  font-size: 116px;
  line-height: 100.12%;
  /* or 116px */

  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
  margin-top: 20px;
}
.services h2{
  font-weight: 500;
  font-size: 85px;
  line-height: 100%;
  /* or 70px */

  text-align: right;
  font-family: 'GeneralSans-Medium';
}
.services p {
  font-weight: 500;
font-size: 16px;
line-height: 122.62%;
font-family: 'GeneralSans-Medium';
}
.services h3{
  font-weight: 500;
  font-size: 78px;
  line-height: 100.12%;
  /* or 78px */
  text-align: center;
  text-transform: capitalize;
  font-family: 'GeneralSans-Medium';
}
.services img.icon {
  width: 82px;
  height: auto;
  margin-bottom: 10px;
}
.services .content h4 {
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  /* or 38px */

  text-align: center;
  text-transform: capitalize;
}
.services .content .content-details a {
  font-weight: 500;
  font-size: 24px;
  line-height: 99%;
  /* identical to box height, or 24px */

  text-align: center;
  text-transform: uppercase;
}
.services .content .content-details a:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000 !important;
  text-decoration: underline !important;
}
.services .bg-services-detail {
  width: 100%;
  height: 100%;
  background-position: center;
  margin-top: 50px;
}
.services .bg-services-detail .carousel-item {
  height: 100%;
}
.services .has-padding {
  padding-left: 20px;
  padding-right: 20px;
}
.tosca-bg .services{
  padding-top: 50px;
  padding-bottom: 50px;
}
.tosca-bg .services h1 {
  font-weight: 500;
  font-size: 85px;
  line-height: 99%;
  /* or 84px */

  text-transform: lowercase;
}
.tosca-bg .services a{
  font-weight: 500;
  font-size: 22.0929px;
  line-height: 99%;
  font-family: 'GeneralSans-Medium';
  margin-bottom: 0px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.tosca-bg .services a:hover {
  background: #FFF;
  border: 1px solid #FFF;
  color: #000 !important;
  text-decoration: underline !important;

}
.services-list h5 {
  font-weight: 500;
  font-size: 45px;
  line-height: 82.12%;
  /* or 37px */

  text-transform: capitalize;
  font-family: 'GeneralSans-Medium';
  margin-bottom: 30px;
}
.services-list p {
  font-style: normal;
font-weight: 500;
  font-size: 16px;
  line-height: 122.62%;
  font-family: 'GeneralSans-Medium';
  margin-bottom: 0px;
}
.services-list img {
  width: 105px;
  height: auto;
}
.services-list .align-items-center {
  /* justify-content: end; */
}

@media (max-width: 768px) {
  .services-list .align-items-center{
    min-width: 100%;
  }
}

/*hamburger menu */
/* Icon 1 */

.animated-icon1, .animated-icon2, .animated-icon3 {
width: 30px;
height: 20px;
position: relative;
margin: 0px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
display: block;
position: absolute;
height: 3px;
width: 100%;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}

.animated-icon1 span {
background: #e65100;
}

.animated-icon2 span {
background: #fff;
}

.animated-icon3 span {
background: #f3e5f5;
}

.animated-icon1 span:nth-child(1) {
top: 0px;
}

.animated-icon1 span:nth-child(2) {
top: 10px;
}

.animated-icon1 span:nth-child(3) {
top: 20px;
}

.animated-icon1.open span:nth-child(1) {
top: 11px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
opacity: 0;
left: -60px;
}

.animated-icon1.open span:nth-child(3) {
top: 11px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg);
}

/* Icon 3*/

.animated-icon2 span:nth-child(1) {
top: 3px;
}

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
top: 10px;
}

.animated-icon2 span:nth-child(4) {
top: 18px;
}

.animated-icon2.open span:nth-child(1) {
top: 11px;
width: 0%;
left: 50%;
}

.animated-icon2.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
top: 11px;
width: 0%;
left: 50%;
}

/* Icon 4 */

.animated-icon3 span:nth-child(1) {
top: 0px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
top: 10px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
top: 20px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
top: 0px;
left: 8px;
}

.animated-icon3.open span:nth-child(2) {
width: 0%;
opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 21px;
left: 8px;
}
/*end of hamburger menu */

.caption-slider p{
  font-size: 10px;
  color: #4f4f4f;
  line-height: 0.2;
  font-weight: 700;
}

.caption-slider-right p{
  font-size: 10px;
  color: #828282;
  text-align: right;
  line-height: 0.2;
}

.slick-slide-caption{
  padding-top: 20px;
}

.accordion-item {
    background-color: #fff;
    border-bottom: 1px solid #000!important;
    padding: 20px 0;
}

/* .accordion-button {
   color: #333333!important;
   font-weight: 600!important;
   font-size: 18px;
   padding-left: 0;
   line-height: normal;
} */

/* .accordion-button:not(.collapsed) {
    color: #333333;
    font-weight: 700;
    background-color: transparent!important;
    box-shadow: none!important;
} */

/* .accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none!important;
}

.accordion-button::after{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3E%3C/svg%3E");
} */

.accordion-button:not(.collapsed){
  border-bottom: 1px solid #000!important;
}

.accordion-item:last-of-type {
    border-bottom: none!important;
}


.btn-modal{
  color: #fff;
  background: transparent!important;
  border: transparent!important;
}

.btn-border-white{
  color: #fff!important;
  background: transparent;
  padding: 7px 40px 8px 40px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #fff;
}

.btn-border-black{
  color: #000!important;
  background: #fff;
  padding: 7px 40px 8px 40px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #000;
}
.btn-border-black:hover{
  background: #000;
  color: #fff!important;
  text-decoration: underline!important;
}
p.btn-border-black{
  text-decoration: underline!important;
}
p.btn-border-black:hover {
  color: #000!important;
  background: #fff!important;
}

.tosca-bg .btn-border-white{
  color: #fff!important;
  background: transparent;
  padding: 7px 40px 8px 40px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #fff;
}

.btn-tosca{
  background: #279384!important;
  border-radius: 30px;
  padding: 5px 20px;
  border: none!important;
  height: auto!important;
  color: #fff!important;
  line-height: normal!important;
  height: 35px!important;
}

.btn-bg-white{
  background: #fff!important;
  border-radius: 30px;
  padding: 10px 20px;
  border: none!important;
  height: auto!important;
  color: #000!important;
  font-size: 12px;
  line-height: normal!important;
  height: 35px!important;
}

.nav-tabs{
    border-bottom: 2px solid #E0E0E0;
}

.nav-tabs .nav-link.active {
  border-top: none!important;
  border-left: none!important;
  border-right: none!important;
  border-bottom: 2px solid #FB2D8E;
  color: #FB2D8E;
  font-weight: 700;
}

.nav-tabs .nav-link{
  color: #333333!important;
  font-weight: 700;
  transition: none!important;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-top: none!important;
  border-left: none!important;
  border-right: none!important;
}

.tosca-bg{
  background: #279384;
  /* padding: 50px 0; */
  color: #fff!important;
}
.tosca-bg.home {
  margin-top: -50px;
  position: relative;
}
.tosca-bg.home .tosca-left {
  padding-left: 70px;
}
.tosca-bg.home .tosca-right {
  padding-right: 70px;
}
.tosca-bg.home .tosca-right p {
  font-size: 16px;
line-height: 122.62%;
}

.tosca-bg h2,
.tosca-bg center h2{
  color: #fff!important;
  font-weight: 500;
  font-size: 72px;
  line-height: 82.12%;
  text-align: center;
  letter-spacing: -0.035em;
  font-family: 'GeneralSans-Medium';
}
.tosca-bg center p{
  font-size: 18px;
  line-height: 22px;
  margin-top: 20px;
}

.tosca-bg h3{
  color: #fff!important;
  font-weight: 500;
  font-size: 56px;
  line-height: 82.12%;
  font-family: 'GeneralSans-Medium';
}

.tosca-right{
  text-align: right;
}

.img-bg{
  background-image: url("../../../images/bg_image.png");
  background-repeat: no-repeat;
  margin-top: -50px;
  color: #fff!important;
  height: 500px;
  padding-bottom: 20px;
  position: relative;
}

.img-bg-content-left{
  width: 40%;
  position: absolute;
  left: 5%;
  bottom: 5%;
}
.img-bg-content .img-bg-content-left p {
  font-size: 21px;
  line-height: 122.62%;
  /* font-family: 'GeneralSans-Medium'; */
}

.img-bg-content-left h2{
  font-weight: 400;
  font-size: 63px;
  line-height: 93.62%;
  text-transform: lowercase;
}

.img-bg-content-right{
  right: 5%!important;
  bottom: 5%;
  position: absolute;
}

.img-bg h2{
  color: #fff!important;
}

.bg-modal{
  background-image: url("../../../images/garuda.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -100px;
  /* height: 100%; */
}

.bg-modal-transparent{
  background: transparent;
}

.modal-body{
  padding: 0;
}
.modal-product .modal-body{
  padding: 20px 0 0 0;
}

.bg-modal-tosca{
  background: #279384;
  padding: 50px 80px;
  color: #fff!important;
  height:100vh;
  position: relative;
}

.bg-modal-tosca .btn-close, .bg-modal-gallery .btn-close{
  font-size: 33px;
  color: #fff!important;
  position: fixed;
  top: 55px;
  right: 5%;
  background: none;
  cursor: pointer;
}
.bg-modal-gallery .btn-close {
  opacity: 1;
}

.bg-modal-transparent .btn-close{
  font-size: 50px;
  color: #fff!important;
  position: fixed;
  top: 2%;
  right: 2%;
}

.bg-modal-transparent h1 span{
  font-size: 14px;
}

.bg-modal-tosca-filter{
  background: #279384;
  padding: 10px;
  color: #fff!important;
}
.bg-modal-tosca-filter h2 {
  font-size: 21px;
  font-family: 'GeneralSans-Medium';
  font-weight: 500;
  line-height: 140.625%;
  text-transform: uppercase;
}
.bg-modal-tosca-filter h4 {
  color: #FFF;
font-size: 18.508px;
font-family: 'GeneralSans-Medium';
font-weight: 500;
line-height: 140.625%;
}

.bg-modal-tosca-filter .btn-close{
  position: absolute;
  top: 0;
  right: 5%;
  background: none;
  cursor: pointer;
  width: 23px;
  height: auto;
  opacity: 1;
}

.bg-modal-tosca-filter .modal-content{
  background: transparent!important;
  border: transparent!important;

}

.bg-modal-tosca-filter .modal-dialog{
  max-width: 90%!important;
}

.bg-modal-left-bottom{
  position: absolute;
  bottom: 30px;
  left: 80px;
}
.bg-modal-left-bottom p {
  font-family: "GeneralSans-Medium";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}

.bg-modal-right-bottom{
  position: absolute;
  bottom: 20px;
  right: 5%;
}

.bg-modal-right-bottom a{
  display: inline-block!important;
  /* font-size: 30px!important; */
  padding: 10px;
}
.bg-modal-right-bottom a img {
  width: 25px;
  height: auto;
}
.bg-modal-right-bottom a img.youtube-icon {
  width: 30px;
}

.bg-modal-tosca a{
  font-size: 45px;
  display: block;
  color: #fff;
  font-weight: 600;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.bg-modal-tosca a:hover {
  color: #036b5b;
}

/* IMAGE HOVER EFFECT*/
.container-image .title{
  text-align: center;
  margin-bottom: 10px;
}

.content {
  position: relative;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}
.ves .content {
  max-width: 100%;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.ves div:nth-child(2){
  padding: 0;
}
.ves div:nth-child(3){
  padding-left: 2px;
  padding-right: 2px;
}
.ves div:last-child{
  padding: 0;
}
.ves .content h4 {
  font-weight: 400;
  font-size: 45px;
}
.ves .show-mobile .content h4 {
  text-transform: capitalize;
}

.ves .content img.bg {
  width: 100%;
}

.ves .content .content-details h4 {
  font-size: 35px;
}
.ves .content .content-details a {
  font-size: 25px;
  margin-top: 15px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.ves .content .content-details a:hover {
  background: #fff;
  color: #000 !important;
}

.services .content {
  max-width: 100%;
}

.content .content-overlay {
  background: rgba(0,0,0,0.7);
  border-radius: 8px;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 0.5;
}

.content-image{
  width: 100%;
}
.content img{
  object-fit: cover;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: #fff!important;
  width: 70%;
}

.tosca-bg .content-details p{
  font-size: 10px!important;
  word-wrap: break-word!important;
  white-space: pre-wrap!important;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.villa-item-left .content-details, .villa-item-right .content-details{
  top: 15%;
  left: 25%;
}

.villa-item-left .content:hover .content-details, .villa-item-right .content:hover .content-details{
  top: 15%;
  left: 25%;
}

.content-details a:hover, .content-details a, .content-details-show a{
  color: #fff!important;
}

.content-details .btn-bg-white:hover, .content-details .btn-bg-white{
  color: #000!important;
}

.content-details-show {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: #fff!important;
}

.content-details-show-2 {
  position: absolute;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
  width: 100%;
  bottom: 0%;
  left: 0%;
  opacity: 1;
  color: #fff!important;
  background-image: linear-gradient(to bottom, transparent, black);
}

.content-details-show-2 h5{
  font-weight: 600;
  font-size: 9.60304px;
  line-height: 99%;
  /* or 10px */

  text-transform: uppercase;
  font-family: 'GeneralSans-Semibold';
  margin-bottom: 5px;
}

.content-details-show-2 p{
  margin-bottom: 0;
  font-weight: 400;
  font-size: 7.20228px;
  line-height: 99%;
  /* or 7px */

  text-transform: lowercase;
}

.content-details-show-ig {
  position: absolute;
  right: 5%;
  top: 5%;
  opacity: 1;
  color: #fff!important;
}

.content-details i, .content-details-show-ig i{
  font-size: 25px;
  font-weight: 400;
}

.content:hover .content-details-show{
  opacity: 0;
}
.ves .show-mobile .content:hover .content-details-show{
  opacity: 1;
}

.instagram h2 {
  font-size: 55px;
  line-height: 82.12%;
  margin-bottom: 20px;
}
.instagram p {
  font-size: 14px;
  line-height: 122.62%;
}

.instagram .content-details p{
  font-size: 11px;
  line-height: normal;
}

.instagram img{
  border-radius: 5px;
  height: 300px;
  object-position: top center;
}

div.destinations{
  overflow: auto;
  white-space: nowrap;
  padding-bottom: 20px;
}

.destinations .colx{
  display: inline-block;
  width: 19.8%;
  padding: 0 5px;
}
.destinations .content {
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.destinations .content img {
  border-radius: 8px;
}
.destinations .content h4 {
  font-size: 24px;
}
.destinations .content .content-details h4 {
  font-size: 21px;
}
.destinations .content .content-details p,
.destinations .content .content-details a {
  font-size: 12px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.destinations .content .content-details a:hover {
  background: #fff;
  color: #000 !important;
}
.destinations .content .content-details {
  width: 90% !important;
}
.destinations .content .content-details a {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.tosca-bg ::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 20px;
    height: 10px;
}

.tosca-bg ::-webkit-scrollbar {
  height: 4px;           
  width: 4px;     
  border-bottom: 1px solid #d5d5d5;
}

.datepicker {
  width: 250px;
  font-family: 'GeneralSans-Regular';
  font-size: 12px;
  background: #000;
  padding: 10px 15px !important;
}
.datepicker-dropdown:before {
  border-bottom: 7px solid #000 !important;
}
.datepicker-dropdown.datepicker-orient-top:before {
  border-top: 7px solid #000 !important;
}
.datepicker-dropdown:after {
  border-bottom: 6px solid #000 !important;
}
.datepicker-dropdown.datepicker-orient-top:after {
  border-top: 6px solid #000 !important;
}
.datepicker table {
  width: 100%;
}
.datepicker table thead tr th {
  padding: 6px 0;
  color: #fff;
}
.datepicker table tbody tr td {
  padding: 3px 0;
  color: #fff;
  cursor: pointer;
}
.datepicker table thead tr th,
.datepicker table tbody tr td{
  text-align: center;
}
.datepicker table thead tr:nth-child(2) th{
  cursor: pointer;
}
.datepicker table tbody tr td.disabled{
  text-decoration: line-through;
  cursor: not-allowed;
}
.datepicker table tr td.day.focused, .datepicker table tr td.day:hover,
.datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  background: #403c3c !important;
}
.datepicker-switch {
  font-size: 14px;
}

.navbar-collapse1.show{
  z-index: 9999;
}

/*collapse menu mobile */
@media (max-width: 768px) {
    .navbar-collapse1 {
        position: fixed;
        top: 0px;
        right: 0;
        padding-top: 30%;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 85%;
        height: 100%;
        background-color: #10a69d!important;
        overflow-y: scroll;
    }

    .navbar-light .navbar-nav a.nav-link:after  {
      bottom: 5px;
    }

    .show-mobile {
      display: block!important;
    }

    .close-collapse{
        display: inline-block;
        padding-right: 20px;
        float:right;
        font-size: 30px;
    }

    .close-collapse a{
        color: #333;
    }

    .nav-item {
        text-align: center;
    }
    .nav-item:last-child{
      text-align: left;
    }

    .navbar-collapse1.collapsing {
      right: -75%;
        /* left: -75%; */
        transition: height 0s ease;
    }

    .navbar-collapse1.show {
        /* left: 0; */
        /* transition: left 0.3s ease 0s, left 0.3s ease 0s; */
        transition: right 0.3s ease 0s, right 0.3s ease 0s;
    }

    .navbar-collapse1.show .animated-icon2 span {
    background: #fff;
    }

    .navbar-toggler.collapsed ~ .navbar-collapse1 {
        /* transition: width 0.1s ease 0.1s, left 0.5s ease 0.5s; */
        transition: width 0.1s ease 0.1s, right 0.5s ease 0.5s;
    }

    .nav-pills .link-light, .nav-pills .nav-link.active,  .nav-pills .link-dark, .bg-white .nav-pills .nav-link.active{
        color: #fff;
        width: 100%;
        text-align: left;
    }

    .nav-pills{
        display: block;
    }

    .nav-pills .nav-link.active:after{
        width: 0;
        left: 0
    }

    h2{
      font-size: 30px!important;
    }
}

@media (min-width: 992px) {

}

.masonry {
  column-count: 2;
  column-gap: 5px;
}

@media (min-width: 768px) {
  .masonry {
    column-count: 3;
  }
}
@media (min-width: 992px) {
  .masonry {
    column-count: 4;
  }
}
@media (min-width: 1199px) {
  .masonry {
    column-count: 5;
  }
}
.masonry .brick {
  box-sizing: border-box;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  counter-increment: brick-counter;
}
.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top Search Animation */

#send-subscribe .form-control {
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 6px;
  width: 100%;
  border-radius: 5px;
}
#send-subscribe .form-control:focus {
  border-color: #22282B;
}
#send-subscribe .btn-border-black {
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
  background: #279384;
  padding-left: 0px;
  padding-right: 0px;
  color: #fff !important;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#send-subscribe p {
  margin-bottom: 0px;
  color: #918b8b;
}

.footer-upper{
  background: #fff;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 14px;
  line-height: 17px;
  color:#000;
}

/* PRICE LIST */
.tab-content>.active {
    display: block;
}
.tab-content>.tab-pane {
    /* display: none; */
}
.fade {
    transition: opacity .15s linear;
}

.information-pricelist {
    color: #189283;
    background-color: #efefef;
    text-align: center;
    padding: 1rem 1.25rem;
}

.info-footer {
    font-weight: 600;
    font-size: 14px;
    background-color: #00473e;
    line-height: 2;
    letter-spacing: 0.5px;
    bottom: 0;
    position: sticky;
    z-index: 10;
	font-family: "GeneralSans-Medium";
}

.strikediag {
    display: inline-block;
    position: relative;
}
.sold-out {
    opacity: 0.3;
}
.clickable {
    cursor: pointer;
}

.clickable:hover{
	color: #189283;
}

.btn-remind-me {
    color: #189283;
    transition: 0.5s;
    border: 2px solid #189283;
    font-size: 0.7rem;
    font-family: "GeneralSans-Medium";
    width: auto;
    align-self: baseline;
	margin-left: auto !important;
}
.btn-remind-me:hover{
	background-color: #189283;
	color: #FFFFFF;
}

.strikediag::before {
    content: '';
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    top: 0.38em;
    bottom: 0.38em;
    background: linear-gradient(to left top, transparent 45.5%, currentColor 47.5%, currentColor 52.5%, transparent 54.5%);
    pointer-events: none;
}

.information-pricelist > small:first-child{
	font-family: "GeneralSans-Semibold";
}
.information-pricelist > small{
	font-size: 1rem;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
	overflow-y: visible;
}
.sticky-title {
	position: sticky;
	top: 5rem;
	background-color: #fff;
	z-index: 1000;
	width: 100%; /* add this rule */
  }
  .fix-header {
    top: 0;
    position: sticky;
    z-index: 10;
}
.colspan-2 {
    grid-column: span 2 / span 2;
}
.colspan-3 {
    grid-column: span 3 / span 3;
}
.separator {
    border-right: solid 1px white !important;
}
.custom-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0px;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-family: "GeneralSans-Semibold";
}
.bg-green-light-custom {
    background-color: #12a59a !important;
}

.custom-grid-item {
    padding: 0.5rem 0.4rem;
    margin-bottom: 0px;
    border: solid 0.5px #dfdfdf;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.gray {
    background-color: #F3F4F6;
}

.custom-toggle {
    position: relative;
    padding: 0.5rem;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-bottom: solid 1px white;
    letter-spacing: 0.1em;
}
.bg-green-custom {
    background-color: #095f59 !important;
}

.toggle-icon {
    font-weight: 700;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.accordion-button:focus{
	border-color: none;
	box-shadow: none;
}

.accordion-item{
	padding: 0;
}
.accordion-item .accordion-header,
.accordion-item .accordion-header button{
	background-color: #095f59 !important;
	color: #ffffff;
	letter-spacing: 0.1em;
	text-align: center;
}
.accordion-item .accordion-header{
	position: relative;
    cursor: pointer;
    border-bottom: solid 1px white;
}
.accordion-item .accordion-header button{
	padding: 0.5rem;
	display: block;
	font-family: "GeneralSans-Medium";
}
.accordion-button::after{
	background-image: url("data:image/svg+xml,%3Csvg width='100px' height='100px' viewBox='0 -4.5 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23000000' stroke='%23000000' transform='rotate(180)'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3Earrow_up %5B%23337%5D%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Dribbble-Light-Preview' transform='translate(-260.000000, -6684.000000)' fill='%23ffffff'%3E%3Cg id='icons' transform='translate(56.000000, 160.000000)'%3E%3Cpath d='M223.707692,6534.63378 L223.707692,6534.63378 C224.097436,6534.22888 224.097436,6533.57338 223.707692,6533.16951 L215.444127,6524.60657 C214.66364,6523.79781 213.397472,6523.79781 212.616986,6524.60657 L204.29246,6533.23165 C203.906714,6533.6324 203.901717,6534.27962 204.282467,6534.68555 C204.671211,6535.10081 205.31179,6535.10495 205.70653,6534.69695 L213.323521,6526.80297 C213.714264,6526.39807 214.346848,6526.39807 214.737591,6526.80297 L222.294621,6534.63378 C222.684365,6535.03868 223.317949,6535.03868 223.707692,6534.63378' id='arrow_up-%5B%23337%5D'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    right: 10px;
}
.accordion-button:not(.collapsed)::after{
	background-image: url("data:image/svg+xml,%3Csvg width='100px' height='100px' viewBox='0 -4.5 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23ffffff' stroke='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3Earrow_down %5B%23338%5D%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Dribbble-Light-Preview' transform='translate(-220.000000, -6684.000000)' fill='%23ffffff'%3E%3Cg id='icons' transform='translate(56.000000, 160.000000)'%3E%3Cpath d='M164.292308,6524.36583 L164.292308,6524.36583 C163.902564,6524.77071 163.902564,6525.42619 164.292308,6525.83004 L172.555873,6534.39267 C173.33636,6535.20244 174.602528,6535.20244 175.383014,6534.39267 L183.70754,6525.76791 C184.093286,6525.36716 184.098283,6524.71997 183.717533,6524.31405 C183.328789,6523.89985 182.68821,6523.89467 182.29347,6524.30266 L174.676479,6532.19636 C174.285736,6532.60124 173.653152,6532.60124 173.262409,6532.19636 L165.705379,6524.36583 C165.315635,6523.96094 164.683051,6523.96094 164.292308,6524.36583' id='arrow_down-%5B%23338%5D'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	position: absolute;
    right: 10px;
}
.information-icon > div:nth-child(2){
	column-gap: 5px;
}
.information-icon > div:nth-child(2) > div{
	padding: 0.5rem;
	background-color: #FFFAE7;
}
.information-icon > div:nth-child(2) > div:first{
	margin-right: 10px;
}
.information-icon > div:nth-child(2) > div span{
	font-family: "GeneralSans-Semibold";
}

.modal-product{
	max-width: 80rem !important;
}
.modal-product .modal-header{
	border-bottom: none;
}
.product-knowledge-header {
    display: flex;
    width: 100%;
    top: 3rem;
    left: 0;
    z-index: 10;
}
.product-knowledge-header > div{
  height: 4rem;
}
.product-knowledge-header > div:first-child{
  width: 4rem;
  background-color: #095f59;
}
.product-knowledge-header > div:nth-child(2){
  width: 40%;
}
.product-knowledge-header > div:nth-child(2) h3{
  font-size: 1.5rem;
  font-family: "GeneralSans-Semibold";
  margin-top: 15px;
  margin-bottom: 5px;
}
.product-knowledge-header > div:nth-child(2) p{
  font-style: italic;
	font-size: 14px;
}
.product-knowledge-header > div:last-child{
  width: 100%;
  background-color: #095f59;
  height: 4rem;
  padding-right: 2rem;
}

.company-logo {
  width: auto;
  height: 2.7rem;
  margin-left: 20px;
}

.modal-product .btn-close{
	color: #FFFFFF;
  margin-top: auto !important;
  margin-bottom: auto !important;
  position: absolute;
  right: 12px;
  top: 40px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M20.7457 3.32851C20.3552 2.93798 19.722 2.93798 19.3315 3.32851L12.0371 10.6229L4.74275 3.32851C4.35223 2.93798 3.71906 2.93798 3.32854 3.32851C2.93801 3.71903 2.93801 4.3522 3.32854 4.74272L10.6229 12.0371L3.32856 19.3314C2.93803 19.722 2.93803 20.3551 3.32856 20.7457C3.71908 21.1362 4.35225 21.1362 4.74277 20.7457L12.0371 13.4513L19.3315 20.7457C19.722 21.1362 20.3552 21.1362 20.7457 20.7457C21.1362 20.3551 21.1362 19.722 20.7457 19.3315L13.4513 12.0371L20.7457 4.74272C21.1362 4.3522 21.1362 3.71903 20.7457 3.32851Z' fill='%23ffffff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
/* .ml-auto, .mx-auto {
    margin-left: auto !important;
} */

.container-desktop{
  background: #EFEFEF;
}
.left-container-desktop,
.right-section-desktop{
  padding-bottom: 30px;
}
.left-container-desktop{
	padding-left: 20px;
  padding-right: 20px;
	padding-top: 40px;
  background: #FFFFFF;
}
.right-section-desktop{
  padding-right: 20px;
	padding-top: 40px;
}
.section-wrapper{
	margin: 1.5rem 0;
}
.section-wrapper h4{
	font-family: "GeneralSans-Semibold";
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 10px;
}
.section-wrapper p{
	font-style: normal;
	font-size: 14px;
	line-height: normal;
	margin-bottom: 5px;
}

.section-wrapper ul{
  margin-left: -15px;
}

.custom-grid-item .font-italic{
  font-style: italic;
  font-family: "GeneralSans-Medium";
}

@media (max-width: 767px) {
  .custom-header{
    font-size: 12px;
  }
  .btn-remind-me{
    font-size: 6px;
    border-width: 1px;
  }
  .navbar-light .navbar-toggler{
    margin-top: 0;
  }
  .product-knowledge-header > div:first-child{
    width: 2rem;
  }
  .product-knowledge-header > div:nth-child(2){
    width: 100%;
    padding: 5px;
  }

  .product-knowledge-header > div:last-child .company-logo{
    height: 2rem;
  }
  .product-knowledge-header > div:nth-child(2) h3{
    font-size: 0.9rem;
  }
  .product-knowledge-header > div:nth-child(2) p{
    font-size: 11px;
  }
  .section-wrapper h4{
    font-size: 14px;
  }
  .section-wrapper p,
  .section-wrapper ul li{
    font-size: 13px;
  }
  .product-colors-desktop-left > div > div:first-child{
    width: 20px;
    height: 13px;
  }
  .custom-grid-item{
    font-size: 13px;
  }
}

.product-colors-desktop-left{
	display: grid;
	grid-template-columns: 30% 30% 30%;
	gap: 0.5em;
}
.product-colors-desktop-left.no-grid{
	grid-template-columns: 100%;
}
.product-colors-desktop-left > div > div:first-child{
	width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
}

/* PRICE LIST =============================================== */

/* FOOTER */
footer h5{
	font-family: "GeneralSans-Semibold";
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 10px;
  }
footer p{
	font-style: normal;
	font-size: 14px;
	line-height: normal;
	margin-bottom: 5px;
}

footer a{
	color: #FFFFFF;
	font-size: 14px;
}
  
footer a:hover{
	color: #fff!important;
}

.footer-bottom{
  background: #189283;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

footer p.copyright {
	/* font-size: 12px; */
	/* margin-top: 30px; */
}

.footer-bottom .social-media {
  margin-top: 20px;
}
.footer-bottom .social-media img {
  width: 24px;
  height: auto;
  margin-right: 10px;
}
footer, footer p, footer h4, footer a, footer a:hover{
    text-decoration: none;
}
footer a:hover {
  text-decoration: underline !important;
}

.social-media a{
  display: inline-block;
}
@media (max-width: 768px) {
	footer h5{
	  	margin-top: 20px;
	}
}
/* FOOTER ======================== */

.has-search .form-control {
    /* padding-left: 2.375rem; */
}

.has-search-form{
  width: 95%;
}

.has-search-button{
  width: 5%;
  margin-right: -200px!important;
}

.has-search-button button{
  background: transparent!important;
  border: transparent!important;
  margin-left: 20px!important;
}

.has-search-form, .has-search-button{
  display: inline-block!important;
}

.has-search input{
  background: transparent!important;
  border-bottom: transparent!important;
  border-left: transparent!important;
  border-top: transparent!important;
  border-right: transparent!important;
  font-weight: 500;
    font-size: 12px;
  text-align: left;
  border-radius: 0;
}

.has-search .form-group{
  border: transparent!important;
}

.filter-search .form-control{
  background: #fff!important;
  border-bottom: transparent!important;
  border-left: transparent!important;
  border-top: transparent!important;
  border-right: transparent!important;
  font-weight: 500;
    font-size: 14px;
  text-align: left;
  border-radius: 30px!important;
  padding: 8px 20px;
}

.filter-search .input-group input{
  border-top-right-radius: 0px!important;
  border-bottom-right-radius: 0px!important;
}

.filter-search .form-check input{
  border-radius: 0px!important;
}

.filter-search .input-group-text{
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0px;
  border-top: transparent!important;
  border-left: transparent!important;
  border-right: transparent!important;
  /* border-right: 1px solid #888888; */
  border-bottom: transparent!important;
  padding-left: 10px;
  padding-right: 15px;
  background: #fff!important;
  color: #000;
}

.filter-search label {
  color: #FFF;
font-size: 15.547px;
line-height: 140.625%;
}

.contact-form input{
  background: transparent!important;
  border-top: transparent!important;
  border-left: transparent!important;
  border-right: transparent!important;
  border-bottom: 1px solid #333333;
  color: #333333!important;
  text-align: left;
  border-radius: 0;
  margin-bottom: 0px;
  font-size: 12px;
}

.input-group-text{
  border-radius: 0;
  border-top: transparent!important;
  border-left: transparent!important;
  border-right: transparent!important;
  /* border-right: 1px solid #888888; */
  border-bottom: transparent!important;
  padding-left: 10px;
  padding-right: 10px;
  background: transparent!important;
}

.form-border-right{
  border-right: 1px solid #888888;
}

.has-search .form-control:focus{
  outline:0;
  box-shadow:none!important;
  color: #888888!important;
}

.filter-search .form-control:focus, .filter-search .form-check input:focus{
  outline:0;
  box-shadow:none!important;
  color: #000!important;
}

.contact input:focus{
  outline:0;
  box-shadow:none!important;
  color: #000!important;
  border: 1px solid #ced4da;
}

.has-search .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #BDC1BE!important;
  opacity: 1; /* Firefox */
  font-size: 12px;
}

.has-search .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.has-search .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}

.box-title-bedroom, .box-bedroom{
  display: inline-block;
  margin: 10px;
  background: #fff;
  padding: 10px;
  text-align: center;
  color: #000;
  min-width: 46px;
  max-width: 80px;
  height: 38px;
  border-radius: 5px;
  font-size: 12px;
font-family: 'GeneralSans-Medium';
font-weight: 500;
line-height: 140.625%;
}

.box-title-bedroom{
  background: #7FDACD;
}

.btn-black svg{
  transform: rotate(45deg);
}

.villa-detail-title h1{
  color: #000;
font-size: 75px;
font-family: 'GeneralSans-Medium';
font-weight: 500;
line-height: 99%;
text-transform: uppercase;
}
.villa-detail-title p{
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #000000;
  display: inline-block;
  padding-left: 0px;
  margin-bottom: 0;
  font-family: 'GeneralSans-Medium';
}
.villa-detail-title img {
  width: 18px;
  height: auto;
}
.villa-detail-title a.btn-border-black,
.villa-detail a.btn-border-black {
  color: #000;
text-align: center;
font-size: 22.093px;
font-family: 'GeneralSans-Medium';
font-weight: 500;
line-height: 99%;
text-transform: uppercase;
padding-left: 30px;
padding-right: 30px;
padding-top: 7px;
padding-bottom: 9px;
}
.villa-detail a.btn-border-black {
  margin-top: -10px;
}
.villa-detail a.btn-border-black.btn-all-amenities {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
  font-size: 16px;
  padding: 8px 10px;
  text-transform: none;
} 
.villa-detail-title table{
  width: 70%
}
.villa-detail-title td{
  vertical-align: middle;
}
.villa-detail-title td:first-child {
  width: 25px;
}
.villa-detail .detail-room img {
  width: 22px;
  height: auto;
}
.villa-detail .detail-room p {
  text-align: justify;
font-size: 14px;
font-family: 'GeneralSans-Medium';
font-style: normal;
font-weight: 500;
line-height: 211.5%;
margin-bottom: 0px;
display: inline-block;
margin-left: 7px;
}
.villa-image-four{
  padding-left: 5px;
}
.villa-image-four-upper .villa-image-four{
  padding-bottom: 5px;
}
.first-image, .last-image{
  position: relative;
}
.first-image .btn-border-black{
  position: absolute;
  top: 10%;
  left: 5%;
}
.last-image-text{
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 18%;
  color: #fff!important;
  width: 70%;
}
.last-image-text a{
  color: #fff!important;
}
.last-image .content-overlay {
  background: rgba(0,0,0,0.7);
  border-radius: 0px;
  position: absolute;
  height: 100%;
  width: 99%;
  left: 1%;
  top: 0;
  bottom: 0;
  right: 0%;
  opacity: 0.6;
}
.villa-detail .first-image p.btn-border-black {
  color: #000;
text-align: center;
font-size: 24px;
font-family: 'GeneralSans-Medium';
font-weight: 500;
line-height: 99%;
text-decoration-line: underline;
text-transform: uppercase;
padding-top: 7px;
padding-bottom: 9px;
}
.villa-detail .last-image-text h4 {
  color: #FFF;
text-align: center;
font-size: 21px;
font-weight: 500;
line-height: 99%;
font-family: 'GeneralSans-Medium';
}
.villa-detail .first-image img {
  height: 555px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.villa-detail .villa-image-four img {
  height: 275px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.about.villa-detail {
  margin-top: 30px;
}
.about.villa-detail h4 {
  color: #000;
font-size: 28px;
font-family: 'GeneralSans-Medium';
font-weight: 500;
line-height: 99%;
text-transform: uppercase;
}

#allamenities .btn-close {
  opacity: 1 !important;
  margin-left: 0px;
  font-size: 14px;
}
#allamenities .btn-close:focus {
  box-shadow: none !important;
}
#allamenities .modal-header {
  border-bottom: none;
} 
#allamenities .modal-body {
  padding: 10px 20px 20px 20px;
}
#allamenities .modal-body h2 {
  color: #000;
  font-size: 18px;
  font-family: 'GeneralSans-Medium';
  margin-bottom: 18px;
  letter-spacing: 0.8px;
}
#allamenities .modal-body p b {
  font-size: 14px;
  font-family: 'GeneralSans-Medium';
}
#allamenities .modal-body img {
  width: 70px;
  height: auto;
}
#allamenities .modal-body p {
  font-size: 14px;
  font-family: 'GeneralSans-Regular';
  margin-bottom: 0px;
  margin-top: 23px;
}
#allamenities .modal-body hr {
  border-top: 0px;
  margin-top: 9px;
  margin-bottom: 9px;
}

.bg-modal-gallery{
  /* background: transparent!important; */
  background: #000000c2;
  padding: 3%;
}

.gallery-villa{
  margin-bottom: 10px;
}

.gallery-villa-big{
  height: 1000px;
}

.gallery-villa-small{
  height: 500px;
  margin-left: 10px;
}

.gallery-villa-upper{
  margin-bottom: 10px;
  height: 490px;
}

.gallery-villa-right{
  margin-left: 10px;
}

.gallery-villa-left{
  margin-right: 10px;
}

.about h4{
  font-weight: 700;
}

.about-villa h4{
  color: #000;
  font-weight: 700;
}

.about-villa{
  color: #000!important;
}

.about-villa-desc{
  padding: 40px 0 20px 0;
}

.about-villa-desc-separator{
  /* border-right: 1px solid #000; */
  padding-right: 50px;
  max-height: 210px;
  overflow-x: auto;
}

.about-villa-desc-right{
  padding-right: 50px;
  padding-left: 50px;
}

.experience hr, .about hr, .booking-page hr, .services hr, .about-us hr{
  /* border-bottom: 3px solid #000!important; */
  color: #000!important;
  opacity: 1;
}

.about-us hr{
  margin: 0;
  color: #000!important;
  opacity: 1;
}

.experience hr:last-child{
  margin: 1em 0 0 0;
}

.travel hr{
  margin: 1em 0 0 0;
  color: #000!important;
  opacity: 1;
}
.travel h4 b {
  font-weight: 500;
  font-size: 29px;
  line-height: 99%;
  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
}

.contact-page hr, .destination hr{
  color: #000!important;
  opacity: 1;
  margin: 0 0 1em 0;
}

.about-villa-desc td{
  padding: 0 20px 10px 0;
  vertical-align: text-top;
}

.about-villa-desc p{
  margin-bottom: 5px;
  color: #000;
text-align: justify;
font-size: 14px;
font-family: 'GeneralSans-Regular';
font-style: normal;
font-weight: 500;
line-height: 211.5%;
/* max-height: 200px;
overflow-x: auto; */
}
.about-villa-desc a p b {
  font-size: 14px;
font-family: 'GeneralSans-Medium';
text-decoration: underline;
}
.about-villa-desc-right p {
  color: #000;
text-align: justify;
font-size: 14px;
font-family: 'GeneralSans-Medium';
font-style: normal;
font-weight: 600;
line-height: 211.5%;
}
.about-villa-desc-right p b {
  font-family: 'GeneralSans-Semibold';
}
.about-villa-desc-right a,
.about-villa-desc-right a:hover {
  color: #000;
text-align: justify;
font-size: 14px;
font-family: 'GeneralSans-Medium';
font-style: normal;
font-weight: 500;
line-height: 211.5%;
text-decoration-line: underline;
}

.about-villa-desc a{
  color: #000;
  text-decoration: underline!important;
}

.villa-description-facilities {
  text-align: left;
}
.villa-description .facilities{
  height: 120px;
  min-width: 220px;
  max-width: 220px;
  padding: 10px;
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: text-top;
}
.villa-description .facilities .facilities-item{
  max-height: 100px;
}
.villa-description .facilities .facilities-item img {
  width: auto;
  height: 75px;
}
.villa-description .facilities p{ 
  color: #000;
text-align: center;
font-size: 16px;
font-family: 'GeneralSans-Medium';
font-style: normal;
font-weight: 500;
line-height: 99%;
margin-bottom: 7px;
}
.villa-description .facilities p.sub{
  color: #000;
text-align: center;
font-size: 16px;
font-family: 'GeneralSans-Regular';
font-style: normal;
font-weight: 500;
line-height: 99%;
margin-bottom: 0px;
}

.villa-description-location.location p {
  color: #000;
  text-align: justify;
  font-size: 14.983px;
  font-family: 'GeneralSans-Medium';
  font-style: normal;
  font-weight: 500;
  line-height: 211.5%;
  margin-bottom: 0px;
}
.villa-description-location.location p b {
  font-family: 'GeneralSans-Semibold';
}
.villa-description-location.location table tr {
  vertical-align: text-top;
}

.location table{
  width: 100%;
}

.location h4{
  font-weight: 700;
}

.location .left-td{
  width: 90%
}

.location .left-right{
  width: 10%
}

.villa-recomendation h1{
  font-weight: 500;
  font-size: 63px;
  line-height: 99%;
  /* or 62px */
  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
  width: 50%;
}

.villa-recomendation-item .container-image {
  background-position: center;
  background-size: cover;
  height: 190px;
  width:  100%;
  border-radius: 5px;
}

.villa-recomendation-item .content-details-show-new{
  margin-top: -60px;
  padding: 10px;
}
.villa-recomendation-item .content-details-show-new > div{
  background: #FFFFFF;
  padding: 15px;
  border-radius: 6px;
  box-shadow: -2px 3px 5px -2px rgba(0,0,0,0.56);
-webkit-box-shadow: -2px 3px 5px -2px rgba(0,0,0,0.56);
-moz-box-shadow: -2px 3px 5px -2px rgba(0,0,0,0.56);
}
.villa-recomendation-item .content-details-show-new > div h5{
  font-family: "GeneralSans-Medium";
  font-size: 16px;
}
.villa-recomendation-item .content-details-show-new > div p{
  font-size: 14px;
}
.villa-recomendation-item:hover .content-details-show-new > div{
  
}

.content-details-show-2 {
  border-radius: 5px;
}

.contact table{
  width: 100%;
}

.contact th{
  font-weight: 700;
}

.contact td{
  text-align: right;
}

.booking-padding-left{
  padding: 0 20px 0 0;
}

.booking-padding-right{
  padding: 0 0 0 20px;
}

.container-destination{
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 3%;
}

.container-destination h1{
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  text-transform: uppercase;
  font-family: 'GeneralSans-Medium';
}

.container-destination p,
.container-destination b,
.container-destination p strong,
.container-destination h2,
.recommended-blog p,
.recommended-blog b,
.recommended-blog p strong,
.recommended-blog h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 122%;
  font-family: 'GeneralSans-Regular', sans-serif;
}
.container-destination b,
.container-destination p strong,
.container-destination h2,
.recommended-blog b,
.recommended-blog p strong,
.recommended-blog h2 {
  font-family: 'GeneralSans-Medium';
}

.container-destination-title{
  margin-bottom: 70px;
}
.container-destination-image {
  background-repeat: no-repeat;
  background-size: cover;
}

.travel-opening{
  padding-top: 50px;
  padding-bottom: 50px;
}

.travel-opening-left h1{
  font-weight: 500;
  font-size: 68px;
  line-height: 82.12%;
  font-family: 'GeneralSans-Medium';
}

.travel-opening-right{
  text-align: right;
}
.travel-opening-right p {
  font-weight: 500;
  font-size: 16px;
  line-height: 122.62%;
}

.travel-last{
  position: relative;
  text-align: right;
}

.travel-right-upper{
  width: 180px;
  position: absolute;
  right: 5%;
  top: 5%;
  text-transform: uppercase;
  font-weight: 700;
}
.travel-right-upper p {
  font-weight: 500;
  font-size: 17px;
  line-height: 122.62%;
  text-align: right;
  text-transform: uppercase;
  color: #000000;
  font-family: 'GeneralSans-Medium';
}

.travel-right-bottom{
  width: 80%;
  position: absolute;
  right: 5%;
  bottom: 5%;
}

.travel-right-bottom h2{
  font-style: normal;
  font-weight: 500;
  font-size: 103.974px;
  line-height: 91.12%;
  text-align: right;
  font-family: 'GeneralSans-Medium';
}

.travel-packs{
  background-repeat: no-repeat;
  height: 550px;
  position: relative;
  background-size: cover;
  margin-bottom: 70px;
}

.travel-packs-box-left{
  background: #fff;
  border: 1px solid #000;
  height: 270px;
  max-width: 520px;
  position: absolute;
  left: 10%;
  bottom: -5%;
  border-radius: 5px;
  padding: 30px;
}

.travel-packs-box-right{
  background: #fff;
  border: 1px solid #000;
  /* height: 270px; */
  max-width: 520px;
  position: absolute;
  right: 10%;
  bottom: -5%;
  border-radius: 5px;
  padding: 30px;
}

.travel-packs h3{
  font-weight: 500;
  font-size: 58px;
  line-height: 96.62%;
  color: #000000!important;
  margin-bottom: 20px;
  font-family: 'GeneralSans-Medium';
}

.travel-packs p{
  margin-top: 30px;
  /* margin-bottom: 30px; */
  font-weight: 500;
  font-size: 21px;
  line-height: 122.62%;
  font-family: 'GeneralSans-Medium';
  /* width: 90%; */
}
.travel-packs a h4 {
  font-weight: 500;
  font-size: 29px;
  line-height: 99%;
  text-align: center;
  text-transform: uppercase;
  margin: 5px 15px 7px 15px;
  font-family: 'GeneralSans-Medium';
}

.travel-last, .bg-about-home-left{
  min-height: 400px;
}

.about-us .tosca-bg h2{
  text-align: right!important;
  font-size: 90px;
  line-height: 90px;
  font-weight: 500;
}


.about-us-ribbon{
  padding: 20px 0;
}

.mobile-ribbon{
  display: none!important;
}

.dot{
  display: inline-block;
  height: 5px;
  width: 5px;
  background: #000;
  border-radius: 50%;
  margin-top: -5px;
  margin-left: 10px;
  margin-right: 10px;
}

.contact-complete{
  height: 630px;
}

.text-complete{
  text-align: center;
  width: 30%;
}

.text-complete h4{
  font-family: "KeplerStd-LightCnItDisp", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 69.3877px;
  line-height: 99%;
  /* identical to box height, or 69px */

  text-align: center;
}
.text-complete p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 172%;
  /* or 28px */

  text-align: center;
  font-family: "GeneralSans-Medium";
}

#book .bg-modal-tosca {
  padding: 50px 70px;
}
#book .bg-modal-tosca img.btn-close {
  width: 28px;
    height: auto;
    cursor: pointer;
    opacity: 1;
}
#book .bg-modal-tosca h4.uppercase {
  color: #FFF;
font-size: 25.268px;
font-family: "GeneralSans-Medium";
font-style: normal;
font-weight: 500;
line-height: 99%;
text-transform: uppercase;
}
#book .bg-modal-tosca h1 {
  color: #FFF;
font-size: 54.146px;
font-family: "GeneralSans-Medium";
font-style: normal;
font-weight: 500;
line-height: 99%;
text-transform: uppercase;
}
#book .bg-modal-tosca h1 span {
  color: #FFF;
font-size: 15.161px;
font-family: "GeneralSans-Medium";
font-style: normal;
font-weight: 500;
line-height: 99%;
text-transform: uppercase;
}
#book .bg-modal-tosca form h4 {
  color: #FFF;
font-size: 17.327px;
font-family: "GeneralSans-Medium";
font-style: normal;
font-weight: 500;
line-height: 99%;
}

.booking-page h4 {
  color: #000;
  font-size: 30px;
  font-family: "GeneralSans-Medium";
  font-style: normal;
  font-weight: 500;
  line-height: 99%;
  text-transform: uppercase;
  margin-bottom: 0;
}
.booking-page h3 {
  color: #000;
font-size: 25px;
font-family: "GeneralSans-Medium";
font-style: normal;
font-weight: 500;
line-height: 99%;
text-transform: uppercase;
margin-bottom: 0;
}
.booking-page h3 b {
  font-family: "GeneralSans-Semibold";
}
.booking-page label.form-label {
  color: #000;
  text-align: justify;
  font-size: 15px;
  font-family: "GeneralSans-Semibold";
  font-style: normal;
  font-weight: 600;
  line-height: 211.5%;
}
.booking-page p {
  color: #000;
  font-size: 15px;
  font-family: "GeneralSans-Medium";
  font-style: normal;
  font-weight: 500;
  line-height: 172%;
}
.booking-page p a {
  text-decoration: underline !important;
}
.booking-page .btn-border-black {
  color: #000;
  text-align: center;
  font-size: 14.809px;
  font-family: "GeneralSans-Medium";
  font-style: normal;
  font-weight: 600;
  line-height: 211.5%;
  padding-top: 5px;
  padding-bottom: 6px;
}
.booking-page .contact {
  padding-bottom: 30px;
}
.booking-page .order-summary img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.booking-page .order-summary table th {
  color: #000;
  text-align: left;
  font-size: 15px;
  font-family: "GeneralSans-Semibold";
  font-style: normal;
  font-weight: 600;
  line-height: 211.5%;
}
.booking-page .order-summary table td {
  color: #000;
  font-size: 15px;
  font-family: "GeneralSans-Medium";
  font-style: normal;
  font-weight: 600;
  line-height: 211.5%;
  text-align: right;
}
.booking-page .form-control {
  font-family: "GeneralSans-Medium";
  font-size: 13px;
}

.store-location{
  background: #189283;
  padding: 0;
  padding-top: 20px;
  margin: 0;
  /* border-bottom: 1px solid #FFFFFF; */
}
.store-location > div:first-child{
  padding: 0;
}
.store-location > div:last-child{
  padding: 0;
}
.store-location > div:last-child iframe{
  border-radius: 10px;
}
.store-location .store-image{
  width: 100%;
  border-radius: 10px;
  height: 374px;
  object-fit: cover;
  object-position: top center;
}

.sup-container img{
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

 @media (max-width: 1198px) {

   .nav-pills{
     font-size: 0.7125rem;
   }

   .nav-link {
    padding: .5rem .5rem;
    }

    .border-black-box{
      height: 100px;
      width: 100px;
      margin-bottom: 20px;
    }

    .destinations .colx {
      width: 33.3%;
    }
    .has-search-button button {
        margin-left: 15px!important;
    }
    .about-home-left-upper,
    .about-home-left-bottom {
      left: 0;
    }
 }

  @media (max-width: 990px) {
    .pull-work-tab{
      margin-top: -100px;
    }

    .pull-work2{
      margin-top: -100px;;
    }

    .nav-pills{
      font-size: 0.6125rem;
    }

    .nav-link {
     padding: .5rem .3rem;
     }

     .border-black-box{
       height: 100px;
       width: 100px;
       margin-bottom: 20px;
     }
     .destinations .colx {
      width: 33.3%;
     }
     .has-search-button button {
        margin-left: 10px!important;
    }
    .container-destination {
      padding: 0px;
    }
  }

 @media (max-width: 768px) {
    .hide-mobile {
      display: none;
    }

    header{
      height: 60px !important;
    }
    .navbar-brand img{
        height: 30px !important;
    }

    .sup-container img{
      width: 100%;
    }

    .btn-border-white {
      font-size: 13px;
    }

    .villa-list-box .modal {
      width: 100%;
    }

    .featurette-divider {
      height: 30px !important;
    }
    
    .animated-icon2 {
      height: 1px;
      width: 30px !important;
      margin-top: -2px !important;
    }

    .search-form-bg {
      border-radius: 8px;
    }
    .search-form h4 {
      margin-bottom: 20px;
    }
    .search-form .has-search .form-border-right {
      margin-top: 10px;
      margin-bottom: 10px;
      border-bottom: 1px solid #eaeceb;
    }
    .search-form .has-search-button {
      width: 100%;
      text-align: center;
    }
    .search-form .has-search-button button {
      margin: 0 !important;
      width: 100%;
    }
    .search-form .has-search-button p {
      margin-bottom: 15px;
      margin-top: 10px;
      color: #545454 !important;
      font-size: 13px;
    }
    .search-form .has-search-button .btn-border-black {
      border: 1px solid #545454;
      border-radius: 8px;
      text-decoration: none !important;
    }

    .carousel-item {
      /* height: 550px !important; */
    }

    .about-home-left-upper,
    .about-home-left-bottom {
      width: 100%;
      position: relative;
      left: 0;
      top: 0;
      padding: 0 20px;
    }
    .about-home-left-upper i {
      display: none;
    }
    .bg-about-home-left {
      min-height: 180px;
    }

    .ves .content .content-details a {
      font-size: 16px;
    }

    .destinations .content-details {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }
    .destinations .content-details .btn-border-white {
      padding: 5px 15px !important;
    }

    .tosca-bg.home .tosca-left {
      padding: 0px 20px;
      text-align: center;
    }
    .tosca-bg.home .tosca-right {
      padding: 0px 20px;
      text-align: center;
    }

    .img-bg {
      margin-top: 0px;
    }

   .big-title h1{
     font-size: 50px;
   }

   .big-title{
     margin-top: 100px;
     margin-bottom: 50px;
   }
   .trusted-row{
     margin-left: 0px!important;
     margin-right: 0px!important;
   }

   .navbar-nav .nav-link, .dropdown-item {
      border-radius: 0;
    }

    .dropdown-menu{
      border: none;
      padding-left: 20px;
    }

   .nav-pills{
     font-size: 0.9125rem;
   }

    .bg-transparent, .bg-white{
      height:60px;
      padding-top: 0px!important;
      opacity: 1;
    }

     .mb-3 {
         margin-bottom: 0!important;
     }

     .navbar{
       color: #000!important;
       padding-left: 20px;
       padding-right: 50px;
     }

     .navbar-collapse{
       margin-top: 0px;
       margin-right: -1px;
     }

     .menu .container{
       max-width: 100%;
     }

     .animated-icon2, .navbar-toggler{
       display: flex !important;
     }

     .navbar-toggler{
       position: fixed;
       float: right;
       right: 20px;
       top: 15px;
     }

     .navbar-toggler .open{
       position: fixed;
       float: right;
       right: 30px;
       top: 20px;
     }

     .animated-icon2{
       height: 1px;
       width: 25px;
     }

     .animated-icon2 span{
       height: 2px;
       padding: 0px!important;
     }

     .animated-icon2 span:nth-child(1){
       top: 3px;
     }

     .nav-pills .link-light, .nav-pills .nav-link.active,  .nav-pills .link-dark, .bg-white .nav-pills .nav-link.active{
         color: #fff!important;
         width: 100%;
         text-align: left;
     }

     .navbar-light .navbar-nav .nav-link {
       color: #fff!important;
       font-size: 20px;
      line-height: 50px;
     }

     .nav-pills{
         display: block;
     }

     .nav-pills .nav-link.active:after{
         width: 0;
         left: 0
     }

     .footer-bottom, .footer-bottom-end{
       text-align: center;
     }

     .footer-bottom-end{
       padding-top: 20px;
     }

     .social-media{
       float: none;
       margin-bottom: 20px;
     }

     .has-search-button{
       display: block!important;
     }

     .form-border-right{
       border-right: transparent;
     }

     .bg-about-home{
       height: 400px;
       display: none;
     }

     .destinations .colx{
       width: 50%;
     }

    .destinations h4{
      font-size: 14px;
    }

    .ig-img{
      margin-bottom: 20px;
    }

    .second-banner-villas {
      display: none;
    }
    .second-banner-travel{
      height: 600px;
    }

    .villa-list-box{
      padding-right: 0;
    }

    .villa-list {
      height: auto;
      padding: 10px 20px;
/*      overflow: hidden;*/
    }

    .villa-list-item{
      padding-left: 20px;
      padding-right: 20px;
    }
    .villa-item-left{
      padding-right: 0;
    }

    .villa-item-right{
      padding-left: 0;
    }

    .box-title-bedroom, .box-bedroom{
      /* display: block; */
    }

    .villa-list-box .modal, .modal-backdrop {
        overflow: auto !important;
        max-height: 700px;
    }

    .bg-modal-tosca-filter .btn-close{
      top: 0;
      right: 0;
    }

    .gallery-villa-big{
      height: 500px;
    }

    .gallery-villa-small{
      height: 250px;
    }

    .gallery-villa-upper{
      height: 240px;
    }

    .about-villa-desc-separator{
      border-right: transparent;
      padding-right: 10px;
    }

    .villa-detail-title h1 {
      margin-top: 50px;
    }
    .last-image-text {
      padding: 0px;
      width: 100%;
      left: 0;
      top: auto;
      bottom: 50px;
    }
    .about-villa-desc-right {
      padding: 10px;
    }
    .about.villa-detail h4 {
      font-size: 18px;
    }

    .villa-detail-title h1, .villa-recomendation h1{
      font-size: 35px;
    }
    .villa-detail-title table{
      width: 100%
    }
    .villa-detail-title table td {
      vertical-align: top;
    }
    .villa-detail-title table td:first-child {
      width: 22px;
    }
    .villa-detail-title table td img {
      width: 16px;
      height: auto;
      margin-top: -7px;
    }
    .villa-detail.bottom h4 {
      font-size: 30px!important;
      margin-bottom: 40px !important;
    }
    .villa-recomendation h1 {
      width: 100%;
    }

    .booking-page i.fa-circle {
      display: none;
    }
    .booking-page h4,
    .booking-page h3 {
      margin-top: 20px;
      font-size: 28px;
    }

    #display-payment-processing p {
      font-size: 16px;
    }

    .experience-banner{
      padding-top: 20%;
    }

    .bg-experience-title{
      padding: 50px;
    }

    .bg-experience-title h1{
      font-size: 30px;
    }

    .bg-experience-down-arrow{
      display: inline-block;
    }

    .experience-banner-list{
      /* width: 160px; */
      margin-bottom: 5px;
      font-size: 14px;
    }

    .experience-banner h4{
      font-size: 20px;
    }

    .experience-banner h1{
      font-size: 35px;
    }
    .bg-experience-desc {
      padding: 20px;
    }

    .experience-menu{
      min-width: 300px;
      padding: 5px
    }

    .pull-header{
      height: 60px;
    }

    .bg-contact{
      height: 200px;
    }
    .contact{
      padding: 20px 10px;
    }
    .contact h1{
      font-size: 40px;
    }

    .booking-padding-left{
      padding: 0 0 0 0;
    }

    .booking-padding-right{
      padding: 0 0 0 0;
    }

    .order-summary{
      border-left: transparent;
    }

    .other-page h1{
      font-size: 35px;
    }

    .other-page h4{
      font-size: 25px;
    }

    .all-in-one h1, .contact-footer h1{
      font-size: 35px;
      line-height: 99%;
      margin-bottom: 20px;
    }

    .border-black-box{
      height: 100px;
      width: 100px;
      margin-bottom: 20px;
    }

    .allinone-content{
      padding-right: 10px;
    }

    .round-all-in-one{
      top: 34%;
      left: 38%;
    }

    .bg-allinone-caption{
      width: 50%;
    }

    .bg-allinone, .bg-allinone2{
      height: 250px;
    }

    .bg-services{
      height: 200px;
      margin: 20px 0;
    }

    .services h2{
      margin-top: 20px;
    }
    .services .content h4 {
      font-size: 22px;
    }
    .services p {
      font-size: 14px;
    }
    .services .content .content-details a {
      font-size: 14px;
    }

    .services .container-image{
      margin-bottom: 20px;
    }

    .container-destination{
      /* padding: 30px 15px 15px 15px; */
    }

    .container-destination-title{
      margin-bottom: 50px;
    }

    .container-destination h1{
      font-size: 30px;
      line-height: 100%;
      text-transform: uppercase;
    }

    .travel-packs{
      background-position: center;
      height: 400px;
    }

    .travel-packs-box-left{
      height: auto;
      max-width: 300px;
      left: 2%;
      bottom: -5%;
      padding: 20px;
    }

    .travel-packs-box-right{
      height: auto;
      max-width: 300px;
      right: 2%;
      bottom: -5%;
      padding: 20px;
    }

    .travel-packs h3{
      font-size: 24px;
    }
    .travel-packs p {
      font-size: 16px;
    }
    .travel-packs a h4 {
      font-size: 16px;
    }
    .travel-last {
      display: none;
    }

    .about-us-ribbon{
      padding-left: 10px;
    }

    .mobile-ribbon{
      display: flex!important;
    }

    .desktop-ribbon{
      display: none!important;
    }

    .about-us-ribbon h4{
      font-size: 16px;
    }

    .about-us-bg{
      height: 400px;
      margin-bottom: 40px;
      display: none !important;
    }

    .about-us-bg h4{
      width: 70%;
      font-size: 40px;
    }

    .about-us-bg2 h4{
      font-size: 40px;
      margin-bottom: 20px;
    }

    .about-us .tosca-bg h1 {
      font-size: 35px;
      margin-top: 20px;
    }
    .about-us .tosca-bg p {
      text-align: center;
    }

    .our-team h4 {
      font-size: 18px;
    }

    .container-about-us{
      padding: 10% 10px 0 10px;
    }

    .about-us-upper {
      margin-bottom: 20px;
    }

    .about-us-upper h2{
      font-size: 50px!important;
    }

    .about-us-left-upper i {
      display: none;
    }
    .about-us-left-upper p {
      text-align: left;
    }

    .contact-complete{
      height: 400px;
    }

    .text-complete{
      text-align: center;
      width: 90%;
    }

    .text-complete h4{
      font-size: 50px;
    }

    .about-us .tosca-bg h2{
      line-height: normal;
    }

    .villa-description-facilities {
      text-align: center;
    }

    .travel-opening {
      padding: 30px 0;
    }
    .travel-opening-left h1 {
      font-size: 35px;
      margin-bottom: 20px;
    }
    .travel-opening-right p {
      text-align: left;
    }

    .experience.for-list h4 {
      font-size: 26px;
      margin-bottom: 15px;
    }
    .experience.for-list img {
      height: 300px;
    }

    .other-page h1, 
    .about-us h1,
    .allinone-content h4,
    .bg-allinone-caption h4,
    .services h1,
    .services h3,
    .tosca-bg .services h1,
    .services-list h5 {
      font-size: 35px;
      margin-bottom: 0px;
    }

    .other-page.bottom h2,
    .services.bottom h1,
    .services-list h5 {
      margin-bottom: 20px;
    }
    .other-page.bottom div,
    .all-in-one.bottom div,
    .services.bottom div,
    .villa-detail.bottom div,
    .other-page.bottom .justify-content-end {
      text-align: center;
      justify-content: center !important;
    }

    footer p.copyright {
      margin-bottom: 20px;
      /* font-size: 12px; */
      margin-top: 20px;
    }

    .container.bg-about-home-container{
      max-width: 100%;
    }
    .experience-interested,
    .experience-interested .right {
      text-align: center;
    }

    .services .bg-services-detail {
      height: 100% !important;
    }
    .services .bg-services-detail .carousel-item {
      height: 100% !important;
    }
 }

.float-wa {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float-wa .my-float {
  margin-top: 16px;
}
.float-wa:hover .my-float,
.float-wa .my-float:hover{
  color: #FFFFFF !important;
}

 @media (min-width: 768px) and (max-width: 768px) {
  .navbar-expand-md .navbar-collapse {
    display: none !important;
  }
  .navbar-expand-md .navbar-collapse.show {
    display: block !important;
  }
  .bg-about-home {
    margin-bottom: 40px;
  }
  .about-home-left-upper .col-md-1{
    width: 0px;
    padding: 0px;
  }
 }
