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

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

  --primary-foreground: #4e4e4e;
  --primary-background: #eaf2f4;

  --primary-foreground-btn: #0e0e0e;
  --primary-background-btn: #ffee33;
  --primary-border-btn: #ffee33;

  --primary-foreground-btn-hover: #0e0e0e;
  --primary-background-btn-hover: #ffffff;
  --primary-border-btn-hover: #ffffff;

  --secondary-foreground-btn: #ffffff;
  --secondary-background-btn: transparent;
  --secondary-border-btn: #ffee33;

  --secondary-foreground-btn-hover: #121212;
  --secondary-background-btn-hover: #ffffff;
  --secondary-border-btn-hover: #ffffff;
}

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: 6px;
  text-align: center;
  background-color: var(--primary-background-btn);
  color: var(--primary-foreground-btn);
  padding: 16px 24px;
  border: 1px solid var(--primary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    border 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);
  border: 1px solid var(--primary-border-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: 6px;
  text-align: center;
  border: 1px solid var(--secondary-border-btn);
  background-color: var(--secondary-background-btn);
  color: var(--secondary-foreground-btn);
  padding: 16px 24px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

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

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

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

.terciary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 6px;
  text-align: center;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000;
  padding: 16px 24px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

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

.terciary-btn:hover svg path {
  stroke: #fff;
}

.terciary-btn:hover {
  border: 1px solid #fff;
  color: #ffffff;
  background-color: transparent;
}

.small-title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 4.9px;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-block;
  width: fit-content;
  position: relative;
}

.small-title::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--primary-highlight-foreground);
}

.section-title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.12px;
  margin-bottom: 32px;
}

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

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

@media screen and (min-width: 1280px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.section-header .section-title {
  margin-bottom: 0;
}

.section-header p {
  color: #737373;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.64px;
  margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
  .section-header {
    display: flex;
    gap: 64px;
    justify-content: space-between;
    align-items: center;
  }
  .section-header__title,
  .section-header__content {
    width: 50%;
  }
}

.primary-whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  border: 1px solid #00bb2d;
  background-color: #00bb2d;
  color: #fff;
  padding: 16px 24px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 50px;
  width: fit-content;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.primary-whatsapp-btn:hover {
  background-color: #121212;
  border: 1px solid #121212;
}

::-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: #1e1e1e;
    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;
  }
}

.cta {
  padding: 5rem 0;
  background-image: linear-gradient(90deg, #000 42.79%, rgba(0, 0, 0, 0) 100%),
    url(../images/cta.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta h2 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.92px;
  margin-bottom: 32px;
}

.cta p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 32px;
  max-width: 600px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 475px) {
  .cta-btn {
    flex-direction: row;
  }
}

.breadcrumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url(../images/breadcrumb.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 0 72px;
  margin-top: 120px;
}

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

.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;
  text-decoration: none;
}

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

.breadcrumb h2 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.44px;
}

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

@media screen and (min-width: 1024px) {
  .breadcrumb {
    margin-top: 172px;
  }
}

.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;
  }
}
