* {
  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: #f5f5f0;
  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 {
  height: 100vh;
  width: 100%;
  position: relative;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  pointer-events: none;
  width: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 253, 0.1) 3.13%,
    rgba(0, 0, 0, 0.3) 67.52%
  );
}

.hero-text {
  position: absolute;
  bottom: 8rem;
  z-index: 3;
  left: 6rem;
}

h1 {
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  width: 60%;
  color: #f5f5f0;
}

.hero-text p {
  color: #f5f5f0;
  font-weight: 200;
  font-size: 1.2rem;
  width: 60%;
}

.hero-cta {
  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: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  align-self: flex-start;
}

.hero-cta img {
  margin-top: 2px;
}

.about-section {
  margin: 6rem 8rem;
}

.about-text h2 {
  color: #212121;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  width: 80%;
  margin-top: 0;
}

.about-text p {
  color: #212121;
  font-weight: 200;
  font-size: 1.2rem;
}

.subheader {
  color: rgba(33, 33, 33, 0.75);
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1rem !important;
  margin: 0 0 0.7rem 0;
}

.data-layout {
  display: flex;
  align-items: stretch;
  margin-top: 4rem;
}

.data-item {
  flex: 1;
  padding: 0 2.4rem;
}

.data-item + .data-item {
  border-left: 1px solid #d8d2c2;
}

.data-item:first-child {
  padding-left: 0;
}

.data-item:last-child {
  padding-right: 0;
}

.data-item h3 {
  color: #212121;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.data-item p {
  color: #212121;
  font-weight: 200;
  font-size: 1.2rem;
  margin-top: 0;
}

.usp-section {
  background: #f5f5f0;
  padding: 8rem;
}

.usp-layout {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: flex-start;
}

.usp-left {
  width: 45%;
  position: sticky;
  top: 100px;
}

.usp-right {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.usp-eyebrow {
  color: rgba(33, 33, 33, 0.75);
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1rem;
  margin: 0 0 0.7rem 0;
}

.usp-title {
  color: #212121;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 0 0 1.5rem 0;
}

.usp-intro {
  color: rgba(33, 33, 33, 0.9);
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 2.2rem 0;
  max-width: 54ch;
}

.usp-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.usp-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.usp-btn--primary {
  background: #e30613;
  color: #f5f5f0;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.usp-btn--primary img {
  margin-top: 2px;
}

.usp-btn--link {
  color: rgba(33, 33, 33, 0.85);
}

.usp-btn--link span {
  display: inline-block;
  transform: translateY(-1px);
}

.usp-card {
  border: 1px solid rgba(33, 33, 33, 0.35);
  padding: 1.35rem 1.55rem 1.55rem 1.55rem;
  background: transparent;
}

.usp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.95rem;
}

.usp-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.usp-card-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.usp-card-tag,
.usp-card-nr {
  color: rgba(33, 33, 33, 0.8);
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1rem;
}

.usp-card-title {
  color: #212121;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.18;
  margin: 0 0 0.7rem 0;
  max-width: 34ch;
}

.usp-card-text {
  color: rgba(33, 33, 33, 0.85);
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1.12rem;
  line-height: 1.6;
  margin: 0;
  max-width: 62ch;
}

.bg-color {
  background-color: #1b1a1a;
}

.services-section {
  padding: 6rem 8rem;
}

.services-text h2 {
  color: #f5f5f0;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  width: 80%;
  margin-top: 0;
}

.services-text p {
  color: #f5f5f0;
  font-weight: 200;
  font-size: 1.2rem;
}

.subheader {
  color: rgba(33, 33, 33, 0.75) !important;
  font-weight: 200;
  font-size: 1rem !important;
  margin: 0 0 0.7rem 0;
}

.subheader-d {
  color: rgba(173, 168, 168, 0.75) !important;
  font-weight: 200;
  font-size: 1rem !important;
  margin: 0 0 0.7rem 0;
}

.services-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
}

.services-item {
  padding: 1.4rem;
  border-radius: 15px;
  background-color: #8c8d88;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.services-content h3 {
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #f5f5f0;
  line-height: 2.4rem;
}

.services-content p {
  font-size: 1.2rem;
  font-weight: 200;
}

.faq-section {
  padding: 4rem 8rem 12rem 8rem;
}

.faq-text h2 {
  color: #f5f5f0;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  width: 80%;
  margin-top: 0;
}

.faq-text p {
  color: #f5f5f0;
  font-weight: 200;
  font-size: 1.2rem;
}

.faq-wrapper {
  width: 100%;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #4a4947;
  width: 100%;
  cursor: pointer;
}

.faq-item:first-child {
  border-top: 1px solid #4a4947;
  margin-top: 2rem;
}

.faq-item h4 {
  color: #f5f5f0;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 2.8rem 0;
}

.faq-icon {
  border: 1.8px solid #4a4947;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  border-radius: 2px;
}

.faq-content {
  color: #f5f5f0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 300ms ease,
    opacity 250ms ease;
}

.faq-content p {
  margin: 1rem 0 2rem 0;
  font-size: 1.3rem;
  font-weight: 200;
}

.faq-content a {
  margin: 1rem 0 2rem 0;
  font-size: 1.3rem;
  font-weight: 200;
  color: #d00c16;
  text-decoration: none;
  position: relative;
}

.adress-link {
  display: inline-block;
}

.faq-content a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.faq-content a:hover::before {
  transform: scaleX(1);
}

.faq-content.open {
  opacity: 1;
}

.faq-item[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.faq-item[aria-expanded="true"] + .faq-content {
  border-bottom: 1px solid #4a4947;
}

footer {
  position: relative;
  padding: 2rem 8rem;
}

.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: #212121;
  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: #212121;
  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: #212121;
  font-weight: 200;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #212121;
  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;
  }

  .hero-text p {
    width: 100%;
  }

  .about-section {
    margin: 6rem 1rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .data-layout {
    flex-direction: column;
  }

  .data-item + .data-item {
    border: none;
  }

  .data-item {
    padding: 0;
  }

  .usp-section {
    padding: 4rem 1rem;
  }

  .usp-intro {
    margin: 0 0 1.5rem 0;
  }

  .usp-title {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
  .rmv-m {
    display: none;
  }

  .usp-layout {
    flex-direction: column;
    gap: 4rem;
  }

  .usp-left,
  .usp-right {
    width: 100%;
  }

  .usp-left {
    position: relative;
    top: auto;
  }

  .services-section {
    padding: 6rem 1rem 4rem 1rem;
  }

  .services-layout {
    flex-direction: column;
  }

  .services-text h2 {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }

  .services-content p {
    margin-bottom: 0;
  }

  .faq-section {
    padding: 4rem 1rem 12rem 1rem;
  }

  .faqs-layout {
    margin-top: 4rem;
  }
  .faq-text h2 {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
  .faq-intro p {
    font-size: 1.3rem;
  }
  .faq-item {
    margin-top: 0;
  }
  .count-box {
    display: none;
  }
  .cross-box {
    width: 80px;
  }
  .question-box {
    padding-left: 1rem;
  }
  .faq-item h4 {
    font-size: 1.4rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .faq-content p {
    font-size: 1.3rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .faq-icon {
    display: none;
  }
  .answer-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  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;
  }
  .hero-text {
    left: 3rem;
    right: 3rem;
    bottom: 10rem;
    width: calc(100% - 6rem);
  }
  h1 {
    width: 100%;
    font-size: 2.5rem;
    line-height: 2.9rem;
  }

  .hero-text p {
    width: 100%;
  }

  .about-section {
    margin: 6rem 3rem 4rem 3rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .data-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .data-item h3 {
    margin-top: 0;
  }

  .data-item + .data-item {
    border: none;
  }

  .data-item {
    padding: 0;
  }

  .usp-section {
    padding: 4rem 3rem;
  }

  .usp-title {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  .rmv-m {
    display: none;
  }

  .usp-intro {
    margin: 0 0 1.5rem 0;
  }

  .usp-layout {
    flex-direction: column;
    gap: 4rem;
  }

  .usp-left,
  .usp-right {
    width: 100%;
  }

  .usp-left {
    position: relative;
    top: auto;
  }

  .services-section {
    padding: 6rem 3rem 4rem 3rem;
  }

  .services-layout {
    flex-direction: column;
  }

  .services-content h3 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .services-text h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  .services-content p {
    margin-bottom: 0;
  }

  .faq-section {
    padding: 4rem 3rem 12rem 3rem;
  }

  .faqs-layout {
    margin-top: 4rem;
  }
  .faq-text h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  .faq-intro p {
    font-size: 1.3rem;
  }
  .faq-item {
    margin-top: 0;
  }
  .count-box {
    display: none;
  }
  .cross-box {
    width: 80px;
  }
  .question-box {
    padding-left: 1rem;
  }
  .faq-item h4 {
    font-size: 1.4rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .faq-content p {
    font-size: 1.3rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .faq-icon {
    display: none;
  }
  .answer-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  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;
  }
  .about-section {
    margin: 6rem;
  }
  .usp-section {
    padding: 6rem;
  }
  .usp-title {
    font-size: 2.2rem;
  }
  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .services-section {
    padding: 6rem 6rem 4rem 6rem;
  }
  .faq-section {
    padding: 4rem 6rem 10rem 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;
  }
  .services-buttons .link-btn-wrapper {
    display: none;
  }

  .contact-section {
    padding: 6rem;
  }
  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;
  }
  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-section {
    padding: 6rem;
  }
  footer {
    padding: 4rem 6rem 1rem 6rem;
  }
  .footer-card {
    width: 30%;
  }
  .footer-links {
    width: 70%;
  }
  .navigation-links {
    width: 100%;
  }
}
