:root {
  --greencolor: #19838a;
  --darkgreencolor: #30a683;
  --lightgreencolor: #97f8e5;
  --greenfilter: invert(37%) sepia(99%) saturate(868%) hue-rotate(149deg)
    brightness(86%) contrast(99%);
  --greenrgb: rgb(1 138 149 / 90%);
  --lightgreenrgb: rgb(1 138 149 / 80%);
  --btn2color: #343434;
  --lightbluecolor: #3086c11f;
  --inputbg: #44c09b1f;
}

body {
  /* font-family: "Segoe UI" !important; */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  background-color: white;
}

.ck-editor-content a {
  color: var(--greencolor);
  text-decoration: underline;
  font-style: italic;
  font-weight: 700;
}

.ck-editor-content a strong {
  font-weight: 700;
}

.badge-success {
  background-color: var(--greencolor) !important;
}

/* FIXED HEADER WORK START */
.new-header {
  background-color: white;
  transition: all 0.3s 0s linear;
}

.new-header.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  animation: fadefix 0.3s 0s 1 linear;
  z-index: 1000;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.new-header.fixed .bottom-header {
  height: 0px;
  overflow: hidden;
}

@keyframes fadefix {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* HEADER WORK START */
.new-header .top-header {
  padding: 10px 0px;
  border-bottom: 1px solid #ddd;
  background-color: white;
  height: 65.8px;
}

.new-header .top-header .navbar-brand {
  padding: 0px;
}

.new-header .top-header .logo {
  height: 45px;
  width: 158px;
  margin: 0px;
  object-fit: contain;
}

.new-header .top-header .navbar-nav .nav-link {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #343434;
  padding: 5px 20px;
  transition: all 0.3s 0s linear;
}

.new-header .top-header .navbar-nav .nav-link:hover,
.new-header .top-header .navbar-nav .nav-link.active {
  color: var(--greencolor);
}

.new-header .top-header .navbar-nav .nav-link .badge {
  padding: 4px 5px;
  position: relative;
  margin-left: 3px;
  letter-spacing: 0.3px;
  font-size: 10px;
  margin-top: -2px;
  border-radius: 3px;
  vertical-align: middle;
}

.new-header .top-header .navbar-nav .nav-link .badge span {
  z-index: 1;
  position: relative;
}

.new-header .top-header .navbar-nav .nav-link .badge::before,
.new-header .top-header .navbar-nav .nav-link .badge::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 2px;
  background-color: var(--greencolor);
  will-change: transform, opacity;
  animation: badgefade 1.6s infinite;
}

.new-header .top-header .navbar-nav .nav-link .badge::after {
  animation-delay: 0.2s;
}

@keyframes badgefade {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

.new-header .top-header .web-btn {
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 5px;
}

.new-header .top-header .dropdown-menu {
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0px;
  overflow: hidden;
}

.new-header .top-header .dropdown-menu a {
  font-size: 12px;
  line-height: 20px;
  padding: 6px 20px 7px;
  font-weight: 600;
  text-transform: uppercase;
}

.new-header .top-header .dropdown-menu a:hover,
.new-header .top-header .dropdown-menu a:focus {
  background: var(--greencolor);
  color: white;
}

.new-header .middle-header {
  padding: 10px 0px;
  background-color: white;
}

.new-header .middle-header .searchbox {
  position: relative;
}

.new-header .middle-header .searchicon {
  position: relative;
}

.new-header .middle-header .searchicon:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 15px;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  background: url("https://www.secondmedic.com/utility/icons/search-icon.svg");
  background-size: 100% 100%;
}

.new-header .middle-header .searchicon .close-btn {
  right: 21px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  position: absolute;
  padding: 0px;
  background-color: #eee;
}

.new-header .middle-header .searchicon .close-btn i {
  height: 19px;
  width: 19px;
  padding: 4px;
  margin-bottom: 1px;
  position: relative;
  top: unset;
  transform: unset;
  right: unset;
}

.new-header .middle-header .form-control {
  background-color: #eee;
  color: #393939;
  border: none;
  border-radius: 5px;
  padding: 8.5px 45px 8.5px 20px !important;
  height: auto;
}

.new-header .middle-header .form-control::placeholder {
  color: #393939;
}

.new-header .middle-header .cart-and-whatsapp {
  margin: 0px 0px 0px 20px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: end;
  height: 40px;
}

.new-header .middle-header .cart-and-whatsapp .child-item {
  list-style: none;
  position: relative;
}

.new-header .middle-header .cart-and-whatsapp .child-item:first-child::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  border-radius: 50px;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #ddd;
}

.new-header .middle-header .cart-and-whatsapp .child-item a,
.new-header .middle-header .cart-and-whatsapp .child-item a:hover {
  display: flex;
  align-items: center;
  padding: 0px 25px;
  color: #343434;
  position: relative;
}

.new-header .middle-header .cart-and-whatsapp .child-item a .badge {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 13px;
  top: -7px;
  border-radius: 50px;
  text-align: center;
  line-height: 19px;
  padding: 0;
}

.new-header .middle-header .cart-and-whatsapp .child-item a img {
  height: 27px;
  width: 27px;
}

.new-header .middle-header .cart-and-whatsapp .child-item a p {
  margin: 0px 0px 3px 5px;
  line-height: 16px;
  font-weight: 600;
}

.new-header .middle-header .cart-and-whatsapp .child-item a p small {
  font-weight: 600;
}

.new-header .middle-header .appstore-playstore {
  height: 30px;
}
.new-header .middle-header .appstore-playstore img {
  height: 30px;
  width: 30px !important;
  object-fit: contain;
  margin-left: 10px;
}

.new-header .bottom-header {
  height: auto;
  background-color: #eee;
  transition: all 0.3s 0s linear;
}

.new-header .bottom-header ul {
  margin: 0px;
  padding: 0px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-header .bottom-header ul li {
  list-style: none;
}

.new-header .bottom-header ul li a {
  color: #343434;
  padding: 10px 15px 11px;
  display: block;
  font-size: 14px;
}

.new-header .bottom-header ul li:first-child a {
  padding-left: 0px;
}

.new-header .bottom-header ul li:last-child a {
  padding-right: 0px;
}

.new-header .bottom-header .dropdown-menu {
  border-radius: 5px;
  margin-top: 0px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0px;
  border-radius: 0px 0px 5px 5px;
  overflow: hidden;
  right: -15px;
  left: auto !important;
}

.new-header .bottom-header .dropdown-menu a {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 20px 7px !important;
  color: #343434;
}

.new-header .bottom-header .dropdown-menu a:hover,
.new-header .bottom-header .dropdown-menu a:focus {
  background: var(--greencolor);
  color: white;
}

/* MOBILE NEW HEADER WORK START */
#wrapper.mobile-new-header {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mobile-new-header #sidebar-wrapper {
  position: fixed;
  top: 0;
  padding: 0px;
  z-index: 1000;
  left: 0px;
  width: 260px;
  height: 100%;
  margin-left: -260px;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mobile-new-header #sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

.mobile-new-header#wrapper.toggled #sidebar-wrapper {
  left: 260px;
}

.mobile-new-header .sidebar-nav {
  position: absolute;
  top: 0;
  width: 260px;
  margin: 0;
  padding: 20px;
  list-style: none;
}

.mobile-new-header .sidebar-nav .sidebar-brand {
  border-bottom: 1px solid #ddd;
  text-align: center;
  margin: -20px -20px 15px;
  width: calc(100% + 40px);
}

.mobile-new-header .sidebar-nav .sidebar-brand a,
.mobile-new-header .sidebar-nav .sidebar-brand a:hover {
  padding: 10px;
  background-color: white;
}

.mobile-new-header .sidebar-nav .sidebar-brand .logo {
  height: 45px;
  width: 158px;
  object-fit: contain;
  margin-right: 0px;
}

.mobile-new-header .sidebar-nav li {
  position: relative;
  line-height: 20px;
  display: inline-block;
  width: 100%;
}

.mobile-new-header .sidebar-nav li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: #343434;
  padding: 12px 20px;
  margin: 5px 0px;
  transition: all 0.3s 0s linear;
  border-radius: 10px;
}

.mobile-new-header .sidebar-nav li.active a,
.mobile-new-header .sidebar-nav li a:hover,
.mobile-new-header .sidebar-nav li a:active,
.mobile-new-header .sidebar-nav li a:focus,
.mobile-new-header .sidebar-nav li.open a:hover,
.mobile-new-header .sidebar-nav li.open a:active,
.mobile-new-header .sidebar-nav li.open a:focus {
  color: #fff;
  background-color: var(--greencolor);
}

.mobile-new-header .sidebar-nav .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-new-header .sidebar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  top: 0;
  padding: 8px 0px 14px;
  margin: 0;
  border-radius: 10px;
  border: none;
  background-color: #eee;
  box-shadow: none;
}

.mobile-new-header .sidebar-nav .dropdown-menu li a,
.mobile-new-header .sidebar-nav .dropdown-menu li a:hover {
  margin: 0px;
  padding: 10px 20px;
  background-color: transparent;
  color: #343434;
}

.mobile-new-header .sidebar-nav .dropdown-menu li.active a {
  color: var(--greencolor);
}

.mobile-new-header .sidebar-nav .sidebar-footer {
  border-top: 1px solid #ddd;
  text-align: center;
  margin: 20px -20px -20px;
  width: calc(100% + 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-new-header .sidebar-nav .sidebar-footer a {
  padding: 10px;
}

.mobile-new-header .sidebar-nav .sidebar-footer img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.new-header .mobile-cart {
  margin-bottom: 3px;
  margin-right: 49px;
  position: relative;
}

.new-header .mobile-cart .badge {
  width: 20px;
  height: 20px;
  position: absolute;
  right: -11px;
  top: -7px;
  border-radius: 50px;
  text-align: center;
  line-height: 19px;
  padding: 0;
}

.new-header .mobile-cart img {
  height: 25px;
  width: 25px;
}

.hamburger {
  position: fixed;
  z-index: 1001;
  display: block;
  width: 28px;
  height: 20px;
  right: 15px;
  top: 17px;
  background: transparent;
  border: none;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}

.hamburger.is-closed:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #1a1a1a;
}

.hamburger.is-closed .hamb-top {
  top: 1px;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -1px;
}

.hamburger.is-closed .hamb-bottom {
  bottom: 1px;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 1px;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-bottom {
  bottom: 1px;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #1a1a1a;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}

.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}

.hamburger.is-open .hamb-middle {
  display: none;
}

.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}

.hamburger.is-open:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.mobile-new-header .overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lightgreenrgb);
  z-index: 1000;
}

/* NEW SLIDER WORK START */
.newmainslider {
  padding: 40px 0px;
  background: url("https://www.secondmedic.com/utility/icons/slider-bg.webp");
  background-size: cover;
}

.newmainslider img {
  border-radius: 10px;
}

.newmainslider .box {
  border-radius: 10px;
  background-color: white;
  padding: 30px 30px;
  height: 100%;
  text-align: center;
}

.newmainslider .box .box-h {
  margin-bottom: 20px;
}

.newmainslider .box .form-group {
  margin-bottom: 10px;
}

.newmainslider .box .form-control {
  padding: 12px 20px;
  height: auto;
  background: #efefef;
  border-radius: 5px;
  border: none;
  color: #343434;
}

.newmainslider .box .form-control:-webkit-autofill,
.newmainslider .box .form-control:-webkit-autofill:focus,
.newmainslider .box .form-control:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #efefef inset !important;
}

.newmainslider .box .form-control::placeholder {
  color: #343434;
}

.newmainslider .box .web-btn {
  margin-top: 10px;
}

/* NEW FOOTER DESIGN WORK START */
.new-design-footer .new-footer-top {
  padding: 40px 0px;
  background-color: #eaeaea;
}

.new-design-footer .new-footer-top .logo {
  height: 45px;
  width: 158px;
  object-fit: contain;
  margin-bottom: 20px;
  margin-left: -5px;
}

.new-design-footer .new-footer-top p {
  margin: 0px;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.new-design-footer .new-footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.new-design-footer .new-footer-top ul {
  margin: 0px;
  padding: 0px;
}

.new-design-footer .new-footer-top ul li {
  list-style: none;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.new-design-footer .new-footer-top ul li a {
  color: #343434;
}

.new-design-footer .new-footer-top ul li a img {
  height: 30px;
}

.new-design-footer .new-footer-top ul li a:hover {
  color: var(--greencolor);
}

.new-design-footer .new-footer-top ul.contact-info li:first-child {
  align-items: start;
}

.new-design-footer .new-footer-top ul.contact-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.new-design-footer .new-footer-top ul.contact-info li .img {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--greencolor);
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-design-footer .new-footer-top ul.contact-info li .img img {
  object-fit: contain;
  height: 20px;
  width: 15px;
}

.new-design-footer .new-footer-top ul.contact-info li p {
  width: calc(100% - 45px);
}

.new-design-footer .new-footer-top ul.social-icons {
  align-items: center;
  margin-top: 40px;
}

.new-design-footer .new-footer-top ul.social-icons li {
  margin-right: 8px;
  margin-top: 8px;
  display: inline-block;
}

.new-design-footer .new-footer-bottom {
  background: var(--greencolor);
  padding: 15px 0px;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.new-design-footer .new-footer-bottom .policy-menu li {
  margin-right: 20px;
}

.new-design-footer .new-footer-bottom .policy-menu li:last-child {
  margin-right: 0px;
}

.new-design-footer .new-footer-bottom .policy-menu li::after {
  color: white !important;
  left: 12px;
  font-weight: unset;
}

.new-design-footer .new-footer-bottom .policy-menu li a:hover,
.new-design-footer .new-footer-bottom .policy-menu li a:focus {
  color: white;
}

.fix-call-btn {
  position: fixed;
  width: 57px;
  height: 57px;
  border-radius: 50px !important;
  padding: 0px;
  bottom: 180px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.fix-call-btn img {
  height: 24px;
  width: 24px;
}

.float.what-btn {
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
  font-size: 24px;
  bottom: 114px;
  right: 24px;
}

.float.what-btn i {
  height: 24px;
}

/* MEDIA 1200 */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}

@media (min-width: 992px) and (max-width: 1211px) {
  .new-header .top-header .navbar-nav .nav-link {
    font-size: 11px;
    padding: 5px 10px;
  }

  .new-header .top-header .web-btn {
    font-size: 11px;
    padding: 10px 15px;
  }

  .new-header .bottom-header ul li a {
    padding: 10px 10px 11px;
    font-size: 11px;
  }

  .new-design-footer .new-footer-top p {
    overflow-wrap: break-word;
  }
}

/* MEDIA 768 TO 992 */
@media (min-width: 768px) and (max-width: 992px) {
  .new-header .top-header {
    padding: 5px 0px;
    height: 55.8px;
  }

  .new-header .list-group-horizontal-lg,
  .new-header .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .new-design-footer .new-footer-top p {
    overflow-wrap: break-word;
  }

  .new-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hamburger {
    right: 25px;
  }

  .newmainslider {
    padding: 20px 0px;
  }

  .newmainslider .box {
    padding: 15px;
  }

  .newmainslider .box .box-h {
    font-size: 18px;
  }

  .sliderheight {
    height: 100%;
  }

  .newmainslider .new-main-slider,
  .newmainslider .owl-stage-outer,
  .newmainslider .owl-stage,
  .newmainslider .owl-item,
  .newmainslider .item,
  .newmainslider img {
    height: 100%;
  }

  .newmainslider .new-main-slider img {
    object-fit: contain;
    background-color: #eee;
  }

  .new-design-footer .new-footer-bottom {
    text-align: center;
  }

  .policy-menu {
    text-align: center;
    margin-top: 15px;
  }
}

/* MEDIA 768 */
@media (max-width: 768px) {
  .new-header .top-header {
    padding: 5px 0px;
    height: 55.8px;
  }

  .new-header .top-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .newmainslider {
    padding: 0px;
    overflow: hidden;
    background: none;
  }

  .newmainslider .container {
    padding: 0px;
  }

  .sliderheight {
    min-height: 182px;
  }

  .newmainslider img {
    border-radius: 0;
  }

  .newmainslider .box {
    padding: 20px;
    border-radius: 0;
  }

  .newmainslider .owl-nav {
    display: none;
  }

  .new-design-footer .new-footer-top {
    padding: 30px 0px;
  }

  .new-design-footer .new-footer-top .logo {
    margin-bottom: 15px;
  }

  .new-design-footer .new-footer-top h4 {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .new-design-footer .new-footer-top ul.contact-info li {
    margin-top: 15px;
  }

  .new-design-footer .new-footer-top ul.social-icons {
    margin-top: 20px;
  }

  .new-design-footer .new-footer-bottom {
    text-align: center;
  }

  .fix-call-btn {
    width: 45px;
    height: 45px;
    bottom: 165px;
    right: 15px;
  }

  .fix-call-btn img {
    height: 20px;
    width: 20px;
  }

  .float.what-btn {
    width: 45px;
    height: 45px;
    bottom: 112px !important;
    right: 15px;
    font-size: 20px;
  }

  .float.what-btn i {
    height: 20px;
  }
}

#whatsapp-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#whatsapp-chat i {
  filter: invert(1);
  color: black;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.youaresearchingfor {
  background: #44c09b1f;
  margin: 5px 15px 0px !important;
  border-radius: 5px;
}

.youaresearchingfor li {
  border-bottom: 1px solid #dedede !important;
}

.youaresearchingfor li:last-child {
  border: none !important;
}

.modal-open .main-wrapper {
  filter: unset;
}

.tags {
  background-color: white;
  padding-bottom: 40px;
}

.tags a {
  border: 1px solid #ddd;
  background-color: #eee;
  color: var(--btn2color);
  border-radius: 5px;
  padding: 5px 10px;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  margin-right: 5px;
  margin-top: 10px;
}

.tags a:hover {
  background-color: var(--greencolor);
  border-color: var(--greencolor);
  color: white;
}

.intro-section {
  padding: 40px 0px;
  margin-bottom: 40px;
}

.mobile-sidebar-number {
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

.mobile-sidebar-number li {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.mobile-sidebar-number li .img {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--greencolor);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-sidebar-number li .img img {
  object-fit: contain;
  height: 20px;
  width: 15px;
}

.mobile-sidebar-number li p {
  width: calc(100% - 45px);
  margin: 0px;
  line-height: 13px;
  font-size: 13px;
  color: #343434;
  font-weight: 500;
}

.mobile-sidebar-number li p a {
  color: #343434 !important;
  padding: 0 !important;
  font-size: 13px !important;
  line-height: 20px;
  word-break: break-all;
}

.footer-headings {
  font-size: 15px !important;
}

.lab-error-section {
  padding: 120px 0;
}

.lab-error-section h1 {
  font-size: 36px;
  margin: 40px 0 20px;
  line-height: 1;
}

.lab-error-section p {
  width: 70%;
  margin: 0 auto 28px;
}

.lab-error-section img {
  width: 436px;
  height: 181px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .lab-error-section {
    padding: 80px 0;
  }

  .lab-error-section img {
    width: 250px;
    height: 104px;
  }

  .lab-error-section h1 {
    font-size: 28px;
    line-height: 32px;
    margin: 20px 0 10px;
  }

  .lab-error-section p {
    width: 100%;
    margin: 0 auto 20px;
  }
}

footer {
  padding-bottom: 0 !important;
}

.btn {
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  outline: 0;
  transition: all 0.3s 0s linear;
  font-weight: 500;
}
.btn.btn-sm {
  font-size: 14px;
  padding: 8px 15px;
}
.web-btn {
  background-color: var(--greencolor);
  color: white !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-style: normal !important;
  padding: 10px 20px;
  background-image: unset !important;
}
.web-btn:hover {
  background-color: var(--btn2color);
  color: white;
}
.btn.with-icon {
  min-width: 135px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.btn.with-icon i {
  font-size: 12px;
  margin-left: 15px;
}
.web-btn2 {
  background-color: #dbdbdb;
  border: 1px solid #c9c9c9;
  color: var(--btn2color);
  padding: 10px 20px;
}
.web-btn2:hover {
  background-color: var(--btn2color) !important;
  border-color: var(--btn2color);
  color: white;
}

footer .social-icons li a img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .footer-headings {
    margin-top: 10px !important;
  }

  .footer-newsletter-btn {
    margin-top: 10px;
  }
  .btn,
  .web-btn,
  .web-btn2 {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.web-captcha {
  width: 100%;
  height: 42px;
}

.web-captcha img {
  width: 100% !important;
  height: 42px !important;
  border-radius: 5px;
  padding: 0;
}

.greyonautofill .form-control:-webkit-autofill,
.greyonautofill .form-control:-webkit-autofill:focus,
.greyonautofill .form-control:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #efefef inset !important;
}

.header-logo-size {
  width: 158px;
  height: 45px;
}

.cart-img-size {
  width: 28px;
  height: 28px;
}

.new-header .middle-header .appstore-playstore a {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.back-btn-size {
  width: 27px;
  height: 20px;
  display: inline-block;
}

.filter-icon-size {
  width: 25px;
  height: 15px;
  display: inline-flex;
}

.breadcrumb {
  padding: 20px 0px !important;
  background: transparent;
  border-radius: 0;
  font-weight: bold;
}

.breadcrumb li {
  font-size: 14px;
}

.breadcrumb li:last-child {
  color: #757575 !important;
}

.breadcrumb li::before {
  font-size: 14px !important;
  color: #757575 !important;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px 0px !important;
    justify-content: center;
  }

  .breadcrumb li {
    font-size: 12px;
  }

  .breadcrumb li::before {
    font-size: 12px !important;
    color: #757575 !important;
  }
}

.dmca-badge img {
  width: 121px;
  height: 24px;
}

.website-headings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.website-headings .web-h {
  margin-bottom: 5px;
}

.website-headings .web-h h1,
.website-headings .web-h h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 0px;
}

.website-headings .link-btn {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--greencolor);
  border-bottom: 1px solid var(--greencolor);
  border-radius: 0;
  padding: 0px;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .website-headings {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  .website-headings .web-h h1,
  .website-headings .web-h h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .website-btn {
    font-size: 12px;
    line-height: 18px;
  }
}

.section-blogs,
.section-doctor {
  overflow: hidden;
}

/* DOWNLOAD OUR APP START */
.download-our-app-new {
  background-color: white;
  padding-top: 60px;
}

.download-our-app-new .box {
  background-color: #bbe0e2;
  padding: 50px;
  border-radius: 20px;
  position: relative;
}

.download-our-app-new h3 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 30px;
  color: black;
}

.download-our-app-new ul {
  margin: 0px;
  padding: 0px;
  display: flex;
}

.download-our-app-new ul li {
  list-style: none;
  margin-right: 40px;
}

.download-our-app-new ul li:last-child {
  margin-right: 0px;
}

.download-our-app-new ul li img.qr {
  height: 130px;
  width: 130px;
  border-radius: 10px;
  padding: 5px;
  background-color: white;
}

.download-our-app-new ul li img {
  width: 204px;
  height: 61px;
}

.download-our-app-new .download-img {
  width: 432px;
  height: 398px;
  margin: -103px auto -50px;
  display: block;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .download-our-app-new {
    padding-top: 30px;
  }

  .download-our-app-new .box {
    padding: 20px;
    border-radius: 10px;
  }

  .download-our-app-new h3 {
    font-size: 22px;
  }

  .download-our-app-new ul li {
    margin-right: 20px;
  }

  .download-our-app-new ul li img.qr {
    height: 90px;
    width: 90px;
  }

  .download-our-app-new ul li img {
    width: 144px;
    height: 43px;
  }

  .download-our-app-new .download-img {
    width: 267px;
    height: 246px;
    margin: -50px auto -20px;
  }
}

@media (max-width: 767px) {
  .download-our-app-new {
    padding-top: 0px;
  }

  .download-our-app-new .box {
    padding: 20px 20px 0px;
    border-radius: 10px;
    text-align: center;
  }

  .download-our-app-new h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .download-our-app-new ul {
    justify-content: center;
  }

  .download-our-app-new ul li img {
    width: 117px;
    height: 35px;
  }

  .download-our-app-new .download-img {
    margin: 30px auto 0px;
    width: 190px;
    height: 176px;
  }
}

/* DOWNLOAD OUR APP END */

.login-or {
  color: #494949;
  font-size: 20px;
  margin: 30px 0px;
}

.span-or {
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  padding: 0px 15px;
  margin: 0;
}

.or-line {
  background-color: #ddd;
}

.google-btn {
  border-radius: 50px;
  text-align: left;
  padding: 5px 36px 5px 5px;
  background-color: #eee;
  border: 1px solid #ddd;
  font-weight: 500;
  font-size: 16px;
}

.google-btn:hover {
  background-color: var(--btn2color);
  border-color: var(--btn2color);
  color: white;
}

.google-btn img {
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50px;
  margin-right: 15px;
}

.blog-single .main-img {
  height: 420px;
  width: 100%;
  margin-bottom: 20px;
  background-color: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .blog-single .main-img {
    height: 180px !important;
  }
}

.blog-new .box .blog-img {
  background-position: center;
  background-size: cover;
}

.blog-new .box .box-body h5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blog-new .box .box-body p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Login Page Design Work Start */
.login-page-design {
  padding: 60px 0px;
}

.login-page-design .box {
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.login-page-design .box .left-side {
  background-image: linear-gradient(
    to right,
    #12bc95 0%,
    #1f68c6 100%
  ) !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-page-design .box .left-side img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: brightness(100);
}

.login-page-design .box .right-side {
  padding: 50px 70px;
}

.login-page-design .box .right-side h1 {
  font-size: 20px;
  font-weight: bold;
}

.login-page-design .box .right-side .form-group {
  height: auto;
}

.login-page-design .box .right-side .form-group select {
  -webkit-appearance: none;
  font-weight: bold;
}

.login-page-design .box .right-side .form-control {
  background-color: #eee;
  border: 1px solid #ddd;
  color: var(--btn2color);
}

.login-page-design .box .right-side .form-group label {
  color: var(--btn2color);
}

.login-page-design .box .right-side .login-btn {
  background-color: var(--greencolor);
  background-image: none !important;
  font-size: 16px;
}

.login-page-design .box .right-side .login-btn:hover {
  background-color: var(--btn2color);
}

.login-page-design .box .right-side .file label {
  font-size: 14px;
  font-weight: 600;
}
.login-page-design .box .right-side .file .form-control {
  padding: 10.35px 12px;
  height: auto;
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .login-page-design .box .right-side {
    padding: 30px;
  }

  .login-page-design .box .left-side img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .login-page-design {
    padding: 30px 0px;
  }

  .login-page-design .box .left-side {
    padding: 20px;
  }

  .login-page-design .box .left-side img {
    width: 50px;
    height: 50px;
  }

  .login-page-design .box .right-side {
    padding: 20px;
  }

  .login-or {
    margin: 20px 0px;
  }
}

/* Login Page Design Work End */

/* Career page work start */
.select-icon select {
  -webkit-appearance: none;
  background: url(https://www.secondmedic.com/utility/icons/angle-down.webp)
    no-repeat;
  background-size: 20px;
  background-position: calc(100% - 15px) center;
}
.career-banner {
  padding: 20px 0px 40px;
}
.career-banner .img-box {
  height: 265px;
  display: block;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
.new-career-page {
  padding: 40px 0px;
  background-color: #f7f7f7;
  position: relative;
}
.new-career-page:before {
  content: "";
  position: absolute;
  width: 267px;
  height: 154px;
  background-image: url("asset/newdesignv2/images/pattern-top.webp");
  background-size: 100% 100%;
  top: 0;
  left: 0;
}
.new-career-page:after {
  content: "";
  position: absolute;
  width: 298px;
  height: 146px;
  background-image: url("asset/newdesignv2/images/pattern-bottom.webp");
  background-size: 100% 100%;
  bottom: 0;
  right: 0;
}

.new-career-page h1 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}
.new-career-page .box {
  background-color: white;
  border: 1px solid white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
  margin-top: 15px;
  color: var(--btn2color);
  position: relative;
  transition: all 0.3s 0s linear;
}
.new-career-page .box:hover {
  border: 1px solid var(--greencolor);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.new-career-page .box .box-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.new-career-page .box .box-heading:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #c0c0c0;
  bottom: -19px;
  left: 0;
}
.new-career-page .box ul {
  margin: 0px 0px 10px;
  padding: 0px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.new-career-page .box ul li {
  list-style: none;
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.new-career-page .box .icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 5px;
  font-weight: bold;
  opacity: 0.5;
}
.new-career-page .box p {
  margin: 0px 0px 10px;
  font-size: 16px;
}
.new-career-page .box .text-limit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.new-career-page.singlecareer .box .text-limit {
  overflow: unset;
  display: block;
  -webkit-box-orient: unset;
}
.new-career-page .box p .icon {
  margin-top: -5px;
}
.new-career-page .form-box {
  background-color: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
  margin-top: 15px;
  position: sticky;
  top: 150px;
  z-index: 1;
}
.new-career-page .form-box .box-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  text-decoration: underline;
}
.new-career-page .form-box .form-group {
  margin-bottom: 10px;
}
.new-career-page .form-box .form-group label {
  font-size: 14px;
  font-weight: 500;
}
.new-career-page .form-box .form-group .form-control {
  background-color: #eee;
  border-color: #ddd;
  height: auto;
  padding: 10px 20px;
  color: var(--btn2color);
}
.new-career-page .form-box .form-group .form-control::placeholder {
  color: var(--btn2color);
}
.new-career-page .form-box .web-btn {
  margin-top: 10px;
}

@media (max-width: 1300px) {
  .new-career-page:before,
  .new-career-page:after {
    display: none;
  }
}
@media (max-width: 992px) {
  .new-career-page .box ul {
    display: block;
    margin: 0px;
  }
  .new-career-page .box ul li {
    margin-bottom: 10px;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .career-banner {
    padding: 15px 0px 30px;
  }
  .career-banner .img-box {
    height: 134px;
  }
  .new-career-page {
    padding: 30px 0px;
  }
  .new-career-page h1 {
    font-size: 20px;
  }
  .new-career-page .box {
    padding: 20px;
  }
  .new-career-page .box .box-heading {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .new-career-page .box .box-heading:after {
    bottom: -15px;
  }
  .new-career-page .box ul {
    font-size: 14px;
  }
  .new-career-page .box ul li {
    margin-bottom: 5px;
  }
  .new-career-page .box .icon {
    width: 16px;
    height: 16px;
    margin-top: -5px;
  }
  .new-career-page .box p {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .new-career-page .form-box {
    padding: 20px;
  }
  .new-career-page .form-box .box-heading {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
/* Career page work end */

/* Single Career Page Work Start */
.new-career-page .main-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.singlecareer .box:hover {
  border-color: white;
}
.singlecareer .needhelp-box,
.singlecareer .needhelp-box:hover {
  border: 1px solid var(--greencolor);
  padding: 20px 30px;
}
.singlecareer .needhelp-box .box-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px;
}
.singlecareer .needhelp-box .box-heading:after {
  display: none;
}
.singlecareer .needhelp-box .box-heading a {
  display: flex;
  align-items: center;
}
.singlecareer .needhelp-box .box-heading a img {
  filter: var(--greenfilter);
  margin-right: 5px;
}
.applynowmodal .modal-title {
  font-size: 18px;
  font-weight: bold;
}
.applynowmodal .form-box .form-group {
  margin-bottom: 10px;
}
.applynowmodal .form-box .form-group label {
  font-size: 14px;
  font-weight: 500;
}
.applynowmodal .form-box .form-group .form-control {
  background-color: #eee;
  border-color: #ddd;
  height: auto;
  padding: 10px 20px;
  color: var(--btn2color);
}
.applynowmodal .form-box .form-group .form-control::placeholder {
  color: var(--btn2color);
}
.applynowmodal .form-box .web-btn {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .singlecareer .needhelp-box,
  .singlecareer .needhelp-box:hover {
    padding: 15px 20px;
  }
  .singlecareer .needhelp-box .box-heading {
    font-size: 14px;
  }
}
/* Single Career Page Work End */

/* New About Us Work Start */
.new-about-us .section-padding {
  padding: 60px 0px;
}
.new-about-us .heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
.new-about-us .intro .img-box {
  background-position: center;
  background-size: cover;
  background-color: #eee;
  height: 100%;
  border-radius: 20px;
}
.new-about-us .intro p {
  font-size: 16px;
  text-align: justify;
  margin: 0px;
}

/* Home Services Work Start */
.secmed-services {
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
}
.secmed-services:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 307px;
  height: 447px;
  background: url("asset/newdesignv2/images/circle.webp");
  background-size: 100% 100%;
  z-index: 0;
  animation: circlescale 2s linear 0s infinite alternate;
}
@keyframes circlescale {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.1, 1.1);
  }
}
.secmed-services h2 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 20px;
}
.secmed-services p {
  font-size: 16px;
  line-height: 24px;
  margin: 0px;
}
.secmed-services .web-btn {
  padding: 12.5px 30px;
  margin-top: 40px;
  font-size: 16px;
  min-width: 320px;
}
.secmed-services .box {
  border: 1px solid #ddd;
  background-color: white;
  box-shadow: 4px 4px 20px rgb(0 0 0 / 5%);
  border-radius: 20px;
  margin-bottom: 30px;
  margin-top: 40px;
  height: calc(100% - 70px);
  transition: all 0.3s 0s linear;
}
.secmed-services .box:hover {
  box-shadow: 4px 4px 20px rgb(0 0 0 / 20%);
}
.secmed-services .box .box-img {
  background-color: #eee;
  border-radius: 20px 20px 0px 0px;
  height: 126px;
  position: relative;
}
.secmed-services .box.purple .box-img {
  background-color: #dbceea;
}
.secmed-services .box.green .box-img {
  background-color: #c5dbc5;
}
.secmed-services .box.orange .box-img {
  background-color: #f2dcc5;
}
.secmed-services .box.red .box-img {
  background-color: #f6cbcb;
}
.secmed-services .box.cyan .box-img {
  background-color: #c1f2ef;
}
.secmed-services .box.blue .box-img {
  background-color: #c7daf5;
}
.secmed-services .box .box-img img {
  height: 167px;
  max-width: 112%;
  object-fit: contain;
  object-position: bottom;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  position: absolute;
}
.secmed-services .box .box-body {
  padding: 15px;
}
.secmed-services .box .box-body h4 {
  font-size: 18px;
  margin-bottom: 2px;
}
.secmed-services .box .box-body p {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0px;
  color: var(--secondarycolor);
}
@media (min-width: 767px) and (max-width: 992px) {
  .secmed-services {
    padding-bottom: 10px;
  }
  .secmed-services h3 {
    margin-top: 0px !important;
    margin-bottom: 10px;
  }
  .secmed-services h1 {
    margin-bottom: 10px;
  }
  .secmed-services .web-btn {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .secmed-services .box {
    margin-bottom: 20px !important;
    height: calc(100% - 60px) !important;
  }
}

@media (max-width: 767px) {
  .secmed-services {
    padding-bottom: 20px;
  }
  .secmed-services:before {
    display: none;
  }
  .secmed-services h3 {
    margin-top: 0px !important;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .secmed-services h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .secmed-services p {
    font-size: 14px;
    line-height: 20px;
  }
  .secmed-services .web-btn {
    margin-top: 10px;
    margin-bottom: 30px;
    min-width: auto;
    font-size: 14px;
    padding: 10px 20px;
  }
  .secmed-services .row {
    padding: 0px 7.5px;
  }
  .secmed-services .row .col-12,
  .secmed-services .row .col-6 {
    padding: 0px 7.5px;
  }
  .secmed-services .box {
    margin-bottom: 10px;
    margin-top: 28px !important;
    border-radius: 10px;
    height: calc(100% - 38px) !important;
  }
  .secmed-services .box .box-img {
    height: 80px;
    border-radius: 10px 10px 0px 0px;
  }
  .secmed-services .box .box-img img {
    height: 110px !important;
  }
  .secmed-services .box .box-body {
    padding: 10px;
  }
  .secmed-services .box .box-body h4 {
    font-size: 14px;
  }
}
/* Home Services Work End */

.new-about-us .mission-vision {
  padding-bottom: 45px;
}
.new-about-us .mission-vision .img-box {
  background-color: #eee;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  height: 250px;
  border-radius: 20px;
}
.new-about-us .mission-vision .heading {
  margin-bottom: 35px;
}
.new-about-us .mission-vision .heading:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #c0c0c0;
  bottom: -19px;
  left: 0;
}
.new-about-us .mission-vision p {
  font-size: 16px;
  margin-bottom: 15px;
}
.new-about-us .mission-vision .line {
  height: 70%;
  width: 5px;
  background-color: #eee;
  left: 50%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
}

.new-about-us .team .box {
  padding: 50px;
  background-color: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #ddd;
}
.new-about-us .team .box .img-box {
  background-color: white;
  background-size: cover;
  background-position: top center;
  height: 300px;
  border-radius: 20px;
}
.new-about-us .team .box p {
  font-size: 16px;
  text-align: justify;
  margin: 0px;
}

.new-about-us .counter .box {
  background-color: white;
  padding: 30px 20px;
  border-radius: 20px;
  border: 2px solid #ddd;
  text-align: center;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s 0s linear;
  margin-top: 15px;
  height: calc(100% - 15px);
}
.new-about-us .counter .box:hover {
  border-color: var(--greencolor);
  box-shadow: none;
}
.new-about-us .counter .box h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--greencolor);
}
.new-about-us .counter .box p {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
}

.new-about-us .our-impact .box {
  background-color: white;
  border: 2px solid #ddd;
  padding: 20px;
  border-radius: 20px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  height: calc(100% - 15px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s 0s linear;
}
.new-about-us .our-impact .box:hover {
  border-color: var(--greencolor);
  box-shadow: none;
}
.new-about-us .our-impact .box img {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 20px;
  margin-right: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}
.new-about-us .our-impact .box h4 {
  font-weight: bold;
  font-size: 24px;
  color: var(--greencolor);
}
.new-about-us .our-impact .box p {
  margin: 0px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 767px) {
  .new-about-us .section-padding {
    padding: 30px 0px;
  }
  .new-about-us .heading {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .new-about-us .intro .img-box {
    height: 200px;
    margin-bottom: 15px;
    border-radius: 10px;
  }
  .new-about-us .intro p {
    font-size: 14px;
  }
  .new-about-us .mission-vision .img-box {
    margin-bottom: 15px;
    height: 200px;
    border-radius: 10px;
  }
  .new-about-us .mission-vision {
    padding-bottom: 15px;
  }
  .new-about-us .mission-vision p {
    font-size: 14px;
  }

  .new-about-us .team .box {
    padding: 15px;
    border-radius: 10px;
  }
  .new-about-us .team .box .img-box {
    margin-bottom: 15px;
    height: 200px;
    border-radius: 10px;
  }
  .new-about-us .team .box p {
    font-size: 14px;
  }
  .new-about-us .counter .box {
    border-radius: 10px;
    padding: 15px;
  }
  .new-about-us .our-impact .box {
    padding: 15px;
    border-radius: 10px;
  }
  .new-about-us .our-impact .box img {
    border-radius: 10px;
  }
}
/* New About Us Work End */

/* Video popup work start */

.vid {
  width: 100%;
  display: block;
  vertical-align: top;
  position: relative;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
}
.vid::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vid .img-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 220px;
  background-position: top center;
  background-size: cover;
  background-color: #eee;
}
.vid .img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgb(0 0 0 / 20%);
}
.vid .img-box .play-icon {
  position: absolute;
  width: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: invert(1);
}
.vid h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin: 5px 0px 0px;
}

.video-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1999;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  display: none !important;
}
.video-popup.show-video {
  display: flex !important;
}
.video-popup .iframe-wrapper {
  position: relative;
  width: 700px;
  height: 540px;
}
.video-popup .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
}
.video-popup .iframe-wrapper .close-video {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -20px;
  right: -12px;
  background: url(https://www.secondmedic.com/utility/icons/close.webp) #fff
    no-repeat center;
  background-size: 12px 12px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .video-popup .iframe-wrapper {
    width: 85%;
    height: 35%;
  }
  .vid .img-box {
    height: 155px;
  }
}
@media (max-width: 576px) {
  .vid {
    height: auto;
    margin-top: 15px;
  }
}
/* Video popup work end */

.homecareabout .vid {
  height: 100%;
}
.homecareabout .vid .img-box {
  height: 100%;
}
@media (max-width: 767px) {
  .homecareabout .vid {
    height: auto;
  }
  .homecareabout .vid .img-box {
    height: 200px;
  }
}

.health-related-videos .vid .img-box {
  height: 300px;
}
@media (max-width: 767px) {
  .health-related-videos .vid .img-box {
    height: 200px;
  }
}

.online-doctor-receipt .box {
  overflow: hidden;
  padding: 30px;
}
.online-doctor-receipt .box .logo {
  height: 40px;
  width: auto;
}
.online-doctor-receipt .box .basic-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.online-doctor-receipt .box .info-item {
  flex: 1 1 60%;
}
.online-doctor-receipt .box .info-item:nth-child(odd) {
  flex: 1 1 30%;
}
.online-doctor-receipt .box .info-item.email {
  line-break: anywhere;
}
.online-doctor-receipt .box .info-item p {
  color: grey;
  margin-bottom: 0px;
}
.online-doctor-receipt .box .info-item b {
  color: var(--blackcolor);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.online-doctor-receipt .box .info-item .fa {
  font-size: 14px;
}
.online-doctor-receipt .box .info-item .line {
  color: #c3c3c3;
  font-weight: 400;
  margin: 0px 3px;
}
.online-doctor-receipt .box .table-h {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.online-doctor-receipt .box .table-responsive {
  margin: 0px -30px 30px;
  width: calc(100% + 60px);
}
.online-doctor-receipt .box .table {
  margin: 0px;
}
.online-doctor-receipt .box .table td,
.online-doctor-receipt .box .table th {
  padding: 5px 30px;
}
.online-doctor-receipt .box .table th {
  font-weight: 600;
  font-size: 16px;
}
.online-doctor-receipt .box .web-btn .fa {
  font-size: 14px;
}

@media (max-width: 767px) {
  .online-doctor-receipt .box {
    padding: 15px;
    margin: 0px;
  }
  .online-doctor-receipt .box .basic-info {
    margin-top: 15px;
    gap: 10px;
  }
  .online-doctor-receipt .box .info-item {
    flex: 1 1 100%;
  }
  .online-doctor-receipt .box .info-item:nth-child(odd) {
    flex: 1 1 100%;
  }
  .online-doctor-receipt .box .table-responsive {
    margin: 0px -15px 15px;
    width: calc(100% + 30px);
  }
  .online-doctor-receipt .box .table-h {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .online-doctor-receipt .box .table td,
  .online-doctor-receipt .box .table th {
    padding: 5px 15px;
  }
  .online-doctor-receipt .box .table th {
    font-size: 14px;
  }
}

.impact-crowdfunding .crowdfunding-img {
  height: 100%;
  background-color: #eee;
  background-size: cover;
  background-position: center bottom;
  border-radius: 20px;
}

@media (max-width: 576px) {
  .impact-crowdfunding .crowdfunding-img {
    height: 200px;
    margin-bottom: 15px;
  }
}

.upload-prescription-new .card .card-header {
  background-color: var(--lightgreencolor) !important;
  padding: 15px 20px;
}
.upload-prescription-new .card .card-header .card-title {
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
  margin: 0px;
}

/* Doctor Booking Confirmation Work Start */
.doctor-booking-confirmation {
  padding: 60px 0px;
  background-color: white;
}
.doctor-booking-confirmation .box {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 3px 20px 0px
    rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
.doctor-booking-confirmation .box .box-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.doctor-booking-confirmation .box .img-box {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background-color: #eee;
  background-position: center top;
  background-size: cover;
}
.doctor-booking-confirmation .box .name .doctor-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  display: flex;
  margin-bottom: 5px;
  color: var(--blackcolor);
}
.doctor-booking-confirmation .box .name p {
  margin-bottom: 3px;
  font-size: 16px;
}
.doctor-booking-confirmation .box .name p b {
  color: var(--blackcolor);
  font-weight: bold;
}
.doctor-booking-confirmation .box .prescription {
  margin-left: auto;
  text-align: right;
}
.doctor-booking-confirmation .box .prescription p {
  margin-bottom: 0px;
  color: #676767;
}
.doctor-booking-confirmation .box .prescription .link-btn {
  font-size: 13px;
  padding-bottom: 3px;
}
.doctor-booking-confirmation .box .box-body {
  background-color: #018a951a;
  padding: 5px 20px 20px;
}
.doctor-booking-confirmation .box .info-item {
  margin-top: 15px;
}
.doctor-booking-confirmation .box .info-item p {
  margin-bottom: 0px;
  color: #676767;
}
.doctor-booking-confirmation .box .info-item b {
  color: var(--blackcolor);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.doctor-booking-confirmation .box .info-item i {
  font-size: 14px;
}
.doctor-booking-confirmation .box .info-item .info-line {
  color: #c3c3c3;
  font-weight: 400;
  margin: 0px 3px;
}
.doctor-booking-confirmation .box .box-footer {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.doctor-booking-confirmation .box .box-footer .prescription {
  margin-left: 0px;
  text-align: left;
}

@media (max-width: 768px) {
  .doctor-booking-confirmation {
    padding: 40px 0px;
  }
  .doctor-booking-confirmation .box .box-header {
    flex-wrap: wrap;
  }
  .doctor-booking-confirmation .box .prescription {
    text-align: left;
    margin-left: 0px;
    flex: 1 1 100%;
  }
  .doctor-booking-confirmation .box .box-footer .prescription {
    flex: 1 1 auto;
  }
}
@media (max-width: 576px) {
  .doctor-booking-confirmation .box .box-header {
    gap: 15px;
  }
  .doctor-booking-confirmation .box .img-box {
    width: 70px;
    height: 70px;
    border-radius: 10px;
  }
  .doctor-booking-confirmation .box .name .doctor-name {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .doctor-booking-confirmation .box .name p {
    margin-bottom: 0px;
    font-size: 14px;
  }
  .doctor-booking-confirmation .box .prescription {
    text-align: center;
  }
  .doctor-booking-confirmation .box .info-item b {
    line-height: 20px;
  }
  .doctor-booking-confirmation .box .box-footer .prescription {
    text-align: center;
  }
  .doctor-booking-confirmation .box .box-footer {
    display: block;
  }
  .doctor-booking-confirmation .box .box-footer .web-btn {
    width: 100%;
    margin-top: 20px;
  }
}
/* Doctor Booking Confirmation Work End */

/* My Account Work Start */
.menu-bar {
  background-color: var(--greencolor);
  padding: 15px 0px 20px;
}
.menu-bar .heading {
  color: white;
  margin: 0px;
  line-height: 20px;
  font-size: 20px;
  text-transform: uppercase;
}
.myaccount-sidebar .sidebar-nav {
  padding: 0px;
}
.myaccount-sidebar .sidebar-nav .sidebar-brand {
  margin: 0px !important;
}
.myaccount-sidebar .sidebar-nav .sidebar-brand a {
  border: none;
  justify-content: center;
}
.myaccount-sidebar .sidebar-nav li a {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  border-radius: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.myaccount-sidebar .sidebar-nav li a i {
  color: var(--greencolor);
}
.myaccount-sidebar .sidebar-nav li.active a i,
.myaccount-sidebar .sidebar-nav li a:hover i {
  color: white;
}
.myaccount-sidebar .myaccount-hamburger .text {
  margin-left: -102px;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}
.myaccount-sidebar .myaccount-hamburger {
  position: absolute;
  top: 74px;
  right: 15px;
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
}
.myaccount-sidebar .myaccount-hamburger:hover,
.myaccount-sidebar .myaccount-hamburger:focus,
.myaccount-sidebar .myaccount-hamburger:active {
  outline: none;
}
.myaccount-sidebar .myaccount-hamburger.is-closed:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}
.myaccount-sidebar .myaccount-hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-top,
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-middle,
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-bottom,
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-top,
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-middle,
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-top,
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-middle,
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-bottom {
  background-color: #fff;
}
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-top {
  top: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.myaccount-sidebar .myaccount-hamburger.is-closed .hamb-bottom {
  bottom: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}

.myaccount-sidebar .myaccount-hamburger.is-closed:hover .hamb-top {
  top: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}
.myaccount-sidebar .myaccount-hamburger.is-closed:hover .hamb-bottom {
  bottom: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-top,
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-middle,
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-bottom {
  background-color: #fff;
}
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-top,
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-middle {
  display: none;
}
.myaccount-sidebar .myaccount-hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}
.myaccount-sidebar .myaccount-hamburger.is-open:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}
.myaccount-sidebar .myaccount-hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.myaccount-sidebar .myaccount-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lightgreenrgb);
  z-index: 100;
}
/* My Account Work End */

/* FAQs New Design Work Start */
.faqs-new-design .nav-pills {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.faqs-new-design .nav-link {
  border-radius: 0;
  padding: 15px 20px;
  font-weight: 600;
  border-top: 1px solid #ddd;
}
.faqs-new-design .nav-link:first-child {
  border-top: none;
}
.faqs-new-design .nav-link.active {
  background-color: var(--greencolor);
  color: #fff;
}
.faqs-new-design .card {
  padding: 0px;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  margin-bottom: 15px;
  overflow: hidden;
}
.faqs-new-design .card .card-header {
  padding: 0px;
  background: #ddd;
}
.faqs-new-design .card .card-header button {
  font-weight: 500;
  padding: 15px 20px;
}
.faqs-new-design .accordion .btn-link {
  color: #000 !important;
}
.faqs-new-design .card .card-body {
  padding: 15px 20px;
}
.faqs-new-design .card ul,
.faqs-new-design .card ol {
  padding-left: 15px;
}
@media (max-width: 767px) {
  .faqs-new-design .nav-pills {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow: auto;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  .faqs-new-design .nav-pills .nav-link {
    white-space: nowrap;
    border-top: none;
    border-right: 1px solid #ddd;
    padding: 12px 20px;
  }
  .faqs-new-design .card {
    border-radius: 5px !important;
  }
  .faqs-new-design .card .card-header button {
    font-weight: 500;
    padding: 10px 15px;
    font-size: 14px;
  }
  .faqs-new-design .card .card-body {
    padding: 10px 15px;
  }
}
/* FAQs New Design Work End */

/* Page Banner Work Start */
.page-banner {
  padding: 60px 0px;
  background: url(https://www.secondmedic.com/asset/consult/image/page-banner.webp)
    center/cover fixed;
  background-color: var(--greencolor);
  text-align: center;
  color: white;
  position: relative;
}
.page-banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--greenrgb);
}
.page-banner h1 {
  margin: 0;
  font-weight: 700;
  color: inherit;
}
@media (max-width: 767px) {
  .page-banner {
    padding: 20px 0px;
  }
  .page-banner h1 {
    font-size: 18px;
    margin: 0px;
  }
}
/* Page Banner Work End */

.frequently-booked-tests .box h6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.frequently-booked-tests .skeleton-box {
  position: relative;
  height: 243.2px;
  border-radius: 9px;
  margin-top: 10px;
  background: linear-gradient(0.25turn, transparent, #fff, transparent),
    linear-gradient(#eee, #eee);
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  animation: loading 1.5s infinite;
}
@keyframes loading {
  to {
    background-position: 315px 0, 0 0, 0 190px, 50px 195px;
  }
}
@media (max-width: 767px) {
  .frequently-booked-tests .skeleton-box {
    height: 216.4px;
  }
}

/* Blog Design Work Start */
.blog-design form {
  margin-bottom: 10px;
}
.blog-design form .form-control {
  background-color: white !important;
  border: 1px solid #9b9b9b;
  height: auto;
  color: #000;
  border-radius: 10px;
  padding: 15px 20px !important;
  font-size: 14px;
  box-shadow: none !important;
  font-weight: 500;
}
.blog-design form .web-btn {
  padding: 13.5px 20px;
  font-size: 16px !important;
}
.blog-design .box {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-design form {
    margin-bottom: 0px;
  }
  .blog-design form .web-btn {
    margin-top: 15px;
  }
}
/* Blog Design Work End */

#loader-gif img {
  max-width: 100%;
}

/* Common CSS */
.section-heading {
  font-size: 30px;
  margin-bottom: 50px;
  font-weight: bold;
}
.section-heading.with-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dots-skeleton {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  padding: 0px;
}
.dots-skeleton li {
  background: linear-gradient(90deg, #eee 25%, #dedede 50%, #eee 75%);
  background-size: 200% 100%;
  animation: loading 3s infinite ease-in-out;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  list-style: none;
  margin: 14px 2px 0px;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.owl-dots {
  text-align: center;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: var(--btn2color) !important;
  border-radius: 50px;
  margin: 0px 2px;
  opacity: 0.2;
  outline: 0;
}
.owl-dots .owl-dot.active {
  background-color: var(--greencolor) !important;
  opacity: 1;
}
.section-padding {
  padding: 60px 0px;
}
@media (min-width: 767px) and (max-width: 992px) {
  .section-padding {
    padding: 30px 0px;
  }
  .section-heading {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 30px 0px;
  }
  .section-heading.with-btn {
    display: block;
  }
  .section-heading.with-btn span {
    display: block;
  }
  .section-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .section-heading.with-btn .btn {
    margin-top: 10px;
  }
  .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
  }
}

/* Home Blog Work Start */
.health-blogs .box {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.health-blogs .box .img-box {
  height: 179px;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}
.health-blogs .box .box-body {
  padding: 15px;
}
.health-blogs .box .box-body h3 {
  font-size: 16px;
  margin-bottom: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.health-blogs .box .box-body p {
  font-size: 14px;
  margin: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.health-blogs .box .box-body .btn {
  margin-top: 15px;
}
.blogs-slider-skeleton .box {
  background: linear-gradient(90deg, #eee 25%, #dedede 50%, #eee 75%);
  background-size: 200% 100%;
  animation: loading 3s infinite ease-in-out;
  border: 1px solid #ddd;
  height: 276.8px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .health-blogs .box .img-box {
    height: 115px;
  }
  .blogs-slider-skeleton .box {
    height: 212.8px;
  }
  .blogs-slider-skeleton .row {
    padding: 0px 7.5px;
  }
  .blogs-slider-skeleton .row .col-6 {
    padding: 0px 7.5px;
  }
}
/* Home Blog Work End */

/* Home Doctors Work Start */
.live-doctor-consultation {
  position: relative;
}
.live-doctor-consultation:before {
  content: "";
  position: absolute;
  width: 267px;
  height: 154px;
  background-image: url("https://www.secondmedic.com/asset/newdesignv2/images/pattern-top.webp");
  background-size: 100% 100%;
  top: 0;
  left: 0;
}
.live-doctor-consultation:after {
  content: "";
  position: absolute;
  width: 298px;
  height: 146px;
  background-image: url("https://www.secondmedic.com/asset/newdesignv2/images/pattern-bottom.webp");
  background-size: 100% 100%;
  bottom: 0;
  right: 0;
}
.live-doctor-consultation .section-heading .badge {
  padding: 3px 5px;
  font-size: 100%;
  border-radius: 5px;
  background-color: #ff0000;
  color: white;
  display: inline-block;
}
.live-doctor-consultation .section-heading .web-btn2 {
  background-color: white;
}
.live-doctor-consultation .box {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  font-weight: 500;
}
.live-doctor-consultation .box .doctor-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
  background-color: #eee;
}
.live-doctor-consultation .box .live {
  width: 37px;
  height: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.live-doctor-consultation .box .price {
  background-color: var(--greencolor);
  color: white;
  border-radius: 50px 0px 0px 50px;
  right: 0;
  top: 50px;
  position: absolute;
  text-align: center;
  font-size: 28px;
  line-height: 18px;
  margin: 0px;
  padding: 2px 8px 4px 12px;
}
.live-doctor-consultation .box .price small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding-left: 10px;
}
.live-doctor-consultation .box .price span {
  font-size: 16px;
}
.live-doctor-consultation .box .designation {
  text-align: center;
  margin-top: -15px;
  margin-bottom: 0px;
  position: relative;
}
.live-doctor-consultation .box .designation:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--btn2color);
  left: 0;
  top: 60%;
  transform: translate(0, -50%);
}
.live-doctor-consultation .box .designation span {
  background-color: var(--btn2color);
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  display: inline-block;
  border-radius: 3px;
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
}
.live-doctor-consultation .box .box-body {
  padding: 10px 15px 15px;
}
.live-doctor-consultation .box .box-body h3 {
  font-size: 16px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.live-doctor-consultation .box .box-body h3 span {
  display: block;
  width: 100%;
}
.live-doctor-consultation .box .box-body .verified {
  width: 66px;
  height: 22px;
  object-fit: contain;
  margin-bottom: 5px;
}
.live-doctor-consultation .box .box-body p {
  font-size: 14px;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.live-doctor-consultation .box .box-body ul {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 0px;
  margin: 0px 0px 10px;
}
.live-doctor-consultation .box .box-body ul li {
  list-style: none;
  margin-right: 10px;
}
.live-doctor-consultation .box .box-body .availability {
  background-color: #eee;
  margin: 0px -15px 15px;
  padding: 5px 15px;
}
.live-doctor-consultation .box .box-body .availability p {
  margin: 0px;
}
.doctors-slider-skeleton .box {
  background: linear-gradient(90deg, #eee 25%, #dedede 50%, #eee 75%);
  background-size: 200% 100%;
  animation: loading 3s infinite ease-in-out;
  border: 1px solid #ddd;
  height: 368.8px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .live-doctor-consultation:before,
  .live-doctor-consultation:after {
    display: none;
  }
}
/* Home Doctors Work End */

@media (max-width: 767px) {
  .video-consultation-landing-banner .box .my_content {
    width: 80%;
    text-align: left;
  }
  .video-consultation-landing-banner .box .my_content h2 {
    font-size: 16px;
    margin-bottom: 10px !important;
  }
  .video-consultation-landing-banner .box .my_content h5 {
    margin-bottom: 10px !important;
  }
  .video-consultation-landing-banner .box .my_content .btn {
    margin-bottom: 10px !important;
  }
  .video-consultation-landing-banner .box .content_img img {
    position: absolute;
    top: 24px;
    right: 22px;
    width: 70px !important;
    height: 70px !important;
  }
}

/* sample-report page design */

.sample-report img {
  margin-top: 25px;
  padding: 20px;
  border-radius: 10px;
  background-color: #eaeaea;
  box-shadow: 8px 7px 13px 0px #00000012;
  border: 1px solid #d5d3d3;
}

/* Pharmacy Detail page design fix Start */

.product-detail-new-changes hr {
  margin: 20px 0px;
  border-color: #c9c9c9;
}
.product-detail-new-changes .product-name {
  margin-bottom: 15px;
}
.product-detail-new-changes .brand-and-reviews {
  margin-bottom: 15px;
}
.product-detail-new-changes .price {
  margin-bottom: 20px;
}

.product-detail-new-changes .custom-qty {
  display: inline-flex;
  height: 30px;
  border: 1px solid #c9c9c9;
  overflow: hidden;
  border-radius: 5px;
}
.product-detail-new-changes .custom-qty button {
  background-color: #dbdbdb;
  width: 30px;
  height: 30px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding-bottom: 5px;
}
.product-detail-new-changes .custom-qty input {
  width: 56px;
}
.product-detail .price .badge {
  margin-left: 5px;
  font-size: 14px;
  margin-top: 10px;
  background-color: #dbdbdb;
  border: 1px solid #c9c9c9;
  color: var(--btn2color);
}
.product-detail-new-changes .price small {
  color: #898989;
}

.product-detail-new-changes .img-box {
  position: relative;
}
.product-detail-new-changes .wishlist-btn {
  content: "";
  position: absolute;
  padding: 0px;
  z-index: 1;
  font-size: 22px;
  right: 15px;
  bottom: 11px;
}
.product-detail-new-changes .status-text {
  margin: 20px 0px;
}
.product-detail-new-changes .product-detail-tabs .nav-item {
  margin-bottom: 0px;
}
.product-detail-new-changes .product-detail-tabs .nav-item .nav-link {
  margin: 0px 0px 10px;
  border-radius: 10px;
  background-color: #eee !important;
  border: 1px solid #c9c9c9;
  margin-right: 10px;
}
.product-detail-new-changes .product-detail-tabs .nav-item .nav-link.active {
  border-color: var(--greencolor);
}
.product-detail-new-changes .product-detail-tabs + .tab-content {
  background-color: #eee;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .product-detail-new-changes .single-product-right {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .product-detail-new-changes {
    padding: 20px 0px;
  }
  .product-detail-new-changes .simple-gallery {
    margin-bottom: 20px;
  }
  .product-detail-new-changes .add-to-cart-button {
    margin-top: 15px;
  }
}
/* Pharmacy Detail page design fix End */

/* Lab Thank You Work Start */
.lab-thankyou-page {
  padding: 60px 0px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lab-thankyou-page .box {
  background-color: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.lab-thankyou-page .box img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}
.lab-thankyou-page .box .heading {
  font-size: 24px;
  font-weight: bold;
}
.lab-thankyou-page .box p {
  margin-bottom: 10px;
  font-size: 16px;
}
.lab-thankyou-page .box .highlight {
  background-color: #eee;
  padding: 10px 15px;
  margin: 30px -30px 0px;
  font-weight: bold;
}
.lab-thankyou-page .box .highlight p {
  margin: 0px;
}
@media (max-width: 767px) {
  .lab-thankyou-page {
    padding: 20px 0px;
    min-height: 70vh;
  }
  .lab-thankyou-page .box {
    width: 95%;
    margin: 0 auto;
  }
  .lab-thankyou-page .box .heading {
    font-size: 20px;
  }
  .lab-thankyou-page .box p {
    font-size: 14px;
    line-height: 18px;
  }
}
/* Lab Thank You Work End */

/* doctor consult Thankyou new design */

.doctor-consult-thankyou-sect {
  padding: 60px 0 60px;
  position: relative;
}

.doctor-consult-thankyou-sect .thankyou-box {
  border: 1px solid #dadada;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 8%);
  text-align: center;
  background-color: white;
  overflow: hidden;
}

.doctor-consult-thankyou-sect .thankyou-box .content-div {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.doctor-consult-thankyou-sect .thankyou-box img {
  width: 120px;
  margin-bottom: 20px;
}

.doctor-consult-thankyou-sect .thankyou-box .doc-thankyou-content-1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 13px;
}

.doctor-consult-thankyou-sect .thankyou-box p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.doctor-consult-thankyou-sect .thankyou-box .doc-thankyou-content-2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

.doctor-consult-thankyou-sect .thankyou-box .thank-heading {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 30px;
}

.doctor-consult-thankyou-sect .thankyou-box .thank-box-footer {
  padding: 20px;
  background-color: #efefef;
}

.doctor-consult-thankyou-sect .box-top-girl {
  position: absolute;
  right: 30px;
  top: -125px;
}

.doctor-consult-thankyou-sect .box-top-girl img {
  width: 65px;
}

@media (max-width: 767px) {
  .doctor-consult-thankyou-sect .box-top-girl img {
    width: 50px;
  }

  .doctor-consult-thankyou-sect .thankyou-box .thank-heading {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .doctor-consult-thankyou-sect .thankyou-box .content-div {
    height: 350px;
  }

  .doctor-consult-thankyou-sect .thankyou-box .thank-heading {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .doctor-consult-thankyou-sect .thankyou-box .doc-thankyou-content-2 {
    font-size: 18px;
  }

  .doctor-consult-thankyou-sect {
    padding: 60px 0 60px;
  }

  .doctor-consult-thankyou-sect .box-top-girl {
    top: -95px;
  }

  .doctor-consult-thankyou-sect .thankyou-box .doc-thankyou-content-1 {
    font-size: 20px;
  }
}

/* health plan page revamp */

.about-health-plans {
  padding: 60px 0;
  background-color: white;
}

.about-health-plans h5.top-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--greencolor);
  display: inline-block;
}

.about-health-plans h2.main-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 15px;
}

.about-health-plans p {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 26px;
}

.about-health-plans .web-btn {
  margin-right: 20px;
}

.about-health-plans .btn {
  padding: 8px 20px;
}

.about-health-plans .btn {
  padding: 8px 20px;
}

.about-health-plans .about-health-plan-user-img {
  width: 100px;
  margin-right: 20px;
}

.about-health-plans .about-health-plan-img {
  width: 100%;
  border-radius: 30px;
}

.why-choose-health-plan {
  padding: 60px 0;
  background-color: white;
}

.why-choose-health-plan img {
  width: 100%;
}

.why-choose-health-plan h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-choose-health-plan p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 0;
}

.health-plans .health-plan-page-new-box {
  padding: 20px !important;
  border-radius: 10px !important;
  border: 1px solid #eee;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 15%);
  min-height: 850px;
  height: auto !important;
  margin: 15px !important;
}

.health-plans .health-plan-page-new-box .box-head {
  border: none;
}

.health-plans .health-plan-page-new-box .box-head img {
  border-radius: 10px !important;
  margin-bottom: 15px;
}

.health-plans .health-plan-page-new-box h3 {
  font-size: 26px;
}

.health-plans .health-plan-page-new-box ul {
  padding: 20px 20px 12px 30px !important;
  list-style: none;
}

.health-plans .health-plan-page-new-box ul li {
  position: relative;
}

.health-plans .health-plan-page-new-box ul li::after {
  content: "\f00c";
  display: block;
  position: absolute;
  left: -25px;
  top: 0;
  /* transform: translate(0, -50%); */
  font-family: Font Awesome\5 Pro;
  font-weight: 900;
  color: var(--greencolor);
}

.health-plans .health-plan-page-new-box .web-btn {
  border-radius: 10px;
  position: absolute;
  bottom: 20px;
  width: 90%;
  left: 50%;
  transform: translate(-50%, 0);
}

.health-plan-modal .modal-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-health-plans {
    padding: 30px 0;
  }

  .about-health-plans .about-health-plan-img {
    border-radius: 0;
    margin-bottom: 20px;
  }

  .about-health-plans .top-title {
    margin-bottom: 20px !important;
    font-size: 18px !important;
  }

  .about-health-plans .main-title {
    font-size: 23px !important;
    margin-bottom: 20px !important;
  }

  .about-health-plans p {
    font-size: 15px;
    line-height: 20px;
  }

  .why-choose-health-plan {
    padding: 30px 0;
  }

  .why-choose-health-plan h2 {
    font-size: 26px;
    font-weight: 600;
  }

  .why-choose-health-plan p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .health-plan-howitworks h2 {
    text-align: center;
  }

  .health-plan-howitworks h2 + p {
    text-align: center;
  }

  .health-plan-mobile-heading {
    justify-content: center;
  }

  .health-plan-mobile-heading h2 {
    text-align: center;
  }

  .mobile-text-center {
    text-align: center;
  }
}

/* health-insurance-service work start  */

.health-insurance-intro .box {
  border: 1px solid #9d9d9d;
  /* padding: 20px; */
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
  /* height: calc(100% - 30px); */
}
.health-insurance-intro .box img {
  width: 100%;
  height: auto;
  background-color: #eee;
  border-radius: 10px;
  display: block;
  object-fit: contain;
  margin-bottom: 15px;
}
.health-insurance-plan .btn {
  margin-top: 0px;
  font-size: 14px;
}
.health-insurance-testimonials .box .user-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #eee;
  object-fit: contain;
  margin-left: 80px;
  padding: 0px;
  /* border: 1px solid #ddd; */
}
@media (max-width: 767px) {
  .health-insurance-counter .box h2 {
    font-size: 25px;
    font-weight: 600;
  }
  .health-insurance-testimonials .box .user-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    padding: 0px;
  }
  .health-insurance-counter .box p {
    margin: 0px;
    font-size: 15px;
    word-break: break-all;
  }
}
/* health-insurance-service work end */

/* user profile health plan box design */

.user-profile-health-plan-box {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 8%);
  border-radius: 10px;
  border: 1px solid #eee;
  margin-bottom: 25px;
}

.user-profile-health-plan-box .img-div {
  width: 100px;
  height: 100px;
  padding: 16px;
  border-radius: 50%;
  /* border: 5px solid var(--greencolor); */
  margin-right: 10px;
}

.user-profile-health-plan-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--blackcolor);
}

.user-profile-health-plan-box p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--blackcolor);
}

.user-profile-health-plan-box:hover {
  color: var(--blackcolor);
}

@media (max-width: 767px) {
  .user-profile-health-plan-box {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .user-profile-health-plan-box .img-div {
    margin-right: 0;
    margin-bottom: 3px;
    width: 85px;
    height: 85px;
  }

  .user-profile-health-plan-box h4 {
    font-size: 16px;
  }

  .user-profile-health-plan-box p {
    font-size: 15px;
  }
}

/* new campaign css */

/* 1mg   css start */

/* TATA 1mg common class */
.one-mg-section-padding {
  padding: 40px 0px 0px;
}
.one-mg-section-padding1 {
  padding: 10px 0px;
}

.one-mg-campaign-page {
  padding-bottom: 75px;
}
/* TATA 1mg common class */
/* TATA 1mg common class */
.one-mg-banner-section {
  background-image: url("https://www.secondmedic.com/asset/consult/image/1mg-camp-banner-desktop.webp");
  background-size: cover;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.one-mg-banner-section .form-group {
  margin-bottom: 10px !important;
}

.one-mg-banner-section .form-control {
  padding: 7px 15px;
  margin-bottom: 0px;
  height: unset;
  min-height: unset;
}

.one-mg-banner-section .form-check {
  margin-bottom: 10px;
}

.one-mg-banner-section .onemg-mobile-banner {
  display: none;
}

@media (max-width: 767px) {
  .one-mg-banner-section .onemg-mobile-banner {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
    display: block;
    border: 1px solid #ddd;
  }

  .one-mg-banner-section {
    background-image: unset;
    height: unset;
    display: block;
  }
}

.one-mg-banner-section .one-mg-banner-benefits .clock-timer {
  width: 90px;
}
.one-mg-banner-section .one-mg-banner-benefits .free-consultation-img {
  width: 80%;
  margin-bottom: 60px;
}
.one-mg-banner-section .one-mg-banner-benefits .banner-img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: bottom;
}
.download-our-app-new .box {
  background: linear-gradient(
    90deg,
    rgba(1, 165, 160, 0.3),
    rgba(12, 87, 166, 0.5)
  ) !important;
}

.one-mg-banner-section .box {
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  background-color: white;
  position: relative;
  z-index: 1;
}
.one-mg-banner-section .box .box-header {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 0.5px solid #dddddd;
  padding: 15px 15px;
}
.one-mg-banner-section .box .box-body {
  padding: 15px 15px 0 15px;
}
.web-btn {
  background-color: var(--greencolor);
  color: white;
  padding: 10px 20px;
}
/* .why-to-choose-the-lab{
  padding: 30px 0px;
} */
.one-mg-why-to-choose {
  text-align: center;
}
.one-mg-why-to-choose h6 {
  margin-bottom: 0;
  margin-top: 10px;
}
.one-mg-why-to-choose-the-lab {
  padding: 40px 0px;
}
.one-mg-why-to-choose-the-lab h1 {
  font-weight: bold;
}
.one-mg-why-to-choose-the-lab img {
  width: 75px;
  height: 75px;
}
.reference-lab {
  background-color: #fbf0e0;
  padding: 40px 0px;
}
.reference-lab .reference-inner-box {
  /* display: block; */
  /* margin-top: 100px;   */
  /* align-self: center; */
}
.reference-lab .reference-inner-box-right img {
  height: 350px;
}
.reference-lab .reference-inner-box .reference-lab-img img {
  height: 100px;
}
.reference-lab .reference-lab-img {
  height: 100px;
}

.all-around-care {
  background-color: #f1fcff;
  padding: 40px 0px;
}
.all-around-care-card {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  background-color: #d4f2ff;
  padding: 0 2vw 0 3vw;
  align-items: center;
  min-height: 175px;
  position: relative;
}
.all-around-care-card .round img {
  height: 152px;
  width: 150px;
  position: absolute;
  bottom: 0;
  right: 30px;
}
.all-around-care-card .all-around-care-card-heading {
  width: calc(100% - 150px);
}
@media (max-width: 767px) {
  .all-around-care-card .all-around-care-card-heading {
    width: calc(100% - 170px);
  }
}

.all-around-care-card p.para1 {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .all-around-care-card p.para1 {
    font-size: 10px;
  }
}
.one-mg-getting-tested .getting-tested-card .one-mg-card-img img {
  /* width: 35%; */
  height: 100px;
  /* width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block; */
}

.one-mg-getting-tested p {
  margin-bottom: 0;
  margin-top: 15px;
}

.accuracy-assurance {
  background-color: #fff6d8;
}
.accuracy-assurance .card {
  background: transparent;
}
.accuracy-assurance .accuracy-assurance-img {
  margin-bottom: 20px;
}
.india-trusts .india-trusts-card-img img {
  height: 100px;
  /* width: 100%; */
}
.india-trusts p {
  margin-bottom: 0;
  margin-top: 10px;
}

.one-mg-campaign-header a {
  font-size: 20px;
}

@media (max-width: 767px) {
  .one-mg-campaign-header a {
    font-size: 15px;
  }
}

.one-mg-testimonials .testimonials-comment-img {
  position: relative;
}
.para1a {
  font-size: 0.9vw;
  line-height: 1.4;
  margin-bottom: 0;
}
.one-mg-terms-and-condition {
  padding: 60px 0px;
  background-color: #f5f5f5;
}
.one-mg-terms-and-condition ol {
  font-size: 13px;
  line-height: 25px;
}
.one-mg-fixed-box {
  background-color: #ed7b22;
  padding: 20px 0px 15px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 100;
}
.one-mg-testimonials {
  background-color: #d1f5ff;
  padding: 60px 0px;
}
.testimonial-slider-one-mg-box {
  margin: 10px 0px;
  position: relative;
}

.one-mg-testimonial-comment {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 30;
}

.one-mg-testimonial-user-name {
  position: absolute;
  bottom: 1vw;
  left: 40%;
}
.one-mg-comment-heading {
  margin-bottom: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.one-mg-comment-comment {
  margin-bottom: 0px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1399px) {
}

@media (max-width: 1199px) {
  .one-mg-getting-tested .getting-tested-card .one-mg-card-img img {
    /* width: 35%; */
    height: 80px;
  }
  .india-trusts .india-trusts-card-img img {
    height: 80px;
  }
  .reference-lab .reference-inner-box-right img {
    height: 230px;
  }
  .reference-lab .reference-inner-box .reference-lab-img img {
    height: 90px;
  }
  .campaign-h {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .one-mg-why-to-choose-the-lab .one-mg-why-to-choose {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .one-mg-getting-tested .getting-tested-card p {
    font-size: 13px !important;
    line-height: 20px;
    margin-top: 10px;
  }
  .india-trusts .card p {
    margin-top: 10px;
    font-weight: 600;
  }
}

@media (max-width: 1024px) {
}

@media (max-width: 992px) {
}

@media (max-width: 767px) {
  .one-mg-comment-heading {
    font-size: 16px;
  }
  .one-mg-testimonials .img-box img {
    height: 230px;
  }
  .one-mg-testimonials {
    padding: 30px 0px;
  }
  .one-mg-comment-comment {
    margin-bottom: 5px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }
  .one-mg-testimonial-comment {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .one-mg-section-padding {
    padding: 20px 0px 0px;
  }
  .campaign-h {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .all-around-care .all-around-care-card .all-around-care-card-heading h2 {
    font-size: 23px !important;
    font-weight: 600 !important;
  }
  .one-mg-why-to-choose-the-lab {
    padding: 30px 0px;
  }
  .one-mg-why-to-choose-the-lab h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px !important;
  }
  .one-mg-why-to-choose-the-lab .one-mg-why-to-choose {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }
  .reference-lab .reference-inner-box .reference-lab-img img {
    height: 50px;
  }
  .reference-lab .reference-inner-box-right img {
    height: 85px;
  }
  .india-trusts .india-trusts-card-img img {
    height: 60px;
  }
  .all-around-care-card {
    font-size: 10px;
  }
  .all-around-care .all-around-care-card .all-around-care-card-heading h2 {
    font-size: 17px !important;
    font-weight: 600 !important;
  }
  .all-around-care-card .round img {
    height: 130px;
  }
  .one-mg-getting-tested .getting-tested-card .one-mg-card-img img {
    height: 65px;
  }
  .one-mg-getting-tested .getting-tested-card p {
    font-size: 10px;
    font-weight: 500;
  }
  .one-mg-terms-and-condition {
    padding: 30px 0px;
  }
  .one-mg-terms-and-condition ol {
    font-size: 12px;
    line-height: 19px;
    padding: 15px;
  }
  .one-mg-campaign-page {
    padding-bottom: 60px;
  }
  .one-mg-banner-section .one-mg-banner-benefits .free-consultation-img {
    margin-bottom: 20px;
  }
  .one-mg-banner-section .one-mg-banner-benefits .banner-img {
    height: 200px;
  }
}

/* surgery page redesign work start */

.surgery-banner-top-new {
  height: 610px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.surgery-banner-top-new .surgery-banner-animate-icon {
  position: absolute;
  bottom: 30px;
  left: 100px;
  width: 150px;
  animation: moveeffect 3s ease-in-out 0s infinite alternate;
}

@keyframes moveeffect {
  0% {
    transform: rotateX(0deg) translateY(0px) translateX(0px);
  }
  50% {
    transform: rotateX(20deg) translateY(-20px) translateX(20px);
  }
  100% {
    transform: rotateX(0deg) translateY(0px) translateX(0px);
  }
}

.surgery-banner-top-new .surgery-banner-content {
  text-align: center;
  margin-top: 100px;
}

.surgery-banner-top-new .surgery-banner-content h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 63px;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 1px 4px rgba(0, 0, 0, 30%);
}

.surgery-banner-top-new .surgery-banner-content p {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
  color: white;
  text-shadow: 2px 1px 4px rgba(0, 0, 0, 30%);
}

.emergency-call-surgery {
  padding: 80px 0;
  background-color: #e7e7e7;
  text-align: center;
}

.emergency-call-surgery h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.emergency-call-surgery .surgery-emergency-number {
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency-call-surgery .number-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: var(--greencolor);
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.emergency-call-surgery .number-div img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%);
  margin-right: 5px;
}

.emergency-call-surgery .toll-free {
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin-left: 15px;
  display: inline-block;
}

.emergency-call-surgery .box {
  padding: 35px 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 14px 0 rgb(25 131 138 / 32%);
  border: 1px solid #eee;
  margin: 13px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.emergency-call-surgery .box img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.emergency-call-surgery .box h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.emergency-call-surgery .text-emergency {
  font-size: 44px;
  color: red;
}

.surgery-hospital-section {
  padding: 80px 0 !important;
}

.expert-surgeons-appoinment .box .circle {
  box-shadow: 0 0 20px 0 rgb(66 138 214 / 29%) !important;
}

.how-it-works-sugery .box .circle {
  box-shadow: 0 0 20px 0 rgb(66 138 214 / 29%) !important;
}

.expert-surgeons-appoinment ul {
  padding-left: 0px;
}

/* surgery page redesign work end */

@media (min-width: 768px) and (max-width: 992px) {
  .surgery-banner .web-form-box {
    margin-top: 25px;
  }

  .surgery-banner-top-new .surgery-banner-animate-icon {
    bottom: 0;
    left: 30px;
    width: 110px;
  }
}

@media (max-width: 767px) {
  .surgery-banner-top-new {
    height: 60vh;
  }

  .surgery-banner-top-new .surgery-banner-content h2 {
    font-size: 33px;
    line-height: 43px;
  }

  .surgery-banner-top-new .surgery-banner-content p {
    font-size: 19px;
    line-height: 26px;
  }

  .emergency-call-surgery {
    text-align: center;
    padding: 60px 0;
  }

  .emergency-call-surgery .text-emergency {
    font-size: 20px;
  }

  .emergency-call-surgery h2 {
    font-size: 20px;
  }

  .emergency-call-surgery .surgery-emergency-number {
    display: block;
  }

  .emergency-call-surgery .number-div {
    margin-bottom: 10px;
  }

  .emergency-call-surgery .toll-free {
    font-size: 16px;
  }

  .expert-surgeons-appoinment ul {
    padding-left: 20px;
    margin-bottom: 30px;
  }

  .surgery-banner-top-new .surgery-banner-animate-icon {
    bottom: 0;
    left: 10px;
    width: 50px;
  }
}

/* radiology campaign changes */

.radiology-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.radiology-banner::before {
  content: "";
  display: block;
  background-color: var(--greencolor);
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.radiology-banner ul li {
  margin: 25px 0;
  font-size: 22px;
}

.radiology-banner h2 {
  font-size: 35px;
}

.radiology-banner h4 {
  font-size: 24px;
}

.radiology-form-check {
  display: flex;
  align-items: start;
  gap: 12px;
}

.radiology-form-check input {
  margin-top: 7px;
}

.radiology-form-check label a {
  text-decoration: underline;
  color: var(--greencolor);
  font-weight: 700;
}

@media (min-width: 1200px) {
  .radiology-banner .container {
    max-width: 1330px;
  }
}

@media (max-width: 767px) {
  .radiology-banner ul li {
    font-size: 14px;
    margin-top: 0;
  }

  .radiology-banner ul li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-left: 15px;
  }

  .radiology-banner .secondopinion-img {
    width: 250px !important;
    height: 250px;
    margin: 10px auto 0;
    display: flex;
  }

  .radiology-banner h2 {
    text-align: center;
    font-size: 25px;
  }

  .radiology-banner h4 {
    text-align: center;
    font-size: 19px;
  }

  .radiology-banner .box {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

/*  next-blog-in-detail work start */

.next-blog-in-detail {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.next-ask-doc-question {
  max-height: 525px !important;
}

.next-blog-in-detail::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  /* backdrop-filter: blur(7px); */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0.95) 80%
  );
}

.next-blog-in-detail p {
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  -webkit-box-orient: vertical;
}

.next-blog-in-detail .next-blog-upper-img-content img {
  width: 100%;
  height: 375px;
  object-fit: cover;
  border-radius: 7px;
}

.next-blog-in-detail h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.next-blog-in-detail .next-blog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 45px;
  border-radius: 7px;
  background-color: var(--greencolor);
  color: white;
  font-size: 17px;
  font-weight: 600;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}

.next-blog-in-detail .next-blog-btn img {
  margin-bottom: 0;
  filter: invert(1);
  margin-left: 5px;
}

@media (max-width: 767px) {
  .next-blog-in-detail .next-blog-upper-img-content img {
    height: 250px;
  }
}

/*  next-blog-in-detail work end */

/* next-ask-doc-question work start */

.next-ask-doc-question::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  /* backdrop-filter: blur(7px); */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.95) 80%
  );
}

.next-ask-doc-question h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.next-ask-doc-question p {
  margin-bottom: 15px;
}

.next-ask-doc-question ul li {
  margin-top: 5px;
}

/* next-ask-doc-question work end */

/* ask a doctor landing page changes */

.ask-a-doctor .ask-search {
  position: relative;
  width: 50%;
  display: block;
  margin: 0 auto 30px;
}

.ask-a-doctor .ask-search input {
  background-color: #eee;
  color: #393939;
  border: none;
  border-radius: 5px;
  padding: 8.5px 45px 8.5px 20px !important;
  height: auto;
}

.ask-a-doctor .ask-search button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  border: 0;
  box-shadow: 0;
  background-color: transparent;
}

.ask-a-doctor .ask-search button::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(https://www.secondmedic.com/utility/icons/search-icon.svg);
  background-size: 100% 100%;
  display: block;
}

.ask-a-doctor .ask-search-results {
  position: absolute;
  width: 100%;
  display: block;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  border: 1px solid #eee;
  padding: 10px;
  top: 40px;
  left: 0;
  z-index: 1;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ask-a-doctor .ask-search-results ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.ask-a-doctor .ask-search-results ul li {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.ask-a-doctor .ask-search-results ul li:first-child {
  padding-top: 0;
}

.ask-a-doctor .ask-search-results ul li:last-child {
  border-bottom: none;
}

.ask-a-doctor-bg .col-sm-6 img {
  width: 100%;
  object-fit: cover;
}

.ask-a-doctor .ask-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .ask-a-doctor .ask-heading {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .ask-a-doctor .ask-search {
    width: 100%;
  }
}

/* ask a doctor landing page changes end */

.qa-details .ask-doctor-consult-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

.qa-details .box {
  overflow: hidden;
}

.qa-details .recent-faq a h5 {
  padding: 15px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  width: calc(100% - 30px);
}

.qa-details .recent-faq a h5 svg {
  stroke: 3px var(--greencolor);
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.qa-details .recent-faq a h5 span {
  display: block;
  width: calc(100% - 30px);
}

.qa-details .recent-faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qa-details .recent-faq ul li {
  border-bottom: 1px solid #dddddd;
}

.qa-details .recent-faq ul li:last-child {
  border-bottom: none;
}

.qa-details .recent-faq .recent-faq-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lab-add-member-top {
  padding: 60px 0;
}

.lab-add-member-top .web-btn {
  background-image: unset !important;
}

.lab-add-member-top .lab-cart-empty-img {
  width: 300px;
  margin-bottom: 40px;
}

.lab-add-member-top h3 {
  margin-bottom: 40px;
}

/* blog detail design changes */

.blog-single .blog-detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .blog-single .blog-detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    font-size: 17px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: -1px;
    left: 0;
    z-index: 1111;
  }
}

/* health-plan-campaign work start */

.secmed-health-campaign-header {
  padding: 12px 0;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 4%);
  border-bottom: 1px solid #eee;
}

.secmed-health-campaign-header a {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  color: var(--blackcolor);
  font-size: 16px;
  font-weight: 500;
  margin-right: 20px;
}

.secmed-health-campaign-header a img {
  width: 17px;
  margin-right: 6px;
  filter: invert(32%) sepia(46%) saturate(4591%) hue-rotate(164deg)
    brightness(88%) contrast(80%);
}

.secmed-health-campaign-header ul.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: end;
}

.secmed-health-campaign-header ul.social-icons li {
  margin-left: 10px;
  line-height: 1;
}

.secmed-health-campaign-header ul.social-icons li a {
  margin-right: 0px;
}

.secmed-health-campaign-header ul.social-icons li img {
  width: 30px;
  height: 30px;
  margin-right: 0;
  filter: unset;
}

.health-campaign-banner {
  padding: 40px 0 65px;
  background-image: url("https://www.secondmedic.com/asset/consult/image/campaign/campaign-banner-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.health-campaign-banner .banner-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-36%, 0);
  width: 295px;
}

.health-campaign-banner .logo {
  height: 50px;
  width: auto;
}

.health-campaign-banner h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 40px;
  color: #fff;
}

.health-campaign-banner p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0px;
  color: #fff;
  line-height: 21px;
}

.health-campaign-banner h5 {
  color: #fff;
}

.health-campaign-banner ul {
  margin: 0;
  margin-top: 40px;
  padding-left: 0;
  list-style: none;
}

.health-campaign-banner ul li {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin-top: 20px;
  padding-left: 30px;
  position: relative;
}

.health-campaign-banner ul li::before {
  content: "";
  clear: both;
  display: block;
  background: url("https://www.secondmedic.com/asset/consult/image/campaign/tick-icon.webp")
    top center no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1px;
  left: 0;
}

.health-campaign-banner .form-box {
  background-color: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 7%);
}

.health-campaign-banner .form-box .box-heading {
  background-color: var(--greencolor);
  padding: 20px;
  color: white !important;
}

.health-campaign-banner .form-box .box-heading h4 {
  color: white !important;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
}

.health-campaign-banner .form-box .box-heading p {
  margin-bottom: 0;
}

.health-campaign-banner .form-box form {
  padding: 20px;
}

.secmed-campaign-benefits {
  padding: 80px 0;
}

.camp-heading {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 20px;
}

.secmed-campaign-benefits {
  padding: 80px 0;
}

.secmed-campaign-benefits .benefit-box {
  display: flex;
  align-items: center;
  justify-content: start;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  margin-top: 25px;
  min-height: 160px;
  overflow: hidden;
}

.secmed-campaign-benefits .benefit-box img {
  width: 35%;
}

.secmed-campaign-benefits .benefit-box .benefit-content {
  padding: 20px;
  width: 65%;
}

.secmed-campaign-benefits .benefit-box .benefit-content h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.secmed-campaign-benefits .benefit-box .benefit-content p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
  color: #474747;
}

.campaign-about-healthhub {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.campaign-about-healthhub h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.campaign-about-healthhub p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}

.campaign-about-healthhub p span {
  color: var(--greencolor);
  font-size: 24px;
  font-weight: 700;
}

.campaign-about-healthhub h5 {
  color: var(--greencolor);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0;
}

.campaign-about-healthhub img {
  border-radius: 10px;
  width: 100%;
}

.campaign-note {
  padding: 80px 0;
}

.campaign-note .note-box {
  padding: 30px;
  border: 2px dashed #e9d543;
  background-color: #e9d6433a;
  border-radius: 10px;
}

.campaign-note .note-box h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .health-campaign-banner .banner-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .secmed-health-campaign-header {
    text-align: center;
  }

  .secmed-health-campaign-header .social-icons {
    justify-content: center !important;
    margin-top: 12px !important;
  }

  .secmed-health-campaign-header .social-icons li:first-child {
    margin-left: 0 !important;
  }

  .health-campaign-banner {
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .health-campaign-banner .logo {
    margin: 0 auto !important;
    height: 40px;
  }

  .health-campaign-banner h2 {
    font-size: 28px;
  }

  .health-campaign-banner p {
    font-size: 14px;
    line-height: 22px;
  }

  .health-campaign-banner ul {
    text-align: left !important;
  }

  .health-campaign-banner .form-box {
    margin-top: 25px;
  }

  .secmed-campaign-benefits {
    padding: 40px 0;
  }

  .secmed-campaign-benefits .benefit-box {
    min-height: 175px;
  }

  .secmed-campaign-benefits .benefit-box img {
    height: 175px;
    object-fit: cover;
  }

  .campaign-about-healthhub {
    padding: 40px 0;
    text-align: center;
  }

  .campaign-about-healthhub img {
    margin-bottom: 15px;
  }

  .campaign-about-healthhub h3 {
    font-size: 25px;
  }

  .campaign-about-healthhub p {
    font-size: 17px;
    line-height: 25px;
  }

  .campaign-about-healthhub p span {
    font-size: 20px;
  }

  .campaign-about-healthhub h5 {
    margin-bottom: 0;
  }

  .campaign-note {
    padding: 40px 0;
  }

  .campaign-note .note-box {
    padding: 20px;
  }

  .campaign-note .note-box h5 {
    font-size: 16px;
    line-height: 25px;
  }

  .healthhub-camp-btn {
    position: fixed;
    z-index: 1111;
    bottom: 0;
    left: 0;
    border-radius: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  }
}

/* health-plan-campaign work end */

/* Test Thankyou Page Work Start */
.test-thankyou-page {
  padding: 50px 0px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.test-thankyou-page .icon {
  font-size: 40px;
  margin-bottom: 25px;
}
.test-thankyou-page .title {
  font-size: 22px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.test-thankyou-page p {
  font-size: 16px;
  margin-bottom: 25px;
  color: black;
}
@media (max-width: 767px) {
  .test-thankyou-page {
    min-height: 60vh;
  }
  .test-thankyou-page .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .test-thankyou-page p {
    font-size: 14px;
  }
}
/* Test Thankyou Page Work End */

/* prescription page design fix work start */

.doc-prescription .doc-prescription-breadcrumb .breadcrumb-title {
  text-align: center;
  margin-top: 10px;
  font-size: 32px;
}

.doc-prescription .prescription-tab-btns {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 8%);
  justify-content: space-between;
  background-color: white;
}

.doc-prescription .prescription-tab-btns li {
  width: 48%;
  text-align: center;
}

.doc-prescription .prescription-tab-btns li a {
  background-color: #eee;
  border-radius: 6px;
  padding: 10px 15px;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-prescription .prescription-tab-btns li a.active {
  background-color: var(--greencolor);
  color: white;
}

.doc-prescription .card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 8%);
}

.doc-prescription .card .card-body {
  padding: 0;
}

.doc-prescription .prescription-remove-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: red;
  color: white;
  border: none;
  box-shadow: none;
  outline: none;
  margin-top: 34px;
}

.doc-prescription #addmore {
  padding: 0 15px;
}

.doc-prescription .doc-prescription-sidebox {
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  height: 600px;
  overflow-y: scroll;
}

.doc-prescription .doc-prescription-sidebox .sidebox-content {
  padding: 20px;
  padding-top: 0;
}

.doc-prescription .doc-prescription-sidebox h4 {
  font-size: 19px;
  font-weight: 700;
  padding: 20px;
  background-color: #eee;
  margin-bottom: 0;
}

.doc-prescription .doc-prescription-sidebox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-prescription .doc-prescription-sidebox ul li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-prescription .doc-prescription-sidebox ul li:last-child {
  border-bottom: none;
}

.doc-prescription .doc-prescription-sidebox ul li .prescription-action-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

.doc-prescription
  .doc-prescription-sidebox
  ul
  li
  .prescription-action-btn
  .prescription-side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #dbdbdb;
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: none;
  margin-right: 10px;
}

.doc-prescription
  .doc-prescription-sidebox
  ul
  li
  .prescription-action-btn
  .prescription-side-btn
  img {
  width: 50%;
  height: 50%;
}

.doc-prescription
  .doc-prescription-sidebox
  ul
  li
  .prescription-action-btn
  .prescription-side-btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--greencolor);
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: none;
}

.doc-prescription
  .doc-prescription-sidebox
  ul
  li
  .prescription-action-btn
  .prescription-side-btn2
  img {
  width: 50%;
  height: 50%;
  filter: invert(1);
}

.doc-prescription .doc-prescription-sidebox ul li h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px;
}

.doc-prescription .doc-prescription-sidebox ul li p {
  font-size: 15px;
  margin-bottom: 0px;
  color: var(--btn2color);
}

.doc-prescription .prescription-side-content {
  width: 60%;
  line-break: anywhere;
}

.doc-prescription .prescription-table {
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  padding: 15px;
}

@media (max-width: 767px) {
  .doc-prescription .prescription-table {
    overflow-x: scroll;
  }

  .doc-prescription .prescription-table table {
    white-space: nowrap;
  }
}

/* prescription page design fix work end */

.camp-thankyou .box {
  padding: 30px;
}

.camp-thankyou-image {
  width: 110px;
  margin-bottom: 15px;
}

/* healthplan-campaign-list work start */

.camp-header {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.health-camp-list {
  padding: 55px 0 80px;
}

.health-camp-list-banner {
  margin-top: 60px;
}

.health-camp-list-banner img {
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 7%);
  border: 1px solid #eee;
}

.health-camp-list .health-camp-box {
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  border-radius: 10px;
  display: block;
  margin-top: 25px;
}

.health-camp-list .health-camp-box img {
  border-radius: 7px;
}

.health-camp-list .health-camp-box h3 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 20px;
}

.health-camp-list .health-camp-box p {
  font-size: 16px;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

/* healthplan-campaign-list work end */

.fa.fa-refresh:before {
  display: none;
}

.fa.fa-refresh {
  background-image: url(https://www.secondmedic.com/asset/consult/image/captcha-refresh-icon.webp);
  background-size: cover;
  background-position: center;
  width: 15px;
  height: 15px;
  display: block;
  filter: unset !important;
}

.no-doctor-found-design {
  padding: 5px 20px !important;
  margin-bottom: 30px !important;
}
.no-doctor-found-design .no-doctor-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.no-doctor-found-design .img-name {
  display: flex;
  align-items: center;
  gap: 25px;
}
.no-doctor-found-design .title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0px;
}
.no-doctor-found-design .no-doctor-found-img {
  border: none !important;
  padding: 0;
  margin: 0 !important;
  width: 100px !important;
  height: 100px !important;
}
@media (max-width: 767px) {
  .no-doctor-found-design {
    padding: 20px !important;
  }
  .no-doctor-found-design .no-doctor-box,
  .no-doctor-found-design .img-name {
    flex-direction: column;
    gap: 15px;
  }
}
/*  */

.doctors .doctor-list-filter-div {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  flex-wrap: wrap;
}

.doctors .doctor-list-filters {
  margin-bottom: 0;
}

.doctors .doctor-list-filters select {
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #b3b3b3;
  background-color: #eee;
  color: black;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}

.doctors .doctor-list-filters select.active {
  border: 1px solid var(--greencolor);
  background-color: #19838a25;
}

.doctors .doctor-list-reset-btn {
  margin-bottom: 0;
}

.doctors .doctor-list-reset-btn a {
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #ff0000;
  background-color: #ff000025;
  color: black;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.doctors .doctor-list-reset-btn a:hover {
  border: 1px solid #ff0000;
  background-color: #ff000025 !important;
  color: black !important;
}

.doctors .doctor-list-reset-btn a img {
  width: 9px;
  height: 9px;
  margin-right: 5px;
}

.doctors .filters-card .card-header {
  background-color: #eee !important;
}

.doctors .doctor-box .exp {
  background-color: var(--greencolor) !important;
  color: white;
}
@media (max-width: 767px) {
  .doctors .doctor-list-filter-div {
    justify-content: center;
  }
}
/* secmed-bp-checker work start */

.bp-check-header {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
}

.bp-check-header img {
  height: 50px;
}

.secmed-bp-checker {
  padding: 40px 0 0;
}

.secmed-bp-checker h1 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  display: inline-block;
}

.secmed-bp-checker h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2.5px;
  background-color: var(--greencolor);
  position: absolute;
  left: 0;
  bottom: 0;
}

.secmed-bp-checker h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 2.5px;
  background-color: var(--greencolor);
  position: absolute;
  right: 0;
  bottom: 0;
}

.secmed-bp-checker .form-box {
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  border-radius: 10px;
  background-color: white;
}

.secmed-bp-checker .bp-checker-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.secmed-bp-checker .nav-pills {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  justify-content: space-between;
}

.secmed-bp-checker .nav-pills .nav-item {
  width: 48%;
}

.secmed-bp-checker .nav-pills .nav-link {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  color: black;
  font-weight: 500;
  border-radius: 6px;
}

.secmed-bp-checker .nav-pills .nav-link:hover {
  background-color: #ddd;
}

.secmed-bp-checker .nav-pills .nav-link.active {
  background-color: var(--greencolor);
  color: white;
}

.secmed-bp-checker .booking-card {
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 7%);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.secmed-bp-checker .booking-card .booking-content {
  display: flex;
  align-items: center;
  justify-content: start;
  width: calc(100% - 100px);
}

.secmed-bp-checker .booking-card .booking-content h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
}

.secmed-bp-checker .booking-card .booking-content h5.booking-date {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
  color: #676767;
}

.secmed-bp-checker .booking-card .booking-action-btn {
  display: flex;
  align-items: center;
}

.secmed-bp-checker .booking-card .booking-action-btn a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  overflow: hidden;
}

.secmed-bp-checker .booking-card .booking-action-btn a img {
  width: 20px;
}

/* .secmed-bp-checker .booking-card .booking-action-btn a.message-btn {
  background-color: #29a61a;
}

.secmed-bp-checker .booking-card .booking-action-btn a.message-btn img {
  width: 80%;
} */

.secmed-bp-checker .booking-card .booking-action-btn a.detail-btn {
  background-color: var(--greencolor);
}

.secmed-bp-checker .booking-card .booking-action-btn a.detail-btn img {
  filter: invert(1);
}

@media (max-width: 767px) {
  .bp-check-header img {
    height: 35px;
  }

  .secmed-bp-checker h1 {
    font-size: 27px;
    margin-bottom: 40px;
  }

  .secmed-bp-checker .bp-checker-img {
    display: none;
  }

  .secmed-bp-checker .booking-card .booking-content {
    /* width: 100%;
    margin-bottom: 10px; */
    display: block;
    width: calc(100% - 85px);
  }

  .secmed-bp-checker .booking-card .booking-action-btn {
    justify-content: end;
  }

  .secmed-bp-checker .booking-card .booking-action-btn a {
    width: 35px;
    height: 35px;
    margin-left: 7px;
  }

  .secmed-bp-checker .booking-card .booking-content h5.booking-date {
    margin-top: 5px;
  }
}

.bp-checker-booking-detail {
  padding: 30px 0;
}

.bp-checker-booking-detail .booking-box {
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  background-color: white;
  overflow: hidden;
  margin-bottom: 20px;
}

.bp-checker-booking-detail .booking-box .booking-header {
  background-color: #e0e0e0;
  padding: 15px;
}

.bp-checker-booking-detail .booking-box .booking-header a {
  display: flex;
  align-items: center;
}

.bp-checker-booking-detail .booking-box .booking-header h4 {
  margin-bottom: 1px;
  margin-left: 5px;
  line-break: ;
}

.bp-checker-booking-detail .booking-box .booking-content {
  padding: 15px;
}

.bp-checker-booking-detail .booking-box .booking-content h6 {
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}

.bp-checker-booking-detail .booking-box .booking-content h4 {
  margin-bottom: 0;
  font-weight: 500;
}

.bp-checker-booking-detail .booking-box .booking-content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
}

.bp-checker-booking-detail .bp-reading-box h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.bp-checker-booking-detail .bp-reading-box h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--greencolor);
}

.bp-checker-booking-detail .bp-reading-box h6 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0 !important;
  margin-top: 10px;
}

.bp-checker-booking-detail .bp-reading-box .booking-content .bp-reading-row {
  position: relative;
}

.bp-checker-booking-detail
  .bp-reading-box
  .booking-content
  .bp-reading-row::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 60px;
  background-color: #bfbfbf;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* secmed-bp-checker work end */

.search-action-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 25px 15px 15px !important;
  border-radius: 7px;
}

.search-action-btns li {
  width: 49%;
}

.onemg-package-section {
  padding: 20px 0 60px;
}

.onemg-package-section.foodhandler-package-section {
  padding: 0;
}

.onemg-package-section .owl-nav button {
  display: block;
  transition: all 0.3s 0s linear;
}

.onemg-package-section .owl-nav button span {
  transition: all 0.3s 0s linear;
  line-height: 18px;
}

.onemg-package-section .owl-nav button:hover {
  background-color: #e74c4a !important;
}

.onemg-package-section.foodhandler-package-section .owl-nav button:hover {
  background-color: var(--greencolor) !important;
}

.onemg-package-section.foodhandler-package-section .package-heading {
  margin-bottom: 0px;
}

.onemg-package-section .package-heading {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.onemg-package-section .package-box {
  border: 1px solid #ddd;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 10%);
  background-color: #f1f1f1;
  margin: 12px;
  border-radius: 6px;
  overflow: hidden;
}

.onemg-package-section .package-box .package-heading {
  padding: 15px;
}

.onemg-package-section .package-box .package-heading h4 {
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
}

.onemg-package-section .package-box .box-price {
  background-color: #e74c4a;
  color: white;
  padding: 10px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.onemg-package-section.foodhandler-package-section .package-box .box-price {
  background-color: var(--greencolor);
  color: white;
  padding: 10px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.onemg-package-section .package-box .box-price .certificate {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.onemg-package-section .package-box .box-price .certificate i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 50px;
  z-index: 0;
  color: #fff;
}
.onemg-package-section .package-box .box-price .certificate span {
  position: relative;
  z-index: 1;
  font-weight: bold;
  color: black;
}
.onemg-package-section .package-box .box-price .price-content {
  width: calc(100% - 60px);
}
.onemg-package-section .package-box .box-price .price-content h4 {
  font-size: 20px;
  margin: 0px;
  color: white;
}
.onemg-package-section .package-box .box-price .price-content p {
  margin: 0px;
  font-size: 14px;
  color: white;
}

.onemg-package-section.foodhandler-package-section
  .package-box
  .box-price
  .price-content
  h2 {
  font-size: 26px;
  margin: 0px;
  color: white;
}

.onemg-package-section .package-box .box-acc-body {
  padding: 15px 15px 5px;
}

.onemg-package-section .package-box .accordion .accordion-package {
  padding: 10px 15px;
  border: 1px solid #eee;
  background-color: white;
  margin-bottom: 10px;
}

.onemg-package-section .package-box .accordion .acc-content {
  padding: 10px 15px;
  background-color: white;
  margin-bottom: 10px;
}

.onemg-package-section .package-box .accordion .acc-content ul {
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

.onemg-package-section .package-box .accordion .accordion-package:last-child {
  margin-bottom: 0;
}

.onemg-package-section .package-box .accordion .accordion-package:after {
  font-family: "FontAwesome";
  content: "-";
  float: right;
  font-size: 14px;
  font-weight: 700;
}
.onemg-package-section
  .package-box
  .accordion
  .accordion-package.collapsed:after {
  content: "+";
  font-size: 14px;
  font-weight: 700;
}

.video-consult-247-section .video-consult-box247 {
  border-radius: 10px;
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  overflow: hidden;
}

.video-consult-247-section .web-checkbox {
  width: 100%;
}

.video-consult-247-section .web-checkbox p {
  margin-bottom: 0;
  font-weight: 600;
}

.video-consult-247-section .web-checkbox label {
  align-items: center;
  border-color: #ddd;
  flex-direction: unset;
}

.video-consult-247-section .web-checkbox img {
  width: 17px;
  margin-right: 10px;
}

.video-consult-247-section .video-form-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #454545;
}

.video-consult-247-section .web-checkbox input:checked ~ label img {
  filter: invert(1);
}

.video-consult-247-section .video-consult-form-box {
  padding: 30px;
  padding-left: 0;
}

@media (max-width: 767px) {
  .video-consult-247-section .video-consult-form-box {
    padding: 20px;
  }

  .video-consult-247-section .video-consult-form-box input::placeholder {
    font-size: 12px;
  }
}

.app-download-popup {
  box-shadow: 0 0 100px 1000px rgb(0 0 0 / 30%) !important;
  border-radius: 10px;
  overflow: hidden;
}

.app-download-popup .app-pop-creative {
  height: 70vh;
  width: auto;
}

.app-download-popup .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: none;
  box-shadow: none;
  outline: none;
}

.app-download-popup .close-btn img {
  width: 100%;
}

@media (max-width: 767px) {
  .app-download-popup .app-pop-creative {
    height: 58vh;
  }
}

/* campaign-foodhandler work start */

.campaign-foodhandler-banner .foodhandler-mobile-img {
  width: 100%;
}

.campaign-foodhandler-banner ul {
  padding-left: 25px;
  margin: 0;
  list-style: none;
}

.campaign-foodhandler-banner ul li {
  margin-bottom: 15px;
  position: relative;
  font-weight: 600;
}

.campaign-foodhandler-banner ul li::after {
  content: "";
  background-image: url("https://secondmedic.com/app/asset/consult/img/check-icon.png");
  width: 17px;
  height: 17px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-51%);
  left: -25px;
}

.campaign-foodhandler-banner ul li:last-child {
  margin-bottom: 0px;
}

.campaign-foodhandler.campaign-mentalhealth .form-box {
  top: 20px;
}

.onemg-package-section.foodhandler-package-section
  .package-box
  .accordion
  .accordion-package.collapsed:after {
  display: none;
}

.foodhandler-fix-phone-icon {
  bottom: 20px;
}

.foodhandler-banner {
  padding: 40px 0 10px;
}

.foodhandler-banner img {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  border: 1px solid #ddd;
  width: 100%;
}

@media (max-width: 767px) {
  .campaign-foodhandler-banner {
    padding: 0;
  }

  /* .campaign-mentalhealth-banner.campaign-foodhandler-banner .box {
    padding: 0;
    background-color: transparent;
  }

  .campaign-mentalhealth-banner.campaign-foodhandler-banner .box * {
    color: var(--blackcolor);
  } */

  .campaign-mentalhealth-banner.campaign-foodhandler-banner .box h1 {
    font-size: 16px;
  }

  .campaign-foodhandler-banner ul li {
    font-size: 10px;
    margin-bottom: 10px;
    line-height: 14px;
  }

  .foodhandler-banner {
    padding: 20px 0;
  }

  .foodhandler-banner img {
    border-radius: 10px;
  }

  .foodhandler-banner-mobile {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    width: 100%;
    margin-top: 20px;
  }

  .campaign-foodhandler-banner ul li::after {
    width: 12px;
    height: 12px;
    left: -20px;
  }

  .campaign-foodhandler-banner ul {
    padding-left: 20px;
  }

  .campaign-foodhandler-header .number {
    text-align: right !important;
  }

  .campaign-foodhandler.campaign-mentalhealth .form-box {
    margin-top: 0;
    margin-bottom: 40px !important;
  }
}
/* campaign-foodhandler work end */

/* Patient Details Work Start */
.patient-details {
  background-color: white;
}
.patient-details .box {
  box-shadow: 0 0 16px -3px rgb(0 0 0 / 38%);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.patient-details .img-box {
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
/* Patient Details Work End */

/* Franchise Page Work Start */
.web-overflow::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 50px;
}
.web-overflow::-webkit-scrollbar-track {
  background: #eee;
}
.web-overflow::-webkit-scrollbar-thumb {
  background: var(--greencolor);
}
.web-overflow::-webkit-scrollbar-thumb:hover {
  background: var(--darkgreencolor);
}
.franchise-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e4e1d7;
  background-size: cover;
  padding: 80px 0px;
  color: white;
}
.franchise-banner img {
  height: 40px;
  margin-bottom: 25px;
  object-fit: contain;
}
.franchise-banner .section-heading {
  margin-bottom: 20px;
  color: white;
  font-size: 48px;
}
.franchise-banner .section-heading span {
  color: #ffbf00;
}

.franchise-banner .contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}
.franchise-banner .contact-info .title {
  color: white;
}
.franchise-banner .contact-info a {
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s 0s linear;
}
.franchise-banner .contact-info a i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  background-color: var(--greencolor);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.franchise-banner .contact-info a .title {
  font-size: 18px;
  margin-bottom: 0px;
  transition: all 0.3s 0s linear;
}
.franchise-banner .contact-info a p {
  margin: 0px;
}
.franchise-strip {
  background-color: #eee;
  overflow: hidden;
}
.franchise-strip .box {
  position: relative;
  margin-bottom: 10px;
}
.franchise-strip .box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  top: 15px;
  left: 30px;
}
.franchise-strip .box.no-border:after {
  display: none;
}
.franchise-strip .box .number {
  width: 70px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--greencolor);
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.franchise-strip .box img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  background-color: #eee;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}
.franchise-strip .box .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.franchise-strip .box p {
  margin: 0px;
}
.franchise-form .section-heading {
  margin-bottom: 30px;
}
.franchise-form .content {
  text-align: justify;
  padding: 0px;
  background-color: transparent;
}
.franchise-form .content .sub-heading {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0px;
}
.franchise-form .content ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.franchise-form .content ul li i {
  font-size: 12px;
  margin-right: 5px;
  color: var(--greencolor);
}
.franchise-form .box {
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 0.5rem 1rem;
}
.franchise-form .box .form-group {
  margin-bottom: 15px;
}
.franchise-form .box .form-label {
  font-weight: 500;
}
.franchise-form .box .custom-radio label {
  border: 1px solid #ddd;
  background-color: #eee;
  display: block;
  border-radius: 5px;
  padding: 8px 10px 11px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 20px;
  cursor: pointer;
}
.franchise-form .box .custom-radio input:checked ~ label {
  border-color: var(--greencolor);
  background-color: #19838a1f;
}
.franchise-form .sticky-div {
  position: sticky;
  top: 150px;
  overflow: hidden;
}
.franchise-form .web-form-box {
  border: 1px solid #ddd;
}

.franchise-price .box {
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.franchise-price .box .box-header {
  background-color: var(--greencolor);
  padding: 20px;
  text-align: center;
}
.franchise-price .box .box-body {
  padding: 20px;
}
.franchise-price .box .title {
  margin-bottom: 0px;
  font-size: 20px;
  color: white;
}
.franchise-price .box .price {
  font-weight: bold;
  margin-bottom: 0px;
  color: white;
  font-size: 40px;
}
.franchise-price .box ul {
  margin: 0px 0px 25px;
  padding: 0px;
  list-style: none;
  font-weight: 500;
}
.franchise-price .box ul li:not(:first-child) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
.franchise-price .box ul li:before {
  content: "\f00c";
  font-family: "Font Awesome\5 Pro";
  font-weight: 400;
  font-size: 14px;
  color: var(--greencolor);
  margin-right: 10px;
}
.franchise-price .box .btn {
  border-radius: 50px;
}
.franchise-form {
  overflow: hidden;
}
.franchise-price {
  overflow: hidden;
}
.faqs-new-design {
  overflow: hidden;
  background-color: rgb(247, 249, 252);
}

.faqs-new-design .faq-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #19838a33;
  height: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
    rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
}

.faqs-new-design .faq-accordian {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}
.web-accordion .card-header button.collapsed:before {
  content: "\f067";
  font-family: "Font Awesome\5 Pro";
  font-weight: 900;
  float: right !important;
}
.franchise-faq .card {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.franchise-faq .card .card-header {
  padding: 0px;
  background: white;
}

.franchise-banner-qes {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.franchise-banner-qes::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.franchise-banner-qes .content-box {
  position: relative;
}
.franchise-banner-qes .content-box .section-heading {
  position: relative;
  color: white;
}
.franchise-banner-qes .content-box p {
  color: white;
}
.franchise-banner-qes .content-box .ul-listing {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
}
.franchise-banner-qes .content-box .sub-heading {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
}
.franchise-banner-qes .process-img {
  width: 100%;
  height: 280px;
  display: block;
  background-color: white;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}
.franchise-form .box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
.franchise-form .form-control {
  border-radius: 10px;
  background-color: #f9fafc;
  border: 1.5px solid #eaeaec;
  color: black;
  padding: 12px 15px;
  height: auto;
  font-weight: 400;
}
.franchise-form .form-control::placeholder {
  color: #8e8e8e;
}

.franchise-banner-qes .content-box .ul-listing li {
  position: relative;
  padding-left: 32px;
}
.franchise-banner-qes .content-box .ul-listing li i {
  font-size: 12px;
  margin-right: 5px;
  color: white;
  width: 24px;
  height: 24px;
  background-color: var(--greencolor);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.franchise-form .form-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 100%;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
    rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
}
.franchise-benefits .franchise-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  padding: 30px 30px 35px;
  height: calc(100% - 15px);
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.5s linear;
}
.franchise-benefits .franchise-box:hover {
  border: 2px solid var(--greencolor);
  transform: scale(1.05);
}
.franchise-benefits .franchise-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto 30px;
  filter: invert(34%) sepia(72%) saturate(1321%) hue-rotate(152deg)
    brightness(89%) contrast(80%);
}
.franchise-benefits .franchise-box .title {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.franchise-benefits .franchise-box p {
  font-size: 16px;
  text-align: center;
  margin: 0px;
}
@media (max-width: 1200px) {
  .franchise-banner {
    padding: 30px 0px;
  }
  .franchise-banner .section-heading {
    font-size: 40px;
  }
  .franchise-banner img {
    height: 30px;
  }
  .franchise-banner .contact-info {
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .franchise-banner img {
    margin-bottom: 15px;
  }
  .franchise-banner .section-heading {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .franchise-strip {
    padding-bottom: 10px;
  }
  .franchise-strip .box {
    margin-bottom: 20px;
  }
  .franchise-price .box {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .franchise-banner {
    padding: 15px 0px;
  }
  .franchise-banner img {
    margin-bottom: 10px;
    height: 20px;
  }
  .franchise-banner .section-heading {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .franchise-banner .section-heading + p {
    display: none;
  }
  .franchise-banner .contact-info {
    gap: 10px;
    align-items: start;
    margin-top: 10px;
  }
  .franchise-banner .contact-info a i {
    display: none;
  }
  .franchise-banner .contact-info a .title {
    font-size: 10px;
  }
  .franchise-banner .contact-info a p {
    font-size: 8px;
  }
  .franchise-strip .box .number {
    font-size: 14px;
  }
  .franchise-strip .box {
    margin-bottom: 20px;
  }
  .franchise-strip .box img {
    height: 150px;
  }
  .franchise-strip .box .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .franchise-strip .box p {
    font-size: 12px;
    line-height: 16px;
  }
  .franchise-strip .box:after {
    display: none;
  }
  .franchise-benefits .franchise-box {
    padding: 15px;
  }
  .franchise-benefits .franchise-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .franchise-benefits .franchise-box .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .franchise-benefits .franchise-box p {
    font-size: 12px;
    line-height: 16px;
  }
  .franchise-banner-qes .process-img {
    height: 200px;
    margin-bottom: 15px !important;
    border-radius: 10px;
  }
  .franchise-banner-qes .content-box .sub-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .franchise-banner-qes .content-box .ul-listing li {
    font-size: 12px;
    line-height: 16px;
  }
  .franchise-form .section-heading {
    margin-bottom: 20px;
  }
  .franchise-form .form-img {
    height: 200px;
    margin-bottom: 15px;
  }
  .franchise-form .box h3 {
    font-size: 16px;
  }
  .franchise-form .sticky-div {
    padding-bottom: 30px;
  }
  .franchise-banner-qes .process-img {
    margin-bottom: 20px;
  }
  .franchise-price .box {
    border-radius: 10px;
  }
  .faqs-new-design {
    padding-bottom: 5px;
  }
}
/* Franchise Page Work End */

/* phlebotmist work start here  */
.campaign-phlebotmist-banner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  padding: 60px 0px;
}

.campaign-phlebotmist-banner .phlebotmist-form {
  box-shadow: 0 0 16px -3px rgb(0 0 0 / 38%);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.campaign-phlebotmist-details .campaign-phlebotmist-head {
  color: #fff !important;
  padding: 8px 18px;
  margin: 0px auto;
  min-width: 65%;
  max-width: 60%;
  border-radius: 5px 0px 0px;
  position: relative;
  border: none;
  background-color: var(--greencolor);
  box-shadow: 0 0 16px -3px rgb(0 0 0 / 38%);
}
.campaign-phlebotmist-details .campaign-phlebotmist-head::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  bottom: 0px;
  width: 1em;
  background: inherit;
  left: -0.5em;
  transform: skew(-10deg);
  border-radius: 5px 0px 0px;
}
.campaign-phlebotmist-details .campaign-phlebotmist-head::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  bottom: 0px;
  width: 1em;
  background: inherit;
  right: -0.5em;
  transform: skew(10deg);
  border-radius: 0px 5px 0px 0px;
}

.campaign-phlebotmist-details .campaign-phlebotmist-head h4 {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.campaign-phlebotmist-details {
  padding: 60px 0px;
}

.campaign-phlebotmist-details .campaign-phlebotmist-content {
  box-shadow: 0 0 16px -3px rgb(0 0 0 / 38%);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.campaign-phlebotmist-testimonials {
  padding: 60px 0px;
}
.campaign-phlebotmist-testimonials .section-heading {
  text-align: center;
}
.campaign-phlebotmist-testimonials .phlebotmist-testimonials-content {
  box-shadow: 0 0 16px -3px rgb(0 0 0 / 38%);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  min-height: 160px;
}

.phlebotmist-testimonials-content h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.campaign-phlebotmist-testimonials .phlebotmist-testimonials-slider .item {
  padding: 5px;
}

.phlebotmist-cta-footer .phlebotmist-cta-footer-box {
  background-color: var(--greencolor);
  border-radius: 20px;
  text-align: center;
  position: fixed;
  width: 70%;
  right: 0;
  left: 0;
  bottom: 20px;
  z-index: 99999;
  margin: 0px auto;
}

.phlebotmist-cta-footer .phlebotmist-cta-footer-box .web-btn {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 992px) {
  .campaign-phlebotmist-banner {
    background: none !important;
    padding: 0px 0px 10px;
  }
  .campaign-phlebotmist-banner .phlebotmist-form {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .campaign-phlebotmist-details .row-gap {
    row-gap: 60px;
  }
  .campaign-phlebotmist-details .campaign-phlebotmist-head h4 {
    font-size: 12px;
  }
  .campaign-phlebotmist-testimonials {
    padding: 30px 0px;
  }
  .campaign-phlebotmist-details {
    padding: 30px 0px;
  }
  .campaign-phlebotmist-banner {
    background: none !important;
    padding: 0px 0px 0px;
  }
  .campaign-phlebotmist-banner .phlebotmist-form {
    margin-top: 30px;
  }
}

/* phlebotmist work end here  */

.doctors .doctor-list-filters .select-change {
  padding: 6px 10px;
}
.doctors .doctor-list-reset-btn .reset-change {
  padding: 6px 10px;
}

/* New Wellness Campaign Work Start */
.new-wellness-campaign-header {
  background-color: white;
  padding: 20px 0px;
}
.new-wellness-campaign-header .header-info {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
.new-wellness-campaign-header .header-info .number {
  font-weight: 600;
  font-size: 18px;
}
.new-wellness-campaign-banner {
  background-color: #e9feff;
}
.new-wellness-campaign-banner .bannerimg {
  height: 230px;
  margin-top: 20px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.new-wellness-campaign-banner .section-heading {
  margin-bottom: 15px;
}
.new-wellness-campaign-banner .subtitle {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
}
.new-wellness-campaign-banner .box {
  padding: 15px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
.new-wellness-campaign-banner .box ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.new-wellness-campaign-banner .box ul li:before {
  content: "•";
  position: absolute;
  font-size: 20px;
  line-height: 0;
  left: 0;
  top: 7px;
}
.new-wellness-campaign-banner .box ul li {
  flex: 0 0 calc(50% - 15px);
  font-weight: 500;
  position: relative;
  padding-left: 15px;
  line-height: 17px;
}
.new-wellness-campaign-banner .form-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 20px;
}
.new-wellness-campaign-banner .form-box .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--greencolor);
  text-align: center;
  margin-bottom: 20px;
}
.new-wellness-campaign-banner .form-box .box-body {
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(216, 221, 230, 0.5);
}
.new-wellness-campaign-banner .form-box .form-label {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
}
.new-wellness-campaign-banner .form-box .btn {
  min-width: 150px;
}
.new-wellness-campaign-services .box {
  padding: 10px;
  background-color: #fff7e9;
  border-radius: 10px;
}
.new-wellness-campaign-services .box:nth-child(even) {
  text-align: right;
  background-color: #e9feff;
}
.new-wellness-campaign-services .box:nth-child(odd) .col-md-6 {
  order: 2;
}
.new-wellness-campaign-services .box:nth-child(odd) .col-md-6:last-child {
  order: 1;
}
.new-wellness-campaign-services .box .text-content {
  padding: 10px;
}
.new-wellness-campaign-services .box .title {
  font-weight: 700;
  font-size: 20px;
  color: var(--greencolor);
  margin-bottom: 15px;
}
.new-wellness-campaign-services .box p {
  font-weight: 500;
  margin: 0px;
}
.new-wellness-campaign-services .box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: white;
}
.new-wellness-campaign-partners .section-heading {
  margin-bottom: 20px;
}
.new-wellness-campaign-partners p {
  font-size: 20px;
  margin-bottom: 50px;
}
.new-wellness-campaign-partners .box {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
}
.new-wellness-campaign-partners .box i {
  color: var(--greencolor);
  font-size: 34px;
  margin-bottom: 10px;
}
.new-wellness-campaign-partners .box .title {
  font-size: 30px;
  font-weight: 700;
  color: var(--greencolor);
  margin-bottom: 10px;
}
.new-wellness-campaign-partners .box p {
  font-size: 18px;
  margin: 0px;
}
.new-wellness-campaign-trusted {
  text-align: center;
}
.new-wellness-campaign-trusted .section-heading {
  margin-top: 10px;
}
.new-wellness-campaign-trusted .heading-p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
}
.new-wellness-campaign-trusted .heading-p span {
  font-weight: 700;
}
.new-wellness-campaign-trusted .owl-carousel {
  margin-bottom: 50px;
}
.new-wellness-campaign-trusted .item img {
  height: 80px;
  object-fit: contain !important;
  background-color: #eee;
  padding: 15px;
  border-radius: 15px;
}
.new-wellness-campaign-trusted .owl-nav button.owl-prev {
  left: -50px;
}
.new-wellness-campaign-trusted .owl-nav button.owl-next {
  right: -50px;
}
.new-wellness-campaign-trusted .owl-nav button {
  border: 1px solid var(--greencolor) !important;
  color: var(--greencolor) !important;
}
.new-wellness-campaign-trusted .owl-nav button span {
  margin-top: -7px;
  font-weight: bold;
}

.new-wellness-campaign-empower .box {
  background-color: white;
  padding: 30px;
  border-radius: 30px;
}
.new-wellness-campaign-empower .box:not(:first-child) {
  margin-top: 15px;
}
.new-wellness-campaign-empower .box img {
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}
.new-wellness-campaign-empower .box .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-left: 15px;
}
.new-wellness-campaign-empower .box p {
  margin: 0px;
  font-size: 18px;
  padding-left: 15px;
}
.new-wellness-campaign-empower .box p strong {
  font-weight: 500;
}
.new-wellness-campaign-empower .owl-nav button.owl-prev {
  left: -50px;
}
.new-wellness-campaign-empower .owl-nav button.owl-next {
  right: -50px;
}
.new-wellness-campaign-empower .owl-nav button {
  border: 1px solid var(--greencolor) !important;
  color: var(--greencolor) !important;
}
.new-wellness-campaign-empower .owl-nav button span {
  margin-top: -7px;
  font-weight: bold;
}
.new-wellness-campaign-youtube p,
.new-wellness-campaign-youtube ul {
  font-size: 18px;
  font-weight: 500;
}
.new-wellness-campaign-youtube ul li:not(:last-child) {
  margin-bottom: 5px;
}
.new-wellness-campaign-youtube .corporate-video {
  height: 250px;
  width: 100%;
  border-radius: 20px;
}
.new-wellness-campaign-footer {
  background-color: white;
  padding: 20px 0px;
  margin-top: -10px;
}
.new-wellness-campaign-footer .logo {
  width: 160px;
}
.new-wellness-campaign-footer .number {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  display: block;
}
.new-wellness-campaign-footer .social-icons {
  display: flex;
  justify-content: end;
  align-items: center;
  list-style: none;
  gap: 15px;
  margin: 0px;
  padding: 0px;
}
.new-wellness-campaign-footer .social-icons a {
  font-size: 18px;
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .new-wellness-campaign-trusted .owl-carousel,
  .new-wellness-campaign-empower .owl-carousel {
    padding-bottom: 70px;
  }
  .new-wellness-campaign-trusted .owl-nav button,
  .new-wellness-campaign-empower .owl-nav button {
    top: unset;
    bottom: 0;
    transform: unset;
  }
  .new-wellness-campaign-trusted .owl-nav button.owl-prev,
  .new-wellness-campaign-empower .owl-nav button.owl-prev {
    left: 50%;
    transform: translateX(-50px);
  }
  .new-wellness-campaign-trusted .owl-nav button.owl-next,
  .new-wellness-campaign-empower .owl-nav button.owl-next {
    right: 50%;
    transform: translateX(50px);
  }
}
@media (max-width: 767px) {
  .new-wellness-campaign-header {
    padding: 15px 0px;
  }
  .new-wellness-campaign-header .logo {
    width: 100px;
    margin: 0px;
  }
  .new-wellness-campaign-header .header-info {
    gap: 15px;
  }
  .new-wellness-campaign-header .header-info .btn {
    padding: 5px 10px;
    font-size: 10px;
  }
  .new-wellness-campaign-header .header-info .number {
    font-size: 10px;
  }
  .new-wellness-campaign-banner .section-heading {
    text-align: center;
    margin-bottom: 10px;
  }
  .new-wellness-campaign-banner .subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
  }
  .new-wellness-campaign-banner .box ul {
    gap: 5px 5px;
  }
  .new-wellness-campaign-banner .box ul li {
    flex: 0 0 calc(50% - 5px);
    font-size: 12px;
    line-height: 16px;
  }
  .new-wellness-campaign-banner .bannerimg {
    margin: 20px 0px;
    height: 120px;
  }
  .new-wellness-campaign-banner .form-box {
    padding: 15px;
    border-radius: 10px;
  }
  .new-wellness-campaign-banner .form-box .title {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .new-wellness-campaign-banner .form-box .box-body {
    padding: 15px;
    border-radius: 10px;
  }
  .new-wellness-campaign-banner .form-box .form-group {
    margin-bottom: 10px;
  }
  .new-wellness-campaign-services .box .text-content {
    padding: 0px;
  }
  .new-wellness-campaign-services .box img {
    height: 75px;
  }
  .new-wellness-campaign-services .box .title {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
  }
  .new-wellness-campaign-services .box p {
    font-size: 10px;
    line-height: 14px;
  }
  .new-wellness-campaign-partners .section-heading {
    margin-bottom: 10px;
  }
  .new-wellness-campaign-partners p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .new-wellness-campaign-partners .box {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .new-wellness-campaign-partners .box i {
    font-size: 24px;
    margin-bottom: 0px;
  }
  .new-wellness-campaign-partners .box .text {
    width: calc(100% - 10px);
    text-align: left;
  }
  .new-wellness-campaign-partners .box .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
  }
  .new-wellness-campaign-partners .box p {
    font-size: 10px;
    margin: 0px;
  }
  .new-wellness-campaign-trusted .heading-p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .new-wellness-campaign-trusted .section-heading {
    margin-bottom: 40px;
  }
  .new-wellness-campaign-trusted .item img {
    border-radius: 10px;
  }
  .new-wellness-campaign-trusted .owl-carousel {
    margin-bottom: 30px;
  }
  .new-wellness-campaign-empower .box {
    padding: 15px;
    border-radius: 10px;
  }
  .new-wellness-campaign-empower .box .title {
    font-size: 12px;
    margin-bottom: 5px;
    padding-left: 0px;
  }
  .new-wellness-campaign-empower .box p {
    font-size: 10px;
    line-height: 14px;
    padding-left: 0px;
  }
  .new-wellness-campaign-empower .box img {
    height: 80px;
    border-radius: 10px;
  }
  .new-wellness-campaign-youtube p,
  .new-wellness-campaign-youtube ul {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .new-wellness-campaign-youtube .corporate-video {
    margin-top: 15px;
    border-radius: 10px;
  }
  .campaign-map {
    height: 200px;
  }
  .new-wellness-campaign-footer .logo {
    width: 100px;
  }
  .new-wellness-campaign-footer .number {
    font-size: 10px;
  }
  .new-wellness-campaign-footer .social-icons {
    gap: 10px;
  }
  .new-wellness-campaign-footer .social-icons i {
    font-size: 10px;
  }
}
/* New Wellness Campaign Work End */

/* womens-doctor-consultation Work Start */
.womens-doctor-consultation .form-control {
  background-color: #f1f1f1;
  border: 1px solid #ddd;
}
/* womens-doctor-consultation Work End */

/* Healthhub Bhopal Work Start */
.healthhub-bhopal-banner-slider img {
  width: 100%;
  height: auto;
  background-color: #eee;
  display: block;
}
.healthhub-bhopal .box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 0.5rem 1rem;
  border: 1px solid #ddd;
  margin-top: 50px;
  position: relative;
}
.healthhub-bhopal .form-group {
  margin-bottom: 15px;
}
.healthhub-bhopal .form-control {
  border-radius: 10px;
  background-color: #f9fafc;
  border: 1.5px solid #eaeaec;
  color: black;
  padding: 12px 15px;
  height: auto;
  font-weight: 400;
}
.healthhub-bhopal .form-control::placeholder {
  color: #8e8e8e;
}
.healthhub-bhopal .btn {
  min-width: 100px;
  border-radius: 10px;
}
.healthhub-bhopal .box .healthhub-features {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.healthhub-bhopal .box .healthhub-features li {
  width: 25%;
  text-align: center;
}
.healthhub-bhopal .box .healthhub-features li img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background-color: transparent;
  border-radius: 0px;
  margin: 0 auto 10px;
}
.healthhub-bhopal .box .healthhub-features li p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
.healthhub-bhopal .box .section-heading {
  margin-bottom: 5px;
  text-transform: capitalize;
}
.healthhub-bhopal .box .section-heading + p {
  font-size: 18px;
  margin-bottom: 30px;
}
.healthhub-bhopal .box .box-img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 500px;
  background-color: #eee;
  object-fit: cover;
  position: sticky;
  top: 140px;
}
.healthhub-bhopal .box .pharmacy-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.healthhub-bhopal .btn {
  margin-top: 10px;
  min-width: 100px;
  border-radius: 10px;
}
.healthhub-bhopal .box-footer-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

.healthhub-bhopal .healthhub-box .box-img {
  height: 445px;
}
.healthhub-bhopal .healthhub-box .section-heading {
  margin-bottom: 30px;
}
.healthhub-bhopal .healthhub-box ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.healthhub-bhopal .healthhub-box ul li {
  display: flex;
  gap: 15px;
}
.healthhub-bhopal .healthhub-box ul li .icon {
  width: 50px;
  height: 50px;
  background-color: #eee;
  color: var(--greencolor);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.healthhub-bhopal .healthhub-box ul li .details {
  width: calc(100% - 65px);
}
.healthhub-bhopal .healthhub-box ul li .details .title {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: bold;
}
.healthhub-bhopal .healthhub-box ul li .details p {
  margin: 0px;
}
.healthhub-map {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-top: 20px;
}

.healthhub-modal .modal-title {
  font-weight: 700;
}
.healthhub-modal .close {
  line-height: 16px;
}
.healthhub-modal .form-group {
  margin-bottom: 15px;
}
.healthhub-modal .form-control {
  border-radius: 10px;
  background-color: #f9fafc;
  border: 1.5px solid #eaeaec;
  color: black;
  padding: 12px 15px;
  height: auto;
  font-weight: 400;
}
.healthhub-modal .form-control::placeholder {
  color: #8e8e8e;
}
.healthhub-modal .btn {
  min-width: 100px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .healthhub-bhopal {
    padding: 20px 0px;
  }
  .healthhub-bhopal .box {
    padding: 15px;
    margin-top: 20px;
  }
  .healthhub-bhopal .box .section-heading + p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .healthhub-bhopal .box .box-img {
    height: 200px;
    margin-bottom: 20px;
  }
  .healthhub-bhopal .box .healthhub-features li img {
    width: 50px;
    height: 50px;
  }
  .healthhub-bhopal .box .healthhub-features {
    gap: 10px;
  }
  .healthhub-bhopal .box .healthhub-features li p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
  }
  .healthhub-bhopal .box .pharmacy-img {
    height: 150px;
    margin-top: 25px;
  }
  .healthhub-bhopal .box-footer-img {
    height: 100px;
    object-fit: cover;
  }
  .healthhub-bhopal .healthhub-box .section-heading {
    margin-bottom: 20px;
  }
}
/* Healthhub Bhopal Work End */

/* Healthhub Listing Work Start */
.healthhub-listing .box {
  background-color: var(--white);
  color: var(--blackcolor) !important;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 0.5rem 1rem;
  border: 1px solid #ddd;
  position: relative;
  display: block;
  margin-top: 20px;
}
.healthhub-listing .box-img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 221px;
  background-color: #eee;
  object-fit: cover;
}
.healthhub-listing .box .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.healthhub-listing .box ul {
  list-style: none;
  margin: 0px 0px 20px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.healthhub-listing .box ul li {
  display: flex;
  gap: 10px;
}
.healthhub-listing .box ul li .icon {
  width: 30px;
  height: 30px;
  background-color: #eee;
  color: var(--greencolor);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: -2px;
}
.healthhub-listing .box ul li .details {
  width: calc(100% - 40px);
}
.healthhub-listing .box ul li .details p {
  margin: 0px;
}
.healthhub-listing .box .btn {
  min-width: 100px;
  border-radius: 10px;
}
.healthhub-listing .healthhub-map {
  height: 221px;
  margin-top: 0px;
}

.healthhub-listing .filter {
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.healthhub-listing .filter label {
  margin: 0px;
  font-weight: 500;
  white-space: nowrap;
}
.healthhub-listing .filter div {
  width: 100%;
}
.healthhub-listing .form-control {
  border-radius: 10px;
  background-color: #f9fafc;
  border: 1.5px solid #eaeaec;
  color: black;
  padding: 12px 15px;
  height: auto;
  font-weight: 400;
  cursor: pointer;
}
.healthhub-listing .form-control::placeholder {
  color: #8e8e8e;
}

@media (max-width: 767px) {
  .healthhub-listing .section-heading {
    margin-bottom: 15px !important;
    text-align: center;
  }
  .healthhub-listing .box {
    padding: 15px;
  }
  .healthhub-listing .box .row,
  .healthhub-listing .box .row > div {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .healthhub-listing .box-img {
    margin-bottom: 0px;
    height: 159px;
  }
  .healthhub-listing .box .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .healthhub-listing .box ul {
    margin-bottom: 5px;
    gap: 3px;
    font-size: 10px;
  }
  .healthhub-listing .box ul li .icon {
    display: none;
  }
  .healthhub-listing .box .btn {
    font-size: 10px;
  }
  .healthhub-listing .healthhub-map {
    height: 150px;
    margin-top: 15px;
  }
}
/* Healthhub Listing Work End */

/* Corporate Centre Work Start */
.corporate-centre {
  padding: 30px 0px 10px;
}
.corporate-centre .box {
  position: relative;
  background-size: cover;
  padding: 100px 15px 15px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  overflow: hidden;
  transform: rotate3d(0.5, -0.866, 0, 15deg) rotate(1deg);
  box-shadow: 2em 4em 6em -2em rgba(0, 0, 0, 0.5),
    1em 2em 3.5em -2.5em rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}
.corporate-centre .box:hover {
  transform: rotate3d(0, 0, 0, 0deg) rotate(0deg);
}
.corporate-centre .box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  transition: all 0.2s 0s linear;
}
.corporate-centre .box:hover:before {
  background: linear-gradient(
    to bottom,
    rgba(1, 138, 149, 0) 0%,
    rgba(1, 138, 149, 0.8) 100%
  );
}
.corporate-centre .box span {
  position: relative;
  font-size: 14px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.corporate-centre .box i {
  transform: translateX(-60px);
  transition: all 0.2s 0s linear;
  opacity: 0;
  font-size: 16px;
}
.corporate-centre .box:hover i {
  transform: translateX(0px);
  opacity: 1;
}
@media (max-width: 767px) {
  .corporate-centre {
    padding: 20px 0px 0px;
  }
  .corporate-centre .box span {
    font-size: 13px;
  }
  .corporate-centre .box i {
    display: none;
  }
}
/* Corporate Centre Work End */

/* centre-listing-page Work Start */
.centre-listing-page {
  padding: 40px 0px 20px;
}
.centre-listing-page .box {
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.centre-listing-page .box .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.centre-listing-page .box p {
  margin: 0px;
}
@media (max-width: 767px) {
  .centre-listing-page {
    padding: 20px 0px 0px;
  }
  .centre-listing-page .box {
    flex-direction: column;
    align-items: start;
    padding: 15px;
  }
}
/* centre-listing-page Work End */


/* Contact Us Page Work Start */
.contactus {
  padding: 70px 0px;
  background-color: var(--lightgreencolor);
}
.contactus h1,
.contactus h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.contactus .box {
  padding: 80px 60px 80px 30px;
  background-color: white;
  position: relative;
  border-radius: 0px 10px 10px 0px;
}
.contactus .box::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 100%;
  background-color: white;
  left: -230px;
  top: 0;
  border-radius: 10px 0px 0px 10px;
}
.contactus .box .form-group {
  margin-bottom: 15px;
}
.contactus .box .form-control {
  padding: 12px 20px !important;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 5%);
  border: 1px solid #8f8f8f;
}
.contactus .box .web-btn {
  margin-top: 15px;
}
.contactus .info-box {
  padding: 40px;
  background-color: var(--greencolor);
  color: white;
  z-index: 1;
  position: relative;
  height: calc(100% - 80px);
  margin-top: 40px;
  position: relative;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.contactus .info-box h1 {
  color: white;
}
.contactus .info-box ul.info-list {
  margin: 0px;
  padding: 0px;
}
.contactus .info-box ul.info-list li:first-child {
  margin-top: 0px;
  align-items: start;
}
.contactus .info-box ul.info-list li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.contactus .info-box ul.info-list li img {
  width: 20px;
  height: 20px;
}
.contactus .info-box ul.info-list li p {
  width: calc(100% - 35px);
  font-size: 16px;
  margin: 0px;
}
.contactus .info-box ul.info-list li a {
  color: white;
}
.contactus .info-box ul.social-icons {
  margin: 20px 0px 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.contactus .info-box ul.social-icons li {
  list-style: none;
  margin-right: 25px;
}
.contactus .info-box ul.social-icons li a {
  filter: brightness(100);
}
.contactus .info-box ul.social-icons li a i {
  height: 25px;
  font-size: 25px;
}

@media (max-width: 991px) {
  .contactus {
    padding: 30px 0px;
  }
  .contactus .row .col-lg-8 {
    order: 1;
  }
  .contactus .row .col-lg-4 {
    order: 2;
  }
  .contactus .box {
    padding: 30px;
    border-radius: 10px;
  }
  .contactus .box::before {
    display: none;
  }
  .contactus h1,
  .contactus h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .contactus .box .web-btn {
    margin-top: 10px;
  }
  .contactus .info-box {
    padding: 30px;
    height: auto;
    margin-top: 15px;
  }
  .contactus .info-box ul.social-icons {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 70px;
  }
}
/* Contact Us Page Work End */

.form-common-message .web-clr {
    font-weight: 500;
}