@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap");
html {
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

.hero {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/hero.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero .nav-bottom-border {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid white;
}

.hero-text {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 100px;
  color: white;
}
.hero-text .hero-h1 {
  padding-bottom: 20px;
  font-weight: 900;
}
.hero-text .hero-button {
  border: 0;
  padding: 10px 20px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.5s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.hero-text .hero-button:hover {
  color: #ffdc22;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-text {
    padding-top: 120px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    justify-items: center;
  }
  .hero-container .hero-button {
    align-self: flex-end;
  }
}
#services {
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#services:before {
  content: "";
  position: absolute;
  width: 120%;
  height: 110%;
  background-color: #e5e5e5;
  z-index: -1;
  top: 40px;
  left: -30%;
}

.services-text-wrapper {
  margin-left: 10%;
  max-width: 550px;
  margin-bottom: 70px;
}

.services-text-wrapper p {
  margin-top: 40px;
}

.services-container {
  background-color: white;
  min-height: 370px;
  padding: 0 !important;
  -webkit-box-shadow: 0px 0px 12px -4px #000000;
  box-shadow: 0px 0px 12px -4px #000000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.services-container .services-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.services-img {
  border-radius: 10px 10px 0 0;
}

.services-title {
  font-size: 20px;
  padding: 10px 20px;
}

.services-description {
  font-size: 16px;
  padding: 10px 20px 20px 20px;
}

.services-links {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 0 20px 20px 0;
  transition: 0.3s;
  padding: 10px 20px;
  background-color: #f2f2f2;
}

.services-links:hover {
  color: #ffdc23;
}

@media (max-width: 768px) {
  #services {
    background-color: #e5e5e5;
  }

  #services:before {
    display: none;
  }
}
@media (max-width: 400px) {
  .services-text-wrapper {
    margin-right: 10%;
  }

  .services-text-wrapper p {
    text-align: justify;
  }
}
#about {
  min-height: 100vh;
  margin-top: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  border-radius: 10px;
  max-width: 80%;
  height: auto;
}

.about-link {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  margin: 0 20px 20px 0;
  transition: 0.3s;
  padding: 10px 20px;
  background-color: #2d2d2d;
}

.about-link:hover {
  color: white;
}

.about-link .text-colored {
  color: #ffdc23;
}

.about-text-container {
  max-width: 400px;
  margin: 60px;
}

.about-text {
  margin: 40px 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  #about {
    margin-top: 65px;
  }
}
#contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
}

.contact-title {
  margin: 75px 0 50px;
  margin-left: 5%;
}

.contact-logo {
  max-width: 30%;
  height: auto;
}

.contacts-links {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.areas-map-homepage {
  width: 90%;
  height: 400px;
}

.form {
  box-shadow: 0px 0px 10px -4px #000000;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5em;
  transition: all 0.3s;
}

.form-label {
  font-size: 0.75em;
  display: block;
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}

.form-control {
  box-shadow: none;
  border-radius: 0;
  border-color: #ccc;
  border-style: none none solid none;
  width: 100%;
  font-size: 1.25em;
  transition: all 0.6s;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--font-hover-color);
  outline: none;
}

.form-group:focus-within {
  transform: scale(1.02, 1.02);
}

.form-control:invalid:focus {
  border-color: red;
}

.form-control:valid:focus {
  border-color: green;
}

textarea {
  resize: none !important;
}

.focused > .form-label {
  opacity: 1;
  transform: translateX(0px);
}

.form-button {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  font-size: 1rem;
  border-radius: 0.25rem;
  margin: 0 20px 20px 0;
  transition: 0.3s;
  padding: 10px 20px;
  background-color: #2d2d2d;
}

.form-button:hover {
  color: white;
}

.form-button .text-colored {
  color: #ffdc23;
}

.form-container {
  margin: 0 5% !important;
}

/* creators */
.creators {
  background-color: #f2f2f2;
}

.credits-container {
  min-height: 50px;
}

.credit {
  color: #207fec;
  text-decoration: none;
  letter-spacing: 1px;
  padding-left: 2px;
}

@media (max-width: 768px) {
  .contact-image {
    max-width: 100%;
  }

  .contacts-container {
    align-self: center;
  }
}
@media (max-width: 375px) {
  .contact-logo {
    margin-left: 6%;
  }

  #form {
    padding: 1rem !important;
  }
  #form > div {
    gap: 1rem !important;
  }

  #contact h5 {
    margin-left: 10%;
  }

  .form-group:focus-within {
    transform: scale(1, 1.1);
  }
}

/*# sourceMappingURL=style.css.map */
