/*================================
Theme Name: Super CMS - Mark 1.0
Version: 1.0.2020
===================================*/

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Stack+Sans+Text&display=swap');


*/
* {
  outline: none !important;
}

body {
  background-color: #D7ECDD;
  font-family: "Atkinson Hyperlegible", sans-serif;
  color: #1D364C;

}

textarea {
  resize: none;
}

input {
  margin-bottom: 15px;
}

/* Enable this if u want a sticky header */

header {
  width: 100%;
  z-index:100;
  position: absolute;
  background: #fff;
  padding: 18px 0px;
  top: 0px;
}
h2.h1 {
  font-size: 45px;
}
div.title-description p {
  font-size: 20px;
}

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header.is-sticky {
  position: fixed;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

#logo img {
width: 240px;
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-header .logo-details {
  grid-column: 2 / 2;
  grid-row: 1 / 2;
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-column-span: 1;
  -ms-grid-row-span: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px;
  position: relative;
  z-index: 1;

}
.flex-header .menu-details {
  grid-column: 1 / 1;
  grid-row: 1 / 2;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column-span: 1;
  -ms-grid-row-span: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.flex-header > ul {
  margin-bottom: 3px;
}
.flex-header .show-on-mobile {
  display: none;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#primary-menu {
  align-items: center;
}
#primary-menu li > a {
  text-transform: capitalize;
  margin: 0px 20px;
  font-weight: 500; 
  letter-spacing: 1px;
  font-size:  16px;
  color:#212529;

}
#primary-menu li:last-child > a {
  background: #1D364C;
  padding: 10px 25px;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
#primary-menu li:last-child > a:hover {
  background: #30A5B2;
  border-color:#30A5B2;
  color: #fff;
  box-shadow: inset 0 0 0 2px #A5D8C4; 
  -moz-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in; 
}

#primary-menu li.current-menu-item > a  {
  color: #1D364C;
  font-weight: 600;

}

/* default dot hidden */
#primary-menu  li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #2aa9b8; /* teal color like image */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s ease;
}

/* active state */
#primary-menu  li.active::before {
  opacity: 1;
}


#primary-menu .sub-menu.dropdown-menu {
  border-radius:0px;
  border:0px;
  letter-spacing:1px;
  margin-top: 0px !important;
  background: transparent;
  padding: 3px;
}
#primary-menu .sub-menu.dropdown-menu a {
  background: #fff;
  margin-bottom: 2px;
  padding: 10px 25px;
}
#primary-menu .sub-menu.dropdown-menu a:hover {
  background: #14572c;
  color: #fff;
}
.sub-menu .dropdown-item.active, .sub-menu .dropdown-item:active {
  background: #14572c;
}
.sub-menu .dropdown-item:hover, .sub-menu .dropdown-item:focus {
  background: #14572c;
  color:#e2e2e2 !important;
}
.sub-menu.dropdown-menu a.dropdown-item.active {
  background: #14572c !important;
  color: #fff !important;
}
.dropdown:hover> .dropdown-menu {
  display: block;
}
.navbar-default {
  background-color: transparent;
  border:none;
}
.navbar {
  padding: 0px;
}
.dropdown-toggle::after {
  display: none;
}
#logo img {
width: 250px;
margin-bottom: 2em;
}
.content {
   min-height: calc(100vh - 180px); /* header + footer height */
   padding-top: 2em;
}
.content h1 {
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 45px;
  letter-spacing: 1px;
  color: #1D364C;
}
.mail-form, .card-info {
    border-radius: 12px;
    padding: 20px;
}
.mail-form .contact-box h4, .card-info h5 {
  letter-spacing: 1px;
}
.bg-white {
  background:#F5F7F6;
}
.btn-primary {
    background-color:#1D505A;
    border-color:#1D505A;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;  
    padding: 10px 25px;
    border-radius: 12px; 
    font-weight: bold; 
}

.btn-primary:hover, .btn-primary:active,.btn-primary:focus,.btn-primary:active:focus, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
  background: #30A5B2;
  border-color:#30A5B2;
  color: #fff;
  box-shadow: inset 0 0 0 2px #A5D8C4; 
  -moz-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in; 
}
.form-control:focus {
    color: #30A5B2;
    background-color: #fff;
    border-color: #30A5B2;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #30a5b238;
}
.bg-darkblue {
  background: #1D505A;
}
.contact-card {
      background: #30A5B2;
      color: #fff;
      border-radius: 12px;
      padding: 10px;
}
.icon-box {
  margin-right: 10px;
}
.icon-box img {
  width: 50px;
}
.contact-sub p, .contact-title p{
  font-size: 14px;
  letter-spacing: .8px;
}
.card-info h6 {
  letter-spacing: 1px;
}
.social-media .icon img {
    width: 35px;
}
hr.clight-blue {
  color: #30A5B2;
    height: 2px !important;
    background: #30A5B2;
    opacity: 1;
    margin-top: 4em;
}
/* footer */

footer {
  background-color: #32aab7;
  font-size: 14px;
  letter-spacing: .8px;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.mail-form .form-control {
  border: 1px solid #A5D8C4 !important;
}
.mail-form .form-label {
    margin-bottom: 0rem;
}
input::placeholder, textarea::placeholder {
  color: #B1C9B9 !important;
}
.banner {
  position: relative;
  align-items: center;
  display: flex;
}
.banner_content {
  position: absolute;
  width: 100%;
}
.banner_content h1 {
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 45px;
  letter-spacing: 1px;
  color: #1D364C;  
}
.banner_content .text {
  width: 50%;
}


/* FAQ Accordion Styles */
#faq-accordion .faq-question-btn::after {
  /* background-color: #035090 !important; */
  border-color: #000 !important;

}

.accordion-button:hover {
  background-color: inherit !important;
}
.accordion-button {
  border-radius: 0px;
}
.accordion-item {
  border:none;
}
.border-b {
  border:none;
  border-bottom:  2px solid #A5D8C4;
}
#faq-accordion .accordion-header {
  margin:0px;
  padding:0px;
}
#faq-accordion .accordion-header > button{
  font-size: 16px;
  margin:0px !important;
  padding-left:25px !important;
  font-weight: bold;
}
#faq-accordion .btn-primary:hover {
  box-shadow: none;
}

#faq-accordion .accordion-button.btn-primary::after,
#faq-accordion .accordion-button.primary-btn::after {
  filter: brightness(0) invert(0);
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(0);
}
.accordion-button:not(.collapsed) > span.head::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #2aa9b8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: 0.3s ease;
    left:10px;
    border: 2px solid #444;
}
#faq-accordion .faq-icon {
  font-weight: bold;
  font-size: 1.25rem;
  width: 20px;
  display: inline-block;
  text-align: center;
  transition: transform 0.2s ease;
  position: absolute;
  right: 20px;
  background-color: transparent !important;
}

#faq-accordion .accordion-body {
  border-top: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #dee2e6 !important;
}


.accordion-button:focus {
  background-color: inherit !important;
}

.accordion-button:not(.collapsed) {
  background-color: inherit !important;
  box-shadow: none !important;
}

#faq-accordion .btn-primary.collapsed {
  background-color: #D7ECDD !important;
  border-color: #D7ECDD !important;
}
#faq-accordion .btn-primary:hover, #faq-accordion .btn-primary:active, #faq-accordion .btn-primary:focus,#faq-accordion .btn-primary:active:focus,#faq-accordion .btn-primary.active, #faq-accordion .btn-primary.disabled,#faq-accordion .btn-primary[disabled] {
  box-shadow: none;
}
#faq-accordion .accordion-button:focus {
 border-color: none;
 box-shadow: none;
}
.member-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  position: relative;
  width: 25%;
}

/* Top section */
.member-card-top {
  padding: 20px 20px 0px 20px;
  position: relative;
  text-align: center;
  background: #2f9aa0;
  background: linear-gradient(
  to bottom,
  #fefefe 0%,
  #2f9aa0 100%
  );
}

.member-info h2 {
  margin: 0;
}

.member-title {

  font-size: 18px;
}

/* Bottom section */
.member-card-bottom {
  padding: 20px;
  position: relative;
}

.member-profile-img {
    width: 250px;
    border-radius: 8px;
}

.member-bio {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
}
.steps-card {
    width: 25%;
    background: #fff;   
    border-radius: 16px; 
}
.steps-card-top {
  padding:20px;
  background: #157C8C;
  color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.steps-card-bottom {
  padding:20px;
  background: #FFF;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.steps-title p {
  text-transform:   uppercase;;
  letter-spacing: .8px;
  font-size:18px;
}
.steps-card-bottom .title p {
  letter-spacing: .8px;
  font-size:18px;
}
.steps-description p {
  font-size:14px;

}  
.quiz h3 {
  width:  80%;
  font-weight: bold;
  letter-spacing: .8px;
}
.quiz div {
  width: 20%;
}
.quiz div a {
  width: 100%;
}

.bmi > div {
  width: 33.33%
}
.bmi-img {
  width: 240px;
}
.bmi-desc {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}
.btn-outline-secondary {
    background: #fff;
    border: 1px solid #ced4da;
    color: #1D364C;
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y:auto !important;
    padding: 0px !important;
    margin:0px !important;

}
.swal2-popup .swal2-content {
  font-size: 15px !important;
}
.swal2-popup .swal2-styled.swal2-confirm {
    border: 0;
    background: initial;
    background-color: #1D505A;
    font-size: 15px !important;
    padding: 10px 25px !important;
    line-height: 15px !important;
    background: #1D505A !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-size: 16px;
    border-radius:  12px;
}
div:where(.swal2-container) div:where(.swal2-popup) {
     font-size: 14px !important; 
}
.bmi-result {
  background: #8DD4E1;
  padding: 20px;
  border-radius: 12px;
}
.result-box {
  border:2px solid #8DD4E1;
  border-radius: 12px;
  background:  #8DD4E1;
}
.result-box .info {
    background: #fff;
    padding: 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.result-box .head {
    text-align: justify;
    background: #8DD4E1;
    padding: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
span.bmi-score {
  font-size: 35px;
    font-weight: bold;
    color: #fff;
}
span#genderText {
  font-size: 35px;
    font-weight: bold;
    color: #fff;
}
#resultLabel {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  letter-spacing: .8px;
}
.bmi .form-label {
  font-weight: bold;
}
.management {
  text-align:   left;
}
.management .item_icon {
    margin: 0px;
    padding-right: 10px;
    width: 36px;
    height: 32px;
    align-self: center;
}
.weight-info {
border-radius: 16px;
    overflow: hidden;
  }
#slider {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: #e5e5e5;
  border-radius: 10px;
  outline: none;
}

/* Chrome / Edge / Safari */
#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 55px;
  height: 20px;
  background: #9ed9ea;
  border: 2px solid #ffffff;
  border-radius: 12px;
  cursor: pointer;
  margin-top: -2px;
}

/* Firefox */
#slider::-moz-range-thumb {
  width: 55px;
  height: 20px;
  background: #9ed9ea;
  border: 2px solid #ffffff;
  border-radius: 12px;
  cursor: pointer;
}

#slider::-moz-range-track {
  height: 3px;
  background: #e5e5e5;
  border-radius: 10px;
}
.slider-input {
  background: #32aab7;
  padding: 20px;
}
.slider-result {
  padding: 30px 20px;
    background: #8DD4E1;
  
}
.instruction {
  padding: 20px;
}
  /* LEFT PANEL */
  .weight-info .left {
    width: 35%;
    background: linear-gradient(180deg, #1f7a83, #7bbac1);
    color: #fff;
  }

  .weight-info .left h3 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .8px;
    text-align: justify;
  }


.weight-display {
    font-weight: bold;
    text-align: left;
}


  .weight-display span#weight {
    font-size: 48px;
  }
  .weight-display span.kg {
    font-size: 22px;
  }


 .weight-info input[type=range] {
    width: 100%;
    margin: 20px 0;
  }

  .info-text {
    margin-bottom: 20px;
    font-weight: bold;
    color: #1D505A;
    font-size: 18px;
    text-align: justify;
  }

  .weight-info .result-box {
    background: #eee;
    color: #2c7a7b;
    padding: 0px;
    border-radius: 12px;
    font-size: 36px;
    font-weight: bold;
    text-align: justify;
    text-indent: 10px;
    margin-bottom: 20px;
  }

  .weight-info .result-box span {
    font-size: 48px;
  }



  /* RIGHT PANEL */
  .weight-info .right {
    width: 65%;
    background: #f2f2f2;
    padding: 30px;
  }

  .weight-info .right h1 {
    margin-top: 0;
    color: #2c3e50;
  }

  .feature {
    display: flex;
    margin: 15px 0;
  }

  .weight-info .icon {
    margin-right: 10px;
    color: #2c7a7b;
    font-size: 18px;
  }
  .learn .desc {
    width: 60%;
  }
   .learn .img-home {
    width: 40%;
  }
    .discover .desc {
    width: 70%;
  }
   .discover .img-home {
    width: 30%;
  }
  .program .desc {
    width: 60%;
  }
   .program .img-home {
    width: 40%;
    margin-right: 2em;
  }
  .our-care-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    position: relative;
    width: 25%;
  }
  .our-care-card-icon {
    background: #157C8C;
    padding: 20px;
  }
  .our-care-card-bottom {
    padding: 20px;
    background: #fff;
  }
  .our-care-title p {
      font-size: 22px;
    color: #fff;
    letter-spacing: .8px;
    margin-left: 10px;
  }
  .img-our-partner {
    background: #0075B2;
    padding: 2.5em;
  }
  .our-partner {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
  }
  .our-partner .desc {
    background: #fff;
    padding: 1em 2em;
  }

  .support-section {
    position: relative;
  }
    .support-box {
      background: #84c6d8;
      border-radius: 14px;
      min-height: 125px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 35px 0 380px;
      position: relative;
    }

    .support-image {
      position: absolute;
      left: 20px;
      bottom: 0;
      width: 320px;
    }

    .support-image img {
      width: 100%;
      display: block;
    }

    .support-title {
      font-size: 45px;
      font-weight: 800;
      color: #17324a;
      line-height: 1;
      margin-bottom: 0px;
    }

    .support-text {
      font-size: 22px;
    margin-left: 320px;
    padding: 2em 2.5em;
    font-weight: 700;

    }

    .home-section {
    position: relative;
  }
    .home-box {
      background: #84c6d8;
      border-radius: 14px;
      min-height: 125px;
      padding: 50px 380px 50px 30px;
      position: relative;
    }

    .home-image {
      position: absolute;
      right: 4em;
      bottom: 2em;
      width: 420px;
    }

    .home-image img {
      width: 100%;
      display: block;
    }

    .home-title {
      font-size: 45px;
      font-weight: 800;
      color: #17324a;
      line-height: 1;
      margin-bottom: 0px;
    }

    .home-text {
      font-size: 22px;
    margin-left: 320px;
    padding: 2em 2.5em;
    font-weight: 700;

    }
 .footer-bottom {
    background: #1D505A;
    padding-top: 20px;
    padding-bottom: 20px;
 }
 .footer-top {
    padding-top: 2em;
    padding-bottom: 2em;
 }
.menu-footer-menu-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 50px;
}

.menu-footer-menu-container ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.menu-footer-menu-container ul li a:hover {
    color: #1e505b;
}
.fmenu {
  margin-bottom: 10px;
}
    .about-section {
    position: relative;
  }
    .about-box {
      background: #84c6d8;
      border-radius: 14px;
      min-height: 125px;
      padding: 50px 380px 50px 30px;
      position: relative;
    }

    .about-image {
      position: absolute;
      right: 0em;
      bottom: 2em;
      width: 420px;
    }

    .about-image img {
      width: 100%;
      display: block;
    }

    .about-title {
      font-size: 45px;
      font-weight: 800;
      color: #17324a;
      line-height: 1;
      margin-bottom: 0px;
    }

    .about-text {
    font-size: 22px;
    margin-right: 30%;
    padding: 20px;
    font-weight: 700;

    }
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1400px) {
.banner_content h1 {
    font-size: 35px;
}

}
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
.banner_content h1 {
    font-size: 28px;
}
.banner_content .text p {
    font-size: 20px;
}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
    .banner_content h1 {
        font-size: 20px;
    }
    #primary-menu li {
      position: relative;
    }
    .steps-card {
        width: 100%;
    }
    .bmi > div {
        width: 100%;
    }
    .quiz h3 {
        width: 100%;
        font-weight: bold;
        letter-spacing: .8px;
    }
    .quiz div {
        width: 100%;
    }
    .support-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px 30px;
        gap: 20px;
        text-align: center;
      }

      .support-image {
        width: 220px;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
      }

      .support-title {
        font-size: 42px;
      }
      .support-text {
        margin: 0;
        font-size: 20px;
      }
      .support-text {
        background: #fff;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .banner_content h1 {
        font-size: 18px;
    }
    .banner_content .text p {
        font-size: 16px;
    }
       .weight-info .left {
    width:100%;
  }
  .weight-info .right {
    width: 100%;
  }
  .discover .desc {
    width: 100%;
    margin-bottom: 2em;
  }
  .discover .img-home {
    width: 100%;
   }
   .program .img-home {
    width: 100%;
    margin-right: 0em;
  }
  .program .desc {
    width: 100%;
  }
  .home-box {
    padding: 50px 30px 50px 30px;
    position: relative;
   }
   .home-image {
    position: relative;
    right: 0em;
    bottom: 2em;
    width: 420px;
  }
  .home-text {
    padding: 0px;
  }
  .footer-logo-details {
    text-align: center;
    margin-bottom: 10px;
  }
  .banner_content .text {
    width: 70%;
   }
  .menu-footer-menu-container ul {
    display: block;
    text-align: center;
  }
  .footer-bottom {
    text-align: center;
  }
  .learn .desc {
    width: 100%;
  }
 .learn .img-home {
    width: 100%;
    margin-top: 2em;
  }
  .our-care-card {

    width: 100%;
    margin-bottom: 2em;
}
.member-card {
    width: 100%;
    margin-bottom: 2em;
}
.about-image {
    position: relative;
    right: 0em;
    bottom: 2em;
    width: 100%;
}
.about-box {
    padding: 50px 30px 50px 30px;

}
.about-text {
    margin-right: 0%;
    text-align: center;
}

}
@media only screen and (max-width : 576px) {
.banner_content h1 {
        font-size: 30px;
    }
    .banner_content .text p {
        font-size: 26px;
    }
 

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
    
}


/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */

