@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --white: #FFFFFF;
    --black: #000000;
    --primary: #106c5f;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: var(--white);
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

/*.preLoader :is(img, video) {*/
/*    width: 500px;*/
/*}*/
.preLoader :is(img, video) {
    width: 100%;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* loader */


/* btn css */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1em 2.125em;
    border-radius: 1.875rem;
    line-height: normal;
}

.themeBtn:hover {
    color: var(--white);
    background-color: var(--black);
    animation: tada 1.75s infinite;
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

/* btn css */


/* navigation css */

header {
    position: relative;
    z-index: 111;
    width: 100%;
    padding: 0;
    background: #ecd7bc;
    transition: 0.3s ease-in-out;
}

.top-header {
    background-color: #106c5f;
    padding: 10px 0;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 3.375rem;
}

.top-nav a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
}

.top-nav a p {
    margin: 0;
    color: var(--white);
}

.top-nav a:hover {
    color: var(--black);
}

.top-header .btn:focus {
    box-shadow: none !important;
}

.dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    border: 0;
    vertical-align: middle;
    /* margin-left: 0.35em; */
    color: var(--white);
}

.dropdown .dropdown-menu {
    border: 0;
    border-radius: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
    padding: 0;
    transform: translateY(40%);
    opacity: 0;
    transition: 0.5s ease;
}

.dropdown .dropdown-menu.show {
    opacity: 1;
    transform: translateY(30%) !important;
}

.dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 1rem;
}

.navbar-brand {
    width: 250px;
    padding: 0;
    margin: 0;
    height: 70px;
}
.header-main {
  height: 117px;
}
.navbar-brand > img {
  width: 250px;
  height: 114px;
  object-fit: contain;
}

.navbar-collapse {
    margin-left: 0;
}

.navbar-nav {
    align-items: center;
    gap: 1rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #000;
    text-transform: capitalize;
    padding: 0 0;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}

/* .navbar-nav .nav-item .nav-link::after {
	content: "";
	width: 0;
	height: 2px;
	background-color: var(--primary);
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 300ms ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after {
	width: 100%;
	right: auto;
	left: 0;
} */

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.nav-option {
    margin-left: 0;
}

.nav-option .themeBtn {
    padding: 0.65em 1.25rem;
    white-space: nowrap;
}

.nav-item .dropdown-toggle::after {
    color: var(--primary);
}

.nav-item.dropdown .dropdown-menu {
    transform: translateY(0%);
    opacity: 0;
    transition: 3s ease;
    z-index: 99;
}

.nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0%) !important;
}

.nav-item.dropdown .dropdown-menu.aboutmenu {
    height: 450px;
    overflow: auto;
}

/* navigation css */


/* slider css */


.main-slider {
    background: url('https://testv57.demowebsitelinks.com/RobinCaseyWP/wp-content/uploads/2024/08/banner-R4-asdsa.png') center center/cover no-repeat;
    height: 1000px;
    overflow: hidden;
}
/*.main-slider {*/
/*    background: url('https://testv57.demowebsitelinks.com/RobinCaseyWP/wp-content/uploads/2024/07/Banner-Design.jpg-4.jpg') bottom center/cover no-repeat;*/
/*    height: 1020px;*/
/*    overflow: hidden;*/
/*}*/

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.heroText h1 {
    margin: 0;
    color: var(--white);
    font-size: 5.3125rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.animation-box {
    margin: -2.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.animation-box span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

.animation-box span:nth-child(1) {
    transform: rotate(0deg);
}

.animation-box span:nth-child(2) {
    transform: rotate(90deg);
    right: -7%;
    left: auto;
    width: 70%;
}

.animation-box span:nth-child(3) {
    transform: rotate(180deg);
}

.animation-box span:nth-child(4) {
    transform: rotate(270deg);
    left: -6.9%;
    width: 70%;
}

.animation-box span:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--white);
    animation: animate 9s linear infinite;
    transform: scaleX(0)
}

.animation-box span:nth-child(2)::before,
.animation-box span:nth-child(4)::before {
    animation-delay: 4s;
}

@keyframes animate {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    50.1% {
        transform: scaleX(1);
        transform-origin: right;

    }

    100% {
        transform: scaleX(0);
        transform-origin: right;

    }
}

/* slider css */


/* GLOBAL CSS */

.heading {
    font-size: 3.625rem;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.sub-title {
    font-size: 1.5625rem;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
}

.obj {
    display: block;
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background-color: #EAF8F7;
    position: absolute;
    z-index: -1;
    animation: obj-ani 5s infinite alternate-reverse linear;
}

@keyframes obj-ani {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0.5;
    }
}

.imgwraper {
    position: relative;
    z-index: 1;
}

.imgwraper .obj1 {
    top: -4rem;
    left: -4rem;
}

.imgwraper .obj2 {
    bottom: -4rem;
    right: -2.5rem;
}

/* !@GLOBAL CSS */


/* ABOUT SECTION */

.about-section {
    padding-top: 5.625rem;
    padding-bottom: 0;
}

.about-img {
    position: relative;
    padding-top: 1.25rem;
    z-index: 1;
}

.about-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1.25rem;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: -1;
}


.about-text2 p,
.about-section p {
    font-size: 1.125rem;
    line-height: 2.17;
    margin-top: 0.5rem;
}

.about-section .themeBtn {
    margin-top: 0.5rem;
}

/* !@ABOUT SECTION */


/* SERVICES SECTION */

/*.services-section {*/
/*    background: url('../images/services-bg.webp') center/cover;*/
/*    padding: 14rem 0 16.25rem;*/
/*}*/
.services-section {
    background: url('https://testv57.demowebsitelinks.com/RobinCaseyWP/wp-content/uploads/2024/08/Servixc-1.png') center/cover;
    padding: 14rem 0 16.25rem;
}

.services-card {
    text-align: center;
    margin-top: 1.625rem;
}

.services-card h4 {
    text-transform: uppercase;
    font-size: 1.75rem;
    margin-top: 1.875rem;
    margin-bottom: 1rem;
    color: var(--white);
}
.services-card p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center !important;
    padding: 0 20px;
}

.services-card a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline !important;
    font-size: 24px !important;
}

/* !@SERVICES SECTION */

.offer-section {
    padding: 1.875rem 0 7.25rem;
}

.offer-section figure {
    max-width: 525px;
    border-radius: 10px;
    overflow: hidden;
}


.offerz-content {
    margin: 0 -4rem 0 -1rem;
}

.icon-box {
    background-color: var(--white);
    border: 3px dashed var(--primary);
    border-radius: 15px;
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.icon-box span {
    font-size: 60px;
    font-weight: 500;
    line-height: 1
}

.icon-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.27;
    color: var(--black);
    text-align: center;
}

.arrow-icon {
    margin-top: -1.75rem;
    transform-origin: top right;
    animation: arrow-icon 2s infinite alternate;
}

@keyframes arrow-icon {
    0% {
        transform: rotate(-10deg) translateX(0);
    }

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

}

.offer-content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.offer-content p {
    font-size: 1.125rem;
}

.video-section {
    padding: 3.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-section .obj {
    top: -1rem;
    right: 2.5rem;
}

.video-section .heading {
    font-size: 2.875rem;
    font-weight: 500;
    text-transform: capitalize;
    writing-mode: tb;
    transform: scale(-1);
    margin: 1.125rem;
}

.video-section figure {
    position: relative;
    border-radius: 1.875rem;
    overflow: hidden;
}

.video-section figure img {
    width: 100%;
}

.video-section .video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 00);
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

.video-section .btn-play {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 1.375rem;
    box-shadow: 0 0 0 1.5rem rgba(255, 255, 255, 0.2);
    transition: 0.5s ease;
}


.video-section figure:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.video-section .btn-play:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.2);
}

/* TESTIMONIAL SECTION */

.testimonial-section {
    padding: 18.625rem 0 0.25rem;
    background: url('../images/primary-bg.webp') no-repeat;
}

.testimonial-section .obj {
    background-color: #9dd1be61;
}

.testimonial-imgs {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    align-items: start;
}

.testimonial-imgs img {
    border: 10px solid #F1F1F1;
    border-radius: 10px;
}

.testimonial-imgs .img2 {
    margin-left: auto;
    margin-right: 2rem;
    margin-top: -13rem;
}

.testimonial-imgs .img2 img {
    transform: rotate(6deg);
}

.review-card {
    border-radius: 1.875rem;
    padding: 2.25rem 3.875rem 2.375rem;
    background-color: var(--white);
}

.review-card .rating {
    display: flex;
    gap: 5px;
    color: #FFBB01;
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 1.1875rem;
    color: #828282;
    margin-bottom: 10px;
}

.review-card .user-detail {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.review-card .user-detail figure img {
    border-radius: 50%;
    border: 1px solid var(--primary);
}

.review-card .user-detail .icon {
    margin-left: auto;
}

.review-card .user-detail h4 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.review-card .user-detail span {
    font-size: 1.125rem;
    color: #515151;
}

/* !@TESTIMONIAL SECTION */

/* PATIENT FORM SECTION  */

.patient-section {
    padding: 2rem 0 1.5625rem;
}

.patient-section figure {
    border-radius: 10px;
    overflow: hidden;
}

.patient-section figure img {
    width: 100%;
}


.patient-section .list {
    margin-top: 1.25rem;
}

.patient-section .list li+li {
    margin-top: 0.875rem;
}

.patient-section .list a {
    display: block;
    background-color: #EAF8F7;
    border-radius: 10px;
    padding: 1.75rem 2.5rem;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 500;
}

.patient-section .list a:hover {
    box-shadow: 0 0 0 1px var(--primary) inset;
    color: var(--black);
}

/* !@PATIENT FORM SECTION  */


/* STAFF SECTION */

.staff-section {
    padding: 6rem 0 3.125rem;
}

.staff-list {
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
}

.staff-card img {
    width: 194px;
    height: 194px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    position: relative;
}

.staff-card {
    text-align: center;
    margin: 0 -1.25rem;
}

.staff-card h4 {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 5px;
}

.staff-card h6 {
    color: rgba(0, 0, 0, 0.50);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.staff-list .swiper-slide {
    transform: scale(0.8);
    transition: 0.5s ease;
    z-index: 1;
}

.staff-list .swiper-slide .text-content {
    opacity: 0;
    margin-top: 0.875rem;
    transition: 0.5s ease;
}

.staff-list .swiper-slide-prev,
.staff-list .swiper-slide-next {
    transform: scale(0.9);
    z-index: 2;
}

.staff-list .swiper-slide-active {
    transform: scale(1);
    z-index: 3;
}

.staff-list .swiper-slide-active .text-content {
    opacity: 1;
}

/* !@STAFF SECTION */


/* FOOTER */

footer {
    background: url(../images/footer-bg.webp);
    padding-top: 11rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__logo {
    width: 400px;
    display: block;
    height: 200px;
    margin: 0 auto 1rem;
}

/* .footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.contactLinks {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.contactLinks li a {
    display: flex;
    gap: 1.125rem;
    align-items: center;
    color: var(--white);
}

.contactLinks li a div {
    background: #106c5f;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.5rem;
    transition: 0.5s ease;
}

.contactLinks li a span {
    display: grid;
    text-align: left;
    font-size: 1.125rem;
}

.contactLinks li a span small {
    font-size: 1rem;
    font-family: 'Montserrat';
}

.privacylist {
    display: flex;
    gap: 36px;
    justify-content: end;
}


.copyRight {
    border-top: 1px solid rgb(215 215 215 / 50%);
    padding: 0.9375rem 0;
    margin-top: 2.5rem;
}

ul.footermenu {
    display: flex;
    align-items: center;
    gap: 2.625rem;
    justify-content: center;
    margin-top: 53px;
}

ul.footermenu li a {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}

ul.footermenu li a:hover {

    color: var(--primary);

}

ul.privacylist li a {
    color: #fff;
    font-size: 1rem;
}

/* !@FOOTER */

/* inner-pages */
.inner-banner {
    height: 200px;
    background: #106c5f;
}
section.inner-banner.p-0 img {
    display: none;
}

.inner-banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.inner-banner__title {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.inner-banner__title h1 {
    font-size: 45px;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
}

.about-section.aboutinnr {
    padding: 5rem 0;
}

section.about-section.aboutinnr h2.heading {
    font-size: 35px;
}

.staffwrap {
    margin-bottom: 3rem;
}

.staffwrap a {
    display: block;
}

.staffwrap figure img {
    border-radius: 10px;
}

.staffcntnt {
    text-align: center;
    margin-top: 1rem;
}

.staffcntnt h3 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Montserrat';
}

.staffcntnt h5 {
    font-size: 15px;
    color: var(--primary);
}

section.carlaSection h2 {
    font-size: 50px;
    font-weight: bold;
    font-family: 'Montserrat';
}

section.carlaSection h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 1rem 0;
}

section.carlaSection h4 {
    font-size: 25px;
    color: #000;
    font-weight: bold;
    margin: 1rem 0;
}

ul.worklist li {
    font-size: 18px;
    color: #797B7D;
    margin-bottom: 6px;
}

ul.secondlist li {
    font-size: 18px;
    color: #797B7D;
    margin-bottom: 6px;
    list-style: disc;
}

ul.secondlist {
    margin-top: 2rem;
}

.constructioncntnt h3 {
    font-size: 40px;
    font-weight: bold;
}

.constructioncntnt p {
    font-size: 22px;
    font-weight: 400;
    color: #797B7D;
    line-height: 1.6;
    margin: 10px 0;
}

.constructioncntnt p strong {
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    color: #000;
}

.constructioncntnt p span {

    font-weight: 600;
    color: #106c5f
}

.constructioncntnt ul li {
    font-size: 22px;
    font-weight: 400;
    color: #797B7D;
    margin-bottom: 1rem;
}

.constructioncntnt ul {
    margin: 1rem 0;
}

/* Blog Sec Css Start */

.blogSec {
    padding: 5.625rem 0 5rem 0;
}

.blogContent {
    margin: 1rem 0;
}

.blogContent h5 {
    font-size: 20px;
    color: var(--black);
    font-weight: bold;
    /* margin-bottom: 1rem; */
}

.blogContent p {
    font-size: 15px;
    line-height: 1.9;
    color: #828282;
}

.blogContent .d-flex {
    justify-content: space-between;
}

.blogContent .d-flex ul {
    display: flex;
    gap: 12px;
}

.blogContent .d-flex ul li a {
    background: #EFEFEF;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    font-size: 10px;
    color: var(--black);
}

.blogContent .d-flex ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

.blogWrap {
    position: relative;
}

.dateBox {
    background: var(--primary);
    height: 93px;
    width: 93px;
    text-align: center;
    display: grid;
    place-items: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.dateBox h2 span {
    display: block;
    font-size: 0.875rem;
}

.dateBox h2 {
    line-height: 1.1;
    font-size: 53px;
    font-weight: 600;
    color: #fff;
}

.dateBox h2 span {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.blogWrap.aos-init.aos-animate {
    margin-bottom: 2rem;
}

.testimonialInner {
    padding: 9.375rem 0 1rem 0;
}

.testimonialBox p {
    font-size: 17px;
    color: #828282;
    line-height: 2;
    margin-top: 1.5rem;
    font-style: italic;
}

.testimonialBox h4 {
    font-size: 1.375rem;
    color: var(--black);
    font-weight: bold;
    font-style: italic;
    margin: 0;
}

.users {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.users ul {
    display: flex;
    gap: 5px;
    color: #F7A82A;
}

.testimonialBox {
    border: 1px solid #70707085;
    border-radius: 10px;
    padding: 4.125rem 3.125rem;
    position: relative;
}

.quote {
    margin-top: -6.5rem;
}

.testimonialBox:before {
    content: "";
    position: absolute;
    background: #7070704d;
    width: 40px;
    height: 40px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    bottom: -2.5rem;
}

.userName {
    display: flex;
    gap: 12px;
    margin: 2.5rem 0 0 6rem;
    align-items: center;
}

.userName h3 {
    flex: 1;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--black);
    line-height: 1.6;
}

.userName h3 span {
    display: block;
    font-size: 0.875rem;
    color: #828282;
    font-family: 'Jost';
    font-weight: 500;
}

.testimonialInner .row+.row {
    margin-top: 6rem;
}


/* Blog Sec Css End */

.talkSec {
    background: #FCFCFC;
    padding-top: 8.125rem;
    /* z-index: -1; */
    margin-bottom: -9rem;
    padding-bottom: 0;
}

.talkBox:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: var(--white);
    box-shadow: 0 0 25px rgb(201 201 201 / 25%);
    border-radius: 100%;
    right: -4rem;
    top: -5rem;
    z-index: -1;
}

.talkContent span:before {
    width: 165px;
    left: -6rem;
}

.talkContent span {
    margin-left: 6rem;
}

.talkContent p,
.talkBox p {
    font-size: 1.125rem;
    line-height: 2;
    color: #828282;
}

.talkContent ul li a span {
    margin: 0;
    display: grid;
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 600;
    border-bottom: 1px dashed #828282;
    padding-bottom: 1rem;
}

.talkContent ul li a {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.talkContent ul li a div {
    background: var(--primary);
    width: 67px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    border: 1px dashed var(--white);
}

.talkContent ul li a span small {
    color: #828282;
    font-size: 1rem;
}

.talkContent ul li+li {
    margin-top: 2.5rem;
}

.talkContent ul {
    margin-top: 2rem;
}

.talkBox h2 {
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
}

.talkBox .form-control {
    border: 1px solid #D9D9D9;
    margin-bottom: 20px;
    padding-left: 2rem;
    color: #D9D9D9;
    outline: none;
    box-shadow: none;
}

.talkBox input {
    height: 63px;
    border-radius: 50px;
}

.talkBox textarea {
    border-radius: 40px;
    padding-top: 1.3rem;
}

.talkBox .form-control::placeholder {
    color: #D9D9D9;
}

.talkBox .themeBtn {
    border: unset;
    padding: 0.875rem 3em;
}

.talkBox {
    background: var(--white);
    box-shadow: 0 4px 24px #A3A3A3;
    padding: 2.8125rem 2.5rem;
    position: relative;

}

.talkSec iframe {
    display: block;
    margin-top: 2rem;
    /* margin-top: -9rem; */
    /* margin-bottom: -15rem; */
    /* position: relative; */
    /* z-index: -111111; */
}

body.contactpage footer {
    position: relative;
}


section.talkSec h2.mainHead.secHeading {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

/* refill-request */

.refill-request__form {
    padding: 4.375rem 3.75rem;
    background-color: var(--white);
    border-radius: 2.5rem;
    box-shadow: 0px 4px 24px rgb(163 163 163 / 25%);
}

.refill-request__form .heading,
.new-patient__form .heading {
    font-size: 3.125rem;
    margin-bottom: 1.375rem;
}

.refill-request__form>em {
    font-size: 1.125rem;
    color: #828282;
}

.refill-request__form>p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    line-height: normal;
    margin: 1rem 0 2.75rem;
}

.refill-request__field>label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.8125rem;
}

.refill-request__flex,
.new-patient__flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.refill-request__field {
    margin: 0 0 1.875rem;
}

.refill-request__field :is(input, textarea, select),
.new-patient__field :is(input, textarea, select),
.reviewForm textarea,
.reviewForm input {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border: 1px solid #D9D9D9;
    border-radius: 3.125rem;
    font-size: 1rem;
    color: var(--black);
    resize: none;
}

.reviewForm {
    margin-bottom: 6rem;
}

.reviewForm .opt {
    color: red;
    font-size: 10px;
    font-weight: 700;
}

.refill-request__field textarea,
.reviewForm textarea {
    border-radius: 1.875rem;
}

.refill-request__radio {
    display: flex;
    align-items: center;
    gap: 3.125rem;
    padding: 1rem 0;
}

.refill-request__radio label {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.refill-request__radio input {
    display: inline-block;
    width: 24px;
    aspect-ratio: 1;
    cursor: pointer;
    user-select: none;
    accent-color: var(--primary);
    outline: none !important;
}

.new-patient__form p {
    font-size: 1.375rem;
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.new-patient__field {
    margin: 0 0 2.25rem;
}

.new-patient__field>label {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.new-patient__field>label span {
    font-weight: 400;
    color: #797B7D;
}

.new-patient__field :is(input, select) {
    border-color: #D9D9D9;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 5%);
}

.optional {
    font-size: 1rem !important;
    color: #ff0000 !important;
    margin: 0.45rem 0 0 1rem !important;
    text-transform: capitalize;
}

.list-link {
    text-decoration: underline !important;
}

/* Faqs */
.faqSec #accordion {
    margin-bottom: 2.5rem;
    margin-left: 3rem;
}

.faqSec #accordion .card {
    border: none;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
    border-radius: 0px;
    padding: 1rem 0rem 30px 0;
    background: transparent;
}

.faqSec #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--black);
    padding: 0;
    border: 0;
    font-size: 28px;
    border-radius: 0px;
    text-decoration: none;
    overflow: hidden;
    padding-left: 0rem;
    border-bottom-left-radius: 0;
    font-weight: 400;
    border-bottom: 0;
}

.faqSec #accordion .card .btn-link>strong,
.faqSec #accordion .card .card-body p strong {
    margin-right: 0.5rem;
}

.faqSec #accordion .card .btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--height);
    margin-right: 1rem;
    font-size: 2.125rem;
}

.faqSec #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    margin-left: auto;
    font-size: 1.5rem;
}

.faqSec #accordion .card .btn-link i::before {
    content: '\f0d8';
}

.faqSec #accordion .card .btn-link.collapsed i::before {
    content: '\f0d7';
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: var(--black);
}

.faqSec #accordion .card+.card {
    margin-top: 0;
}

.faqSec #accordion .card .card-body {
    padding: 0rem 4rem 0.5rem 0rem;
}

.faqSec #accordion .card .card-body p {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 400;
    padding-left: 0;
    margin: 0;
    line-height: 33px;
    padding-top: 1rem;
}

.faqSec #accordion .card .btn-link {
    border: 1px solid #D2D2D2;
    padding: 29px 10px;
    border-radius: 20px;
}

.faqSec #accordion .card .card-body {
    padding: 2rem 2rem;
    border: 1px solid #D2D2D2;
    border-radius: 20px;
    margin-top: 1.5rem;
}

.faqSec #accordion .card {
    border-bottom: 0;
}

.paginationline a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
}

.paginationline a.active {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.paginationline .pagination {
    justify-content: center;
}

.radius-img img {
    width: 100%;
    border-radius: 10px;
}

.carlaSection h2 span {
    font-size: 2rem;
    display: block;
}

.carlaSection p i {
    color: red;
    /* display: block; */
}

.review-card .user-detail figure,
.userName figure {
    width: 50px;
    height: 50px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.testimonialInner .testimonialWraps {
    margin-bottom: 5rem;
}

.heroText {
    margin: -7rem 0 0;
}

.heroText .themeBtn {
    margin: 0 auto;
}
.services-section .swiper-button-prev, .services-section .swiper-button-next,
.testimonial-section .swiper-button-prev, .testimonial-section .swiper-button-next
{
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.services-section .swiper-button-prev:after, .services-section .swiper-button-next:after,
.testimonial-section .swiper-button-prev:after, .testimonial-section .swiper-button-next:after
{
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}
.services-section .swiper-button-prev {
    left: 5%;
}
.services-section .swiper-button-next {
    right: 5%;
}

.testimonial-section .swiper-button-prev {
    left: -1%;
    top: 60%;
}
.testimonial-section .swiper-button-next {
    right: -1%;
    top: 60%;
}




