div {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
.header,
.landing button:hover {
  background-color: #064064;
}
.about h2,
.contact h2,
.contact h3,
.info .continer {
  text-align: center;
}
.header {
  position: fixed;
  top: 0;
  z-index: 5;
  width: 100%;
  padding: 20px 50px;
  left: 0;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
}
.about,
.landing {
  background-color: #e0e7eb;
}
.about h2,
.about h3,
.about img,
.contact form,
.contact h2,
.landing {
  position: relative;
}
.header img {
  width: 40px;
}
.header ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.header ul li {
  margin-right: 30px;
}
.header ul li a {
  color: #fff;
}
.header ul li:hover a {
  color: #00bfa6;
}
.header ul li a.active {
  color: #00bfa6;
  position: relative;
  font-weight: 700;
}
.header ul li a.active::before {
  content: "";
  background-color: #00bfa6;
  height: 2px;
  width: 18px;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.landing {
  height: 100vh;
  display: flex;
  align-items: center;
}
.landing .continer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing .text {
  width: 600px;
}
h1 {
  font-size: 5em;
  color: #0b1d41;
  margin-bottom: 15px;
}
.about p,
.landing p {
  color: gray;
  font-size: 24px;
  margin-bottom: 30px;
}
.landing button {
  background-color: #156292;
  color: #fff;
  padding: 15px 35px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  border-radius: 15px;
}
.landing .social {
  margin-left: 42px;
  margin-top: 15px;
}
.landing .tube {
  position: absolute;
  width: 900px;
  bottom: 0;
  right: 0;
}
.info {
  margin-top: 27px;
  margin-bottom: 27px;
}
.info .continer {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.info img {
  margin-bottom: 7px;
  width: 70px;
}
.info h3 {
  margin-bottom: 7px;
  font-size: 25px;
}
.info p {
  color: #aaa;
}
.about {
  padding: 30px 0;
}
.about h2 {
  font-size: 3em;
  color: #0b1d41;
  margin-bottom: 30px;
}
.about h2::before,
.contact h2::before {
  content: "";
  width: 50px;
  height: 5px;
  bottom: -10px;
  background-color: #156292;
  position: absolute;
}
.about h2 span,
.contact h2 span {
  color: #156292;
}
.about .continer {
  display: flex;
  justify-content: space-between;
}
.about h3 {
  font-size: 2.5em;
  margin-bottom: 15px;
}
.about img {
  width: 550px;
  border-radius: 10px;
}
.about button {
  background-color: #156292;
  color: #fff;
  padding: 15px 35px;
  border: none;
  border-radius: 15px;
}
.contact h2 {
  font-size: 3em;
  color: #0b1d41;
  margin: 30px 0;
}
.contact .continer {
  display: flex;
  justify-content: space-around;
}
.contact h3 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #064064;
}
.contact form {
  border: 3px solid #064064;
  padding: 20px 15px;
  width: 400px;
}
.contact form input,
.contact form textarea {
  display: block;
  box-sizing: border-box;
  padding: 10px 20px;
  width: 100%;
  margin-bottom: 20px;
}
.contact button {
  background-color: #156292;
  color: #fff;
  padding: 13px 40px;
  border: none;
  border-radius: 15px;
  margin: 0 auto;
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.footer {
  background-color: #0b1d41;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0;
  margin-top: 20px;
}
.social {
  width: fit-content;
  display: block;
}
.social img:hover {
  transform: translateY(-7px);
  transition: 0.5s;
}
.social img {
  margin-right: 5px;
  width: 20px;
}
.container {
  margin: 0 auto;
}
.continer {
  padding: 20px 100px;
}
@media (max-width: 767px) {
  .about img,
  .landing .text {
    width: 100%;
  }
  .about .continer,
  .footer,
  .landing {
    text-align: center;
  }
  .header {
    padding: 0 20px;
  }
  .continer {
    padding: 0 35px;
  }
  .landing {
    flex-direction: column;
    padding: 20px;
  }
  .landing .continer {
    text-align: center;
    margin: auto;
    padding-top: 80px;
  }
  .landing h1 {
    font-size: 3.5em;
  }
  .landing .tube {
    display: none;
  }
  .landing .social {
    margin: 0 auto;
  }
  .info .continer {
    flex-direction: column;
    gap: 50px 0;
  }
  .about .continer {
    flex-direction: column;
  }
  .about img {
    margin-top: 15px;
  }
  .about p {
    font-size: 18px;
  }
  .contact .continer {
    flex-direction: column;
    align-items: center;
  }
  .contact iframe {
    width: 400px;
  }
  .contact form {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    left: 0;
  }
  .footer {
    flex-direction: column;
    gap: 7px 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about img,
  .contact form {
    width: 80%;
  }
  .continer {
    padding: 20px 50px;
  }
  .landing .continer {
    text-align: center;
    margin: auto;
    padding-top: 80px;
  }
  .about img,
  .landing .social {
    margin: 0 auto;
  }
  .landing h1 {
    font-size: 4em;
  }
  .landing p {
    font-size: 25px;
  }
  .landing .tube {
    display: none;
  }
  .info .continer {
    justify-content: space-between;
  }
  .about .continer {
    flex-direction: column;
    text-align: center;
  }
  .contact .continer {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1025px) {
  .landing h1 {
    font-size: 5em;
  }
  .about .continer {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 30px;
  }
  .contact .continer {
    flex-direction: row;
    justify-content: space-around;
  }
}
