.hero {
  width: 100%;
  padding: 3rem 3rem;
  background-image: linear-gradient(to bottom, #f6f6f8, #046468);
  color: #162a30;
}
.hero h1 {
  font-size: 3rem;
  margin: 2rem 0;
  color: #034c4e;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.hero a {
  text-decoration: none;
  border: none;
  background-color: #f7b424;
  color: #16151f;
  margin-bottom: 2rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid yellow;
  border-radius: 0.3rem;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s linear;
}
.hero a:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 600px) {
  .hero {
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 2rem;
    margin: 1.5rem 0;
  }
  .hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
#about p {
  margin: 1.5rem 0;
  line-height: 150%;
  font-size: 1rem;
}

#testimonial h3 {
  font-size: 1.8rem;
  margin: 2rem 0;
  color: #afd406;
}
#testimonial .slide {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#testimonial .slide .slide-item {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  left: 100%;
  transition: all 0.4s linear;
  align-items: center;
  justify-content: space-between;
}
#testimonial .slide .slide-item.show {
  left: 0;
}
#testimonial .slide .slide-item .testimonial-image {
  width: 200px;
  height: 200px;
  border: 3px solid #034c4e;
  border-radius: 50%;
  overflow: hidden;
}
#testimonial .slide .slide-item .testimonial-image img {
  width: 100%;
  height: auto;
}
#testimonial .slide .slide-item .testimonial-text {
  width: calc(100% - 200px);
  padding-left: 3rem;
}
#testimonial .slide .slide-item .testimonial-text p {
  font-size: 1.2rem;
  line-height: 175%;
}

#contact form fieldset {
  background-image: linear-gradient(to right, #25e97d, #32a566);
}
#contact form fieldset input, #contact form fieldset textarea {
  margin-bottom: 1.5rem;
  background-color: #16151f;
  color: #dbd1d1;
}
#contact form fieldset .captcha img, #contact form fieldset .captcha i {
  margin-bottom: 1.5rem;
}

@keyframes heart {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  35% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.social-media-icon {
  width: 50px;
  transition: all 0.2s linear;
}
.social-media-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 1000px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  #testimonial .slide .slide-item {
    justify-content: center;
    flex-wrap: wrap;
  }
  #testimonial .slide .slide-item .testimonial-image {
    margin: 2rem 0;
  }
  #testimonial .slide .slide-item .testimonial-text {
    width: 100%;
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  .captcha {
    flex-direction: column-reverse;
  }
  .captcha input {
    width: 100%;
  }
  .captcha .captcha-image {
    width: 100%;
  }
  .social-media-icon {
    width: 35px;
    transition: all 0.2s linear;
  }
  .social-media-icon:hover {
    transform: scale(1.2);
  }
}/*# sourceMappingURL=hero.css.map */