@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
body {
  background: linear-gradient(to bottom right, #20B2AA, #157F7F);
  -webkit-animation: colorAnimation 3s infinite alternate;
  animation: colorAnimation 3s infinite alternate;
}
@keyframes colorAnimation {
  0% { background: linear-gradient(to bottom right, #72cc8e, #9dab6c); }
  10% { background: linear-gradient(to top right, #cbd08f, #3899cd); }
  20% { background: linear-gradient(to bottom left, #3899cd, #76d8bb); }
  30% { background: linear-gradient(to bottom right, #346e9d, #20B2AA); }
  40% { background: linear-gradient(to top left, #20B2AA, #157F7F); }
  50% { background: linear-gradient(to top left, #59b3ae, #055c62); }
  60% { background: linear-gradient(to top left, #43712b, #157F7F); }
  70% { background: linear-gradient(to top left, #5c817f, #16dede); }
  80% { background: linear-gradient(to top left, #8078d1, #0dd1d1); }
  90% { background: linear-gradient(to top left, #a3b78a, #8edfdf); }
  100% { background: linear-gradient(to top left, #ffffff, #839f48); }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}
nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: max-content;
  background-color: #007b5e;
}
nav .wrapper {
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  border-radius: 50%;
}
.wrapper .logo img {
  width: 140px;
  margin-left: 10px;
  margin-top: 100px;
  cursor: pointer;
  border-radius: 50%;
  justify-content: left;
  border: #ffffff 10px solid;
  -webkit-filter: brightness(90%) contrast(150%);
  filter: brightness(90%) contrast(110%);
}
.wrapper .logo img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.wrapper .nav-links {
  display: inline-flex;
  justify-content: center;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center; 
  margin-left: 10%;
}
.nav-links li {
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  font-size: 18px;
  padding: 9px 15px;
  margin: 0 5px;
  transition: all 0.3s ease;
  color: #000;
  font-weight: 600;
  position: relative;
}
.nav-links li a::before {
  content: "";
  background-color: antiquewhite;
  width: 0%;
  position: absolute;
  height: 2.5px;
  bottom: -14.5px;
  transition: width 0.3s;
}
.nav-links li a:hover::before {
  content: "";
  background-color: yellowgreen;
  width: 100%;
  position: absolute;
  height: 2.5px;
  bottom: -14.5px;
}
header {
  width: 100%;
  height: 150vh;
  background-size: cover;
  position: relative;
}
header .content {
  font-size: 3rem;
  color: whitesmoke;
  position: absolute;
  padding: 20px;
  left: 50%;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.content p {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 100px;
  pointer-events: none;
}
.content h1 {
  
  font-size: 10rem;
  margin-bottom: 40px;
  position: relative;
  cursor: grabbing;
}
.content h1::before {
  content: "";
  background-color: yellowgreen;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 5px;
  transition: width 0.5s;
}
.content h1:hover::before {
  width: 100%;
  background-color: whitesmoke;
}
@media (max-width: 768px) {
  header .content {
    font-size: 2.5rem;
    padding: 10px;
  }
  .content p {
    font-size: 1.5rem;
  }
  .content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}
h2{
  color: white;
  font-family: Georgia;
  cursor:grab;
}
h2.zoom-effect:hover {
  transform: scale(1.1);
  font-weight: bolder;
}
section {
  padding: 60px 0;
  width: 100%;
}
#footer {
  background: #007b5e !important;
}
.col-xs-12
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer h5{
  padding: 6px;
  border-left: 10px solid #eeeeee;
  padding-bottom: 6px;
  margin-bottom: 20px;
  color:#ffffff;
}
h5{
  pointer-events: none;
}
#footer ul.quick-links li{ 
  padding: 3px 0; 
  -webkit-transition: .5s all ease; 
  -moz-transition: .5s all ease; 
  -ms-transition: .5s all ease; 
  -o-transition: .5s all ease;
  transition: .5s all ease; 
}
#footer ul.quick-links li:hover{
  padding: 3px 0;
  margin-left:5px;
  font-weight:700;
}
#footer ul.quick-links li a i{
  margin-right: 5px;
}
#footer ul.quick-links li:hover a i {
  font-weight: 700;
}
@media (max-width:767px){
  #footer h5 {
    padding-left: 0;
    border-left: transparent;
    padding-bottom: 0px;
    margin-bottom: 10px;
  }
}
#footer a {
  color: #ffffff;
  text-decoration: none !important;
  background-color: transparent;
}
#footer a.u {
  cursor: pointer;
}
i{
  pointer-events: none;
}