*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body{
  font-family: 'Merriweather', serif;
}
nav{
  background: #2E5E69;
  font-size: 35px;
  line-height: 80px;
  padding: 0 100px;
}
nav img{
  height: 80px;
  padding: 0px;
}
nav a{
  background: none;
}
nav ul{
  float: right;
  margin-right: 20px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
nav ul li a{
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}
nav ul li a.active, nav ul li a:hover{
  background: #5dbcd2;
  transition: .5s;
}
.checkbtn{
  font-size: 30px;
  color: #5dbcd2;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
@media (max-width: 952px) {
  nav img{
    height: 50px;
  }
  nav ul li a{
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  nav{
    padding: 0 0px;
  }
  .checkbtn{
    display: block;
  }
  nav ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    top: 90px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
    color: #2E5E69;
  }
  nav ul li a:hover, nav ul li a.active{
    background: none;
    color: #5dbcd2;
  }
  #check:checked ~ ul{
    left: 0;
  }
}
@media (min-width: 1261px) and (max-width: 5000px) {
  nav ul li a{
    color: #fff;
  }
}
.container{
  background-color: #f4f4f4;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.container img{
  border-radius: 50%;
  width: 200px;
}
.container h2{
  margin-top: 10px;
  font-size: 36px;
  font-weight: 700;
  color: #1e405d;
}
.container h3{
  margin-top: 10px;
  font-size: 22px;
  font-weight: 300;
  color: #64676f;
}
.pure-g{
  color: black;
  text-align: justify;
  padding: 0 20%;
  margin-top: 30px;
}
.para1{
  margin-top: 20px;
}
.para1 a{
  color: #269197;
  text-decoration: underline;
}
.about ul{
  margin-left: 20px;
  margin-top: 20px;
}
.about ul li{
  margin-left: 20px;
  list-style-type: disc;
}
