@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
}

:root {
  --font-Gabarito: "Gabarito", sans-serif;
  --font16: 16px;
  --font18: 18px;
  --font20: 20px;
  --font22: 22px;
  --font24: 24px;
  --font28: 28px;
  --font30: 30px;
  --font32: 32px;
  --font36: 36px;
  --font38: 38px;
  --font40: 40px;
  --font48: 48px;
  --font58: 58px;
  --font64: 64px;
  --font72: 72px;
  --light-cream: #ffede7;
  --sky-blue: #00a0e3;
  --gray54: #545454;
  --dark1c: #1c1c1c;
  --dark-blue: #003044;
  --white: #fff;
  --py100: 100px 0;
  --py60: 60px 0;
  --py64: 64px 0;
  --py40: 40px 0;
  --py30: 30px 0;
  --mb16: 16px;
  --mb8: 8px;
}
.health-checkup-top-banner {
  background-image: url(/images/health-checkup/health-checkup-top-banner.png);
  position: relative;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  align-items: center;
  height: 310px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.health-checkup-top-banner::before {
  position: absolute;
  content: "";
  background-color: #00a0e3;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
}
.health-checkup-top-banner .banner-title {
  display: block;
  z-index: 10;
}
.health-checkup-top-banner .banner-title h2 {
  font-family: var(--font-Gabarito);
  font-size: var(--font40);
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
}
.health-checkup-top-banner .banner-breadcrumbs {
  display: flex;
  justify-content: center;
  z-index: 10;
}
.health-checkup-top-banner .banner-breadcrumbs a {
  font-family: var(--font-Gabarito);
  font-size: var(--font18);
  font-weight: 400;
  text-align: center;
  color: var(--white);
  text-decoration: none;
}
.health-checkup-top-banner .banner-breadcrumbs span {
  font-family: var(--font-Gabarito);
  font-size: var(--font18);
  font-weight: 400;
  text-align: center;
  color: var(--white);
}
.health-checkup-details {
  padding: var(--py100);
}
.health-checkup-details-image img {
  width: 100%;
}
.health-checkup-details-heading h2 {
  font-family: var(--font-Gabarito);
  font-size: var(--font36);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark1c);
}
.health-checkup-details-heading .health-checkup-details-description p {
  font-family: var(--font-Gabarito);
  font-size: var(--font18);
  font-weight: 400;
  color: var(--gray54);
  margin-bottom: 30px;
}
.health-checkup-details-heading
  .health-checkup-details-description
  p:last-child {
  margin-bottom: 0;
}
.health-checkup-plans {
  padding: var(--py100);
  background-color: #e8f6ff;
}
.express-plan {
  background-color: #28b5de;
}
.advanace-plan {
  background-color: #ba569c;
}
.silver-plan {
  background-color: #8cb31f;
}
.gold-plan {
  background-color: #dd8f22;
}
.platinum-plan {
  background-color: #277ece;
}
.health-checkup-plans-name {
  border-radius: 8px 8px 0px 0px;
  padding: 24px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.health-checkup-plans-name div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.health-checkup-plans-name h2 {
  font-family: var(--font-Gabarito);
  font-size: var(--font36);
  font-weight: 600;
  margin: 0;
}
.health-checkup-plans-name h4 {
  font-family: var(--font-Gabarito);
  font-weight: 600;
  font-size: var(--font36);
  margin: 0;
}
.health-checkup-plans-name h4 span {
  font-family: var(--font-Gabarito);
  font-weight: 500;
  font-size: var(--font22);
}
.health-checkup-plan-details {
  background-color: var(--white);
  padding: 40px;
}
.health-checkup-plan-details-heading h2 {
  font-family: var(--font-Gabarito);
  font-weight: 500;
  font-size: var(--font22);
  color: var(--dark1c);
}
.health-checkup-plan-details-heading p {
  font-family: var(--font-Gabarito);
  font-weight: 400;
  font-size: var(--font22);
  color: var(--gray54);
  margin: 0 !important;
}
.health-checkup-plan-details button {
  background-color: var(--sky-blue);
  padding: 8px 20px;
  color: var(--white);
  border-radius: 38px;
  border: 0;
  font-weight: 400;
  font-family: var(--font-Gabarito);
  font-size: var(--font18);
  transition: all 0.3s linear;
}
.health-checkup-plan-details button span a {
  text-decoration: none;
  color: var(--white);
}
.health-checkup-plan-details button:hover img {
  transform: rotate(38deg);
  transition: all 0.3s linear;
}
.health-checkup-plan-details button:hover {
  background-color: #0082b9;
  box-shadow: 0px 8px 24px 0px #959da533;
  transition: all 0.3s linear;
}

.margin-top-card {
  margin-top: 30px !important;
}

@media (768px <=width <=1023px) {
  .health-checkup-top-banner .banner-title h2 {
    font-size: var(--font28);
    margin-bottom: 16px;
  }
  .health-checkup-top-banner .banner-breadcrumbs a {
    font-size: var(--font18);
  }
  .health-checkup-top-banner .banner-breadcrumbs span {
    font-size: var(--font18);
  }
  .health-checkup-details,
  .health-checkup-plans {
    padding: var(--py60);
  }
  .health-checkup-plans-name h4,
  .health-checkup-plan-details-heading h2,
  .health-checkup-plans-name h2,
  .health-checkup-details-heading h2 {
    font-size: var(--font24);
  }
  .health-checkup-details-heading .health-checkup-details-description p {
    margin-bottom: 20px;
  }
  .health-checkup-details-heading {
    margin-top: 16px;
  }
  .health-checkup-plans-name h4 span {
    font-size: var(--font18);
  }
  .margin-inside-card {
    margin-top: 30px !important;
  }
}
@media (568px <=width <=767px) {
  .health-checkup-top-banner .banner-title h2 {
    font-size: var(--font20);
    margin-bottom: 8px;
  }
  .health-checkup-top-banner .banner-breadcrumbs a {
    font-size: var(--font16);
  }
  .health-checkup-top-banner .banner-breadcrumbs span {
    font-size: var(--font16);
  }
  .health-checkup-details,
  .health-checkup-plans {
    padding: var(--py40);
  }
  .health-checkup-plans-name h4,
  .health-checkup-plan-details-heading h2,
  .health-checkup-plans-name h2,
  .health-checkup-details-heading h2 {
    font-size: var(--font24);
  }
  .health-checkup-details-heading .health-checkup-details-description p {
    font-size: var(--font16);
    margin-bottom: 12px;
  }
  .health-checkup-details-heading {
    margin-top: 16px;
  }
  .health-checkup-plans-name h4 span {
    font-size: var(--font16);
  }
  .margin-inside-card {
    margin-top: 30px !important;
  }
}
@media (480px <=width <=567px) {
  .health-checkup-top-banner .banner-title h2 {
    font-size: var(--font20);
    margin-bottom: 8px;
  }
  .health-checkup-top-banner .banner-breadcrumbs a {
    font-size: var(--font16);
  }
  .health-checkup-top-banner .banner-breadcrumbs span {
    font-size: var(--font16);
  }
  .health-checkup-details,
  .health-checkup-plans {
    padding: var(--py40);
  }
  .health-checkup-plan-details {
    padding: 24px;
  }
  .health-checkup-plans-name h4,
  .health-checkup-plan-details-heading h2,
  .health-checkup-plans-name h2,
  .health-checkup-details-heading h2 {
    font-size: var(--font24);
  }
  .health-checkup-details-heading .health-checkup-details-description p {
    font-size: var(--font16);
    margin-bottom: 12px;
  }
  .health-checkup-details-heading {
    margin-top: 16px;
  }
  .health-checkup-plans-name h4 span {
    font-size: var(--font16);
  }
  .margin-inside-card {
    margin-top: 30px !important;
  }
  .health-checkup-plan-details-heading p {
    font-size: var(--font20);
  }
  .health-checkup-top-banner {
    background-position: right;
  }
}
@media (320px <=width <=479px) {
  .health-checkup-top-banner .banner-title h2 {
    font-size: var(--font20);
    margin-bottom: 8px;
  }
  .health-checkup-top-banner .banner-breadcrumbs a {
    font-size: var(--font16);
  }
  .health-checkup-top-banner .banner-breadcrumbs span {
    font-size: var(--font16);
  }
  .health-checkup-details,
  .health-checkup-plans {
    padding: var(--py40);
  }

  .health-checkup-plan-details {
    padding: 24px;
  }

  .health-checkup-plans-name h4,
  .health-checkup-plan-details-heading h2,
  .health-checkup-plans-name h2,
  .health-checkup-details-heading h2 {
    font-size: var(--font24);
  }
  .health-checkup-details-heading .health-checkup-details-description p {
    font-size: var(--font16);
    margin-bottom: 12px;
  }
  .health-checkup-details-heading {
    margin-top: 16px;
  }
  .health-checkup-plans-name h4 span {
    font-size: var(--font16);
  }
  .margin-inside-card {
    margin-top: 30px !important;
  }
  .health-checkup-plans-name div {
    flex-direction: column;
    gap: 0;
  }
  .health-checkup-plan-details-heading p {
    font-size: var(--font20);
  }
  .health-checkup-top-banner {
    background-position: right;
  }
}
