@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background: #eee;
  padding-bottom: 9px;
} 
nav{
  display: flex;
  height: 60px;
  width: 100%;
  background: teal;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 50px;
  flex-wrap: wrap;
  border-bottom: 3px solid #fff;
}
#logo{
  text-decoration: none;
  display: flex;
  align-items: center;
  width: max-content;
}#logo img{
  height: 40px;
  width: 40px;
  border-radius: 3px;
}#logo h2{
  color: #fff;
  margin-left: 8px;
  background: linear-gradient(50deg,rgb(56, 242, 255),rgb(68, 117, 253),rgb(213, 51, 253));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#logo sub{
  font-size: 11px;
  margin-left: 5px;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  letter-spacing: 1px;
  transition: 0.8s;
}
nav ul li a.active,
nav ul li a:hover{
  color: rgb(5, 190, 236);
  background: transparent;
  border-top: 0.1px solid #eee;
  border-left: 0.1px solid #eee;
  border-bottom: 2px solid #eee;
  border-right: 4px solid #eee;
}
nav .menu-btn i{
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
.intro{
  width: 100%;
  height: max-content;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.intro .left{
  width: 500px;
  height: max-content;
  padding: 15px;
}
.intro .left h1{
  background: linear-gradient(90deg,rgb(233, 233, 5),rgb(7, 173, 7));
  width: max-content;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 45px;
}
.intro .left p{
  color: rgb(90, 90, 90);
  margin: 45px 0 65px 0;
}
.intro .left a{
  padding: 12px;
  border-radius: 7px;
  background: rgb(4, 211, 107);
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: 0.7s;
}.intro .left a:hover{
  background: linear-gradient(60deg,rgb(4, 211, 107),rgb(3, 182, 173));
}
.intro .right{
  margin: 5px;
  width: 400px;
  height: max-content;
  padding: 10px;
}.intro .right img{
  height: 450px;
  width: 500px;
}.intro .right p{
  text-align: center;
}
.h_f{
  width: 100%;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin-bottom: 11px;
  margin-top: 8px;
  background: #fff;
}
.h_f img{
  height: 300px;
  margin: 0;
}
.h_f .content{
  width: 45vw;
  padding: 10px;
}
.h_f .content h3{
  color: rgb(5, 226, 226);
  margin-bottom: 15px;
}
.h_f .content p{
  color: rgb(66, 66, 66);
}
.h_s{
  width: 100%;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 8px;
  margin-top: 11px;
  background: #fff;
}
.h_s img{
  height: 300px;
  margin: 0;
}.h_s .content{
  width: 45vw;
  padding: 10px;
}.h_s .content h3{
  color: rgb(5, 193, 226);
  margin-bottom: 15px;
}
.h_s .content p{
  color: rgb(66, 66, 66);
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 1000px) {
  .intro .left h1{
    font-size: 30px;
  }.intro .right img{
    width: 350px;
    height: 300px;
  }.intro .left p{
    margin: 25px 0 45px 0;
  }
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 60px;
    left: -100%;
    background: teal;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
    transition: 0.7s;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    letter-spacing: 3px;
    color: rgb(43, 189, 226);
    border: none;
  }
  .h_f{
    justify-content: center;
  }.h_f img{
    border-radius: 5px;
  }
  .h_f .content{
    width: 100%;
  }.h_s{
    justify-content: center;
  }.h_s img{
    border-radius: 5px;
  }
  .h_s .content{
    width: 100%;
  }
}

@media (max-width:600px){
  .h_f img{
    width: 98%;
    margin: 5px;
    height: auto;
  }.h_s img{
    width: 98%;
    margin: 5px;
    height: auto;
  }
}
.foot{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: max-content;
  margin-bottom: 8px;
}
.links a{
  margin: 0 15px;
  text-decoration: none;
  color: teal;
  font-size: 15px;
  transition: 0.7s;
}
.links a:hover{
  color: rgb(64, 179, 224);
}
.container{
  margin: 19px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container img{
  width: 50%;
  height: max-content;
}
@media(max-width:750px){
  .container img{
    width: 80%;
  }
}