@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --para-color: #989DA0;
    --theme-color: #467787;
    --font-family: 'Poppins';
    --dark-color: #115278;
    --black-color: #000;
    --white-color: #fff;
    --section-color: #32BFE066;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    box-sizing: border-box;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 14px;
}

p {
    font-size: 16px;
}

.btn {
    background: var(--theme-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border: 1px solid var(--theme-color);
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: all 0.5s linear;
    gap: 10px;
}

.btn:hover {
    background: #fff;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}


/* Header CSS START */


header.is-sticky {
    position: fixed;
    inset: 0;
    background-color: var(--white-color);
    z-index: 9999;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(10px); */
    animation: slideDown 0.35s ease-out;
    height: 140px;
}


@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
}


header .marquee-row {
    width: 100%;
    overflow-x: hidden;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

header .marquee-block {
    position: relative;
    display: flex;
    width: 100%;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    justify-content: space-between;
}

header .marquee-item-list {
    display: inline-flex;
    margin: 5px;
}

header .marquee-item-list li {
    width: 100%;
    list-style: none;
    padding-right: 30px;
    font-size: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--para-color);
}

header .marquee1 {
    animation-name: marquee1;
}

header .marquee2 {
    animation-name: marquee2;
}

@keyframes marquee1 {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes marquee2 {
    100% {
        left: 0;
    }

    0% {
        left: -100%;
    }
}

header .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

header .main-header ul.menu-items {
    list-style: none;
    display: flex;
    padding: 0;
    gap: 20px;
}

header .main-header ul.menu-items li {
    font-size: 16px;
}




.btn img {
    width: 19px;
}

.header-btn:hover img {
    transition: all 0.5s ease;
    filter: invert(1);
}

/* Header CSS END */

/* FOOTER CSS START */
.footer {
    background: var(--section-color);
    padding: 60px 0;
    color: var(--para-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr 1fr 0.55fr;
    align-items: baseline;
	gap: 15px;
}

.footer-section {
    flex: 1 1 220px;
    margin: 15px 0;
}

.footer-section h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.7;
    margin: 6px 0;
    width: 100%;
    max-width: 320px;
}

.footer-logo {
    width: 230px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--para-color);
    border-radius: 50%;
    color: var(--para-color);
    text-align: center;
    line-height: 40px;
    transition: all 0.5s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: linear-gradient(90deg, rgba(17, 82, 120, 1) 5%, rgba(50, 191, 224, 1) 75%, rgba(50, 191, 224, 1) 100%);
    color: #fff;
    border-color: transparent;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    margin: 3px 0;
}

.links ul li a {
    text-decoration: none;
    color: var(--para-color);
}

.links ul li a:hover {
    color: var(--theme-color);
}

.footer-bottom {
    border-top: 1px solid #b0ccd2;
    margin-top: 20px;
    padding-top: 15px;
/*     display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; */
}

.footer-bottom p {
    margin: 0;
}

.footer-policy a {
    color: var(--para-color);
    text-decoration: none;
    margin: 0 5px;
}

.footer-policy a:hover {
    color: var(--theme-color);
}

.footer-section.contact a {
    display: flex;
    text-decoration: none;
    color: var(--para-color);
    align-items: flex-start;
}

.footer-section.contact a img {
    margin-top: 3px;
    margin-right: 5px;
}

/* FOOTER CSS END */

/* BANNER CSS START */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero .slide.active {
    opacity: 1;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero .hero-content {
    position: relative;
}

.hero .hero-content h1 {
    font-size: 3rem;
    margin: 0 0 30px;
    font-weight: 700;
}

.hero .hero-content p {
    font-size: 18px;
    margin: 0 0 20px;
}

.hero .hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero .hero-buttons .google-reviews a {
    display: inline-block;
}

/* BANNER CSS END */

/* Services CSS START */
.services {
    text-align: center;
    padding: 60px 0;
}

.services .services-header h2 {
    color: var(--theme-color);
    margin: 0 0 20px;
}

.services .services-header p {
    color: var(--para-color);
    max-width: 500px;
    margin: 0 auto 40px;
}

.services .services-cards {
    display: grid;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
}

.services .service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.services .service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.services .service-title {
    padding: 14px 0px;
    color: var(--theme-color);
    font-weight: 600;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    right: 0;
    left: 0;
    text-align: center;
    background: #ffffffb0;
}

.services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.services .services .services-cards .service-card a {
    text-decoration: none;
    display: block;
}

/* Services CSS END */


/* Our-Mission CSS Start */
.our-mission {
    padding: 60px 0;
    background-color: #e6f7fa;
}

.our-mission .our-mission-header h2 {
    color: var(--theme-color);
    margin: 0 0 10px 0;
}

.our-mission .our-mission-header .subtext {
    color: var(--para-color);
    width: 100%;
    max-width: 500px;
}

.our-mission .swiper {
    width: 100%;
    height: 300px;
    margin-top: 5rem;
    margin-bottom: 15rem;
}

.our-mission .swiper-slide {
    text-align: center;
    font-size: 18px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    width: 100% !important;
    max-width: 470px !important;
}

.our-mission .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-mission .swiper-button-next,
.our-mission .swiper-button-prev {
    color: #feda6a;
}

.our-mission .swiper-pagination-bullet-active {
    background: #feda6a;
}

section.our-mission .swiper-container {
    max-width: calc(100% - 13.5%);
    margin-left: auto !important;
    margin: initial;
    margin-top: 50px;
}

.our-mission .our-mission-card {
    display: flex;
    justify-content: space-between;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    padding: 25px 40px;
    max-width: 470px;
    margin: auto;
    gap: 20px;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 17%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
	height: 283px;
}

.our-mission .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, rgba(17, 82, 120, 1) 5%, rgba(50, 191, 224, 1) 75%, rgba(50, 191, 224, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.our-mission .card-icon img {
    width: 30px;
    height: 30px;
}

.our-mission .card-text {
    flex: 1;
    text-align: left;
}

.our-mission .card-text h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #222;
}

/* .our-mission .card-text p {
    font-size: 14px;
    color: #000;
    margin: 5px 0 10px 0;
    width: 100%;
    max-width: 200px;
} */

.our-mission .card-text ul.service-points li {
   font-size: 14px;
    color: #000;
    margin: 5px 0 10px 0;
    width: 100%;
/*     max-width: 200px; */
}

.our-mission .card-text a {
    position: absolute;
    bottom: 25px;
}

.our-mission .card-image {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    right: 0;
    border: initial;
    height: 100%;
}

.our-mission .card-image img {
    object-position: 50px 75%;
}


.learn-more-btn {
    position: relative;
    z-index: 0;
    display: inline-block;
    line-height: 0;
    color: #000;
    text-decoration: none;
    margin: 30px 0 25px 18px;
    font-size: 16px;
    transition: all 0.5s ease;
	white-space:nowrap;
	display: flex;
	align-items: center;
}

.learn-more-btn span i {
    opacity: 0;
	padding-inline-start: 3px;
}

.learn-more-btn::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30px;
    left: -18px;
    transition: all 0.5s ease;
}

.learn-more-btn:hover::before {
    width: 130px;
}

.learn-more-btn:hover {
    color: white;
}

.learn-more-btn:hover span i {
    opacity: 1;
}

.our-mission-header h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color);
    margin: 0;
}

/* Our-Mission CSS End */

/* About CSS Start */

.about-section {
    padding: 60px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 363px;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    height: 414px;
    object-fit: cover;
    object-position: 0% 100%;
}

/* .about-image .logo-place {
    position: absolute;
    width: 110px;
    height: 130px;
    left: 10px;
    bottom: 0;
} */


.about-image .logo-place {
    position: absolute;
    width: 110px;
    height: 110px;
    left: 10px;
    bottom: 0;
    /* outline: auto; */
    object-fit: contain;
    object-position: center;
}

.about-content {
    max-width: 600px;
}

.section-subtitle {
    color: var(--theme-color);
    margin: 0;
}

.section-title {
    color: var(--theme-color);
    margin: 0 0 20px;
}

.section-description {
    color: var(--para-color);
    margin-bottom: 10px;
}

.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-box h3 {
    color: var(--theme-color);
    font-size: 32px;
    margin: 0;
    display: inline-block;
    line-height: 32px;
}

.stat-box span {
    color: var(--theme-color);
    font-size: 32px;
    margin: 0;
    font-weight: 600;
    line-height: 32px;
}

.stat-box p {
    color: var(--para-color);
    margin: 0;
    font-size: 14px;
}

/* About CSS End */

/* Our Clinic CSS Start */
.clinic-section {
    background: var(--section-color);
    padding: 60px 0;
    text-align: center;
}

.clinic-header h2 {
    color: var(--theme-color);
    margin: 0 0 20px;
}

.clinic-header p {
    color: var(--para-color);
    margin-bottom: 40px;
}

.clinic-section .parent {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 12px;
}

.clinic-section .parent .div1 {
    grid-column: span 8 / span 8;
    grid-row: span 2 / span 2;
}

.clinic-section .parent .div2 {
    grid-column: span 4 / span 4;
    grid-row: span 2 / span 2;
    grid-column-start: 9;
}

.clinic-section .parent .div3 {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
    grid-row-start: 3;
}

.clinic-section .parent .div4 {
    grid-column: span 5 / span 5;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 3;
    position: relative;
}

.clinic-section .parent .div4 img.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
}

.clinic-section .parent .div5 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 10;
    grid-row-start: 3;
}

.clinic-section .parent .div6 {
    grid-column: span 8 / span 8;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 5;
}

.clinic-section .parent .clinic-img img {
    width: 100%;
    height: 100%;
	object-fit: cover !important;
}

/* Our Clinic CSS End */

/* Trust Section CSS Start */
.trust-section {
    padding: 60px 0;
}

.trust-content {
    width: 100%;
    max-width: 50%;
}

.trust-content .sub-title {
    color: var(--theme-color);
    margin: 0;
}

.trust-content h2 {
    color: var(--theme-color);
    margin: 0 0 20px;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.trust-list li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-images {
    position: relative;
    width: 100%;
    max-width: 50%;
}

.trust-images img.main-image {
    width: 100%;
}

.trust-images .symbol {
    position: absolute;
    top: 35px;
    right: 75px;
}

.trust-images .symbol img {
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.trust-row {
    display: flex;
    justify-content: space-between;
}

/* Trust Section CSS End */

/* Testimonial CSS Start */
.testimonial-section {
    padding: 60px 0;
    background-color: #e1e1e133;
}

.testimonial-section .subtitle {
    color: var(--theme-color);
    font-weight: 500;
    margin: 0;
}

.testimonial-section .title {
    color: var(--theme-color);
    margin: 0 0 20px;
}

.testimonial-section .swiper-container {
    width: 100%;
    height: 100%;
}

.testimonial-section .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 65px;
}

.testimonial-section .testimonial-card {
    padding: 50px 24px 10px 24px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.testimonial-section .swiper-wrapper {
    margin: 10px 0;
}

.testimonial-section .profile-img {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-section .youtube-button {
    color: red;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial-section .profile-img a {
    display: inline-block;
}

.testimonial-section .stars i {
    color: hsl(45.65deg 100% 50%);
}

.testimonial-section .testimonial-card p {
    font-size: 12px;
    line-height: 18px;
}

.testimonial-section .profile-img img {
    border-radius: 50%;
	width:120px;
}

/* Testimonial CSS End */

/* Comparision section CSS Start */
.comparison-section {
    padding: 60px 0;
    background-color: var(--section-color);
}

.comparison-section .header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.comparison-section .header p {
    color: var(--theme-color);
    margin: 0;
}

.comparison-section h2 {
    color: var(--theme-color);
    margin: 0;
}

.comparison-section .comparisons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

/* .comparison-section .img-compare-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.comparison-section .img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.comparison-section .resizable {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.comparison-section .resizable img {
    object-fit: cover;
}

.comparison-section .divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 100%;
    background-color: white;
    cursor: ew-resize;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-section .handle {
    background-color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.comparison-section .arrow-left,
.comparison-section .arrow-right {
    font-size: 16px;
    cursor: pointer;
    user-select: none;
} */

/* Comparision section CSS End */

/* Contact-location Section CSS Start */
.contact-location-section {
    padding: 60px 0;
    color: white;
}

.contact-location-section .form-section {
    flex: 1;
    width: 100%;
    max-width: 50%;
}

.contact-location-section .contact-us {
    color: var(--theme-color);
    margin: 0;
}

.contact-location-section h2 {
    margin-top: 0px;
    color: var(--theme-color);
    margin-bottom: 40px;
}

.contact-location-section form {
    margin-top: 20px;
}

.contact-location-section .row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-location-section input,
.contact-location-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-location-section textarea {
    width: 100%;
    resize: none;
}

.contact-location-section .buttons {
    display: flex;
    gap: 60px;
    margin-top: 15px;
}


.contact-location-section .buttons button {
    cursor: pointer;
}

.contact-location-section .map-section {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.contact-location-section .section-row {
    display: flex;
    gap: 20px;
}

.contact-location-section .buttons button.submit {
    border: 0;
    background: white;
}

.contact-location-section .icons-map {
    width: 100%;
    max-width: 50%;
}

section.contact-location-section .social-icons {
    margin-top: 25px;
}

/* Contact-location Section CSS End */


/* Contact form Styling Start */


#appointmentForm p {
    display: flex;
    width: 100%;
/*     gap: 15px; */
	margin: 0;
	margin-block:10px;
}
span.wpcf7-form-control-wrap {
    width: 40%;
}

/* Container */
#appointmentForm {
    max-width: 800px;
    margin: 0 auto;
}

/* Row layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
/*     margin-bottom: 20px; */
}

/* Input fields */
#appointmentForm input[type="text"],
#appointmentForm input[type="email"],
#appointmentForm input[type="date"],
#appointmentForm textarea {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
}

/* Textarea full width */
/* #appointmentForm textarea {
    resize: vertical;
    width:500px;
    min-height: 120px;
} */


.contact-location-section textarea {
     resize: vertical!important;
    width:500px!important;
    min-height: 120px!important;
}

.form-row p {
    width: 100%;
    display: flex;
    gap: 20px;
}


.buttons p {
    display: flex;
    gap: 20px;
}

/* Contact form styling End */


/* Menu CSS Start */

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu>li {
    margin: 0 1rem;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: var(--para-color);
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

section.top-nav {
    display: none;
}

/* Menu CSS end */

/* Dental Specialists CSS Start */
.dental-specialists {
    text-align: center;
    padding: 60px 0px 109px 0;
}

.dental-specialists h2 {
    color: var(--theme-color);
    margin: 0 0 10px 0;
}

.dental-specialists p {
    color: var(--para-color);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.dental-specialists .swiper-slide {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    height: 281px;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.swiper-slide.swiper-slide-active {
    transform: scale(1) !important;
    transition: all 0.5s ease;
}

.dental-specialists .swiper-slide .image {
    line-height: 0;
    height: 100%;
}

.dental-specialists .swiper-slide .image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.dental-specialists .swiper-slide .details {
    padding: 20px;
    text-align: left;
}

.dental-specialists .swiper-slide .details h3 {
    color: var(--theme-color);
    font-size: 20px;
    margin: 0;
}

.dental-specialists .swiper-slide .details .subtitle {
    color: var(--para-color);
    font-size: 12px;
    margin: 0;
}

.dental-specialists .swiper-slide .details p {
    color: var(--black-color);
    font-size: 12px;
    margin: 10px 0 15px 0;
}

.specialists-card {
    display: grid;
    align-items: stretch;
    height: 100%;
    grid-template-columns: 1fr 2fr;
}

.specialists-card .social-icons a {
    width: 25px;
    height: 25px;
}

.dental-specialists .swiper-wrapper {
    margin: 0 0 30px 0 !important;
}



.position-relative {
    position: relative;
}

.whole-pagination-sn {
    max-width: 1125px;
    margin: auto;
    width: 100%;
    position: absolute;
    top: -70px;
    right: 0;
    left: 0;
}

.whole-pagination-sn .pagination-inner-wrap {
    max-width: 150px;
    width: 100%;
    position: absolute;
    margin-left: auto;
    right: 0;
    left: 0;
    top: 0px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: none !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: none !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    font-size: 25px;
    padding: 10px;
    border: 1px solid linear-gradient(90deg, rgba(17, 82, 120, 1) 5%, rgba(50, 191, 224, 1) 75%, rgba(50, 191, 224, 1) 100%) !important;
    background: linear-gradient(90deg, rgba(17, 82, 120, 1) 5%, rgba(50, 191, 224, 1) 75%, rgba(50, 191, 224, 1) 100%) !important;
    border-radius: 30px;
    width: 25px !important;
    height: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    color: var(--theme-color) !important;
    border: 1px solid var(--theme-color) !important;
    background: none !important;
    opacity: 1 !important;
}

section.dental-specialists .whole-pagination-sn {
    top: inherit;
    bottom: -25px;
}

section.dental-specialists .whole-pagination-sn .pagination-inner-wrap {
    margin: auto;
}
/* 
@media (max-width: 1120px) {
    .container {
        padding: 0 15px;
    }

    section.top-nav {
        display: block;
    }

    header .main-header ul.menu-items {
        display: none;
    }
	
	header.is-sticky{
		height:117px;
	}

    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 165px;
        margin-top: 0;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        z-index: 1;
        opacity: 0;
    }

    ul.menu.active {
        opacity: 1;
    }

    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.menu li {
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: var(--theme-color);
        align-items: center;
    }


    ul.menu.active li a {
        text-decoration: none;
        color: var(--white-color);
    }


    header .main-header {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 20px;
    }

    .main-header section.top-nav {
        display: flex;
        justify-content: end;
        padding-right: 15px;
    }


}

@media (max-width: 1024px) {


    section.our-mission .swiper-container {
        max-width: calc(100% - 1.5%);
    }

    .comparison-section .img-compare-container {
        width: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr 0.5fr 1fr 0.55fr;
    }

}


@media (max-width: 768px) {
    section.hero {
        height: 400px;
    }

    .hero .hero-content {
        text-align: center;
    }

    .hero .hero-content h1 {
        margin: 0 0 12px;
    }

    .hero .hero-buttons {
        justify-content: center;
    }

    .services .services-header h2 {
        margin: 0 0 8px;
    }

    .services .services-cards {
        grid-template-columns: 1fr 1fr;
    }

    section.about-section .about-container {
        flex-wrap: wrap;
        width: 100%;
    }

    section.about-section .about-container .about-image {
        width: 100%;
        max-width: 100%;
    }

    section.about-section .about-container .about-image>img:first-child {
        width: 100%;
        max-width: 100%;
    }

    section.about-section .about-container .about-content {
        width: 100%;
        max-width: 100%;
    }

    section.trust-section .trust-row {
        flex-wrap: wrap;
    }

    section.trust-section .trust-row .trust-content,
    section.trust-section .trust-row .trust-images {
        width: 100%;
        max-width: 100%;
    }

    section.trust-section .trust-row .trust-content {
        order: 1;
    }

    .comparison-section .img-compare-container {
        width: 100%;
    }


    h2 {
        line-height: 42px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 620px) {

    .hero .hero-content h1 {
        margin: 0 0 10px;
        font-size: 28px;
    }

    .services .services-cards {
        grid-template-columns: 1fr;
    }

    section.contact-location-section .section-row .form-section {
        max-width: 100%;
    }

    section.contact-location-section .section-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    section.contact-location-section .icons-map {
        max-width: 100%;
    }

    .main-header .header-btn {
        display: none;
    }

    header .main-header {
        gap: 0;
    }

    .main-header section.top-nav {
        padding-right: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    p {
        font-size: 14px !important;
    }

    .btn {
        padding: 16px 16px;
        font-size: 12px;
    }

    h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .services .service-title {
        font-size: 16px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    .about-stats {
        margin-top: 20px;
        gap: 20px;
    }

    .our-mission .our-mission-header .subtext {
        margin: 0 0 20px 0;
    }

    .our-mission .our-mission-header h2 {
        margin: 0 0 8px 0;
    }

    .services .services-header p {
        margin: 0 auto 20px;
    }

    section.our-mission .swiper-container {
        margin-top: 20px;
    }

    .section-title {
        margin: 0 0 8px;
    }

    .section-description {
        margin: 0 0 20px 0;
    }

    .clinic-header h2 {
        margin: 0 0 8px;
    }

    .clinic-header p {
        margin: 0 0 20px 0;
    }

    .trust-images .symbol img {
        width: 60px;
    }

    .trust-images .symbol {
        top: 20px;
        right: 40px;
    }

    .comparison-section h2 {
        margin: 0 0 20px 0;
    }

    .comparison-section .header {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }


    .footer-section {
        margin: 0px 0 20px 0;
    }

    .footer-section h3 {
        margin: 0px;
    }

    .services {
        padding: 30px 0;
    }

    .our-mission {
        padding: 30px 0 73px 0;
    }

    .dental-specialists {
        text-align: center;
        padding: 30px 0px 73px 0;
    }

    .clinic-section {
        padding: 30px 0;
    }

    .about-section {
        padding: 30px 0;
    }

    .trust-section {
        padding: 30px 0;
    }

    .testimonial-section {
        padding: 30px 0 73px 0;
    }

    .testimonial-section .swiper-slide {
        margin-top: 80px;
    }

    .comparison-section {
        padding: 30px 0;
    }

    .contact-location-section {
        padding: 30px 0;
    }

    .footer {
        padding: 30px 0;
    }

    .whole-pagination-sn {
        top: initial;
        bottom: -20px !important;
    }

    .whole-pagination-sn .pagination-inner-wrap {
        margin: 0 auto;
    }

    .dental-specialists .swiper-slide {
        height: 100%;
    }

    .specialists-card {
        grid-template-columns: 1fr;
    }

    .dental-specialists .swiper-slide .image img {
        max-width: 200px;
        height: 200px;
        border-radius: 50%;
    }

    .dental-specialists .swiper-slide .details {
        text-align: center;
    }

    .dental-specialists .social-icons {
        justify-content: center;
    }

    .swiper-wrapper {
        margin: 0 0 20px 0 !important;
    }
	
	
	
	div#appointmentForm .form-row:nth-child(3) span.wpcf7-form-control-wrap {
    width: 90%!important;
}
	
	.contact-location-section textarea{
		width:0!important;
	}
}

@media(max-width: 620px) {
    .hero .hero-buttons {
        flex-direction: column-reverse;
    }
}



@media(max-width:480px){
	.contact-location-section .buttons {
		margin-top: 0;
	}
	
	.comparison-section .comparisons {
    gap: 30px;
}

} */

