
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
}

.homepage{
    margin-left: 10px;
}

.menu {
    display: none; 
}
.menu-icon {
    font-size: 20px; 
    
}

.menu.open {
    display: block;
}
li, a, button{
    font-size: 20px;
    text-decoration: none;
    color: black;
}
label{
    font-size: 30px;
    font-weight: 100;
}
header{
    display: flex;
   
    justify-content: space-between;
    align-items: center;
    padding: 35px 6%;
    z-index: 1000;
    
 
}
.nav_links li{
    display: inline-block;
    padding: 0px 20px ;
}
.bt button{
    padding: 5px 15px;
    display: inline;
    justify-content: space-between;
    border-radius: 5px;
}

.firstpage {
    width: 100%; 
    height: 934px ;
    padding: 10% 5%; 
    box-sizing: border-box;
    padding-left: 10px;
    
}


.heroarro img {
    max-width: 100%;
    height: auto; 
}



li a:hover, a:active{
    background-color: #F2F2F2;
    size: 20px;
}

.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
   

}
.heroarro{
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.about{
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    background-color: #F2F2F2;
    width: 100%;
    
}

.about div{
    
    float: left;
    width: 60%;
    overflow: hidden;

}
.maintext
{
    padding-top: 150px;
    display: flex;
    align-content: center;
    justify-content: center;

}
.horizontal{
        width: 100%; 
        text-align: center; 
        border-bottom: 2px solid #000; 
        line-height: 0.1em;
        margin: 10px 0 20px;
}
h2 span { 
    background:#F2F2F2;
    padding:0 10px; 
}
.hero{

    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    padding-top: 50px;
    justify-content: space-between;
    overflow: hidden;
    
}

.text p{
       padding: 5px;
       size: 30px;
}
.container .photo{
    
   display: flex;
   height: 140px;
   width: auto;
    
}

.contact {
    padding-top: 100px;
    background-color: #F2F2F2;
    width: 100%;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact .header {
    margin-bottom: 0px;
}

.spacer {
    height: 20px;
}

.contact-content {
    width: 100%;
    max-width: 600px; 
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.contact-form{
   
    text-align: left;
}
.contact-form h2{
   
    font-size: 24px;
    margin-bottom: 20px;
}
.form-group{
    margin-bottom: 20px;
}
input, textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #f8f9fa;
}
input:focus,
textarea:focus{
    outline: none;
    box-shadow: 0 0 8px #bbb;
}
.contact-form button{
    display: inline-block;
    padding: 12px 24px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
button :hover{
    background-color: #45a049;
}
.contact-info{
    text-align: left;
}
.contact-info h3{
    font-size: 24px;
    margin-bottom: 20px;
    color:#333;
}
.contact-info p{
    margin-bottom: 10px;
    color: #555;
}
.contact-info i{
    color: #4caf50;
    margin-right: 10px;
}

#scrollToTopBtn {
    display: none; 
    position: fixed; 
    justify-content: center;
    bottom: 10px; 
    right: 20px;
    z-index: 10000; 
    background-color: #4caf50; 
    color: white; 
    border: none;
    border-radius: 17%;
    cursor: pointer; 
    padding: 10px;
  }
  
  #scrollToTopBtn:hover {
    background-color: white; 
    color: #000;
  }
  
