


*{
    margin: 0;
    padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  scroll-behavior: smooth;
}

body{
    background-color: white;
}

body.dark-mode{
    background-color: #222;
}



.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(images/interface.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    
}

li{
  list-style: none;
}


.links-to{
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 13px;
}

.links-to:hover{
  color: #00da57;
}

header{
  position: relative;
  padding: 0 2rem;

}

.navbar a{
  text-decoration: none;
  color: rgb(255, 255, 255);

}

.navbar{
  width: 100%;
  height: 60px;
  max-width: 1200px;
  margin: 0 aqua;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.navbar .logo{
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.navbar .links{

  display: flex;
  gap: 2rem;

}

.navbar .toggle_btn{
  color: white;
  font-size: 1.5rem;
  display: none;
  cursor: pointer;
}

.darkmode{
  background-color: #00da57;
color: #fff;
  padding: 10px;
  border-radius: 30px;
text-decoration: none;
  font-size: 1rem;

transition: 0.5s;

}

.darkmode:hover{
  scale: 1.1;
}


.dropdown_menu{
  position: absolute;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  background-color: #00da57;
border-radius: 10px;
overflow: hidden;
transition: height 0.2s;
z-index: 2;
}


.dropdown_menu li{
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.dropdown_menu .darkmode{
  width: 100%;
  display: flex;
  justify-content: center;
}

.dropdown_menu.open{
  height: 340px;
}


@media(max-width:990px){

.navbar .links,
.navbar .darkmode{


  display: none;
}

.navbar .toggle_btn{
  display: block;
}


.dropdown_menu{
  display: block;

}

}

@media(max-width:580px){

.dropdown_menu{
  left: 2rem;
  width: unset;
}



.darkmode{
    background-color: white;
    color: black;
}

}












strong{
    color: white;
    font-size: 30px;
    font-weight: 500;

}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 40%;
    right: 5%;
    padding: 30px;
}

.hero-btn{
    width: 10%;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 15px;
    font-size: 15px;
    position: relative;
    background-color: #00da57;
    border-radius: 15px;
    transition: 0.5s;
}
.hero-btn:hover{
    background-color: #bef6d4;
    font-size: 16px;
    padding: 17px;
}

.hero-btn2{
        width: 10%;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 14px;
    font-size: 15px;
    position: relative;
    background-color: transparent;
    border: 1.5px solid white;
    border-radius: 15px;
    transition: 0.5s;
}

.hero-btn2:hover{
    background-color: #bef6d4;
    font-size: 16px;
    padding: 17px;
}

nav #menu {
    display: none;
}

@media(max-width: 700px){

.text-box h1 {
    font-size: 25px;
}
.nav-links ul li {
display: block;
   
}
.nav-links{
    position: absolute;
    background: #00da57;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
transition: 1s;
}
nav #menu{
    display: block;
    color: white;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
}
.nav-links ul {
    padding: 30px;
}
.text-box{
    text-align: center;
    align-items: center;
    left: 3%;
}

#mode{
    margin-top: 0px;
}

}

.wrraper{
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin: 100px 50px auto;
    flex-wrap: wrap;
    flex-direction: row;
    

}

.box{
    background-color: white;
    width: 17.55em;
height: auto;
box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;

}


.info-text{
    height: 200px;
    overflow: hidden;
}

label{
    color: gray;
    text-decoration: underline;
    cursor: pointer;
}

.checkbox{
display: none;
}

.checkbox2{
display: none;
}





.checkbox:checked ~ .info-text{

height: auto;
overflow: visible;

}

.checkbox2:checked ~ .info-text{

height: auto;
overflow: visible;

}








.box:hover{
    transform: scale(1.1);
}

span{
    font-size: 20px;
    font-weight: 600;
    padding: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #00da57;
}

.icon1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
     color: #00da57;
}




.wrraper-contact{
    display: grid;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin: 100px 30px auto;
grid-template-columns: repeat(auto-fit, minmax(350px , 1fr));
grid-gap: 20px;
margin-bottom: 50px;    

}

.box-contact{
    background-color: white;
    width: 12em;
    height: 130px;
box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;

}

.box-contact p a {
    text-decoration: none;
    color: black;

}

.box-contact:hover{
    transform: scale(1.1);
}

span{
    font-size: 20px;
    font-weight: 600;
    padding: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #00da57;
}

.icon1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
     color: #00da57;
}











.sec-back{
    background-color: #56ff97;
    padding: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.image{
    min-height: 40vh;
    width: 30%;

}

.sec-back h4{
color: #313131;
margin-bottom: 15px;
margin-top: 20px;
}


.sec-back h1{

color: rgb(255, 255, 255);
margin-bottom: 15px;
 box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
 padding: 10px;
 border-radius: 20px;


}

.sec-back p {
    color: white;
}

.flex{
    display: flex;
    justify-content: space-between;
margin: 30px;
}

.info{
    margin-right: 30px;
}

@media(max-width: 700px){
.flex{
    display: inline-block;
}
.image{
width: 100%;
}

.sec-back h1{
text-align: center;
}
.sec-back p{
text-align: center;
}




}


.sec{

    padding: 50px;
    margin-top: 30px;
    margin-bottom: 30px;

}

.sec h4{
    color: #00da57;

margin-top: 20px;
}

.sec h1{
color: rgb(47, 47, 47);
margin-bottom: 15px;
 padding: 10px;
 border-radius: 20px;
}

h1 .dark-text{

    color: #00da57;
}


.map{
    width: 40%;

}



@media(max-width:700px){

.information{
    
display: inline-block;


}
.map{
    width: 100%;
    margin-top: 30px;
margin-bottom: 20px;
}

}









.contact-contianer{
text-align: center;
    background-color: #00da57;
    padding: 15px;
    margin: 20px;
    border-radius: 20px;
box-shadow:  0 0 20px 0 rgba(0,0,0,0.2);

}

.contact-contianer h3{
    color: white;
    padding-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 25px;

}


form{
    display: inline block;
    justify-content: center;
    align-items: center;
    
}
form input textarea{

    text-align: center;
    align-items: center;
}

input{
    display: inline-block;
    justify-content: center;
    background-color: white;
    width: 40%;
    margin-left: 12%;
    font-size: 13px;
    padding: 16px;
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;

}
textarea{
    background-color: white;
    width: 50%;
    margin-left: 12%;
    font-size: 10px;
    padding: 16px;
    border-radius: 10px;

    border: none;
}

input:focus-within{

    outline: none;
    border-color: #56ff97;
    border-width: 3px;


}

textarea:focus-within{

    outline: none;
    border-color: #56ff97;
    border-width: 3px;
    

}

button{
    background-color: white;
    border-radius: 20px;
    border-color: #56ff97;
    font-size: 15px;
    padding: 10px 18px;
    text-align: center;
    display: flex;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: center;
}

button:hover{
    opacity: 80%;
    cursor: pointer;
}



@media(max-width:700px){


input{
    width: 75%;
}

textarea{
    width: 75%;
}



}



.footer-contianer{
    background-color: #212329;
    padding-bottom: 4rem;
}
.footer{
    width: 80%;
    height: auto;
    background-color: #212329;
    color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer-heading{
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

.footer-heading p{
    margin-bottom: 2rem;
}

.footer-heading a{
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    margin-top: 10px;

}

.footer-heading a:hover{
    color: #00da57;
    transition: 0.3s ease;
}

.footer-email-form p{

margin-top: 2rem;
    
}

@media screen and (max-width: 1150px) {
    

.footer{
    height: auto;

}

.footer-email-form{
    margin-top: 4rem;
}


}


@media screen and (max-width: 1150px) {
    

.footer{
    height: auto;

}

.footer-email-form{
    padding-top: 2rem;
}


}


@media screen and (max-width: 820px) {
    

.footer{
    height: auto;

}

.footer-email-form{
    margin-top: 2rem;
}


}


@media screen and (max-width: 720px) {
    

.footer-3{
    display: none;

}

.footer-email-form{
    margin-top: 2rem;
}


}






