@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
html{
  scroll-behavior: smooth;
}
:root {
  --Font-Family-main: Poppins;
  --Font-weight-regular: Regular;
  --Font-weight-bold: Bold;
  --Font-weight-semibold: SemiBold;


  --Line-height-77: 120.31%; /* 77 / 64 */
  --Line-height-58: 120.83%; /* 58 / 48 */
  --Line-height-48: 120%;    /* 48 / 40 */
  --Line-height-38: 118.75%; /* 38 / 32 */
  --Line-height-29: 120.83%; /* 29 / 24 */
  --Line-height-30: 125%;    /* 30 / 24 */
  --Line-height-24: 120%;    /* 24 / 20 */
  --Line-height-22: 122.22%; /* 22 / 18 */
  --Line-height-21: 116.67%; /* 21 / 18 */
  --Line-height-17: 106.25%; /* 17 / 16 */
  --Line-height-12: 100%;    /* 12 / 12 */
  --Line-height-14: 116.67%; /* 14 / 12 */


  --Font-size-64: 64px;
  --Font-size-48: 48px;
  --Font-size-40: 40px;
  --Font-size-32: 32px;
  --Font-size-24: 24px;
  --Font-size-20: 20px;
  --Font-size-18: 18px;
  --Font-size-16: 16px;
  --Font-size-14: 14px;
  --Font-size-12: 12px;
  --Font-size-10: 10px;

  --Letter-spacing-0: 0px;
  
  
  
  
  /* ---------------------------------------------- */
  --Heading-xl-bold-Font-weight: var(--Font-weight-bold);
  --Heading-xl-bold-Font-size: var(--Font-size-64);
  --Heading-xl-bold-Line-height: var(--Line-height-77);
  --Heading-xl-bold-Letter-spacing: var(--Letter-spacing-0);
  --Heading-lg-bold-Font-weight: var(--Font-weight-bold);
  --Heading-lg-bold-Font-size: var(--Font-size-48);
  --Heading-lg-bold-Line-height: var(--Line-height-58);
  --Heading-lg-bold-Letter-spacing: var(--Letter-spacing-0);
  --Heading-md-bold-Font-weight: var(--Font-weight-bold);
  --Heading-md-bold-Font-size: var(--Font-size-32);
  --Heading-md-bold-Line-height: var(--Line-height-38);
  --Heading-md-bold-Letter-spacing: var(--Letter-spacing-0);
  --Heading-sm-bold-Font-weight: var(--Font-weight-bold);
  --Heading-sm-bold-Font-size: var(--Font-size-24);
  --Heading-sm-bold-Line-height: var(--Line-height-29);
  --Heading-sm-bold-Letter-spacing: var(--Letter-spacing-0);
  --Body-lg-regular-Font-weight: var(--Font-weight-regular);
  --Body-lg-regular-Font-size: var(--Font-size-20);
  --Body-lg-regular-Line-height: var(--Line-height-30);
  --Body-lg-regular-Letter-spacing: var(--Letter-spacing-0);
  --Body-md-regular-Font-weight: var(--Font-weight-regular);
  --Body-md-regular-Font-size: var(--Font-size-16);
  --Body-md-regular-Line-height: var(--Line-height-24);
  --Body-md-regular-Letter-spacing: var(--Letter-spacing-0);
  --Caption-lg-bold-Font-weight: var(--Font-weight-bold);
  --Caption-lg-bold-Font-size: var(--Font-size-14);
  --Caption-lg-bold-Line-height: var(--Line-height-17);
  --Caption-lg-bold-Letter-spacing: var(--Letter-spacing-0);
  --Caption-sm-bold-Font-weight: var(--Font-weight-bold);
  --Caption-sm-bold-Font-size: var(--Font-size-12);
  --Caption-sm-bold-Line-height: var(--Line-height-14);
  --Caption-sm-bold-Letter-spacing: var(--Letter-spacing-0);

}

 
 .dragging {
  cursor: grabbing;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 

.hero{
  background: #2B62AD;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.subheading {
  color: #FFF;
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(
    var(--Caption-lg-bold-Font-size, 14px),
    1.5vw,
    var(--Body-md-regular-Font-size, 16px)
  );
  font-style: normal;
  font-weight: var(--Caption-lg-bold-Font-weight, 700);
  line-height: clamp(
    var(--Caption-lg-bold-Line-height, 17px),
    2vw,
    var(--Body-md-regular-Line-height, 24px)
  );
  letter-spacing: var(--Caption-lg-bold-Letter-spacing, 0);
  text-transform: uppercase;
  margin: 0;
}


.heading {
  color: #FFF;
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(
    var(--Heading-lg-bold-Font-size, 48px),
    5vw,
    var(--Heading-xl-bold-Font-size, 64px)
  );
  font-style: normal;
  font-weight: var(--Heading-xl-bold-Font-weight, 700);
  line-height: clamp(
    var(--Heading-lg-bold-Line-height, 58px),
    6vw,
    var(--Heading-xl-bold-Line-height, 77px)
  );
  letter-spacing: var(--Heading-xl-bold-Letter-spacing, 0);
}

.blue-text{
  color: #57AFE5;
}
.modal-stars{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 0;
  top: -16%;
  left: 70%;
  transform: translate(120px, 150px);
}
.hero-description {
  color: #FFF;
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(
    var(--Body-md-regular-Font-size, 16px),
    2vw,
    var(--Body-lg-regular-Font-size, 20px)
  );
  font-style: normal;
  font-weight: var(--Body-lg-regular-Font-weight, 400);
  line-height: clamp(
    var(--Body-md-regular-Line-height, 24px),
    3vw,
    var(--Body-lg-regular-Line-height, 30px)
  );
  letter-spacing: var(--Body-lg-regular-Letter-spacing, 0);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.95);
  }
  60% {
    transform: scale(0.95);
  }
}
 
.inner-star {
  height: 200vh;
  width: 200vw;
  animation: pulse 5s ease-in-out infinite;
  transform-origin: center center;
}

.outer-star {
  height: 250vh;
  width: 250vw;
  animation: pulse 5s ease-in-out infinite;
  animation-delay: 2.5s; 
  transform-origin: center center;
}

.hero-buttons{
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

.anchor-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  min-width: 180px;
  padding: 12px 8px;
  border-radius: 8px;
  background: #D42842;
  box-shadow: 2px 2px 16px 0 rgba(35, 69, 118, 0.15);
  color: #FFF;
  font-family: var(--Font-Family-main, Poppins);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  flex-direction: column;
  transition: background 0.35s ease-in-out;
  border: none;
}

.top-text,
.bottom-text {
  transition: transform 0.35s ease-in-out;
  will-change: transform;
}

.bottom-text{
    transform: translateY(100%);
}
.top-text{
    transform: translateY(50%);
}
.anchor-button:hover {
  color: white;
  text-decoration: none;
  background: #C12038;
}
 
.anchor-button:hover .top-text{
  transform: translateY(-200%);
 
}
 
.anchor-button:hover .bottom-text{
  transform: translateY(-50%);

}

.subsection{
  padding: 6rem 0px;
  background: #FAFAFE;
}
.subsection.dark{
  background: #2B62AD;
}
.light-section-subheading{
  color: #BF3B4A;
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(14px, 5vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Caption-lg-bold-Line-height, 17px);
  letter-spacing: var(--Caption-lg-bold-Letter-spacing, 0);
  text-transform: uppercase;
  margin: 0px;
}

.contact-button{
  padding-inline: 50px;
}

/*
MAX=var(--Heading-md-bold-Font-size, 32px)
MIN=font-size: var(--Heading-md-bold-Font-size, 24px);
*/
.light-section-heading{
  color: #4B4B4B;
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
    font-size: clamp(24px, 5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Heading-md-bold-Line-height, 38px);
  letter-spacing: var(--Heading-md-bold-Letter-spacing, 0);
}

.light-section-description{
  color: #4B4B4B;
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(16px, 5vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-lg-regular-Line-height, 30px);
  letter-spacing: var(--Body-lg-regular-Letter-spacing, 0);
}

.light-section-subheading.dark{
  color: #57AFE5;
}

.light-section-heading.dark{
  color: #FFF;
}

.light-section-description.dark{
  color: #FFF;
}

@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-bottom {
  animation: fadeInFromBottom 1s ease-out both;
}
 .scroll-wrapper {
    padding-left: 10vw;
    padding-right: 10vw;
    user-select: none;
    padding-top: 20px;
    padding-bottom: 20px;
 
    will-change: scroll-position;
    scrollbar-width: none;
    overflow: scroll;
    display: flex;
    gap: 1rem;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-wrapper {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pan-x;
}

.scroll-container {
    display: flex;
    width: max-content;
    padding-right: 2rem;
    cursor: grab;
    gap: 1rem;
}

.card{
  display: flex;
  width: 300px !important;
  height: 378px !important;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid rgba(75, 75, 75, 0.10);
  background: #FFF;
  box-shadow: 2px 2px 16px 0 rgba(75, 75, 75, 0.10);
  overflow:hidden;
  position:relative;
  transition: all 0.3s ease-in-out;
}
 
.card-title{
  color: #4B4B4B;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(24px, 5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Heading-md-bold-Line-height, 38px);
  letter-spacing: var(--Heading-md-bold-Letter-spacing, 0);
  transition: all 0.3s ease-in-out;
}
.card-title.white{
  color: white;
}
.card-options-container{
  display: flex;
  justify-content: space-between;
  width: 100%;

}
.card-button{
  border: none;
  background: none;
  width: 26px !important;
  height: 26px !important;
}
.card-tags{
  display: flex;
   align-items: start;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
  gap: 8px;
}
.card-tags.away{
  transform: translateY(-100%);
  opacity: 0;
  display: none;
}
.green-tag{
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: #D0DDCE;
  color: rgba(29, 63, 23, 0.80);
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: var(--Caption-sm-bold-Font-size, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Caption-sm-bold-Line-height, 14px);
  letter-spacing: var(--Caption-sm-bold-Letter-spacing, 0);
  text-transform: uppercase;
}
.purple-tag{
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  color: rgba(36, 23, 63, 0.80);
  background: rgba(202, 189, 227, 0.90);
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: var(--Caption-sm-bold-Font-size, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Caption-sm-bold-Line-height, 14px);
  letter-spacing: var(--Caption-sm-bold-Letter-spacing, 0);
  text-transform: uppercase;
}

.card-stars {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(120px, 150px);
}

.card-outer-star {
  max-width: 280px;
  transition: all 0.3s ease-in-out;
  opacity: 3%;
   
}

.card-inner-star {
  max-width: 150px;
  transition: all 0.3s ease-in-out;
  opacity: 3%;
}
 
.card-stars.grow {
  opacity:100%;
  transform: translate(0px, 0px);
}

.card-stars.grow .card-outer-star {
  max-width: 500px;
  opacity: 100%;
}

.card-stars.grow .card-inner-star {
  max-width: 300px;
  opacity: 100%;
}
.card.blue{
background: #2D5895;

}
.card:hover{
  box-shadow: 2px 2px 16px 0 rgba(45, 88, 149, 0.30);
}
.card:not(.blue):hover .card-outer-star,
.card:not(.blue):hover .card-inner-star {
  opacity: 5%;
}

.card:hover .card-variant-button{
  transform: scale(1.2);
}
.card-title-container{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*padding-bottom: 40px;*/
}
.card.blue .card-title-container{
  padding-bottom: 32px;
}


.card-variant-active-svg,
.card-variant-hover-svg {
  position: absolute; 
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;  
}

.card-variant-hover-svg {
  opacity: 0;  
}

.card:hover .card-variant-active-svg {
  opacity: 0; 
}

.card:hover .card-variant-hover-svg {
  opacity: 1; 
}
.away-option{
  width: 100%
}
.away-option-buttons{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.away-option-button{
  color: #FFF;
  font-family: var(--Font-Family-main, Poppins);
  font-size: var(--Body-sm-regular-Font-size, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Body-sm-regular-Line-height, 21px);
  letter-spacing: var(--Body-sm-regular-Letter-spacing, 0);
  display: flex;
  height: 37px;
  padding: 8px;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.80);
  box-shadow: 2px 2px 16px 0 rgba(35, 69, 118, 0.15);
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}


.away-option-button .top-text{
  transform: translateY(60%);
}
 
.away-option-button .bottom-text{
  transform: translateY(110%);
}

.away-option-button:hover {
  color: #2B62AD;
  text-decoration: none;
  background: white;
}
 
.away-option-button:hover .top-text{
  transform: translateY(-200%);
}
 
.away-option-button:hover .bottom-text{
  transform: translateY(-75%);
}

.away-option-title{
  color: #FFF;
  text-align: start;
  font-family: var(--Font-Family-main, Poppins);
  font-size: var(--Body-sm-regular-Font-size, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-sm-regular-Line-height, 21px);
  letter-spacing: var(--Body-sm-regular-Letter-spacing, 0);
}

.away-options{
  transform: translateY(450%);
  transition: all 0.3s ease-in-out;

}
.away-options.show{
  transform: translateY(0%);
}

.card-button svg {
  position: absolute;
  bottom: 24px;
  right: 24px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  transform: rotate(90deg);
  pointer-events: none;
}
/* Estado padrão */
.card-button .actived-button {
  opacity: 1;
  transform: rotate(0deg);
  pointer-events: auto;
}

.card-button.active .actived-button {
  opacity: 0;
  transform: rotate(-90deg);
  pointer-events: none;
}

.card-button.active .away-button {
  opacity: 1;
  transform: rotate(0deg);
  pointer-events: auto;
}
.away-option-button.inactive{
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}
 

.card:hover .card-button:not(.active) .actived-button {
  opacity: 1;
  transform: rotate(0deg) scale(1.2);
  pointer-events: auto;
}

.card:hover .card-button:not(.active) .away-button {
  opacity: 0;
  transform: rotate(90deg) scale(1.2);
  pointer-events: none;
}


.card:hover .card-button.active .away-button {
  transform: rotate(0deg) scale(1.2);
}

button:focus{
  outline: none;
  border: none;
}
 
.program-card{
  display: flex;
  width: min-content;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
}

.program-card-title{
  color: #4B4B4B;
  text-align: center;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(18px, 5vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Heading-sm-bold-Line-height, 29px);
  letter-spacing: var(--Heading-sm-bold-Letter-spacing, 0);
  align-self: stretch;
}
.program-card-description{
  color: #4B4B4B;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(14px, 5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-md-regular-Line-height, 24px);
  letter-spacing: var(--Body-md-regular-Letter-spacing, 0);
}
.program-card-button{
  display: flex;
  width: 100%;
  height: 48px;
  padding: 12px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #2D5895;
  box-shadow: 2px 2px 16px 0 rgba(35, 69, 118, 0.15);
  color: #FFF;
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(14px, 5vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Body-md-regular-Line-height, 24px);
  letter-spacing: var(--Body-md-regular-Letter-spacing, 0);
  flex-direction: column;
  overflow:hidden;
  transition: all 0.3s ease-in-out;
  
}

.program-card-button .top-text{
  transform: translateY(65%);
}


.program-card-button:hover {
  color: #FFF;
  text-decoration: none;
  background: #1E4986;
}
 
.program-card-button:hover .top-text{
  transform: translateY(-200%);
}
 
.program-card-button:hover .bottom-text{
  transform: translateY(-75%);
}

.card-variant-title{
  color: #4B4B4B;

  /* Heading/sm */
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(22px, 5vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Heading-sm-bold-Line-height, 29px); /* 120.833% */
  letter-spacing: var(--Heading-sm-bold-Letter-spacing, 0);
}
.card-variant-details{
  color: #A1A0A0;
  font-family: var(--Font-Family-main, Poppins);
  font-size: var(--Body-sm-regular-Font-size, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-sm-regular-Line-height, 21px);
  letter-spacing: var(--Body-sm-regular-Letter-spacing, 0);
  margin: 0px;
}
.card:hover{
  text-decoration: none;
}

.mest-card svg {
  transition: opacity 0.3s ease;
}

.mest-card-buttons-container{
  position: relative;
  transition: all .3s ease-in-out;
  width: 34px;
  height: 34px;

}
.mest-card-buttons-container .card-variant-active-svg {
  opacity: 1;
  position: absolute;
  right: 50%;
}

.mest-card-buttons-container .card-variant-hover-svg {
  opacity: 0;
  
}
.mest-card:hover .card-variant-active-svg {
  opacity: 0;
}

.mest-card:hover .card-variant-hover-svg {
  opacity: 1;
}

.mest-card:hover .mest-card-buttons-container{
  transform: scale(1.2);
}




.card-variant-button{
  border: none;
  background: none;
  transition: all 0.3s ease-in-out;
  position:relative;
   
}
.card-variant{
  border-radius: 16px;
  border: 1px solid rgba(75, 75, 75, 0.10);
  background: #FFF;
  box-shadow: 2px 2px 16px 0 rgba(75, 75, 75, 0.10);
  transition: all 0.3s ease-in-out;
}
.card-variant:hover{
  box-shadow: 2px 2px 16px 0 rgba(45, 88, 149, 0.30);
}
.footer{
  position: relative;
  background: #2d5895;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mest-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card-3-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bottom-row {
  grid-column: span 3;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;  
}

.sm-full{
  flex: 1;
  height: fit-content;
  max-width: 377px;
}
.mest-card.full {
  grid-column: span 2;
}

@media (max-width: 800px) {
  .mest-card-container {
    grid-template-columns: 1fr;
  }

  .mest-card.full {
    grid-column: span 1;
  }
  .scroll-wrapper{
     padding-left: 1rem;
     padding-right: 1rem;
  }
}

.mest-card{
  display: flex;
  min-height: 117px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid rgba(75, 75, 75, 0.10);
  background: #FFF;
  box-shadow: 2px 2px 16px 0 rgba(75, 75, 75, 0.10);
  justify-content: space-between;
}
.mest-card-info{
  display: flex;
  flex-direction: column;
}

.mest-card-title{
  color: #4B4B4B;
  
  /* Heading/sm */
  font-family: var(--Font-Family-main, Poppins);
  font-size: clamp(18px, 5vw, 24px);

  font-style: normal;
  font-weight: 700;
  line-height: var(--Heading-sm-bold-Line-height, 29px); /* 120.833% */
  letter-spacing: var(--Heading-sm-bold-Letter-spacing, 0);
  margin: 0px;
}
.mest-card-description{
  color: #A1A0A0;
  font-family: var(--Font-Family-main, Poppins);
  font-size: var(--Body-sm-regular-Font-size, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-sm-regular-Line-height, 21px);
  letter-spacing: var(--Body-sm-regular-Letter-spacing, 0);
}

.mest-icon {
  transition: transform 0.2s ease-in-out;
  flex-shrink: inherit;
    
}
.mest-card:hover{
  text-decoration: none;
}
.mest-card:hover .mest-icon {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}

.progress-line{
  background: #D9D9D9;
  width: 100%;
  height: 6px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.progress-target{
  background: #2D5895;
  padding-inline: 5vw;
  height: 100%;
  flex-shrink: 0;
  position: absolute;
  left: 0%;
  transition: left;
  cursor:grab;
  touch-action: none
}


.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: rgba(0,0,0,0.5); 
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
  transform: scale(1);
}
.modal.closing {
    opacity: 0;
    transform: scale(0.95);
}
.modal-content {
  background-color: #fff;
  margin: auto;  
  padding: 32px 16px;
  border-radius: 16px;
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}




/* utils */
.z-2{
  z-index: 2;
}
.fit{
  width: fit-content;
  margin: auto;
}
.absolute{
  position: absolute;
}
.flex{
  display: flex;
}
.flex-col{
  flex-direction: column;
}
.gap-12{
  gap: 12px;
}
.gap-32{
  gap:32px;
}
.gap-40{
  gap:40px;
}
.flex-wrap{
  flex-wrap: wrap !important;
}
.justify-center{
    justify-content: center;
}
.items-center{
    align-items: center;
}
.gap-64{
  gap: 64px;
}
.gap-16{
  gap:16px;
}
.gap-24{
  gap:24px;
}
.p-70{
  padding: 70px 0px;
}
.w-100{
  width: 100%;
}
.w-fit-important{
  width: fit-content !important;
}
.text-center-important{
  text-align: center !important;
}

.px-24{
    padding-inline: 24px;
}


@media (max-width: 902px) {
  .card-3-container {
    grid-template-columns: 1fr;
    display: flex;
    justify-content: center;
   flex-direction: column;
    align-items: center;
  }

  .bottom-row {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 270px;
    height: 350px;
  }
  .sm-full{
    max-width: none;
    width: 100%;
  }
  .light-section-subheading{
    text-align:start;
  }
  .light-section-heading{
    text-align:start;
  }
  .light-section-description{
    text-align:start;
  }
  .hero{
    padding-top: 10rem;
  }
}

