@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter Tight", sans-serif;
  font-weight: bold;
}

a {
  color: #262626;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
.wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
}

.btn {
  border-radius: 30px;
  padding: 5px 20px;
  box-shadow: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.btn.btn-lg {
  font-size: 16px;
}
.btn.btn-secondary {
  background: #262626;
  border-color: white;
  color: white;
}
.btn.btn-secondary:hover {
  background: #262626;
  border-color: white;
  color: white;
  text-decoration: underline;
}
.btn.btn-white {
  background: white;
  border-color: white;
  color: #262626;
}

header {
  border-top: 3px solid #ed1c24;
  border-bottom: 1px solid #e7e7e7;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
header .top-area {
  background: #262626;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
header .logo {
  width: 200px;
  height: auto;
}
@media (min-width: 768px) {
  header .logo {
    width: 250px;
  }
}
header .link {
  color: white;
  text-decoration: none;
}
header .bottom-area .menu {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  header .bottom-area .menu {
    flex-direction: row;
  }
}
header .bottom-area .menu a {
  color: #262626;
  letter-spacing: 0.2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 1rem;
  transition: border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}
header .bottom-area .menu a.active {
  font-weight: bold;
  border-color: #ed1c24;
}
header .bottom-area .menu a:hover {
  border-color: #ed1c24;
}
@media (max-width: 992px) {
  header .bottom-area .menu {
    display: none;
    max-height: 0;
    transition-property: display, opacity, max-height;
    transition-duration: 0.1s;
    transition-timing-function: ease-in-out;
    transition-behavior: allow-discrete;
  }
  header .bottom-area .menu.mobile-visible {
    display: flex;
    max-height: 100%;
    opacity: 1;
  }
  @starting-style {
    header .bottom-area .menu.mobile-visible {
      max-height: 0;
      opacity: 0;
    }
  }
}
header .menu-burger, header:hover {
  text-decoration: none !important;
}

footer {
  margin-top: auto;
  background: #262626;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: white;
}
footer .logo {
  width: 200px;
  height: auto;
}
@media (min-width: 768px) {
  footer .logo {
    width: 250px;
  }
}
footer .copyright {
  font-size: 14px;
}

section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
section .section-title .subtitle {
  font-size: 24px;
  font-weight: 300;
}
section.intro .icon {
  width: 60px;
}
@media (min-width: 992px) {
  section.intro .icon {
    width: 250px;
  }
}
section.services .service {
  padding: 2rem;
  background: #FCFCFC;
  border-radius: 10px;
  height: 100%;
  border: 1px solid #d4d4d4;
}
section.services .service .icon span {
  font-size: 42px;
  color: #ed1c24;
}
section.services .service .service-name {
  margin-top: 0.5rem;
  font-size: 24px;
}

.hero {
  position: relative;
}
.hero .overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 26.25%, rgba(0, 0, 0, 0) 65.31%);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero img {
  border-radius: 10px;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
.hero .content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: white;
}
.hero .content .title {
  font-weight: bold;
  font-size: 28px;
}
@media (min-width: 768px) {
  .hero .content .title {
    font-size: 48px;
  }
}
.hero .content .subtitle {
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 768px) {
  .hero .content .subtitle {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .hero .content {
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
}

.contact-form {
  background: #ed1c24;
  padding: 2rem;
  color: white;
  border-radius: 10px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: transparent;
  color: white;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid white;
}
.contact-form label {
  color: white;
  font-weight: bold;
}
.contact-form.was-validated .form-control:valid {
  border-color: white;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}
.contact-form.was-validated .form-control:invalid {
  border-color: white;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffffff'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffffff' stroke='none'/%3e%3c/svg%3e");
}

.page-subpage .subpage-hero {
  max-height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.page-subpage .subpage-content {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .page-subpage .subpage-form {
    margin-top: -100px;
  }
}

.page-contact .contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2rem;
  background: #FCFCFC;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
}
.page-contact .contact-detail .icon {
  font-size: 36px;
  color: #ed1c24;
}
.page-contact .contact-detail .content p {
  margin-bottom: 0;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

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