/* Service Box Section Start */
.service-box-outer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 35px;
    margin-top: 40px;
}
.service-box-outer .service-box{
    display: flex;
    flex-direction: column;
}
.service-box-outer .service-box .service-title{
    color: var(--content-color);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-top: 9px;
    flex-grow: 1;
}
.service-box-outer .service-box .service-desc{
    color: var(--content-color);
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    margin-top: 10px;
    flex-grow: 1;
}

@media only screen and (max-width: 991px) {
    .service-box-outer{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media only screen and (max-width: 556px) {
    .service-box-outer{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-box-outer .service-box{
        align-items: center;
    }
    .service-box-outer .service-box .service-desc{
        text-align: center;
    }
}
/* Service Box Section Ends */

/* Locations Section Starts */
.locations-outer{
    background-color: rgba(245, 239, 231, 0.70);
    padding: 60px 0;
}
.locations-outer .header-desc-outer1{
    margin-top: 0;
}
/* .locations-outer .locations-section-slider{
    margin-right: -20%;
} */
.locations-outer .locations-section-slider .slider-box{
    margin-right: 20px;
    height: 500px;
}
.locations-outer .locations-section-slider .slider-box .location-image{
    cursor: pointer;
}
.locations-outer .locations-section-slider .slider-box .location-image .location-image-title{
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    bottom: 30px;
    left: 40px;
}
.locations-outer .locations-section-slider .slider-box .location-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.locations-outer .locations-section-slider .slider-box .location-image .location-hover-text-wrapper{
    border-radius: 20px;
    background: #F89B1D;
    padding: 40px 35px;
    height: 100%;
    overflow-y: auto;
}
.locations-outer .locations-section-slider .slider-box .location-image .location-hover-text-wrapper .title{
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}
.locations-outer .locations-section-slider .slider-box .location-image .location-hover-text-wrapper .description{
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
    padding-top: 25px;
}
@media (min-width: 1921px) {
    .locations-outer .locations-section-slider{
        margin-right: -40%;
    }
}

@media only screen and (max-width: 991px) {
    .locations-outer{
        padding: 40px 0;
    }
}
@media only screen and (max-width: 767px) {
    .locations-outer .locations-section-slider .slider-box .location-image .location-hover-text-wrapper{
        padding: 20px;
    }
	.locations-outer .locations-section-slider .slider-box .location-image .location-image-title{
		bottom: 20px;
		left: 20px;
	}
    .locations-outer .locations-section-slider .slider-box .location-image .location-hover-text-wrapper .title{
        font-size: 18px;
    }
    .locations-outer .locations-section-slider .slider-box .location-image .location-hover-text-wrapper .description{
        font-size: 16px;
        line-height: 26px;
        padding-top: 15px;
    }
	.locations-outer .locations-section-slider .slider-box{
		height: 350px;
	}
}
/* Locations Section Ends */

/* Booking Section Starts */
.booking-outer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
}
.booking-outer .booking-desc-outer .booking-desc{
    margin-top: 15px;
}

@media only screen and (max-width: 991px) {
    .booking-outer{
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Booking Section Ends */



  /* .flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
  } */
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
  }
  
  .flip-card:focus {
      outline: 0;
  }
  
 @media (hover: hover) {

    .flip-card:hover .flip-card-inner,
    .flip-card:focus .flip-card-inner {
        transform: rotateY(180deg);
    }

}
  
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .flip-card-front {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .flip-card-back {
    transform: rotateY(180deg);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media (hover: none) {

    .flip-card:hover .flip-card-front,
    .flip-card:focus .flip-card-front {
        display: none;
    }

    .flip-card-back {
        transform: rotateY(0deg);
    }

}