/*
Theme Name: Clayton Smiles Dental
Theme URI: https://rainytownmedia.com/
Author: Rainy Town Media
Author URI: https://rainytownmedia.com/
Description: A simple WordPress theme for Clayton Smiles Dental.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clayton-smiles-dental
Tags: dental, clinic, medical, responsive, clean
*/

:root {
  --primary: #51c2e9;
  --primary-dark: #2aa9d4;
  --accent: #9ee8ff;
  --text: #1c2b33;
  --muted: #6b7b83;
  --bg: #f7fcfe;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(40, 110, 140, 0.12);
  --radius: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@font-face {
    font-family: 'Aspekta';
    src: url('fonts/Aspekta-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aspekta';
    src: url('fonts/Aspekta-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aspekta';
    src: url('fonts/Aspekta-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aspekta';
    src: url('fonts/Aspekta-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body {
  margin: 0;
   /**font-family: 'Aspekta', sans-serif !important;**/
   font-family: "Montserrat", sans-serif!important;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.site-container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.branding img {
  width: 220px;
  max-width: 100%;
  background: transparent;
}

.branding-text {
  font-size: 0.95rem;
  opacity: 0.95;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  color: var(--white);
  font-weight: 600;
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.55), transparent 30%),
    linear-gradient(180deg, #dff7ff 0%, #f7fcfe 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-card,
.info-card,
.post-card,
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.button,
.wp-block-button__link,
button,
input[type='submit'] {
  display: inline-block;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.wp-block-button__link:hover,
button:hover,
input[type='submit']:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-panel {
  padding: 2rem;
  background: linear-gradient(180deg, var(--primary), #75d7f6);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel h3 { margin-top: 0; font-size: 1.5rem; }
.hero-panel ul { padding-left: 1.2rem; margin-bottom: 0; }

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.5rem;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.info-grid,
.posts-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card,
.post-card,
.contact-card {
  padding: 1.6rem;
}

.info-card h3,
.post-card h3,
.contact-card h3 {
  margin-top: 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.site-footer {
  background: #15323d;
  color: rgba(255,255,255,0.92);
  padding: 3rem 0 1.4rem;
}

.site-footer a { color: #c8f1ff; }
.site-footer h3, .site-footer h4 { color: var(--white); margin-top: 0; }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
}

.content-area {
  padding: 3rem 0;
}

.entry-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.entry-title { margin-top: 0; }

input, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #d6e7ef;
  border-radius: 12px;
  font: inherit;
}

textarea { min-height: 140px; }

label { font-weight: 700; display: block; margin-bottom: 0.4rem; }
.form-group { margin-bottom: 1rem; }

.screen-reader-text {
  position: absolute;
  left: -9999px;
}
/***header***/
.topbar {
background: #512F22;
    font-size: 14px;
}

.topbar-content a {
    color: #fff;
    text-decoration: none;
    margin-left: 18px;
}

.topbar-content i {
    margin-right: 6px;
}
.topbar-content p{
	display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;	
	font-size: 14px;
}
.main-navbar {
    background: #30C9F2;
}

.navbar-brand img {
    max-height: 56px;
    width: auto;
}

.main-navbar .nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.main-navbar .nav-link:hover {
    color: #f5f5f5;
}
.main-navbar #mainNavbar a{
   color: #fff;
    font-size: 16px;
	text-decoration:none;
	padding:0px 15px;
}
.book-btn{
    background: #512F22;
    padding: 8px 25px;
    border-radius: 40px;
}

.book-btn:hover {
    background: #6f4636;
}

.navbar-toggler {
    border-color: rgba(255,255,255,.35);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
/***Homepage***/

.hero-section {
    background-color: #F5E9D8 !important;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
}

.hero-title {
    font-size: 62px;
    line-height: 1;
    font-weight: 500;
    color: #000;
    max-width: 600px;
}
.hero-title-divider {
    width: 200px;
    height: 5px;
    background: linear-gradient(90deg, #51c2e9, #aee6fb);
    margin: 16px 0;
    
    transform: scaleX(0);
    transform-origin: center;
    animation: growLine 0.8s ease forwards;
}

@keyframes growLine {
    to {
        transform: scaleX(1);
    }
}
.hero-description{
	    font-size: 22px;
    padding: 10px 0px;
}
.hero-btn {
    background-color: #E76F2E;
    color: #fff;
    border-radius: 50px;
    padding: 11px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background-color: #42b4df;
    color: #fff;
	 text-decoration: none !important;
}

.hero-image-wrap {
    min-height: 500px;
}

.hero-image-wrap img {
    object-fit: cover;
	height:650px;
}

.icon-list-section {
    background: #57c3eb;
    padding: 30px 20px;
}

.icon-image img {
    object-fit: contain;
}

.icon-label {
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    max-width: 155px;
}

/** our services****/
.our-services-section {
    padding: 80px 0;
	
}

.our-services-section .section-title {
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
}
.section-title-divider {
   width: 200px;
    height: 5px;
    background: linear-gradient(90deg, #51c2e9, #aee6fb);
    margin: 25px auto;
    transform: scaleX(0);
    transform-origin: center;
    animation: growLine 0.8s ease forwards;
}
.service-box {
background: #30C9F2;
    padding: 32px 28px 80px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;

}


.service-title {
 font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}
.service-icon i {
    padding: 20px;

}
.service-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.6);
    margin-bottom: 18px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 30px;
}

.service-btn {
    display: inline-block;
    align-self: flex-start;
    background: #512F22;
    color: #fff;
    padding: 10px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none !important;
    position: absolute;
    bottom: 25px;
}

.service-btn:hover {
    background: #442116;
    color: #fff;
}


/** about us***/
.about-us-section {
   background: #30C9F2;
    border-top-right-radius: 150px;
}

.about-us-section .about-content {
     height: 100%;
    padding: 40px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-us-section .about-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 0px;
    color: #fff;
}

.about-us-section .about-description {
      font-size: 16px;
    line-height: 1.7;
    color: #fff;
    max-width: 520px;
	 font-weight: 400;
}

.about-us-section .about-description p {
    margin-bottom: 18px;
}

.about-us-section .about-image {
    height: 100%;
    min-height: 350px;
}

.about-us-section .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	border-top-right-radius: 150px;
	border-bottom-left-radius: 150px;
}
/***why-choose**/

.why-choose-section {
    padding: 80px 0;
	    background: #F5E9D8;
}
.why-choose-section .container{
	max-width:1600px !important;
}
.why-choose-section .section-title {
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
}

.why-box {
    margin: 0 auto;
    padding: 20px 20px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border: 1px solid #4f2f22;
        background: #F5E9D8;
    height: 100%;
}
.why-box .col-12.col-md-6{
	margin-top:0px;
}
.why-number {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #512F22;
}

.why-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 22px;
}

.why-description {
   font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-weight: 400;
}
/****brown_banner****/
.brown-banner {
    background:#512F22;
    padding: 70px 20px;
    text-align: center;
}

.brown-banner .banner-title {
    color: #fff;
    font-size: 46px;
    font-weight: 500;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.brown-banner .banner-subtitle {
    color: #fff;
    font-size: 32px;
    max-width: 1200px;
    margin: 0 auto 30px;
    line-height: 1.3;
    font-weight: 400;
}

.brown-banner .banner-btn {
    display: inline-block;
    background: #30C9F2;
    color: #fff;
    padding: 11px 45px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.brown-banner .banner-btn:hover {
    background: #3bb3d9;
    color: #fff;
}
/****blue-banner****/
.blue-banner {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.blue-banner .blue-banner-title {
    max-width: 1200px;
    margin: 0 auto;
    color: #30C9F2;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
}
/****client-success-stories****/
.client-success-stories {
    padding: 80px 0;
}

.client-success-stories .client-subtitle {
font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #30C9F2;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.client-success-stories .client-title {
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin-bottom: 50px;
}

.testimonial-card {
    border: 2px solid #30C9F2;
        border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
	padding:32px 20px;
	background: rgba(219, 235, 254, 0.2);
    max-width: 390px;
    margin: 0 auto;
}

.testimonial-thumb {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 4px;
}

.testimonial-position {
    font-size: 18px;
    color: #1E1E1E99;
    margin-bottom: 18px;
	  font-weight: 400;
}

.testimonial-stars {
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 1;
}

.testimonial-stars .star {
    display: inline-block;
    margin: 0 2px;
}

.testimonial-stars .star.filled {
    color: #30C9F2;
}

.testimonial-stars .star.empty {
    color: #d9d9d9;
}

.testimonial-description {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(30, 30, 30, 1);
    font-weight: 400;
}
/**welcome section***/
.welcome-section {
    background: #30C9F2;
	    border-top-right-radius: 150px;
}

.welcome-section .welcome-content {
      height: 100%;
    padding: 60px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto;
}

.welcome-section .welcome-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 0px;
    color: #fff;
    max-width: 800px;
}

.welcome-section .welcome-description {
font-size: 16px;
    line-height: 1.7;
    color: #fff;
    max-width: 520px;
    font-weight: 400;
	margin-bottom: 25px;
}

.welcome-section .welcome-description p {
    margin-bottom: 16px;
}

.welcome-section .welcome-btn {
display: inline-block;
    align-self: flex-start;
        background: #E76F2E;
    color: #fff;
    padding: 10px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none !important;
}

.welcome-section .welcome-btn:hover {
    color: #fff;
    background: #472216;
}

.welcome-section .welcome-image {
    height: 100%;
    min-height: 380px;
}

.welcome-section .welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	    border-top-right-radius: 150px;
		    border-bottom-left-radius: 150px;
}
/******patient-experience****/
.patient-experience-section {
    padding: 80px 0 70px;
	background: #F5E9D8;
}

.patient-experience-section .patient-experience-title {
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
}

.patient-experience-list {
    padding-right: 30px;
    padding-left: 20px;
    padding-top: 40px;
    max-width: 900px;
    margin: 0 auto;

}

.experience-item {
    margin-bottom: 34px;
    display: flex;
    gap: 20px;
    align-content: flex-start;
    align-items: flex-start;
}

.experience-number {
line-height: 1;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    width: 40px;
    height: 40px;
    background: #512F22;
    border: 1px solid #512F22;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.experience-item-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.experience-item-description {
font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
    max-width: 765px;
}


.patient-experience-image {
    height: 100%;
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: center;
}

.patient-experience-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
/****appointment_banner**/
.appointment-banner {
    padding: 70px 20px;
    text-align: center;
	background:#30C9F2;
}

.appointment-banner .appointment-title {
    max-width: 1200px;
    color: #fff;
    font-size: 56px;
    line-height: 75px;
    font-weight: 500;
    margin: 0 auto 40px;

}

.appointment-banner .appointment-btn {
	display: inline-block;
    align-self: flex-start;
    background: #E76F2E;
    color: #fff;
    padding: 10px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none !important;
}

.appointment-banner .appointment-btn:hover {
    background: #472216;
    color: #fff;
}
/***location****/
.location-section {
    padding: 70px 0;
	    background: #F5E9D8;
}

.location-section .location-title {
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin-bottom: 50px;
}

.location-section .location-map {
    max-width: 1055px;
    margin: 0 auto 40px;
}

.location-section .location-map iframe {
    width: 100%;
    height: 495px;
    border: 0;
    display: block;
}

.location-section .location-details {
    max-width: 1055px;
    margin: 0 auto;
    color: #111;
}

.location-section .location-details h3{
	   font-size: 54px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 18px;
    color: #000;
}
.location-section .location-details h4 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 18px;
     color: #000;
}
.location-section .location-details p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom:30px;
     color: #000;
}
/****bottom_blue_banner*****/
.bottom_blue_banner {
	background: #30C9F2;
	padding: 70px 0;
}

.bottom_blue_banner-title h2{
	   font-size: 55px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 18px;
	color: #fff;
}

.bottom_blue_banner-title p {
	color: #fff;
	margin-bottom: 40px;
}
.bottom_blue_banner-title h3{
   font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 18px;
    color: #fff;
}
.bottom_blue_banner-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 25px;
}

.bottom_blue_banner-btn {
display: inline-block;
    align-self: flex-start;
    background: #512F22;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none !important;
    width: 240px;
}

.bottom_blue_banner-btn:hover {
  background: #472216;
    color: #fff;
}

/**** FOOTER****/
.site-footer {
    color: #fff;
	    background: #5b2f1f;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}
.site-footer .btn.footer-btn{
	    display: inline-block;
    background: #30C9F2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
	width: 240px;
}
.site-footer .btn.footer-btn:hover {
    background: #3bb3d9;
    color: #fff;
}
.site-footer a:hover {
    color: #7ed8ff;
}

.footer-btn {
    background-color: #4fc3f7;
    color: #fff;
    border: none;
    min-width: 160px;
    text-align: center;
    font-weight: 500;
}

.footer-btn:hover {
    background-color: #35b6f0;
    color: #fff;
}

.footer-logo img {
    height: auto;
}

.footer-company-details,
.footer-office-hours,
.footer-menu {
    font-size: 16px;
    line-height: 1.6;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu .menu-item a {
    color: #fff;
}
.footer-menu li.book-btn {
    background: transparent;
    padding: 0px 0px;
    border-radius: 0px;
}
/*******Our Services******/
.services-top-banner {
    background-color: #5a301f;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-top-banner h1 {
    color: #fff;
    font-size: 56px;
    line-height: 75px;
    font-weight: 500;
}

.services-top-banner .desc {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
	max-width:600px;
}


.right-image-section {
    padding-top:60px;
    background-color: #fff;
}

.right-image-content {
    padding: 40px 20px;
}

.right-image-section .section-title {
font-size: 48px;
    line-height: 1;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
    max-width: 700px;
}

.right-image-section .content-box {
    padding-right: 20px;
}

.right-image-section .content-title {
      font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}

.right-image-section .content-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
	 font-weight: 00;
}

.right-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*****left image**/
.left-image-section {
  
}
.left-image-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
.left-image-wrapper {
    height: 100%;
    min-height: 380px;
}

.left-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-image-content {
     padding: 60px 70px 60px 100px;
    max-width: 880px;

}

.left-image-section .section-title {
font-size: 48px;
    line-height: 1;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}

.left-image-section .section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

.left-image-section .section-description h1,
.left-image-section .section-description h2,
.left-image-section .section-description h3,
.left-image-section .section-description h4,
.left-image-section .section-description h5,
.left-image-section .section-description h6 {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 24px;

}

.left-image-section .section-description p {
    margin-bottom: 10px;
}

.left-image-section .section-description ul {
    margin: 0;
    padding-left: 18px;
}

.left-image-section .section-description li {
    margin-bottom: 4px;
}
/****blue banner***/
.blue-banner-section {
    background-color: #30C9F2; /* adjust if needed */
    padding: 60px 20px;
    color: #fff;
}

.blue-banner-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
}

.blue-banner-description {
     font-size: 24px;
    line-height: 1.2;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
}

.blue-banner-description p {
    margin: 0;
}
.white-banner-section {
    padding: 80px 20px;
}

.white-banner-title {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.white-banner-description {
    font-size: 24px;
    line-height: 1.2;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
    color: #000;
    padding-bottom: 40px;
}

.white-banner-description p {
    margin: 0;
}

.white-banner-btn a{
	    display: inline-block;
    background: #30C9F2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
	width: 240px;
}
.white-banner-btn a:hover {
    background: #3bb3d9;
    color: #fff;
}

.entry-card .with_frm_style .frm_submit button{
	display: inline-block;
    background: #30C9F2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    width: 240px;
    border-width: 0px;
}
.entry-card .with_frm_style .frm_submit button:hover {
    background: #3bb3d9;
    color: #fff;
}


.about-members-section {
    background-image: url('YOUR-BACKGROUND-IMAGE.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.member-row {
    padding: 50px 0;
    position: relative;
}

.member-row-odd {
    color: #000;
}

.member-row-even {
    background: #ffffff;

}

.member-content {
    margin: 0 auto;
}

.member-name {
    font-size: 36px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 10px;
}

.member-position {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 14px;
}

.member-description {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.member-description p {

}

.member-image-wrap {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border: 3px solid rgb(79 202 242);
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.member-row-odd .member-image-wrap {
    color: #fff;
}

.member-row-even .member-image-wrap {
    
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-left {
    margin-left: 0;
    margin-right: auto;
}

.image-right {
    margin-left: auto;
    margin-right: 0;
}
.v-mobile{
		display:none;
	}
@media (max-width: 900px) {
  .hero-grid,
  .contact-wrap,
  .info-grid,
  .posts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }
}
@media (max-width: 991px) {
	.v-desktop{
		display:none;
	}
	.v-mobile{
		display:block;
	}
	.hero-title {
		font-size: 30px;
	}
	.hero-description {
		    font-size: 18px;
	}
	.hero-image-wrap img {
		height: auto;
	}
	.hero-image-wrap {
		min-height: auto;
	}
	.hero-title-divider {
		margin:0 auto;
	}
	.hero-content {
		padding: 20px !important;
		text-align:center;
	}
	.hero-btn {
		font-size: 14px;
	}
	.icon-list-section .col-6 {
		width: 33%;
	}
	.icon-label {
		line-height: 1.2;
		font-size: 14px;
		max-width: 120px;
	}
	.icon-image img {
		width: 50px;
		margin-bottom: 10px;
	}
	.our-services-section .section-title {
		font-size: 30px;
        margin-bottom: 0px;
	}
	.our-services-section {
		padding: 60px 0;
	}
	.our-services-section .col-md-6.col-lg-4{
		width:50%;
	}
	.service-box{
		        padding: 25px 25px 65px 25px;
        text-align: center;
        min-height: auto;
	}
	.service-title {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.service-description {
		font-size: 16px;
	}
	.service-btn {
		        padding: 10px;
        font-size: 14px;
        width: 75%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
	}
	.about-us-section .about-title{
		        text-align: center;
        font-size: 30px;
        padding-bottom: 10px;
	}
	.about-us-section .about-image img {
		border-top-right-radius: 50px;
		border-bottom-left-radius: 50px;
	}
	.about-us-section .about-description {
	font-size: 16px;
        max-width: 100%;
        text-align: center;
        padding-top: 20px;
	}
	.about-us-section .about-content {
		padding: 20px 20px;
	}
	.why-choose-section .section-title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.why-choose-section {
		padding: 40px 0;
	}
	.why-choose-section .col-md-6.col-lg-3{
		margin-top:20px;
	}
	.why-number {
		font-size: 35px;
		text-align: center;
	}
	.why-title {
		font-size: 24px;
		text-align: center;
	}
	.why-box {
		max-width: 600px;
		margin: 0 auto;
	}
	.why-title br{
		display:none;
	}
	.why-description {
		font-size: 16px;
		text-align: center;
	}
	.brown-banner .banner-title {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.brown-banner .banner-subtitle {
		font-size: 18px;
	}
	.brown-banner .banner-btn{
		font-size: 14px;
	}
	.brown-banner {
		padding: 40px 20px;
	}
	.blue-banner .blue-banner-title {
		font-size: 18px;
	}
	.testimonial-description {
		font-size: 16px;
	}
	.blue-banner {
		padding: 40px 20px;
	}
	.client-success-stories .client-title {
		font-size: 30px;
	}
	.client-success-stories {
		padding: 40px 0;
	}
	.welcome-section .welcome-title {
		font-size: 30px;
        text-align: center;
        max-width: 100%;
        width: 100%;
		    padding-bottom: 15px;

	}
	.welcome-section .welcome-image img {
		border-top-right-radius: 50px;
		border-bottom-left-radius: 50px;
	}
	.welcome-section .welcome-description {
		        font-size: 16px;
        max-width: 100%;
        text-align: center;
        margin-bottom: 15px;
		    padding-top: 20px;
	}
	.welcome-section .welcome-content {
		padding: 40px 40px;
		text-align: center;
		
	}
	.welcome-section .welcome-btn{
		        font-size: 12px;
        margin: 0 auto;
	}
	.patient-experience-section {
		padding: 0px 0 0px;
	}
	.patient-experience-section .col-12.col-lg-5{
		padding-right:0px;
		padding-left:0px;
	}
	.patient-experience-section .d-flex{
		display:block !important;
	}
	.patient-experience-section .patient-experience-title {
		font-size: 30px;
		margin-bottom: 0px;
		padding-top: 40px;
	}
	
	.patient-experience-image img {
		max-width: 100%;
		height: auto;
		object-fit: cover;
		width: 100%;
	}
	.experience-number {
		text-align: center;
        margin-bottom: 20px;
	}
	.experience-item{
	    display: block;
    text-align: center;
	}
	.experience-item-title {
		font-size: 24px;
		text-align: center;
	}
	.experience-item-description{
		font-size: 16px;
        text-align: center;
	}
	.appointment-banner .appointment-title {
		font-size: 30px;
        line-height: 1.2;
	}
	.appointment-banner {
		padding: 40px 20px;
	}
	.appointment-banner .appointment-btn{
		font-size: 14px;
	}
	.location-section .location-title {
		font-size: 30px;
	}
	.location-section {
		padding: 40px 0;
	}
	.location-section .container{
        max-width: 100%;
    }
	.location-section .location-details h3 {
		font-size: 24px;
		text-align: center;
	}
	.location-section .location-details {
		text-align: center;
	}
	.bottom_blue_banner-title h2 {
		font-size: 30px;
	}
	.bottom_blue_banner-title h3 {
		font-size: 20px;
	}
	.bottom_blue_banner-btn {
        font-size: 12px;
        width: 180px;
    }
	.bottom_blue_banner {
		padding: 40px 0;
	}
	.footer-logo img {
		height: auto;
		width: 245px;
		margin: 0 auto;
	}
	.site-footer .btn.footer-btn{
		font-size: 12px;
    width: 180px;
	}
	.footer-buttons.d-flex {
		        align-items: center;
        justify-content: center;
        padding: 0px 0px !important;
		        flex-direction: row !important;
	}
	.site-footer{
		padding: 40px 0px !important;
	}
	.navbar-brand{
		display:none;
	}
	.navbar.main-navbar{
		        padding-top: 20px !important;
        padding-bottom: 20px !important;
        width: 100%;
	}
	.navbar.main-navbar img{
		width: 180px;
	}
	.navbar-toggler {
		border: 0px !important;
		font-size: 24px !important;
	}
	.navbar-collapse {
		padding: 20px;
		text-align: center;
	}
	.navbar-collapse li{
	    margin-bottom: 15px;
	}
	.book-btn{
		    width: 200px;
    margin: 0 auto;
	}



	.services-top-banner h1 {
		font-size: 30px;
		  margin-bottom: 0rem !important;
	}
	.services-top-banner.py-5{
		padding:40px 20px !important;
		    min-height: auto;
	}
	.right-image-section .section-title {
		font-size: 30px;
		text-align: center;
		  

	}
	.right-image-section .content-title {
		font-size: 22px;
		text-align: center;
	}
	.right-image-section{
		padding-top:0px;
	}
	.right-image-section .container-fluid{
		padding-right:0px;
    padding-left: 0px;
	}
	.right-image-section .content-description {
		font-size: 16px;
		text-align: center;
	}
	.left-image-content {
		padding: 40px 20px;
	}
	.left-image-section .section-title {
		font-size: 30px;
		text-align: center;
	}
	.left-image-section .section-description h1, .left-image-section .section-description h2, .left-image-section .section-description h3, .left-image-section .section-description h4, .left-image-section .section-description h5, .left-image-section .section-description h6 {
		font-size: 22px;
		text-align: center;
	}
	.left-image-section .section-description ul {
		        max-width: 340px;
        margin: 0 auto;
        font-size: 16px;
	}
	.blue-banner-title {
		font-size: 30px;
	}
	.blue-banner-section {
		padding: 40px 20px;
	}
	.blue-banner-description {
		font-size: 22px;
	}
	.white-banner-title {
		font-size: 30px;
	}
	.white-banner-description{
		font-size: 22px;
	}
	.white-banner-btn a{
		font-size: 12px;
	}
	.white-banner-section{
		    padding: 40px 20px;
	}
	.member-image-wrap {
		margin: 0 auto !important;
		    width: 200px;
		height: 200px;
	}
	.member-name {
		font-size: 30px;
	}
	.member-description {
		font-size: 16px;
		font-weight: 400;
	}
	.member-position {
		font-size: 20px;
	}
	
}
@media (max-width: 767px) {
	    .service-description {
        display: none;
    }
	.site-footer .col-12.d-flex{
		display:block !important;
	}
	.footer-company-details, .footer-office-hours, .footer-menu {
		font-size: 14px;
		line-height: 1.6;
		text-align: center;
		padding-bottom: 5px;
	}
	.social_media .d-flex{
		margin:0 auto;
		padding-top:40px;
	}
	.social_media .text-white{
		width: 100%;
        text-align: center;
        font-size: 12px;
	}
	.topbar-content p{
		display: block !important;
		font-size:10px;
		text-align:left;
	}
	.topbar-content a {
		float:right;
	}
	.topbar-content p br{
	    display: none;
	}
}