* {
  box-sizing: border-box;
}

body {
  background-color: #f5f5f0;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "PPFrama";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/PPFrama/PPFrama-Medium.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/Roboto/roboto-regular.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/roboto-light.woff2) format("woff2");
  font-display: swap;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: auto;
}
.lenis.lenis-stopped {
  overflow: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 2.6rem;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 170px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  color: #212121;
  font-size: 1.2rem;
  font-weight: 200;
  text-decoration: none;
}

.nav-btn {
  background-color: #e30613;
  padding: 0.85rem 1rem;
  color: #f5f5f0;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-weight: 200;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-btn img {
  margin-top: 2px;
}

.nav-link,
.nav-button {
  transition: filter 0.3s ease;
}

.nav-links:hover .nav-link:not(:hover),
.nav-links:hover .nav-button:not(:hover) {
  filter: blur(1.5px);
}

.nav-button {
  cursor: pointer;
  font-weight: 100;
  font-size: 1.3rem;
  color: #f5f5f0;
  background: transparent;
  border: 1px solid #f5f5f0;
  padding: 15px 35px;
  border-radius: 45px;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #f5f5f0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #f5f5f0;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #f5f5f0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1.4rem;
  padding: 30% 1rem 2rem 1rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #212121;
  font-weight: 100;
  font-size: 2rem;
  line-height: 2rem;
}

main {
  padding: 12rem 8rem;
}

h1 {
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #212121;
}

.contact-intro p {
  color: #212121;
  font-weight: 200;
  font-size: 1.2rem;
  width: 40%;
}

.info-item {
  margin-top: 2rem;
}

.info-item h2 {
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #212121;
  margin-bottom: 0;
}

.info-item a {
  color: #212121;
  font-weight: 200;
  font-size: 1.2rem;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
  color: #e30613;
}

.info-item p {
  color: #212121;
  font-weight: 200;
  font-size: 1.2rem;
  margin: 0;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
}

.contact-form {
  width: 100%;
  max-width: 750px;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input,
.form-field textarea {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  color: #212121;
  padding: 1rem 1.1rem;
  border: 1px solid #212121;
  border-radius: 0;
  outline: none;
  background: transparent;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #000;
}

.form-field textarea {
  resize: vertical;
  min-height: 170px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  color: #212121;
  opacity: 0.65;
}

.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
}

.form-field--checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.form-field--checkbox label {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 0.9rem;
  color: #212121;
  line-height: 1.5;
}

.form-field--checkbox a {
  color: #d00c16;
  text-decoration: none;
  font-size: 0.9rem;
}

.form-field--checkbox a:hover {
  text-decoration: underline;
}

.form-submit {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  color: #212121;
  padding: 1rem 1.1rem;
  border: 1px solid #212121;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #d00c16;
  color: #f5f5f0;
  border: 1px solid #d00c16;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

footer {
  position: relative;
  padding: 2rem 8rem;
  background-color: #212121;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.footer-card {
  margin-top: -8rem;
  background-color: #e44242;
  width: 20%;
  padding: 1rem;
}

.footer-card h3 {
  color: #f5f5f0;
  font-weight: 500;
  font-family: "PPFrama", sans-serif;
  font-size: 1.8rem;
  margin-top: 0;
}

.footer-card-info p {
  color: #f5f5f0;
  font-weight: 200;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 0;
}

.card-title {
  color: #f5f5f0;
  font-weight: 400 !important;
  font-size: 1.3rem !important;
  margin-bottom: 7px !important;
}

.footer-card-info a {
  color: #f5f5f0;
  font-weight: 200;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 0;
  text-underline-offset: 2px;
}

.footer-card-info a:hover {
  text-decoration: underline;
}

.card-spacing {
  margin-top: 1rem;
}

.footer-links {
  width: 80%;
}

.navigation-links {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c4bebe;
  width: 55%;
}

.navigation-links a {
  font-family: "PPFrama", sans-serif;
  color: #f5f5f0;
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: none;
}

.current-page-link {
  color: #d00c16 !important;
}

.legal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1.5rem;
}

.legal-links a {
  color: #f5f5f0;
  text-decoration: none;
  font-weight: 200;
  display: inline-block !important;
  display: inline;
  width: auto;
  align-self: flex-start;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
}

.footer-bottom p {
  color: #f5f5f0;
  font-weight: 200;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #f5f5f0;
  font-weight: 200;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 10rem;
    width: calc(100% - 2rem);
  }
  h1 {
    width: 100%;
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  main {
    padding: 9rem 1rem;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 4rem;
  }

  .contact-intro p {
    width: 100%;
  }

  .info-item h2 {
    font-size: 1.6rem;
  }

  footer {
    padding: 2rem 1rem 1rem 1rem;
  }

  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-card {
    width: 100%;
  }

  .footer-links {
    width: 100%;
  }

  .navigation-links {
    flex-direction: column;
    gap: 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom p {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }

  .menu-links {
    padding: 30% 3rem 2rem 3rem;
  }

  h1 {
    width: 100%;
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  main {
    padding: 9rem 3rem;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 4rem;
  }

  .contact-intro p {
    width: 100%;
  }

  .info-item h2 {
    font-size: 1.6rem;
  }

  footer {
    padding: 2rem 3rem 1rem 3rem;
  }

  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-card {
    width: 100%;
  }

  .footer-links {
    width: 100%;
  }

  .navigation-links {
    flex-direction: column;
    gap: 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom p {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }

  .menu-links {
    padding: 15% 4.4rem 2rem 4.4rem;
  }
  h1 {
    font-size: 2.7rem;
    line-height: 3rem;
  }

  h1 {
    width: 100%;
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  main {
    padding: 9rem 3rem;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 4rem;
  }

  .contact-intro p {
    width: 100%;
  }

  .info-item h2 {
    font-size: 1.6rem;
  }
  .footer-card {
    width: 35%;
  }
  .footer-links {
    width: 65%;
  }
  .navigation-links {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1380px) {
  .hero-text {
    left: 6rem;
  }
  .header-title {
    font-size: 4.2rem;
  }
  .header-text {
    width: 45%;
  }
  .about-image {
    width: 50%;
    height: 600px;
  }

  .services-buttons .link-btn-wrapper {
    display: none;
  }

  .contact-section {
    padding: 6rem;
  }
  .contact-form {
    max-width: 650px;
  }
  footer {
    padding: 4rem 6rem 1rem 6rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .hero-text {
    left: 6rem;
  }

  .rmv-d {
    display: none;
  }
  .rmv-m {
    display: none;
  }
  main {
    padding: 10rem 6rem;
  }
  .contact-form {
    max-width: 670px;
  }

  footer {
    padding: 4rem 6rem 1rem 6rem;
  }
  .footer-card {
    width: 30%;
  }
  .footer-links {
    width: 70%;
  }
  .navigation-links {
    width: 100%;
  }
}
