@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}

body {
    font-family: "DM Sans", sans-serif;
}



.header_all {
    display: flex;
    justify-content: space-between;
    background-color: rgb(240, 197, 65);
    padding: 0 7%;
    padding-block: 5px;
}

.motto span {
    color: rgb(240, 197, 65);
    padding-right: 15px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
}

.motto p {
    color: #fff;
}

.navbar_all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 454;
    padding-block: 5px;
    width: 100%;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.logo {
    height: 75px;
    width: 150px;
    background-image: url(../images/logo.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.nav_links a {
    padding: 15px;
    color: #000;
}

.nav_links a:hover {
    color: rgb(240, 197, 65);
}

.mobile a {
    color: #000;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(240, 197, 65);
    min-width: 200px;
    z-index: 701;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;

}

.social_media a {
    padding: 10px;
    height: 30px;
    width: 30px;
    font-size: 20px;
    background-color: rgb(240, 197, 65);
    color: #fff;
}


.whatsapp_box {
    z-index: 888;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    right: 30px;
    position: fixed;
    bottom: 20px;
    background-color: #2a4047;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.whatsapp_box a {
    color: #fff;
}

#toggleButton {
    display: none;
    background-color: rgb(240, 197, 65);
}

.mobile {
    display: none;
}




.about_bg {
    height: 400px;
    background-color: rgb(240, 197, 65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about_bg h3 {
    color: #2a4047;
    text-transform: uppercase;
}

.about_bg h1 {
    color: #fff;
    font-size: 50px;
}

@media only screen and (max-width: 1110px) {
    footer {
        display: flex;
        flex-direction: column;
        padding-block: 20px;
    }

    .copyright {
        margin-top: 20px;
        text-align: center;
    }

    .header_all {
        display: flex;
        justify-content: space-between;
    }




    #toggleButton {
        display: block;
        background-color: rgb(240, 197, 65);
        background-color: transparent;
        border: none;
        padding: 15px;
        color: #fff;
      
    }

    #toggleButton i{
        font-weight: 900;
        font-size: 20px;
        color: rgb(240, 197, 65);
    }

    .nav_links {
        display: none;
    }

    .mobile {
        position: absolute;
        top: 90px;
        z-index: 4554;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        display: none;
    }

    .mobile a {
        border-top: 2px solid #534f4f2a;
        width: 100%;
        padding: 0 10%;
        padding-block: 20px;
    }


    .dropdown {
        border-top: 2px solid #534f4f2a;
        width: 100%;
        padding-block: 20px;
    }

    .dropdown-content {
        margin-left: 10%;
    }

    .dropdown-content a:hover{
        color: rgb(240, 197, 65);
    }

    .whatsapp_box a {
        color: #fff;
    }




}