
/* 
font-family: 'Bebas Neue', sans-serif;
font-family: 'Plus Jakarta Sans', sans-serif;

Pastel Blue palette:
Baby Blue
#C6F2F4

Aquamarine
#7CC0D4

Tiffany Blue
#5DBDD3

Midnight Blue
#174A6D

#98bad5	(152,186,213)
#c6d3e3	(198,211,227)
#304674	(48,70,116)
#b2cbde	(178,203,222)
#d8e1e8

*/

/* @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"); */

@import url('https://fonts.googleapis.com/css2? mily=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
  font-size: 62.5%;
  --brand-blue: #2D4191;
  --brand-green:#2CAE38;
  --primary-color: #7BD3EA;
  --secondary-color: #A1EEBD;
  --primary-blue: #C6F2F4;
  --primary-aqua: #7CC0D4;
  --primary-tiffany: #5DBDD3;
  --primary-midnight: #174A6D;
  --contrast-pink:#F6D6D6;
  --contrast-yellow: #F6F7C4;
  --green-aqua: #80ED99;
  --green-blue:#57CC99;

  --bs-body-font-family: 'Plus Jakarta Sans', sans-serif;
  --bs-font-body: 'Plus Jakarta Sans', sans-serif;
  --bs-font-heading: 'Plus Jakarta Sans', sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-font-size: 1.5rem;
  --bs-body-line-height: 28px;
  --bs-body-font-size-md: 20px;
  --bs-body-line-height-md: 30px;
  --bs-body-color: #51565D;
  --bs-body-color-rgb: 81,86,93;
  --bs-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --bs-primary: #2D4191;
  --bs-secondary: #2CAE38;
  --bs-dark: #293039;
  --bs-primary-rgb: 137,10,112;
  --bs-secondary-rgb: 247,171,30;
  --bs-dark-rgb: 41,48,57;
  --bs-primary-bg-subtle: #F9E2FC;
  --bs-secondary-bg-subtle: #FEF3DE;
  --bs-link-color: var(--bs-primary);
  --bs-link-color-rgb: var(--bs-primary-rgb);
  --bs-link-hover-color: #00CFC3;
  --bs-link-hover-color-rgb: 0,207,195;
  --bs-highlight-bg: var(--bs-primary);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #C9CED3;
  --bs-border-radius: 24px;
  --bs-border-radius-sm: 6px;
  --bs-border-radius-lg: 30px;
  --bs-border-radius-xl: 80px 0 80px 0;
  --bs-border-radius-xxl: 150px 0 150px 0;
  --bs-border-radius-pill: 100%;
  --bs-box-shadow: 0px 1px 2px 1px rgba(43, 171, 160, 0.14);
  --bs-box-shadow-lg: 0px 20px 40px 0px rgba(43, 171, 160, 0.08);
  --bs-focus-ring-width: 20px;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(38, 171, 163, 0.25);
  --bs-body-bg: #F8FDFF;
  --bs-white: #fff;
  --bs-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --bs-border-radius-pill: 100%;

}

/* 1.2 -  Reset - Start
================================================== */

body {
  margin: 0;
  padding: 0;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  font-style: normal;
  color: var(--bs-body-color);
  font-family: var(--bs-font-body);
  background-color: var(--bs-body-bg);
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}


.page_wrapper {
  overflow: hidden;
  position: relative;
}

iframe {
  border: none;
}

a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

img:not([draggable]),
embed,
object,
video {
  height: auto;
  max-width: 100%;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}

a {
  outline: 0;
  display: inline-block;
  text-decoration: none;
  font-family: var(--bs-font-heading);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}

a:active, a:focus, a:hover, a:visited {
  outline: 0;
  text-decoration: none;
}

button {
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  display: inline-block;
  font-family: var(--bs-font-heading);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
button:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: var(--bs-dark);
  font-family: var(--bs-font-heading);
  line-height: 1.1;
}

hr {
  opacity: 1;
  height: 1px;
  border: none;
  margin: 25px 0;
  background-color: var(--bs-border-color);
}

mark {
  padding: 0;
  color: var(--bs-primary);
  background-color: transparent;
}

ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* 
.container {
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
} */



.justify-content-center {
  justify-content: center !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
}

[class*=col-] {
  padding: 15px;
}

.dropdown-menu {
  padding: 8px 0;
  margin-top: 20px;
  border-radius: 8px;
  background-color: var(--bs-white);
  border: 1px solid rgba(38, 171, 163, 0.3);
  -webkit-box-shadow: 0 5px 20px 0 rgba(43, 171, 160, 0.12);
          box-shadow: 0 5px 20px 0 rgba(43, 171, 160, 0.12);
  -webkit-animation: 0.2s ease-in-out 0s normal none 1 running fadeIn;
          animation: 0.2s ease-in-out 0s normal none 1 running fadeIn;
}
.dropdown-menu:before {
  left: 0;
  right: 0;
  top: -20px;
  content: "";
  height: 20px;
  display: block;
  position: absolute;
}
.dropdown-menu > li {
  padding: 0 5px;
}
.dropdown-menu > li:not(:last-child) {
  margin-bottom: 1px;
}
.dropdown-menu > li > a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  padding: 9px 18px;
  position: relative;
  border-radius: 6px;
  white-space: nowrap;
  color: var(--bs-body-color);
}
.dropdown-menu > li:hover > a {
  color: var(--bs-primary);
  background-color: var(--bs-primary-bg-subtle);
}

.dropdown-toggle::after {
  margin: 0;
  border: none;
  line-height: 1;
  content: "\f107";
  font-weight: 400;
  color: var(--bs-body-color);
  font-family: "Font Awesome 6 Pro";
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

p, body{
  font-size: 1.5rem;

}

body, html {overflow-x: hidden !important;}

.pt-1{
  padding-top:1rem;
}
.pt-2{
  padding-top:2rem;
}
.py-1{
  padding-top: 1rem;
  padding-bottom: 1rem;

}
.px-10{
  padding-left: 10rem;
  padding-right: 10rem;
}
.py-5{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pxy-40{
  padding: 4rem;
}
.pxy-60{
  padding: 6rem;
}
.pxy-100{
  padding: 10rem;
}
.py-40{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.px-40{
  padding-left: 4rem;
  padding-right: 4rem;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}

.full-height{
  height: 100vh;
}

.bold{
  font-weight: 700;
}

blockquote {
  margin: 0 0 1rem;
}

/* 1.2 - Reset - End
================================================== */
/* 2.01 - Colors - Start
================================================== */
.bg_primary {
  background-color: var(--bs-primary);
}

.bg_secondary {
  background-color: var(--bs-secondary);
}

.bg_primary_light {
  background-color: var(--bs-primary-bg-subtle);
}
.bg_primary_light[class*=shape] {
  background-color: #C1E3DE;
}

.bg_secondary_light {
  background-color: var(--bs-secondary-bg-subtle);
}
.bg-yellow{
  background: var(--contrast-yellow);
}
.bg-aquagreen{
  
  background: var(--green-aqua);
}
.text-tiffany-blue{
  color: var(--primary-tiffany);
}
.text-primary-blue{
  color: var(--brand-blue);
}
.text-primary-green{
  color: var(--brand-green);
}
.text-white{
  color: #fff;
}
/* 2.01 - Colors - End
================================================== */


.container{
    margin-left: 7em;
    margin-right: 7em;
}

section{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.dr-aj-section{
  background-color: #C6F2F4;
  padding:0 7em;
  height: 100vh;
  display: flex;
  align-items: center;
}

.dr-aj-section-contd{
  background-color: #C6F2F4;
  padding:0 7em;
}

.anim{
  font-size: 4rem;
}

/* Section layouts START */
.section-body-img-left{
  display: flex;
  align-items: center;
  padding: 5rem;
}
.section-item-1{
  text-align: center;
  flex-basis: 30%;
}
.section-item-2{
  flex-basis: 70%;
}

.middle-para{
  align-content: center;
}

.about-paragraph{
  font-size: 1.5rem;
}

.text-center{
  text-align: center;
}

.flex-box{
  display: flex;
  align-items: center;
}


/* Section layouts END */

/* ACCORDION: STARTS */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 10px;
  margin-top: 2rem;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}
/* Accordion ENDS */

.banner-section{
  max-height: 100vh;
  padding-bottom: 5rem;
  
}

svg#banner {
    position: absolute;
    z-index: 0;
    left: -55%;
    top: -8%;
    width: 60%;
}

.content {
    margin: 0 auto;
    text-align: center;
    margin-top: 15%;
    z-index: 1;

}
.content h1 {
    font-size: 3.0em;
    
    color: var(--green-blue);
}

.quote-container img{
  width: 5%;
  height: 5%;
}
.doctor-details{
    flex-direction:column !important; padding-left: 0.5em;
}

.doctor{
    font-size: 1.2em;
    
}

.qualification{
    font-size: 0.8em;
}

.quote-container {
    display: flex;
    width: 100%;
    place-content: start;

    
}

/* .quote-container .avatar {
    width: 180px;
    height: 180px;
    background-image: url('../img/dr-ajinkya-patil-urologist-in-navi-mumbai.png');
    background-size: 40%;
    background-repeat: no-repeat;
    border-radius: 50%;
} */
.quote-container p {
    margin: .3em .5em;
    font-size: .9em;
}
/* .cta {
    margin-top: 3em;
    display: inline-block;
    background: #00E472;
    color: black;
    text-decoration: none;
    padding: .5em 1em;
    border-radius: .2em;
    font-weight: bold;
} */

#cta, #cta2 {
    font-weight: 700;
    overflow: visible;
    cursor: pointer;
  }

  button{
    cursor: pointer;
  }
  .readMoreBtnClass{
   display: inline;
    color: var(--bs-primary);
    animation: 1s linear ease-in;
  }

  .get-in-touch-cta{
    background: radial-gradient(at left top, var(--primary-blue) 0%, var(--secondary-color) 70%);
    /* background: var(--primary-blue); */
    min-height: 300px;
    border-radius: 20px;
    /* animation: bgChange 10s infinite; */
  }
/* 
  @keyframes bgChange{
    from{
      background: radial-gradient(at left top, var(--primary-blue) 0%, var(--secondary-color) 70%);
    }
    to{
      background: radial-gradient(at left top, var(--secondary-color) 0%, var(--primary-blue) 70%);
    }
} */

  /* .icon-left{
    position: absolute;
    left: 1%;
    text-align: left;
    align-items: center;
    justify-content: center;
    transform: scale(2);
  } */
  
  .icon-right{
    position: absolute;
    right: 0%;
    text-align: right;
    transform: scale(2.5);
  }


  /* -------------- HAMBURGER MENU CSS -------------- */

  
.hamburger-menu {
z-index: 1001; /* Ensure this is above the menu overlay */
position: fixed;
top: 0;
right: 0;
/* width: 100%; */
display: flex;
justify-content: flex-end;
padding: 10px;
box-sizing: border-box;
}

.hamburger {
  background: #00cf9e;
  border-radius: 50px;
  padding: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.3s;
}

.hamburger span {
background: #eafff2;
height: 3px;
border-radius: 2px;
transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
transform: translateY(10px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
opacity: 0;
}

.hamburger.open span:nth-child(3) {
transform: translateY(-10px) rotate(-45deg);
}

.menu {
display: none;
flex-direction: column;
align-items: center;
background-color: rgb(215 255 246);
position: fixed;
top: 0;
right: 0;
width: 100%;
max-width: 100%;
height: 100%;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
z-index: 1000; /* Ensure this is below the hamburger menu */
}

.menu.show {
display: flex;
max-height: 100vh; /* Ensure it expands to full height */
}

.menu a {
    color: #2D4191;
    padding: 15px 20px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 700;
}

.menu a:hover {
  background-color: #fff;
}

  /* -------------- HAMBURGER MENU CSS -------------- */

  /* Blogs start */
  .blog_section{
    background: #fff;
  }
  .blog_item {
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: var(--bs-box-shadow);
    box-shadow: var(--bs-box-shadow);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
    background-color: var(--bs-white);
    border-radius: var(--bs-border-radius);
}

.blog_item .blog_image_wrap {
  display: block;
  overflow: hidden;
  position: relative;
}

.blog_item .blog_image_wrap img {
  width: 100%;
  display: block;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}

.blog_item .blog_content {
  z-index: 1;
  position: relative;
  padding: 28px 30px 38px;
}

.blog_item .blog_content {
  z-index: 1;
  position: relative;
  padding: 28px 30px 38px;
}
.blog_item .post_category {
  left: 30px;
  top: -70px;
  position: absolute;
}

.blog_item .item_title {
  font-size: 24px;
  line-height: 30px;
  margin: 16px 0 15px;
}

.blog_item .item_title a {
  color: var(--bs-body-color);
}


.post_category > li {
  margin: 3px;
}
[class*=unordered_list] > li {
  float: left;
  list-style: none;
  display: inline-block;
}
.blog_item .post_category a {
  color: var(--bs-primary);
  background-color: var(--bs-body-bg);
}
.post_category a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  padding: 11px 20px;
  border-radius: 40px;
  color: var(--bs-body-bg);
  background-color: var(--bs-secondary);
}
[class*=unordered_list] {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post_meta > li {
  font-size: 16px;
  line-height: 26px;
  position: relative;
}

.post_meta > li:not(:last-child):before {
  top: 50%;
  right: 0;
  width: 1px;
  content: "";
  height: 22px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--bs-secondary);
}

.post_meta > li:not(:last-child) {
  margin-right: 15px;
  padding-right: 14px;
}
.btn_text{
  font-size: 1.6rem;
  color: var(--brand-blue);
}

.btn_text:hover{
  transition: all 0.2s ease-in;
  color: var(--bs-secondary);
}

.blogs-row{
  display: flex;
  flex-direction: row;
}
.side-col{
  width: 100%;
}
.post_category_list > li:not(:last-child) {
  margin-bottom: 16px;
}

.unordered_list_block > li {
  width: 100%;
  display: block;
}
.unordered_list_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.post_category_list a {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--brand-green);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.post_category_list a:hover {
  color: var(--brand-blue);
}

.btn-link .btn_icon {
  width: 25px;
  height: 25px;
  font-size: 15px;
  margin-left: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color:#fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  background-color: var(--brand-blue);
  border-radius: var(--bs-border-radius-pill);
  -webkit-box-shadow: 0 8px 20px 0 rgba(43, 171, 160, 0.3);
  box-shadow: 0 8px 20px 0 rgba(43, 171, 160, 0.3);
}

.btn-link:hover {
  .btn_icon{
    background-color: var(--brand-green);
  }
  .btn_text{
    color: var(--brand-green);
  }
}
.post_tags > li {
  margin: 5px;
}

.post_tags a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    padding: 11px 20px;
    border-radius: 40px;
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
}

.post_tags a:hover {
    color: var(--bs-white);
    border-color: var(--brand-green);
    background-color: var(--primary-aqua);
}

blockquote {
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  border-radius: var(--bs-border-radius);
  background-color: var(--primary-blue);
}
.quote_icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  margin: 0 30px 0 0;
}
.d-block {
  display: block !important;
}
blockquote span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--bs-dark);
}

.social_links > li {
  padding: 6px;
}

.social_links a {
  z-index: 1;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  color: var(--bs-dark);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary-blue);
}
.social_links a:hover:before {
  transition: 0.1s all ease-in;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
}
.social_links a:before {
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  z-index: -1;
  content: "";
  position: absolute;
  border-radius: 100%;
  -webkit-animation: shareBtnSpin 5000ms infinite linear;
  animation: shareBtnSpin 5000ms infinite linear;
  border: 1px dashed var(--bs-secondary);
}
@keyframes shareBtnSpin{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
}

.unordered_list_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_list.unordered_list_block > li {
  margin-bottom: 16px;
}

.info_list > li {
  font-weight: 600;
  line-height: 21px;
  font-size: var(--bs-body-font-size);
}

.unordered_list_block > li {
  width: 100%;
  display: block;
}

.info_list .info_icon {
  float: left;
  width: 21px;
  margin: 0 8px 0 0;
}

.info_list > li {
  font-weight: 600;
  line-height: 21px;
  font-size: var(--bs-body-font-size);
}

.info_list .info_text {
  display: table;
}


#blog-paper{
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  animation: drawBlogPaper 4s linear forwards;
}
#blog-paper-pencil{
  stroke-dasharray: 820;
  stroke-dashoffset: 0;
  animation: drawBlogPaperPencil 4s linear forwards;
  
}
#blog-paper-outline{
  stroke-dasharray: 910;
  stroke-dashoffset: 0;
  animation: drawBlogPaperOutline 4s linear forwards;
  
}
#blog-lines{
  stroke-dasharray: 260;
  stroke-dashoffset: 0;
  animation: drawBlogLines 4s linear forwards;
  
}

@keyframes drawBlogPaper {
  to {
    stroke-dashoffset: 4000;
  }
}
@keyframes drawBlogPaperPencil {
  to {
    stroke-dashoffset: 1640;
  }
}
@keyframes drawBlogLines {
  to {
    stroke-dashoffset: 1080;
  }
}
@keyframes drawBlogPaperOutline {
  to {
    stroke-dashoffset: 1820;
  }
}



/* Blogs end */

/* Website page- treatment: Start */

ul.unordered-def{
  list-style-type: disc;
  padding-inline-start: 20px;
}

/* Website page- treatment: End */


/* Horizontal START */

.wrapper {
    background: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    /* background: #00e472; */
    overflow-x: hidden;
  }

  svg#services {
    position: absolute;
    /* top: 12em; */
    top: 2em;
    left: 0;
    /* width: 50vw; */
  }
  svg#services .mask {
    width: 0;
  }
  .services-sections {
    display: flex;
    width: 300vw;
  }
  .services-sections .col {
    display: flex;
    gap: 0.2em;
  }
  .services-sections .col p {
    font-size: 1.5rem;
  }
  .services-sections section {
    /* width: 100vw;
    padding: 20vw 10vw; */
    width: 90vw;
    padding: 10vw 5vw;
    
  }
  .services-sections section h3 {
    font-size: 4rem;
    margin: 0;
    color: var(--primary-color);
  }
  .services-sections section p {
    font-size: 1.5rem;
    width: 70vw;
  }
  .services-sections section ul {
    list-style-type: none;
    display: flex;
    gap: 3em;
    width: 100%;
    height: 300px;
    padding: 0;
  }
  .services-sections section ul li {
    background: white;
    border-radius: 0.3em;
    flex-grow: 1;
  }
  .whole-card rect:hover{
    transition: 0.1s;
    fill: #eee;
  }
  
/* Horizontal END */

.section-blue{
    height: 100vh;
}

.heading-common{
    /* margin-top: 3em; */
    font-size: 4rem;
}

/* Drip animation START */
.drip-loader{
    animation:animateDrips 1s infinite;
}

/* Dr Ajinkya Patil */
.dr-ajinkya-patil-box{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 6rem;
}
.main-heading{
  background: linear-gradient(to right, var(--brand-blue) 20%, var(--primary-tiffany) 30%, var(--green-aqua) 70%, var(--brand-green) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    line-height: 1.5;
}
.line-height-1-imp{
  line-height: 1 !important;
}
@keyframes textShine {
  0% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}

.animate-dot-small {
  color: var(--green-blue);
  font-size: 4rem;
  animation-name: dotAnimationSmall;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
@keyframes dotAnimationSmall {
  0% {color: var(--brand-blue); font-size: 4rem;}
  25% {color: var(--primary-tiffany); font-size: 3rem;}
  50% {color: var(--green-aqua); font-size: 2rem;}
  75% {color: var(--primary-aqua); font-size: 3rem;}
  100% {color: var(--brand-green); font-size: 4rem;}
}
@keyframes dotAnimation {
  0% {color: var(--colorPurple); font-size: 8rem;}
  25% {color: var(--colorBlue); font-size: 4rem;}
  50% {color: var(--colorDarkBlue); font-size: 3rem;}
  75% {color: var(--colorLightBlue); font-size: 4rem;}
  100% {color: var(--colorPink); font-size: 8rem;}
}

.light-blue-bg{
  background-color: #d2e8eb;
  border-radius: 20px;
}

.p-5rem{
  padding: 5rem;
}

.dr-aj{

  width: 100%;
  background-color: var(--contrast-yellow);
  border-radius: 20px;
}
.dr-aj-box{
  display: flex;
}
.widgets{
  clear:both; 
  margin-top:5rem;
}
.treatment-gallery-image{
  text-align: center;
  padding-bottom:10rem;
}

.urology-issues-flex{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.btn_hotline .btn_icon i {
  color: var(--brand-green);
  -webkit-animation: phoneRinging 1.5s infinite linear;
  animation: phoneRinging 1.5s infinite linear;
}

.btn_hotline .btn_text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-green);
}
.btn_hotline .btn_icon {
  background: #fff;
  border-radius: 50%;
  padding: 1.4rem;
}

.btn_hotline:hover, .btn_icon:hover{
  .btn_hotline .btn_icon i {
    color: var(--brand-blue);
  }
  .btn_hotline .btn_text {
    color: var(--brand-blue);
  }
}


/* START: Technology slider */
.tech-section{
  background-color: #fff;
  /* padding-top: 2rem;
  padding-bottom: 2rem; */
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  border-radius: 20px;
  display: block;
  width: 100%;
  object-fit: cover;
}
.tech-slider-text{
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  text-align: left;
  line-height: 1.1;
}
.tech-slider-text-dark{
  color: #333;
}


.symptomSlider {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.symptom-slides {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: calc((100% - 30px) / 2) !important;

  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .tech-btn{
  text-align: right;
} */
.more-btn{
  color: #fff;
  font-size: 1.6rem;
  background: var(--brand-green);
  padding: 2rem 5rem;
  border-radius: 30px;
}
.more-btn i{
  color: #fff;
}

.more-btn:hover{
  transition: all 0.3s ease-in;
  background: var(--primary-color);
}

.swiper-pagination-bullet-active{
  width: 3rem;
  background: var(--secondary-color);
}

.swiper-pagination-bullet{
  border-radius: 1rem;
}

.tech-pagination{
  text-align: center;
}
/* END: Technology slider */

/* Our presence: START */
.get-directions{
  color: var(--brand-green);
  font-size: 1.4rem;
}
.symptom-arrow{
  display: flex;
  align-items: center;
}
.direction-arrow{
  fill: var(--brand-green);
}

/* Our presence: END */

/* Facts & Figures : START */
.heading-tiffany-blue{
  color: var(--primary-tiffany);
  font-size: 4rem;
}
.stats{
  margin: 6% 0;
}
.facts-l1 small{
  font-weight: 900;
}
/* .factsSVGPath{
  fill: var(--primary-tiffany);
} */
.factsSVGPath2{
  fill: #F72D40;
}
.factsSVGPath3{
  fill: #FFDE00;
}
.stats:hover{
  .factsSVGPath,.factsSVGPath2,.factsSVGPath3{
    transition: 0.2s all ease-in;
    fill: var(--brand-blue);
  }
  .facts-l1 small{
    transition: 0.2s all ease-in;
    color: var(--primary-tiffany);
    font-weight: 600;
  }
  .side-line:before, .side-line:after{
    transition: 0.2s all ease-in;
    border-bottom: .1em solid var(--brand-blue);
  }
  .facts-row3{
    transition: 0.2s all ease-in;
    color: var(--primary-tiffany);
    font-weight: 900;
  }
  .stetho{
    transition: 0.2s all ease-in;
    fill:#fff;
  }
  .fact-col2, .fact-col3{
    transition: 0.2s all ease-in;
    border-left: 1px solid #eee;
  }
}

.facts{
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}
.facts-row2{
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.facts-row3{
  color: #57cc99;
  font-size: 4rem;
  font-weight: 600;
}
.side-line{
  clear: both;
    display: inline-block;
    padding: 0 5em !important;
    position: relative;

}
.side-line:before, .side-line:after{
  border-bottom: .1em solid #1B2B3B;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 2em;
}
.side-line::before{
  left: 25%;
}
.side-line:after{
  right: 25%;
}
.fact-col1, .fact-col2, .fact-col3{
  text-align: center;
  width: 30%;
}
.fact-col2, .fact-col3{
  display: flex;
  flex-direction: column;
  border-left: 1px solid #C6F2F4;
}
/* Facts & Figures : END */
/* Treatments list section: START */
.treatments-list{
  background: var(--contrast-yellow);
}
/* Treatments list section: END */
  
  /* @@@@@@@ Footer @@@@@@@ */

  .footer{
    background: #defcff;
  }

  .flex-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .flex-container > div{
    flex:1;
    flex-grow:1;
    /* background-color: DodgerBlue; */
    color: #777;
    margin: 5rem 1rem;
    text-align: center;
    font-size: 30px;
  }
  .footer-heading{
    color: #333;
    text-align: left;
    font: var(--font-montessarat);
    font-size: 1.5rem;
    font-weight: bold;
  }

  .footer-li:first-child{
    display: flex;
    /* padding: 1rem; */
    text-align: left;
    line-height: 1.1;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    /* gap:1rem; */
  }
  .footer-li{
    display: flex;
    /* padding: 1rem; */
    text-align: left;
    line-height: 1.1;
    margin-bottom: 1.4rem;
    /* gap:1rem; */
  }
  .f-text{
    font-size: 1.2rem;
  }
  .f-text a:hover{
    transition: 0.4s all ease-in;
    color: var(--colorLightBlue);
  }
  .copyright-text{
    font-size: 1.1rem;
  }
  .icon{
    margin-right: 1rem;
  }
  .f-text i{
    color: #5b77b9;
    font-size: 1.6rem;
  }

  .copyright-text{
    background: #d2e8eb;
    text-align: center;
  }
  /* @@@@@@@ / Footer @@@@@@@ */


  /* Symptoms: Start */
  .common-symptoms-section{
    background: var(--primary-aqua);
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
  .symptoms{
    display: flex;
    flex: 1;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .symptom{

    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 10px;
    width: 33%;
  }

  .symptom-selected{
    width: 40%;
  }
  .symptom-location{
    width: 30%;
  }
  .symptom-arrow{
    fill: rgba(93, 189, 211,1);
  }
  .symptom:hover{
    background: var(--primary-tiffany);
    transition: 0.2s all ease-in;
    
    .symptom-heading h3{
      line-height: 1.1;
      color: #fff;
      transition: 0.2s all ease-in;
    }
    .symptom-description{
      color: #eee;
      transition: 0.2s all ease-in;
    }
    .symptom-arrow{
      transition: 0.2s all ease-in; 
      fill: rgba(255,255,255,1);
    }
    .get-directions{
      transition: 0.2s all ease-in; 
      color: #fff;
    }
    .direction-arrow{
      transition: 0.2s all ease-in;
      fill:rgba(255,255,255,1);
    }
  }

  .symptom-heading h1{
    color: #777;
    font-size: 2.2rem;
    margin: 0;
    line-height: 1.5;
  }
  .symptom-description{
    color: #777;
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  /* SYMPTOMS SLIDER: START */
.mySlides {display: none}

/* Slideshow container */
.slideshow-container {
  /* max-width: 1000px; */
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  bottom: -5rem;
  width: auto;
  padding: 1.6rem;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev{
  right: 6rem;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: var(--brand-blue);
  transition: 0.2s all ease-in;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 8px;
  width: 1rem;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 1rem;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  transition: 0.2s all ease-in;
  background-color: white;
  width: 3rem;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
  /* SYMPTOMS SLIDER: END */

  /* Symptoms: End */


@keyframes animateDrips{
    to{
        transform: translateY(200px);
    }
}
/* Drip animation END */

/* Prostate enlargement animation: Start */
.prostate{
  animation: enlarge 5s infinite;
}

@keyframes enlarge{
  0%{
    transform: scale(1.0);
    transform-origin: center;
  }
  50%{
    transform: scale(1.1);
    transform-origin: center;
  }
  100%{
    transform: scale(1.0);
    transform-origin: center;
  }
}
/* Prostate enlargement animation: End */

#cancer-cells{
  animation: cancerCells 2s infinite;
}

@keyframes cancerCells{
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Infection Animation START */
#infection-svg{
    /* doesn't work in IE/ early Edge */
    animation: animateInfection 5s infinite;
  }
  @keyframes animateInfection{
    to{
        transform: rotate(7deg);
      
    }
  }
/* Infection Animation END */

/* Kidney stones Animation START */
#e-1{
    animation: tilt-shaking 0.2s infinite;
}
@keyframes tilt-shaking {
    0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
  }

  #e-2{
    animation: tilt-shaking2 0.2s infinite;
}
@keyframes tilt-shaking2 {
    0% { transform: translateX(0);}
 25% { transform: translateX(2px); transform: rotate(3deg);  }
 50% { transform: translateX(-3px); transform: rotate(-3deg);  }
 75% { transform: translateX(2px); transform: rotate(3deg); }
 100% { transform: translateX(0); }
  }

  /* #utereus-stone{
    animation: passdownY 2.5s infinite cubic-bezier(1, 0.57, 0.5, 1.64);
  } */
  #utereus-stone{
    animation: passdownX 2.5s infinite cubic-bezier(1, 0.5, 0.51, 1);
  }
  @keyframes passdownX {
    0%{
        transform: translateX(10px);

    }
    40%{
        transform: translateX(30px);
    }
    70%{
          animation-timing-function: cubic-bezier(1, 0.5, 0.57, 1.64);

      }
    
  }
  @keyframes passdownY {
    to{
        animation-timing-function: cubic-bezier(1, 0.5, 0.51, 1);
    transform: translateY(100px);
    }
  }

  
@-webkit-keyframes phoneRinging {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
            transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes phoneRinging {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
            transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* Kidney stones Animation END */

/* About Curology Page: Start */

.hero-svg{
  width: 100%;
}
.hero{
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.hero-content{
  margin-top: 15%;
}
.hero-heading{
  font-size: 6rem;
}

/* About Curology Page: END */


/* Kidney Stones Treatment Page: START */


#clock-fill{
  stroke-dasharray: 71;
  stroke-dashoffset: 0;
  animation: drawClockFill 4s 2 linear forwards;

}
#lhs-line, #rhs-line{
  stroke-dasharray: 21;
  stroke-dashoffset: 0;
  animation: drawClockLines 4s 2 linear forwards;

}
/* #rhs-line{
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  animation: drawKidneyUrethra 4s linear forwards;

} */
#clock-segments{
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  animation: drawClockSegments 4s 2 linear forwards;

}
#word24{
  stroke-dasharray: 70;
  stroke-dashoffset: 0;
  animation: drawWord24 4s 2 linear forwards;

}

@keyframes drawClockFill {
  to {
    stroke-dashoffset: 280;
  }
}
@keyframes drawClockLines {
  to {
    stroke-dashoffset: 210;
  }
}
@keyframes drawClockSegments {
  to {
    stroke-dashoffset: 1820;
  }
}
@keyframes drawWord24 {
  to {
    stroke-dashoffset: 160;
  }
}


.kidneyOutline{
  align-self: end;
}
#kidneyOutline{
  /* scale: 5; */
}

#kidneyUrethra{
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  animation: drawKidneyUrethra 4s linear forwards;
}
#kidneyBeans{
  stroke-dasharray: 820;
  stroke-dashoffset: 0;
  animation: drawkidneyBeans 4s linear forwards;
  
}

@keyframes drawKidneyUrethra {
  to {
    stroke-dashoffset: 1820;
  }
}
@keyframes drawkidneyBeans {
  to {
    stroke-dashoffset: 1640;
  }
}

#stones-left, #stones-right{
  opacity: 0;
  animation: showStones 6s linear forwards;
}
@keyframes showStones {
  10%{
    opacity: 0;
  }
  70%{
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Kidney Stones Treatment Page: END */

/* Prostate Enlargement Treatment Page: START */
.prostateOutline{
  align-self: center;
}
#prostate{
  scale:1;
  transform-origin: center;
  animation: enlargeProstate 4s 2s linear forwards;
}
#bladder{
  opacity: 0;
  animation: showBladder 2s linear forwards;
}

@keyframes showBladder {
  to{
    opacity: 1;
  }
}
@keyframes enlargeProstate {
  to{
    transform-origin: center;
    scale: 1.3;
  }
}

/* Prostate Enlargement Treatment Page: END */

/* Kidney Cancer Treatment Page: START */
#kidneyCancerBean{
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  animation: cancerSignOutlineAnimation 20s linear infinite;
}
#kcSignOutline{
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  animation: cancerSignOutlineAnimation 20s linear infinite;
}

@keyframes cancerSignOutlineAnimation {
  to{
    stroke-dashoffset: 3500;
  }
}

/* Kidney Cancer Treatment Page: END */

/* Prostate Cancer Treatment Page: START */
#pcCancerSign, #bcCancerSign, #tcCancerSign{
  stroke-dasharray: 300;
  stroke-dashoffset: 0;
  animation: pcOutlineAnimation 20s linear infinite;
}

#pcProstateL, #pcProstateR{
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  animation: pcOutlineAnimation 20s linear infinite;
}
/* Prostate Cancer Treatment Page: END */

/* Bladder Cancer Treatment Page: START */
#bcBladder{
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  animation: pcOutlineAnimation 20s linear infinite;
}

/* Prostate Cancer Treatment Page: END */

/* Testicular Cancer Treatment Page: START */

 #tcTesticle1,  #tcTesticle2{
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  animation: pcOutlineAnimation 20s linear infinite;
}

/* Testicular Cancer Treatment Page: END */



@keyframes pcOutlineAnimation{
  to{
    stroke-dashoffset: 3500;
  }
}


/* Prostate Cancer Treatment Page: END */


/* 4.10 - Blog - Start
================================================== */
.blog_item {
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: var(--bs-box-shadow);
          box-shadow: var(--bs-box-shadow);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  background-color: var(--bs-white);
  border-radius: var(--bs-border-radius);
}
.blog_item:not(:last-child) {
  margin-bottom: 60px;
}
.blog_item:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: var(--bs-box-shadow-lg);
          box-shadow: var(--bs-box-shadow-lg);
}
.blog_item .blog_image_wrap {
  display: block;
  overflow: hidden;
  position: relative;
}
.blog_item .blog_image_wrap img {
  width: 100%;
  display: block;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.blog_item .blog_image_wrap:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.blog_item .blog_content {
  z-index: 1;
  position: relative;
  padding: 28px 30px 38px;
}
.blog_item .post_category {
  left: 30px;
  top: -70px;
  position: absolute;
}
.blog_item .post_category a {
  color: var(--bs-primary);
  background-color: var(--bs-white);
}
.blog_item .post_category a:hover {
  color: var(--bs-white);
  background-color: var(--bs-primary);
}
.blog_item .item_title {
  font-size: 24px;
  line-height: 30px;
  margin: 16px 0 15px;
}
.blog_item .item_title a {
  color: var(--bs-dark);
}
.blog_item .item_title a:hover {
  color: var(--bs-primary);
}
.blog_item p {
  margin-bottom: 23px;
}

.blog_item_small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog_item_small .blog_image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  max-width: 90px;
  margin-right: 20px;
}
.blog_item_small .blog_image_wrap {
  display: block;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
}
.blog_item_small .blog_image_wrap img {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.blog_item_small .item_title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.blog_item_small .item_title a {
  color: var(--bs-dark);
}
.blog_item_small .item_title a:hover {
  color: var(--bs-primary);
}
.blog_item_small .post_meta > li {
  font-size: 14px;
  line-height: 24px;
}
.blog_item_small .post_meta > li:not(:last-child) {
  margin-right: 11px;
  padding-right: 10px;
}
.blog_item_small:hover .blog_image_wrap img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.reecommended_post_group > li:not(:last-child) {
  margin-bottom: 30px;
}

.post_meta > li > a , .post_meta > li{
  color: var(--bs-body-color);
}

/* 4.10 - Blog - End
================================================== */



@media only screen and (max-width: 425px) {
  .services-sections section{
    width: 90vw;
    padding: 12vw 2vw;
  }
  .services-sections section p{
    width: 90vw;
  }
  .hero-heading{
    font-size: 4rem;
  }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 668px) {
  .flex-container > div{
    margin: 1rem 1rem;
  }
  .footer-heading{
    text-align: center;
  }
  .icon-right{
    transform: scale(1.1);
  }
  .main-content{
    text-align: left;
  }
  .banner-section{
    height: auto;
    padding-bottom: 2rem;
  }

  .quote-container img{
    width: 15%;
    height: 15%;
  }
  .section-body-img-left{
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .section-item-1{
    flex-basis: 100%;
  }
  .section-item-2{
    flex-basis: 100%;
    font-size: 1.3rem;
  }
  .container{
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .flex-container{
    flex-direction: column;
  }
  .flex-container > div{
    flex:100%;
  }
  .dr-ajinkya-patil-box{
    font-size: 4rem;
  }
  .footer-li{
    text-align: center;
    justify-content: center;
  }

  .symptom{
    width: 82%;
  }
  .symptoms{
    flex-direction: column;
  }

  .facts{
    flex-direction: column;
    margin-bottom: 2rem;
    gap: 2rem;
  }
  .fact-col1, .fact-col2, .fact-col3{
    width: 100%;
    margin-bottom: 1rem;
  }
  .facts-l1 small{
    font-size: 1.5rem;
  }
  .quote-container{
    margin-bottom: 7vh;
    place-content: flex-start;
  }
  .hero{
    flex-direction: column-reverse;
  }
  .hero-content{
    margin-top: 0;
  }
  .hero-heading{
    margin-top: 0;
    font-size: 4rem;
  }
  .hero-svg{
    width: 60%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
}

/* Until Medium devices (landscape tablets, upto 767px) */
@media only screen and (max-width: 767px) {
  .blogs-row{
    flex-direction: column;
  }

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .container{
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .prostateOutline{
    align-self: center;
  }
  .hero-heading{
    font-size: 6rem;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  body {
    font-size: 2em;
    overflow-x: hidden;
  }
  .content {
      text-align: left;
  }

  svg#banner {
      left: unset;
      top: -3%;
      width: 60%;
  }

  .quote-container {
      display: flex;
      place-content: unset;

  }
  .quote-container p {
      margin-top: 0;
  }
  .main-content{
      margin-top: 1.2em;
  }
  
  .col-lg-4 {
    flex: 0 0 auto;
    width: 29%;
    /* width: 33.33333333%; */
  }
  .container{
    margin-left: 5rem;
    margin-right: 5rem;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  svg#banner {
    position: absolute;
    z-index: 0;
    left: unset;
    right: 0;
    top: -3%;
    overflow: hidden;
    width: 60%;
  }
  .hero-svg{
    width: 500px;
  }
  .content h1{
    font-size: 2.4em;
    font-weight: 900;
  }
  .post_meta > li:not(:last-child) {
    margin-right: 12px;
    padding-right: 11px;
  }

  .post_meta > li {
  font-size: 14px;
  line-height: 24px;
  }

  .blog_item .item_title {
  font-size: 20px;
  line-height: 26px;
  margin: 12px 0 10px;
  }
}
