
/******commom css******/
:root {
    --white: #ffffff;
    --black: #0f0e13;
    --graybg: #fcfcfc;
    --darkbg: #18171f;
    --green: #01ca93;
    --lightbg: #fcfafb;
}

body {
    padding: 0px;
    margin: 0px;
    font-family:"Quicksand", sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Chrome, Safari */
    text-rendering: optimizeLegibility; /* Firefox */
    font-weight: 400;
    color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-weight: 700;
    font-size: 46px;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.4;
    margin: 0;
}

p {
    word-break: break-word;
    margin: 0;
}

button,
input,
optgroup,
select,
textarea {
    font-family: Poppins, sans-serif;
}

button:focus {
    outline: none !important;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    color: var(--green);
}
a, a:hover {
    text-decoration: none;
}

.btn {
    font-weight:600;
    padding: 10px 25px;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    border-width: 2px;
}

.btn-primary:hover {
    background: #219776;
    border-color: #219776;
    color: var(--white);
}

.btn-primary:focus, .btn-primary:active {
    box-shadow: none !IMPORTANT;
    background: #219776;
    border-color: #219776;
    color: var(--white);
}




/**********common css**********/


/* header */

header {
    z-index: 999;
    width: 100%;
    padding: 0px 0;
    /*background: #ffffff;*/
    transition: all 0.2s ease-in-out 0.2s;
    /*-webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);*/
    position: fixed;
}



header {
    z-index: 999;
    width: 100%;
    padding: 0px 0;
    background: var(--white);
    transition: all 0.2s ease-in-out 0.2s;
    /*-webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);*/
    position: static;
}

header.fixed {
    -webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    position: fixed;
    background: var(--white);
}

header .logo {
    display: flex;
    text-transform: capitalize;
    font-weight: 900;
    color: var(--green);
    font-size: 24px;
    align-items: center;
    gap: 20px;
    margin: 0;
    line-height: 24px;
}


header .logo img {
    max-width:100px;
    margin: 0;
    display: block;
}

header .logo span {
    display: none;
}


.NavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

header .mainNav {
    display: flex;
    align-items: center;
}

header .mainNav li {
    display: block;
    list-style-type: none;
    font-size: 16px;
    padding: 0 15px;
    position: relative;
}

header .mainNav li a {
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    width: 100%;
    align-items: center;
    text-transform: none;
    font-size: 15px;
    background: transparent;
}





header .mainNav li a:hover {
    color: var(--green);
}

header .mainNav li.active a {
    color: var(--green);
}


header .mainNav li .subMenu {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    max-height: 0;
    display: block;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    position: absolute;
    background: #ffffff;
    min-width: 230px;
    border: 1px solid #eee;
    top: 100%;
    z-index: 9;
}

header .mainNav li .subMenu li {
    width: 100%;
    display: inline-block;
    padding: 0;
    margin: 0;
    height: inherit;
}


header .mainNav li .subMenu li a {
    padding: 8px 15px;
    border-radius: 0;
}

header .mainNav li .subMenu li a:hover {
    background: var(--green);
    color: #ffffff;
}

header .mainNav li:hover .subMenu {
    max-height: 400px;
    opacity: 1;
    min-width: 230px;
    top: 100%;
    overflow-y: auto;
}


header .mainNav li:last-child {
    display:none;
}


header .header-top-left .menu-toggle {
    display: none;
}

header .mainNav li.mobile-top {
    display: none;
}

header span.submenu-icon {
    display: none;
}
.main-header {
    border-bottom: 4px solid var(--green);
}
.main-header .top-right {
    display: flex;
    grid-gap: 50px;
}
header .NavBar {
    border-bottom: 3px solid var(--green);
    background: #fff;
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
    position: fixed;
    z-index: 9;
    width: 100%;
    max-width: 1140px;
    padding: 10px 20px 10px 15px;
    box-sizing: border-box;
    left: 50%;
    transform: translate(-50%, 0);
}
header .main-header .NavBar {
    border: none;
    box-shadow: none;
    position: static;
    padding: 10px 0;
    transform:inherit;
}
header .social-icon {
    display:flex;
    grid-gap:10px;
}
header .social-icon a {
    background: var(--green);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
header .NavBar .call-icon a {
    display: flex;
    align-items: center;
    grid-gap: 5px;
}

.call-icon a > div span {
    display: block;
}

header .NavBar .call-icon a img {
    max-width: 40px;
}

header .NavBar .call-icon span {
    color: #999;
    font-size: 12px;
    font-weight: 600;
}

header .NavBar .call-icon div {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
}


/******header end********/



/**********footer start**************/
.Footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}


.footer-sec h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    font-family: Poppins, sans-serif;
}

.footer-sec p {
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}

.footer-sec > p {
    padding-left: 0;
    margin: 8px 0 0;
}

.footer-sec ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-sec ul li {
    width: 50%;
}

.footer-sec a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}
.footer-sec a:hover {
    color: var(--green);
}
.footer-sec .address p {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.footer-sec .address a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 18px;
    margin: 15px 0;
}

.footer-sec .address a i {
    background: var(--green);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-sec .f-logo {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px;
    display: block;
}

.footer-sec .f-logo img {
    max-width: 150px;
}

.footer-sec .social-icon {
    display: flex;
    grid-gap: 10px;
    margin-top:20px;
}

.footer-sec .social-icon a {
    background: var(--green);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.footer-sec .social-icon a:hover {
    background: #219776;
}

.copyright {
    background: var(--darkbg);
    position: relative;
    margin-top: 50px;
}

.copyright-inner {
    display: flex;
    align-items: center;
    padding: 15px 0;
    justify-content: space-between;
    margin-top: 25px;
}

.copyright-inner p {
    font-size: 12px;
    color: var(--white);
    font-weight: 400;
}

.copyright-inner p a {
    color: var(--white);
}

.copyright-inner ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copyright-inner ul li a {
    color: var(--white);
    font-weight: 400;
}

.copyright-inner ul li a {
    color: var(--white);
    font-weight: 500;
    border: 2px solid var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.copyright-inner ul li a:hover {
    color: var(--green);
}

/************ footer end****************/



/***************** fixed icons ****************/

.scrollTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 10px;
    background-color: var(--green);
    padding: 6px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
}

#stop.scrollTop img {
    margin-bottom: 7px;
    max-width: 20px;
}





/********************** content css start****************************/

.main-banner {
    background: url(../images/gastro-banner.jpg) no-repeat;
    background-size: cover;
    position: relative;
    padding: 170px 0 150px;
}



.main-banner h1 {
    color: var(--white);
    margin: 0 0 20px;
    font-size: 60px;
    text-align: left;
}

.main-banner h1 span {
    color: var(--green);
}


.main-banner p {
    color: var(--white);
    margin: 30px 0 40px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    max-width: 500px;
}



.ContentSection {
    padding: 80px 0;
    overflow: hidden;
}

.about-sec {
    background: url(../images/welcome-image.jpg) no-repeat;
}
.about-block {
    max-width: 500px;
}
.about-sec .h-rating {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.about-sec .h-rating > div {
    background: #eeecfa;
    color: var(--green);
    font-weight: 700;
    font-size: 24px;
    padding: 12px 12px;
    border-radius: 0 20px 0 20px;
}

.about-sec .h-rating p {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.about-sec .h-rating p span {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    display: block;
}

.about-sec h2 {
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-sec p {
    font-weight: 400;
    margin-bottom: 30px;
}

.about-sec ul {
    margin-bottom: 40px;
}

.about-sec ul li {
    width: 100%;
    font-weight: 700;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-sec ul li:before {
    background: url(../images/sprite-image.png) no-repeat;
    content: "";
    width: 35px;
    height: 26px;
    position: absolute;
    left: 0;
    background-position: -255px -12px;
}



.owl-carousel .owl-nav {
    margin: 20px 0 0;
    text-align:center;
}


.owl-carousel .owl-nav button.owl-prev {
    background: url(../images/left-arrow.png) no-repeat;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background-size: 100% 100%;
    margin: 0 10px;
}
.owl-carousel .owl-nav button.owl-prev:hover {
    background: url(../images/left-arrow-fill.png) no-repeat;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background-size: 100% 100%;
}

.owl-carousel .owl-nav button.owl-next {
    background: url(../images/right-arrow.png) no-repeat;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background-size: 100% 100%;
}
.owl-carousel .owl-nav button.owl-next:hover {
    background: url(../images/right-arrow-fill.png) no-repeat;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background-size: 100% 100%;
}




.recent-articles h2 {
    margin-bottom: 40px;
}


.recent-articles .article-block {
    padding: 0;
    color: var(--black);
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
    margin: 10px;
    display: flex;
}

.recent-articles .article-block img {
    max-height: 230px;
    object-fit: cover;
    max-width: 45%;
    min-height:200px;
}

.article-block .articleDesc {
    padding: 25px;
    background: var(--white);
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.articleDesc h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 20px;
    margin: 0 0 10px;
    font-weight:600;
}


.recent-articles .article-block .btn {
    border-color: var(--green);
    color: var(--green);
    max-width: 170px;
}

.article-block .articleDesc p {
    margin: 15px 0 20px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    max-height: 45px;
}

.article-block .articleDesc div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-block .articleDesc div > a {
    color: var(--green);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.article-block .articleDesc div > a:hover {
    color: var(--green);
    text-decoration:underline;
}

.article-block .articleDesc .date {
    position: relative;
    padding-left: 40px;
    font-weight: 600;
}

.article-block .articleDesc .date:before {
    background: url(../images/sprite-image.png) no-repeat;
    content: "";
    height: 24px;
    width: 30px;
    position: absolute;
    left: 0;
    background-position: -210px -14px;
}


.recent-articles a.btn.btn-primary {
    min-width: 200px;
    margin: 35px 0 0;
}

.contact-info {
    background: var(--green);
    padding: 60px 0;
}

.contact-info-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-info-inner > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    border-right: 1px solid var(--black);
    padding: 0 30px;
}

.contact-info-inner > div:last-child {
    border-right: none;
}

.contact-info-inner > div a {
    color: var(--white);
}

.contact-info-inner > div span {
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    height: 30px;
    width: 30px;
}

.testimonial {
    background: var(--lightbg);
}

.testimonial h2 {
    margin-bottom: 40px;
}

.testimonial-top {
    background:var(--white);
}
.testimonial-top {
    background: var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 50px 50px 70px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom:80px;
}
.testimonial-top > img {
    position: absolute;
    bottom: -30px;
    background: var(--green);
    padding: 15px;
}
.testimonial-top h2 {
    line-height: 1.2;
    font-size:40px;
    margin: 0;
    border-right: 1px solid var(--green);
    margin-right: 30px;
    padding-right:30px;

}
.testimonial-top p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
	max-width:600px;
}

.testimonialBlock {
    padding: 0 50px;
    margin-bottom:20px;
}

.testimonialBlock h4 {
    font-weight: 700;
    margin: 0 0 20px;
    font-size: 20px;
    border-bottom: 1px solid;
    padding-bottom: 20px;
    position:relative;
}
.testimonialBlock h4 span {
    position:relative;
}
.testimonialBlock h4 span:after {
    content: "";
    position: absolute;
    background: var(--black);
    height: 8px;
    width: 100%;
    left: 0;
    bottom: -26px;
}
.testimonialBlock p {
    line-height: 24px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}


.fourBlock {
    padding: 0;
    position: relative;
    top: -70px;
}
.fourBlock .checkUp-block {
    background: url(../images/book-apointment-bg.jpg) no-repeat;
    background-size:cover;
    color:var(--white);
}
.checkUp-block .checkUp-block-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding:10px;
}
.checkUp-block .checkUp-block-inner .btn {
    max-width: 220px;
    background: var(--black);
    border-color: var(--black);
}
.checkUp-block .checkUp-block-inner h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}
.fourBlock-inner {
    background: #f8f8f8;
}

.fourBlock .block {
    text-align: center;
    padding: 20px;
}

.fourBlock .block img {
    max-width: 100px;
    margin: 0 auto 15px;
    display: block;
    background: #fff;
    padding:15px;
    box-sizing: border-box;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    min-height:95px;
}
.fourBlock .block h2 {
    font-weight: 700;
    font-size: 36px;
}
.fourBlock .block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services {
    background: var(--black);
}
.services h2 {
    margin-bottom:20px;
    color:var(--white);
}
.services p.text-center {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 40px;
}
.services .service-block {
    background: none;
    position: relative;
    overflow:hidden;
    margin-bottom:20px;
    display:block;
    color:#fff;
}
.services .service-block:after {
    content: "";
    background: rgba(0,0,0,0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.service-block img {
    height:230px;
    object-fit: cover;
    width: 100%;
    display:block;
    transition:all 1s;
}
.service-block:hover > img {
    transform: scale(1.3);
}
.service-block .serviceDesc {
    padding: 25px;
    color: var(--white);
    position: absolute;
    bottom: 0;
    z-index:1;
    width:100%;
}
.service-block .serviceDesc h4 {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}
.service-block .serviceDesc p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 45px;
    padding-right: 25px;
}

.service-block .serviceDesc .arrow-btn {
    position: absolute;
    right: 30px;
    bottom: 15px;
    color: var(--green);
}
.service-block .serviceDesc .arrow-btn:hover, .service-block:hover .arrow-btn, .service-block:hover h4 {
    color: var(--green);
}



/**************************content css end***********************************/



/**********inner banner css***************/
.banner-mask {
    background-repeat: no-repeat;
    background-position: center;
    height: 280px;
    background-size: cover;
}

.banner-mask.mobile-banner {
    display: none;
}

/************inner banner css end**********/


/**********breadcrumb css***********/
.banner-cont-inn {
    background: #e6ebda;
    padding:15px 0px;
    margin-bottom: 20px;
}

.breadcrumb {
    background: none;
    padding: 0px;
    margin: 0px;
}

.breadcrumb li {
    padding: 0px 5px;
    font-size: 14px;
    font-weight:600;
}

.breadcrumb a {
    color: var(--green);
    font-size: 14px;
}
.breadcrumb li img {
    width: 6px;
    height: 10px;
}

.breadcrumb .current-page {
    color: #212223;
}

/****************breadcrumb css end*************************/


/********************content css***********************/
.innerPage {
    overflow: hidden;
}
.container.innerPage {
    padding-top: 20px;
}

.container.innerPage:last-child {
    padding-bottom: 20px;
}

.WhatSays h2 {
    margin-bottom: 50px;
}



.innerPage p {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
}

.innerPage h2 {
    font-size: 28px;
    padding-bottom: 20px;
    font-weight: 600;
}

.innerPage h3 {
    font-size: 24px;
    padding-bottom: 10px;
    font-weight: 600;
}

.innerPage h4 {
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 600;
}

.innerPageList {
    margin-left: 20px;
    padding-bottom: 15px;
}

.innerPageList li {
    background: url(../images/arrow-srushti.png) no-repeat left 2px;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    padding-left: 25px;
    margin-bottom: 10px;
}
.innerPage .videos-detail h3 {
    font-size: 20px;
    line-height: 1.2;
    margin: 10px 0 0;
}

.videos-hold {
    margin-bottom: 20px;
}
.innerPage h2.accordion-header {
    padding: 0;
}
.accordion-button:not(.collapsed) {
    color: var(--green);
    background-color: #f7f7f7;
}

.mid-article {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.mid-article a {
    color: #032237;
}

.contact-page .location-list h4 {
    color: #212223;
    font-weight: 500;
    margin-bottom: 10px !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px !important;
    font-weight: 600;
}

.loc-icon {
    display: block;
    margin-bottom:15px;
    padding-left: 30px;
    padding-top: 0px;
    position:relative;
}

.contact-page .adds.loc-icon:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/loaction-images.png) no-repeat top left !important;
    position: absolute;
    left: 0;
    top:7px;
}

.email.loc-icon, .loc-icon.phone, .loc-icon.timing {
    background: url(../images/loaction-images.png) no-repeat;
    height: auto;
}

.loc-icon.phone {
    background-position: 0px -27px;
}

.email.loc-icon {
    background-position: 0px -55px;
}

.contact-page .view-map {
    margin: 0;
    background: var(--green);
    color: #fff;
    padding: 10px 25px;
}

.contact-page .sidebar {
    background: #f8f8f8;
    padding: 25px;
    border: 1px solid #ebebeb;
    margin-top: 5px;
}

.contct-sidebar input, .contct-sidebar textarea, .contct-sidebar .g-recaptcha {
    margin-bottom: 10px;
    border-radius:0;
}

.modal-target {
    width: 100%;
    object-fit: cover;
    object-position: top;
    max-height: 190px;
    min-height: 190px;
    margin: 0 0 20px;
}


.modal-gallery {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    top: 15%;
    width: 85%;
    height: 100%;
    margin: 0 auto;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8);
}

.modal-gallery .modal-close {
    position: absolute;
    top: 0%;
    right: 2%;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-gallery .modal-content, .modal-gallery .modal-caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.modal-gallery .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    opacity: 1 !important;
    max-width: 960px;
}

.modal-gallery .modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1em;
    margin-top: 32px;
}

.ServicesPage .Services-box {
    background: #eff3ff;
    padding: 15px;
    margin-bottom: 30px;
    position: relative;
}

.ServicesPage .Services-box img {
    margin: 10px 0;
    height: 90px;
}

.specialize-box-title {
    font-weight: 700 !important;
    font-size: 18px !important;
}

.ServicesPage .btn {
    text-transform: capitalize;
}

.ServicesPage .btn.btn-primary {
    margin: 10px 0;
}

.ServicesPage .btn.btn-primary a {
    color: #fff;
}


.innerPage .ArticleBlock > img {
    width: 100%;
}
.ArticleBlock {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.ArticleBlock > img {
    min-height: 150px;
    max-height: 150px;
    object-fit: cover;
}

.ArticleBlock .ArticleItem {
    padding: 20px;
}

.ArticleBlock .ArticleItem h4 {
    font-size: 16px;
    font-weight: 600;
    min-height: 45px;
    overflow: hidden;
    max-height: 45px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.ArticleBlock .ArticleItem .date {
    margin: 10px 0;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    color: #666;
}

.ArticleBlock .ArticleItem .article-detail {
    color: #032237;
    margin-bottom: 10px;
    overflow: hidden;
    max-height: 65px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    font-weight: 500;
}

.ArticleBlock .ArticleItem a {
    color: var(--green);
    font-weight: 600;
}

.articles-details .ArticleBlock {
    border: none;
    border-radius: 0;
}

.articles-details .ArticleBlock > img {
    min-height: inherit;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.articles-details .ArticleBlock .ArticleItem {
    padding: 10px 0 0;
}

.articles-details .ArticleBlock .ArticleItem .date {
    margin: 10px 0 0;
}

.articles-details .ArticleBlock .ArticleItem .article-detail {
    overflow: visible;
    max-height: inherit;
    text-overflow: inherit;
    display: block;
}
.laboratory-services ol {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
}

.laboratory-services ol li {
    list-style: none;
    color: #000;
    font-size: 15px;
    width: calc(33.33% - 20px);
    background: #d8f3ec;
    border-radius: 4px;
    padding: 5px 10px;
    font-weight: 600;
    min-height: 55px;
    display: flex;
    align-items: center;
}
.laboratory-services ol li:nth-child(2n) {
    background: #d8e7ed;
}

/********************Inner pages css end***********************/






/*********************************Responsive Css*************************************/

@media (max-width:1199px) {
    header .NavBar {
        max-width: 960px;
    }
    header .mainNav li {
        padding: 0 10px;
    }

    header .mainNav li a {
        font-size: 15px;
    }

    header .logo {
        font-size: 16px;
    }

    .about-content h3 {
        font-size: 36px;
    }

    .contact-info-inner > div {
        padding: 0 15px;
    }

    .team-1 .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .testimonial .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }



    .top-inner {
        justify-content: center;
        grid-gap: 10px;
        flex-wrap: wrap;
    }

    .we-offer .offerBlock h4 {
        font-size: 19px;
        padding: 10px 20px;
        margin: 25px 0;
    }

    .we-offer .offerBlock .offerDesc {
        padding: 0 20px;
    }
}

@media (max-width:991px) {

    header {
        padding: 0;
    }
    header .logo img {
        max-width: 60px;
    }

    header .NavBar {
        padding:0;
        position: static;
        border: none;
        max-width: 100%;
        transform: inherit;
    }
    header .main-header .NavBar {
        padding: 10px 0;
    }

    header.fixed {
        position: fixed;
    }

    header .header-top-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    header .header-top-left .menu-toggle {
        display: block;
        background: none;
        width: auto;
        height: 26px;
        margin: 0;
        color: var(--green);
    }

    header ul.mainNav li.mobile-top {
        display: block;
        padding: 10px;
        position: sticky;
        top: 0;
        z-index: 1;
        background: #fff;
    }

    header .mainNav .mobile-top a.logo {
        color: var(--green);
    }

    header .mainNav .mobile-top a.logo:hover {
        background: none;
    }

    header ul.mainNav li.mobile-top .m-top-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    header ul.mainNav li.mobile-top .m-top-inner a.close {
        float: none;
        width: auto;
        opacity: 1;
        text-shadow: none;
        color: var(--green);
    }

    header ul.mainNav li.mobile-top .m-top-inner a.close:hover {
        background: none;
    }

    header ul.mainNav {
        float: none;
        width: 100%;
        display: block;
        position: fixed;
        top: 0;
        background: #fff;
        z-index: 99;
        max-height: 100vh;
        overflow: auto;
        min-height: 100vh;
        left: -100%;
        -moz-transition-property: all;
        -o-transition-property: all;
        -webkit-transition-property: all;
        transition-property: all;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    }

    header ul.mainNav + ul {
        display: none;
    }

    header ul.mainNav.active {
        left: 0;
    }

    header ul.mainNav li {
        font-size: 16px;
        display: block;
        padding: 15px 20px;
    }

    header .mainNav li {
        padding: 15px 20px;
        margin: 0;
        height: auto;
    }

    header .mainNav li a {
        color: #000;
    }

    header .mainNav > li > a i.material-icons {
        display: none;
    }

    header span.submenu-icon {
        display: block;
        height: 24px;
        position: absolute;
        right: 15px;
        top: 15px;
        cursor: pointer;
        z-index: 1;
    }

    header ul.mainNav ul.subMenu {
        position: relative;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 0.4s;
        transition-duration: 0.2s;
        display: none;
        overflow: visible;
        opacity: 1;
        max-height: inherit;
        border: none;
        margin-top: 10px;
    }

    header ul.mainNav + ul.mainNav {
        display: none;
    }

    header .mainNav li:before {
        display: none;
    }

    .main-banner h1 {
        font-size: 38px;
    }

    .about-inner-content {
        margin-top: 30px;
    }

    .about-img img {
        margin: 0 auto;
        display: block;
    }

    .copyright .copyright-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .main-banner .banner-content {
        padding: 10px;
        background: rgba(0, 0, 0, 0.2);
    }

    .main-banner .banner-content h1 {
        font-size: 40px;
        line-height: 1.2;
    }


    .main-banner .banner-inner .banner-content .shape-img {
        display: none;
    }

    .recent-articles .article-block {
        margin-bottom: 20px;
    }

    .contact-info-inner {
        flex-wrap: wrap;
        grid-gap: 10px;
    }

    .contact-info-inner > div:first-child {
        border-right: none;
    }


    .footer-sec .address a {
        grid-gap: 5px;
        font-size: 14px;
    }

    .footer-sec .address a i {
        justify-content: center;
        font-size: 12px;
        min-width: 25px;
    }



    .main-banner {
        padding: 130px 0 100px;
    }

    .main-banner .banner-inner .banner-content {
        position: relative;
        z-index: 1;
    }

    .about-sec {
        background-size: cover;
    }

    .about-sec ul li {
        width: 100%;
        margin-bottom: 20px;
    }


    .exp-sec {
        padding: 25px;
        grid-gap: 20px;
        flex-wrap: wrap;
    }

    .top-inner > div {
        justify-content: center;
        grid-gap: 10px;
        flex-wrap: wrap;
    }

    header .social-icon {
        display: none;
    }
    header .mainNav li:last-child {
        display:block;
    }
    header .mainNav .social-icon {
        display: flex;
        margin-top: 20px;
    }
    header .mainNav .social-icon a {
        background: var(--green);
        color: var(--white);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }


    .mainNav + .top-right {
        display: none;
    }
    header .NavBar .call-icon {
        display: block;
    }
    header ul .social-icon {
        display: flex;
    }
    .fourBlock .col-lg-3 {
        border-right: none;
    }
    .fourBlock .block {
        border: 1px solid #f5f5f5;
        margin: 15px 0;
    }

    .testimonial-top {
        display: block;
        padding: 50px;
    }
    .testimonial-top h2 {
        padding: 0 0 30px;
        margin: 0 0 30px;
        border-right: none;
        border-bottom: 1px solid var(--green);
    }
    .footer-sec .f-logo img {
        max-width: 100px;
    }
}


@media (max-width:800px) {
    .banner-mask.mobile-banner {
        min-height: auto;
        width: 100%;
        display:block;
        background-position: right;
        position: relative;
        height:180px;
    }

    .banner-mask.desktop-banner {
        display: none !important;
    }
}


@media (max-width:767px) {
    .about-img {
        margin-bottom: 30px;
    }


    .fourBlock .block {
        background: #fff;
    }
    .about-block {
        margin-top: 20px;
    }
    .main-banner .banner-img img {
        height: 100%;
        object-fit: cover;
    }
    .main-banner p {
        margin: 30px 0 0;
    }
    .contact-info-inner > div {
        border-right: none;
    }

    .footer-sec {
        margin-bottom: 20px;
    }

    .copyright {
        margin-top: 0;
    }

    .copyright:before {
        display: none;
    }

    .main-banner .banner-inner {
        display: block;
    }

    .main-banner .banner-inner > div {
        width: 100%;
    }


    .contact-info-inner > div {
        font-size: 14px;
    }

    .recent-articles .article-block {
        display: block;
    }

    .recent-articles .article-block img {
        max-width: 100%;
    }


    .small-images {
        display: none;
    }

    .main-banner {
        padding: 40px 0 40px;
        background-size: cover;
    }

    .testimonialBlock .bottom-desc {
        display: block;
    }

    h2 {
        font-size: 30px;
    }

    .ContentSection {
        padding: 40px 0;
    }

    .contactform-info .form {
        margin-top: 30px;
    }

    .expSection {
        display: block;
    }

    .expSection > div {
        width: 100%;
    }
    .article-block .articleDesc {
        max-width: 100%;
    }
    .about-content {
        margin: 20px 0;
    }

    .ContentSection.fourBlock {
        padding: 0;
        top: 0;
    }
    .testimonial-top h2 {
        font-size: 30px;
    }
    .testimonialBlock {
        padding: 0 20px;
    }
    .laboratory-services ol li {
        width:calc(50% - 20px);
    }
}

@media (max-width:576px) {
 .laboratory-services ol {
    grid-gap: 10px;
}
 .laboratory-services ol li {
    width: 100%;
 }
}

/********end*********/


