/*====================================
/*  Table of Contents
====================================

	01. Import Section ...................... Imported variables.

	02. Layout Components According To Page ................... Generic layout elements.
        # Header
        # Hero Banner
        # Key Features
        # Our Mission
        # FAQ Page
        # About Us
        # Footer

	03. Media Queries ....................... Mobile style sheets.

====================================*/
/*====================================
01. Import Files
====================================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&display=swap");
/* Font Name*/
/* Black Colors*/
/*Green Colors*/
/*====================================
02. Layout Components
====================================*/
/* Common Styles*/
html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  /* line-height: 1.2; */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea {
  font-family: "Montserrat", sans-serif !important;
}

body {
  padding-top: 0px;
}

.bm-container {
  max-width: 90%;
  padding: 0px 12px;
  width: 100%;
  margin: 0 auto;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
}

.space-between {
  justify-content: space-between;
}
.space-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.align-top {
  align-items: flex-start;
}

.bm-btn {
  display: inline-flex;
  align-items: center;
  padding: 0px 30px;
  min-height: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  background: #73bf2c;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #5a981f;
  transform: translateX(-101%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: -1;
}
.bm-btn:hover::before {
  transform: translateX(0%);
}

.section-title {
  padding-bottom: 16px;
}
.section-title h2 {
  font-size: 36px;
  color: #000000;
}

/*====================================
Header
====================================*/
.bmd-header {
  padding: 20px 0px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 998;
  line-height: 1.2;
}
.bmd-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bmd-header .logo a img {
  display: block;
  max-width: 150px;
}
.bmd-header .menu-toggler {
  display: none;
}
.bmd-header .menu-items {
  display: flex;
  flex-wrap: flex;
}
.bmd-header .menu-item {
  padding: 0px 8px;
}
.bmd-header .menu-link {
  display: inline-block;
  padding: 22px 3px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #989898;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.bmd-header .menu-link:hover {
  color: #404042;
}
.bmd-header .menu-link__active {
  color: #73bf2c !important;
}
.bmd-header .menu-cta a {
  display: flex;
  align-items: center;
  padding: 0px 32px;
  min-height: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  background: #73bf2c;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bmd-header .menu-cta a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity:0;
  background-color: #5a981f;
  transform: translateX(-101%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: -1;
}
.bmd-header .menu-cta a:hover::before {
  transform: translateX(0%);
}

/*====================================
Hero Banner
====================================*/
.hero-banner {
  padding: 160px 0px 150px;
  background-color: #5f6af2;
  background-image: url("/testingDesignAssets/images/wave-f67fa2964b31722bb7948a01e2ed7606.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%; 
}
.hero-banner .content {
  flex: 0 0 45%;
  max-width: 45%;
}

.hero-banner .content .main-content {
	background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 20px 50px rgba(51, 90, 14, 0.3);
  padding: 50px;
}
.hero-banner h1 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 800!important;
  color: #000000;
}
.hero-banner h3 {
  font-size: 20px;
  font-weight: 600!important;
  color: #404042;
  line-height: 28px!important;
  margin: 26px 0px;
}
.hero-banner p {
  font-size: 14px;
  color: #808080;
}
.hero-banner .bm-btn {
  margin: 20px 0px;
}
.hero-image {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 30px;
}
.hero-image-new {
	flex: 0 0 55%;
   	max-width: 55%;
   	padding-right: 30px;
 }
 .hero-image-new img {
 	 width: 100%;
 }
.hero-image img {
  width: 100%;
}

/*====================================
Key Features
====================================*/
.key_featurs {
  padding: 100px 0px 100px;
  background-color: #fff;
  background-image: url("/testingDesignAssets/images/wave-f67fa2964b31722bb7948a01e2ed7606.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
}
.key_featurs .feature {
  flex: 0 0 30%;
  max-width: 30%;
  text-align: center;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0px 20px 50px rgba(51, 90, 14, 0.2);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  background-color: #fff;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.key_featurs .feature:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  box-shadow: 0px 30px 40px rgba(51, 90, 14, 0.25);
}
.key_featurs .feature .icon {
  margin-bottom: 36px;
}
.key_featurs .feature .icon img {
  max-width: 50px;
}
.key_featurs .feature .content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #404042;
}
.key_featurs .feature .content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #404042;
}
.key_featurs .feature .content p a {
  color: #73bf2c;
  font-weight: 500;
}

/*====================================
Our Mission
====================================*/
.our-mission {
  padding: 50px 0px 30px;
  background-image: url("/testingDesignAssets/images/corona2-3b5e6cdd53195fcf08bb3215e7fdd1e0.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.our-mission .section-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  margin-top: 20px;
  background-color: #73bf2c;
}
.our-mission .box-left {
  flex: 0 0 55%;
  max-width: 55%;
  padding-right: 30px;
}
.our-mission .box-left p {
  margin-bottom: 20px!important;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #404042;
}
.our-mission .box-left p:last-child {
  margin-bottom: 0px;
}
.our-mission .box-right {
  flex: 0 0 45%;
  max-width: 45%;
  padding-left: 30px;
}
.our-mission .box-right img {
  width: 100%;
}

/*====================================
FAQs Section
====================================*/
.faq-section {
  padding: 100px 0px;
  background-color: #ecf5e4;
}
.faq-section .section-title {
  padding-bottom: 26px; 
}
.faq-section .section-title h2 {
  text-align: center;
}
.faq-section .content .faq {
    background-color: #fff;
    /* box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08); */
    margin-bottom: 15px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 0px;
}
.faq-section .content .faq-header {
  padding: 12px 0px;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
.faq-section .content .faq-header.faq-active h3{
	color:#73BF2C;
}
.faq-section .content .faq-header h3 {
  flex: 1 1 auto;
  max-width: calc(100% - 20px);
  color: #000000;
  padding-right: 15px;
  font-size: 16px;
}
.faq-section .content .faq-header .icon {
  flex: 0 0 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21px;
}
.faq-section .content .faq-header .icon::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.faq-section .content .faq-header.faq-active .icon::before {
  border-color: #73bf2c;
  transform: rotate(-135deg);
}
.faq-section .content .faq-body {
  border-top: 1px solid #dde2d7;
  padding: 12px 0px;
}
.faq-section .content .faq-body p,
.faq-section .content .faq-body ol li {
  margin-bottom: 15px!important;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #404042;
  list-style: decimal;
}
.faq-section .content .faq-body p:last-child,
.faq-section .content .faq-body ol li:last-child {
  margin-bottom: 0px;
}
.faq-section .content .faq-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

/*====================================
About Us section
====================================*/
.about-us {
  padding: 30px 0px 130px;
  background-image: url("/testingDesignAssets/images/corona-1839dfed894840bd9f2c2f3ee95c0ed7.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about-us .bm-container {
  position: relative;
}
.about-us .section-title {
  padding-bottom: 26px;
  padding-top: 56px;
}
.about-us .section-title h2 {
  text-align: left;
}
.about-us .section-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  margin-top: 20px;
  background-color: #73bf2c;
}
.about-us p {
  margin-bottom: 15px!important;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #404042;
  list-style: decimal;
}
.about-us p:last-child {
  margin-bottom: 0px;
}
.about-us .bm-btn {
  border: 2px solid #73bf2c;
  background-color: transparent;
  color: #73bf2c;
  margin-top: 30px;
}
.about-us .bm-btn:before {
  background-color: #73bf2c;
}
.about-us .bm-btn:hover {
  background-color: #73bf2c;
  color: #fff;
}
.about-us .flex-left {
  flex: 0 0 40%;
  max-width: 40%;
}
.about-us .flex-left img {
  margin-top: 25px;
}
.about-us .flex-right {
  flex: 0 0 56%;
  max-width: 56%;
  margin-top: 50px;
}

/*====================================
Contact Us Footer section
====================================*/
.bmd-footer {
  padding: 200px 0px 100px;
  background-color: #5f6af2;
  background-image: url("/testingDesignAssets/images/wave2-6f9d4599b52d8e904d21e4d23e75c34d.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
}
.bmd-footer .section-title {
  padding-bottom: 35px;
}
.bmd-footer .section-title h2 {
  text-align: center;
  color: #fff;
}
.bmd-footer .section-title p {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  max-width: 520px;
  margin: 15px auto 0px;
}
.bmd-footer .bm-form {
  flex: 0 0 50%;
  max-width: 50%;
}
.bmd-footer .bm-form .form-group {
  margin-bottom: 21px;
}
.bmd-footer .bm-form .form-group label.error {
	color: #d9534f;		
}
.bmd-footer .bm-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.bmd-footer .bm-form .form-group input,
.bmd-footer .bm-form .form-group textarea {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 0px 25px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #404042;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: rgba(255, 255, 255, 0.1);
}
.bmd-footer .bm-form .form-group input:focus,
.bmd-footer .bm-form .form-group textarea:focus {
  border-color: #73bf2c;
}
.bmd-footer .bm-form .form-group textarea {
  padding: 25px;
}
.bmd-footer .bm-form .form-btn button {
  cursor: pointer;
  min-width: 200px;
  text-align: center;
  justify-content: center;
  background-color: #fff;
  color: #404042;
}
.bmd-footer .bm-form .form-btn button:hover {
  color: #fff;
  background-color: transparent;
}
.bmd-footer .bm-form .flex-box {
  margin-left: -15px;
  margin-right: -15px;
}
.bmd-footer .bm-form .flex-6 {
  flex: 0 0 50%;
  padding: 0px 15px;
}
.bmd-footer .bm-info {
    flex: 0 0 40%;
    max-width: 450px;
    text-align: center;
    padding: 50px;
    border-radius: 30px;
    background-color: #fff;
    margin-top: 21px;
    margin: 20px auto 0;
    padding: 40px 40px 10px 40px !important;
}
.bmd-footer .bm-info p {
  margin-bottom: 15px!important;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.bmd-footer .bm-info p a {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
}
.bmd-footer .bm-info .bm-btn {
  margin-bottom: 26px;
}
.bmd-footer .bm-info .boder-box {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(236, 233, 233, 0);
  padding: 30px;
  border-radius: 20px;
}
.bmd-footer .bm-info .boder-box .bm-btn {
  margin-bottom: 0px;
}


.book-top-btn .btn-in .appoint_ribbon{
	display: block;
	margin:0 0 0 4px;
}
.book-top-btn .appoint_ribbon{
	display: none;
}
/*====================================
Footer
====================================*/

/*====================================
03. Media Queries
====================================*/
/* Breakpoint 1366px */

@media only screen and (max-width: 1366px) {
  .about-us {
    padding: 0px 0px 100px;
  }

  .bmd-footer,
.hero-banner {
    background-size: contain;
  }
}
/* Breakpoint 1280px */
@media only screen and (max-width: 1280px) {
  .bm-container {
    max-width: 1100px;
  }
}
/* Breakpoint 1024px */
@media only screen and (max-width: 1024px) {
  .bm-container {
    max-width: 920px;
  }

  .bmd-header .logo a img {
    max-width: 130px;
  }

  .bmd-header .menu-item {
    padding: 0px 13px;
  }

  .bmd-header .menu-link {
    padding: 22px 0px;
    font-size: 13px;
  }

  .bmd-header .menu-cta a {
    padding: 0px 25px;
    min-height: 42px;
    font-size: 13px;
  }

  .hero-banner .content .main-content {
    padding: 40px;
  }

  .hero-banner h1 {
    font-size: 26px;
    line-height: 38px;
  }

  .hero-banner h3 {
    font-size: 15px;
    line-height: 20px!important;
    margin: 20px 0px;
  }

  .bm-btn {
    min-height: 42px;
    padding: 0px 25px;
  }

  .key_featurs .feature .icon img {
    max-width: 60px;
  }

  .key_featurs .feature .content h3 {
    font-size: 18px;
  }

  .key_featurs .feature {
    padding: 30px 25px;
  }

  .about-us {
    padding: 80px 0px 100px;
  }

  .our-mission {
    padding: 80px 0px 0px;
  }

  .faq-section, .key_featurs, .about-us {
    padding: 80px 0px;
  }

  .bmd-footer {
    padding: 150px 0px 80px;
  }

  .bmd-footer .bm-info {
    padding: 40px;
    max-width: 45%;
    flex: 0 0 45%;
  }
  .locationWrapper{
  	height: 470px;
  }
  .locationIframe{
  	height: 590px;
  }
}
/* Breakpoint 980px */
@media only screen and (max-width: 980px) {
  .bm-container {
    max-width: 900px;
  }
}
/* Breakpoint 800px */
@media only screen and (max-width: 800px) {
  .bm-container {
    max-width: 620px;
  }

  .hero-image {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0px;
  }

  .hero-image {
    max-width: 500px;
    display: block;
    margin: 0 auto 36px;
  }
  
   .hero-image-new {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0px;
  }

  .hero-image-new {
    max-width: 500px;
    display: block;
    margin: 0 auto 36px;
  }

  .hero-banner .content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-banner .content .main-content {
  	padding: 30px 25px;
  }

  .hero-banner {
    padding: 60px 0px;
    padding-bottom: 120px;
  }

  .our-mission {
    padding: 80px 0px 40px;
  }

  .key_featurs,
.faq-section,
.about-us,
.bmd-footer {
    padding: 80px 0px;
  }

  .our-mission .box-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0px;
    order: 1;
  }

  .our-mission .box-right {
    padding-left: 0px;
    max-width: 100%;
    flex: 0 0 100%;
    order: 0;
  }

  .our-mission .section-title h2 {
    text-align: center;
  }

  .our-mission .content {
    text-align: center;
  }

  .our-mission .box-right img {
    display: block;
    max-width: 500px;
    margin: 0 auto 36px;
  }

  .about-us .flex-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-us .flex-left img {
    margin-top: 0px;
    max-width: 500px;
    max-height: 500px;
    margin: 0 auto 0px;
    display: block;
  }

  .about-us .flex-left {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .about-us .section-title h2 {
    text-align: center;
  }

  .about-us .content {
    text-align: center;
  }

  .bmd-footer .bm-form {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bmd-footer .bm-info {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bmd-footer .bm-form .form-btn {
    text-align: center;
    margin-bottom: 50px;
  }

  .key_featurs .feature {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 36px;
  }
 /*  .key_featurs .feature:last-child {
    margin-bottom: 0px;
  } */

  .bmd-header .menu {
    display: none;
  }

  .bmd-header {
    padding: 20px 0px;
  }

  body {
    padding-top: 82px;
  }

  .about-us .section-title h2::after,
.our-mission .section-title h2::after {
    margin: 20px auto 0px;
  }

  .hero-banner .content .main-content,
	.bmd-footer .bm-info {
    padding: 50px;
  }
  .doctorSection-title:after{
  	transform: translateX(-50%);
  	left: 50% !important;
  }
}
/* Breakpoint 768px */
@media only screen and (max-width: 620px) {
  .bm-container {
    max-width: 100%;
    padding: 0px 30px;
  }

  .faq-section .content .faq-header {
	    padding: 20px 0;
  }
}
@media only screen and (max-width: 475px) {
  .hero-banner h1 {
    font-size: 24px;
    line-height: 32px!important;
  }

  .hero-banner h3 {
    font-size: 16px;
    line-height: 22px!important;
    margin: 15px 0px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .faq-section .content .faq-header h3 {
    font-size: 14px;
  }

  .bmd-footer .bm-form .form-group {
    margin-bottom: 15px;
  }

  .bmd-footer .bm-form .form-btn {
    margin-top: 26px;
  }

  .key_featurs, .our-mission, .faq-section, .about-us {
    padding: 40px 0px;
  }

  .bmd-footer {
    padding: 50px 0px 40px !important;
  }

  .bmd-footer .bm-form .flex-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-banner .content .main-content, .bmd-footer .bm-info {
    padding: 30px;
  }

  .about-us .flex-left img {
    max-height: 350px;
  }

  .about-us .section-title,
.section-title {
    padding-bottom: 20px;
  }

  .about-us .section-title h2::after, .our-mission .section-title h2::after {
    margin: 15px auto 0px;
  }

  .bmd-footer .bm-info .boder-box {
    padding: 20px;
  }

  .key_featurs .feature .icon img {
    max-width: 45px;
  }
  /*NEW*/
  .bmd-header .logo a img {
	  max-width: 100px;
  } 
  .moblie-menu {
    display: block!important;
    top: 20px;
  }
}
@media only screen and (max-width: 360px) {
  .bm-container {
    max-width: 100%;
    padding: 0px 20px;
  }

  .bmd-header .menu-cta a {
    padding: 0px 20px;
    min-height: 36px;
  }

  .bmd-header .logo a img {
    max-width: 80px;
  }
  
  .moblie-menu { 
    top: 20px !important; 
  }

  .hero-banner h1 {
    font-size: 20px;
    line-height: 26px!important;
  }

  .hero-banner h3 {
    font-size: 14px;
  }

  .faq-section .content .faq-header h3 {
    font-size: 14px;
  }

  .bm-btn {
    padding: 0px 20px;
    min-height: 36px;
  }

  .key_featurs .feature .content h3 {
    font-size: 17px;
  }

  .key_featurs .feature {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .about-us .section-title {
    padding-bottom: 15px;
  }

  .hero-banner .content .main-content, .bmd-footer .bm-info {
    padding: 25px;
  }
  .menu-btns-top a { 
	    min-width: 100px;
	}
	.menu-btns-top .btn_ribbon, .book-top-btn .btn_ribbon{
		font-size: 8px;
	}
	.patient_btn2 .btn-in, .book-top-btn .btn-in{
		font-size: 11px;
		padding:0px 10px;
		min-height: 35px !important;
	}
	.bmd-header .menu-cta a.patient_btn2 {
	    margin: 0px 10px 0 10px !important;
	}
}

.call-btn {
	background-color: #fc3a81!important;
	font-weight: bold!important;
}

.call-btn:hover,.call-btn::before {
	text-decoration:none;
	color:#fff;
	background: #c55d83!important;
}
.call-btn i {
	font-size: 20px;
}

.info-section .call-btn {
	padding: 5px 10px;
    min-height: auto;
}
.offerText{
	align-items: center;
    text-align: left;
    color: #363636!important;
}
.becomeTester {
	color: #5D6CDD!important;;
}

/* Our Location Sections */
.location-section{
	padding: 60px 0;
	position: relative;
	min-height: 500px;
    display: grid;
    grid-template-columns: 2fr 3fr;
}
.locationWrapper{
	width: 100%; overflow: hidden; height: 420px !important;
}
.locationIframe{
	width: 100%; height: 540px !important; margin-top: -120px;
}
.adressSection{
	color: #FFFFFF; background: rgba(115, 191, 44, 1);
    display: inline-flex; flex-direction: column; align-items: flex-start;
    padding: 30px 50px;
}
.adressSection h2{
	font-size: 36px; font-weight: 800; margin: 0px 0px 20px 0px; position: relative;
}
.adressSection h2:after{
	content: '';
	position: absolute; bottom: -5px; left: 0px;
	width: 100px; height: 3px; background: #fff;	
}
.adressSection h4{
	font-size: 20px; margin: 0px 0px 5px 0px;
}
.adressSection p a{
	font-size: 16px; font-weight: 500; margin: 0px 0px 5px 0px; color: #fff;
}
.adressSection span{
	font-size: 12px; font-weight: 600; margin: 0px 0px 3px 0px;
}
.addressRow{
	margin: 0px 0px 20px 0px;
}
.adressSection button{
	padding: 10px 20px; border-radius: 100px; background: #fff;
    font-size: 16px; font-weight: 600; color: #73bf2b; margin: 0px 0px 10px 0px;
}

/* Our Doctors Sections */
.doctor-section, .subscription-section{
	padding: 60px 0;
	position: relative;
}
.doctor-section .section-title h2, .subscription-section .section-title h2 {
	font-weight: 800;
	position: relative;
}
.doctor-section .section-title h2::after, .subscription-section .section-title h2::after {
	content: ""; display: block;
	width: 50px; height: 4px;
	background-color: #73bf2c;
	position: absolute; left: 50%; bottom: -15px; transform: translateX(-50%);
}
.doctor-section p, .subscription-section p{
	font-size: 16px; font-weight: 700; margin: 0px 0px 5px 0px; color: #000000;
}
.doctor-section img{
	width: 100%; height: auto; border-radius: 10px; margin: 0px 0px 8px 0px; box-shadow: 0px 0px 15px 0px #00000021; cursor: pointer;
	transition: all .2s ease-in-out;
}
.doctor-section img:hover{
	margin: -10px 0px 0px 0px;
	transition: all .2s ease-in-out;
}
.viewMoreDr{
	padding: 15px 30px; background: #73BF2C; border-radius: 100px; font-weight: 700; font-size: 15px; color: #fff; cursor: pointer;
}
.viewMoreDr:hover{
	background: #5a981f; color: #fff;
}
.doctorImage{
	width: 100%; height: auto; border-radius: 20px;
}

/* Banner Sections */
.hseroHeading{
	padding: 10px 30px; height: 100%;
	display: inline-flex; flex-direction: column; justify-content: center;
}
.hseroHeading h1 {
	font-size: 45px; font-weight: 900 !important; font-style: normal; line-height: 1.2 !important;
	color: #5F6AF2; text-align: left;
}
.hseroHeading h2 {
	font-size: 20px; font-weight: 800 !important; line-height: inherit !important; color: #9EE060;	margin: 20px 0px 0px 0px;
}
.hseroHeading h2 span {
	color: #655C5C;
}
.hseroHeading p {
	font-size: 13px; font-weight: 500; line-height: 30px; margin: 0; color: #655C5C;
}
.bannerSection{
	background: #fff; border-radius: 20px; height: 420px; position: relative;
	display: grid; grid-template-columns: 2fr 1fr;
}
.bannerSection iframe{
	width: 100%; height: 420px; 
	border: none; border-top-left-radius: 20px; border-bottom-left-radius: 20px;
}

.doctorWrapper{
	padding: 250px 0px 50px;
}
.doctorSection-title{	
	font-size: 35px; font-weight: 800 !important; line-height: inherit !important; color: #3F3F3F; position: relative;
}
.doctorSection-title:after{	
	content:'';
	position: absolute; left: 0; bottom: -5px; width: 50px; height:4px; background: #73BF2C;
}
.doctorSection-title span{	
	color: #73BF2C;
}
.doctorWrapper img{
	width: 100%; height: auto; border-radius: 10px; margin: 0px 0px 8px 0px; box-shadow: 0px 0px 15px 0px #00000021; cursor: pointer;
	transition: all .2s ease-in-out;
}
.doctorWrapper img:hover{
	margin: -10px 0px 0px 0px;
	transition: all .2s ease-in-out;
}
.doctorWrapper p{
	font-size: 16px; font-weight: 700; margin: 0; color: #3F3F3F;
}
.doctorProfileModal {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 999999;
}

.doctor-modal-content{
	border-radius: 15px !important;
    max-width: 800px;
    background: #fff;
}
.doctor-modal-content img{
	width: 100%; height: auto; border-radius: 10px; margin: 0px 0px 8px 0px; box-shadow: 0px 0px 15px 0px #00000021;
	
}
.doctor-modal-content h4{
	font-size: 16px; font-weight: 700; margin: 0px 0px 5px 0px; color: #000000;
	
}
.doctor-modal-content p{
	font-size: 14px; font-weight: 500; margin: 0; color: #3F3F3F;
	
}
.popupClose{
	background: #131313; color: #fff; font-weight: 400;
    width: 25px; height: 25px; border-radius: 100px;
    position: absolute; top: 10px; right: 10px; cursor: pointer; text-align: center;
}
.popupClose:hover{
	cursor: pointer; background: #565656;
}

/*Subscription Style*/
.subscriptionWrapperBlock{
    border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 15px;
    padding: 15px;     
    background: #fff;
    margin: 30px auto 0 auto;
    width: 500px;
}
.subscriptionHeading{
    margin: 0px 0px 15px 0px;
}
.subscriptionHeading h3{
    margin: 0px 0px 5px 0px;
    font-size: 18px; font-weight: 700; color: #000000;
}
/*.subscriptionHeading p{
    margin: 0px 0px 5px 0px;
    font-size: 12px; font-weight: 500; color: #E59C2C; font-style: italic;
}*/
.subscriptionHeading p {
    margin: 10px 0px 5px 0px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-style: italic;
}
.subscriptionRow{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding: 10px 0px;
    display: flex;  align-items: center; justify-content: space-between;
}
.subscriptionRow:last-child{
    border-bottom: none;
}
.subscriptionRow span{
    color: #4B4B4B; font-size: 13px;
}
.subscriptionRow p{
    color: #000000; font-size: 13px; font-weight: 700;
    margin: 0; padding: 0;
}






