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

header nav a{
  text-decoration: none;
}
nav{
  position: fixed;
  top: 0px;
  z-index: 100;
  right: 0px;
  left: 0px;

  background: rgba(255, 255, 255, 0.95);
  height: 70px;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 70px;
  align-items: center;
}

ul{
  display: flex;
  flex-direction: row;
  align-items: center;
}

ul li{
  list-style-type: none;
}

.login{
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid rgba(83,133,8,255);
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  margin-left: 15px;
}

.login:hover{
  background: rgba(83,133,8,255);
}

.aboutus{
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid rgba(83,133,8,255);
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  margin-left: 15px;
}

.aboutus:hover{
  background: rgba(83,133,8,255);
}

.register{
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid rgba(83,133,8,255);
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  margin-left: 15px;
}

.register:hover{
  background: rgba(83,133,8,255);
}


body{
  background: white;
  padding-top: 70px;
}

.icon img{
  height: 60px;
}

.icon{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.icon p{
  color: rgba(83,133,8,255);
  font-size: 24px;
  margin-left: 5px;
}

.footer-flex{
  display: flex;
  flex-direction: row;

}

.footer-flex div .icon img{
  height: 50px;
}

.footer-flex div .icon p{
  font-size: 20px;
}

.grid-footer{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-footer div{
  display: flex;
  flex-direction: column;
  font-family: Arial;
  margin-right: 80px;
}

.grid-footer div a{
  text-decoration: none;
  color: rgba(83,133,8,255);
  font-size: 13px;
  margin-bottom: 15px;

}

.grid-footer div p{
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
}

.social{
  margin-right: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.social div a img{
  width: 16px;
  color: rgba(83,133,8,255);
  margin: 0 5px;
}

.social .icon{
  margin-bottom: 10px;
}

footer{
  background: #212529;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.policies{
  margin-top: 70px;
  font-family: Arial, Helvetica, sans-serif;
  color: grey;
  font-size: 13px;
}

.policies a{
  text-decoration: none;
  color: grey;
  transition: 0.3s
}

.policies a:hover{
  color: white;
}



section{
  padding: 66px 300px 66px;
}

.signupsection{
  display: flex;
  flex-direction: column;
  background: white;
  color: rgba(83,133,8,255);
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 10px;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.1);
  padding: 40px 0;
  align-items: center;
}

.signupsection h1{
  margin-bottom: 10px;
  text-align: center;
}

.name{
  display: flex;
  flex-direction: row;
}

.bar, .password, .password2{
  padding: 12px 12px 12px 45px;
  cursor: pointer;
  outline-color: rgba(83,133,8,255);
  border: 1px solid rgb(200,200,200);
  border-radius: 10px;
  width: 524px;
  margin: 10px;
}

.name input{
  width: 250px;
}

.input{
  position: relative;
}


.signupsection .left{
  width: 25px;
  position: absolute;
  bottom: 18px;
  left: 20px;
}

.signupsection .right, .signupsection .right2{
  width: 25px;
  position: absolute;
  bottom: 18px;
  right: 20px;
  cursor: pointer;
}

.CrtAcc{
  color: white;
  text-decoration: none;
  background: rgb(83,133,8);
  font-weight: bold;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
  width: 524px;
  border: none;
  cursor: pointer;
  margin: 10px 0 0 10px;
}

.CrtAcc:hover{
  background: rgb(96, 152, 12,255);
}



