.hamburger {
    display: none;
    cursor: pointer;
}

.hide {
    display: none;
}



.hero_section {
    background-image: url(../images/contactbanner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 0px 70px 0px;
    height: 36vh;
    position: relative;
    z-index: 2;
}
.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 69%);
    z-index: -1; /* Ensure the overlay is on top */
}
.hero_section .hero {
    height: 40vh;
}


h2 {
    font-size: 60px;
}

h3 {
    font-size: 36px;
}

.accordion{
    margin: 100px 0px;
}

.accordion-button {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 0.25rem;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    background-color: #000;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #000000;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-body {
    padding: 1rem 1.25rem;
    background-color: #000;
    color: #fff;
}







@media screen and (min-width: 768px) and (max-width: 1023px) {


    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }

    header .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px 10px 0px
    }

    .nav-links.active {
        display: flex;
        gap: 10px;
    }

    .hero_section {
        height: 30vh;
    }

    .hero_section .hero {
        height: 30vh;
    }


    h2 {
        font-size: 46px;
    }

    h3 {
        font-size: 36px;
    }


}


@media screen and (max-width: 767px) {

    .accordion-button {
        font-size: 16px !important;
        line-height: 24px;
        text-align: left;
    }
    h2.accordion-header {
        font-family: "Montserrat", sans-serif;
        text-align: left;
       
    }
    .hero_section h1 {
        font-size: 30px;
        padding-top: 75px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }



    .hero_section {
        height: 30vh;
    }

    .hero_section .hero {
        height: 30vh;
    }



    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 26px;
    }

}