@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

:root {
    --main-color: #2582a1;
    --main-light-color: #e5f9ff;
    --main-light-color2: #74c482;
    --second-color: #f5811d;
    --second-light-color: #fff2e7;
    --global--font-body: 'Poppins', sans-serif;
    --global--font-heading: 'Poppins', sans-serif;
}

.color-main {
    color: var(--main-color);
}
body,
html {
     
    font-display: swap;
}

body {
    font-family: var(--global--font-body);
    font-display: swap;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    display: inline-block;
    color: #212529;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--main-color);
}

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

.default-list,
.list-style-2 {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}


.default-list li,
.list-style-2 li {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 5px;
    padding-left: 25px;
    transition: all ease-in 0.2s;
    cursor: context-menu;
}

.default-list li:before {
    content: '\f35a';
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-display: swap;
    color: var(--main-color);
}

.default-list li:hover,
.list-style-2 li:hover {
    padding-left: 40px;
    color: var(--main-color);
}

.list-style-2 li:before {
    content: '\f046';
    position: absolute;
    left: 0;
    font-family: fontAwesome;
    font-display: swap;
}

.default-list p {
    padding-left: 25px;
}

/* ======================================================== 
                        Default BTN      
======================================================== */

.default-btn,
.default-btn:focus {
    min-width: 185px;
    height: 38px;
    line-height: 38px;
    display: inline-block;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    text-transform: capitalize;
    border-radius: 30px;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.default-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    background-color: var(--main-color);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.default-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    border-radius: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid var(--main-color);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.default-btn:hover {
    color: var(--main-color);
}

.default-btn:hover::before {
    opacity: 0;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
}

.default-btn:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}


.default-btn-reverse,
.default-btn-reverse:focus {
    min-width: 185px;
    height: 38px;
    line-height: 38px;
    display: inline-block;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    text-transform: capitalize;
    border-radius: 30px;
    font-size: 16px;
    color: var(--main-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.default-btn-reverse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    border: 1px solid var(--main-color);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.default-btn-reverse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    border-radius: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: var(--main-color);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.default-btn-reverse:hover {
    color: #fff
}

.default-btn-reverse:hover::before {
    opacity: 0;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
}

.default-btn-reverse:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* ======================================================== 
                        Alignments      
======================================================== */
.about-inner-content p {
    text-align: justify;
}

/* ======================================================== 
                        Title Bar        
======================================================== */

.title-bar {
    margin-bottom: 30px;
}

.title-bar h2,
.title-bar h3 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 30px;
}

.title-bar p {
    font-size: 18px;
}

.title-bar h2:after,
.title-bar h3:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 15px;
    background-color: var(--main-color);
}

.title-bar h2:before,

.title-bar h3:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 15px;
    background-color: var(--second-color);
}

.title-bar h2:after,
.title-bar h3:after {
    width: 80px;
    left: calc(50% - 40px);
    bottom: 10px;
}

/* ======================================================== 
                        Image Shap       
======================================================== */

.shap-left {
    position: relative;
    padding-left: 40px;
    z-index: 9;
}

.shap-right {
    position: relative;
    padding-right: 40px;
    z-index: 9;
}

.shap-left:after,
.shap-right:after {
    content: "";
    display: block;
    position: absolute;
    top: 34px;
    left: 0;
    right: 24px;
    bottom: -34px;
    background-color: var(--main-color);
    border-radius: 10px;
    z-index: -1;
}

.shap-right:after {
    left: 40px;
    right: 0;
    background-color: var(--second-light-color);
}

.shap-left img,
.shap-right img {
    border-radius: 10px;
}

/* ======================================================== 
                        Header Bar       
======================================================== */

header {}

.top-bar {
    padding: 5px 0;
    background-color: var(--second-light-color);
}

.site-branding img {
    /* height: 64px; */
}

.top-bar .top-bar-col {
    position: relative;
    padding-left: 42px;
}

.top-bar .top-bar-col>span {
    width: 36px;
    height: 36px;
    /* border: 1px solid #bfbfbf; */
    position: absolute;
    left: 0;
    transform: rotate(45deg);
    line-height: 36px;
    text-align: center;
    border-radius: 5px;
    color: var(--main-color);
    top: calc(50% - 18px);
}

.top-bar .top-bar-col>span i {
    transform: rotate(-45deg);
}

.top-bar .top-bar-col li {
    list-style: none;
}

.top-bar .top-bar-col h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: #222222;
    margin-bottom: 0;
}

.top-bar .top-bar-col p {
    margin: 0;
    color: #2e2e2e;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
}

.top-bar .top-bar-col a {
    color: #707070;
}

.nav-menu {
    max-width: 1000px;
    display: flex;
    /* margin: auto; */
    padding: 5px 0;
    margin-bottom: 5px;
}

.nav-menu .menu-inner {

    padding-bottom: 2px;
    width: 70%;
    padding-left: 0px;

    /* z-index: 10; */
}

.nav-menu .menu-inner ul {
    margin: 0;
}

.nav-menu .menu-inner ul>li {
    display: inline-block;

}

.nav-menu .menu-inner ul li {
    font-family: 'Poppins', sans-serif;
    font-display: swap;
}

.nav-menu .menu-inner ul>li>a {
    padding: 10px 15px;
    color: #000;
    display: block;
}

.nav-menu .menu-inner ul>li>a:hover,
.nav-menu .menu-inner ul li.current-menu-item a {
    color: var(--main-color)
}

.nav-menu .menu-inner ul li.menu-item-has-children ul {
    display: none;
}

.nav-menu .menu-inner ul li.menu-item-has-children:hover ul {
    display: block;
}


.nav-menu .appointment-btn {
    background-color: var(--second-color);
    border-radius: 30px;
    padding-left: 30px;
    line-height: 2.3;
    height: 40px;
    padding-right: 30px;
    margin-top: 2px;
    color: #fff;
    font-weight: 600;
    /* padding-top: 12px; */
    /* padding-bottom: 0px; */
}

.nav-menu .appointment-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.nav-menu .menu-inner ul .menu-item-has-children {
    position: relative;
}

.menu-item-has-children a i {
    padding: 0 2px;
    top: 2px;
    position: relative;
}



.menu-item-has-children ul {
    position: absolute;
    z-index: 9999;
    width: 240px;
    background: #fff;
    padding: 10px 0;
}

.nav-menu .menu-inner ul .menu-item-has-children ul li {
    width: 100%;
}

.nav-menu .menu-inner ul .menu-item-has-children ul li a {
    color: #000;
    padding: 10px 20px;
}

.nav-menu .menu-inner ul .menu-item-has-children ul li a:hover {
    color: var(--main-color);
}


/* ======================================================== 
                        Slider Home      
======================================================== */

.crisp-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    text-align: center;
    bottom: -10px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.slider-content {
    position: absolute;
    top: 0;
    bottom: 0;
    text-align: left;
    padding: 100px 100px;
    max-width: 1000px;
}

.slider-content-right {
    max-width: 100%;
    width: 100%;
    text-align: right;
}

.slider-content-right p {
    font-size: 18px;
}

.slider-content span {
    font-style: italic;
    font-weight: 700;
}

.slider-content .slider-heading {
    font-weight: 700;
    font-size: 50px;
    color: #000;
    line-height: 50px;
    margin-bottom: 3%;
}

.slider-content .slider-heading {
    font-weight: 700;
    font-size: 50px;
    color: #000;
    line-height: 50px;
    margin-bottom: 3%;
}

.crisp-slider .default-btn,
.crisp-slider .default-btn:focus {
    height: 45px;
    line-height: 45px;
    padding: 0px 25px;
}

/* .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 40%;
    left: unset;
    right: 40px;
    width: 10px;
} */

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--main-color);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--second-color);
}

.dr-warning {
    background-color: red;
    padding: 0px 0;
}

.dr-warning p {
    display: inline-block;
    position: relative;
    font-weight: 600;
    font-size: 12px;
    margin-right: 30px;
    padding-left: 30px;
    margin-bottom: 0;
    color: #fff;
}

/* ======================================================== 
                        About Us         
======================================================== */

.about-us-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-inner-content h4 {
    color: var(--main-color);
}

.about-inner-content h1,
.about-inner-content h2 {
    font-weight: 700;
}

.about-inner-content h1 span,
.about-inner-content h2 span {
    color: var(--main-color);
}

.about-inner-content h3 {
    font-size: 20px;
    color: var(--main-color);
}

/* ======================================================== 
                        Services Icon       
======================================================== */
.services-icon {
    padding: 50px 20px;
}

.service-icon-widget.alt {
    background: var(--main-light-color)
}

.service-icon-widget {
    padding: 10px 15px;
    text-align: center;
    background: var(--second-light-color);
    margin-bottom: 10px;
    min-height: 24vh;
}

.service-icon-widget svg {
    width: 64px;
}

.service-icon-widget h3 {
    font-size: 1.3rem;
    padding: 5px 10px;
    color: var(--main-color);
}

.service-icon-widget h3:hover {
    color: #000;
}

.service-icon-widget p {
    font-size: .85rem;
}

/* ======================================================== 
                        Our Services     
======================================================== */

.services-section {
    padding: 50px 20px;
    background-color: var(--main-light-color);
}

.services-sec {
    padding: 50px 20px;
}

.services-section p {
    font-size: 18px;
    font-weight: 600;

}

.service-inner-col h2,
.service-inner-col h3 {
    position: relative;
    padding: 15px 0px 5px 0px;
}

.service-inner-col ul,
.other-services ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.service-inner-col ul li,
.other-services ul li {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 5px;
    padding-left: 25px;
    transition: all ease-in 0.2s;
    cursor: context-menu;
}

.other-services ul li {
    background-color: var(--second-light-color);
    padding: 5px 25px;
}

.service-inner-col ul li:before,
.other-services ul li:before {
    content: '\f35a';
    position: absolute;
    left: 5px;
    font-family: 'Font Awesome 5 Free';
    color: var(--main-color);
}

.default-list li:hover,
.list-style-2 li:hover,
.other-services ul li:hover {
    padding-left: 20px;
    color: var(--main-color);
}

.list-style-2 li:before {
    content: '\f046';
    position: absolute;
    left: 0;
    font-family: fontAwesome;
    font-display: swap;
}

.default-list p {
    padding-left: 25px;
}

.services-testimonials {
    background-color: var(--second-light-color);
    padding: 30px 20px;
}

.service-call-to-action {
    padding: 40px 0;
    background: var(--main-light-color);
}

.service-call-to-action .whatsapp-icon {
    background: var(--second-color);
    padding: 15px 30px;
    color: #fff;
    border-radius: 10px;
}

.service-call-to-action .whatsapp-icon:hover {
    background-color: var(--main-color);
}

.service-inner-col h3 strong,
.service-inner-col h3 {
    font-size: 1.3rem;
}

.service-inner-col h4,
.service-inner-col h4 strong {
    font-size: 1.0rem;
}

/* ======================================================== 
                        Under Abortion   
======================================================== */

.understand-abortion-section {
    margin: 60px 0;
}

/* .understand-abortion-section p:after {
    content: '';
    position: relative;
    width: 100%;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px dotted #ddd;
} */

.understand-abortion-section .box-pr {
    background: var(--second-light-color);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}


.about-contact {
    background-color: var(--second-light-color);
    position: relative;
    padding: 30px;
    padding-left: 28px;
    padding-right: 55px;
    margin-right: 105px;
    border-radius: 10px;
    color: #000;
    width: calc(100% - 40px) !important;
}

.about-contact:before {
    content: '\f2a0';
    position: absolute;
    right: -40px;
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    line-height: 70px;
    background-color: var(--second-light-color);
    color: #000;
    font-family: "Font Awesome 5 Free";
    font-display: swap;
    font-weight: 600;
    border: 5px solid #000;
    text-align: center;
    border-radius: 50%;
    font-size: 40px;
}

.about-contact a:hover,
.about-contact a:focus {
    color: #000;
}

.about-contact p {
    font-size: 24px;
    font-weight: 700;
}

.about-contact h4 {
    font-size: 36px;
    font-weight: 700;
}

.about-contact:hover {
    background-color: var(--main-light-color);
}

.about-contact:hover:before {
    background-color: var(--main-light-color);
}

/* ======================================================== 
                        Testimonials     
======================================================== */

.our-doctors-section {
    padding: 50px 0 40px;
}

.our-doctors-section .swiper-slide .swiper-inner figure img {
    border-radius: 100%;
}

/* ======================================================== 
                        Testimonials     
======================================================== */

.testimonial-section {
    background-color: #d4ffd9;
    padding: 50px 0 40px;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

.testimonial-slider .swiper-inner {
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.29);
    background: #fff;
}

.testimonial-slider .swiper-inner .quote-icon {
    font-size: 30px;
    color: var(--second-light-color);
    display: inline-block;
    margin-bottom: 5px;
}

.testimonial-slider .swiper-inner figure img {
    width: 85px;
    height: 85px;
    border-radius: 100px;
    object-fit: cover;
    border: 4px solid #eee;
}

.testimonial-slider .swiper-inner h4 {
    font-size: 16px;
}

.testimonial-slider .swiper-inner p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}

/* ======================================================== 
                        Quick Links   
======================================================== */

.quick-links-sec {
    padding: 50px 0 30px;
    background: var(--second-light-color);
}

.quick-links-inner {
    margin-top: 20px;
}

.quick-links-inner ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.quick-links-inner ul li+li {
    border-top: 1px solid #f6eae0;
}

.quick-links-inner ul li:before {
    content: '\f054';
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 free';
    font-weight: 600;
    font-size: 10px;
    top: 11px;

}

.wp-block-image img {
    border-radius: 0.3em;
}

/* ======================================================== 
                        Footer   
======================================================== */

footer {
    background-color: #f5e7db;
    padding: 50px 0 0;
}

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

footer .footer-logo img {
    max-height: 65px;
}

.social-media-icon a {
    background: var(--main-color);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 6px;
}

.social-media-icon a:hover {
    background-color: var(--second-color);
}

footer .inner-ftc h3 {
    font-size: 22px;
    font-weight: 600;
}

footer .useful-links li+li {
    border-top: 1px solid #f3e1d1;
}

footer .useful-links li a {
    display: block;
    padding: 4px 0px
}

.contact-info-ft ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}

.contact-info-ft ul li:before {
    content: '\f3c5';
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    left: 0px;
    top: 0px;
    font-size: 18px;
    color: var(--main-color);
}

.contact-info-ft ul li.contact-number:before {
    content: '\f2a0';
}

.contact-info-ft ul li.email-address:before {
    content: '\f2b6';
    font-weight: normal;
}

footer .contact-info-ft ul li a {
    margin-right: 10px;
}

footer .footer-bottom {
    padding: 10px 0px;
    background: #efddce;
}

footer .footer-bottom a {
    color: var(--second-color)
}

footer .footer-bottom p {
    margin-bottom: 0;
}

.page-title-bar-sec {
    background-color: var(--main-light-color);
    padding: 40px 0 20px;
    text-align: center;
}

.page-title-bar-sec .page-title-bar h1 {
    font-size: 40px;
    font-weight: 800;
    /* text-transform: uppercase; */
}

.page-title-bar-sec .page-title-bar p {
    font-size: 16px;
    font-weight: 400;
    color: #424242;
}

.page-title-bar .breadcrumb {
    display: inline-block;
    padding: 4px 20px;
}

.page-title-bar .breadcrumb li {
    display: inline-block;
    margin: 0 5px;
}

.page-title-bar .breadcrumb li a {
    display: block;
    color: var(--main-color);
    font-weight: 500;
}


.contact-form-sec {
    padding: 50px 0;
}

.contact-form-inner .form-control {
    min-height: 48px;
    border: 1px solid #ddd;
    border-radius: 0;
}

.contact-form-inner .btn {
    border-radius: 0;
    background-color: var(--main-color);
    padding: 8px 30px;
}

.contact-form-inner h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.service-inner-sec {
    padding: 20px 0;
}

.service-inner-sec figure {
    text-align: center;

}

.service-inner-sec figure img {
    border-radius: 10px;
}

.call-and-whatsapp-bar {
    margin-bottom: 20px;
}

.call-and-whatsapp-bar a {
    display: block;
    background: var(--main-color);
    margin-bottom: 10px;
    padding: 10px 30px;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
}

.call-and-whatsapp-bar .whatsapp-icon {
    background-color: #00a32c;
}

.call-and-whatsapp-bar .email-a-icon {
    background-color: #42b3dc;
}

.inquiry-form {
    background: #cef2ff;
    padding: 25px;
}

.inquiry-form h3 {
    font-weight: 400;
    margin-bottom: 20px;
}

.inquiry-form h3 span {
    font-weight: 700;
}

.inquiry-form .form-control {
    min-height: 44px;
    border: 1px solid #ddd;
    border-radius: 0;
}

.sticky {
    position: sticky;
    top: 30px;
}

.appointment-form-sec .call-and-whatsapp-bar {
    margin-top: 53px;
}

thead {
    background-color: #ddd;
    padding: 5px;
}

td {
    vertical-align: top;
    padding: 10px;
    ;
}

tr {
    border-bottom: 1px solid #ddd;
}

table {
    margin-bottom: 20px;
}


.blog-section {
    padding: 50px 10px 10px 10px;
}

.blog-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 3px;
    padding-bottom: 20px;
}

.blog-slider h4 {
    font-size: 1.3rem;
}

.blog-section .blog-inner-col {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.30);
    padding: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.blog-section .blog-inner-col figure {
    margin-top: 0;
    overflow: hidden;
}

.blog-section .blog-inner-col figure img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.blog-section .blog-inner-col:hover figure img {
    -webkit-transform: scale(1.3) rotate(4deg);
    transform: scale(1.3) rotate(4deg);
}

.blog-section .date,
.service-inner-col .date {

    font-size: 12px;
    margin-bottom: 8px;
    font-weight: normal;
}

.blog-section .date span,
.service-inner-col .date span {
    margin-right: 10px;
}

.blog-section .date span a,
.service-inner-col .date span a {
    color: var(--second-color);
}

.blog-section .date span i,
.service-inner-col .date span i {
    margin-right: 5px;
}


.blog-section .blog-inner-col h3 {
    font-size: 20px;
}

.blog-section .blog-inner-col p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* blinking */

.blinking {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

.special-discount-text {
    font-size: 14px;
    margin-left: 20px;
    float: left;
    margin-top: 3px;
}

.special-discount-text span {
    color: var(--second-color);
    font-family: var(--global--font-body);
    font-size: 14px;
}

.special-discount-text [class*='icon-'] {
    color: var(--main-color);
}

.mobile-display {
    display: none
}


.desktop-display {
    display: block
}

.swiper-button-next {
    margin-top: 0px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
}

.swiper-button-prev {
    position: absolute;
    top: 50%;
    left: 0;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    margin-top: 0px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    color: var(--second-color);
    font-size: 1.9rem;
    font-weight: 700;
}

.breadcrumb {
    background-color: #e3f1f5;
}


@media only screen and (max-width: 600px) {
    .desktop-display {
        display: none
    }

    .mobile-display {
        display: block;
        right: 0;
    }
}

.modal-header {
    background: var(--second-light-color);
}

/* Responsive Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-section .alt {
    background: var(--main-light-color) !important;
}

.testimonial-section .achievement {
    background: var(--second-light-color);
    padding: 10px 20px;
    text-align: center;
    display: grid;
    border-radius: 10px;
    margin-bottom: 5px;
    min-height: 85px;
    align-items: center;
    justify-content: center;
    /* display: flex; */
}



.testimonial-section .achievement h3 {
    margin-bottom: 5px;
    color: var(--second-color);
}

.testimonial-section .achievement p {
    margin-bottom: 0;
}

.google-map {
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Services FAQs */



.accrodion-grp .accrodion+.accrodion {
    margin-top: 10px
}

.accrodion-grp .accrodion .accrodion-title {
    border: 1px solid #fff0d9;
    background: (var(--main-light-color));
    padding: 8px 20px;
    cursor: pointer;
    transition: all ease-in-out .5s;
    border-radius: 10px
}

.accrodion-grp .accrodion .accrodion-title h5 {
    margin: 0;
    position: relative;
    text-transform: capitalize;
    border: none;
    font-size: 16px;
}

.accrodion-grp .accrodion .accrodion-title h5:before {
    content: '\2b';
    font-family: fontawesome;
    color: #222;
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.accrodion-grp .accrodion .accrodion-content {
    padding-top: 10px;
    background: var(--second-light-color);
}

.accrodion-grp .accrodion .accrodion-content .inner {
    padding: 20px
}

.accrodion-grp .accrodion .accrodion-content .inner p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: .01em;
    color: #393a3b
}

.accrodion-grp .accrodion .accrodion-content .inner ul li {
    line-height: 1.8;
    display: block;
}

.accrodion-grp .accrodion .accrodion-content .inner ul li:before {
    content: '\f101';
    font-family: fontawesome;
    color: #222;
    font-size: 20px;
    margin-right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.accrodion-grp .accrodion.active .accrodion-title {
    background: var(--main-color);
}

.accrodion-grp .accrodion.active .accrodion-title h5 {
    color: #fff
}

.accrodion-grp .accrodion.active .accrodion-title h5:before {
    content: '\2212';
    color: #fff
}

@media(max-width:567px) {
    .accrodion-grp .accrodion .accrodion-title h5 {
        font-size: 14px
    }
}

/* Sidebar */


.featured-post .list-group {
    padding: 0 .8rem
}

.featured-post h3 {
    font-size: 1.2rem;
}

.rightsidebar .card img {
    width: 100% !important
}

/* About Us */

.mission-vission {
    padding-bottom: 40px;
}

.mission-vission .mission {
    background-color: var(--main-light-color);
    padding: 10px 20px;
    border-radius: 0 20px;
    border: 1px dashed var(--main-color);
}

.mission-vission .vision {
    background-color: var(--second-light-color);
    padding: 10px 20px;
    border-radius: 0 20px;
    border: 1px dashed var(--second-color);
}

.mission-vission .planning {
    background-color: #fff;
    padding: 10px 20px;
    border: 1px dashed #656565;
    border-radius: 0 20px;
}

/* Contact Page */
.contact-page-icons.contact-info-ft ul li {
    line-height: 1.3rem;
    margin-bottom: 32px;
}

.contact-page-icons.contact-info-ft ul li:before {
    font-size: 36px;
}
 
.services-icon {
    padding: 10px 5px;
}


/* Chat Icon */

.chat-icon {
    transition: all .8s;
    -webkit-transition: all .8s;
    text-align: center;
    position: fixed;
    right: 3rem;
    bottom: 6rem;
    z-index: 20;
    transform: translateY(10rem)
}

.chat-icon.show {
    transform: translateY(0)
}

.hero-scroll-wrapper {
    position: absolute;
    right: 7.5rem;
    bottom: -2rem
}

.hero-scroll {
    transition: all .3s;
    -webkit-transition: all .3s;
    position: relative;
    background-color: #35d766;
    border: 1px solid #7dffa5;
    border-radius: 50%;
    height: 3rem;
    width: 3rem;
    display: inline-block;
    margin-left: .5rem
}

.hero-scroll-icon {
    position: absolute;
    top: 47%;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    text-decoration: none;
    color: #ecfff1;
    font-size: 3rem;
    overflow: hidden;
    left: 0;
    right: 0
}

.chat-icon .hero-scroll-icon {
    font-size: 1.6rem;
}

.chat-icon .hero-scroll-icon svg {
    width: 40px;
}

.chat-notification {
    background-color: var(--main-color);
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: 3px;
    right: 0
}

.hero-scroll-icon .fa {
    transition: all .3s;
    -webkit-transition: all .3s;
    display: block
}

.hero-scroll-icon .fa:last-child {
    opacity: 0;
    transform: translateY(-1.5rem)
}

.hero-scroll:hover {
    box-shadow: 0 0 .7rem .1rem #73ec98
}

.hero-scroll:hover .fa:first-child {
    transform: translateY(-1rem);
    opacity: 0
}

.hero-scroll:hover .fa:last-child {
    transform: translateY(-3rem);
    opacity: 1
}

.chat-icon .hero-scroll .fa {
    transform: translateY(0) !important;
    opacity: 1 !important;
    font-size: 1em;
}

.get-started {
    position: fixed;
    bottom: 1em;
    z-index: 99;
    width: -webkit-fill-available;
    padding: 1em 2em;

}

.get-started .main-btn-static {
    width: 100%;
}

.get-started .main-btn-static .btn-important {
    width: 100%;
}

.get-started.hide {
    display: none;
}

.modal {
    top: 10%;
}

.main-content-area {
    padding: 1.5em 0;
}


/* Special Page */
.special-page-section {
    background-color: var(--main-light-color);
    padding: 40px 0 0;
}

.special-page-title-bar {

    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
    column-gap: 1em;
}

.special-page-title-bar .breadcrumb {
    display: inline-block;
    padding: 4px 0;
    font-size: 0.8em;
    margin-bottom: 0;
    background-color: transparent;
    text-align: left;
}

.special-page-header-content h1 {
    font-size: 1.8em;
    color: var(--main-color);
        margin: 0.3em 0 0.5em;
}

.special-page-header-content {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.special-page-header-content .call-icon {
    max-width: 260px;
    margin-bottom: 1em;
}

.special-page-header-content ul li {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 5px;
    padding-left: 25px;
    transition: all ease-in 0.2s;
    cursor: context-menu;
}

.special-page-header-content ul li:before {
    content: '\f35a';
    position: absolute;
    left: 5px;
    font-family: 'Font Awesome 5 Free';
    color: var(--main-color);
}

.special-content-image {
    margin-top: auto;
}

.special-content-image img {
    object-fit: contain;
    object-position: bottom;
}

.special-inqury-form {
    margin-bottom: 1em;
    border-radius: 1.3em;
}

.special-inqury-form h3 {
    font-size: 1.4em;
    text-align: center;
    font-weight: 700;
    color: var(--main-color);
}

.special-inqury-form .btn-send {
    width: 100%;
    border-radius: 1.3em;
}

section.usp-wrapper {
    background-color: var(--main-color);
}

.main-usps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    color: #fff;
}

.main-usps .achievement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0.5em 0;
}

.main-usps .achievement h3 {
    color: var(--main-light-color);
}

.main-usps .achievement h3, .main-usps .achievement p {
    margin-bottom: 0;
}

.wp-block-image figcaption {
	text-align: center !important;
}