/* Banner Section */
.bannerSec {
    position: relative;
    width: 100%;
    float: left;
    padding-top: 160px;
    padding-bottom: 50px;
}

.bannerSec::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(../images/banner-background-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    background-position: top;
}

.bannerSec .leftCol {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.bannerSec .leftCol h1 {
    font-size: 62px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 25px;
}

.bannerSec .leftCol h1 strong {
    font-weight: bold;
}

.bannerSec .leftCol span {
    font-size: 21px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.bannerSec .leftCol p {
    font-size: 18px;
    line-height: 32px;
    color: rgb(255 255 255 / 80%);
    margin-bottom: 25px;
}

.bannerSec .leftCol .bookBtn {
    display: inline-block;
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
    font-weight: 700;
    border-radius: 27px;
    padding: 14px 36px;
    margin-bottom: 40px;
    background-color: #007ba9;
    box-shadow: none;
    transition: all .3s ease-in-out;
}

.bannerSec .leftCol .bookBtn:hover {
    background-color: #f47633;
}

.bannerSec .leftCol .leftColText {
    width: auto;
    float: left;
    background-color: rgb(255 255 255 / 25%);
    padding: 15px;
    border-radius: 10px;
}

.bannerSec .leftCol .bannerLogos {
    width: 100%;
    display: flex;
    margin-top: -20px;
}

.bannerSec .leftCol .bannerLogos a {
    margin-right: 20px;
}

.bannerSec .leftCol .bannerLogos a img {
    width: 100%;
    height: auto;
    border: solid 1px rgb(255 255 255 / 50%);
    border-radius: 5px;
}

.bannerSec .rightCol {
    position: relative;
    max-width: 480px;
    width: 100%;
    float: right;
    margin: 0 30px 30px 30px;
}

.bannerSec .rightCol::before {
    content: '';
    position: absolute;
    bottom: -35px;
    left: -25px;
    width: 215px;
    height: 200px;
    background-image: url(../images/banner-design.png);
    background-repeat: no-repeat;
}

.bannerSec .rightCol::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 275px;
    height: 380px;
    background-color: #007ba9;
}

.bannerSec .rightCol img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    z-index: 1;
}

.middle {
    width: 100%;
    float: left;
}

/* Benefits Section */
.benefitsSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 110px 0 80px;
}

.benefitsSec::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/benefits-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: -1;
}

.benefitsSec h2 {
    position: relative;
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 60px;
    color: #000000;
    font-weight: 900;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.benefitsSec h2::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 80px;
    height: 4px;
    background-color: #f9a981;
}

.benefitsSec p {
    font-size: 18px;
    line-height: 35px;
    color: #001d33;
    font-weight: 300;
    text-align: center;
    margin-bottom: 45px;
}

.benefitsSec .benefitsBox {
    position: relative;
    display: flex;
    align-items: center;
    height: 120px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    padding: 15px;
    margin-left: 30px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e2eb;
    transition: all .4s ease-in-out;
}

.benefitsSec .benefitsBox:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
}

.benefitsSec .benefitsBox .left-logo {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
    background-color: #007ba9;
    border: 3px solid #ffffff;
    transition: all .4s ease-in-out;
}

.benefitsSec .benefitsBox .left-logo img {
    width: auto;
    height: auto;
}

.benefitsSec .benefitsBox:hover .left-logo {
    background-color: #f47633;
}

.benefitsSec .benefitsBox .right-info {
    width: 100%;
    float: left;
    padding-left: 40px;
}

.benefitsSec .benefitsBox .right-info h4 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 30px;
    color: rgb(0 0 0 / 80%);
    font-weight: 400;
    transition: all .4s ease-in-out;
}

.benefitsSec .benefitsBox:hover .right-info h4 {
    color: #f47a40;
}

/* Medical Software Section */
.medicalSoftwareSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 100px 0 130px;
}

.medicalSoftwareSec::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f2f6ff 50%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.medicalSoftwareSec::after {
    position: absolute;
    bottom: -185px;
    right: 0;
    width: 195px;
    height: 370px;
    content: '';
    background-image: url(../images/features-design.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    z-index: -1;
}

.medicalSoftwareSec h2 {
    position: relative;
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 70px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 55px;
}

.medicalSoftwareSec h2 strong {
    font-weight: 900;
}

.medicalSoftwareSec h2::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: '';
    width: 80px;
    height: 4px;
    background-color: #f47a40;
}

.medicalSoftwareSec .videoBox {
    width: 100%;
    display: flex;
    padding: 56.25% 0 0 0;
    position: relative;
}

.medicalSoftwareSec .videoBox::before {
    position: absolute;
    left: -40px;
    top: -40px;
    content: '';
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #7ac646;
}

.medicalSoftwareSec .videoBox::after {
    position: absolute;
    left: 0;
    bottom: -67px;
    content: '';
    width: 100%;
    height: 67px;
    background-image: url(../images/video-design.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    z-index: -1;
}

.medicalSoftwareSec .videoBox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Features Section */
.featuresSec {
    width: 100%;
    float: left;
}

.featuresSec h2 {
    position: relative;
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 70px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.featuresSec h2::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: '';
    width: 80px;
    height: 4px;
    background-color: #f47a40;
}

.featuresSec p {
    font-size: 18px;
    line-height: 35px;
    color: #001d33;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}

.featuresSec .row {
    justify-content: center;
}

.featuresSec .featureBox {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 17px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 22px;
    margin-bottom: 30px;
    transition: all .3s ease-in-out;
}

.featuresSec .featureBox:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.featuresSec .featureBox .featureLogo {
    width: 100px;
    height: 100px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
}

.featuresSec .featureBox .featureLogo img {
    width: auto;
    height: auto;
}

.featuresSec .featureBox .featureInfo {
    width: calc(100% - 100px);
    float: left;
    padding-left: 20px;
}

.featuresSec .featureBox .featureInfo h3 {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 34px;
    color: #000000;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.featuresSec .featureBox:hover .featureInfo h3 {
    color: #f47a40;
}

/* Software Logo Section */
.softwareLogoSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 115px 0;
}

.softwareLogoSec::before {
    position: absolute;
    bottom: -220px;
    left: 0;
    content: '';
    width: 249px;
    height: 565px;
    background-image: url(../images/software-logo-design.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.softwareLogoSec .softwareBox {
    width: 100%;
    display: grid;
    grid-template-columns: 310px 310px 310px;
    gap: 100px;
    justify-content: center;
}

.softwareLogoSec .softwareBox.col_4 {
    grid-template-columns: 275px 275px 275px 275px;
    gap: 50px;
    margin: 40px 0 0 0;
}

.softwareLogoSec .softwareBox .softwareLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 17px rgba(0, 0, 0, 0.1);
}

.softwareLogoSec .softwareBox .softwareLogo a {
    display: contents;
}

.softwareLogoSec .softwareBox .softwareLogo img {
    max-width: 100% !important;
    height: auto;
}

/* Services Section */
.servicesSec {
    width: 100%;
    float: left;
    padding: 85px 0 55px;
}

.servicesSec h2 {
    position: relative;
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 70px;
    color: #000000;
    font-weight: 300;
    text-align: center;
    margin-bottom: 55px;
}

.servicesSec h2 strong {
    font-weight: 700;
}

.servicesSec h2::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: '';
    width: 80px;
    height: 4px;
    background-color: #f47a40;
}

.servicesSec .servicesBox {
    width: 100%;
    height: calc(100% - 30px);
    float: left;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.servicesSec .servicesBox .services-img {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 50px;
}

.servicesSec .servicesBox .services-img .servicesValueImg {
    width: 100%;
    float: left;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.servicesSec .servicesBox .services-img .servicesValueImg img {
    width: 100%;
    height: auto;
    transition: all .4s ease-in-out;
}

.servicesSec .servicesBox .services-img .servicesValueImg:hover img {
    transform: scale(1.1);
}

.servicesSec .servicesBox .services-img .servicesLogo {
    position: absolute;
    bottom: -50px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.servicesSec .servicesBox .services-img .servicesLogo img {
    width: auto;
    height: auto;
}

.servicesSec .servicesBox .services-info {
    width: 100%;
    float: left;
    padding: 15px;
}

.servicesSec .servicesBox .services-info h4 {
    position: relative;
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 30px;
    color: rgb(0 0 0 / 90%);
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.servicesSec .servicesBox .services-info h4 a {
    transition: all .4s ease-in-out;
}

.servicesSec .servicesBox .services-info h4:hover a {
    color: #f47a40;
}

.servicesSec .servicesBox .services-info h4::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #f47a40;
}

.servicesSec .servicesBox .services-info p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-weight: 300;
}

/* Medical Spa Section */
.medicalSpaSec {
    width: 100%;
    float: left;
    padding: 135px 0 80px;
}

.medicalSpaSec .medicalSpaImg {
    width: 100%;
    float: left;
}

.medicalSpaSec .medicalSpaImg img {
    width: 100%;
    height: auto;
}

.medicalSpaSec .medicalSpaInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 29px;
}

.medicalSpaSec .medicalSpaInfo h2 {
    font-size: 50px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 30px;
}

.medicalSpaSec .medicalSpaInfo h2 strong {
    font-weight: 700;
}

.medicalSpaSec .medicalSpaInfo p {
    font-size: 18px;
    line-height: 38px;
    color: rgb(0 0 0 / 90%);
    font-weight: 300;
    margin-bottom: 35px;
}

.medicalSpaSec .medicalSpaInfo .findOutMoreBtn {
    display: inline-block;
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 27px;
    padding: 15px 27px;
    background-color: #007ba9;
    box-shadow: none;
    transition: all .3s ease-in-out;
}

.medicalSpaSec .medicalSpaInfo .findOutMoreBtn:hover {
    background-color: #f47633;
}

/* Client Section */
.clientSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 110px 0;
    background-color: #f9f9f9;
}

.clientSec::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 160px;
    height: 420px;
    background-image: url(../../Customers/images/medical-design.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.clientSec h2 {
    font-size: 50px;
    color: #000000;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}

.clientSec h2 strong {
    font-weight: 700;
}

.clientSec .clients-slider.owl-carousel .owl-stage {
    display: flex;
    padding-bottom: 20px;
}

.clientSec .clients-slider .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border-bottom: solid 4px transparent;
    transition: all .3s ease-in-out;
}

.clientSec .clients-slider .item:hover {
    border-color: #007ba9;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.clientSec .clients-slider .item .clientsLogoBox {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.clientSec .clients-slider .item .clientsLogoBox::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: '';
    width: 29px;
    height: 23px;
    background-image: url(../../Customers/images/commas.png);
    background-repeat: no-repeat;
}

.clientSec .clients-slider .item .clientsLogoBox img.commas-icon {
    width: 29px;
    height: auto;
}

.clientSec .clients-slider .item .clientsLogoBox img.capterra-logo {
    width: 165px;
    height: auto;
}

.clientSec .clients-slider .item .clientsLogoBox img.g2-logo {
    width: 45px;
    height: auto;
}

.clientSec .clients-slider .item>p {
    font-size: 18px;
    line-height: 30px;
    color: #19235a;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    flex: 1;
}

.clientSec .clients-slider .item .ownerBox {
    display: flex;
}

.clientSec .clients-slider .item .ownerBox .ownerInfo {
    width: 100%;
    float: left;
}

.clientSec .clients-slider .item .ownerBox .ownerInfo h4 {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #19235a;
    font-weight: 600;
}

.clientSec .clients-slider .item .ownerBox .ownerInfo h4::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 178px;
    height: 27px;
    background-image: url(../../Customers/images/owner-design.png);
    background-repeat: no-repeat;
}

.clientSec .clients-slider .item .ownerBox .ownerInfo p {
    font-size: 16px;
    line-height: 30px;
    color: #19235a;
    font-weight: 400;
}

.clientSec .clients-slider.owl-theme .owl-nav {
    position: absolute;
    top: 45%;
    right: 0;
    left: 0;
}

.clientSec .clients-slider.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -80px;
    width: 50px;
    height: 50px;
    background-image: url(../../Customers/images/prev-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    outline: 0;
}

.clientSec .clients-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -80px;
    width: 50px;
    height: 50px;
    background-image: url(../../Customers/images/next-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    outline: 0;
}



@media only screen and (min-width: 1601px) and (max-width: 2100px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {}

@media only screen and (min-width: 1441px) and (max-width: 1500px) {}

@media only screen and (min-width: 1367px) and (max-width: 1440px) {}

@media only screen and (min-width: 1301px) and (max-width: 1440px) {

    .clientSec .clients-slider.owl-theme .owl-nav {
        top: 45% !important;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-prev {
        left: -60px !important;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-next {
        right: -60px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1366px) {

    /* Banner Section */
    .bannerSec {
        padding-top: 130px;
    }

    .bannerSec .leftCol h1 {
        font-size: 60px;
    }

    /* Benefits Section */
    .benefitsSec {
        padding: 90px 0 80px;
    }

    /* Medical Software Section */
    .medicalSoftwareSec {
        padding: 90px 0;
    }

    .medicalSoftwareSec .videoBox::after {
        bottom: -60px;
    }

    /* Features Section */
    .featuresSec .featureBox .featureInfo h3 {
        font-size: 21px;
    }

    /* Awards Section */
    .softwareLogoSec .softwareBox {
        grid-template-columns: 300px 300px 300px;
        gap: 60px;
    }

    .softwareLogoSec .softwareBox.col_4 {
        grid-template-columns: 262px 262px 262px 262px;
        gap: 40px;
    }

    .softwareLogoSec .softwareBox.col_4 .softwareLogo img {
        width: 86%;
    }

    /* Services Section */
    .servicesSec {
        padding: 80px 0 55px;
    }

    /* Medical Spa Section */
    .medicalSpaSec {
        padding: 90px 0;
    }

    .medicalSpaSec .medicalSpaInfo h2 {
        font-size: 45px;
    }

    /* Client Section */
    .clientSec {
        padding: 90px 0;
    }

    .clientSec h2 {
        font-size: 45px;
        margin-bottom: 50px;
    }

    .clientSec .clients-slider.owl-theme .owl-nav {
        top: 93%;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-prev {
        left: 38%;
        width: 40px;
        height: 40px;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-next {
        right: 38%;
        width: 40px;
        height: 40px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots {
        text-align: center;
        margin-top: 10px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot span {
        width: 12px;
        height: 12px;
        margin: 0 5px;
        background: transparent;
        display: block;
        border: solid 1px #007ba9;
        border-radius: 30px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot.active span {
        background-color: #007ba9;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    /* Banner Section */
    .bannerSec {
        padding-top: 120px;
    }

    .bannerSec .leftCol h1 {
        font-size: 50px;
    }

    .bannerSec .rightCol {
        max-width: 410px;
    }

    .bannerSec .rightCol::before {
        width: 190px;
    }

    .bannerSec .rightCol::after {
        width: 250px;
    }

    /* Benefits Section */
    .benefitsSec {
        padding: 60px 0 40px;
    }

    .benefitsSec h2 {
        font-size: 38px;
        line-height: 50px;
        padding-bottom: 15px;
    }

    .benefitsSec p br {
        display: none;
    }

    /* Medical Software Section */
    .medicalSoftwareSec {
        padding: 60px 80px;
    }

    .medicalSoftwareSec::after {
        display: none;
    }

    .medicalSoftwareSec h2 {
        font-size: 38px;
        line-height: 50px;
        margin-bottom: 50px;
    }

    .medicalSoftwareSec .videoBox::after {
        bottom: -45px;
    }

    /* Features Section */
    .featuresSec h2 {
        font-size: 38px;
        line-height: 50px;
    }

    .featuresSec .featureBox {
        padding: 20px;
    }

    .featuresSec .featureBox .featureLogo {
        width: 90px;
        height: 90px;
    }

    .featuresSec .featureBox .featureInfo h3 {
        font-size: 20px;
        line-height: 32px;
    }

    /* Software Logo Section */
    .softwareLogoSec {
        padding: 60px 0;
    }

    .softwareLogoSec::before {
        display: none;
    }

    .softwareLogoSec .softwareBox {
        grid-template-columns: 270px 270px 270px;
        gap: 55px;
    }

    .softwareLogoSec .softwareBox.col_4 {
        grid-template-columns: 217px 217px 217px 217px;
        gap: 30px;
    }

    .softwareLogoSec .softwareBox.col_4 .softwareLogo img {
        width: 82%;
    }

    /* Services Section */
    .servicesSec {
        padding: 40px 0;
    }

    .servicesSec h2 {
        font-size: 38px;
        line-height: 50px;
        padding-bottom: 10px;
        margin-bottom: 40px;
    }

    .servicesSec .servicesBox .services-img {
        margin-bottom: 45px;
    }

    .servicesSec .servicesBox .services-img .servicesLogo {
        bottom: -45px;
        width: 90px;
        height: 90px;
    }

    .servicesSec .servicesBox .services-info h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .servicesSec .servicesBox .services-info p {
        line-height: 28px;
    }

    /* Medical Spa Section */
    .medicalSpaSec {
        padding: 60px 0;
    }

    .medicalSpaSec .medicalSpaInfo {
        padding-left: 15px;
    }

    .medicalSpaSec .medicalSpaInfo h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .medicalSpaSec .medicalSpaInfo p {
        line-height: 34px;
        margin-bottom: 30px;
    }

    .medicalSpaSec .medicalSpaInfo .findOutMoreBtn {
        padding: 13px 25px;
    }

    /* Client Section */
    .clientSec {
        padding: 60px 0;
    }

    .clientSec h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots {
        text-align: center;
        margin-top: 10px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot span {
        width: 12px;
        height: 12px;
        margin: 0 5px;
        background: transparent;
        display: block;
        border: solid 1px #007ba9;
        border-radius: 30px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot.active span {
        background-color: #007ba9;
    }

    .clientSec .clients-slider.owl-theme .owl-nav {
        top: 92%;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-prev {
        left: 30%;
        width: 40px;
        height: 40px;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-next {
        right: 30%;
        width: 40px;
        height: 40px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* Banner Section */
    .bannerSec {
        padding-top: 120px;
    }

    .bannerSec .leftCol h1 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .bannerSec .leftCol span {
        font-size: 18px;
        line-height: 30px;
    }

    .bannerSec .leftCol p {
        font-size: 16px;
        line-height: 30px;
    }

    .bannerSec .leftCol p br {
        display: none;
    }

    .bannerSec .leftCol .bookBtn {
        font-size: 16px;
        line-height: 25px;
        padding: 10px 30px;
    }

    .bannerSec .rightCol {
        max-width: 295px;
    }

    .bannerSec .rightCol::before {
        width: 160px;
        height: 180px;
    }

    .bannerSec .rightCol::after {
        width: 170px;
        height: 260px;
    }

    /* Benefits Section */
    .benefitsSec {
        padding: 50px 0 30px;
    }

    .benefitsSec h2 {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .benefitsSec p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 35px;
    }

    .benefitsSec p br {
        display: none;
    }

    /* Medical Software Section */
    .medicalSoftwareSec {
        padding: 50px 0;
    }

    .medicalSoftwareSec::after {
        display: none;
    }

    .medicalSoftwareSec h2 {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 15px;
        margin-bottom: 40px;
    }

    .medicalSoftwareSec .videoBox::before {
        left: -15px;
        top: -15px;
        width: 80px;
        height: 80px;
    }

    .medicalSoftwareSec .videoBox::after {
        bottom: -40px;
    }

    /* Features Section */
    .featuresSec h2 {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 20px;
    }

    .featuresSec p {
        font-size: 16px;
        line-height: 30px;
    }

    .featuresSec .featureBox {
        padding: 15px;
    }

    .featuresSec .featureBox .featureLogo {
        width: 80px;
        height: 80px;
        padding: 15px;
    }

    .featuresSec .featureBox .featureLogo img {
        width: 100%;
    }

    .featuresSec .featureBox .featureInfo h3 {
        font-size: 20px;
        line-height: 30px;
    }

    /* Software Logo Section */
    .softwareLogoSec {
        padding: 50px 0;
    }

    .softwareLogoSec::before {
        display: none;
    }

    .softwareLogoSec .softwareBox {
        gap: 40px;
        grid-template-columns: 29.58% 29.58% 29.58%;
    }

    .softwareLogoSec .softwareBox.col_4 {
        grid-template-columns: 22.4% 22.4% 22.4% 22.4%;
        gap: 25px;
    }

    .softwareLogoSec .softwareBox.col_4 .softwareLogo {
        height: 157px;
    }

    .softwareLogoSec .softwareBox .softwareLogo img {
        width: 65%;
    }

    .softwareLogoSec .softwareBox .softwareLogo .sf-root {
        width: 65% !important;
    }

    .softwareLogoSec .softwareBox.col_4 .softwareLogo img {
        width: 75%;
    }

    .softwareLogoSec .softwareBox.col_4 .softwareLogo .sf-root {
        width: 65% !important;
    }

    /* Services Section */
    .servicesSec {
        padding: 50px 0 30px;
    }

    .servicesSec h2 {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .servicesSec .servicesBox .services-img {
        margin-bottom: 40px;
    }

    .servicesSec .servicesBox .services-img .servicesLogo {
        bottom: -40px;
        width: 80px;
        height: 80px;
        padding: 15px;
    }

    .servicesSec .servicesBox .services-img .servicesLogo img {
        width: 100%;
    }

    .servicesSec .servicesBox .services-info h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .servicesSec .servicesBox .services-info p {
        line-height: 26px;
    }

    /* Medical Spa Section */
    .medicalSpaSec {
        padding: 50px 0;
    }

    .medicalSpaSec .medicalSpaInfo {
        padding-left: 0;
    }

    .medicalSpaSec .medicalSpaInfo h2 {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 10px;
    }

    .medicalSpaSec .medicalSpaInfo p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .medicalSpaSec .medicalSpaInfo .findOutMoreBtn {
        font-size: 18px;
        line-height: 24px;
        padding: 12px 20px;
    }

    /* Client Section */
    .clientSec {
        padding: 50px 0;
    }

    .clientSec::before {
        display: none;
    }

    .clientSec h2 {
        font-size: 35px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .clientSec .clients-slider .item {
        padding: 25px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots {
        text-align: center;
        margin-top: 10px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot span {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background: transparent;
        display: block;
        border: solid 1px #007ba9;
        border-radius: 30px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot.active span {
        background-color: #007ba9;
    }

    .clientSec .clients-slider.owl-theme .owl-nav {
        top: 93%;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-prev {
        left: 28%;
        width: 40px;
        height: 40px;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-next {
        right: 28%;
        width: 40px;
        height: 40px;
    }
}

@media only screen and (max-width: 767px) {

    /* Banner Section */
    .bannerSec {
        padding-top: 80px;
    }

    .bannerSec .leftCol {
        margin-bottom: 30px;
    }

    .bannerSec .leftCol h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .bannerSec .leftCol span {
        font-size: 18px;
        line-height: 30px;
    }

    .bannerSec .leftCol p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .bannerSec .leftCol p br {
        display: none;
    }

    .bannerSec .leftCol .bookBtn {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 25px;
        min-width: 200px;
        text-align: center;
    }

    .bannerSec .rightCol {
        max-width: 275px;
    }

    .bannerSec .rightCol::before {
        width: 114px;
        height: 160px;
    }

    .bannerSec .rightCol::after {
        right: -30px;
        width: 160px;
        height: 220px;
    }

    /* Benefits Section */
    .benefitsSec {
        padding: 40px 0 20px;
    }

    .benefitsSec h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .benefitsSec p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .benefitsSec p br {
        display: none;
    }

    .benefitsSec .benefitsBox {
        height: 100px;
    }

    .benefitsSec .benefitsBox .right-info {
        padding-left: 30px;
    }

    /* Medical Software Section */
    .medicalSoftwareSec {
        padding: 40px 0;
    }

    .medicalSoftwareSec::after {
        display: none;
    }

    .medicalSoftwareSec h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 15px;
        margin-bottom: 40px;
    }

    .medicalSoftwareSec .videoBox::before {
        left: -15px;
        top: -15px;
        width: 60px;
        height: 60px;
    }

    .medicalSoftwareSec .videoBox::after {
        bottom: -16px;
    }

    /* Features Section */
    .featuresSec h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .featuresSec p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .featuresSec .featureBox .featureLogo {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .featuresSec .featureBox .featureLogo img {
        width: 100%;
    }

    .featuresSec .featureBox .featureInfo {
        width: calc(100% - 70px);
        padding-left: 15px;
    }

    .featuresSec .featureBox .featureInfo h3 {
        font-size: 20px;
        line-height: 28px;
    }

    /* Software Logo Section */
    .softwareLogoSec {
        padding: 40px 0 20px;
    }

    .softwareLogoSec::before {
        display: none;
    }

    .softwareLogoSec .softwareBox {
        grid-template-columns: 100%;
        gap: 30px;
    }

    .softwareLogoSec .softwareBox.col_4 {
        grid-template-columns: 100%;
        gap: 30px;
    }

    /* Services Section */
    .servicesSec {
        padding: 20px 0;
    }

    .servicesSec h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }

    .servicesSec .servicesBox .services-img {
        margin-bottom: 35px;
    }

    .servicesSec .servicesBox .services-img .servicesLogo {
        bottom: -35px;
        right: 30px;
        width: 80px;
        height: 80px;
        padding: 15px;
    }

    .servicesSec .servicesBox .services-img .servicesLogo img {
        width: 100%;
    }

    .servicesSec .servicesBox .services-info h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .servicesSec .servicesBox .services-info p {
        line-height: 28px;
    }

    /* Medical Spa Section */
    .medicalSpaSec {
        padding: 40px 0;
    }

    .medicalSpaSec .medicalSpaInfo {
        padding-left: 0;
    }

    .medicalSpaSec .medicalSpaImg {
        margin-bottom: 30px;
    }

    .medicalSpaSec .medicalSpaInfo h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .medicalSpaSec .medicalSpaInfo p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .medicalSpaSec .medicalSpaInfo .findOutMoreBtn {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 20px;
        min-width: 200px;
        text-align: center;
    }

    /* Client Section */
    .clientSec {
        padding: 40px 0 60px;
    }

    .clientSec::before {
        display: none;
    }

    .clientSec h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .clientSec .clients-slider .item {
        padding: 20px;
    }

    .clientSec .clients-slider .item .clientsLogoBox {
        margin-bottom: 15px;
    }

    .clientSec .clients-slider .item .clientsLogoBox img.capterra-logo {
        margin-left: 25px;
    }

    .clientSec .clients-slider .item>p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 24px;
    }

    .clientSec .clients-slider .item .ownerBox .ownerInfo h4::before {
        width: 158px;
        background-size: contain;
    }

    .clientSec .clients-slider.owl-theme .owl-dots {
        text-align: center;
        padding-top: 10px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot {
        outline: none;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot span {
        width: 12px;
        height: 12px;
        margin: 0 5px;
        background: transparent;
        display: block;
        border: solid 1px #007ba9;
        border-radius: 30px;
    }

    .clientSec .clients-slider.owl-theme .owl-dots button.owl-dot.active span {
        background-color: #007ba9;
    }

    .clientSec .clients-slider.owl-theme .owl-nav {
        top: 100%;
        display: flex;
        justify-content: center;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-prev {
        position: relative;
        left: 0;
        width: 40px;
        height: 40px;
        margin-right: 5px;
    }

    .clientSec .clients-slider.owl-theme .owl-nav .owl-next {
        position: relative;
        right: 0;
        width: 40px;
        height: 40px;
        margin-left: 5px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {}