/*
  =================================================================================== Global Variables
*/

:root {
  --base-color: #0B96B3;
  --primary-color: #108DA7;
  --red-color: #BD1215;
  --white: #fff;
  --black: #000;
  --global-font: 'Source Sans Pro', sans-serif;
  --transition4s: all ease 0.4s;
}

/*
  =================================================================================== Global Style
*/
html {
  font-size: 62.5%;
}

body,
html {
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  font-family: var(--global-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  color: var(--base-color);
}

a:focus {
  outline: none;
}

a:hover {
  color: var(--base-color);
  transition: var(--transition4s);
}

strong {
  font-weight: 600;
}

video {
  width: 100%;
  display: block;
}

*:focus {
  outline: 0;
}

:focus-visible {
  outline: 0;
}

::-webkit-input-placeholder {
  color: #767676;
}

::-moz-placeholder {
  color: #767676;
}

:-ms-input-placeholder {
  color: #767676;
}

:-moz-placeholder {
  color: #767676;
}

p {
  font-size: 1.6rem;
  line-height: 1.333;
  font-weight: 400;
  color: var(--black);
}

p a {
  font-weight: 700;
}

ul {
  padding-left: 0px;
  margin-left: 0px;
}

li {
  list-style-type: none;
}

.mt-24 {
  margin-top: 24px;
}

.radius40 {
  border-radius: 40px;
}

.radius30 {
  border-radius: 30px;
}

.border {
  border: solid 1px var(--primary-color);
}

.hidden {
  overflow: hidden;
}

.wrap-padding {
  padding: 30px;
}

.mt-70 {
  margin-top: 70px;
}

body .owl-nav button {
  background-color: transparent !important;
}

/*
  =================================================================================== Common Style
*/

.wide-container {
  max-width: 1920px;
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.text-center {
  text-align: center;
}

.btn-group {
  margin-top: 30px;
  display: flex;
  align-items: start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.justify-center {
  justify-content: center;
  align-items: center;
}

/*
  =================================================================================== Button Style
*/

a:focus {
  color: var(--base-color);
}

.common-btn {
  font-family: var(--global-font);
  display: inline-flex;
  gap: 4px;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  border-radius: 16px;
  transition: var(--transition4s);
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  background-color: var(--base-color);
  padding: 17px 20px;
  height: 48px;
}

.common-btn:hover {
  transition: var(--transition4s);
  background-color: var(--black);
  color: var(--white);
}

.common-btn:focus {
  color: var(--white);
}

a:focus {
  color: var(--black);
}

.common-btn:hover:focus {
  color: var(--white);
}

.common-btn[disabled="disabled"] {
  cursor: not-allowed;
  pointer-events: none;
  background: #b4b4b4;
}

.common-btn span {
  display: block;
  height: 34px;
  width: 34px;
}

.common-btn span svg {
  width: 100%;
  height: 100%;
}

.border-btn {
  background-color: transparent;
  border: solid 1px var(--base-color);
  color: var(--base-color);
}

.border-btn svg path {
  stroke: var(--base-color);
}

.border-btn:hover {
  background-color: var(--base-color);
  color: var(--white);
}

.border-btn:hover svg path {
  stroke: var(--white);
}

.common-btn.border-btn:focus{
  color: var(--base-color);
}

.notFound {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem !important;
  color: var(--base-color) !important;
}

.post,
.page {
  margin: 0;
}

.dark-bg p,
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg .sub-heading,
.dark-bg .para,
.dark-bg .para p {
  color: var(--white) !important;
}

.para ul li {
  margin-bottom: 15px;
  padding-left: 13px;
  position: relative;
  font-size: 2rem;
  line-height: 1.3;
}

.para ul li:last-child{
  margin-bottom: 0;
}

.para ul li:before {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  top: 13px;
  left: 0;
  border-radius: 50%;
  background-color: var(--black);
}

.dark-bg .para ul li:before {
  background-color: var(--white);
}

.dark-bg .common-btn:after {
  background-color: var(--white);
}

.dark-bg .common-btn:hover svg path {
  stroke: var(--white);
}

.dark-bg .common-btn:hover:after {
  background-color: var(--white);
}

.dark-bg .border-btn {
  color: var(--white);
  border-color: var(--white);
}

.dark-bg .border-btn svg path {
  stroke: var(--white);
}

.dark-bg .border-btn:hover {
  border-color: var(--base-color);
}

.heading {
  margin-bottom: 20px;
}

.heading h1 {
  font-size: 3.8rem;
  line-height: 1.125;
  margin: 0 0 8px 0;
}

.heading h2 {
  font-size: 2.5rem;
  line-height: 1.222;
  font-weight: 700;
  margin: 0 0 8px 0;
  width: 100%;
}

.heading h3 {
  font-size: 1.8rem;
  line-height: 1.222;
  font-weight: 600;
  margin: 0 0 8px 0;
  width: 100%;
}

.sub-heading {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #757575;
}

.heading p {
  font-size: 2rem;
  font-weight: 600;
}

.text-center.heading h1,
.text-center.heading h2,
.text-center.heading h3,
.text-center.heading h4 {
  margin: 0 auto;
}

.para ol{
  padding-left: 0;
  margin-left: 0;
}

.para ol li {
  list-style-type: decimal;
  margin-bottom: 8px;
  list-style-position: inside;
}

.para ol li:last-child{
  margin-bottom: 0;
}

.para ol li ul{
  margin: 15px 0;
}

.para ol li ul li{
  list-style-type: none;
}

.para p {
  font-size: 2rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 15px;
}

.para p:last-child {
  margin-bottom: 0;
}

.para h2, 
.para h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.withIcon h2 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.withIcon .para {
  margin-top: 30px;
}

.withIcon span img {
  display: block;
  width: 30px;
}

.font24 {
  font-size: 1.8rem;
}

.font32 {
  font-size: 2.5rem;
}

.default-page{
  padding-top: 20px;
  padding-bottom: 20px;
}

.table-responsive{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/*
  =================================================================================== Header Style
*/

header.site-header {
  width: 100%;
  margin-top: 15px;
}

.header-outer {
  display: grid;
  grid-template-columns: 40% 57%;
  grid-gap: 2%;
  align-items: center;
  padding: 10px;
  position: relative;
  border-radius: 30px;
  background-color: #212121;
}

.top-btn {
  padding: 10px;
}

.top-btn a {
  border-radius: 12px;
  background: var(--base-color) url('../images/down-arrow.svg') no-repeat;
  background-position: 90% center;
  font-size: 16px !important;
  padding: 6px 25px 6px 15px !important;
  color: var(--white) !important;
}

.mobile-contact {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 3px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
}

.mobile-contact svg {
  width: 25px;
  height: 25px;
}

.menu-toggle {
  border: 0;
  background-color: var(--base-color);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background-color: var(--white);
  transition: all ease 0.3s;
}

.menu-toggle.active span:nth-child(2) {
  display: none;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.main-logo {
  order: 1;
}

.main-logo .site-branding {
  width: 150px;
}

.main-logo .site-branding a {
  display: flex;
}

.header-right-part {
  order: 2;
  display: flex;
  margin-left: auto;
  gap: 15px;
  align-items: center;
}

.main-menu {
  order: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 0;
}

.main-navigation ul.menu {
  background-color: var(--white);
  display: none;
  margin: 0;
  position: absolute;
  z-index: 3;
  left: 0px;
  width: 100%;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition4s);
  box-shadow: 2px 0px 15px 7px #0000000A;
  border-radius: 10px;
  top: 100%;
}

.main-menu .main-navigation.openMenu .menu {
  display: block;
  height: auto;
  transition: var(--transition4s);
}

.main-navigation ul.menu li,
.main-navigation ul.menu li a {
  font-family: var(--global-font);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
}

.main-navigation ul.menu li {
  position: relative;
}

.main-navigation ul.menu>li ul.sub-menu {
  display: none;
  margin-left: 0;
  background: #eee;
  padding-left: 0;
}

.main-navigation ul.menu li a {
  display: block;
  padding: 10px 15px;
}

.main-navigation ul.menu>li>a {
  border-top: solid 1px #eee;
}

.main-navigation ul.menu>li:first-child>a {
  border-top: none;
}

.main-navigation ul.menu>li>ul.sub-menu li a:hover {
  color: var(--base-color);
}

.main-navigation ul.menu>li>a:hover,
.main-navigation ul.menu>li.current-menu-item>a {
  color: var(--base-color);
}

.main-navigation ul.menu li.menu-item-has-children>a:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 100%;
  right: 0;
  top: 0;
  background: url('../images/down-arrow.svg') no-repeat;
  background-position: center center;
  display: none;
}

.menu-icon {
  position: absolute;
  background: url(../images/select-down.svg) no-repeat;
  background-position: center;
  width: 26px;
  height: 26px;
  right: 20px;
  top: 10px;
  z-index: 1;
  transition: var(--transition4s);
}

.focus>.menu-icon {
  transform: rotate(180deg);
}

.main-navigation ul.menu li.focus>ul.sub-menu {
  display: block;
}

/*
  =================================================================================== Hero Banner style
*/

.hero-banner {
  margin-top: 16px;
  margin-bottom: 20px;
}

.hero-banner-outer {
  position: relative;
}

.hero-banner-content {
  position: static;
  bottom: 48px;
  left: 50%;
  transform: none;
  width: 100%;
  z-index: 1;
  padding-top: 40px;
}

.banner-video {
  position: relative;
}

.hero-banner-outer .banner-video:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 20%, transparent 50%, #3fb0b8);
}

.banner-video video {
  height: 400px;
  object-fit: cover;
}

.banner-video img {
  width: 100%;
  max-width: inherit;
  display: block;
  object-fit: cover;
}

.hero-banner-content .heading {
  margin-bottom: 0;
}

.hero-banner-content .heading p {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}

.hero-banner-content .heading h1 {
  color: var(--black);
  font-size: 3rem;
  margin-bottom: 8px;
  font-family: 'Source Sans Pro', sans-serif;
}

.hero-banner-content .heading .sub-heading {
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
}

.hero-banner-content .btn-group {
  display: inline-flex;
  margin-top: 15px;
}

.hero-banner-content .btn-group .border-btn {
  font-size: 2rem;
}

.home-aboutus-video video,
.home-aboutus-video img {
  object-fit: cover;
  height: 300px;
  overflow: hidden;
  width: 100%;
  border-radius: 40px;
}

.book-appointment-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.book-appointment-popup .popup-inner {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 570px;
  position: relative;
}

.book-appointment-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.active-book-popup {
  overflow: hidden;
}

body.active-book-popup .book-appointment-popup {
  display: flex;
}

.floating-call-btn{
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1;
}

.floating-call-btn a{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: var(--base-color);
  position: relative;
  display: block;
  color: #fff;
  padding: 0;
  line-height: 1.1;
  text-align: center;
}

.floating-call-btn a:after{
  background: var(--white) url('../images/phone-call.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  height: 42px;
  left: 2px;
  position: absolute;
  top: 3px;
  width: 43px;
  z-index: 1;
  border-radius: 50%;
  background-size: 26px;
  border: solid 1px var(--base-color);
}

.floating-call-btn a span{
  font-size: 0;
  font-weight: 600;
}

/*
  =================================================================================== Achiment About section style
*/

.achiment-about-section {
  padding: 30px 0;
}

.achiment-repeater {
  display: grid;
  grid-gap: 15px;
}

.achiment-card {
  padding: 30px;
  text-align: center;
  color: #fff;
}

.achiment-card .num {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.achiment-card p {
  margin: 0 0 24px 0;
  color: inherit;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}

.achiment-card .short-para {
  color: inherit;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}

.home-aboutus-wrap {
  margin-top: 40px;
}

.home-aboutus-wrap {
  display: grid;
  grid-gap: 5%;
  margin-top: 40px;
}

.home-aboutus-wrap h3, 
.home-aboutus-wrap h4,
.home-aboutus-wrap h5,
.home-aboutus-wrap h6{
  margin-top: 0;
  margin-bottom: 15px;
}

.home-aboutus-wrap h3{
  font-size: 2.8rem;
}

.home-aboutus-wrap h4{
  font-size: 2.4rem;
}

.home-aboutus-wrap h5{
  font-size: 2rem;
}

.home-aboutus-wrap h6{
  font-size: 1.6rem;
}

/*
  =================================================================================== Explore Option section style
*/

.explore-option-section {
  padding: 30px 0;
}

.explore-option-outer {
  background: #ECEEE9;
  position: relative;
}

.explore-option-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.explore-option-outer:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ECEEE9;
}

.explore-option-content .heading {
  margin-bottom: 4px;
}

.accordion-list {
  border-bottom: solid 1px #ddd;
}

.accordion-list h3 {
  position: relative;
  padding: 10px 35px 10px 0;
  margin: 0;
  color: #108DA7;
  font-size: 2rem;
  line-height: 1.2;
  cursor: pointer;
}

.accordion-list h3 span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.accordion-list h3 span img {
  display: block;
}

.accordion-list.active .accordion-header img {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.accordion-content {
  padding-bottom: 24px;
  display: none;
}

.accordion-content p {
  margin-top: 0;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-list.active .accordion-content {
  display: block;
}

/*
  =================================================================================== Fertility Care style
*/

.fertility-care-section {
  padding: 30px 0 60px 0;
}

.fertility-blue-strap {
  background-color: #0B96B3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.fertility-blue-strap .heading {
  width: 100%;
  margin-bottom: 0;
}

.sperm-icon {
  width: 227px;
}

.fertility-repeater {
  display: grid;
  grid-gap: 20px;
  margin: 40px auto 0px auto;
}

.fertility-card {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  box-shadow: 0px 16px 32px 28px rgba(0, 0, 0, 0.04);
}

.fertility-image img {
  display: block;
  border-radius: 30px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition4s);
}

.fertility-card:hover .fertility-image img {
  transform: scale(1.1);
}

.fertility-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.fertility-card h4 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #108DA7;
  margin-top: 0;
}

.fertility-card ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.fertility-content div ul:last-child {
  margin-bottom: 0;
}

.fertility-card ul li {
  list-style-type: disc;
  font-size: 16px;
  font-weight: 400;
}

/*
  =================================================================================== Doctor Profile style
*/

.doctor-section {
  background: linear-gradient(0deg, #ECEEE9, #ECEEE9), linear-gradient(90deg, rgba(226, 229, 222, 0) 0%, rgba(226, 229, 222, 0.2) 100%);
  padding: 30px 0;
}

.doctor-profile-outer {
  background-color: #fff;
  display: grid;
  padding-bottom: 0 !important;
}

.doctor-profile-content .heading h2 {
  color: #108DA7;
}

.doctor-profile-content .sub-heading {
  font-size: 2.4rem;
  color: #000;
  line-height: 1.2;
}

.doctor-profile-content .para,
.doctor-profile-content .para p {
  font-size: 2rem;
  font-weight: 400;
}

.doctor-profile-content .para p:last-child{
  margin-bottom: 0;
}

.doctor-job {
  margin-top: 48px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.doctor-job li {
  border: 1px solid #3FB0B8;
  border-radius: 20px;
  padding: 16px 24px;
  color: #3FB0B8;
  width: 100%;
}

.doctor-job .num {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.doctor-job .text {
  font-size: 2rem;
  line-height: 1.3;
}

.doctor-profile-content .btn-group {
  margin-top: 30px;
}

.doctor-profile-image {
  margin-top: 30px;
  align-self: end;
}

.doctor-profile-image img {
  display: block;
}

.doctor-profile-content .btn-group {
  margin-top: 30px;
}

.doctor-profile-image img {
  display: block;
}

.doctor-profile-image {
  margin-top: 30px;
  align-self: end;
}

.doctor-profile-content {
  padding-bottom: 70px;
}

.doctor-achievement-section {
  padding-top: 32px;
  padding-bottom: 50px;
  background-color: #ECEEE9;
}

.doctor-achievements ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.doctor-achievements ul li {
  border-width: 1px;
  border-style: solid;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  height: 159px;
  align-items: stretch;
  width: 100%;
  text-align: center;
  perspective: 1000px;
}

.doctor-section.dark-bg {
  background: linear-gradient(93.14deg, #0B96B3 16.74%, #2D7B8D 92.55%);
  padding-bottom: 0;
}

.doctor-section.dark-bg .doctor-profile-outer {
  padding: 0;
  background: no-repeat;
  overflow: visible;
}

.achieve-text {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  position: absolute;
  transition: background-color 0.3s ease;
}

.achieve-text[style="background-color: #ffffff"]>span,
.achieve-text[style="background-color: #eaece7"]>span {
  color: #108DA7;
}

.achieve-text span {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.achieve-text .brief-text {
  font-size: 1.6rem;
  font-weight: 400;
}

.achieve-logo {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 187px;
}

.achieve-logo img {
  width: 90px;
}

.doctor-achievements ul li .flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
  border-radius: 30px;
}

.doctor-achievements ul li:hover .flip-card {
  transform: rotateY(180deg);
}

.doctor-achievements ul li .achieve-text.front-card,
.doctor-achievements ul li .achieve-text.back-card {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: inherit;
  text-align: center;
}

.doctor-achievements ul li .achieve-text.back-card {
  transform: rotateY(180deg);
}

/*
  =================================================================================== Our Location style
*/

.location-section {
  padding: 30px 0 30px 0;
}

.our-location-outer {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}

.location-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.location-image {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.location-image img {
  border-radius: 30px;
  display: block;
  width: 100%;
  transition: var(--transition4s);
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-content h3 {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.laddress {
  font-size: 1.5rem;
  line-height: 1.3;
  text-decoration: underline;
  max-width: 140px;
}

.location-content a {
  display: block;
}

/*
  =================================================================================== Review Section style
*/

.reviews-section {
  padding: 20px 0;
}

.heading.heading-link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.heading.heading-link h2 {
  width: auto;
  margin-bottom: 0;
}

.heading.heading-link a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-color);
}

.review-outer {
  background-color: #EBEDE7;
}

.review-card {
  background-color: #fff;
  padding: 24px;
}

.review-head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.review-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-icon.fb {
  background: url('../images/facebook-icon.png') no-repeat;
}

.review-icon.google {
  background: url('../images/google-icon.png') no-repeat;
}

.review-icon.practo {
  background: url('../images/practo-icon.png') no-repeat;
}

.review-head-right {
  width: 100%;
}

.review-head-right .userName {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.review-head-right .review-date {
  color: #757575;
  font-size: 1.4rem;
  line-height: 1.2;
}

.review-rating {
  gap: 3px;
  margin: 18px 0;
  display: none;
}

.review-rating.one-star:nth-child(1) {
  display: flex;
}

.review-rating.two-star:nth-child(1),
.review-rating.two-star:nth-child(2) {
  display: flex;
}

.review-rating.three-star:nth-child(1),
.review-rating.three-star:nth-child(2),
.review-rating.three-star:nth-child(3) {
  display: flex;
}

.review-rating.four-star:nth-child(1),
.review-rating.four-star:nth-child(2),
.review-rating.four-star:nth-child(3),
.review-rating.four-star:nth-child(4) {
  display: flex;
}

.review-rating.five-star {
  display: flex;
}

.review-card .post-content {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 10px;
}

.review-card .read-link {
  color: var(--black);
  text-decoration: underline;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.review-slider .owl-stage {
  padding: 20px 0;
}

.review-slider .owl-item {
  opacity: 50%;
  transition: all ease 0.4s;
  pointer-events: none;
}

.review-slider .owl-item.active.center {
  opacity: 1;
  transform: scale(1);
  pointer-events: unset;
}

.review-slider .owl-stage {
  padding: 20px 0;
}

.review-slider .owl-nav {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.review-slider .owl-nav button:hover {
  background: transparent !important;
}

.review-slider .owl-nav button.owl-prev {
  left: 0;
}

.review-slider .owl-nav button.owl-next {
  right: 0;
}

/*
  =================================================================================== Extended Support style
*/

.extended-support-section {
  padding: 20px 0;
}

.extended-support-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.support-card {
  background-color: #0B96B3;
  padding: 10px;
  text-align: center;
}

.support-image {
  width: 48px;
  margin: 0px auto;
}

.support-image img {
  display: block;
  transition: var(--transition4s);
}

.support-card:hover .support-image img {
  transform: rotate(360deg);
}

.support-card h3 {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
}

/*
  =================================================================================== Blog style
*/
.blog-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-card-box {
  border: 1px solid #108DA7;
  border-radius: 48px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.post-image {
  margin-bottom: 24px;
}

.post-image img {
  border-radius: 30px;
  display: block;
  height: 180px;
  object-fit: cover;
  transition: var(--transition4s);
}

.post-card-box:hover .post-image img {
  transform: scale(1.1);
}

.post-meta {
  font-size: 1.4rem;
  font-weight: 400;
  color: #757575;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.post-card-box h3 {
  font-size: 2.4rem;
  min-height: 60px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--black);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-card-box h3 a {
  color: var(--black);
}

.post-card-box p {
  font-size: 1.6rem;
  min-height: 45px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  color: #666666;
}

.post-card-box p a {
  color: var(--red-color);
  font-weight: 400;
}

.blog-slider-outer {
  position: relative;
}

.blog-slider-outer .owl-nav {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.blog-slider-outer .owl-nav button {
  margin: 0 !important;
}

.blog-slider .owl-stage-outer {
  padding-bottom: 20px;
}

.blog-slider-outer .slider-counter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
  color: #757575;
}

.blog-slider-outer .slider-counter span {
  font-size: 1.6rem;
  font-weight: 400;
  color: #757575;
}

.blog-slider-outer .slider-counter span.current {
  color: #0B96B3;
}

/*
  =================================================================================== FAQ style
*/

.faq-section {
  padding-top: 20px;
  padding-bottom: 30px;
}

.faq-outer {
  display: grid;
  grid-gap: 20px;
}

.faq-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-x: auto;
  max-height: 400px;
  padding-right: 10px;
}

.faq-card {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  padding: 24px 65px 24px 24px;
  position: relative;
}

.faq-card h4 {
  margin: 0 0 8px 0;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}

.faq-card .faq-icon {
  position: absolute;
  right: 24px;
  top: 40px;
  transform: rotate(180deg);
  cursor: pointer;
  height: 28px;
}

.faq-card.active .faq-icon {
  transform: rotate(0deg);
}

.question {
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--black);
  width: 100%;
  overflow-x: auto;
}

.question ul,
.question ol {
  padding-left: 20px;
  margin-left: 0;
}

.question ul li{
  list-style-type: disc;
}

.question ol li{
  list-style-type: decimal;
}

.faq-image-wrap {
  position: relative;
  width: fit-content;
  margin: 0px auto;
}

.faq-image-wrap .common-btn {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.faq-image-wrap img {
  display: block;
  transition: var(--transition4s);
  height: 300px;
  object-fit: cover;
}

.faq-image-wrap:hover img {
  transform: scale(1.1);
}

.default-slider .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.faq-listing-section{
  padding-top: 20px;
  padding-bottom: 20px;
}

/* .faq-listing .faq-list-wrap {
  max-height: unset;
} */

/*
  =================================================================================== Footer style
*/

.back-to-top-wrap {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 85px;
  right: 20px;
  text-align: center;
  z-index: 1000;
  display: none;
  background: var(--base-color);
  border-radius: 50%;
  padding: 15px;
}

.back-to-top-wrap button {
  border: 0;
  background: var(--base-color);
  padding: 0;
}

footer.site-footer {
  margin-top: 30px;
  padding-bottom: 20px;
}

.footer-outer {
  background-color: #212121;
}

.top-footer {
  padding-bottom: 40px;
}

.top-footer .heading {
  margin-bottom: 32px;
}

.top-footer .heading span {
  color: #54B8BE;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}

.select-service {
  background: #fff url('../images/select-down.svg') no-repeat;
  background-position: 97% center;
  border: none;
  color: #000;
  font-size: 1.6rem;
  margin-bottom: 20px;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
}

.menu-footer-menu-1-container {
  display: none;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-row-gap: 9px;
  align-items: start;
}

.footer-links ul li {
  list-style-type: none;
  color: #fff;
  padding-left: 15px;
  position: relative;
  line-height: 1;
}

.footer-links ul li:after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

.footer-links ul li a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}

.footer-bottom {
  padding-top: 20px;
  border-top: solid 1px #757575;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-bottom ul li a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}

.footer-bottom ul li a img {
  width: 100%;
}

.copyright-text {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.64;
  font-weight: 400;
  text-align: center;
}

/*
  =================================================================================== Services Page style
*/

.hero-banner-content-wrap {
  padding: 0 0 40px 0;
}

.hero-banner-content-wrap .hero-banner-content {
  position: static;
  width: 100%;
  transform: none;
}

.hero-banner-content-wrap .hero-banner-content .sub-heading {
  font-size: 2rem;
}

.hero-banner-form {
  border: 1px solid #FFFFFF1A;
  backdrop-filter: blur(16px);
  background: #f5f5f5;
  border-radius: 20px;
  padding: 21px 32px;
  margin-top: 30px;
  width: 100%;
}

.hero-banner-form.vdesktop {
  display: none;
}

.hero-banner-form.vmobile {
  display: block;
}

.book-form-wrap h3 {
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.1;
  text-align: center;
  font-size: 2.5rem;
}

.book-form-wrap h4 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #757575;
  font-weight: 400;
}

.book-form-wrap p.prcy-text {
  max-width: 364px;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #757575;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.field-group {
  margin-bottom: 16px;
}

.field-group p {
  margin: 0;
}

.field-group p>span{
  display: block;
}

.field-group .wpcf7-list-item.first {
  margin-left: 0;
}

.submit-group {
  margin-top: 20px;
}

.submit-group p {
  margin: 0;
}

.submit-group input[type="submit"] {
  width: 100%;
  margin-bottom: 10px;
}

.hero-banner-form .wpcf7-response-output {
  font-size: 1.4rem;
  margin-top: 0 !important;
}

/*
  =================================================================================== Reviews Counter style
*/

.reviews-counter-section {
  padding: 30px 0 30px 0;
}

.reviews-counter-outer {
  background-color: #fbfbfb;
  padding: 40px;
  display: grid;
  grid-gap: 37px;
  grid-template-columns: repeat(2, 1fr);
}

.reviews-counter-card {
  padding: 20px;
}

.reviews-icon {
  width: 80px;
  margin: 0px auto;
}

.reviews-num {
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  gap: 7px;
  background: #f5f5f5;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  padding: 10px 16px;
  width: fit-content;
}

.reviews-num img {
  display: block;
}

/*
  =================================================================================== Services style
*/

.service-section {
  padding: 50px 0;
}

.services-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.service-slider-outer .blog-post-card p {
  font-weight: 600;
  color: #757575;
}

.service-slider-outer .post-card-box {
  padding: 8px;
  border-radius: 30px;
}

.service-slider-outer .post-image img {
  border-radius: 24px;
  height: 207px;
}

.service-slider-outer .post-card-box h3 {
  font-size: 2rem;
}

.center-btn {
  text-align: center;
}

.center-btn a {
  width: fit-content;
  margin: 0px auto;
}

/*
  =================================================================================== Why Choose Style
*/

.why-choose-section {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.why-choose-outer {
  display: grid;
  grid-gap: 40px;
}

.why-choose-content h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  color: #108DA7;
}

.why-choose-content p {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 16px;
}

.why-choose-image img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

/*
  =================================================================================== Consult Expert Style
*/

.consult-expert-section {
  padding: 40px 0 80px 0;
}

.consult-expert-section.ovsection {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 20px;
}

.consult-expert-outer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  background-size: cover !important;
}

.consult-expert-outer::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(16, 141, 167, 0) -7.51%, #108DA7 73.11%);
}

.consult-expert-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.consult-expert-inner .heading {
  margin-bottom: 20px;
}

.consult-expert-inner .para h3 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.consult-expert-inner .para p {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

/*
  =================================================================================== Infertility Doctor Style
*/

.infertility-doctor-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.infertility-doctor-wrap {
  background: #f5f5f5;
}

.infertility-doctor-outer {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 15px;
}

.infertility-doctor-outer h3 {
  background-color: var(--black);
  color: var(--white);
  border-radius: 16px;
  text-align: center;
  padding: 12px;
  font-style: 2rem;
  line-height: 1;
  font-weight: 600;
  margin: 0;
}

.infertility-doctor-outer ul {
  margin: 24px 0 0 0;
  padding: 0;
  display: grid;
  flex-direction: column;
  grid-gap: 16px;
}

.infertility-doctor-outer ul li {
  background: var(--white);
  padding: 20px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infertility-doctor-outer ul .owl-item li img {
  width: auto;
}

/*
  =================================================================================== IVF Cost Style
*/

.ivf-cost-section {
  padding: 40px 0 40px 0;
}

.ivf-cost-outer {
  width: 100%;
  margin: 0 auto;
  overflow: auto;
}

.ivf-cost-outer .notes {
  font-style: italic;
  margin-bottom: 0;
}

/*
  =================================================================================== Schedule Appointment Style
*/

.appointment-cta-section {
  padding-top: 40px;
}

.appointment-cta-outer {
  background-color: #EBEDE7;
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  grid-gap: 50px;
}

.appointment-cta-outer .heading h2 {
  color: #0C5D78;
}

.appointment-cta-outer .heading .sub-heading {
  color: #000;
  font-weight: 400;
}

.appointment-image {
  position: relative;
}

.appointment-image img {
  display: block;
}

.appointment-cta-outer .small-image {
  position: absolute;
  width: 120px;
  border-radius: 16px;
  box-shadow: 0px 16px 32px 28px #0000000D;
  bottom: -20px;
}


/*
  =================================================================================== Get In Touch Style
*/

.getin-touch-section.module-gap {
  padding: 48px 0 40px 0;
}

.next-step-wrap {
  display: grid;
  grid-gap: 40px;
}

.next-step-wrap.sticky-image .next-step-image {
  position: sticky;
  top: 0;
}

.next-step-content .heading h2 {
  font-size: 3.5rem;
  font-weight: 600;
}

.next-step-content .sub-heading {
  font-weight: 400;
  color: #000;
  font-size: 2rem;
}


.next-step-image img {
  display: block;
  border-radius: 30px;
  height: 450px;
  object-fit: cover;
}

.getin-touch-wrap {
  width: 100%;
  margin-top: 40px;
}

.contact-detail-box {
  border: 1px solid #DDDDDD;
  border-radius: 40px;
  padding: 25px;
}

.contact-detail-box h3 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 2.4rem;
  line-height: 1.25;
}

.contact-repeater-wrap {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 40px;
}

.contact-repeater h4 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.contact-repeater ul {
  margin: 0;
  padding: 0;
  display: grid;
  justify-content: space-between;
  grid-gap: 10px;
}

.contact-repeater ul li {
  list-style-type: none;
}

.contact-repeater ul li span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #757575;
  margin-bottom: 16px;
  display: block;
}

.contact-repeater ul li .link-btn {
  font-size: 2.4rem;
  color: #BD1215;
  font-weight: 600;
  text-decoration: underline;
}


/*
  =================================================================================== Book Appointment Style
*/

.book-appointment-section {
  padding: 40px 0;
}

.book-appointment-outer {
  position: relative;
  background-size: cover;
  padding: 30px;
}

.book-appointment-wrap {
  display: grid;
  grid-gap: 40px;
  width: 100%;
  margin: 0px auto;
  position: relative;
  z-index: 1;
}

.book-appointment-outer::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(117.94deg, rgba(236, 238, 233, 0) -29%, #ECEEE9 41.05%);
}

.clinic-hours ul {
  padding: 16px;
  border-radius: 16px;
  margin: 0 0 40px 0;
  background: #fff;
}

.clinic-hours ul:last-child{
  margin-bottom: 0;
}

.clinic-hours ul li {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: solid 1px #0EABCC;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.clinic-hours ul li:last-child {
  margin-bottom: 0;
}

.clinic-hours ul li span {
  line-height: 1;
}

.clinic-hours ul li .apday {
  font-size: 2.4rem;
  background-color: #0EABCC;
  color: #fff;
  padding: 15px;
  border-radius: 16px;
  width: 100%;
}

.clinic-hours ul li .aptime {
  font-size: 2rem;
  padding: 16px;
}

.appointment-form-wrap {
  border: 1px solid #FFFFFF1A;
  backdrop-filter: blur(16px);
  border-radius: 20px;
  background: #FFFFFF;
  padding: 32px;
}

.appointment-form-wrap .wpcf7-response-output{
  display: none;
}

.popup-success {
  text-align: center;
}

.popup-success h3 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 3rem;
}

.popup-success p {
  margin-bottom: 0;
  font-size: 2rem;
}

.clinic-hours .heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.clinic-hours .sub-heading {
  font-size: 1.5rem;
}

/*
  =================================================================================== Blog Sigle Page Style
*/

.blog-detail-section {
  padding: 48px 0;
}

.blog-detail-outer {
  display: grid;
  grid-gap: 40px;
}

.blog-detail-outer ol {
  margin-left: 15px;
}

.blog-detail-outer ol li {
  list-style-type: decimal;
}

.blog-detail-outer blockquote {
  border-left: solid 10px #0EABCC;
  margin: 10px 0;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.single-blog-banner img {
  border-radius: 40px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.single-blog-header{
  margin-bottom: 30px;
}

.single-blog-header h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.single-blog-header .post-meta {
  gap: 10px;
  font-size: 2rem;
  color: #919191;
}

.single-blog-header .post-meta a {
  color: #919191;
}

.single-blog-header .post-meta a:hover{
  color: var(--base-color);
}

.blog-sidebar-wrap{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-card{
  background: #f5f5f5;
  padding: 30px;
  border-radius: 30px;
}

.sidebar-search form.search-form {
  position: relative;
}

.sidebar-search form input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #BD1215;
  color: #fff;
  font-size: 1.5rem;
}

.sidebar-search form input[type="search"] {
  padding-right: 100px;
}

.sidebar-card.sidebar-appointment {
  background: #0B96B3;
}

.sidebar-author .author-avatar {
  display: block;
}

.sidebar-author .author-avatar img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: block;
}

.sidebar-author .author-name {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sidebar-author .author-name a{
  color: var(--black);
}

.sidebar-card h3 {
  margin-top: 0;
}

.sidebar-card ul li{
  margin-bottom: 10px;
  position: relative;
  padding-left: 13px;
}

.sidebar-card ul li:after{
position: absolute;
content: '';
width: 4px;
height: 4px;
top: 13px;
left: 0;
border-radius: 50%;
background: #000;
}

.sidebar-card ul li:last-child{
  margin-bottom: 0;
}

.sidebar-card ul li a {
  color: #000;
  position: relative;
}

.sidebar-card ul li a:hover {
  color: #0B96B3;
}

.author-socials{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.author-socials a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--base-color);
}

.author-socials a img {
  width: 20px;
}

.navigation.post-navigation {
  margin-top: 40px;
}

/*
  =================================================================================== Fertility Guide Style
*/

.fertility-guide-outer {
  padding-top: 70px;
  padding-bottom: 48px;
}

.fertility-guide-outer .heading {
  margin-bottom: 0;
  width: 100%;
  max-width: 779px;
  margin: 0px auto;
}

.fertility-guide-outer .heading h2 {
  font-weight: 600;
}

.fertility-guide-outer .sub-heading {
  font-weight: 400;
  color: #000;
}

.our-articles-outer {
  border-bottom: 1px solid #108DA7;
  padding-top: 48px;
  padding-bottom: 40px;
}

.article-suggestion ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 32px;
}

.article-suggestion ul li {
  padding: 30px;
  color: #fff;
}

.article-suggestion ul li h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 2.5rem;
  line-height: 1;
}

.article-suggestion ul li p {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
}

/*
  =================================================================================== Explore Article Style
*/
.explore-article-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.explore-article-outer {
  background: #ECEEE9;
}

.explore-article-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.explore-article-head .heading {
  max-width: 477px;
  width: 100%;
  margin-bottom: 0;
}

.article-search {
  max-width: 580px;
  width: 100%;
}

.article-search input {
  border-radius: 30px;
  padding-left: 40px;
  background: #fff url('../images/search-icon.svg') no-repeat;
  background-position: 15px 15px;
}

.article-category-filter{
  margin-top: 15px;
}

.article-category-filter p {
  margin: 0 0 10px 0;
}

.article-category-filter ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.article-category-filter ul li {
  list-style-type: none;
  text-align: center;
  color: #000;
  border: solid 1px #000;
  padding: 10px;
  display: block;
  border-radius: 30px;
  box-shadow: 0px 4px 10px 0px #0000000D;
  font-size: 1.5rem;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  min-width: 90px;
}

.article-category-filter ul li:hover,
.article-category-filter ul li.active {
  background-color: #108DA7;
  border-color: #108DA7;
  color: #fff;
}

.article-listing-wrap {
  margin-top: 24px
}

.article-listing-wrap h3 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
}

.article-listing-wrap p {
  margin: 0;
}

.article-listing {
  margin-top: 24px;
  display: grid;
  grid-gap: 16px;
}

.article-listing .post-card-box {
  padding: 16px 15px;
}

.article-listing .post-card-box .post-image img {
  width: 100%;
  height: 220px;
}

.article-listing .post-card-box .article-content {
  background-color: #fff;
  border-radius: 30px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 185px;
}

.article-listing .post-card-box .post-meta {
  gap: 1px;
  margin-bottom: 8px;
}

.article-listing .post-card-box h3 {
  min-height: auto;
}

.link-arrow {
  align-self: end;
}

.pagination-links {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pagination-links .page-numbers {
  font-size: 1.6rem;
  color: #222222;
  font-weight: 400;

}

.pagination-links .page-numbers.current {
  color: var(--base-color);
  font-weight: 700;

}

.next.page-numbers {
  background: url('../images/right-arrow.svg') no-repeat;
  font-size: 0;
  width: 14px;
  height: 22px;
  background-size: 100%;
  margin-left: 8px;
}

.prev.page-numbers {
  background: url('../images/left-arrow.svg') no-repeat;
  font-size: 0;
  width: 14px;
  height: 22px;
  background-size: 100%;
  margin-right: 8px;
}

/*
  =================================================================================== Book Appointment Subscribe Style
*/

.book-appointment-subscribe-section {
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.book-appointment-subscribe-section .appointment-form-main {
  background-color: #0B96B3;
  padding: 30px;
}

.book-appointment-subscribe-section .appointment-form-wrap {
  max-width: 504px;
  margin: 0px auto;
  width: 100%;
}

.book-appointment-subscribe-section .subscribe-form-wrap {
  background-color: #f5f5f5;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.subscribe-form-inner {
  text-align: center;
}

.book-appointment-subscribe-section .heading {
  margin-bottom: 14px;
}

.book-appointment-subscribe-section .heading h2 {
  font-size: 2rem;
}

.book-appointment-subscribe-section .heading .sub-heading {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
}

.book-appointment-subscribe-section .subscribe-image {
  margin-top: auto;
}

.subscribe-form .mc4wp-form-fields input[type="email"] {
  padding-left: 45px;
  background: #fff url('../images/emai-icon.svg') no-repeat;
  background-position: 15px 13px;
  box-shadow: 0px 8px 16px 14px #00000005;
  border: 1px solid #EEEEEE;
  font-size: 1.6rem;
  border-radius: 16px;
}

.no-subscribe .subscribe-form-wrap {
  display: none;
}

.book-appointment-subscribe-section.no-subscribe {
  grid-template-columns: 100%;
}

.no-subscribe .appointment-form-main {
  border-radius: 30px;
  margin: 0px auto;
  width: 100%;
}

/*
  =================================================================================== Awards list Style
*/

.awards-list-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.awards-list-outer h3 {
  text-align: center;
  margin-bottom: 48px;
  margin-top: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.awards-list-wrap ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.awards-list-wrap ul li {
  text-align: center;
  border-width: 1px;
  border-style: solid;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.awards-list-wrap ul li .awards-image {
  margin-bottom: 20px;
}

.awards-list-wrap ul li .awards-image img {
  height: 154px;
  width: auto;
}

.awards-list-wrap ul li .awards-content {
  padding: 24px;
  border-radius: 30px;
  margin-top: 0;
  height: 100%;
}

.awards-list-wrap ul li .awards-content p {
  margin: 0;
  color: #fff;
  text-align: left
}

/*
  =================================================================================== Surgical Achievement Box Style
*/

.surgical-achievement-box-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.surgical-achievement-box-outer {
  background-color: #ECEEE9;
}

.surgical-achievement-box-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 28px;
}

.achievement-box {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 200px;
}

.achievement-box:after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 100%;
  opacity: 0.8;
  background: #2D7B8D;
}

.achievement-bgimage {
  height: 100%;
  position: absolute;
  width: 100%;
}

.achievement-bgimage img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  display: block;
}

.achievement-box .achievement-content {
  padding: 10px;
  position: relative;
  z-index: 1;
}

.achievement-box .achievement-content h3 {
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--white);
}

/*
  =================================================================================== Publication Journal Style
*/

.publication-journal-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.publication-journal-outer {
  background: #f5f5f5;
  display: grid;
  grid-gap: 40px;
  padding-left: 30px;
  padding-right: 30px;
}

.publication-content-wrap {
  padding-top: 30px;
  position: relative;
}

.publication-content-wrap:after {
  position: absolute;
  content: '';
  width: 97%;
  height: 75px;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.8) 0%, rgba(250, 250, 250, 1) 100%);
}

.publication-content-wrap h3 {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.publication-content-wrap ul {
  margin: 0;
  padding: 0;
}

.publication-content-wrap ul li {
  position: relative;
  padding-left: 10px;
  font-size: 2rem;
  margin-bottom: 16px;
}

.publication-content-wrap ul li:before {
  position: absolute;
  content: '';
  left: 0;
  top: 15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
}

.publication-content {
  overflow: auto;
  height: 500px;
  position: relative;
  padding-bottom: 30px;
  padding-right: 10px;
}

.journal-list-wrap {
  height: 500px;
  overflow: auto;
  padding-right: 10px;
}

.journal-list-wrap ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 32px;
}

.journal-list-wrap ul li {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.journal-image img {
  display: block;
  height: 288px;
  object-fit: cover;
  width: 100%;
}

.journal-list-wrap ul li h3 {
  background-color: #000;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 6px 9px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

/*
  =================================================================================== Leftimage BG Content Style
*/


.leftimage-with-bgcontent-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.leftimage-with-bgcontent-outer {
  display: grid;
  align-items: center;
  grid-gap: 40px;
}

.leftimage-image {
  position: relative;
}

.leftimage-image span {
  position: absolute;
}

.leftimage-image span.icon1 {
  top: -20px;
  right: -20px;
  width: 70px;
}

.leftimage-image span.icon2 {
  left: -20px;
  bottom: -10px;
  width: 38px;
}

.bgcontent-content .para ul {
  padding: 0;
  margin: 0;
}

.bgcontent-content .para ul li {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
  padding-left: 13px;
  position: relative;
}

.bgcontent-content .para ul li:before {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  top: 13px;
  left: 0;
  border-radius: 50%;
}

/*
  =================================================================================== Patient Notes Style
*/

.patient-notes-section.module-gap {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #f5f5f5;
}

.patient-notes-section.module-gap .heading h2 {
  color: #108DA7;
}

.patient-notes-section.module-gap .sub-heading {
  width: 100%;
  font-weight: 400;
  color: #000;
}

.patient-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.patient-gallery-wrap ul {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.patient-gallery-wrap ul li {
  border-radius: 16px;
  overflow: hidden;
  height: 274px;
}

.patient-gallery-wrap ul li img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition4s);
}

.patient-gallery-wrap ul li:hover img {
  transform: scale(1.1);
}

/*
  =================================================================================== Surgical Achievement Style
*/

.surgical-achievement-section.module-gap {
  padding-top: 20px;
  padding-bottom: 110px;
}

.surgical-achievement-head {
  background-color: #0B96B3;
  padding: 25px;
  display: flex;
  justify-content: right;
  height: 362px;
}

.surgical-achievement-head .surgical-sperm {
  margin-right: 100px;
}

.surgical-achievement-content {
  background: #FFFFFF;
  box-shadow: 0px 16px 32px 28px #00000005;
  max-width: 858px;
  width: 90%;
  margin: -170px auto 0px auto;
  position: relative;
  padding: 30px;
  text-align: center;
}

.surgical-achievement-content .image1,
.surgical-achievement-content .image2 {
  position: static;
  width: 100%;
  height: 188px;
  overflow: hidden;
}

.surgical-achievement-content .image1 img,
.surgical-achievement-content .image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surgical-achievement-content .image1 {
  top: -70px;
  left: -130px;
  margin-bottom: 0 auto 20px auto;
}

.surgical-achievement-content .image2 {
  bottom: -70px;
  right: -130px;
  margin: 20px auto 0 auto;
}

.surgical-achievement-content .para ul li {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 0;
  margin-bottom: 0;
  border-top: solid 1px #EEEEEE;
  font-size: 2rem;
}

.surgical-achievement-content .para ul li:before {
  display: none;
}

.surgical-achievement-content .para ul li:last-child {
  border-bottom: solid 1px #EEEEEE;
}

/*
  =================================================================================== Content Right Image Style
*/

.content-right-smallimage-section {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #f5f5f5;
}

.content-right-smallimage-outer {
  display: grid;
  grid-row-gap: 40px;
}

.content-right-smallimage-outer .left-content ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-row-gap: 5px;
}

.content-right-smallimage-outer .left-content ul.colm-list {
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 16px;
}

.content-right-smallimage-outer .left-content ul li {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
}

.content-right-smallimage-outer .left-content ul li:before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  background: #000000;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

.content-right-smallimage-outer .right-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

/*
  =================================================================================== Image Gallery Style
*/

.image-gallery-section {
  background: #f5f5f5;
  padding-top: 70px;
  padding-bottom: 70px;
}

.full-gallery h2 {
  margin-top: 0;
  margin-bottom: 48px;
  text-align: center;
}

.image-gallery-outer ul {
  display: grid;
  margin: 0;
  padding: 0;
}

.image-gallery-outer ul li img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/*
  =================================================================================== Video Gallery Style
*/

.video-gallery-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.video-gallery {
  display: grid;
}

.video-gallery iframe {
  height: 400px;
  width: 100%;
  display: block;
}

/*
  =================================================================================== Treatment Protocols Style
*/

.treatment-protocol-section {
  background-color: #f5f5f5;
  padding-top: 50px;
  padding-bottom: 50px;
}

.treatment-protocols-outer {
  display: grid;
  align-items: center;
  gap: 30px;
  background-color: var(--white);
}

.treatment-protocols-content .content h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}

.treatment-protocols-content .content p {
  margin-top: 0;
  margin-bottom: 20px;
}

.treatment-protocols-content .content ul li:after{
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  top: 13px;
  left: 0;
  border-radius: 50%;
  background: #000;
}

span.treatment-protocols-image img {
  border-radius: 30px;
  display: block;
}

.treatment-protocols-outer.left-image .treatment-protocols-content {
  order: 2;
}

.treatment-protocols-outer.left-image .treatment-protocols-image {
  order: 1;
}

/*
  =================================================================================== Treatment Process Style
*/

.treatement-process-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.treatement-process-outer {
  display: grid;
  grid-gap: 10px;
}

.process-card {
  backdrop-filter: blur(16px);
  text-align: center;
  padding: 30px;
  border-radius: 30px;
  background: #fbfbfb;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: #eee;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 10px auto;
  position: relative;
}

.process-icon img {
  width: 40px;
}

.process-icon .num {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #0B96B3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h3 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 2rem;
  line-height: 1.2;
}

.process-card .process-content {
  font-size: 1.5rem;
}

/*
  =================================================================================== Default Table Style
*/

.default-table-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

/*
  =================================================================================== Content and Image Style
*/

.content-and-image-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.content-and-image-outer {
  display: grid;
  grid-gap: 20px;
}

.default-image-wrap img {
  width: 100%;
}

.content-and-image-outer .default-content-wrap {
  order: 2;
}

.content-and-image-outer .default-image-wrap {
  order: 1;
}

.content-and-image-outer .default-image-wrap img{
  border-radius: 30px;
}

/*
  =================================================================================== journey timeline Style
*/

.journey-timeline-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.journey-timeline-outer {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
}

.journey-timeline-outer::after {
  content: '';
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #000;
}

.journey-timeline {
  position: relative;
  width: 100%;
  padding-left: 120px;
  margin-bottom: 40px;
}

.journey-timeline::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 82px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: 2;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  z-index: -1;
}

.journey-timeline .step {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 600;
  color: #2D7B8D;
  text-transform: uppercase;
}

.journey-timeline .icon {
  position: absolute;
  left: 146px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--black);
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-timeline .icon img {
  width: 25px;
}

.timeline-content {
  background: #F6D155;
  padding: 30px 30px 30px 90px;
  border-radius: 500px 0 0 500px;
}

.timeline-content h3 {
  margin-top: 0;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-content .para {
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--white);
}

.timeline-content .para ul {
  margin: 5px 0 0 0;
  padding: 0;
}

.timeline-content .para ul li {
  margin-bottom: 1px;
}

.timeline-content .para ul li:before {
  background-color: #fff;
}

/*
  =================================================================================== Review List Style
*/

.review-list-section{
  padding-top: 20px;
  padding-bottom: 20px;
}

.review-list-outer{
  display: grid;
  gap: 20px;
}

.review-list-card{
  background-color: #f5f5f5;
  padding: 40px;
}

.review-list-card .review-head,
.review-list-card .post-content {
  text-align: center;
}

.review-list-card .review-rating {
  justify-content: center;
}

.review-list-card .read-link {
  color: var(--black);
  text-decoration: underline;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}


/*
  =================================================================================== Simple Content Style
*/

.simple-content-section{
  padding-top: 30px;
  padding-bottom: 30px;
}

.mix-content-image-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mix-content-image-outer {
  display: grid;
  grid-gap: 30px;
}

.mix-image-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-gap: 30px;
}

.mix-image-wrap .mix-image img{
  width: 100%;
  display: block;
  border-radius: 40px;
  height: 250px;
  object-fit: cover;
  object-position: top center;
}

.mix-content-wrap{
  overflow: hidden;
}

.mix-content-wrap .para h2{
  line-height: 1.2;
}

.mix-content-wrap h3, 
.mix-content-wrap h4,
.mix-content-wrap h5,
.mix-content-wrap h6{
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.mix-content-wrap h3{
  font-size: 2.8rem;
}

.mix-content-wrap h4{
  font-size: 2.4rem;
}

.mix-content-wrap h5{
  font-size: 2rem;
}

.mix-content-wrap h6{
  font-size: 1.6rem;
}

.mix-content-wrap .para p a{
  font-weight: 500;
}

/*
  =================================================================================== Image Content Grid Style
*/

.image-content-grid-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.image-content-grid {
  margin-top: 20px;
}

.column-grid {
  display: grid;
  grid-gap: 20px;
}

.image-content-grid-card.box-shadow {
  box-shadow: 0px 16px 32px 28px rgba(0, 0, 0, 0.04);
  padding: 30px;
}

.image-content-grid-card .icon,
.image-content-grid-card .image{
  margin-bottom: 20px;
}

.image-content-grid-card .image img{
  height: 220px;
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.image-content-grid-card .icon img{
  display: block;
  width: 60px;
}

.image-content-grid-card h3{
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2.8rem;
}