.hero-section {
    padding: 216px 0 100px;
}

.hero-subtitle {
    font-family: "Parkinsans", sans-serif;
    color: var(--green-color);
}

.hero-text {
    margin-top: 40px;
}

.hero-section .row {
    align-items: center;
}

.hours-info-wrapper {
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 30px;
}

.hours-wrapper {
    padding: 50px 70px;
    border: 4px solid transparent;
    border-radius: 40px;
    margin: 60px auto 0;
    background: linear-gradient(rgba(240, 249, 253, 1), rgba(240, 249, 253, 1)) padding-box,
    linear-gradient(
            270deg,
            rgba(0, 167, 157, 1),
            rgba(228, 238, 113, 1) 50%,
            rgba(242, 56, 254, 1) 100%
    ) border-box;
    max-width: 485px;
    width: 100%;
}

.hours-wrapper .heading p {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hours .green-gradient-btn {
    margin-top: 30px;
}

.map-container {
    max-width: calc(100% - 40px);
    margin-inline: auto;
}

.map-container iframe {
    width: 100%;
    border: 1px solid rgba(17, 43, 77, 0.2);
    border-radius: 20px;
}

.faqs-section {
    padding-top: 40px;
}

@media(max-width: 991px) {
    .hero-section .row .col-lg-6:first-of-type {
        text-align: center;
    }

    .hero-section {
        padding: 150px 0 70px;
    }
}

@media(max-width: 768px) {
    .map-container {
        max-width: 100%;
    }

    .map-container iframe {
        border-radius: 0;
    }
}

@media(max-width: 575px) {
    .hero-section {
        padding: 100px 0 30px;
    }

    .hero-text {
        margin-top: 20px;
    }

    .hours-wrapper {
        padding: 30px;
        margin-top: 30px;
        max-width: 250px;
        text-align: center;
    }

    .hours-info-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }

    .hours-wrapper .heading p {
        justify-content: center;
    }

    .faqs-section {
        padding-top: 0;
    }
}