
.hero-section {
    /* object-fit: cover; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.hero-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    /* object-position:  -45em; */
    position: relative;
    z-index: -1;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 30em;
    margin-top: -10em;
    padding: 2em;
    justify-content: space-evenly;
}

.hero-headings {
    font-family: 'Bagel Fat One';
    color: #FF9DEA;
    font-size: 3.8rem;
    line-height: 5rem;
}

.hero-contact-us-button {
    display: flex;
    font-family: 'Afacad Flux';
    width: 7em;
    height: 2em;
    background-color: #D63D3D;
    font-size: 1.5rem;
    border: none;
    border-radius: 2em;
    text-decoration: none;
    color: white;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.19);
}

.hero-down-arrow {
    position: absolute;
    top: 80%;
    height: 4em;
    width: 4em;
    opacity: 0;
    margin-top: 3.5em;
    animation-name: pulsating;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.dropdown-link {
    text-decoration: none;
}

@keyframes pulsating {
    10% { opacity: 0;}
    20% { opacity: 0.5;}
}


@media only screen and (min-width: 1200px) { 
    .hero-wrapper {
        width: 80%;
        height: 30em;
        padding: 2em;
    }    
   
   .hero-headings {
        font-size: 6rem;
        line-height: 5rem;
        padding-left: 1em;
    }

    .hero-contact-us-button {
        margin-left: 4em;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-headings {
        font-size: 5.5rem;
        line-height: 4.5rem;
        padding-left: 1.2em;
    }

    .hero-contact-us-button {
        margin-left: 4.5em;
        margin-top: -1em;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .hero-headings {
        font-size: 5rem;
        line-height: 4rem;
        padding-left: 1em;
    }

    .hero-contact-us-button {
        margin-left: 3.5em;
        margin-top: -1em;
    }
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
    .hero-headings {
        font-size: 4rem;
        line-height: 3.5rem;
        padding-left: 0.5em;
    }

    .hero-contact-us-button {
        margin-left: 1.5em;
        margin-top: -1.5em;
    }
}

@media only screen and (max-width: 600px) {
    .hero-wrapper {
        margin-left: -1em;
    }

    .hero-headings {
        font-size: 4rem;
        line-height: 3.5rem;
   }

    .hero-contact-us-button {
        font-size: 1.5rem;
        margin-top: -2em;
    }
}