@font-face {
  font-family: "Inter";
  src: url(../fonts/inter-variable.ttf) format("truetype");
  font-display: swap;
}

:root {
  --primary-highlight-foreground: #eb3f3f;

  --primary-foreground: #000;
  --primary-background: #fff;

  --secondary-foreground: #292929;
  --secondary-background: #f0f0f0;

  --terciary-foreground: #999;

  --primary-foreground-btn: #0e0e0e;
  --primary-background-btn: #fff;

  --primary-foreground-btn-hover: #fff;
  --primary-background-btn-hover: #0e0e0e;

  --secondary-foreground-btn: #fff;
  --secondary-background-btn: #eb3f3f;

  --secondary-foreground-btn-hover: #fff;
  --secondary-background-btn-hover: #0e0e0e;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

img .responsive-img,
video .responsive-video {
  max-width: 100%;
  height: auto;
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

.container {
  margin: 0 auto;
  width: 90%;
}

@media (max-width: 576px) {
  .container {
    max-width: 90%;
  }
}

@media (min-width: 576px) {
  .container {
    width: 90%;
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    width: 90%;
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 90%;
    max-width: 1280px;
  }
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 8px;
  text-align: center;
  background-color: var(--primary-background-btn);
  color: var(--primary-foreground-btn);
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.primary-btn svg path {
  transition: stroke 0.3s ease-in-out;
}

.primary-btn:hover {
  background-color: var(--primary-background-btn-hover);
  color: var(--primary-foreground-btn-hover);
}

.primary-btn:hover svg path {
  stroke: var(--primary-foreground-btn-hover);
}

.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 8px;
  text-align: center;
  background-color: var(--secondary-background-btn);
  color: var(--secondary-foreground-btn);
  padding: 16px 32px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.secondary-btn svg path {
  stroke: #fff;
  transition: stroke 0.3s ease-in-out;
}

.secondary-btn:hover {
  color: var(--secondary-foreground-btn-hover);
  background-color: var(--secondary-background-btn-hover);
}

.secondary-btn:hover svg path {
  stroke: var(--secondary-foreground-btn-hover);
}

.small-title {
  color: #595959;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 800;
  line-height: 121.12%; /* 16.957px */
  letter-spacing: -0.28px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
  padding-left: 71px;
  margin-bottom: 20px;
}

.small-title__variant {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.28px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
  padding-left: 71px;
  margin-bottom: 20px;
}

.small-title::after,
.small-title__variant::after {
  content: "";
  position: absolute;
  left: 0;
  width: 55px;
  height: 7px;
  background: var(--primary-highlight-foreground);
}

.section-title {
  color: #292929;
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -1.92px;
  margin-bottom: 32px;
}

.section-title__variant {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -1.92px;
  margin-bottom: 32px;
}

.section-title strong,
.section-title__variant strong {
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 425px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-paragraph {
  color: #999;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 143%;
  letter-spacing: -0.64px;
  margin-bottom: 16px;
}

.section-paragraph__variant {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 143%;
  letter-spacing: -0.64px;
  margin-bottom: 16px;
}

.section-list {
  list-style-position: inside;
  list-style-type: none;
}

.section-list li {
  color: var(--terciary-foreground);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  position: relative;
  padding-left: 12px;
}

.section-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background-color: var(--terciary-foreground);
  border-radius: 50%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .section-header {
    flex-wrap: wrap;
    gap: 0;
  }
}

.section-header .section-title {
  max-width: 560px;
}

.section-header .section-paragraph {
  max-width: 415px;
}

.primary-whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  border: 2px solid var(--secondary-border-btn);
  background-color: var(--secondary-background-btn);
  color: var(--secondary-foreground-btn);
  padding: 16px 32px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 50px;
  width: 100%;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

.primary-whatsapp-btn:hover {
  background-color: var(--secondary-background-btn-hover);
  color: var(--secondary-foreground-btn-hover);
  border: 2px solid var(--secondary-border-btn-hover);
}

.primary-whatsapp-btn svg path {
  transition: fill 0.3s ease-in-out;
}

.primary-whatsapp-btn:hover svg path {
  fill: var(--secondary-foreground-btn-hover);
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
}

::-webkit-scrollbar {
  width: 12px;
  background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-highlight-foreground);
  border-radius: 50px;
  height: 50px;
}

.whatsapp-float__btn svg {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: #25d366;
  padding: 12px;
  fill: #fff;
  box-sizing: content-box;
  animation: animate-pulse 3s linear infinite;
}

.quickmenu-div {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .whatsapp-float__btn svg {
    bottom: 86px;
  }
}

@media only screen and (max-width: 992px) {
  .whatsapp-float__btn svg {
    display: none;
  }

  .quickmenu-div {
    background-color: var(--primary-highlight-foreground);
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 9;
  }

  .quickmenu-container {
    width: 80%;
    height: 58px;
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 204, 102, 0.7), 0 0 0 0 rgba(51, 204, 102, 0.7);
  }

  40% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 0 rgba(51, 204, 102, 0.7);
  }

  80% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
  }
}

@media only screen and (min-width: 1024px) {
  .whatsapp-float__btn {
    display: block;
  }
}

.mobile-contact {
  z-index: 10;
  display: block;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 72px;
  background-color: #d9d9d9;
}

.mobile-contact-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.mobile-contact__icon {
  background-color: #232340;
  border-radius: 50px;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-contact__icon svg path {
  fill: #fff;
}

@media only screen and (min-width: 1024px) {
  .mobile-contact {
    display: none;
  }
}

.breadcrumb {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url(../images/breadcrumb.webp);
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.76) 100%
    ),
    url(../images/breadcrumb.webp);

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15rem 0 4rem;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style-type: none;
  margin-bottom: 24px;
}

.breadcrumb-links li {
  display: flex;
  align-items: flex-end;
}

.breadcrumb-links-link a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.42px;
  text-decoration: none;
}

.breadcrumb-links-link.active {
  color: #eaf0e7;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.42px;
}

.breadcrumb h2 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.8px;
}

@media screen and (max-width: 425px) {
  .breadcrumb-links {
    flex-wrap: wrap;
  }
}

.cookieConsentContainer {
  z-index: 999;
  width: 350px;
  box-sizing: border-box;
  padding: 32px;
  background: rgb(0, 0, 0, 0.65);
  overflow: hidden;
  position: fixed;
  bottom: 120px;
  right: 30px;
  display: none;
}

.cookieTitle {
  color: #fff;
  font-size: 1.125rem;
  line-height: 22px;
  font-weight: bold;
}

.cookieConsentContainer .cookieTitle a {
  color: #fff;
  font-size: 1.125rem;
  line-height: 20px;
  display: block;
  font-weight: bold;
}

.cookieConsentContainer .cookieDesc p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.875rem;
  line-height: 20px;
  display: block;
  margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
  display: inline-flex;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: underline;
}

.cookieConsentContainer .cookieButton button {
  display: inline-block;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.875rem;
  background: #fff;
  box-sizing: border-box;
  padding: 16px 24px;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}

@media (max-width: 767px) {
  .cookieConsentContainer {
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
}
