:root {
  --ww-primary-color: #223450;
  --ww-secondary-color: #33b5c1;
  --ww-orange-color: #e78f54;
  --ww-white-color: #ffffff;

  --font-size-12: 0.75rem;
  --font-size-13: 0.813rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.938rem;
  --font-size-16: 1rem;
  --font-size-17: 1.063rem;
  --font-size-18: 1.125rem;
  --font-size-19: 1.188rem;
  --font-size-20: 1.25rem;
}

/*********** Header Start ***********/

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 8px 0;
  background-color: #ffffff;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header.header-scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  text-decoration: none;
  display: block;
}

.header .logo img {
  height: 90px;
  margin-right: 6px;
  width: 100px;
  object-fit: contain;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 3px;
  color: var(--ww-secondary-color);
}

/* Navigation */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;

  font-size: 16px;
  font-weight: 500;
  color: var(--ww-primary-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--ww-secondary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--ww-primary-color);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #5969f3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--ww-primary-color);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover > a {
  color: #013289;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: var(--ww-primary-color);
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--ww-primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--ww-primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*********** Header End ***********/
section {
  padding: 60px 0;
  overflow: hidden;
}
/*********** Banner Section ************/

.hero {
  width: 100%;
  height: 100vh;
  background-image: url("../images/banner-bg.png");
  background-size: cover;
  position: relative;
  padding-top: 106px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
}

/* Slider */
/* .carousel-items {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-items::after {
  content: "";
  background: rgb(0 0 0 / 50%);
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.carousel-item-content {
  text-align: center;
} */

.owl-dots{
  display: none;
}
/* Slider */
.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ww-primary-color);
  line-height: 60px;
}

.hero h2 {
  color: var(--ww-primary-color);
  font-size: 1.125rem;
  line-height: 30px;
}
.hero .hero-img img {
  width: 100%;
  height: 500px;
}
.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--ww-primary-color);
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}

.theme-gradient{
  color: var(--ww-secondary-color);
  /* background: linear-gradient(90deg, var(--ww-primary-color), var(--ww-secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.001); */
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 130px 0 60px 0;
  }

  .hero .hero-img {
    text-align: center;
    margin-top: 10px;
  }

  .hero .hero-img img {
    width: 80%;
  }

  section .page-title h2 {
    font-size: 26px;
    line-height: 36px;
  }
  section .sub-title {
    font-size: 18px;
  }

  section .ww-card {
    margin-bottom: 20px;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 25px;
    line-height: 40px;
  }

  .hero h2 {
    font-size: 17px;
  }

  .hero .hero-img img {
    width: 100%;
  }
  .ww-nav {
    flex-wrap: nowrap;
    display: block;
  }
  .ww-nav .nav-item .nav-link {
    width: 100%;
  }
  section .ww-tab-content .tab-pane {
    padding: 20px;
  }
  section .contact-form-box-inner {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* Button */

.ww-btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: transparent;
  outline: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  transition: 0.3s all ease;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: #333;
}
.ww-btn-filled {
  background: #34b8c3;
  color: #fff;
  border-color: #34b8c3;
}

.divider {
  width: 100%;
  background-color: #d8d8d8;
  height: 1px;
  margin: 20px 0px;
}

/* About Us */
.page-title {
  text-align: center;
  margin-bottom: 50px;
}
.page-title h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  color: var(--ww-primary-color);
  line-height: 60px;
}
.sub-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--ww-primary-color);
  line-height: 25px;
  margin-bottom: 12px;
}
.paragraph {
  color: #444444;
  font-size: var(--font-size-16);
  line-height: 24px;
}

.about-content-img figure {
  margin: 0px;
  width: 100%;
  height: 500px;
}
.about-content-img figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.ww-card {
  width: 100%;
  border-radius: 0.4rem;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.13);
  padding: 2rem;
  border-top: 4px solid var(--ww-orange-color);
  transform: translate3d(0, 0, 0);
  transition: all 0.3s linear;
  text-align: center;
}
.ww-card:hover {
  transform: translateY(-5px) translate3d(0, -5px, 0);
}
.ww-card-img figure img {
  width: 50px;
  height: 100%;
  object-fit: contain;
}
.ww-card-content {
  margin-top: 20px;
}
.ww-card-content h3 {
  font-size: var(--font-size-17);
  font-weight: 600;
  line-height: 20px;
  color: var(--ww-primary-color);
}

.section-bg {
  background-color: #f6f9fc;
}

/****** Services Offered ********/
.services {
  position: relative;
}

.ww-nav {
  justify-content: center;
}
.ww-nav .nav-item .nav-link {
  color: #666666;
  font-size: var(--font-size-14);
  padding: 15px 20px;
}
.ww-nav .nav-item .nav-link.active {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  color: var(--ww-primary-color);
  font-weight: 600;
}
.ww-nav .nav-item .nav-link span {
  display: block;
  margin-bottom: 8px;
}
.ww-nav .nav-item .nav-link span img {
  width: 40px;
}
.ww-tab-content .tab-pane {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 80px;
}
.ww-tab-description-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Contact */
.contact-box {
  text-align: center;
}

.contact-form-box {
  position: relative;
}
.contact-form-box-inner {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.05);
  padding: 50px;
}
.ww-form-control {
  margin-bottom: 20px;
}
.ww-form-control-label {
  font-size: var(--font-size-14);
  color: var(--ww-primary-color);
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 5px;
  display: block;
}
.form-input-control {
  position: relative;
}
.inputview {
  width: 100%;
  height: 42px;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  outline: none;
  padding: 4px 8px;
  font-size: var(--font-size-14);
  color: #000000;
}
.textareaview {
  height: 120px;
  resize: none;
  padding: 8px 8px;
}

.contact-box-content {
  margin-bottom: 20px;
}
.contact-box-inner {
  position: relative;
  padding: 20px 30px;
  display: flex;
  border-radius: 10px;
  transition: all 0.5s ease;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  align-items: flex-start;
}

.contact-box-icon {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
  min-width: 40px;
  height: 40px;
  width: 40px;
  background-color: var(--ww-orange-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-box-cont {
  position: relative;
  margin-left: 12px;
}
.contact-box-cont h3 {
  font-size: var(--font-size-18);
  margin-bottom: 10;
}
.contact-box-cont p {
  font-size: var(--font-size-14);
  color: var(--ww-primary-color);
  font-weight: 500;
  line-height: 18px;
  display: block;
  word-break: break-word;
}

/* footer */
.footer {
  text-align: center;
  padding: 50px 0px;
  background-image: url("../images/home_image_2.jpg");
  background-size: contain;
  background-position: center center;
  position: relative;
  border-top: 1px solid #d8d8d8;
}
.footer::after {
  content: "";
  background: #fffffffa;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-logo {
  width: 112px;
  margin: auto;
}
.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer p {
  font-size: var(--font-size-12);
  color: var(--ww-primary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}

.social-links li a {
  font-size: 20px;
  display: inline-block;
  background: transparent;
  color: var(--ww-secondary-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  text-decoration: none;
}
.social-links li a:hover {
  background-color: var(--ww-secondary-color);
  color: var(--ww-white-color);
  text-decoration: none;
}

/* Product */
.product-step {
  display: inline-block;
}
.product-step-iconbox {
  display: flex;
  position: relative;
}
.product-step-number {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  text-align: center;
  z-index: 1;
}
.product-step-number::after {
  background-color: #e4e4e4;
  bottom: 20px;
  content: "";
  height: calc(100% - 90px);
  left: 50%;
  min-height: 20px;
  position: absolute;
  transform: translateX(-50%);
  width: 1px;
}
.product-step-number span {
  align-items: center;
  background-color: var(--ww-secondary-color);
  border: 2px solid #0000;
  border-radius: 50%;
  display: flex;
  height: 50px;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 50%;
  width: 50px;
}
.ww-product-text {
  margin-bottom: 3rem;
  margin-left: 40px;
  text-align: left;
}

.ww-product-text h4 {
  font-size: 18px;
}

.product-step:hover .product-step-number span {
  border-color: var(--ww-secondary-color);
  background-color: #ffffff;
  color: var(--ww-secondary-color);
}
.product-step:last-child .product-step-number::after {
  display: none;
}

.clinicimg img {
  width: 100%;
}

.note {
  width: 100%;
  border: 1px solid var(--ww-secondary-color);
  border-radius: 6px;
  padding: 20px;
  background-color: rgb(51 181 193 / 3%);
}
.note p {
  color: var(--ww-primary-color);
  font-weight: 500;
}



.go-top{
  position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: var(--ww-primary-color);
    min-width: 42px;
    height: 42px;
    width: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ww-white-color);
    font-size: 28px;
    cursor: pointer;
    z-index: 100;
}


.hero .owl-carousel.owl-theme .owl-dots{
  display: block;
}
.hero .owl-carousel.owl-theme .owl-nav{
  display: none;
}

.hero .owl-carousel.owl-theme .owl-nav .owl-prev, 
.hero .owl-carousel.owl-theme .owl-nav .owl-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--ww-primary-color);
  z-index: 10;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0px;
  font-size: 25px;
}

.hero .owl-carousel.owl-theme .owl-nav .owl-prev{
  left: 5px;
}
.hero .owl-carousel.owl-theme .owl-nav .owl-next{
  right: 5px;
}
.hero .owl-carousel.owl-theme .owl-nav [class*='owl-']:hover{
color: #ffffff;
}