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

:root {
  --primary-color: #3565b1;

  --primary-foreground-btn: #284c85;
  --primary-background-btn: #fff;
  --primary-border-btn: #fff;

  --primary-foreground-btn-hover: #fff;
  --primary-background-btn-hover: #13233e;
  --primary-border-btn-hover: #13233e;

  --secondary-foreground-btn: #e6f2f5;
  --secondary-background-btn: #3565b1;
  --secondary-border-btn: #3565b1;

  --secondary-foreground-btn-hover: #fff;
  --secondary-background-btn-hover: #13233e;
  --secondary-border-btn-hover: #13233e;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

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

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

.responsive-table {
  display: block;
  overflow: auto;
  width: 100%;
}

.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 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 16px;
  text-align: center;
  background-color: var(--primary-background-btn);
  color: var(--primary-foreground-btn);
  padding: 12px 24px;
  border: 1px solid var(--primary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  border-radius: 50px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s 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);
}

.secondary-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 16px;
  text-align: center;
  background-color: var(--secondary-background-btn);
  color: var(--secondary-foreground-btn);
  padding: 12px 24px;
  border: 1px solid var(--secondary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  border-radius: 50px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

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

@media screen and (min-width: 1024px) {
  .primary-btn,
  .secondary-btn {
    padding: 16px 32px;
  }
}

.section-header {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.section-header p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.small-title {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
  display: block;
}

.section-title {
  color: #424242;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin-bottom: 32px;
}

.section-title span,
.section-title__variant span {
  color: #3565b1;
}

.section-title__variant {
  color: #fff;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin-bottom: 32px;
}

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

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

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

@media screen and (min-width: 1024px) {
  .section-header {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 96px;
  }
}

.section-paragraph {
  color: #424242;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
}

.whatsapp-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 16px;
  text-align: center;
  background-color: #16a34a;
  color: #fff;
  padding: 3px 3px 3px 20px;
  border: 1px solid #16a34a;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.8px;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

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

.whatsapp-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

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

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

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

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

.whatsapp-float__btn {
  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;
}

.whatsapp-float__btn svg {
  width: 100%;
  height: 100%;
}

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

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

@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-bg {
  padding: 7.5rem 0;
  background: linear-gradient(
      0deg,
      rgba(0, 19, 45, 0.6) 0%,
      rgba(0, 19, 45, 0.6) 100%
    ),
    url(../images/breadcrumb.webp) lightgray 50% / cover no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.breadcrumb-bg h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.92px;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style-type: none;
  margin-bottom: 20px;
}

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

.breadcrumb-links-link a {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

.breadcrumb-links-link.active {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.breadcrumb li:first-of-type svg path {
  fill: #3565b1;
}

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

@media screen and (max-width: 768px) {
  .breadcrumb-bg h1 {
    font-size: 2.25rem;
  }
}

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

.breadcrumb-wave {
  position: absolute;
  bottom: -7px;
  pointer-events: none;
  left: 0;
  width: 100%;
}

.breadcrumb-wave svg {
  width: 100%;
  height: fit-content;
}

@media screen and (min-width: 768px) {
  .breadcrumb-bg {
    padding: 12.5rem 0;
  }
}

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

.cta {
  background-color: #284c85;
  position: relative;
}

.cta .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  max-width: 100%;
}

.cta-content {
  padding: 2.5rem 0;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

.cta-content p {
  color: #fff;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}

.cta-image {
  background: url(../images/cta.webp) lightgray 50% / cover no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 5%;
  position: relative;
  width: 100%;
  height: 375px;
  border-radius: 20px 20px 0 0;
}

.cta-image__content {
  padding: 24px;
  border-radius: 5px 25px;
  background: #ebf0f7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-image__content h3 {
  color: #13233e;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.cta-wave {
  position: absolute;
  bottom: -7px;
  pointer-events: none;
  left: 0;
  width: 100%;
}

.cta-wave svg {
  width: 100%;
  height: fit-content;
}

@media screen and (min-width: 768px) {
  .cta-image {
    height: 475px;
  }
  .cta-image {
    padding: 16px 48px;
  }
  .cta-image__content {
    max-width: 300px;
  }
}

@media screen and (min-width: 1024px) {
  .cta .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    width: 90%;
    max-width: 1440px;
  }
  .cta-content {
    padding: 5rem 0 10rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .cta-image {
    align-items: flex-end;
    border-radius: 10px 250px;
    transform: translateY(-24px);
    position: relative;
    height: 550px;
    box-shadow: 19px 17px 17.2px 0 rgba(0, 0, 0, 0.34);
    width: 100%;
    z-index: 1;
  }
}

.animate-fade-up,
.animate-fade-down,
.animate-fade-left,
.animate-fade-right,
.animate-scale {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
    background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.animate-fade-up {
  transform: translateY(30px);
}

.animate-fade-down {
  transform: translateY(-30px);
}

.animate-fade-left {
  transform: translateX(-30px);
}

.animate-fade-right {
  transform: translateX(30px);
}

.animate-scale {
  transform: scale(0.95);
}

.animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

.animate-delay-100 {
  transition-delay: 0.1s;
}
.animate-delay-150 {
  transition-delay: 0.15s;
}
.animate-delay-200 {
  transition-delay: 0.2s;
}
.animate-delay-250 {
  transition-delay: 0.25s;
}
.animate-delay-300 {
  transition-delay: 0.3s;
}
.animate-delay-350 {
  transition-delay: 0.35s;
}
