/* ******************* */
/* **** FLIP CARD **** */
/* ******************* */

.flip-card {
    background-color: transparent;
    width: 320px;
    height: 280px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;

}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #F1F1F1;
    color: black;
}

.flip-card-back {
    transform: rotateY(180deg);
}




/* ***************************** */
/* **** OUR SERVICE SECTION **** */
/* ***************************** */

.our-services-title {
    font-weight: 600;
    line-height: 80px;
}

.our-service-front-img {
    width: 30%;
    height: auto;
}


/* ************************** */
/* **** ABOUT US SECTION **** */
/* ************************** */

.about-img {
    position: absolute;
    left: 0;
    transform: translate(20px, -80px) !important;
    max-width: 100% !important;
}

.about-title {
    font-weight: 600;
    line-height: 80px;
}

.about-text {
    text-align: justify;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .about-img {
        position: relative;
        transform: none !important;
        max-width: 50% !important;
    }
}


/* ***************************** */
/* **** DESTIATIONS SECTION **** */
/* ***************************** */
.destination-box:hover {
    background-color: var(--sc-brand-blue-strong-primary) !important;
}

.destination-blue {
    background-color: var(--sc-brand-blue-strong-primary);
}

.destination-orange {
    background-color: var(--sc-brand-orange-primary);
}

.destination-cover {
    width: 100%;
    height: auto;
}

.destiation-btn-width {
    min-width: 100px;
}

.book-btn-width {
    min-width: 120px;
}



.form-floating .autoComplete_wrapper {
    width: 100%;
    display: block;
}

.form-floating .autoComplete_wrapper ul {
    z-index: 999;
    padding-top: 16px;
    min-width: 350px;
}

.form-floating .autoComplete_wrapper ul p {
    color: #333;
}

.form-floating .autoComplete_wrapper input {
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
    height: calc(3.5rem + calc(var(--bs-border-width) * 2)) !important;
    min-height: calc(3.5rem + calc(var(--bs-border-width) * 2)) !important;
    line-height: 1.25 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    background-position: right 0.75rem bottom 1rem !important;
    padding-left: 0.75rem;
}


.form-floating .autoComplete_wrapper+label {
    color: rgba(var(--bs-body-color-rgb), 0.65);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating .autoComplete_wrapper+label::after {
    position: absolute;
    inset: 1rem 0.375rem;
    z-index: -1;
    height: 1.5em;
    content: "";
    border-radius: var(--bs-border-radius);
}

.top-booking .form-floating select,
.top-booking .form-floating input {
    border-radius: 8px !important;
}