:root {
    --navyBlue: #2e276b;
    --skyBlue: #1a98d5;
    --whiteColor: #ffffff;
    --greyColor: #d9d9d9
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bebas Neue", sans-serif;
}

h1,
h2 {
    font-weight: 500
}

a {
    color: var(--navyBlue);
    text-decoration: none;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    outline: 0
}

a:focus,
a:hover {
    color: #111;
    text-decoration: none;
    outline: 0
}

.desktop-clearfix {
    clear: both;
    display: block;
}

.desktop-view {
    display: inline-block;
}

.mobile-view {
    display: none;
}

.text-skyBlue {
    color: var(--skyBlue)
}

.btn {
    padding: 10px 20px
}

.btn-primary {
    border-radius: 15px;
    background: var(--skyBlue);
    border: 1px solid var(--skyBlue);
    transition: color 0.45s ease;
}

.btn-primary:hover {
    background: var(--navyBlue);
    border: 1px solid var(--navyBlue)
}

.btn-outline-primary {
    border-radius: 15px;
    border: 2px solid var(--skyBlue);
    color: var(--skyBlue) !important;
    transition: color 0.45s ease;
    ;
    padding: 8px 40px
}

.btn-outline-primary:hover {
    border: 2px solid var(--skyBlue);
    color: var(--whiteColor) !important;
    background: var(--skyBlue) !important
}

.btn-outline-primary:hover i {
    color: #fff;
}

ol li,
p,
ul li,
table {
    color: var(--darkGrayColor);
    font-size: 0.9rem;
    line-height: 24px
}

.table thead th {
    vertical-align: top;
}

p {
    text-align: justify
}

ul.common-list-none {
    margin: 0;
    padding: 0
}

ul.common-list-none li {
    list-style: none
}

ul.common-list {
    margin: 0;
    padding: 0
}

ul.common-list li {
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    position: relative;
    padding-left: 20px
}

ul.common-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--darkGrayColor)
}

ol.common-order-list {
    margin: 0;
    padding: 0;
    padding-left: 15px
}

ol.common-order-list li {
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0;
    position: relative
}

.bg-primary {
    background: var(--blueColor) !important
}

.heading-2 {
    font-size: 3rem;
}

.heading-4 {
    font-size: 2rem;
}

.container {
    max-width: 1250px
}

header {
    width: 100%;
    z-index: 999;
    position: relative;
    top: 0;
    position: sticky;
    background: #fff;
    padding: 10px 0
}

header.active {
    background: #fff;
    box-shadow: #ccc 1px 2px 50px
}

#tag_line {
    font-size: 13px;
    color: #666
}

header .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0
}

header .bigSubmenu .row {
    align-items: flex-start
}

ul.about-menu {
    margin: 0;
    padding: 0
}

ul.about-menu li {
    list-style: none;
    border-bottom: 1px solid var(--skyBlue);
    padding: 20px 0;
    font-size: 1.1rem
}

ul.about-menu li a {
    position: relative;
    display: block;
    color: var(--navyBlue)
}

ul.about-menu li:hover a {
    color: var(--skyBlue);
    font-size: 1.2rem;
    position: relative;
    display: block
}

.bigSubmenuContent .row {
    padding: 0
}

header .logo img {
    width: 250px;
    max-width: fit-content;
}

.menu-icon {
    display: none
}

header nav>ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
    justify-content: end;
    align-items: center;
    height: 100%
}

header nav ul li .submenu-icon1,
header nav ul li .submenu-icon2 {
    display: none
}

header nav>ul>li {
    list-style: none;
    position: relative
}

header nav>ul>li>a {
    color: var(--navyBlue);
    padding: 24px 0;
    font-size: 14px;
    font-weight: 700;
    position: relative
}

header nav>ul>li>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2px;
    background: var(--skyBlue);
    transition: width 0.45s ease;
    width: 0;
    transform: translateX(-50%);
    transform-origin: center
}

header nav>ul>li>a:hover::after {
    width: 100%
}

header nav>ul>li:nth-last-child(2)>a:hover::after,
header nav>ul>li:last-child>a:hover::after {
    width: 0
}

header nav>ul>li>ul {
    position: absolute;
    top: 200%;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    margin: 0;
    padding: 0;
    width: 240px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 2px 4px 10px #dcdcdc
}

header nav>ul>li:hover>ul {
    visibility: visible;
    opacity: 1
}

header nav>ul>li>ul>li {
    list-style-type: none;
    font-size: .85rem;
    position: relative
}

header nav>ul>li>ul>li>a {
    padding: 12px 20px;
    display: block;
    color: #000
}

header nav>ul>li>ul>li>a:hover {
    background: var(--skyBlue);
    color: #fff
}

header nav>ul>li>ul>li>ul {
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    margin: 0;
    padding: 0;
    width: 240px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 2px 4px 10px #dcdcdc
}

header nav>ul>li>ul>li:hover ul {
    visibility: visible;
    opacity: 1
}

header nav>ul>li>ul>li>ul>li {
    list-style-type: none;
    font-size: .85rem
}

header nav>ul>li>ul>li>ul>li>a {
    padding: 10px 20px;
    display: block;
    color: #000;
    font-size: 90%
}

header nav>ul>li>ul>li>ul>li>a:hover {
    background: var(--darkPinkColor);
    color: #fff
}

header nav>ul>li>.bigSubmenu {
    position: absolute;
    top: 96%;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #f1f1f1;
    margin: 0;
    padding: 30px 30px 110px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px
}

header nav>ul>li:hover>.bigSubmenu,
header nav>ul>li:hover>ul {
    visibility: visible;
    opacity: 1
}

header nav>ul>li>.bigSubmenu>ul {
    margin: 0;
    padding: 0;
    width: 250px;
    position: relative
}

header nav>ul>li>.bigSubmenu>ul>li {
    list-style: none;
    border-bottom: 1px solid var(--skyBlue);
    padding: 20px 0;
    font-size: .9rem
}

header nav>ul>li>.bigSubmenu>ul>li:last-child {
    border: 0
}

header nav>ul>li>.bigSubmenu>ul>li>a {
    color: var(--navyBlue)
}

header nav>ul>li>.bigSubmenu>ul>li:hover>a {
    color: var(--skyBlue);
    font-size: .9rem;
    position: relative;
    display: block
}

header nav>ul>li>.bigSubmenu>ul>li a:hover {
    color: var(--skyBlue)
}

header nav>ul>li>.bigSubmenu>ul>li:hover>a::after {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 14px solid var(--skyBlue);
    border-bottom: 7px solid transparent;
    content: '';
    position: absolute;
    top: 7px;
    right: 0
}

header nav>ul>li>.bigSubmenu>ul>li>ul {
    margin: 0;
    padding: 0;
    width: 245px;
    position: absolute;
    top: 0;
    left: 220px;
    opacity: 0;
    visibility: hidden;
    min-height: 320px
}

header nav>ul>li>.bigSubmenu>ul>li:hover>ul {
    padding-left: 50px;
    visibility: visible;
    opacity: 1
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li {
    list-style: none;
    padding: 2px 0;
    font-size: .9rem
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li a {
    color: var(--navyBlue)
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>a:hover {
    color: var(--skyBlue)
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>.bigSubmenuContent {
    margin: 0;
    padding: 0;
    width: 700px;
    position: absolute;
    top: 0;
    left: 260px
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>.bigSubmenuContent {
    list-style: none;
    padding: 2px 0;
    font-size: .9rem;
    min-height: 312px
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>.bigSubmenuContent .row {
    align-items: flex-start
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>.bigSubmenuContent ul {
    margin: 0;
    padding: 0
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>.bigSubmenuContent ul li {
    list-style: none;
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>.bigSubmenuContent ul li a {
    color: var(--navyBlue);
    font-size: 78%;
}

header nav>ul>li>.bigSubmenu>ul>li>ul>li>.bigSubmenuContent ul li a:hover {
    color: var(--skyBlue)
}

header nav>ul>li>.bigSubmenu .about-list {
    margin: 0;
    padding: 0;
    list-style: disc;
    margin-left: 15px;
    width: 300px
}

header nav>ul>li>.bigSubmenu .about-list li {
    line-height: 26px !important;
    font-size: 14px;
    color: var(--navyBlue)
}

.contact-flex {
    border: 3px solid #1a98d5;
    border-radius: 20px;
    overflow: hidden;
}

.contact-flex .contact-style {
    padding: 6px 15px;
    background: #fff;
}

.contact-flex .contact-style span {
    color: #1a98d5;
    font-weight: 700;
}

.btn-outline-primary.top-btn {
    border-radius: 15px 0 0 15px
}

.slider-section {
    width: 100%;
    position: relative;
    aspect-ratio: 1200 / 567;
}

.slider-section .welcome-down {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 100
}

.slider-section .welcome-down img {
    width: 100px
}

.slider-section .carousel-indicators {
    top: 32px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 5%;
    margin-right: 5%
}

.slider-section .carousel-indicators li {
    width: 5px !important;
    height: 20px !important
}

.slider-section .carousel-indicators li.active {
    background-color: var(--skyBlue)
}

.slider-section .carousel-caption {
    text-align: left;
    bottom: 20%;
    left: 10%
}

.slider-section .carousel-caption .ten-years {
    width: 125px
}

.slider-section .carousel-caption h1 {
    font-size: 3.8rem;
    color: #2e2e6e;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 58px
}

.slider-section .carousel-caption h2 {
    font-size: 1.5rem;
    border-top: 1px solid var(--skyBlue);
    display: inline;
    padding-top: 15px
}

.slider-section .btn {
    margin-top: 20px;
    font-weight: 700;
}

.slider-section img {
    width: 100%;
    height: auto;
}

.slider-section .slider-item {
    padding-top: 150px;
    position: absolute;
    top: 0;
    left: 200px
}

.welcome-section {
    position: relative;
    margin-top: -5px;
}

.welcome-section img {
    width: 100%;
}

.welcome-section .half-overlay {
    background: #c4c4c4;
    right: 0;
    left: auto
}

.welcome-section p {
    margin-top: 0;
    text-align: justify
}

.welcome-section .container {
    color: #fff;
    position: absolute;
    top: 24%;
    right: 10%;
    width: 60%
}

.services-section {
    padding: 80px 0;
    background: var(--moreLightPinkColor)
}

.services-section .service-box {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    align-items: center
}

.services-section .service-box img {
    width: 90px
}

.owl-theme .owl-dots .owl-dot span {
    background: rgb(181 181 181)
}

.welcome-sections .count-box {
    color: var(--darkGrayColor);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.welcome-sections .count-box span {
    font-size: 3rem;
    font-weight: 700
}

.welcome-sections .count-box .icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.welcome-sections .count-box .icon-circle i {
    font-size: 30px
}

.welcome-sections .count-box h2 {
    font-weight: 700;
    margin-bottom: 0
}

.welcome-sections .count-box p {
    margin-bottom: 0;
    color: var(--darkGrayColor)
}

.testimonials-section {
    padding: 20px 0;
    background: url(../images/testimonials.webp) top center
}

.testimonials-section .owl-theme .owl-dots .owl-dot span {
    width: 36px;
    height: 5px;
    border-radius: 0;
    transition: background-color 0.45s ease;
    background-color: #fff;
    margin-top: 50px
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--skyBlue);
}

.testimonials-section h2 {
    color: var(--skyBlue)
}

.testimonials-section p {
    color: #777;
    /* font-size: 80%; */
    /* line-height: 18px; */
    text-align: justify
}

.testimonials-section .testimonials-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: block;
    color: #000;
    display: flex;
    position: relative
}

.testimonials-section .testimonials-box .testimonial-footer {
    position: absolute;
    bottom: -10px;
    left: 15px
}

.testimonials-section .testimonials-box img {
    width: 100%;
    margin-bottom: 20px;
    height: 260px;
    width: 260px
}

.testimonials-section .testimonials-box h6 {
    font-weight: 700
}

.team-section .owl-theme .owl-dots .owl-dot.active span,
.team-section .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
    width: 20px;
}

.team-section h2 {
    margin-bottom: 50px
}

.team-section .team-box {
    background: #fff;
    padding: 18px 24px;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: block;
    color: #000
}

.team-section .team-box img {
    width: 100%;
    margin-bottom: 20px
}

.team-section .team-box h6 {
    font-weight: 700
}

.team-section .team-box p {
    margin-bottom: 0
}

.our-clinic-section {
    padding: 50px 0;
    background: #fff
}

.our-clinic-section .clinic-box {
    text-align: center;
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 310px
}

.our-clinic-section .clinic-box img {
    width: 100%
}

.our-clinic-section .clinic-box h5 {
    margin-top: 20px
}

.our-clinic-section .clinic-box h5 i {
    margin-right: 5px
}

.our-clinic-section .clinic-box p {
    padding: 0 30px
}

.goal-section {
    padding: 50px 0;
    background: #fff
}

.goal-section .goal-box {
    background: var(--chardonnayColor);
    padding: 30px;
    border-radius: 10px;
    text-align: center
}

.goal-section .goal-box h4 {
    font-weight: 700
}

.goal-section .goal-box p {
    padding-bottom: 0
}

.insta-feed-section {
    padding: 80px 0
}

.partner-section {
    padding: 80px 0
}

.partner-section .client-box {
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.partner-section img {
    width: 165px !important
}

.partner-section .owl-dots,
.partner-section .owl-nav {
    display: none
}

.home-contact-section {
    padding: 50px 0
}

.home-contact-section .home-contact-left-box {
    height: 348px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    text-align: center
}

.newsletter-section {
    padding: 50px 0;
    background: var(--moreLightPinkColor);
    position: relative
}

.newsletter-section::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 150px;
    width: 26%;
    height: 2px;
    background: #ccc
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 80px;
    right: 150px;
    width: 26%;
    height: 2px;
    background: #ccc
}

.newsletter-section .subscribe-box {
    border-right: 1px solid var(--darkGrayColor)
}

.newsletter-section .subscribe-box .subscribe-form {
    text-align: center
}

.newsletter-section .newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.newsletter-section .common-input {
    height: 60px;
    width: 300px;
    color: #333;
    text-shadow: none;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    padding: 0 25px;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    font-weight: 400;
    border: 1px solid transparent;
    box-shadow: none;
    outline: 0
}

.newsletter-section .btn {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0;
    width: 180px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(247, 135, 191, .75);
    background: #e78190;
    color: #fff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px
}

footer {
    color: var(--darkGrayColor);
    padding: 30px 0 10px 0
}

footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
    color: var(--skyBlue);
}

footer ul li {
    color: var(--darkGrayColor)
}

footer .btn-primary {
    background-color: var(--darkBlueColor);
    border-color: #0062cc
}

footer p {
    color: var(--darkGrayColor)
}

footer ul {
    margin: 0;
    padding: 0;
    margin-bottom: 0px;
}

footer ul li {
    list-style: none;
    margin-bottom: 2px;
}

footer ul li a {
    color: var(--darkGrayColor);
    transition: color 0.45s ease;
}

footer ul li a:hover {
    color: var(--skyBlue)
}

footer .contact-info-section ul li {
    display: flex;
    gap: 15px
}

footer .contact-info-section ul li.mobile-view {
    display: none;
}

/* .contact-info-section ul li:last-child {
    display: inline-flex !important;
    margin-top: 10px;
    gap: 0px;
} */

.social-icon-box ul.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-top: 0
}

.social-icon-box ul.social-icons li {
    list-style: none
}

.social-icon-box ul.social-icons li a {
    width: 60px;
    height: 60px;
    background: 0 0;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--darkGrayColor)
}

.social-icon-box ul.social-icons li a i {
    font-size: 35px
}

.social-icon-box ul.social-icons li a:hover {
    background: #000;
    color: #fff !important
}

.footer-2 {
    padding: 40px 0;
    color: #fff
}

.footer-2 .row {
    align-items: center
}

.footer-2 img {
    width: 165px
}

.footer-2 p {
    margin-bottom: 0;
    color: #fff
}

.copy-section {
    background-color: #fcf7ee;
    padding: 20px 0;
    text-align: center;
    color: var(--darkGrayColor);
    font-size: .9rem
}

.copy-section p {
    text-align: left;
    margin-bottom: 0
}

.copy-section ul {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin-bottom: 0
}

.copy-section ul li {
    list-style: none
}

.copy-section ul li a {
    color: var(--darkGrayColor);
    transition: color 0.45s ease;
}

.copy-section ul li a:hover {
    color: var(--darkPinkColor)
}

.listing-page {
    background: #f1f1f1;
    padding: 15px 0
}

.listing-wrapper {
    display: flex
}

.listing-wrapper .listing-left-box {
    flex: 0 0 300px;
    max-width: 300px;
    padding: 0 10px 0 0
}

.listing-wrapper .listing-left-box .filter-box {
    background: #fff
}

.listing-wrapper .listing-left-box .filter-box .filter-main-title {
    padding: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box {
    padding: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box .filter-inner-title {
    font-size: 14px;
    text-transform: uppercase
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul {
    margin: 0;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 5px
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul li {
    list-style: none;
    font-size: 14px;
    color: #777
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul li label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 0
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul .filter-sublist {
    margin-left: 20px;
    display: none
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul .filter-sublist.active {
    display: block
}

.listing-wrapper .listing-right-box {
    flex-grow: 1;
    overflow: auto
}

.listing-wrapper .listing-right-box .listing-box {
    background: #fff;
    overflow: hidden
}

.listing-wrapper .listing-right-box .listing-main-title {
    padding: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden
}

.listing-wrapper .listing-right-box .listing-inner-box {
    padding: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0
}

.listing-wrapper .listing-right-box .listing-inner-box img {
    border: 1px solid #ccc;
    padding: 5px
}

.listing-page-details {
    padding: 30px 0
}

.listing-page-details img {
    width: 100%
}

.listing-page-details h1 {
    font-size: 30px
}

.top-doctors-section {
    text-align: center
}

.top-doctors-section .owl-carousel {
    margin-top: 30px
}

.top-doctors-section .owl-carousel h6 {
    text-transform: uppercase;
    color: #000;
    margin-top: 10px;
    margin-bottom: 5px
}

.top-doctors-section .owl-carousel span {
    color: #555;
    font-size: 13px
}

.top-doctors-section.top-doctors-section-package .owl-carousel span {
    color: #555;
    font-size: 10px
}

.top-doctors-section.top-doctors-section-package .owl-carousel h6 {
    font-size: 80%;
    margin-bottom: 0
}

.top-doctors-section .owl-carousel span+span {
    font-style: italic;
    display: block;
    font-size: 11px;
    font-weight: 700
}

.top-doctors-section.top-doctors-section-package .owl-carousel span+span {
    font-size: 10px
}

.widget .form-control,
.widget input[type=date],
.widget input[type=email],
.widget input[type=password],
.widget input[type=text],
.widget input[type=url],
.widget select,
.widget textarea {
    font-weight: 300;
    font-size: 12px;
    font-style: italic;
    border: 1px solid #e1e1e1;
    color: #545454;
    background-color: #f8f9fa;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.widget .btn-default,
.widget input[type=reset],
.widget input[type=submit] {
    background-color: #2d2d2d;
    border-color: #2d2d2d;
    color: #fff
}

.widget .btn,
.widget input[type=reset],
.widget input[type=submit] {
    padding: 10px 28px;
    font-size: 11px;
    font-weight: 300;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-transform: uppercase
}

.widget .newsletter-frm button,
.widget .newsletter-frm input[type=submit] {
    padding: 8px 20px
}

.widget .newsletter-frm button:hover,
.widget .newsletter-frm input[type=submit]:hover {
    background: #008c99
}

.widget h3 {
    clear: both;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 19px;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase
}

.widget h3 span {
    display: inline-block;
    max-width: 100%;
    position: relative;
    padding: 0 26px;
    color: var(--blueColor)
}

.widget h3 span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 20px;
    height: 4px;
    border-top: 1px solid var(--blueColor);
    border-bottom: 1px solid var(--blueColor)
}

.widget h3 span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
    width: 20px;
    height: 4px;
    border-top: 1px solid var(--blueColor);
    border-bottom: 1px solid var(--blueColor)
}

.widget .search-box input[type=text] {
    padding-top: 7px;
    font-size: 14px;
    float: left;
    width: calc(100% - 40px);
    background: #fff;
    margin: 0 !important
}

.widget .search-box button,
.widget .search-box input[type=submit] {
    float: left;
    width: 40px;
    padding: 6px 10px;
    color: #fff;
    font-size: 14px;
    border-left: none;
    cursor: pointer
}

.widget .search-box button:hover,
.widget .search-box input[type=submit]:hover {
    background: #008c99
}

.widget .search-box form.search::after {
    content: "";
    clear: both;
    display: table
}

.widget-box {
    background: #fff;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid #ccc
}

.widget ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0
}

.widget li {
    line-height: 25px;
    font-size: 13px;
    font-weight: 500;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    position: relative;
    padding-left: 20px
}

.blog-detail-sec .calander-row .rpwe-block h3 {
    text-align: left
}

.widget li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--blueColor)
}

.widget li a {
    line-height: 25px;
    font-size: 13px;
    font-weight: 500;
    color: #222;
    text-decoration: none
}

.widget li a:hover {
    padding-left: 10px;
    color: var(--darkBlueColor)
}

.doctor {
    text-transform: capitalize
}

.doctor-left-box {
    border: 1px solid #ccc
}

.doctor .profile-img {
    text-align: center
}

.doctor .profile-img img {
    width: 200px !important;
    height: 200px;
    border-radius: 50%
}

.doctor .name {
    font-weight: 600;
    font-size: 1.1875rem
}

.doctor .details {
    font-weight: 500;
    font-size: .9375rem;
    color: #545b62
}

.doctor .doctor-abt div {
    padding-bottom: 1.5625rem;
    text-transform: none
}

.doctor h2 {
    font-size: 1.3125rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 1.5625rem;
    width: 100%;
    text-decoration: underline;
    margin-top: 0;
    margin-bottom: 7px
}

.doctor .review {
    margin-top: .625rem;
    font-size: .8125rem;
    font-weight: 550
}

.doctor .review h5 {
    color: #333;
    font-size: .875rem;
    margin-bottom: 1px;
    letter-spacing: 1px
}

.doctor .review i {
    font-size: .9375rem
}

.doctor small i {
    font-size: .8125rem;
    padding-bottom: 1px;
    vertical-align: middle;
    color: #00813e
}

.doctor .list-unstyled li,
.doctor-list .list-unstyled li {
    list-style-type: none !important
}

.doctor .list-unstyled li a.submenu {
    text-decoration: none;
    color: #000;
    font-size: .875rem;
    text-transform: capitalize
}

.doctor .list-unstyled li a.submenu:after {
    position: absolute;
    content: "\002b";
    right: 0;
    margin-top: -5px;
    padding-right: .875rem;
    font-size: 1.3125rem;
    font-weight: 600;
    color: #ccc
}

.doctor .list-unstyled li a.expand:after {
    position: absolute;
    content: "\2013";
    right: 0;
    margin-top: -5px;
    padding-right: 1rem;
    font-size: 1.3125rem;
    font-weight: 600;
    color: #ccc
}

.doctor .children ul li a {
    color: #00813e;
    text-decoration: none;
    font-size: .8125rem;
    font-weight: 600;
    padding: 3px;
    text-transform: capitalize
}

.doctor .children ul li a:hover {
    text-decoration: underline
}

.doctor .nav-link {
    color: #00813e !important
}

.doctor .nav-link:hover {
    color: #000 !important
}

.doctor .show-more {
    color: #00813e;
    font-size: .875rem
}

.doctor .hide {
    display: none
}

.doctor .search-bar-left input[type=text] {
    padding-top: 5px;
    padding-bottom: 6px;
    padding-left: .9375rem;
    border: none;
    margin-top: .9375rem;
    margin-bottom: 1.25rem;
    font-size: .875rem;
    border: #ccc solid 1px;
    border-radius: 50px;
    width: 100%;
    text-indent: 1.25rem
}

.doctor .search-bar-left i {
    position: absolute;
    top: 22px;
    left: 1.6875rem;
    color: #ccc
}

.doctor .list-unstyled li ul {
    margin-left: 0;
    padding-left: .75rem
}

.treatment {
    background: linear-gradient(90deg, #fdfdfd 20%, #fdfdfd 10%)
}

.treatment .nav-pills .nav-link {
    border: solid 1px #dee2e6 !important;
    border-left: solid 1px #fff !important;
    border-right: none !important;
    border-radius: 0 !important;
    font-size: .9375rem;
    font-weight: 500;
    padding-top: 8px;
    padding-bottom: .625rem;
    columns: #b2b2b2;
    letter-spacing: 1px;
    color: #222;
    text-shadow: 0 1px #627199
}

.treatment .nav-pills .nav-link:not(:last-of-type) {
    border-bottom: none !important
}

.treatment .nav-pills .active {
    background: linear-gradient(to right, #f9f9f9, #fff) !important;
    color: var(--blueColor) !important;
    position: relative;
    border-left: solid 4px var(--blueColor) !important
}

.treatment .nav-pills a:hover {
    color: var(--blueColor)
}

.treatment .nav-pills a.active:after1 {
    content: "";
    position: absolute;
    right: 0;
    top: 5%;
    width: 0;
    height: 0;
    border: 26px solid transparent;
    border-left-color: #eee;
    border-right: 0;
    margin-top: -4px;
    margin-right: -1.6875rem
}

.treatment .nav-pills .active i {
    border: solid #ccc;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    text-align: right;
    position: absolute;
    right: .9375rem;
    top: 1.0625rem
}

.treatment .nav-pills .active .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    text-align: right
}

.treatment .h1 {
    font-size: 2.3125rem;
    font-weight: 700;
    color: #222;
    letter-spacing: .3px;
    margin-bottom: 2.1875rem;
    text-transform: uppercase;
    text-shadow: 0 1px #627199;
    text-decoration-color: #222;
    line-height: 2.9rem;
    width: 100%
}

.treatment .h2 {
    font-size: 1.3125rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 1.1875rem;
    text-transform: uppercase;
    text-decoration: underline;
    text-shadow: 0 1px #627199;
    text-decoration-color: #222;
    line-height: 1.25rem;
    width: 100%
}

.treatment hr {
    background-image: linear-gradient(to right, #f5f5f5 52%, #f5f5f5 52%) !important;
    height: 1px;
    width: 20%;
    margin-bottom: 1.0625rem
}

.treatment .intro ol li {
    padding: 0
}

.treatment .intro ol li p {
    margin-bottom: 7px !important
}

.treatment .intro h6 {
    font-size: 15px;
    font-weight: 600;
    padding: 0 0 0 10px;
    margin: 0
}

.treatment .intro p {
    padding: 0 0 0 10px;
    margin: 0;
    color: #a1a1a1
}

.treatment .intro p1 {
    display: table;
    padding: 0;
    margin: 0;
    width: 100% !important;
    border: solid 1px #dee2e6 !important;
    font-size: .875rem
}

.treatment ul {
    padding-left: 1.25rem !important;
    margin-left: 0 !important
}

.treatment .intro p:not(:last-of-type) {
    border-bottom: none !important
}

.treatment .intro p .cell {
    display: table-cell;
    padding: .75rem
}

.treatment .intro p .cell:first-child {
    border-right: 1px solid #dee2e6 !important;
    width: 30%;
    font-weight: 600
}

.pages ul.parent>li>a {
    color: var(--blueColor);
    font-size: .9375rem;
    font-weight: 510
}

.pages ul.parent>li::before {
    width: 0;
    height: 0
}

.pages ul.parent>li>a:hover {
    text-decoration: none
}

.pages .list-unstyled .list-unstyled {
    padding: .9375rem 0;
    list-style-image: url(../img/ul-nav.png);
    list-style-position: inside;
    border-top: solid 1px #00813e
}

.pages .list-unstyled .list-unstyled li {
    margin: 2px .9375rem;
    border-bottom: dotted 1px #ccc
}

.pages .list-unstyled .list-unstyled li a {
    color: #636363;
    font-size: .875rem;
    padding-left: 3px;
    text-transform: capitalize
}

.page-footer .rate-box h4 {
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -.3px;
    word-spacing: 0
}

.page-footer .rate-box h5 {
    color: #b2b2b2;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -.3px;
    word-spacing: 0
}

.page-footer .rate-box .rating-stars {
    color: #b2b2b2;
    font-size: 1.7rem;
    text-decoration: none
}

.page-footer .rate-box .rating-stars span {
    cursor: pointer
}

.page-footer .rate-box .rating-stars .fa:hover {
    color: #ff533d
}

.page-footer .rate-box .rating-result {
    color: #b2b2b2;
    font-size: .79rem
}

.page-footer .rate-box .checked {
    color: #ff533d
}

.page-footer {
    color: #b2b2b2;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .5px;
    background: #343a40;
    line-height: 1.375rem
}

.page-footer a {
    color: #b2b2b2;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .4px;
    line-height: 23px;
    text-transform: capitalize
}

.page-footer a:hover {
    color: #b2b2b2
}

.page-footer .social-box {
    background: #00813e;
    color: #e1e1e1;
    padding: 1.25rem 0
}

.page-footer .social-box .social-links a i {
    vertical-align: middle;
    margin: 3px;
    font-size: 1.25rem
}

.page-footer .social-box .border-x {
    border-left: dotted 2px #cbcbcc;
    border-right: dotted 2px #cbcbcc
}

.page-footer h6 {
    font-size: .875rem
}

.page-footer hr {
    border: solid 1px #6c757d;
    width: 4.375rem;
    margin: auto;
    margin-top: 0;
    margin-bottom: 1.25rem;
    display: inline-block
}

.page-footer small {
    font-size: .75rem
}

.testimonial-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px
}

.testimonial-box .quote span i {
    font-size: 1.5625rem;
    margin-right: .625rem;
    color: var(--blueColor)
}

.testimonial-box img {
    width: 100%;
    border: 5px #ccc solid
}

.testimonial-box i {
    font-size: 90%
}

.testimonial-box blockquote {
    font-size: 90%
}

.client-testimonials-box {
    padding-top: 5px;
}

.testimonials-section .owl-theme .owl-dots .owl-dot span {
    margin-top: 25px;
}

.client-testimonials-box .client-testimonials-box-content {
    min-height: 350px;
    background: var(--skyBlue);
    border-radius: 10px;
    padding: 25px;
    width: 98%;
    margin: auto
}

.client-testimonials-box .client-testimonials-box-content p {
    color: #fff;
    margin-bottom: 0px;
}

.client-testimonials-box .client-testi-star {
    width: 225px !important;
    margin: auto;
    margin-top: -65px;
    margin-bottom: 20px;
    padding: 10px
}

.client-testimonials-box h2 {
    color: #000;
    font-size: 1rem;
}

.testimonials-section .client-testimonials-box .testimonial-footer {
    position: absolute;
    bottom: 20px;
    left: 30px
}

.contact-section i {
    font-size: 18px;
    margin-right: 10px
}

.map iframe {
    width: 100%;
    height: 400px
}

.contact-info span:first-of-type {
    width: 40px
}

.whatsapp-panel-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60
}

.about-section {
    padding: 50px
}

.about-section span {
    font-size: 6rem;
    color: #747669;
    opacity: .5;
    margin-bottom: -20px;
    display: block
}

.about-section .team-box {
    background: #fff;
    border: 1px solid #ccc;
    padding: 25px;
    border-radius: 10px;
    display: block;
    color: #000;
    margin-top: 30px
}

.about-section .team-box img {
    width: 100%;
    border: 1px solid #ccc
}

.about-section .team-box h6 {
    font-weight: 700
}

.about-section .team-box p {
    margin-bottom: 0
}

.about-section-2 {
    padding: 50px;
    background: #faebd7
}

.about-section-2 span {
    font-size: 10rem;
    color: #747669;
    opacity: .5;
    margin-top: -100px;
    display: block
}

.about-section-2 h2 {
    text-align: right;
    margin-top: 20px
}

.inner-banner-section {
    width: 100%
}

.inner-banner-section img {
    width: 100%
}

.inner-header-section {
    background: linear-gradient(45deg, #8b7948, transparent);
    color: #fff;
    position: relative;
    padding: 50px 0
}

.inner-header-section img {
    width: 100%
}

.form-control {
    border-radius: 0;
    padding: 24px 12px
}

.form-control-select {
    border-radius: 0;
    padding: 6px 12px;
    height: 50px
}

.map-section iframe {
    width: 100%;
    height: 500px
}

.select-form-control {
    padding: 0 5px;
    height: 50px
}

.service-section {
    padding: 50px
}

.service-section-2 {
    padding: 50px;
    background: #faebd7
}

.service-section-2 span {
    font-size: 12rem;
    color: #747669;
    opacity: .5;
    margin-top: -100px;
    display: block
}

.service-section-2 .service-detail-box {
    padding-right: 30px
}

.media-box {
    margin-bottom: 30px
}

.media-box img {
    height: 100%
}

.highlight {
    font-weight: 700;
    font-size: .875rem !important;
    line-height: 24px;
    color: #000 !important;
    margin-bottom: 0 !important;
    opacity: 1 !important
}

.core-value-section {
    padding: 50px 0;
    background: #afe1ff;
    background-size: cover;
    position: relative;
    z-index: 100
}

.core-value-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 67%);
    z-index: -1
}

.core-value-section .owl-nav.disabled {
    display: none
}

.core-value-section .owl-nav .owl-prev {
    position: absolute;
    left: -100px;
    top: 100px
}

.core-value-section .owl-nav .owl-next {
    position: absolute;
    right: -100px;
    top: 100px
}

.core-value-section .owl-nav .owl-next:hover,
.core-value-section .owl-nav .owl-prev:hover {
    background: 0 0
}

.core-value-section .owl-nav .owl-next span,
.core-value-section .owl-nav .owl-prev span {
    color: #000;
    font-size: 100px
}

.core-value-section .item {
    transition: width 1s ease;
    cursor: pointer
}

.core-value-section .item h3 {
    color: #fff;
    text-align: center
}

.core-value-section .item p {
    color: #ccc;
    position: relative;
    text-align: justify
}

.core-value-section .item p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--skyBlue);
    transform: translateX(-50%);
    transform-origin: center;
    transition: width 1s ease;
}

.core-value-section .item:hover p::before {
    width: 100%
}

.core-value-section .item p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--skyBlue);
    transform: translateX(-50%);
    transform-origin: center;
    transition: width 1s ease;
}

.core-value-section .item:hover p::after {
    width: 100%
}

.core-value-section .item h3 {
    text-transform: uppercase;
    margin-bottom: 20px
}

.core-value-section .item p {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 17px
}

.new-team-section {
    padding: 25px 0px;
}

.home-new-team-section {
    padding-top: 80px;
    padding-bottom: 65px;
    background: url(../images/home-team-graphic.png) no-repeat bottom -204px left -345px
}

.new-team-section .row {
    min-height: 520px
}

.new-team-section .team-box {
    margin-bottom: 120px;
    position: relative;
    cursor: pointer
}

.new-team-section .team-box p {
    color: #fff;
    transition: all .5s;
    height: 0;
    transform: translateY(35px);
    text-align: justify
}

.new-team-section .team-box img {
    width: 100%
}

.new-team-section .team-box .team-info {
    padding: 10px 20px;
    padding-top: 15px;
    background-color: #bebebe;
    transition: ease-in-out .5s;
    min-height: 100px;
    margin-bottom: 20px;
    position: absolute;
    overflow: hidden;
    width: 100%
}

.new-team-section .team-box .team-info h4 {
    text-transform: uppercase;
    margin-bottom: 0
}

.new-team-section .team-box .team-info h4.team-name {
    color: #fff
}

.new-team-section .team-box .team-info h4.designation {
    font-size: 18px
}

.new-team-section .view-btn .btn-custom {
    background: var(--skyBlue);
    color: #fff;
    border-radius: 25px;
    padding: 7px 32px;
    position: relative
}

.new-team-section .main-team .team-collumn {
    margin-bottom: 40px;
    cursor: pointer
}

.new-team-section .main-team .team-collumn img {
    width: 100%
}

.new-team-section .main-team .team-collumn .team-text {
    padding: 30px;
    background: #d9d9d9;
    min-height: 144px;
    position: relative
}

.new-team-section .right-arrow {
    position: absolute;
    right: 28px;
    bottom: 10px;
    cursor: pointer
}

.new-team-section .main-team .team-collumn .team-text h3 {
    line-height: 27px
}

/* .main-blog.top-space,
.new-team-section.top-space {
    padding-top: 120px
} */

.trophy-section {
    background: url(../images/trophy-bg.jpg) no-repeat top center #000;
    padding: 85px 0;
    background-size: contain;
    position: relative
}

.trophy-section p {
    text-align: justify
}

.trophy-section .trophy-info {
    padding: 40px;
    background: var(--greyColor);
    min-height: 580px
}

.trophy-section .trophy-info h3 {
    font-size: 3.5rem;
    line-height: 58px
}

.trophy-section .trophy-info h4 {
    font-size: 2rem
}

.video-fluid-section {
    padding-top: 25px;
}

.video-fluid-section .embed-responsive {
    border: 8px solid #ccc;
}

.video-fluid-section,
.video-fluid-section img {
    width: 100%;
    position: relative
}

.video-fluid-section .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.video-fluid-section .video .video-play {
    width: 70px;
    height: 70px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: ease-in-out .5s;
    cursor: pointer
}

.video-fluid-section .video .video-play:hover {
    box-shadow: 1px 1px 22px 3px #cac0ff
}

.video-fluid-section .video .video-play i {
    font-size: 20px
}

.footer-slide {
    background: #fcfcfc;
    padding-top: 20px;
    padding-bottom: 0;
    margin: 5px 0;
}

.footer-slide #runSlide .item h4 {
    font-size: 21px
}

.footer-slide .marquee-span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    padding: 0 20px
}

.footer-slide img {
    filter: grayscale(100%)
}

footer img.footer-logo {
    width: 180px;
    margin-bottom: 100px
}

footer .contact-info-section .contact-info a {
    color: #000
}

footer .contact-info-section .contact-info form input {
    background: #ccc;
    padding: 15px 12px
}

footer .contact-info-section .contact-info form .sub-btn {
    border-radius: 0;
    padding: 5px 10px;
    background: var(--skyBlue);
    color: #fff;
    margin-left: 5px
}

.inner-banner {
    position: relative
}

.inner-banner img {
    width: 100%
}

.testimonials-section .owl-carousel .owl-item img {
    opacity: 0
}

.inner-banner h1 {
    margin-top: -150px;
    transform: translateY(36px);
    color: #fff;
    text-shadow: 1px 1px #000
}

.inner-banner-center h2 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45%;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.started-section {
    background: #000
}

.started-section .excellence-logo img {
    width: 370px
}

.started-section .excellence-para {
    color: var(--whiteColor);
    text-align: justify;
    font-weight: 200
}

.started-section .how-start {
    position: relative;
    background: url(../images/how-start.jpg);
    background-size: cover;
    padding: 270px 0;
    background-position: center
}

.started-section .how-start h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.core-value-section .vision-sec {
    padding: 20px;
    background: #dedede;
    margin-top: 45px
}

.core-value-section .vision-sec h1 {
    font-size: 65px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px
}

.core-value-section .vision-sec p {
    font-size: 16px;
    text-align: justify
}

.core-value-section .vision-wrapper {
    background: #d9d9d9;
    margin-top: 50px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.core-value-section .vision-wrapper h2 {
    font-size: 4rem;
    padding: 0 50px;
    margin-bottom: 0
}

.core-value-section .vision-wrapper p {
    margin-bottom: 0;
    text-align: justify
}

.how-we-started-section {
    background: url(../images/how-we-started-bg.jpg);
    padding: 80px 0
}

.how-we-started-section img {
    width: 100%
}

.how-we-started-wrapper {
    display: flex
}

.how-we-started-wrapper .how-we-started-left {
    width: 50%
}

.how-we-started-wrapper .how-we-started-right {
    width: 50%
}

.brands-section {
    padding: 80px 0;
    background: url(../images/brand-graphic.png) no-repeat bottom -70px left -197px
}

.brands-section .brand-box {
    background: #d8d8d8;
    padding: 45px;
    min-height: 550px;
    display: block;
    position: relative;
    margin-bottom: 30px
}

.brands-section .brand-box h2 {
    font-size: 2.4rem;
    font-weight: 700;
    height: 135px
}

.brands-section .brand-box p {
    font-size: 1rem;
    text-align: justify
}

.brands-section .brand-box .read-more {
    color: var(--bgBlue);
    position: absolute;
    bottom: 45px;
    left: 45px
}

.csr-section {
    padding: 80px 0;
    background: url(../images/csr-graphic.png) no-repeat bottom -90px left -197px
}

.journey-section {
    background: url(../images/csr-graphic.png) no-repeat bottom -110px left -197px
}

.csr-section .row {
    margin-bottom: 60px
}

.csr-box-right {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 30px
}

.csr-box-right h3 {
    color: var(--skyBlue);
    margin-bottom: 30px;
    font-size: 3rem
}

.csr-box-right p {
    padding-right: 30px;
    text-align: justify
}

.media-section {
    padding: 80px 0;
    background: url(../images/media-graphic.png) no-repeat bottom -75px left -197px
}

.media-section h2 {
    font-size: 3rem;
    margin-bottom: 20px
}

.media-box {
    margin-bottom: 65px
}

.media-box img {
    width: 100%
}

.media-box h4 {
    margin-top: 30px;
    margin-bottom: 0
}

.media-box p {
    margin-top: 15px;
    text-align: justify
}

.career-section {
    padding: 25px 0;
}

.career-section .career-top-box h2 {
    font-size: 3rem;
    margin-top: 50px;
    margin-bottom: 50px
}

.career-section .career-box {
    background: #d8d8d8;
    padding: 36px;
    min-height: 300px;
    width: 80%;
    margin: auto;
    display: block;
    position: relative;
    margin-bottom: 80px;
    text-align: center
}

.career-section .career-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px
}

.career-section .career-box p {
    font-size: 1rem;
    text-align: center;
    margin-top: 50px
}

.career-section .career-box .read-more {
    color: var(--bgBlue);
    position: absolute;
    bottom: 45px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 65%
}

.custom-modal .modal-header {
    border-bottom: 0;
    padding-bottom: 0
}

.custom-modal .modal-content {
    background: 0 0;
    background: rgb(0, 0, 0, .7);
    color: #ccc;
    text-align: justify;
    padding: 20px
}

.custom-modal .close {
    color: #fff;
    opacity: .8
}

.modal-backdrop.show {
    opacity: .3
}

.careers-list {
    margin: 0;
    padding: 0;
    margin-left: 20px
}

.careers-list li {
    margin-bottom: 10px
}

.collapse-box-hide-content {
    display: none
}

.core-value-section.core-value-section .item p {
    padding: 25px 0
}

.company-practice-section.core-value-section.core-value-section .item {
    min-height: 550px;
    text-align: center
}

.company-practice-section.core-value-section.core-value-section .item h3 {
    font-size: 2rem;
    height: 80px
}

.company-practice-section.core-value-section.core-value-section .item .btn {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 200px
}

.about-new-section.welcome-section .container {
    color: #fff;
    width: 38%;
    right: 8%;
    left: auto;
    top: 80px
}

.about-new-section.welcome-section .container .heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--skyBlue)
}

.about-new-section.welcome-section .container p {
    color: #000
}

.about-new-section.welcome-section .about-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.about-new-section.welcome-section .about-list li {
    color: #000;
    line-height: 24px;
    list-style: none;
    padding-left: 25px;
    position: relative;
    left: 0
}

.about-new-section.welcome-section .about-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: #4e4e4e
}

.success-stories-section {
    padding: 80px 0;
    background: url(../images/brand-graphic.png) no-repeat bottom -550px left -197px
}

.success-stories-section .success-stories-box {
    background: #bebebe;
    padding: 0;
    width: 100%;
    margin: auto;
    display: block;
    position: relative;
    margin-bottom: 30px
}

.success-stories-section .success-stories-box .success-stories-box-body {
    padding: 18px;
    height: 210px
}

.success-stories-section .success-stories-box .success-stories-box-body h4 {
    color: #fff
}

.success-stories-section .success-stories-box .success-stories-box-body h4.text-skyBlue {
    color: var(--skyBlue)
}

.success-stories-section .success-stories-box .success-stories-box-body .team-name-2 {
    font-size: 1.3rem
}

.success-stories-section .success-stories-box img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.success-stories-section .success-stories-box h2 {
    font-size: 2rem;
    margin-bottom: 20px
}

.success-stories-section .success-stories-box p {
    font-size: 1rem
}

.success-stories-section .success-stories-box .read-more {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 65%
}

.journey-section .csr-box-right {
    position: static
}

.journey-section .csr-box-right h3 {
    margin-bottom: 0
}

.journey-section .csr-box-right h4 {
    font-size: 2rem
}

::-webkit-scrollbar {
    width: .5em;
    height: 0.5em
}

::-webkit-scrollbar-button {
    background: #ccc
}

::-webkit-scrollbar-track-piece {
    background: #888
}

::-webkit-scrollbar-thumb {
    background: #eee
}

.our-services-section {
    background: url(../images/our-services-1.webp) top center;
    color: #fff;
    position: relative;
    background-size: cover;
    padding: 30px 0 1px
}

.our-services-section .service-wrapper {
    border-bottom: 1px solid var(--skyBlue);
    margin-bottom: 22px;
    padding-bottom: 15px
}

.our-services-section .service-wrapper .service-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 230px
}

.our-services-section h2.heading-2 {
    padding-top: 20px;
    color: #fff
}

.our-services-section .service-wrapper .absolute-box {
    top: 0;
    right: 0;
    width: 100%;
    padding: 70px 0 40px 0;
    z-index: 1;
    transition: ease-in-out .5s;
    background-size: contain;
    background-size: cover;
    background-position-x: right;
    display: none;
}

.our-services-section .service-wrapper .main-services-para {
    margin-bottom: 0
}

.our-services-section .service-wrapper.active>.absolute-box,
.our-services-section .service-wrapper.active>.service-row .main-services {
    display: block
}

.services-sub-head .service-arrow,
.simplify-sub-head .simplify-arrow,
.contact-sub-head .contact-arrow,
.faq-sub-head .faq-arrow {
    display: none
}

.our-services-section .service-wrapper h3 {
    cursor: pointer;
    min-width: 300px
}

.our-services-section .service-wrapper a h3 {
    color: #fff
}

.our-services-section .service-wrapper a:hover h3 {
    color: var(--skyBlue)
}

.our-services-section .service-wrapper .absolute-box .audit-head {
    padding: 5px 30px;
    background: #fff;
    color: var(--skyBlue);
    margin-bottom: 40px
}

.our-services-section .service-wrapper .absolute-box .main-btns .btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.our-services-section .service-wrapper .absolute-box .main-btns .btn-list li {
    width: 32.3%;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    list-style: none
}

.our-services-section .service-wrapper .absolute-box .main-btns .btn-list li {
    background-image: url(../images/services-btn-bg-white.png)
}

.our-services-section .service-wrapper .absolute-box .main-btns .btn-list li a {
    width: 85%;
    /* background-image: url(../images/services-btn-bg-white.png); */
    color: #000 !important;
    border-radius: 5px;
    min-height: 40px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: contain;
    margin: auto;
    text-transform: uppercase;
}

.our-services-section .service-wrapper:last-child {
    border: 0
}

.affiliation-accreditations-section {
    padding-top: 265px;
    padding-bottom: 50px;
    background: url(../images/affiliation-accreditations-bg.webp) top center no-repeat;
    background-size: 1500px;
}

.affiliation-accreditations-section .affiliation-top-wrapper {
    margin-top: -170px;
    padding-left: 200px;
}

.affiliation-accreditations-section .affiliation-top-wrapper h2 {
    text-align: left;
}

.affiliation-accreditations-section .affiliation-top-wrapper p {
    text-align: justify;
}


.affiliation-accreditations-section .heading-2 {
    color: var(--skyBlue);
    text-align: center
}

.affiliation-accreditations-section p {
    text-align: center
}

.affiliation-accreditations-section .affiliation-text-list ul {
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 20px;
    transform: translateX(28px);
}

.affiliation-accreditations-section .affiliation-text-list ul li {
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--skyBlue);
    list-style: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 30px;
    border-right: 5px solid #888;
    padding: 0 20px;
}

.affiliation-accreditations-section .affiliation-text-list ul li:last-child {
    padding: 0px;
    padding-left: 20px;
}

.affiliation-accreditations-section .affiliation-text-list ul li:last-child {
    border: 0
}

.our-services {
    background: url(../images/our-services-2.jpg) top center;
    padding: 60px 0;
    background-size: cover
}

.our-services .heading-2 {
    color: var(--skyBlue)
}

.our-services .tab-content .tab-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 3%
}

.our-services .tab-content .tab-list li {
    width: 31.3%;
    position: relative;
    z-index: 1;
    margin-bottom: 30px
}

.our-services .tab-content .tab-list li a {
    width: 100%;
    background: #fff;
    color: #47a9da !important;
    border: 1px solid #fff !important;
    border-radius: 50px;
    min-height: 65px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 17px;
    box-shadow: -5px 12px 2px -4px #47a9da;
    margin-bottom: 20px;
    padding-left: 90px;
    text-align: left
}

.our-services .tab-content .tab-list li a::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 26px;
    height: 65px;
    width: 65px;
    background: #47a9da;
    z-index: -2;
    border-radius: 0 50% 50% 0
}

.our-services .tab-content .tab-list li a img {
    position: absolute;
    top: -17px;
    left: -15px;
    width: 95px
}

.our-services .tab-content .tab-list li a:hover {
    background: #fff !important
}

.our-services .nav-strip {
    background: #ffffffe0;
    padding: 6px 0;
    margin-bottom: 28px
}

.our-services .nav-tabs {
    border-bottom: 0 solid #dee2e6;
    gap: 36px
}

.nav-tabs .nav-link.active,
.our-services .nav-strip .nav-tabs .nav-item.show .nav-link {
    background-color: #ffffff00;
    border-color: #dee2e6 #dee2e6 #1c99d3;
    border: 0 solid;
    position: relative
}

.nav-tabs .nav-link.active::after,
.our-services .nav-strip .nav-tabs .nav-item.show .nav-link {
    width: 100%;
    height: 4px;
    background: #ffffff;
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.our-services .nav-strip .nav-link {
    color: #1c99d3;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px
}

.blog-section {
    padding: 20px 0;
    background: url(../images/blog-bg.jpg) top center no-repeat;
    background-size: contain;
    padding-bottom: 0px;
}

.blog-section .blog-box {
    background: url(../images/blog-pic.jpeg);
    position: relative;
    background-size: cover
}

.blog-section .blog-box .blog-top {
    text-align: center
}

.blog-section .blog-box .blog-top img {
    width: 100%;
    height: 260px
}

.owl-carousel .owl-nav button {
    width: 25px;
    text-align: center;
    border: 1px solid #ccc !important
}

.blog-section .blog-box .blog-bottom {
    background: #102b24d6;
    text-align: center;
    padding: 18px 25px 50px;
    height: 240px
}

.blog-section .blog-box .blog-top h3 {
    color: #fff;
    font-size: 32px
}

.blog-section .blog-box .blog-bottom h3 {
    color: #fff;
    font-size: 1.3rem;
    line-height: 26px;
    margin-bottom: 0;
}

.blog-section .blog-box .blog-bottom span.date {
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    display: block;
}

.blog-section .blog-box .blog-bottom .errow-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center
}

.blog-section .blog-box .blog-bottom .errow-icon:hover {
    background: #fff
}

.blog-section .blog-box .blog-bottom .errow-icon i {
    font-size: 20px;
    color: #fff
}

.blog-section .blog-box .blog-bottom .errow-icon:hover i {
    color: #000
}

.blog-section.blog-details-sec {
    background: #fff;
    padding-top: 100px
}

.blog-icons.newsletter-section::after,
.blog-icons.newsletter-section::before {
    background: #fff
}

.faq-section {
    background: url(../images/csr-box4.webp);
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: top
}

.faq-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(14 55 106 / 60%);
    z-index: -1
}

.faq-section .faq-head {
    text-align: center
}

.faq-section .faq-head h2,
.faq-section .faq-head p {
    color: #fff
}

.faq-section .faq-main {
    display: flex;
    gap: 100px
}

.faq-section .faq-main .faq-info .faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%
}

.faq-section .faq-main {
    padding-top: 40px
}

.faq-section .faq-main .faq-info {
    width: 50%
}

.faq-section .faq-main .faq-info .faq-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    border-bottom: 2px solid #259ddc;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    justify-content: space-between
}

.faq-section .faq-main .faq-info .faq-list li:last-child a {
    border-bottom: 0 solid
}

.faq-section .faq-main .faq-info .faq-list li a .right-icon i {
    color: #259ddc;
    font-size: 22px
}

.new-faq-section .faq-wrapp-side .card {
    margin-bottom: 12px;
    background: 0 0;
    border: 0 solid
}

.new-faq-section .faq-wrapp-side .card .card-header {
    border-bottom: 1px solid var(--skyBlue);
    /* padding: 15px; */
    padding: 10px 0px;
    background: none;
}

.new-faq-section .faq-wrapp-side .card .card-header .card-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between
}

.new-faq-section .faq-wrapp-side .card .card-body p {
    color: #fff;
    font-size: 0.9rem;
}

.new-faq-section .faq-wrapp-side .card .card-header h3.accordion-title {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.new-faq-section .faq-wrapp-side .card .card-body .main-list li {
    line-height: 30px;
    list-style: none;
    padding-left: 0;
    position: relative;
    left: 0;
    color: #fff
}

.new-faq-section .faq-wrapp-side .card .card-body .main-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -21px;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: #fff
}

.about-section-1 {
    padding-top: 25px;
}

.blog-detail-sec {
    padding: 25px 0px;
}

.blog-detail-sec h1 {
    margin-bottom: 0px;
}

.about-section-1 h1,
.new-team-section h1,
.contact_form h1,
.career-section h1,
.blog-detail-sec h1 {
    color: var(--skyBlue);
}

.about-section-1 .heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--skyBlue);
    margin-top: 20
}

.about-section-1 .services-head {
    color: var(--skyBlue);
    margin-top: 20
}

.simplify-section {
    padding: 30px 0;
    background: #1a98d5;
}

.simplify-section .simplify-flex {
    position: relative;
}

.simplify-section .simplify-flex .simplify-sub-head {
    margin: 0 auto;
    text-align: center;
}

.simplify-section .simplify-flex .contact-flex {
    border: 3px solid #fff;
    border-radius: 20px;
    position: absolute;
    top: 8px;
    right: 0px;
}

.simplify-section .simplify-flex .contact-flex .contact-style {
    background: none;
}

.simplify-section .simplify-flex .contact-flex .contact-style span {
    color: #fff;
}

.simplify-section .simplify-flex .contact-flex .btn-left {
    background: #fff;
}

.simplify-section .simplify-flex .contact-flex .btn-left a i {
    color: var(--skyBlue);
}

/* .simplify-section .simplify-flex .contact-btns .contact-btn {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase
} */

.simplify-section .simplify-flex h2 {
    color: #fff;
    margin-bottom: 0px;
    text-align: center;
}

/*08-Dec-2025*/
.simplify-section .freezone-main .freezone-head {
    font-size: 18px;
    color: #fff;
    margin-bottom: 2px;
}

.simplify-section .freezone-main .freezone-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.simplify-section .freezone-main .freezone-list li a {
    color: #fff;
    /* font-size: 13px */
}

.simplify-section .freezone-main .freezone-list.audit-list {
    margin-top: 24px;
}

.simplify-section .freezone-main .freezone-list.border-style {
    border-right: 1px solid #fff;
    height: 86%;
    padding-right: 10px;
}

.top-btn {
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    position: relative
}

.contact-flex .btn-left {
    padding: 13px 10px;
    background-color: var(--skyBlue);
    color: #fff;
    width: 50px;
    overflow: hidden;
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px 0 0 15px;
    height: 36px
}

.contact-flex .btn-left a i {
    color: #fff
}

.top-btn .btn-right {
    padding: 0 10px;
    display: inline-block
}

.audit-section {
    background: url(../images/our-services-1.webp) top center;
    padding: 100px 0 40px 0
}

.audit-section .audit-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--skyBlue);
    padding-bottom: 20px
}

.audit-section .audit-flex .audit-head,
.audit-section .audit-flex .audit-para {
    width: 50%
}

.audit-section .audit-flex .audit-head h4 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600
}

.audit-section .audit-flex .audit-para p {
    color: #fff
}

.audit-section .audit-flex.business-border-style {
    border-bottom: 0 solid
}

.external-audit-section {
    background: #fff;
    padding: 25px 0;
}

.external-audit-section .audit-head h4 {
    color: var(--skyBlue);
    text-transform: uppercase;
    font-size: 22px
}

.external-audit-section .audit-para p {
    font-weight: 300;
    font-weight: 400
}

.external-audit-section .quick-link-column {
    border-left: 2px solid var(--skyBlue);
    padding-left: 35px;
    margin-left: 15px
}

.external-audit-section .quick-link-column h4 {
    color: var(--skyBlue);
    font-size: 22px
}

.external-audit-section .quick-link-column .quick-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.external-audit-section .quick-link-column .quick-list li {
    line-height: 32px
}

.external-audit-section .quick-link-column .quick-list li a {
    color: var(--skyBlue);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--skyBlue);
    padding-bottom: 7px
}

.understand-section {
    padding-bottom: 15px;
}

.understand-section .heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--skyBlue)
}

.understand-section.about-excellence {
    padding-top: 25px
}

.understand-section.about-excellence h3 {
    color: var(--skyBlue);
}

.blog-section.main-blog {
    background: 0 0;
}

.blog-section.main-blog .blog-box {
    margin-bottom: 30px;
}

.contact_form {
    background: #eaf5fb;
    padding: 25px 0;
    overflow: hidden;
    padding-top: 40px;
}

/* .contact_form .contact_icons {
    padding: 32px 0
} */

.contact_form .contact_icons .social-icon-box .social-icons li a {
    width: 54px;
    height: 54px
}

.contact_form .contact_icons .social-icon-box .social-icons li a i {
    font-size: 28px
}

.contact_form .main_form #selectList {
    height: calc(1.5em + .75rem + 18px)
}

.contact_form .main_form .submit-btn {
    border-radius: 0
}

.contact_form .contact_head {
    color: var(--skyBlue);
    font-size: 36px;
    margin-bottom: 0
}

.contact_footer {
    background: #eaf5fb;
    padding: 10px 0 40px 0;
}

.contact_footer iframe {
    margin-top: 20px
}

.contact_footer .location_icons {
    display: flex;
    gap: 10px;
    margin-top: 135px
}

.contact_footer .location_icons li a i {
    font-size: 25px;
    color: #8e8e8e
}

/* .blog-detail-sec {
    padding: 75px 0 50px
} */

.blog-detail-sec .calander-row {
    margin-bottom: 20px
}

.blog-detail-sec .calander-row img.calender-pic {
    width: 80%
}

.blog-detail-sec .calander-row .calender-relative {
    position: relative
}

.blog-detail-sec .calander-row .calender-relative .date-absolute {
    position: absolute;
    top: 46px;
    left: 15px;
    font-size: 13px;
    color: #666
}

.blog-detail-sec .calander-row .blog-icons {
    display: flex;
    gap: 15px;
    list-style: none;
    justify-content: flex-end;
    margin-top: 32px
}

.blog-detail-sec .calander-row .blog-icons li a img {
    width: 40px
}

.main-content {
    padding: 5px 0 10px;
}

/*08-Dec-2025*/
.main-content h2,
.about-section-1 h2,
.main-content h5,
.understand-section h2 {
    color: var(--skyBlue);
    margin-bottom: 5px
}

.main-content h2,
.about-section-1 h2,
.understand-section h2 {
    font-size: 28px
}

.main-content h3 {
    font-size: 24px;
    color: var(--skyBlue)
}

.main-content h4,
.understand-section h4 {
    color: var(--skyBlue);
    margin-bottom: 4px;
    margin-top: 20px
}

.main-content .main-list,
.main-content .nesting-list,
.main-content .num-list,
.understand-section .main-list,
.understand-section .num-list {
    margin: 0;
    padding: 0;
    margin-bottom: 15px
}

.main-content .num-list,
.understand-section .num-list {
    list-style: auto;
    padding-left: 15px
}

.main-content .num-list li,
.understand-section .num-list li {
    /* font-size: 0.9rem;
    line-height: 24px; */
    margin-bottom: 10px;
}

.main-content .main-list li,
.main-content .nesting-list li,
.understand-section .main-list li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    left: 0;
    /* text-align: justify; */
    margin-bottom: 10px;
}

.main-content .main-list li::before,
.understand-section .main-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: #4e4e4e
}

.main-content .nesting-list {
    margin-top: 7px
}

.main-content .nesting-list li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 4px;
    width: 10px;
    height: 1.5px;
    border-radius: 50px;
    background: #4e4e4e
}

.main-content.vat-refund {
    padding-top: 75px
}

.main-content.content-top {
    padding-top: 25px;
    padding-bottom: 15px;
}

.main-content.content-top h1,
.blog-section.content-top h1 {
    color: var(--skyBlue);
}

.main-content .top-head {
    font-size: 20px;
    font-weight: 700;
    color: var(--skyBlue);
    margin-top: 20px
}

.custom-modal .main-list li {
    line-height: 30px;
    list-style: none;
    padding-left: 0;
    position: relative;
    left: 0
}

.custom-modal .main-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -21px;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: #fff
}

.custom-modal h4.modal-sub-title,
.custom-modal h4.modal-title {
    color: #fff
}

.custom-modal h4.modal-sub-title {
    font-size: 22px
}

.custom-modal .num-list {
    list-style: auto;
    padding-left: 25px
}

.custom-modal .num-list li {
    line-height: 30px;
    color: #fff
}

.about-section-1.main-about {
    padding-bottom: 15px;
}

.why_excellence {
    position: relative;
    transition: all .45s;
    overflow: hidden
}

.why_excellence .about_right_animate {
    transform: translateX(-120%);
    transition: transform .5s, opacity .5s
}

.why_excellence .excellence_head {
    transform: translateX(600px);
    transition: transform .5s, opacity .5s
}

.why_excellence:hover .about_right_animate,
.why_excellence:hover .excellence_head {
    transform: translateX(0)
}

.why_excellence .col-md-6.about_bg {
    padding-right: 0
}

.why_excellence .about_right {
    padding: 80px 60px;
    background-color: #c4c4c4;
    height: 100%
}

.why_excellence .about_left {
    position: relative;
    z-index: 1
}

.why_excellence .about_left .excellence_head {
    position: absolute;
    top: 40%;
    left: 50%;
    color: #fff;
    text-transform: uppercase;
    line-height: 58px
}

.why_excellence .about_right .about_heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--skyBlue);
    margin-top: -80px
}

.why_excellence .about_right .about_list {
    margin: 0;
    padding: 0;
    list-style: none
}

.why_excellence .about_right .about_list li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    left: 0;
    margin-bottom: 15px;
    text-align: justify
}

.why_excellence .about_right .about_list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: #4e4e4e
}

.core-value-section #coreValueSlider .item {
    position: relative
}

.core-value-section #coreValueSlider .item .overlay,
.core-value-section #coreValueSlider .item img {
    border-radius: 15px
}

.core-value-section #coreValueSlider .item .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: background 0.45s ease;
}

.core-value-section #coreValueSlider .item .overlay.active {
    background: #0066ba85
}

.core-value-section #coreValueSlider .item .team-details {
    position: absolute;
    bottom: 1px;
    left: 0;
    text-align: center;
    transform: translateY(86px);
    transition: transform .5s, opacity .5s;
    width: 100%;
    background: linear-gradient(359deg, #1a98d5c4, #1a98d54d);
    padding: 10px
}

.core-value-section #coreValueSlider .item .team-details h3 {
    margin-bottom: 0;
    text-shadow: 1px 1px #000
}

.core-value-section #coreValueSlider .item .team-details h4 {
    color: #fff
}

.core-value-section #coreValueSlider .item:hover .team-details {
    transform: translateY(0)
}

.main-table .table-para {
    margin-bottom: 0;
    background: #1a98d540;
    padding: 10px 0
}

.p-relative {
    position: relative;
    height: 50px;
    overflow: hidden;
    background: red
}

.slider {
    top: 1em;
    position: relative;
    box-sizing: border-box;
    animation: slider 10s linear infinite;
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.slider:hover {
    animation-play-state: paused
}

@keyframes slider {
    0% {
        top: 5em
    }

    100% {
        top: -5em
    }
}

.affiliations-wrapper {
    padding: 0 0 30px;
}

.affiliations-wrapper .affiliations-box {
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .35) 0 5px 15px;
    height: 250px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 30px;
}

.affiliations-wrapper .affiliations-box img {
    width: 100%
}

.modal.custom-affiliation-modals h3,
.modal.custom-affiliation-modals p {
    color: #fff
}

.page-404 {
    align-items: center;
    text-align: left
}

.page-404 p {
    text-align: left
}

.page-404 .error-page-btns {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0
}

.page-404 .error-page-btns .btn-custom {
    padding: 6px 30px;
    border-radius: 9px;
    font-weight: 500;
    transition: color 0.45s ease, background 0.45s ease, border-color 0.45s ease;
    /* Only needed properties */
    margin-bottom: 20px;
    border: 2px solid var(--skyBlue)
}

.page-404 .error-page-btns .btn-custom:hover {
    color: var(--skyBlue);
    background: #fff;
    border-color: var(--skyBlue);
}

.page-404 img {
    width: 100%
}

.social-icon ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    margin-top: 20px
}

.social-icon ul li {
    margin: 0 17px 0 0;
    padding: 0;
    float: left;
    width: 42px;
    display: block
}

.social-icon ul li:nth-child(3n+3) {
    margin-right: 0
}

.social-icon ul li a {
    border-radius: 50%;
    background: #1a9ad3 !important;
    height: 40px;
    width: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center
}

.social-icon ul li a i {
    color: #fff;
    font-size: 16px
}

.social-icon ul li a:hover {
    text-decoration: none
}

.call-btn {
    position: fixed;
    bottom: 10px;
    right: 85px;
    z-index: 1000;
}

.whatsapp-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: block;
    z-index: 10000
}

.single-img-wrapper a {
    color: #212529;
}

.single-img-wrapper img {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 30px
}

.sidebar .rpwe-thumb {
    width: 80px;
    height: 80px
}

header .bigSubmenu .inner-plus-symbol,
header .bigSubmenu .plus-symbol {
    display: none
}

header .bigSubmenu .margin-desktop {
    margin-top: 20px
}

.calender-relative img {
    display: none;
}

.main-content a {
    color: #212529;
}

.faq-section a {
    /* color: var(--skyBlue); */
    color: #fff;
}

.inner-banner .container .heading-2 {
    position: absolute;
    bottom: 90px;
}

.footer-icons.social-icon-box {
    margin-top: 20px;
}

.footer-icons.social-icon-box ul.social-icons li a {
    width: 45px;
    height: 45px;
}

.footer-icons.social-icon-box ul.social-icons li a i {
    font-size: 20px;
}

.our-services-section a {
    /* color: var(--skyBlue) !important; */
    color: #fff !important;
}

.our-services-section a:hover {
    /* color: var(--skyBlue) !important; */
    color: #fff !important;
}

/*08-Dec-2025*/
.our-services-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.7;
    z-index: 0;
}

.our-services-section .container {
    position: relative;
}

.understand-section a {
    color: #000;
}

.understand-section a:hover {
    color: #000;
}

.about-section-1 a {
    color: #212529 !important;
}

.about-section-1 a:hover {
    color: #212529 !important;
}

.why_excellence {
    position: relative;
    transition: all .45s;
    overflow: hidden;
    background: url('../images/about-main-bg.webp') no-repeat top center;
    /* padding: 50px 0px; */
    background-size: cover;
}

.why_excellence .about_left {
    height: 100%;
}

.why_excellence .about_right {
    padding: 40px 40px;
    /* background-color: #c4c4c4; */
    height: 100%;
    background: none;
}

.why_excellence .about_right h2 {
    color: var(--skyBlue);
}

.why_excellence .about_right_animate {
    opacity: 0;
}

.why_excellence:hover .about_right_animate,
.why_excellence:hover .excellence_head {
    opacity: 1;
}

.contact-info-new ul li {
    margin-bottom: 5px;
}

.contact-info-new ul li span {
    display: block;
    width: 100% !important;
}

.contact-info-new ul li i {
    color: var(--skyBlue);
    line-height: unset;
}



.slider-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-caption {
    text-align: left;
}

.submenu-icon1,
.submenu-icon2 {
    transition: transform 0.3s ease;
}

.submenu-icon1.rotated,
.submenu-icon2.rotated {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .carousel-caption {
        text-align: center;
    }

    .ten-years {
        margin-bottom: 10px;
    }

    .carousel-caption h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .carousel-caption h2 {
        font-size: 16px;
    }
}

.heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
    margin-bottom: 25px;
}

.freezone-main-new .nav-tabs {
    justify-content: center;
    border: 0px;
    background: #096d9e;
    border-radius: 10px;
}

.freezone-main-new .nav-tabs .nav-item {
    padding: 0px 40px;
}

.freezone-main-new .nav-tabs .nav-link {
    padding: 10px 0px;
    display: block;
    border: 0px;
    opacity: 0.8;
    color: #fff;
}

.freezone-main-new .nav-tabs .nav-link.active {
    opacity: 1;
}

.freezone-main-new .tab-content {
    color: #fff;
    margin-top: 20px;
}