@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Sora", serif;

}

body {
    font-family: "Sora", serif;
/* background-color:#f2f4f8 ; */
color: #706e6e;

}

.header_all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #008037;
    padding: 0 7%;
    padding-block: 10px;
}

.motto span {
    color: #008037;
    padding-right: 15px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
}

.motto p {
    color: #fff;
    font-family: "Sora", sans-serif;
   
}

.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: 95px;
    width: 200px;
    background-image: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

.nav_links a {
    padding: 15px;
    color: #000;
    /* text-transform: uppercase; */
}

.nav_links a:hover {
    color: #008037;
}

.mobile a {
    color: #000;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #008037;
    min-width: 250px;
    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{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social_media a {
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    font-size: 20px;
    background-color: #008037;
    color: #fff;
}



#toggleButton {
    display: none;
    background-color: #008037;
}

.mobile {
    display: none;
}

.forms {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.forms input {
    height: 44px;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding-left: 3%;
}
.forms select{
    height: 44px;
    height: 44px;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.forms input:focus{
    outline: none;
}

.forms select:focus{
    outline: none;
}
.forms button {
    height: 44px;
    width: 100%;
    border: none;
    background-color: #008037;
    color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

footer{
    margin-top: 50px;
    background-color: #008037;
    padding-block: 30px;
    color: #fff;
    text-align: center;
}

a{
    color: #000;
}

.whatsapp_link {
    position: fixed;
    bottom: 30px;
    z-index: 900;
    display: flex;
    align-items: center;
  
    right: 30px;
  }
  .whatsapp_link p {
    background-color: #fff;
    padding: 3px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 30px;
  
  }
  .fa-whatsapp {
    color: #fff;
    background-color: green;
    font-size: 40px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 10px;
  }
  
  .whatsapp_link a {
    display: flex;
    justify-content: center;
  }
@media only screen and (max-width: 1110px) {
    #toggleButton {
        display: block;
        background-color: #268203;
        background-color: transparent;
        border: none;
        padding: 15px;
        color: #fff;

    }

    #toggleButton i {
        font-weight: 900;
        font-size: 20px;
        color: #268203;
    }

    .nav_links {
        display: none;
    }

    .mobile {
        position: absolute;
        top: 106px;
        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: #268203;
    }

  
}