.hero {
    height: 50vh;
    background-image: url(../images/01.webp);
    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);
    }
}

.detail-card {
    cursor: default;
    transition: 0.3s ease-in-out;
}

.detail-card:hover {
    transform: translateY(-5%);
}

/* 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;
}

.match-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.responsive-iframe {
    flex-grow: 1;
    width: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .responsive-iframe {
        height: 400px !important;
    }
}