.hero {
    height: 100dvh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.enquire-now-btn {
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
}

.enquire-now-btn:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #ffd401;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.enquire-now-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.enquire-now-btn span {
    width: 100%;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 0.2em;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.enquire-now-btn:hover span {
    color: #183153;
    animation: scaleUp 0.3s ease-in-out;
}

@media only screen and (max-width:768px) {
    .enquire-now-btn {
        font-size: small;
        box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}


.stats {
    background-image: url(../images/02.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stats p {
    font-family: 'GlacialBlod', sans-serif;
}

.amenities p {
    color: var(--primary);
}

.amenities img {
    filter: invert(1);
}

.amenities .col {
    cursor: pointer;
}

.amenities .col:hover {
    transition: 0.3s ease-in-out !important;
    transform: translateY(-5%);
    scale: 1.02;
}


/* contact us form styling */

.input {
    border: 2px solid transparent;
    width: 15em;
    height: 2.5em;
    padding-left: 0.8em;
    outline: none;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 8px;
    transition: all 0.5s;
    border: 2px solid var(--primary);
}

.input:hover,
.input:focus {
    border: 2px solid var(--primary);
    box-shadow: 0 0px 0px 5px rgba(250, 178, 59, 0.4);
    background-color: white;
}

.location-min-heading {
    font-family: 'GlacialBlod', sans-serif;
}