* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Spartan", sans-serif;
  }

  html {
    scroll-behavior: smooth;
    background-repeat: no-repeat;
  }

  .heading{
    display: flex;
    text-align: center;
    justify-content: space-between;
    color: rgb(24, 118, 24);
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
   
  }
  .title{
    display: flex;
    flex-direction: row;
    padding-right: 10px;

  }

  .title h1{
    padding-left: 10px;
  }

  .logo{
    width: 250px;
    height: 70px;
  }
  .nav nav{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .nav li{
    list-style: none;
    padding: 20px 20px;
    position: relative;
}

.nav li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}
.nav li a:hover,
.nav li a.active{
    color: #088178;
    
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
   
    
}
.container img{
    border: 1px solid black;
}
.container button{
    height: 33px;
    width: 211px;
    border-radius: 30px;
    background-color: aquamarine;
   font-size: 20px;
   cursor: pointer;
}


.container h2{
    padding: 14px;
}

/* footer */

footer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    padding-left: 70px;
    padding-right: 70px;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .mail a{
    text-decoration: none;
}

.copyright p a{
    text-decoration: none;

}



footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;

}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}


footer .follow i:hover,
footer a:hover {
     color: #088178;
}
footer .copyright{
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

.row img:hover{
    box-shadow: 10px 10px 54px rgba(0, 0, 0, 0.1);
}