@import "https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap";
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  -moz-osx-font-smoothings: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #f9fcff;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
section {
  position: relative;
}
section.section-home-hero {
    overflow: hidden;
    height: 475px;
    padding: 320px 0 32px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  @media (min-width: 992px) {
    section.section-home-hero {
      height: 572px;
      padding: 190px 0 170px;
    }
  }
  section.section-home-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    width: 596px;
    height: 195px;
    background-color: #3989cd;
    border-radius: 0 0 80px 80px;
    opacity: 0.3;
  }
  @media (min-width: 992px) {
    section.section-home-hero::before {
      left: calc(50% + 430px);
      height: 472px;
    }
  }
  section.section-home-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 20px;
    bottom: 120px;
    width: 89px;
    height: 79px;
    background-color: #4dbbc8;
    border-radius: 80px 0 40px 0;
    opacity: 0.6;
  }
  @media (min-width: 992px) {
    section.section-home-hero::after {
      right: calc(50% + 40px);
      bottom: 0;
      width: 143px;
      height: 121px;
      border-radius: 80px 0 0 0;
    }
  }
section.section-home-content {
  padding: 40px 0 0;
}
@media (min-width: 576px) {
  section.section-home-content {
    padding: 70px 0 0;
  }
}
section.section-product-hero {
  overflow: hidden;
  padding: 176px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  section.section-product-hero {
    padding: 220px 0;
  }
}
section.section-product-content {
  padding: 40px 0 0;
}
@media (min-width: 576px) {
  section.section-product-content {
    padding: 60px 0 0;
  }
}
.section-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}
.feature-wrapper {
  position: relative;
  overflow-x: auto;
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 70px 20px 100px;
}
@media (min-width: 992px) {
  .feature-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: initial;
  }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  min-width: 930px;
}
@media (min-width: 576px) {
  .feature-grid {
    grid-gap: 20px;
    min-width: 1180px;
  }
}
@media (min-width: 992px) {
  .feature-grid {
    grid-gap: 40px;
    min-width: 0;
  }
}
.feature-card {
  position: relative;
  padding: 55px 20px 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  border-radius: 20px;
}
@media (min-width: 576px) {
  .feature-card {
    padding: 75px 30px 50px;
    border-radius: 40px;
  }
}
.feature-card > img {
  position: absolute;
  z-index: 1;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.feature-card h3 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.5px;
  color: #121212;
}
.feature-card h3 + p {
  margin: 10px 0 0;
}
.feature-card p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: #121212;
  opacity: 0.7;
}
.tab-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 5px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  overflow-x: auto;
}
@media (min-width: 768px) {
  .tab-head {
    width: 100%;
    margin: 0 auto;
    padding: 5px;
    border-radius: 1000px;
    overflow-x: initial;
  }
}
.tab-nav {
  cursor: pointer;
  padding: 20px;
  border-radius: 1000px;
}
@media (min-width: 576px) {
  .tab-nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    min-width: 160px;
    padding: 20px 10px;
  }
}
@media (min-width: 768px) {
  .tab-nav {
    min-width: 0;
    padding: 20px;
  }
}
.tab-nav.active {
  background-color: #005caa;
}
.tab-nav.active p {
  font-weight: 700;
  opacity: 1;
  color: #fff;
}
.tab-nav p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #121212;
  opacity: 0.7;
}
.tab-body {
  position: relative;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tab-panel-card {
  padding: 20px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  border-radius: 20px;
}
@media (min-width: 576px) {
  .tab-panel-card {
    padding: 30px 0;
    border-radius: 40px;
  }
}
@media (min-width: 1200px) {
  .tab-panel-card {
    padding: 30px;
  }
}
.tab-panel-card + .accordion {
  margin: 20px 0 0;
}
.accordion {
  background-color: #fff;
  -webkit-box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  border-radius: 20px;
}
@media (min-width: 576px) {
  .accordion {
    border-radius: 40px;
  }
}
.accordion-group {
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  border-radius: 20px;
}
@media (min-width: 576px) {
  .accordion-group {
    border-radius: 40px;
  }
}
.accordion-group.active .accordion-group-head {
  padding: 0 0 20px;
}
.accordion-group.active .accordion-group-body {
  display: block;
}
.accordion-group.active .accordion-show {
  display: none;
}
.accordion-group.active .accordion-hide {
  display: block;
}
.accordion-group .accordion {
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.accordion-group .accordion:last-child {
  padding: 20px 0 0;
}
.accordion-group .accordion-head {
  padding: 0;
}
.accordion-group .accordion-body {
  padding: 10px 0 0;
}
.accordion-group .accordion-show {
  display: block;
}
.accordion-group .accordion-hide {
  display: none;
}
.accordion-group .accordion.active .accordion-head {
  padding: 0;
}
.accordion-group-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  grid-gap: 20px;
}
@media (min-width: 576px) {
  .accordion-group-head {
    grid-gap: 0;
  }
}
.accordion-group-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 576px) {
  .accordion-group-title {
    width: auto;
  }
}
.accordion-group-title p {
  margin: 0 0 0 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #121212;
}
.accordion-group-body {
  display: none;
}
.accordion.active .accordion-body {
  display: block;
}
.accordion.active .accordion-head {
  padding: 20px 20px 10px;
}
@media (min-width: 576px) {
  .accordion.active .accordion-head {
    padding: 30px 30px 10px;
  }
}
.accordion.active .accordion-head h3 {
  background-image: url(../icons/minus.svg);
}
.accordion-head {
  cursor: pointer;
  padding: 20px;
}
@media (min-width: 576px) {
  .accordion-head {
    padding: 30px;
  }
}
.accordion-head h3 {
  margin: 0;
  padding: 0 74px 0 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #121212;
  background-image: url(../icons/plus.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 100% center;
}
.accordion-body {
  display: none;
  padding: 0 20px 20px;
}
@media (min-width: 576px) {
  .accordion-body {
    padding: 0 30px 30px;
  }
}
.accordion-body p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #121212;
  opacity: 0.7;
}
@media (min-width: 576px) {
  .accordion-body p {
    padding: 0 74px 0 0;
  }
}
.accordion-body ol,
.accordion-body ul {
  margin: 0;
  padding: 0 0 0 20px;
}
@media (min-width: 576px) {
  .accordion-body ol,
  .accordion-body ul {
    padding: 0 74px 0 20px;
  }
}
.accordion-body ol li,
.accordion-body ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #121212;
  opacity: 0.7;
}
.accordion-body * + p {
  margin: 10px 0 0;
}
.btn {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  -webkit-box-shadow: 0;
  box-shadow: 0;
}
.btn:hover,
.btn:focus,
.btn:active {
  outline: 0;
}
.btn.btn-round {
  border-radius: 200px;
}
.btn.btn-blue {
  padding: 20px 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  color: #fff;
  background-color: #005caa;
}
.btn.btn-blue:hover {
  -webkit-box-shadow: 0 0 16px rgba(0, 92, 170, 0.4);
  box-shadow: 0 0 16px rgba(0, 92, 170, 0.4);
}
.btn.btn-icon-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #005caa;
}
.btn.btn-icon-blue:hover {
  -webkit-box-shadow: 0 0 16px rgba(0, 92, 170, 0.4);
  box-shadow: 0 0 16px rgba(0, 92, 170, 0.4);
}
.home-hero-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-hero-image {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .home-hero-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .home-hero-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 558px;
    flex: 0 0 558px;
    width: 558px;
  }
}
.home-hero-image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px;
}
@media (min-width: 992px) {
  .home-hero-image > img {
    border-radius: 40px 40px 0 0;
  }
}
.home-hero-image .hero-wave-white {
  position: absolute;
  z-index: 1;
  top: calc(100% - 184px);
  left: -37px;
  width: 74px;
}
@media (min-width: 576px) {
  .home-hero-image .hero-wave-white {
    left: -42px;
    width: 83px;
  }
}
@media (min-width: 992px) {
  .home-hero-image .hero-wave-white {
    left: -46px;
    width: 92px;
  }
}
.home-hero-image .hero-wave-white img {
  display: block;
  width: 100%;
}
.home-hero-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  padding: 32px 0 0;
}
@media (min-width: 992px) {
  .home-hero-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    padding: 0 0 0 64px;
  }
}
@media (min-width: 1200px) {
  .home-hero-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 558px);
    flex: 0 0 calc(100% - 558px);
    width: calc(100% - 558px);
  }
}
.home-hero-text h1 {
  margin: 0;
  font-weight: 400;
  font-size: 27px;
  line-height: 130%;
  letter-spacing: -1.75px;
  color: #fff;
}
@media (min-width: 576px) {
  .home-hero-text h1 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .home-hero-text h1 {
    font-size: 55px;
  }
}
.home-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.home-content-top h2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: -1.75px;
  color: #121212;
}
@media (min-width: 576px) {
  .home-content-top h2 {
    font-size: 44px;
  }
}
@media (min-width: 992px) {
  .home-content-top h2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    font-size: 55px;
  }
}
@media (min-width: 1200px) {
  .home-content-top h2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 569px;
    flex: 0 0 569px;
    width: 569px;
  }
}
.home-content-top-detail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  padding: 32px 0 0;
}
@media (min-width: 992px) {
  .home-content-top-detail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    padding: 15px 0 0 132px;
  }
}
@media (min-width: 1200px) {
  .home-content-top-detail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 569px);
    flex: 0 0 calc(100% - 569px);
    width: calc(100% - 569px);
  }
}
.home-content-top-detail p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #121212;
}
.home-content-top-detail p + .btn {
  margin: 34px 0 0;
}
.home-content-selling {
  position: relative;
  margin: 68px 0 0;
  padding: 175px 0 0;
}
@media (min-width: 576px) {
  .home-content-selling {
    padding: 462px 0 0;
  }
}
.home-content-selling .main-container {
  z-index: 3;
}
.home-content-product {
  position: relative;
}
@media (min-width: 992px) {
  .home-content-product {
    margin: 116px 0 0;
    padding: 0 0 110px;
  }
}
.home-content-product .main-container {
  z-index: 3;
}
.selling-wave {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
  width: 60px;
}
@media (min-width: 576px) {
  .selling-wave {
    width: 90px;
  }
}
@media (min-width: 992px) {
  .selling-wave {
    top: 64px;
    left: calc(50% - 510px);
    width: 126px;
  }
}
.selling-wave img {
  display: block;
  width: 100%;
}
.selling-doughnut {
  display: none;
  position: absolute;
  z-index: 2;
  top: 234px;
  left: calc(50% + 526px);
  width: 120px;
  height: 120px;
  border: 36px solid #fff;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .selling-doughnut {
    display: block;
  }
}
.selling-big-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(100% - 130px);
  width: 130px;
  height: 110px;
  background-color: #4dbbc8;
  border-radius: 0 0 0 40px;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .selling-big-box {
    left: calc(100% - 260px);
    width: 260px;
    height: 220px;
    border-radius: 0 0 0 80px;
  }
}
@media (min-width: 992px) {
  .selling-big-box {
    top: -116px;
    left: calc(50% + 372px);
    width: 412px;
    height: 412px;
    border-radius: 80px;
  }
}
.selling-small-box {
  position: absolute;
  z-index: 1;
  top: 190px;
  left: 0;
  width: 130px;
  height: 110px;
  background-color: #4dbbc8;
  border-radius: 0 40px 0 0;
  opacity: 0.6;
}
@media (min-width: 576px) {
  .selling-small-box {
    top: 367px;
    width: 260px;
    height: 220px;
    border-radius: 0 80px 0 0;
  }
}
@media (min-width: 992px) {
  .selling-small-box {
    top: 293px;
    left: calc(50% - 720px);
    width: 348px;
    height: 294px;
  }
}
.selling-bg img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px 0 0 0;
}
@media (min-width: 576px) {
  .selling-bg img {
    height: 587px;
    border-radius: 80px 0 0 0;
  }
}
@media (min-width: 1440px) {
  .selling-bg img {
    left: calc(50% - 720px);
    width: calc(50vw + 720px);
  }
}
.product-wave {
  display: none;
  position: absolute;
  z-index: 2;
  top: 250px;
  left: calc(50% - 766px);
}
@media (min-width: 992px) {
  .product-wave {
    display: block;
  }
}
.product-wave-white {
  display: none;
  position: absolute;
  z-index: 2;
  bottom: 315px;
  left: calc(50% + 638px);
}
@media (min-width: 992px) {
  .product-wave-white {
    display: block;
  }
}
.product-doughnut {
  display: none;
  position: absolute;
  z-index: 2;
  top: 1042px;
  left: calc(50% - 780px);
  width: 120px;
  height: 120px;
  border: 36px solid #005caa;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .product-doughnut {
    display: block;
  }
}
.product-big-box {
  display: none;
  position: absolute;
  z-index: 0;
  bottom: -110px;
  left: calc(50% + 372px);
  width: 978px;
  height: 978px;
  background-color: #4cb9c6;
  opacity: 0.3;
  border-radius: 80px 80px 0 0;
}
@media (min-width: 992px) {
  .product-big-box {
    display: block;
  }
}
.product-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product-title h2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  font-weight: 400;
  font-size: 26px;
  line-height: 130%;
  letter-spacing: -1px;
  color: #121212;
}
@media (min-width: 576px) {
  .product-title h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .product-title h2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .product-title h2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 458px;
    flex: 0 0 458px;
    width: 458px;
  }
}
.product-title-description {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  padding: 32px 0 0;
}
@media (min-width: 992px) {
  .product-title-description {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    padding: 0 0 0 96px;
  }
}
@media (min-width: 1200px) {
  .product-title-description {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 458px);
    flex: 0 0 calc(100% - 458px);
    width: calc(100% - 458px);
  }
}
.product-title-description p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #121212;
}
.product-title-description p + p {
  margin: 28px 0 0;
}
.product-wrapper {
  position: relative;
  overflow-x: auto;
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 60px 20px 40px;
}
@media (min-width: 576px) {
  .product-wrapper {
    padding: 60px 20px 70px;
  }
}
@media (min-width: 992px) {
  .product-wrapper {
    width: 100%;
    margin: 130px 0 0;
    padding: 0;
    overflow-x: initial;
  }
}
.product-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-gap: 15px;
  min-width: 1560px;
}
@media (min-width: 992px) {
  .product-grid {
    grid-gap: 40px;
    min-width: 0;
  }
}
.product-card {
  position: relative;
  overflow: hidden;
  width: 300px;
  background-color: #fff;
  -webkit-box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  box-shadow: 0 30px 100px rgba(57, 79, 136, 0.15);
  border-radius: 20px;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 992px) {
  .product-card {
    border-radius: 40px;
    width: calc((100% - 80px) / 3);
  }
}
.product-card:hover {
  -webkit-box-shadow: 0 30px 100px rgba(57, 79, 136, 0.3);
  box-shadow: 0 30px 100px rgba(57, 79, 136, 0.3);
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.product-card.bg::before {
  content: "";
  display: block;
  position: relative;
  z-index: 1;
  padding-top: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.7)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.product-card.bg:nth-child(1)::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.2)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.product-card.bg h3,
.product-card.bg p {
  color: #fff;
}
.product-card > img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.product-card-text > a {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-card-text h3 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.5px;
  color: #121212;
}
.product-card-text h3 + p {
  margin: 20px 0 0;
}
.product-card-text p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #121212;
}
.product-card-text .btn {
  margin: auto 0 0;
}
.product-hero-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-hero-text h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 400;
  font-size: 27px;
  line-height: 130%;
  letter-spacing: -1.75px;
  text-align: center;
  color: #fff;
}
.product-hero-text p {
  text-align: center;
  color: #fff;
}
@media (min-width: 576px) {
  .product-hero-text h1 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .product-hero-text h1 {
    font-size: 55px;
  }
}
.product-title-box-1 {
  position: absolute;
  z-index: 0;
  top: 20px;
  left: -20px;
  width: 100px;
  height: 103px;
  background-color: #4cb9c6;
  border-radius: 80px 0 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .product-title-box-1 {
    left: 120px;
  }
}
.product-title-box-2 {
  display: none;
  position: absolute;
  z-index: 0;
  top: -20px;
  right: 80px;
  width: 108px;
  height: 91px;
  background-color: #4cb9c6;
  border-radius: 0 80px 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .product-title-box-2 {
    display: block;
  }
}
.product-breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.product-breadcrumb ul li + li {
  position: relative;
  margin: 0 0 0 5px;
  padding: 0 0 0 10px;
}
.product-breadcrumb ul li + li::before {
  content: "/";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product-breadcrumb ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  color: #005caa;
}
.product-breadcrumb ul li a span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #005caa;
}
.product-breadcrumb ul li > span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #121212;
}
.product-top {
  position: relative;
  overflow: hidden;
}
.product-top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.product-top-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .product-top-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .product-top-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 568px;
    flex: 0 0 568px;
    width: 568px;
  }
}
.product-top-text > h2 {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: -1.75px;
  color: #121212;
}
@media (min-width: 576px) {
  .product-top-text > h2 {
    font-size: 46px;
    margin: 60px 0 0;
  }
}
@media (min-width: 992px) {
  .product-top-text > h2 {
    font-size: 55px;
  }
}
.product-top-text > h2 + p {
  margin: 20px 0 0;
}
.product-top-text > p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #121212;
}
.product-top-text > p + .btn {
  margin: 34px 0 0;
}
.product-top-image {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .product-top-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .product-top-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 568px);
    flex: 0 0 calc(100% - 568px);
    width: calc(100% - 568px);
  }
}
.product-top-image.myguard {
  min-height: 328px;
}
@media (min-width: 576px) {
  .product-top-image.myguard {
    min-height: 558px;
  }
}
.product-top-image.accidental-care {
  min-height: 300px;
}
@media (min-width: 576px) {
  .product-top-image.accidental-care {
    min-height: 508px;
  }
}
.product-top-image.critical-care {
  min-height: 300px;
}
@media (min-width: 576px) {
  .product-top-image.critical-care {
    min-height: 508px;
  }
}
.product-top-image.health-care {
  min-height: 0;
}
@media (min-width: 992px) {
  .product-top-image.health-care {
    min-height: 566px;
  }
}
.product-feature {
  position: relative;
  margin: 50px 0 0;
  padding: 0;
  background-color: rgba(77, 187, 200, 0.2);
}
@media (min-width: 992px) {
  .product-feature {
    padding: 55px 0 80px;
  }
}
.product-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f9fcff;
}
.product-faq {
  position: relative;
  padding: 40px 0;
}
@media (min-width: 576px) {
  .product-faq {
    padding: 80px 0;
  }
}
.product-faq-doughnut {
  display: none;
  position: absolute;
  z-index: 1;
  top: 70px;
  left: calc(50% - 780px);
  width: 120px;
  height: 120px;
  border: 36px solid #005caa;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .product-faq-doughnut {
    display: block;
  }
}
.product-faq-big-box {
  display: none;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: calc(50% + 372px);
  width: 696px;
  height: 50%;
  background-color: #4cb9c6;
  opacity: 0.3;
  border-radius: 80px 80px 0 0;
}
@media (min-width: 992px) {
  .product-faq-big-box {
    display: block;
  }
}
.product-faq-wave {
  display: none;
  position: absolute;
  z-index: 2;
  top: calc(50% + 300px);
  left: calc(50% + 637px);
}
@media (min-width: 992px) {
  .product-faq-wave {
    display: block;
  }
}
.product-faq-wrapper h2 {
  margin: 0;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  text-align: left;
  letter-spacing: -1px;
  color: #121212;
}
@media (min-width: 576px) {
  .product-faq-wrapper h2 {
    text-align: center;
    font-size: 40px;
  }
}
.product-faq-wrapper h2 + p {
  margin: 14px auto 0;
}
@media (min-width: 576px) {
  .product-faq-wrapper h2 + p {
    margin: 28px auto 0;
  }
}
.product-faq-wrapper p {
  max-width: 724px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #121212;
}
@media (min-width: 576px) {
  .product-faq-wrapper p {
    text-align: center;
  }
}
.product-faq-tab {
  margin: 40px 0 0;
}
@media (min-width: 576px) {
  .product-faq-tab {
    margin: 60px 0 0;
  }
}
.product-faq-tab .tab-head {
  position: sticky;
  z-index: 9;
  top: 0;
  max-width: 1020px;
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .product-faq-tab .tab-head {
    position: relative;
    margin: 0 auto;
  }
}
.product-faq-tab .tab-body {
  margin: 40px 0 0;
}
.product-faq-tab .tab-panel {
  max-width: 886px;
  margin: 0 auto;
}
.product-faq-tab .tab-panel.tab-panel-table {
  max-width: 1020px;
}
.product-faq-tab .accordion + .accordion {
  margin: 20px 0 0;
}
.product-faq-tab .accordion-group .accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.product-faq-tab .accordion-group .accordion + .accordion {
  margin: 0;
}
.product-register {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}
.product-register::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.7)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.product-register-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-register-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-register h2 {
  max-width: 628px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #fff;
}
.product-register h2 + .btn {
  margin: 30px 0 0;
}
.myguard-wave-1 {
  position: absolute;
  z-index: 1;
  top: 192px;
  left: -30px;
  width: 74px;
}
@media (min-width: 576px) {
  .myguard-wave-1 {
    width: 83px;
  }
}
@media (min-width: 992px) {
  .myguard-wave-1 {
    top: 360px;
    left: calc(50% + 400px);
    width: 92px;
  }
}
.myguard-wave-1 img {
  display: block;
  width: 100%;
  opacity: 0.5;
}
.myguard-wave-2 {
  position: absolute;
  z-index: 1;
  top: 192px;
  right: -30px;
  width: 74px;
}
@media (min-width: 576px) {
  .myguard-wave-2 {
    width: 83px;
  }
}
@media (min-width: 992px) {
  .myguard-wave-2 {
    top: 360px;
    right: calc(50% + 400px);
    width: 92px;
  }
}
.myguard-wave-2 img {
  display: block;
  width: 100%;
  opacity: 0.5;
}
.myguard-box-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  background-color: #4cb9c6;
  border-radius: 0 0 80px 0;
  opacity: 0.3;
}
.myguard-box-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #4cb9c6;
  border-radius: 0 0 0 40px;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .myguard-box-2 {
    width: 150px;
    height: 150px;
    border-radius: 0 0 0 80px;
  }
}
.myguard-box-3 {
  display: none;
  position: absolute;
  bottom: 0;
  left: calc(50% - 352px);
  width: 72px;
  height: 72px;
  background-color: #4cb9c6;
  border-radius: 80px 0 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .myguard-box-3 {
    display: block;
  }
}
.myguard-image {
  position: absolute;
  top: 0;
  right: -100px;
  width: calc(100% + 100px);
  height: 328px;
}
@media (min-width: 576px) {
  .myguard-image {
    height: 558px;
  }
}
@media (min-width: 992px) {
  .myguard-image {
    right: auto;
    left: 90px;
    width: 658px;
  }
}
@media (min-width: 1200px) {
  .myguard-image {
    left: 185px;
  }
}
.myguard-image-big {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: calc(100% - 60px);
  height: 300px;
}
@media (min-width: 576px) {
  .myguard-image-big {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .myguard-image-big {
    width: 530px;
  }
}
.myguard-image-big img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px;
}
@media (min-width: 576px) {
  .myguard-image-big img {
    border-radius: 80px;
  }
}
.myguard-image-small {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 175px;
}
@media (min-width: 576px) {
  .myguard-image-small {
    width: 310px;
  }
}
.myguard-image-small img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .myguard-image-small img {
    border-radius: 40px;
  }
}
.myguard-image-wave {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 90px;
  width: 60px;
}
@media (min-width: 576px) {
  .myguard-image-wave {
    top: 55px;
    left: 135px;
    width: 126px;
  }
}
@media (min-width: 992px) {
  .myguard-image-wave {
    left: 185px;
  }
}
.myguard-image-wave img {
  display: block;
  width: 100%;
}
.accidental-wave-1 {
  display: none;
  position: absolute;
  z-index: 1;
  top: 192px;
  left: -30px;
  width: 74px;
}
@media (min-width: 576px) {
  .accidental-wave-1 {
    display: block;
    width: 83px;
  }
}
@media (min-width: 992px) {
  .accidental-wave-1 {
    top: 360px;
    left: calc(50% + 400px);
    width: 92px;
  }
}
.accidental-wave-1 img {
  display: block;
  width: 100%;
  opacity: 0.5;
}
.accidental-wave-2 {
  display: none;
  position: absolute;
  z-index: 1;
  top: 192px;
  right: -30px;
  width: 74px;
}
@media (min-width: 576px) {
  .accidental-wave-2 {
    display: block;
    width: 83px;
  }
}
@media (min-width: 992px) {
  .accidental-wave-2 {
    top: 360px;
    right: calc(50% + 400px);
    width: 92px;
  }
}
.accidental-wave-2 img {
  display: block;
  width: 100%;
  opacity: 0.5;
}
.accidental-box-1 {
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 72px;
  height: 72px;
  background-color: #4cb9c6;
  border-radius: 80px 0 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .accidental-box-1 {
    left: calc(50% - 352px);
  }
}
.accidental-box-2 {
  position: absolute;
  bottom: 226px;
  right: -20px;
  width: 108px;
  height: 91px;
  background-color: #4cb9c6;
  border-radius: 0 80px 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .accidental-box-2 {
    right: calc(50% - 330px);
  }
}
.accidental-care-image {
  position: absolute;
  top: 0;
  right: -20px;
  width: calc(100% + 40px);
  height: 300px;
}
@media (min-width: 576px) {
  .accidental-care-image {
    height: 508px;
  }
}
@media (min-width: 992px) {
  .accidental-care-image {
    right: auto;
    left: 70px;
    width: 598px;
  }
}
@media (min-width: 1200px) {
  .accidental-care-image {
    left: 155px;
  }
}
.accidental-care-image img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px 0 0 0;
}
@media (min-width: 576px) {
  .accidental-care-image img {
    border-radius: 80px 0 0 0;
  }
}
.accidental-care-box {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 110px;
  background-color: #4dbbc8;
  opacity: 0.6;
  border-radius: 20px 0 0 0;
}
@media (min-width: 576px) {
  .accidental-care-box {
    width: 220px;
    height: 185px;
    border-radius: 80px 0 0 0;
  }
}
.critical-wave-1 {
  position: absolute;
  z-index: 1;
  top: 108px;
  left: -30px;
  width: 74px;
}
@media (min-width: 576px) {
  .critical-wave-1 {
    width: 83px;
  }
}
@media (min-width: 992px) {
  .critical-wave-1 {
    top: 256px;
    left: calc(50% - 326px);
    width: 92px;
  }
}
.critical-wave-1 img {
  display: block;
  width: 100%;
}
.critical-box-1 {
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 132px;
  height: 121px;
  background-color: #4cb9c6;
  border-radius: 80px 0 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .critical-box-1 {
    left: calc(50% - 412px);
  }
}
.critical-box-2 {
  position: absolute;
  bottom: 226px;
  right: -20px;
  width: 108px;
  height: 91px;
  background-color: #4cb9c6;
  border-radius: 0 80px 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .critical-box-2 {
    right: calc(50% - 330px);
  }
}
.critical-care-image {
  position: absolute;
  top: 0;
  right: -20px;
  width: calc(100% + 40px);
  height: 300px;
}
@media (min-width: 576px) {
  .critical-care-image {
    height: 508px;
  }
}
@media (min-width: 992px) {
  .critical-care-image {
    right: auto;
    left: 70px;
    width: 598px;
  }
}
@media (min-width: 1200px) {
  .critical-care-image {
    left: 155px;
  }
}
.critical-care-image > img {
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px 0 0 0;
}
@media (min-width: 576px) {
  .critical-care-image > img {
    border-radius: 80px 0 0 80px;
  }
}
.critical-care-wave {
  display: none;
  position: absolute;
  z-index: 1;
  top: 335px;
  left: -60px;
  width: 126px;
}
@media (min-width: 992px) {
  .critical-care-wave {
    display: block;
  }
}
.critical-care-box {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 110px;
  background-color: #1f70b5;
  opacity: 0.4;
  border-radius: 20px 0 0 0;
}
@media (min-width: 576px) {
  .critical-care-box {
    width: 220px;
    height: 185px;
    border-radius: 80px 0 0 0;
  }
}
.health-wave-1 {
  position: absolute;
  z-index: 1;
  top: 192px;
  right: -30px;
  width: 74px;
}
@media (min-width: 576px) {
  .health-wave-1 {
    width: 83px;
  }
}
@media (min-width: 992px) {
  .health-wave-1 {
    top: 360px;
    right: calc(50% - 492px);
    width: 92px;
  }
}
.health-wave-1 img {
  display: block;
  width: 100%;
  opacity: 0.5;
}
.health-box-1 {
  position: absolute;
  bottom: 226px;
  left: -20px;
  width: 108px;
  height: 91px;
  background-color: #4cb9c6;
  border-radius: 80px 0 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .health-box-1 {
    left: calc(50% - 330px);
  }
}
.health-care-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  position: relative;
  top: auto;
  left: auto;
  width: calc(100% + 40px);
  height: 300px;
  margin: 0 -20px;
}
@media (min-width: 576px) {
  .health-care-grid {
    height: 450px;
  }
}
@media (min-width: 768px) {
  .health-care-grid {
    width: 680px;
    height: 566px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .health-care-grid {
    position: absolute;
    top: 0;
    left: 36px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .health-care-grid {
    left: 72px;
  }
}
.health-care-image-1 {
  grid-column: 2;
  grid-row: 2;
}
.health-care-image-1 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.health-care-image-2 {
  grid-column: 2;
  grid-row: 5;
}
.health-care-image-2 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.health-care-image-3 {
  grid-column: 3;
  grid-row: 3;
  grid-column-end: span 2;
  grid-row-end: span 2;
}
.health-care-image-3 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.health-care-image-4 {
  grid-column: 5;
  grid-row: 1;
  grid-column-end: span 2;
  grid-row-end: span 2;
}
.health-care-image-4 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.health-care-image-5 {
  grid-column: 5;
  grid-row: 5;
  grid-column-end: span 2;
}
.health-care-image-5 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.health-care-box-1 {
  grid-column: 1;
  grid-row: 3;
  background-color: #ffebdf;
}
.health-care-box-2 {
  grid-column: 2;
  grid-row: 4;
  background-color: #dfffea;
}
.health-care-box-3 {
  grid-column: 3;
  grid-row: 1;
  grid-column-end: span 2;
  grid-row-end: span 2;
  background-color: #dfe6ff;
}
.health-care-box-4 {
  grid-column: 4;
  grid-row: 5;
  background-color: #dfe6ff;
}
.health-care-box-5 {
  grid-column: 5;
  grid-row: 3;
  grid-column-end: span 2;
  grid-row-end: span 2;
  background-color: #dff8ff;
}
.hospital-wave-1 {
  position: absolute;
  z-index: 1;
  top: calc(100% - 184px);
  left: -30px;
  width: 74px;
}
@media (min-width: 576px) {
  .hospital-wave-1 {
    width: 83px;
  }
}
  .hero-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-bg::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.8)),
      to(rgba(0, 0, 0, 0))
    );
    background-image: -o-linear-gradient(
      bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%
    );
    background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .hero-bg img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .hero-bg img.hero-desktop {
    display: none;
  }
  @media (min-width: 576px) {
    .hero-bg img.hero-desktop {
      display: block;
    }
  }
  .hero-bg img.hero-mobile {
    display: block;
  }
  @media (min-width: 576px) {
    .hero-bg img.hero-mobile {
      display: none;
    }
  }

@media (min-width: 992px) {
  .hospital-wave-1 {
    left: calc(50% - 320px);
    width: 92px;
  }
}
.hospital-wave-1 img {
  display: block;
  width: 100%;
  opacity: 0.5;
}
.hospital-box-1 {
  position: absolute;
  bottom: 226px;
  right: -20px;
  width: 108px;
  height: 91px;
  background-color: #4cb9c6;
  border-radius: 0 80px 0 0;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .hospital-box-1 {
    right: calc(50% - 330px);
  }
}
.hospital-box-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 129px;
  height: 191px;
  background-color: #4cb9c6;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .hospital-box-2 {
    width: 500px;
    height: 367px;
  }
}
.hospital-hero-wave {
  position: absolute;
  z-index: 1;
  top: calc(100% - 184px);
  left: calc(100% - 46px);
  width: 74px;
}
@media (min-width: 576px) {
  .hospital-hero-wave {
    width: 83px;
  }
}
@media (min-width: 992px) {
  .hospital-hero-wave {
    left: calc(50% + 234px);
    width: 92px;
  }
}
.hospital-hero-wave img {
  display: block;
  width: 100%;
}
.benefit-table {
  margin: 10px 0 0;
  overflow-x: auto;
}
.benefit-table + .benefit-table {
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.benefit-table-container {
  overflow-x: auto;
}
.benefit-table-wrapper {
  display: inline-block;
  padding: 0 20px;
}
@media (min-width: 576px) {
  .benefit-table-wrapper {
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .benefit-table-wrapper {
    padding: 0;
  }
}
.benefit-table-wrapper table {
  width: 100%;
  min-width: 960px;
  border-spacing: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.benefit-table-wrapper table tbody tr:not(.bg-blue) td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.benefit-table-wrapper table tbody tr:not(.bg-blue) td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
.benefit-table-wrapper table tbody tr:not(.bg-blue) td.w-auto {
  border-left: 0;
}
.benefit-table-wrapper table tbody tr.bg-blue {
  color: #fff;
  background-color: #0293d5;
}
.benefit-table-wrapper table tbody tr.bg-blue:first-child td:first-child {
  border-radius: 15px 0 0 0;
}
.benefit-table-wrapper table tbody tr.bg-blue:first-child td:last-child {
  border-radius: 0 15px 0 0;
}
.benefit-table-wrapper table tbody tr.bg-blue + tr td {
  border-top: 0;
}
.benefit-table-wrapper table tbody tr.bg-grey {
  background-color: #f7fafc;
}
.benefit-table-wrapper table tbody tr td {
  padding: 15px;
  font-size: 14px;
  line-height: 28px;
}
.benefit-table-wrapper table tbody tr td:first-child:not(.w-auto) {
  width: 364px;
}
.benefit-table table {
  width: 100%;
  min-width: 668px;
  border-spacing: 0;
}
.benefit-table table thead tr th {
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #121212;
}
.benefit-table table thead tr th:first-child {
  width: 200px;
}
.benefit-table table tbody tr:nth-child(odd) {
  background-color: #f7fafc;
}
.benefit-table table tbody tr td {
  padding: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #121212;
}
.benefit-table table tbody tr td:first-child {
  width: 200px;
}
.benefit-table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 668px;
  padding: 15px;
  background-color: #0293d5;
  border-radius: 15px;
}
.benefit-table-header h4 {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
}
.benefit-table-header h4:first-child {
  width: 200px;
}
.benefit-table-header h4:last-child {
  width: calc(100% - 200px);
}
.benefit-accordion {
  background-color: #f7fafc;
  border-radius: 15px;
}
.benefit-accordion.active .benefit-accordion-body {
  display: block;
}
.benefit-accordion-container {
  display: none;
}
.benefit-accordion-container h3 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #121212;
}
.benefit-accordion-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 20px 0 0;
}
.benefit-accordion-head {
  cursor: pointer;
  padding: 15px;
  background-image: url(../icons/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
}
.benefit-accordion-head h4 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #121212;
}
.benefit-accordion-body {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.benefit-accordion-body h5 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #121212;
}
.benefit-accordion-top {
  padding: 15px;
}
.benefit-accordion-detail {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.benefit-accordion-detail h5 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #121212;
}
.benefit-accordion-detail h5 + .benefit-accordion-list {
  margin: 20px 0 0;
}
.benefit-accordion-detail h5 + .benefit-accordion-title {
  margin: 16px 0 0;
}
.benefit-accordion-title + .benefit-accordion-list {
  margin: 8px 0 0;
}
.benefit-accordion-title p {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 28px;
  color: #121212;
}
.benefit-accordion-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.benefit-accordion-list + .benefit-accordion-list {
  margin: 12px 0 0;
}
.benefit-accordion-list + .benefit-accordion-title {
  margin: 12px 0 0;
}
.benefit-accordion-icon {
  width: 12px;
  padding: 4px 0 0;
}
.benefit-accordion-icon img {
  width: 100%;
}
.benefit-accordion-text {
  width: calc(100% - 24px);
  padding: 0 0 0 12px;
}
.benefit-accordion-text p {
  margin: 0;
  font-size: 13px;
  line-height: 28px;
  color: rgba(18, 18, 18, 0.56);
}
.benefit-accordion-text p + p {
  margin: 4px 0 0;
}
.benefit-accordion-text p span {
  color: #121212;
}
.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}
.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.pop-up-content-wrap {
  margin-bottom: 2.5em;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 20px;
  top: 5px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #005caa;
}
@media screen and (min-width: 800px) {
  .custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0;
    height: 100%;
  }
}
@media screen and (max-width: 799px) {
  .custom-model-inner {
    margin-top: 45px;
  }
}
