/* Home Section */
.home-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
  order: 1;
}

.home-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.home-section .content {
  display: flex;
  flex-direction: column;
}

.home-section .description {
  display: flex;
  flex-direction: column;
}

.home-section .summary {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: left;
}

.home-section .content-image {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  align-self: center;
  background-color: #f9f7f7;
}

.home-section .content-image img {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (min-width: 1280px) {
  .home-section {
    background-color: #f9f7f7;
    padding: 0;
    margin: 0 0 80px;
    max-width: 100%;
  }

  .home-section .container {
    max-width: 1200px;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
  }

  .home-section .content {
    justify-content: center;
    gap: 32px;
  }

  .home-section .title {
    font-size: 52px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
  }

  .home-section .description {
    gap: 16px;
  }

  .home-section .summary {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .home-section .register-request-button {
    width: 100%;
    max-width: 250px;
    height: var(--btn-height-mobile);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-radius: var(--border-radius);
    border: none;
    background-color: #df0611;
    color: #ffffff;
  }

  .home-section .register-request-button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .home-section .content-image {
    height: 503px;
    width: 556px;
  }

  .home-section .content-image img {
    height: 503px;
    width: 556px;
  }
}

/* Programs Section */
.programs-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.programs-section .programs-panel {
  display: flex;
  flex-direction: row;
  gap: var(--content-gap);

  overflow-y: hidden;
  overflow-x: auto;

  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.programs-section .programs-panel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.programs-section .program-card {
  width: 256px;
  height: 453px;

  display: flex;
  flex-direction: column;
  gap: var(--container-gap);

  border-radius: 12px;
  padding: 16px 16px 0px 16px;
}

.programs-section .card-green {
  background-color: #e7ebe4;
}

.programs-section .card-cream {
  background-color: #f9f7f7;
}

.programs-section .card-gray {
  background-color: #e5e9ec;
}

.programs-section .card-purple {
  background-color: #EEEDF2;
}

.programs-section .card-green-gray {
  background-color: #E3E8EC;
}

.programs-section .card-gray-purple {
  background-color: #E6EAED;
}

.programs-section .program-card .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.programs-section .program-card .summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.programs-section .program-card .summary h3 {
  font-size: var(--h2-font-size-mobile);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.programs-section .program-card .summary p {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: left;
}

.programs-section .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
}

.programs-section .cta {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .program-card button {
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #353535;
  background-color: transparent;
}

.programs-section .program-card button:hover {
  background-color: #FFFFFF;
}

.programs-section .program-card button span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #353535;
}

.programs-section .program-card .cta-link {
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #353535;
  background-color: transparent;
  cursor: pointer;
}

.programs-section .program-card .cta-link:hover {
  background-color: #ffffff;
}

.programs-section .program-card .cta-link span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #353535;
}

.programs-section .content-image {
  min-height: 161px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 16px;
}

.programs-section .content-image img {
  min-width: 224px;
  min-height: 161px;
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1280px) {
  .programs-section .container {
    gap: 60px;
  }

  .programs-section .programs-panel {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .programs-section .program-card {
    width: 376px;
    height: 342px;
    padding: 20px 0px 0px 20px;
    border-radius: 12px;
  }

  .programs-section .program-card .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--container-gap);
  }

  .programs-section .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
  }

  .programs-section .program-card .summary {
    gap: 16px;
  }

  .programs-section .program-card .summary h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
  }

  .programs-section .program-card .summary p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .programs-section .program-card .price {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    text-wrap: nowrap;
  }

  .programs-section .program-card button {
    max-width: 260px;
  }

  .programs-section .program-card button:hover {
    background-color: #ffffff;
  }

  .programs-section .program-card button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .programs-section .program-card .cta-link {
    max-width: 260px;
    width: 198px;
    cursor: pointer;
  }

  .programs-section .program-card .cta-link:hover {
    background-color: #ffffff;
  }

  .programs-section .program-card .cta-link span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .programs-section .right-bottom {
    max-width: calc(33.33% - 24px);
    height: 342px;
    padding: 20px 0px 0px 20px;
    border-radius: 12px;
  }

  .programs-section .right-bottom .content {
    height: 100%;
  }

  .programs-section .right-bottom .content-image {
    margin-top: 0;
    width: 158px;
    height: 159px;
  }

  .programs-section .right-bottom .content-image img {
    min-width: 158px;
    width: 158px;
    height: 159px;
  }

  .programs-section .right-bottom .details {
    flex-direction: row;
    justify-content: space-between;
    gap: 0px;
    margin: auto 0 0 0;
  }

  .programs-section .right-bottom .summary {
    margin: auto 0;
    margin-right: 16px;
  }

  .programs-section .right-bottom button {
    width: 198px;
  }
}


/* Swiper */
@media (min-width: 1280px) {
  .swiper-button-prev {
    background-image: url("../assets/address/arrow_left.png");
    background-size: 100% 100%;
  }

  .swiper-button-next {
    background-image: url("../assets/address/arrow_right.png");
    background-size: 100% 100%;
  }

  .swiper-button-next {
    right: 0px;
  }
}

/* Breadcrumb */
@media (min-width: 1280px) {
  .breadcrumb-section {
    background-color: #f9f7f7;
    padding: 20px 0 0;
  }
}

/* Certificate Section */
.certificate-section {
  order: 9;
  padding: 0px 0px var(--bottom-padding);
}

.certificate-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
  padding: 20px var(--padding-mobile) 30px;
  background-color: #f9f7f7;
}

.certificate-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.certificate-section .title span {
  color: #df0611;
}

.certificate-section .content {
  display: flex;
  flex-direction: column;
  gap: var(--inner-gap);
}

.certificate-section .description {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
}

.certificate-section .summary {
  display: flex;
  flex-direction: column;
  gap: var(--inner-gap);
}

.certificate-section .summary .detail-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: var(--padding-small);
}

.certificate-section .summary .detail-card p {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: center;
}

.certificate-section .content-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  align-self: center;
}

.certificate-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1280px) {
  .certificate-section {
    order: 8;
  }

  .certificate-section .container {
    padding: 0px;
    gap: 32px;
    border-radius: 12px;
    background-image: url("../assets/certificate/license.png");
    background-size: 100% 100%;
  }

  .certificate-section .content {
    width: 62%;
    padding: 75px 0px 0px 85px;
    gap: 32px;
  }

  .certificate-section .content-image {
    display: none;
  }

  .certificate-section .content-image img {
    display: none;
  }

  .certificate-section .summary {
    width: 70%;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 0px 0px 76px 85px;
  }

  .certificate-section .description {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
  }

  .certificate-section .summary .detail-card {
    max-height: 100px;
    max-width: 288px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
  }

  .certificate-section .summary .detail-card p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }
}

/* Features Section */
.features-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.features-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.features-section .features-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.features-section .feature-card {
  height: 109px;
  width: 100%;
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: 20px 16px;
}

.features-section .feature-card .content {
  display: flex;
  gap: 16px;
}

.features-section .feature-card .content-image {
  height: 16px;
  width: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-section .feature-card .description {
  display: flex;
}

.features-section .feature-card .description p {
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: 300;
  line-height: 23.4px;
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .features-section .container {
    flex-direction: row;
    width: 1200px;
    gap: 36px;
  }

  .features-section .title {
    width: 376px;
  }

  .features-section .features-panel {
    width: 788px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .features-section .feature-card {
    height: 109px;
    max-width: 376px;
    background-color: #f9f7f7;
    padding: 20px;
  }

  .features-section .feature-card .content {
    gap: 20px;
  }

  .features-section .feature-card .description {
    width: 288px;
  }

  .features-section .feature-card .content-image {
    width: 27.63px;
    height: 31.39px;
  }

  .features-section .feature-card .content-image img {
    width: 27.63px;
    height: 31.39px;
  }
}

/* How To Give Away Section */
.how-to-give-away-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 16px 16px 32px;
  background-color: #f9f7f7;
  border-radius: 20px;
}

.how-to-give-away-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;
}

.how-to-give-away-section .steps-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-to-give-away-section .step-card {
  min-width: 256px;
  height: 200px;
  padding: 16px 16px;
  border-radius: 20px;
}

.how-to-give-away-section .one {
  background-image: url("../assets/how-to-give/gift-certificates/mobile/background_1.png");
  background-size: 100% 100%;
}

.how-to-give-away-section .two {
  background-image: url("../assets/how-to-give/gift-certificates/mobile/background_2.png");
  background-size: 100% 100%;
}

.how-to-give-away-section .three {
  background-image: url("../assets/how-to-give/gift-certificates/mobile/background_3.png");
  background-size: 100% 100%;
}

.how-to-give-away-section .step-card .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-to-give-away-section .step {
  font-family: Ubuntu;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  text-align: left;
  color: #353535;
}

.how-to-give-away-section .step-card .description p {
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: 300;
  line-height: 23.4px;
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .how-to-give-away-section .container {
    flex-direction: column;
    width: 1200px;
    padding: 20px;
    gap: 60px;
  }

  .how-to-give-away-section .title {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
  }

  .how-to-give-away-section .steps-panel {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .how-to-give-away-section .step-card {
    min-width: 376px;
    width: 376px;
    height: 231px;
    padding: 20px;
  }

  .how-to-give-away-section .one {
    background-image: url("../assets/how-to-give/gift-certificates/desktop/background_1.png");
    background-size: 100% 100%;
  }
  
  .how-to-give-away-section .two {
    background-image: url("../assets/how-to-give/gift-certificates/desktop/background_2.png");
    background-size: 100% 100%;
  }
  
  .how-to-give-away-section .three {
    background-image: url("../assets/how-to-give/gift-certificates/desktop/background_3.png");
    background-size: 100% 100%;
  }

  .how-to-give-away-section .step-card .content {
    gap: 20px;
  }

  .how-to-give-away-section .step {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    text-align: left;
    color: #353535;
  }

  .how-to-give-away-section .step-card .description p {
    font-family: Ubuntu;
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    text-align: left;
    color: #353535;
  }
}

/* Gift Certificates Section */
.gift-certificates-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gift-certificates-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;
}

.gift-certificates-section .content {
  display: flex;
  flex-direction: column;
}

.gift-certificates-section .description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gift-certificates-section .summary {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.gift-certificates-section .content-image {
  width: 288px;
  height: 168px;
}

.gift-certificates-section .content-image img {
  width: 288px;
  height: 168px;
}

.gift-certificates-section .cta {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gift-certificates-section .cta button {
  width: 100%;
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #DF0611;
  background-color: #DF0611;
  color: #ffffff;
}

.gift-certificates-section .cta button {
  background-color: #E71F3D;
}

.gift-certificates-section .cta button span {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  text-align: left;
}

.gift-certificates-section .carousel {
  display: block;
}

.gift-certificates-section .slider-carousel {
  display: none;
}

@media (min-width: 1280px) {
  @keyframes heartbeat {
    0% {
      transform: scale(0);
    }
    25% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(1);
    }
    75% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  .gift-certificates-section .title {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
  }

  .gift-certificates-section .carousel {
    display: none;
  }
  
  .gift-certificates-section .slider-carousel {
    color: #ffffff;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 400px;
    display: block;
  }
  
  .gift-certificates-section .slider-container {
    position: relative;
    margin: 0 auto;
    width: 1200px;
    height: 400px;
    overflow: hidden;
  }
  
  .gift-certificates-section .slider-container .slider-content {
    position: relative;
    left: 50%;
    top: 50%;
    width: 600px;
    height: 400px;
    transform: translate(-50%, -50%);
  }
  
  .gift-certificates-section .slider-container .slider-content .slider-single {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  
  .gift-certificates-section .slider-container .slider-content .slider-single .slider-single-image {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 600px;
    height: 100%;
    max-height: 400px;
    transition: 700ms cubic-bezier(0, 0, 0, 0);
    transform: scale(0);
    opacity: 0;
  }
  
  .gift-certificates-section .slider-container
    .slider-content
    .slider-single.preactivede
    .slider-single-image {
    transform: translateX(-50%) scale(0);
  }
  
  .gift-certificates-section .slider-container .slider-content .slider-single.preactive {
    z-index: 1;
  }
  
  .gift-certificates-section .slider-container
    .slider-content
    .slider-single.preactive
    .slider-single-image {
    opacity: 0.7;
    filter: blur(4px);
    transform: translateX(-65%) scale(0.67);
  }
  
  .gift-certificates-section .slider-container .slider-content .slider-single.proactive {
    z-index: 1;
  }
  
  .gift-certificates-section .slider-container
    .slider-content
    .slider-single.proactive
    .slider-single-image {
    opacity: 0.7;
    filter: blur(4px);
    transform: translateX(65%) scale(0.67);
  }
  
  .gift-certificates-section .slider-container
    .slider-content
    .slider-single.proactivede
    .slider-single-image {
    transform: translateX(50%) scale(0);
  }
  
  .gift-certificates-section .slider-container .slider-content .slider-single.active {
    z-index: 2;
  }
  
  .gift-certificates-section .slider-container .slider-content .slider-single.active .slider-single-image {
    opacity: 1;
    transform: translateX(0%) scale(1);
  }
  
  .gift-certificates-section .slider-container .slider-left,
  .gift-certificates-section .slider-container .slider-right {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F7F7;
    border: 1px solid #5F6065;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transform: translateY(-50%);
  }
  
  .gift-certificates-section .slider-container .slider-left {
    right: 78%;
  }
  
  .gift-certificates-section .slider-container .slider-right {
    left: 78%;
  }
  
  .gift-certificates-section .slider-container .not-visible {
    display: none !important;
  }

  .gift-certificates-section .cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .gift-certificates-section .cta button  {
    width: 316px;
    height: var(--btn-height-mobile);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-radius: var(--border-radius);
    border: 1px solid #DF0611;
    background-color: #DF0611;
    color: #ffffff;
  }

  .gift-certificates-section .cta button:hover  {
    background-color: #E71F3D;
  }

  .gift-certificates-section .cta button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 500;
    line-height: 20.8px;
    text-align: left;
  }
}
