/*==================== Header CSS ====================*/
.top-bar{
        display: flex;
    align-items: baseline;
    justify-content: space-between;
}
header.main-header {
    z-index: 999;
    height: auto;
    top: 0;
    width: 100%;
    padding: 0;
    position:fixed;
    
}
.top-logo-wrap{
    display: flex;
    align-items: center;
    gap: 30px;
}
.top-logo a{
        padding: 10px 0;
    display: block;
}
.top-logo img {
    display: block;
}
.top-logo a:last-child img {
    max-width: 190px;
}

.top-logo a:first-child img {
    max-width: 80px;
}
.main-menu {
    display: inline-block;
    text-align: center;
}
header.main-header.small-header {
    box-shadow: 0 0 10px rgba(0,0,0,0.50);
    background: #fff;
}

.ph-number {
    display: block;
    text-align: right;
    margin-left: 15px;
}
.ph-number a {
    font-size: 16px;
    font-weight: 400;
    display: block;
    background: #80C9AC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    gap: 10px;
    color: #fff;
    transition: 0.5s;
}
.ph-number a:hover{
    background: #305384;
}
/*.ph-number span {
    font-weight: 600;
    color: #80C9AC;
    display: block;
    line-height: normal;
}*/

.header-contact {
    background: #80C9AC;
    height: 90px;
    display: flex;
    padding: 10px 15px;
    margin-left: 25px;
    margin-right: -15px;
    align-items: center;
}
.header-contact .contact-btn{
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}
.header-contact .contact-btn .icon{
    margin-right: 10px;
    padding: 5px;
    height: 35px;
    width: 35px;
    background: #fff;
    border-radius: 50%;
}
.header-contact .contact-btn svg, .header-contact .contact-btn img {
    width: 22px;
    height: 22px;    
    fill:#80C9AC !important;
}
.header-contact .contact-btn svg path{
    fill:#80C9AC !important;
}


ul.sociallinks {
    display: inline-flex;
    align-items: center;
}
ul.sociallinks li {
    display: block;
    line-height: normal;
}
ul.sociallinks li a {
    padding: 10px 7px;
    display: block;
    line-height: normal;
    opacity:0.7;
}
ul.sociallinks li a svg, ul.sociallinks li a img{
    width:18px;
    height:18px;
    fill:#fff;
}
ul.sociallinks li a:hover{
    opacity:1;
}
/*==================== Header CSS END ====================*/

/*========= Nav Multiple CSS =========*/
.wrap-header {
    display: inline-flex;
    align-items: center;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    width: 100%;
}
.menu-top {
    position: relative;
}
ul.menu-top li {
    display: inline-block;
    margin: 0;
    color: #000;
    position: relative;
    padding: 10px 15px;
    height: 100%;
    line-height: normal;
}
ul.menu-top > li.menu-item-has-children {
    padding-right: 25px;
}
ul.menu-top li:last-child{
    padding-right:0;
}
ul.menu-top li:first-child{
    padding-left:0;
}
ul.menu-top li ul {
    display: none;
}
.menu-top li a {
    color: #000;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    height: 100%;
    font-weight: 500;
    text-transform: uppercase;
}
.menu-top li a:hover{
    transition: .3s ease-in-out all;
    color: #305384;
}
.menu-top li a:hover::before{
    position: absolute;
    content: "";
    background: #305384;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 2px;
}
.menu-top li a:hover::before, .menu-header>ul>li.current_page_item > a::before, .menu-header>ul>li.current_page_ancestor > a::before {
    width:100%;
}
.menu-header{
    position: relative;
}
/*.header-top-btn{
    position: absolute;
    right: 0;
    top: -30px;
}*/
.header-top-btn a{
    background: none;
    color: #000;
    padding: 5px 15px;
    transition: .5s;
    font-size: 16px;
    text-transform: capitalize;
    transition: 0.5s;
    text-decoration: underline;
}
.header-top-btn a.portal{
    background: #80c9ac;
    border:1px solid transparent;
    color: #fff;
    position: relative;
    top: 10px;
    text-decoration: none;
}
.header-top-btn a.portal:hover{
    background: #305384;
    border:1px solid #305384;
    color: #fff;
}
.header-top-btn a:hover{
    color: #80c9ac;
    text-decoration: none;
}
.menu-header>ul>li.current_page_item > a, .menu-header>ul>li.current_page_ancestor > a{
    color: #305384;
}
.menu-header>ul>li.current_page_item > a::before, .menu-header>ul>li.current_page_ancestor > a::before {
    position: absolute;
    content: "";
    background: #305384;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 2px;
}
.menu-header>ul>li.current_page_item > a::after, .menu-header>ul>li.current_page_ancestor > a::after, .menu-top li a:hover::after {
    position: absolute;
    content: "";
    background: #305384;
    left: 50%;
    right: 0;
    bottom: -20px;
    height: 7px;
    width: 7px;
    transform: rotate(45deg) translateX(-50%);
}
#mainNav>li.menu-item-has-children::before {
    content: "";
    right: 12px;
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    -moz-transform: rotate(45deg) translateY(-50%);
    -o-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    border-right: 2px solid #305384;
    border-bottom: 2px solid #305384;
    transform-origin: 8px 0px;
}
.small-header .menu-top::before {
    display:none;
}
.sub-menu li.menu-item-has-children {
    position: relative;
}
.menu-top li > .sub-menu > li.menu-item-has-children:after {
    content: "";
    right: 8px;
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: rotate(-45deg) translateY(-50%);
    -webkit-transform: rotate(-45deg) translateY(-50%);
    -moz-transform: rotate(-45deg) translateY(-50%);
    -o-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform-origin: 0 2px;
}
ul.menu-top li:hover > ul {
    display: block;
    position: absolute;
    top: 100%;
}
ul.menu-top li:hover li {
    float: none;
}
.sub-menu li ul.sub-menu {
    position:absolute; 
    background-color:#305384;
    z-index:99;
    top:0!important;
    left:100%;
}
.menu-top li ul li {
    border-top: 0;
    display: block;
    margin: 0;
}
ul.menu-top li .sub-menu li ul.sub-menu li > a {
    background-color: #305384;
}
ul.menu-top li .sub-menu li ul.sub-menu li > a:hover, ul.menu-top li .sub-menu li ul.sub-menu li.current-menu-item > a{
    background: #000;
}
ul.menu-top li:hover li a:hover, .menu-top ul.sub-menu li.current_page_item a {
    background: #000;
}
ul.menu-top ul ul {
    left: 100%;
}
.sub-menu {
    background-color: #305384;
    min-width: 230px;
    text-align: left;
}
ul.menu-top li .sub-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
ul.menu-top li .sub-menu li:last-child{
    border-bottom:none;
}
ul.menu-top li .sub-menu li a {
    font-size: 14px;
    padding: 12px 10px;
    text-transform: uppercase;
    line-height: normal;
    margin: 0;
    color: #fff;
    border: none;
    display: block;
    font-weight: 300;
}
ul.menu-top li .sub-menu li a:hover{
    border: none;
}
ul.menu-top li .sub-menu li a:hover::before, ul.menu-top li .sub-menu li a:hover::after {
    display: none;
}
/*========= Nav Multiple CSS END =========*/

/*========= Header Search CSS END =========*/
.search-icon {
    cursor: pointer;
    transition: all ease-in-out .45s;
    margin-left: 20px;
    width: 22px;
    height: 22px;
    line-height: 22px;
        margin-right: 20px;
}
.search-icon svg, .search-icon img {
    width: 18px;
    height: 18px;
    fill: #000;
}
.search-icon svg path{
    fill: #000;
}
.header-search-box {
    position: fixed;
    background-color: #fff;
    width: 100%;
    transition: all 0.5s ease 0s;
    opacity: 0;
    height: 0;
    top: 0;
    right: 0;
}
.header-search-box.open-search {
    opacity: 1; 
    height: 140px;
    z-index: 999999;
}
.header-search-box span.closebtn {
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 20px;
    width: 35px;
    height: 35px;
}
.header-search-box span.closebtn::before, .header-search-box span.closebtn::after {
    position: absolute;
    content: "";
    height: 30px;
    width: 2px;
    background-color: #000;
}
.header-search-box span.closebtn::before {
    transform: rotate(45deg);
}
.header-search-box span.closebtn::after {
    transform: rotate(-45deg);
}
.header-search-box span.closebtn:hover::before, .header-search-box span.closebtn:hover::after{
    background-color: #80C9AC;
}

.header-search-box .search-input-wrap .searchform {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    margin: 0 auto;
    width: 100%;
}
.header-search-box input.search {
    height: 55px;
    color: #000;
    padding: 8px 58px 8px 15px;
}
.header-search-box input.search:focus ~ .msg-side-form{
    display:none;
}
#site-searchs {
    top: 0;
    position: absolute;
    right: 0px;
    width: auto;
    height: 55px;
    border: none;
    padding: 13px 20px;
    line-height: 38px;
    cursor: pointer;
    background: none;
}
#site-searchs svg, #site-searchs img{
    width: 20px;
    height: 20px;
}
#site-searchs svg, #site-searchs svg path{
    fill:#1E191A;
}
/*========= Header Search CSS END =========*/

/*==================== Home Page CSS ====================*/
.banner-home {
    height: calc(100vh);
    height: -webkit-calc(100vh);
    height: -moz-calc(100vh);
    background-size: cover;
    background-position: center;
    position: relative;
}
.banner-home:before{
    content:'';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-image: url('../img/banner-before.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 8%;
}
.banner-video-wrap{
    position: absolute;
    right: 0;
    top: 150px;
    width: 50%;
    height: calc(100% - 190px);
    z-index: -1;
    border-radius: 0 0 0 200px;
    overflow: hidden;
}
.banner-video-wrap video,
.banner-video-wrap img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
/*.logged-in .banner-home {
    margin-top:58px;
}*/
.banner-home .container {
    position: relative;
}
.banner-home .inner-content{
    padding: 25px 70px;
}
.banner-home .banner-title {
    font-size: 60px;
    color: #003155;
    font-weight: 600;
    line-height: 72px;
}
.banner-home .banner-title span{
    color: #80C9AC;
}
.banner-home .banner-des {
    font-weight: 600;
    color: #5E5E5E;
    line-height: 30px;
}
/*end banner section*/
.about-image-wrap{
    position: relative;
}
.about-image-wrap:before{
    content: '';
    position: absolute;
    height: 400px;
    width: 300px;
    border:1px solid #50B2AF;
    left: 0;
    top:0;
    border-radius: 170px 0px 0px 0px;
    z-index: -1;
}
.about-image-wrap img{
    padding: 20px;
    border-radius: 170px 0px 0px 0px;
}
.services-loop img.services-img{
    height: 660px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position:top center;
    transition: 0.5s;
}

.services-loop img.services-no-feature{
    height: 520px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.services-loop{
    box-shadow: 0px 18px 34px 0px #0000001A;
    height: calc(100% - 25px);
    margin-top: 25px;
}
.services-loop a{
    display: block;
    overflow: hidden;
}
.services-loop a img{
    transition: 0.5s;
}
.services-loop a img:hover{
    transform: scale(1.1);
}
.services-slider .slick-slide.slick-current .services-loop a.services_img_wrap{
    border-radius: 70px 0px 0px 0px;
}
.services-slider .slick-slide.slick-current .services-loop img.services-img{
    border-radius: 70px 0px 0px 0px;
}
.services-slider .slick-current + .slick-slide.slick-active .services-loop a.services_img_wrap{
    border-radius: 0px 0px 70px 0px;
}
.services-slider .slick-current + .slick-slide.slick-active .services-loop img.services-img{
     border-radius: 0px 0px 70px 0px;
}
.services-slider .slick-current + .slick-active + .slick-slide.slick-active .services-loop a.services_img_wrap{
     border-radius: 0px 70px 0px 0px;
}
.services-slider .slick-current + .slick-active + .slick-slide.slick-active .services-loop img.services-img{
     border-radius: 0px 70px 0px 0px;
}
.services-slider .slick-current + .slick-active + .slick-active + .slick-slide.slick-active .services-loop a.services_img_wrap{
    border-radius: 0px 0px 0px 70px;
}
.services-slider .slick-current + .slick-active + .slick-active + .slick-slide.slick-active .services-loop img.services-img{
     border-radius: 0px 0px 0px 70px;
}
/* .services-slider .slick-current + .slick-slide.slick-active, .services-slider .slick-current + .slick-active + .slick-active + .slick-slide.slick-active{
    margin-top: 90px;
} */
.slick-initialized .slick-slide:nth-child(2n+2) {
    margin-top: 90px;
}
.services-section{
    background-color: #f5f5f5;
}
.services-section .heading-section{
    margin-left: 10px;
}
.services-section .heading-section a.btn{
    margin-top: 25px;
    margin-bottom: 25px;
    position: relative;
    z-index: 111;
}
.service-title{
    font-size: 25px;
    color: #000;
    line-height: 34.15px;
    transition: 0.5s;
    padding: 25px;
    display: block;
    font-weight: 500;
}
.service-title:hover{
    color: #80c9ac;
}
.services-section .slick-arrow {
    bottom: inherit;
    transform: none;
    width: 45px;
    height: 45px;
    top: -115px;
}
.services-slider .slick-prev{
    left: inherit;
    z-index: 11;
    right: 55px;
}
.page-id-919 .service-defaut-content{
    padding-bottom:0px !important;
}
.appointment-section{
    position: relative;
}
.appointment-section .container{
    z-index: 111;
    position: relative;
}
.appointment-section:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: 0;
    background: #003155;
    z-index: -1;
}
.appointment-section:after{
    content:"";
    position: absolute;
    height: 100%;
    width: 80%;
    background-image: url('/wp-content/uploads/2024/07/pattern.webp');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    top: 0;
    left: 0;
}
.appointment-section .heading-para-section a:hover{
    text-decoration: underline;
    color: #80c9ac;
}
.heading-para-section{
    padding-left: 150px;
}
.appointment-image-wrap{
    margin-top: 65px;
}
.content-section{
    position: relative;
}
.content-section .dummy-imgae-wrap{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
}
.content-section:before{
    content:'';
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    left: 0;
    background: #738EA4;
    z-index: -1;
}
.dummy-content-wrap p{
    color: #fff;
}
.attorney-row-lists{
    display: flex;
    width: 100%;
}
.home-attorney-item .attorney-wrap{
    display: flex;
    width: 50%;
}
.home-attorney-list{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    background: var(--bs-grey);
}
.quotes-icon{
        position: relative;
    margin-bottom: -35px;
    z-index: -1;
}
.review-star-wrap{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 30px;
}
.review-bg{
    position: relative;
    height: 110px;
    width: 100px;
        display: flex;
    align-items: center;
    justify-content: center;
}
.review-bg p{
        padding-right: 10px;
    font-size: 26px;
    font-weight: 600;
    color: rgba(128, 201, 172, 1);
        font-family: "Manrope", sans-serif;
}
.review-bg:before{
    position: absolute;
    content:'';
    height: 100px;
    width: 100px;
    background-image: url('../img/chat.webp');
    background-size: cover;
    background-repeat: no-repeat;
}
.star-rating{
    line-height: 28px;
}
.quotes-icon svg, .quotes-icon img{
    height: 80px;
    width: 110px;
}
.total_post_count p{
    font-size: 16px;
    font-weight: 600;
    color: rgba(94, 94, 94, 1);
}
/*.home-testimonials-sec .star-rating{
    padding-bottom: 40px;
}*/
.home-testimonials-sec .container{
    position: relative;
}
.home-testimonials-sec .container:before{
        content: "";
    position: absolute;
    height: 120%;
    width: 466px;
    background-image: url('../img/shape.webp');
    background-repeat: no-repeat;
    background-size: cover;
    left: -21px;
    top: -100px;
    display: none;
}
.home-testimonials-sec .heading-section{
    padding-left: 20px;
}
.test-title{
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.testi_image_wrap img{
    border-radius: 0px 0px 70px;
}
.home-testimonials-sec .testimonial-slider .slick-arrow{
    bottom: -15px;
    z-index: 11;
}
.home-testimonials-sec .testimonial-slider .prev{
    right: 55px;
    left: inherit;
}


.home-blog-sec {
    position: relative;
}
.home-blog-sec::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    background: #80C9AC;
    height: 50%;
}
.home-blog-sec h2.heading {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}
.home-blog-sec h2.heading::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    height: 4px;
    background: rgba(255,255,255,0.3);
    width: 100px;
    transform: translateX(-50%);
}
.home-blog-sec .inner-item .post-item {
    box-shadow:0px 20px 25px rgba(0,0,0,0);
}
.home-blog-sec .post-image{
    border: 5px solid transparent;
}
.home-blog-sec .inner-item .post-item{
    background: #fff;
}
.home-blog-sec .post-image img.no-feature, .home-blog-sec .post-image img.featured-img {
    height: 280px;
}
.home-blog-sec .inner-item:hover .post-image img.no-feature, .home-blog-sec .inner-item:hover .post-image img.featured-img{
    /* transform:scale(1.2) rotate(-5deg) */;
}
.home-blog-sec .post-meta span.time {
    font-size: 15px;
    color: #b3b3b3;
    padding: 14px 15px 0;
    display: block;
}
.home-blog-sec .blog-heading {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    padding: 15px 15px;
}
.home-blog-sec .readmore-btn {
    background: #80C9AC;
    color: #fff;
    display: block;
    text-align: center;
    padding: 13px 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.home-blog-sec .inner-item:hover .readmore-btn{
    background:#000;
}
.home-blog-sec .inner-item:hover{
    box-shadow:0px 20px 35px rgba(0,0,0,0.7);
    -webkit-transition: all ease-in-out .8s;
    -moz-transition: all ease-in-out .8s;
    -o-transition: all ease-in-out .8s;
    transition: all ease-in-out .8s;
}
.home-blog-sec .inner-item:hover .post-image{
    border-color:#fff;
}

.home-blog-sec .inner-item {
    height: 100%;
    position: relative;
    padding-bottom: 70px;
        -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.team {
    overflow: hidden;
}
    .team .item {
    display: flex;
    width: 100%;
    align-items: center;
    background: #F5FBF8;
    position: relative;
}
.team .item:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 150px;
    background: #50B2AF;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
}
.team .item .attorney-detail, .team .item .attorney-img {
    width: 50%;
}
.team .item .attorney-img a{
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: block;
}
.team .item .attorney-img a img{
    transition: 0.5s;
}
.team .item .attorney-img a img:hover{
    transform: scale(1.1);
}
.team .item .attorney-detail {
    padding: 20px 20px 20px 50px;
}

.team .item .attorney-name {
    font-weight: 500;
    font-size: 26px;
    text-transform: capitalize;
    margin-bottom: 7px;
    line-height: normal;
    transition: 0.5s;
}
.team .item .attorney-name  a{
    color: #000;
}
.team .item .attorney-name a:hover{
    color: #80c9ac;
}
.team .item .attorney-img {
    position: relative;
}

.team .item .attorney-detail, .team .item .attorney-img {
    width: 50%;
}
.attorney-detail .designation{
    line-height: 28px;
}
.team .item img {
    display: block;
    width: 100%;
}
.center-btn{
    margin: 25px auto 0px;
    display: table;
}
@media (min-width:992px){
    .team .loop-item:nth-child(3n) .item,
    .team .loop-item:nth-child(4n) .item {
        flex-direction: row-reverse;
    }
    .team .item .attorney-img:after {
        width: 140px;
        height: 1px;
        background: var(--color--orange);
        position: absolute;
        content: "";
        left: -80px;
        top: 0;
        bottom: -15px;
        margin: auto;
    }
    .team .loop-item:nth-child(3n) .item .attorney-img:after, .team .loop-item:nth-child(4n) .item .attorney-img:after {
        left: auto;
        right: -70px;
    }
    .team .loop-item:nth-child(3n) .item .attorney-detail,
    .team .loop-item:nth-child(4n) .item .attorney-detail{
        padding-left: 100px;
    }
}
/*==================== Home Page CSS END ====================*/

/*==================== Footer CSS ====================*/
.map-sec{
    overflow: hidden;
    position: relative;
}
.map-sec iframe{
    height:550px;
}
.map-sec .contactinfo {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 7vw;
    max-width: 440px;
    width: 100%;
    overflow-y: scroll;
    min-height: 550px;
    height: 100%;
}
.nap-block {
    display: block;
    margin-top: 20px;
    position:relative;
}
.nap-block:first-child{
    margin-top:0;
}
.nap-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
}
.nap-icon svg, .nap-icon img{
    width: 30px;
    height: 30px;
    fill:#fff;
}
.nap-address, .nap-block .nap-text{
    padding-left: 45px;
}
.direction-link {
    color: #5e5e5e;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    border-bottom: 1px solid #fff;
    line-height: normal;
}
.direction-link:hover, .nap-block .nap-text:hover{
    color:#80c9ac;
    border-color:#80c9ac;
}
.map-iframe-list{
    margin: auto;
    display: table;
}

.map-iframe-list .map-block {
    display: none;
}
.map-iframe-list .map-block iframe, .map-iframe-list .map-block.active {
    display: block;
}
.contactinfo .footer-heading{
    padding: 40px 30px 0;
}

#footer {
    padding: 50px 0 0px;
    color: #5E5E5E;
    background: #F5FBF8;
}
.footer-heading {
    color: #000b05;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}
.footer-nav{
    justify-content: center;
    display: flex;
}
.footer-nav ul li{
    margin-bottom:5px;
    display:block;
}
.footer-nav ul li:last-child{
    margin-bottom:0px;
}
.footer-nav ul li a {
    color: #5E5E5E;
    line-height: 30px;
    display: block;
}
.footer-nav ul li a:hover, .footer-nav ul li.current-menu-item a{
    color: #80C9AC;
}
.f-des-block p{
    color: #5E5E5E;
}
.footer-address-wrapper{
    position: relative;
    margin-bottom: 25px;
}
.footer-address-wrapper img, .footer-address-wrapper svg{
    height: 30px;
    width: 30px;
    position: absolute;
    left: 0;
    top: 6px;
}
.footer-address-wrapper svg path{
    fill:#50B2AF;
}
.footer-logo{
    text-align: center;
    margin-bottom: 35px;
}
.f_add-wrap{
    padding-left: 45px;
}
.f_add-wrap p{
    max-width: 70%;
    line-height: 30px;
}
.f-logo{
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}
.copyright {
    margin-top: 50px;
    color: #666666;
    padding: 10px 0;
    border-top: 1px solid #50B2AF;
}
.copyright a{
    color: #666666;
    margin-left:5px;
}
.copyright a:hover, .page-id-3 .copyright a.privacy, .page-id-653 .copyright a.disclaimer{
    color: rgba(255,255,255,0.6);
}
.copyright a:hover{
    color: #80c9ac;
}
#menu-location-we-serve a {
    pointer-events: none;
}
/*==================== Footer CSS END ====================*/


/*==================== Blog List Page CSS ====================*/
.blog-list {
    padding-right: 60px;
}
.blog-list .postlist .blog-list-inner{
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.blog-list .postlist:last-child .blog-list-inner{
    margin-bottom:0;
}
.blog-list .post-image {
    overflow:hidden;
    position: relative;
}
.blog-list .post-image:before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 84.57%);
    top:0;
    left: 0;
    

}
.post-meta p, .post-meta a{
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}
.post-image img.featured-img {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center 30%;
    height: 420px;
    -webkit-transition: all ease-in-out .8s;
    -moz-transition: all ease-in-out .8s;
    -o-transition: all ease-in-out .8s;
    transition: all ease-in-out .8s;
    border:1px solid #ddd;
}
.post-image img.no-feature{
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 180px;
    background-position: center;
    background-color:#f1f1f1;
    height: 420px;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.blog-list-inner:hover .post-image img.featured-img{
    transform: scale(1.1);
}
.blog-list .blog-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
    display: block;
}
.blog-list .content {
    line-height: 32px;
}
.post-meta{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 15px;
    border-top: 1px solid #ddd;
}
/*==================== Blog List Page CSS END ====================*/

/*==================== Blog Details Page CSS ====================*/
.postlist-single{padding-right: 60px;}
.postlist-single h1 {font-size: 38px;}
.postlist-single h2 {font-size: 34px;}
.postlist-single h3 {font-size: 30px;}
.postlist-single h4 {font-size: 26px;}
.postlist-single h5 {font-size: 22px;}
.postlist-single h6 {font-size: 18px;}
.postlist-single iframe, .mainpage iframe {height: 420px;}

.postlist-single .addtoany_content {
    margin: 15px auto 0;
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.postlist-single .addtoany_header {
    margin: 0 10px 0 0px;
    font-size: 17px;
    color: #B0B0B0;
    font-weight: 500;
}
.postlist-single .addtoany_list a, .postlist-single .widget .addtoany_list a {
    border: 1px solid #E2E2E2;
    margin-right: 8px;
}
.postlist-single .addtoany_list a:not(.addtoany_special_service)>span {
    height: 26px;
    line-height: 26px;
    width: 26px;
    background: none !important;
    position: relative;
    top: 3px;
}
.postlist-single .site .a2a_kit.addtoany_list a:focus, .postlist-single  .addtoany_list a:hover, .postlist-single .widget .addtoany_list a:hover{
    border: 1px solid #80C9AC;
}
.gradient-bg{
    position:relative
}
.gradient-bg::before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.08) 100%);
    bottom: 0;
    left: 0;
    right: 0;
    height: 450px;
}
.help-sec.space-pd.gradient-bg::before{
    height: 100%;
}
.att-wrap img{
    height: 350px;
    width: 100%;
    object-fit: cover;
}
/*==================== Blog Details Page CSS END ====================*/

/*==================== About Page CSS ====================*/
.light-gray-bg{
        background-color: #f1f1f1;
    }
.radius-right {
    border-radius: 0 170px 0 0;
}
.radius-left {
    border-radius: 170px 0 0 0;
}
.mission-slider-image img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
    display: block;
}
.mission-slider-image img:hover {
    transform: scale(1.1);
}
.mission-slider-content {
    padding: 0 15px 15px;
}
.mission-slider-image {
    margin-bottom: 20px;
    overflow: hidden;
}
.mission-title{
    font-size: 30px;
}
ul.slick-dots li {
    width: 10px;
    height: 10px;
    background: #305384;
    border-radius: 50%;
    margin: 5px;
}
ul.slick-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    bottom: 0;
}
.slick-dotted.slick-slider {
    padding-bottom: 30px;
    margin-bottom: 0 !important;
}
ul.slick-dots li button {
    display: none;
}
ul.slick-dots li.slick-active {
    opacity: 0.35;
}
.mission-slider .slick-slide {
    padding: 0 10px;
}
.mission-slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}
.mission-list-wraper{
    margin-top: 40px;
}
/*==================== About Page CSS END ====================*/

/*==================== Team Page CSS ====================*/
.team-listing{
    position: relative;
    margin-bottom: 45px;
    transition: 0.5s;
    overflow: hidden;
}
.team-listing .img-box img {
    width: 100%;
    height: 480px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    -webkit-transition: .5s;
    transition: .5s;
}
.team-details-wrap{
    padding: 20px 15px;
}
.team-title a{
    font-weight: 600;
    color: #000;
    position: relative;
    transition: all 0.3s ease-in-out;

}
.team-title a:before {
    content: "";
    background: #305384;
    width: 0;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out;
     display: inline-block;
}
.team-listing .team-title:hover a {
    color: #fff;
    padding: 0px 5px !important;
}
.team-listing .team-title:hover a:before {
    width: 100%;
    left: 0;
}
.team-deg{
    font-weight: 500;
    color: #5B5B5B;
    font-size: 24px;
}
.team-hover-details{
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 11;
    top: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    padding: 30px 25px;
    padding-bottom: 0;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 1), rgba(255, 255, 255, .55), rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
    transition: .5s;
    opacity: 0;
}
.team-listing:hover .team-hover-details{
    top: 0;
    opacity: 1;
}
.team-appointemnt-sec{
    position: relative;
    background: #305384;
    color: #fff;
}
.team-appointemnt-sec:before{
    content: '';
    position: absolute;
    height: 100%;
    width:100%;
    background-image: url('../img/pattren.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.appointemnt-wrapper .heading{
    color: #fff;
}
.team-content-wrap .designation{
    color: #5B5B5B;
    font-size: 24px;
}
.appointemnt-wrapper a:hover{
    background: #000;
    border:2px solid #000;
}
/*==================== Team Page CSS END ====================*/

/*==================== FAQS Page CSS ====================*/
.accordion-item {
    background-color: #fff;
    border: 1px solid #738EA4;
}
.accordion-item:first-of-type, .accordion-item:last-of-type{
    border-radius: 0px !important;
}
.accordion-item .accordion-button {
    background: 0 0;
    padding: 25px 80px 25px 20px;
    font-weight: 600;
    font-size: 22px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button[aria-expanded=true]:before {
    content: '';
    position: absolute;
    transform: rotate(180deg);
}
.accordion-button:before{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background-position: center;
    right: 15px;
    transition: .0s;
    background: url("/wp-content/uploads/2025/06/down-arrow-active.png") no-repeat center;
    filter: brightness(0);
}
.accordion-button::after{
    display: none;
}
button.accordion-button[aria-expanded="true"] {
    border-bottom: none;
}
.accordion-button:not(.collapsed){
    box-shadow: none;
}
.accordion-body ul li{
    position: relative;
    padding-left: 35px;
}
.accordion-body ul li:before{
    content:'';
    position: absolute;
    background-image: url(../img/pointer.svg);
    height: 25px;
    width: 35px;
    background-size: 28px;
    background-repeat: no-repeat;
    top: 3px;
    left: 0;
}
.accordion-body {
    padding: 0rem 4.75rem 1rem 1rem;
}
/*==================== FAQS Page CSS END ====================*/


/*==================== Newsletter Page CSS ====================*/
.newsletter-listing{
    padding: 15px;
    border: 1px solid #A5A5A5;
    margin-bottom: 25px;
}
.newsletter-image a{
    overflow: hidden;
    display: block;
}
.newsletter-image img.featured-img {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: center;
    background-color: #f1f1f1;
    height: 230px;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.newsletter-image img.no-feature {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 180px;
    background-position: center;
    background-color: #F5FBF8;
    height: 230px;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.newsletter-image a:hover img{
    transform: scale(1.2);
}
.news-title{
    font-size: 25px;
    font-weight: 500;
    line-height: 34.15px;
}
.newsletter-content{
    text-align: center;
    padding: 35px 0px 15px;

}
.newsletter-content a{
    text-transform: uppercase;
    color: #305384;
    font-weight: 600;
    padding-top: 10px;
    display: block;
    transition: 0.5s;
}
.newsletter-content a:hover{
    color: #80c9ac;
}
/*==================== Newsletter Page CSS END ====================*/

/*==================== Static Page CSS ====================*/
.mainpage h1 {font-size: 40px;color: #003155;padding-bottom: 15px;}
.mainpage h2 {font-size: 35px;color: #003155;padding-bottom: 15px;}
.mainpage h3 {font-size: 32px;color: #003155;padding-bottom: 15px;}
.mainpage h4 {font-size: 30px;color: #003155;padding-bottom: 15px;}
.mainpage h5 {font-size: 26px;color: #003155;padding-bottom: 15px;}
.mainpage h6 {font-size: 20px;color: #003155;padding-bottom: 15px;}
blockquote {
    background: #f1f1f1;
    padding: 20px 20px;
    border-left: 8px solid #80C9AC;
    font-style: italic;
}
.mainpage ul{
    margin-bottom:25px;
    list-style: none;
    padding-left: 0px;
}
.postlist-single ul, .ul_list ul{
    margin-bottom:25px;
    list-style: disc;
    padding-left: 20px;
}
.postlist-single ul, .ul_list ul{
    margin-bottom:25px;
    list-style: disc;
    padding-left: 20px;
}
.mainpage ul li ul, .postlist-single ul li ul, .linked-list ul li ul{
    margin-bottom:8px;
    margin-top:8px;
}
.mainpage ul li, .postlist-single ul li, .linked-list ul li  {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}
.mainpage ul li::before, .postlist-single ul li::before, .linked-list ul li::before {
        position: absolute;
    content: "";
    left: 5px;
    top: 10px;
    width: 15px;
    height: 15px;
    background-image: url(../img/tick.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}
.mainpage ul li a, .postlist-single ul li a, .postlist-single a, .postlist-single ol li a, .mainpage a{
    color:#80C9AC;
    font-weight: 600;
}
.mainpage ul li a:hover, .postlist-single ul li a:hover, .postlist-single a:hover, .postlist-single ol li a:hover, .mainpage a:hover{
    color:#000;
}
.mainpage ol, .postlist-single ol {
    list-style-type: none;
    counter-reset: ordered;
    margin: 0 0 20px;
    padding: 0;
}
.mainpage ol li, .postlist-single ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}
.mainpage ol li:last-child, .postlist-single ol li:last-child{
    margin-bottom:0;
}
.mainpage ol li::before, .postlist-single ol li::before {
    content: counter(ordered);
    counter-increment: ordered;
    position: absolute;
    left: 0;
    top: 0;
}
/*==================== Static Page CSS END ====================*/

/*==================== Appointment Page CSS ====================*/
.time-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
}
.time-wrap span{
    width: calc(100% / 3);
}
.time-wrap span select{
    width: 100%;
    border: none;
    border-bottom: 1px solid #959595;
    padding: 12px 12px 20px 0;
    color: #959595;
    outline: none;
    border-radius: 0;
    background-color: transparent;
}

/*==================== Appointment Page CSS END ====================*/

/*==================== Testimonial Page CSS ====================*/
.review-item{
    padding: 50px 0px;
    border-bottom: 1px solid #ddd;
}
.review-item p{
    color: #000;
    font-size: 18px;
}
.review-lists .col-lg-12:first-child .review-item{
    padding-top: 0px;
}
.review-lists .col-lg-12:last-child .review-item{
    padding-bottom: 0px;
}
.star-rating span{
    font-size: 27px;
    color: #F4C20D;
}
.review-item .title{
    font-size: 22px;
    font-weight: 500;
    color: #000;
}
/*==================== Testimonial Page CSS END ====================*/
/*==================== Services Page CSS ====================*/
.s_list:nth-child(odd) .service-image-wrap img{
    border-radius: 140px 0px 0px 0px;
}
.s_list:nth-child(even) .service-image-wrap img{
    border-radius: 0px 0px 140px 0px;
}
.service-listing{
    margin-top: 45px;
}
.service-listing a.service_title_wrap{
    font-size: 30px;
    max-width: 70%;
    display: block;
    margin-top: 20px;
    color: #000;
}
.service-listing a.service_title_wrap:hover{
    color: #80c9ac;
}
.service-image-wrap{
    overflow: hidden;
    display: block;
}
.service-image-wrap img{
    transition: 0.5s;
    height: 100%;
    width: 100%;
}
.s_list:nth-child(odd) .service-image-wrap {
    border-radius: 140px 0 0;
}
.s_list:nth-child(even) .service-image-wrap {
    border-radius: 0 0 140px;
}
.service-image-wrap img:hover{
    transform: scale(1.1);
}
.related-services-list-wrap{
    background: #003155;
}
.other_services_list{
    height: 100%;
}
.other_services_list a{
    padding: 20px 20px;
    border: 1px solid #fff;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 18px;
    font-size: 18px;
    height: calc(100% - 25px);
    margin-top: 25px;
    font-size: 18px;
    height: calc(100% - 25px);
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: 0.5s;
}
.other_services_list a:hover{
    border: 1px solid #000;
    color: #fff;
    background: #000;
}
/*==================== Services CSS END ====================*/
.contact-page .contact-page-wrapper .heading-section{
    margin-bottom: 35px;
}
/*==================== services details CSS ====================*/

.mh-icon-right:before{
    content: '🡢';
    position: absolute;
    height: 36px;
    width: 36px;
    color: #fff;
    top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  
}
.mh-icon-left:before{
   content: '🡠';
    position: absolute;
    height: 36px;
    width: 36px;
    color: #fff;
    top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; 
}
/*==================== services details CSS END====================*/
/*==================== Thank You CSS ====================*/
.thankyou-wrap {
    padding: 25px 30px;
    background: #062f54;
    border-radius: 10px;
}
.thankyou-wrap p {
    color: #fff;
}
.thankyou-wrap a {
    color: #fff;
    text-decoration: underline;
    transition: 0.5s;
}
.thankyou-wrap a:hover{
    color: #80c9ac;
    text-decoration: none;
}
/*==================== Thank You CSS END ====================*/
.contnet-error form{
    padding: 50px 50px;
    background: #f5fbf8;
}
/*================ IE CSS =================*/
@media all and (-ms-high-contrast:none){
.menu-top::before{
    bottom:12px;
}
.search-icon{
    margin-top:-13px;
}
.team-listing .img-box .hover-box p{
    background:none;
    color:#fff;
}
}
/*================ IE CSS END =================*/


.helpful-forms-details a{
    text-decoration: underline;
}
.rates-details {
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px 10px;
    height: 100%;
}
.insurance-section{
    background: #f5f5f5;
}
.page-id-1015  .mainpage img {
    width: auto;
    margin-right: 15px;
}
.neuro-content-wrap iframe{
    width: 100%;
    height: 550px;
}

/*================ Feedback CSS =================*/
.mission-slider-box{
    box-shadow: 0px 18px 34px 0px #0000001A;
    margin-bottom: 25px;
    height: calc(100% - 25px);
}
.internal-page-menu-section{
    padding: 50px 0px;
    background: #f5f5f5;
}
.page-menu-wrap ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:25px;
    flex-wrap: wrap;
}
.neuro-content-section{
    background: #f5f5f5;
}
@media (max-width:576px){
    .page-menu-wrap ul{
        gap:15px;
    }
}
/*
.services-list-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.services-list-wrap{
    text-align: center;
        height: 100%;
        height: 100%;
    width: calc(100% / 4);
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.services-list-wrapper .services-list-wrap:nth-child(4n){
    border-right: none;
}
.services-list-wrapper .services-list-wrap:nth-last-child(-n+4){
    border-bottom: none;
}
.services-list-wrap a{
    padding: 10px 15px;
    line-height: 28px;
        height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events:none;
}
*/
.services-list-wrapper{
    margin: auto;
    display: block;
}
.services-list-wrapper ul{
/*    column-count: 2;*/
/*    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;*/
padding-left: 20px;
}
.services-list-wrapper ul li{
    position: relative;
    padding-left: 35px;
}
.services-list-wrapper ul li:before{
    content:'';
    position: absolute;
    background-image: url(../img/pointer.svg);
    height: 25px;
    width: 35px;
    background-size: 28px;
    background-repeat: no-repeat;
    top: 3px;
    left: 0;
}
.second-content-section{
    background: #f5f5f5;
}
.quotes-icon {
    display: none;
}

ul.menu-top li:last-child {
    padding-right: 25px;
}


@media screen and (max-width: 1300px) {
    .ph-number a {
font-size: 12px !important;
}
}

.banner-home .banner-des {
    font-size: 20px;
}
.hr-list a{
    background-color: #80c9ac;color: white;
    border: 1px solid #80c9ac;margin: 10px 20px;
    padding: 12px 30px;text-align: center;
    min-width: 250px;font-size: 18px;display: block;
}
.hr-list a:hover{
    background-color: transparent;color: #80c9ac;
}
.hr-list .widget-title {
margin-bottom: 20px;
}
.hr-list ul{
    display: flex;flex-wrap: wrap;
    justify-content: center;
}
html {
    scroll-behavior: smooth;
  }

/* Feedback Css */
.appointment-image-wrap img{
    margin:auto;
    display:block;
}
.testimonial-page.ti-widget.ti-goog .ti-review-item>.ti-inner, .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
    background-color: #80c9ac !important;
    border-radius: 0;
    color: #fff;
    border: 2px solid #80c9ac;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
    position: relative;
}
.ti-widget.ti-goog .ti-widget-container .ti-name {
    font-size: 16px !important;
    color: #020506 !important;
}
.ti-widget.ti-goog .ti-review-item>.ti-inner {
    padding-bottom: 44px !important;
}
.testimonial-page .ti-widget.ti-goog .ti-review-item {
    border-bottom: 0px solid #ddd;
    padding-bottom: 16px !important;
}
.testimonial-page .ti-widget.ti-goog .ti-review-item>.ti-inner {
     display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial-page .ti-widget.ti-goog .ti-review-header
{
        order: 3;
}
.testimonial-page .ti-review-text-container {
    padding: 20px 0;
}
.testimonial-page .ti-widget.ti-goog .ti-read-more {
    padding: 5px 0 20px;
}
.testimonial-page .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
      background-color: #80c9ac !important;
    border-radius: 0px;
    color: #fff;
    border: 2px solid #80c9ac !important;
    font-size: 17px;
    padding: 13px 22px;
}
.testimonial-page .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button:hover{
    background-color: #305384 !important;
    border: 2px solid #305384 !important;
}
.testimonial-page .ti-widget.ti-goog .ti-review-item:hover {
    transform: translate(0, 0px) !important;
}
@media only screen and (min-width:1135px){
    .ti-reviews-container-wrapper .ti-review-item.source-Google:nth-child(3) .ti-read-more {
       visibility: hidden !important;
    display: block;
    padding: 0;
}
}

.medication-image-wrap:before{
    content: '';
    position: absolute;
    height: 300px;
    width: 300px;
    border:1px solid #50B2AF;
    left: 0;
    top:0;
    border-radius: 170px 0px 0px 0px;
    z-index: -1;
}
.medication-image-wrap img{
    padding: 20px 0px 0px 20px;
    border-radius: 170px 0px 0px 0px;
}
 .galleryimg img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
}
.services-loop ul{
    padding-bottom: 30px;
}