:root {
  --primary: #01a8df;
  --white: #ffffff;
  --gray: #f1f1f1;
  --dark: #1c1c1c;
  --black: #000000;
}

.introduction {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  min-height: 70vh;
}
.introduction .overlay {
  background-color: var(--primary);
  opacity: 0.8;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 991.98px) {
  .introduction .overlay {
    display: none;
  }
}
.introduction .content {
  max-width: 1520px;
  position: relative;
  z-index: 9;
}
.introduction .content * {
  color: var(--white);
}
.introduction .content p {
  max-width: 420px;
}
.introduction .content span {
  font-size: 2rem;
}
@media screen and (max-width: 767.98px) {
  .introduction .content span {
    font-size: 1.5rem;
  }
}
.introduction .content h1 {
  font-size: 4rem;
}
@media screen and (max-width: 767.98px) {
  .introduction .content h1 {
    font-size: 2.5rem;
  }
}
.introduction .content .fill {
  background-color: var(--dark);
  border-color: var(--dark);
}
@media screen and (max-width: 991.98px) {
  .introduction .content .fill {
    background-color: var(--primary);
    border-color: var(--primary);
  }
}
.introduction .content .fill:hover {
  background-color: var(--white);
  color: var(--dark);
}
@media screen and (max-width: 991.98px) {
  .introduction .content .fill:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
  }
}
.introduction .contact-box {
  background-color: #0f0f0f;
  right: 0;
  bottom: 0;
  position: absolute;
}
@media screen and (max-width: 991.98px) {
  .introduction .contact-box {
    display: none;
  }
}
.introduction .contact-box p {
  color: var(--white);
}
.introduction .contact-box p a {
  text-decoration: none;
}

.services {
  background-color: var(--dark);
}
.services * {
  color: var(--white);
}
.services h2 {
  color: var(--white);
}
.services .service img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.services .service h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.services .service p {
  margin-bottom: 0;
}

.about-us .image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us .content span {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.3rem;
}
.about-us .content h2 {
  font-size: 2.5rem;
}

.contact {
  background-image: url(/wp-content/uploads/2025/09/pngwing.com-1.svg);
  background-repeat: no-repeat;
  background-size: 600px;
  background-position: bottom right;
  background-color: var(--gray);
}
.contact .content h2 {
  color: var(--primary);
  font-size: 2.5rem;
  max-width: 420px;
}
.contact .content p {
  max-width: 390px;
}
@media screen and (max-width: 991.98px) {
  .contact .content p {
    max-width: 100%;
  }
}
.contact .content iframe {
  width: 100%;
  height: 300px; /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.contact .form {
  padding: 54px 60px;
  background-color: var(--white);
}
@media screen and (max-width: 767.98px) {
  .contact .form {
    padding: 30px;
  }
}
.contact .form input:not(input[type=submit], input[type=checkbox]),
.contact .form textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--primary);
  background-color: transparent;
  color: var(--dark);
  transition: 0.3s;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.contact .form input:not(input[type=submit], input[type=checkbox]):focus,
.contact .form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.contact .form textarea {
  height: 100px;
}
.contact .form .wpcf7-acceptance span {
  margin: 0;
  font-size: 0.8rem;
  max-width: 380px;
}
.contact .form .wpcf7-acceptance span a {
  color: var(--dark);
}
.contact .form .wpcf7-acceptance span a:hover {
  color: var(--primary);
}
.contact .form input[type=submit] {
  color: var(--black);
  padding: 8px 24px;
  text-decoration: none;
  transition: 0.3s;
  border: 3px solid var(--primary);
  background-color: transparent;
}
.contact .form input[type=submit]:hover {
  background-color: var(--primary);
  color: var(--white);
}