* {
    box-sizing: border-box;
    font-family: 'Poppins';
}
html {
    margin: 0;
}

/* common css  */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    /* margin: 0; */
    font-family: 'Poppins';
}

body h1 {
    font-size: 60px;
    font-weight: 700;
    color: #223645;
}

body h3 {
    font-size: 46px;
    font-weight: 700;
    color: #223645;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 30px;
}

li {
    list-style: none;
}

a {
    cursor: pointer;
    text-decoration: none;
}

::selection {
    background: #f4dcec;
}

.fill-gradiant-btn {
    background: linear-gradient(to right, #0082C2, #8C94CA, #D361A9) border-box;
    font-size: 17px;
    padding: 14px 30px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.fill-gradiant-btn:hover,
.btn-outline:hover {
    background: linear-gradient(to right, #D361A9, #0082C2, #8C94CA) border-box;
    color: #fff !important;
}

.btn-outline span {
    background-image: linear-gradient(to right, #3D99CD, #6a6ad9 25%, #D361A9 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.btn-outline:hover span {
    -webkit-text-fill-color: #fff;
}

.header-btn button:hover span path {
    fill: #fff;
}

.fill-gradiant-btn:hover span path {
    stroke: #fff;
}

.header-btn button:hover span,
.fill-gradiant-btn:hover span {
    transform: translateX(10px);
}

section {
    padding: 50px 0;
    position: relative;
}

.banner-column {
    position: relative;
}

.banner-column::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50px);
    width: 100%;
    height: 210px;
    background-image: url('../images/background-vector.webp');
    background-repeat: no-repeat;
    z-index: -1;
    background-size: 100%;
}

.fill-gradiant-btn span {
    background: #D9A2CD;
}

.gradiant-btn {
    width: max-content;
    position: relative;
    margin-top: 35px;
}

.gradiant-btn img {
    position: absolute;
    right: -19px;
    top: -18px;
    z-index: -1;
    width: 90px;
    height: 90px;
    animation: rotate-animation 10s infinite linear;
}

.with-icon .fill-gradiant-btn {
    box-shadow: rgb(160 193 223) 0px 3px 17px 0px;
    padding-right: 18px;
}

.gradiant-btn button {
    border: none;
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* common css  */
/*** css animation bottom to top on scroll and reverse   *****/
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.5s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/*** css animation bottom to top on scroll and reverse *****/
/* header style start here  */
header {
    border-bottom: 1px solid #d1d1d1;
    position: sticky;
    top: 0;
    background: #fffffffa;
    z-index: 9;
}

header .navbar-brand {
    margin-right: 15px;
}
header .navbar-expand-lg .navbar-nav {
    gap: 30px;
    margin-left: 15px;
}
#menu-header-menu li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    color: #434343;
}

#menu-header-menu li a:hover,
#menu-header-menu .current-menu-item a {
    background-image: linear-gradient(to bottom,
            #D981BA 30%,
            #3D99CD 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#menu-header-menu .current-menu-item a {
    font-weight: bold;
}

header .btn-outline,
.btn-outline {
    font-size: 18px;
    font-weight: 600;
    color: #C0348D;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    padding: 13px 20px;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, #58B9E3, #8C94CA, #D361A9) border-box;
    border: 1px solid transparent;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: 0.5s ease;
}

.header-btn span,
.fill-gradiant-btn span {
    display: flex;
    height: 26px;
    width: 26px;
    background: #DDA1CD;
    border-radius: 50%;
    place-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.header-btn button span path {
    fill: #fff;
}

.header-btn.for-mobile,
.for-min-screen {
    display: none;
}

header .navbar-toggler {
    padding: 0;
    border: none;
}

header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* header styling end here  */

/* banner section style start here  */
.banner-left h1 {
    width: 100%;
    max-width: 540px;
}

.banner-left p {
    width: 100%;
    max-width: 520px;
    color: #383838;
}

/* banner section style end here  */

/* one stop section style start here  */
.one-stop-sec {
    padding-top: 0;
}

.section-head {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.struggling-sec .section-head p,
.one-stop-sec .section-head p {
    width: 100%;
    max-width: 566px;
    margin: auto;
}

.one-stop-column {
    transition: 0.5s ease;
}
.one-stop-column .img-rectangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.one-stop-column .img-rectangle {
    height: 190px;
    width: 100%;
}

.one-stop-column:hover {
    transform: translateY(-8px);
}

.one-stop-column img {
    width: 100%;
    border-radius: 9px;
}

.one-stop-column h2 {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}

.one-stop-column p {
    text-align: center;
}

.section-bottom p {
    width: 100%;
    max-width: 800px;
    margin: 30px auto auto;
}

.img-rectangle {
    position: relative;
}
.struggling-column-left .img-rectangle::after{
	border-radius:20px;
}
.img-rectangle::after, #hospital-slider .slick-slide:after {
    content: "";
    position: absolute;
    right: -8px;
    top: -8px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(179 213 234), rgb(211 208 230), rgb(232 204 228)) border-box border-box;
    z-index: -1;
    border-radius: 10px;
}
.gradiant-rectangle {
    display: none;
}
/** .gradiant-rectangle {
    position: absolute;
    left: 7px;
    z-index: -1;
    top: -7px;
    border-radius: 9px;
    width: 100%;
    height: 100% !important;
} **/

.about-hospital-sec .gradiant-rectangle {
    position: absolute;
    left: 7px;
    z-index: -1;
    top: -7px;
    border-radius: 9px;
    width: 100%;
    height: 100% !important;
}

/* one stop section style end here  */

/* struggling section style start here  */
.struggling-sec {
    background-image: linear-gradient(#d981ba1f 25%, #3d99cd24 100%);
}

.struggling-column-left img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.struggling-column h4 {
    font-size: 32px;
    font-weight: 600;
}

.struggling-column p {
    width: 100%;
    max-width: 420px;
    font-size: 24px;
    line-height: normal;
}

.struggling-sec .row {
    --bs-gutter-x: 50px;
}

.struggling-column h4 {
    background-image: linear-gradient(to right,
            #3D99CD,
            #6a6ad9 25%,
            #D361A9 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

hr.row-gap {
    border: none;
    margin-bottom: 50px;
}

.section-head h3 {
    position: relative;
    margin: 0;
}

.struggling-sec .section-head h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 180px;
    height: 20px;
    background-image: url('../images/line-vector2.png');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    transform: translateX(-50%);
}

/* struggling section style end here  */
/* health sec style start here  */
.health-sec {
    padding: 80px 0;
}

.health-left-column span {
    font-size: 16px;
    color: #C0348D;
    font-weight: 400;
}

.health-left-columns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.health-right-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 15px;
    position: relative;
}

.health-right-column:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -44px;
    width: 150px;
    height: 140px;
    background-image: url('../images/grid-background.webp');
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateX(-64px);
}

.card-one {
    background-image: linear-gradient(#D981BA 25%, #3D99CD 100%);
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: start;
}

.card-detail h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
}

.card-detail p {
    color: #fff;
}

.health-left-column h5 {
    font-size: 46px;
    font-weight: 700;
    color: #223645;
    margin-bottom: 30px;
}

.health-left-column p {
    font-size: 18px;
}

/* health sec style end here  */

/* why happen section style start here  */
.health-issue-row {
    width: 100%;
    max-width: 860px;
    margin: auto !important;
    position: relative;
}

.health-issue-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 80vw;
    height: 100vw;
    background-image: url('../images/bgrectangle.webp');
    background-repeat: no-repeat;
    transform: translate(-50%, 0);
    z-index: -1;
    background-size: cover;
}

.health-issue-card img {
    width: 100%;
    height: 200px;
}

.why-happen-sec .section-head h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 122px;
    height: 20px;
    background-image: url('../images/line-vector.png');
    background-repeat: no-repeat;
    transform: translate(-60%, 10px);
    z-index: -1;
}

.health-issue-column-main {
    position: relative;
}

.bg-rectangle {
    position: absolute;
    z-index: -1;
    left: 0;
    width: 100%;
}

.health-issue-card {
    background: #fff;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.5s ease;
}

.health-issue-card:hover {
    transform: translateY(-8px);
}

.health-issue-card h4 {
    font-size: 18px;
    color: #6A6A6A;
    font-weight: 400;
    padding: 10px;
    margin: 0;
}

.health-issue-column h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* why happen section style end here  */

/* why choose section style start here  */
.why-choose-sec .section-head {
    padding-bottom: 0;
}

.choose-vector {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 50%;
}

.why-choose-sec ul li {
    list-style: disc;
}

.why-choose-sec ul {
    padding-top: 0;
}

.why-choose-sec ul li {
    list-style: disc;
    font-size: 16px;
    padding-bottom: 12px;
    color: #000;
}

/* why choose section style end here  */

/* our paitent sec style start here  */
.our-paitent-sec {
    background: linear-gradient(to right, #4FBFE7, #DB81BA) border-box;
}

.our-paitent-sec .section-head {
    padding-bottom: 35px;
}

.our-paitent-sec .section-head h3 {
    color: #fff;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.slick-slider .slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.our-paitent-sec .slick-slide img {
    border-radius: 20px;
    width: 100%;
}

.our-paitent-sec .slick-slide {
    position: relative;
    cursor: pointer;
}

.our-paitent-sec .slick-slide span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-paitent-sec .slick-slide span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255 255 255);
    transform: translate(-50%, -50%);
    animation: sonarPulse 1.5s infinite;
    z-index: -1;
}
@keyframes sonarPulse {
    0% {
        transform: translate(-50%, -50%) scale(.03);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.9);
        opacity: 0;
    }
}
.our-paitent-sec .slick-slide span img {
    border-radius: 0;
    width: 24px;
}

.slick-prev,
.slick-next {
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: #D9D9D9;
}

.slick-prev {
    left: -5px;
}

.slick-next {
    right: -5px;
}

.slick-slide {
    margin: 0 10px;
    position: relative;
}

.slick-prev::after,
.slick-next::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-5px, -6px);
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
}

.slick-prev:hover,
.slick-next:hover {
    background: #f0cbe3;
}

.slick-prev::after {
    background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><rect width="12" height="12" fill="url(%23pattern0_1_550)"/><defs><pattern id="pattern0_1_550" patternContentUnits="objectBoundingBox" width="1" height="1"><use xlink:href="%23image0_1_550" transform="scale(0.0833333)"/></pattern><image id="image0_1_550" width="12" height="12" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAl0lEQVR4AYyQ0Q2AIAxEhSXgE0dxAzdRN3EUN3AU/YQp8I4YU7RGCReS6z0otY2yvPfBOTcopeYBMJxzXo0xM6DxDlWACAdAO6DlFVDCXYxxV4G/YcJWhmmgjYBzg581VX9A8HNb9olbO36S6fNs4RtN5QUUOJECAeaEVrTD1nhHpQLQ+QtdwAvU05eqABbES1NKaaYndQAAAP//Cef8KwAAAAZJREFUAwCtgH42llBw1wAAAABJRU5ErkJggg=="/></defs></svg>');
}

.slick-next::after {
    background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><rect width="12" height="12" fill="url(%23pattern0_1_552)"/><defs><pattern id="pattern0_1_552" patternContentUnits="objectBoundingBox" width="1" height="1"><use xlink:href="%23image0_1_552" transform="scale(0.0833333)"/></pattern><image id="image0_1_552" width="12" height="12" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAm0lEQVR4AXyRwQ3DIBAEgSbg6ZTiDtJJkk5SSjpIKeYJVeBZJPtzZ1s67cMz7CFScL6c86uUsji/ghGA3zHG7xjj70lGAP4BV3IhjWSE1prgFVhpJCNo7zspsefwBnHTWmRQ0jjXcxsEXU2iPnqD8ODUSgYlLStcdRtYcV4WSKnLT1iyEe5gV6D+6Z0sWGMaeu965Q/SuYbAY3YAAAD//1r8DVQAAAAGSURBVAMAepZ+NjV4LjUAAAAASUVORK5CYII="/></defs></svg>');
}

/* our paitent sec style end here  */

/* hospital section style start here  */
.about-hospital-sec {
    overflow-x: hidden;
}

.about-hospital-sec .section-head {
    padding-bottom: 30px;
}

.hospital-detail {
    bottom: 0;
    position: absolute;
    left: 0;
    padding: 10px 10px 20px;
    width: 100%;
    text-align: left;
    background: #00000042;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}
.hospital-detail h5 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}

.hospital-detail p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}
.hospital-detail h5, .hospital-detail p {
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}
#hospital-slider .slick-slide.slick-center {
    transform: scale(1);
}

#hospital-slider .slick-slide {
    margin-top: 10px !important;
    transform: scale(0.9);
    transition: 0.3s;
    margin: 0 0;
}

#hospital-slider .slick-slide img {
    border-radius: 9px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

#hospital-slider .slick-prev,
#hospital-slider .slick-next {
    top: 100%;
}

#hospital-slider .slick-prev {
    left: 50%;
    transform: translate(-50px, -20px);
}

#hospital-slider .slick-next {
    right: 50%;
    transform: translate(50px, -20px);
}

#hospital-slider .slick-list {
    overflow: visible;
}

/* hospital section end start here  */

/* doctor sec style start here  */
.doctor-sec .section-head p {
    margin: 0;
    line-height: 30px;
}

.doctor-sec .section-head {
    padding-bottom: 0;
}

/* doctor sec style end here  */

/* treatment approach sec style start here  */

.treatment-approach-sec {
    background: #FDDDF1;
}

/* treatment approach sec style end here  */

/* webinar section start here  */
.live-column h5 {
    font-size: 35px;
    font-weight: 700;
    color: #223645;
    margin-bottom: 0;
}

.live-column {
    display: flex;
    align-items: center;
    gap: 20px;
}

.webinar-sec .section-head {
    padding-bottom: 10px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 9px;
    border: 2px solid #223645;
    border-radius: 10px;
}

.live-dot {
    width: 14px;
    height: 14px;
    background: red;
    border-radius: 50%;
    animation: blink 0.8s infinite ease-in-out;
}

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

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.live-text {
    font-size: 20px;
    font-weight: 700;
    color: #223645;
}

.webinar-sec .gradiant-btn {
    display: flex;
    gap: 20px;
}

.webinar-sec .gradiant-btn a {
    min-width: 200px;
    justify-content: center;
    border-radius: 20px;
}

.webinar-registration-row .dctrImg img {
    width: 100%;
}

/* webinar section end here  */

/* about us page styling start here  */
.banner-column h1 {
    position: relative;
    margin-bottom: 40px;
}

.banner-column h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 210px;
    height: 20px;
    background-image: url('../images/line-vector2.png');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    transform: translateX(-50%);
}

.banner-column p {
    width: 100%;
    max-width: 720px;
    margin: auto;
}

.aboutImg {
    width: 100%;
    height: 630px;
    border-radius: 10px;
    position: relative;
}

.video-wrap {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.aboutImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.aboutImg:after,
.video-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -44px;
    width: 150px;
    height: 140px;
    background-image: url('../images/grid-background.webp');
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateX(-30px);
}

.with-line-vector h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 210px;
    height: 20px;
    background-image: url('../images/line-vector2.png');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    transform: translateX(0);
}

.with-line-vector h3 {
    width: max-content;
}

.section-mainImg img {
    border-radius: 10px;
}

.section-mainImg {
    position: relative;
}

.section-mainImg:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -44px;
    width: 150px;
    height: 140px;
    background-image: url('../images/pink-dot-vector.png');
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateX(-30px);
}
.our-mission-sec .section-head {
    align-items: center;
}
.mission-card {
    background-image: linear-gradient(#D981BA 25%, #3D99CD 100%);
    padding: 14px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    gap: 10px;
}

.mission-card span {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
}

.mission-card p {
    font-size: 20px;
    color: #fff;
}

.our-approachSec .section-mainImg:after {
    right: 0;
    left: auto;
    transform: translateX(10px);
}

.row.our-leader-row {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.our-leaderImg img {
    width: 100%;
    border-radius: 10px;
}

.our-leaderImg {
    position: relative;
}

.our-leaderImg h5 {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    padding: 10px;
}

.our-leader-column p {
    font-size: 17px;
    padding-top: 20px;
}

/* about us page styling end here  */
/* product page css start here  */
.product-details-row {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
    align-items: center;
    border-radius: 15px;
    margin-bottom: 25px;
}

.product-details h4 {
    font-size: 32px;
    font-weight: 600;
}

.product-details p {
    color: #6A6A6A;
}

.product-details h5 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 25px;
}

.product-details .btn-outline {
    border-radius: 20px;
    width: max-content;
}

.product-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

.our-product .btn-outline {
    width: max-content;
    margin: auto;
    padding: 13px 30px;
    border-radius: 20px;
}

.product-detail h5 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

.product-detail h6 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 14px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-img {
    width: 100%;
    height: 330px;
}

/* product page css end here  */
/* team banner page css start here  */
.our-teambanner .aboutImg {
    height: 500px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px -1px 8px;
}

.team-banner-desc {
    text-align: center;
    font-size: 24px;
    width: 100%;
    max-width: 730px;
    margin: auto auto 50px;
    color: #6a6a6a;
}

.team-expert-sec .section-head {
    padding-bottom: 0;
}

.pink-text {
    color: #D361A9;
    font-size: 24px;
    font-weight: 600;
}

.expert-row {
    margin-bottom: 60px;
}

.container .expert-row:last-child {
    margin-bottom: 0;
}

.coaches-head p {
    width: 100%;
    max-width: 740px;
    margin: auto;
}

.coach-card {
    border-radius: 12px;
    background: #fff;
    padding: 11px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 100%;
}

.coach-img {
    width: 100%;
    height: 350px;
    margin-bottom: 17px;
    overflow: hidden;
    border-radius: 12px;
}

.coach-img img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.5s ease;
}

.coach-img img:hover {
    transform: scale(1.03);
}

.coaches-detail {
    padding: 0 20px;
}

.coaches-detail h4 {
    font-size: 32px;
    font-weight: 600;
}

.coaches-detail .pink-text {
    font-size: 18px;
}

.our-coaches .section-bottom {
    font-size: 24px;
    background-image: linear-gradient(to bottom, #D361A9 10%, #6a6ad9 30%, #3D99CD 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    width: 100%;
    max-width: 960px;
    margin: 30px auto auto;
}

/* team banner page css end here  */

/* services page style start here  */
.service-row {
    margin-bottom: 60px;
}

.container .service-row:last-child {
    margin-bottom: 0;
}

.our-services-sec .section-head {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
}

.services-details .section-head span {
    width: 90px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, #0082C2, #8C94CA, #D361A9) border-box;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}

.services-details ul {
    padding: 0;
    margin: 15px 0 25px;
}

.services-details ul li {
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #6a6a6a;
}

.services-details .fill-gradiant-btn {
    box-shadow: rgb(160 193 223) 0px 3px 17px 0px;
}

.services-details ul li span {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 50%;
}

.our-services-sec .section-bottom {
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}

/* services page style end here  */
/* blog page css start here  */
.blog-main-row {
    margin-bottom: 50px;
}

.container .blog-main-row:last-child {
    margin-bottom: 0;
}

.blog-head {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}
.blog-card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.blog-card a {
    text-decoration: none;
}

.blog-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.03);
}

.blog-detail {
    padding: 20px;
}

.blog-detail h6 {
    font-size: 16px;
    font-weight: 400;
    color: #6a6a6a;
    margin-bottom: 7px;
}

.blog-detail h4 {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.blog-card:hover h4 {
    color: #d361a9;
}
.blog-back {
    margin: 20px 0 0;
}
.blog-back a {
    background-image: linear-gradient(to bottom, #D981BA 30%, #3D99CD 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 19px;
    font-weight: 400;
}
/* blog page css end here  */

/* contact page css start here  */
.gradiant-text {
    font-weight: 700;
    background-image: linear-gradient(to right, #D361A9 33%, #6a6ad9 60%, #3D99CD 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    margin-top: 10px;
}

.gradiant-text a {
    font-weight: 600;
    color: #302f2f;
    -webkit-text-fill-color: #302f2f;
    text-decoration: none;
}

.contact-main-row {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}

.contact-main-row .section-head {
    padding-bottom: 20px;
    gap: 10px;
}

.contact-form-sec .contact-left-column {
    padding-left: 0;
}

.contact-form-sec .contact-right-column {
    padding: 30px 60px 30px 0;
}

.contact-main-row {
    overflow: hidden;
}

.contact-right-column .with-icon .fill-gradiant-btn {
    padding: 14px 13px 14px 30px;
}

.contact-main-row .gradiant-btn img {
    width: 75px;
    height: 75px;
    right: -16px;
    top: -11px;
    z-index: 1;
}

.contact-right-column .form-control {
    border-color: #CCCCCC;
    color: #9B9B9B;
    padding: 13px 10px;
    border-radius: 10px;
}

.contact-right-column .form-control::placeholder {
    color: #9B9B9B;
}

.contact-main-row .section-head p {
    color: #9B9B9B;
    font-size: 18px;
}

.contact-main-row .form-control:focus {
    border-color: #dff4f5;
    box-shadow: 0 0 0 .25rem rgb(237 189 236 / 40%);
}

/* contact page css end here  */
/* book-consultation page start end here  */
.book-consultation-sec .contact-right-column {
    padding: 30px 30px 30px;
}

.book-consultation-sec .contact-main-row {
    background: #F1F6FE;
    overflow: hidden;
    margin-bottom: 30px;
}

.book-consultation-sec .contact-left-column {
    padding-right: 0;
}

.ask-anonymously-sec .contact-right-column {
    padding: 30px;
}

/* book-consultation page css end here  */
/* register webinar sec css start here  */
.learn-ask-sec .section-head {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.register-table-sec table {
    table-layout: fixed;
}

.register-table-sec .gradient-head {
    position: relative;
}

.register-table-sec .gradient-head::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 57px;
    top: 0;
    background: linear-gradient(to right, #0082C2, #8C94CA, #D361A9) border-box;
}

.register-table-sec .table th span {
    position: relative;
    z-index: 2;
    color: #fff;
}

.register-table-sec .table th span svg {
    margin-left: 8px;
}

.register-table-sec .table th a {
    text-decoration: none;
}

.register-table-sec .table td,
.register-table-sec .table th {
    padding: 16px 20px !important;
}

.register-table-sec .fill-gradiant-btn {
    padding: 7px 15px;
    border-radius: 8px;
    font-weight: 400;
}

.register-table-sec .card {
    border-radius: 14px;
}
.webinar-note .blog-note h5 {
	padding-bottom: 10px;
}
.webinar-note .blog-note {
    width: 100%;
    max-width: 730px;
    margin: 50px auto auto;
    background: #FFF8FC;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.webinar-note .blog-note li {
    list-style: disc;
}

.webinar-note .gradiant-text a {
    background-image: linear-gradient(to right, #D361A9 33%, #6a6ad9 60%, #3D99CD 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 0 0;
    display: block;
}

/* register webinar sec css end here  */
/* faq page style start here  */
.faq-section {
    padding-top: 0;
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 790px;
    margin: auto;
}

.faq-item {
    background: #FFF8FC;
    border-radius: 16px;
    padding: 14px 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 18px;
    color: #151515;
}

.faq-icon {
    font-size: 25px;
    transition: 0.3s ease;
    font-weight: 400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    color: #747474;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    font-size: 16px;
}

/* When Open */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* faq page style end here  */

/* blog detail page style start here  */
.blog-detail-banner .banner-column:after {
    display: none;
}

.blog-detail-inner {
    width: 100%;
    max-width: 920px;
    margin: auto;
}

.blog-publish-date, .blog-head h4 {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}
.blog-head h4{
  font-weight: 400;
}

.blog-detail-inner p {
    color: #707070;
}

.blog-detailImg {
    margin-bottom: 30px;
    height: 400px;
}

.blog-detailImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-inner h2 {
    font-size: 46px;
    font-weight: 700;
    padding: 20px 0;
    color: #223645;
}

.blog-note {
    background-image: linear-gradient(#d981ba59 25%, #3d99cd6b 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0 20px;
}

.blog-note h5 {
    background-image: linear-gradient(to bottom, #D981BA 30%, #3D99CD 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 600;
}

.blog-note p {
    margin: 0;
}

.blog-plan-list p {
    padding: 0;
    margin: 0;
}

.blog-plan-list ul li {
    font-size: 16px;
    font-weight: 400;
    color: #707070;
    line-height: 30px;
    list-style: disc;
}

/* blog detail page style end here  */

/* footer styling start here  */

footer {
    background: #0C1A3D;
    padding: 58px 0 33px;
}

.footer-main {
    border-bottom: 1px solid #24A3EA;
    padding-bottom: 20px;
}

.footer-links h4 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 16px;
}

.footer-links ul {
    padding: 0;
}

.footer-links ul li {
    padding-bottom: 15px;
}

.footer-links ul li:last-child {
    padding-bottom: 0;
}

.footer-links ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: 0.5s ease;
}

.footer-links ul li a:hover {
    background-image: linear-gradient(to bottom, #D981BA 30%, #3D99CD 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-media {
    display: inline-flex;
    gap: 10px;
}

.social-media a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    place-content: center;
    text-align: center;
    transition: 0.5s ease;
}

.social-media a:hover {
    transform: translateY(-5px);
    box-shadow: rgb(160 193 223) 0px 0px 30px -9px;
}

.footer-copyright {
    padding-top: 25px;
}

.footer-copyright p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer-copyright .gradiant-btn {
    margin: 30px auto auto;
}

/* footer styling end here  */


/* sign in popup style start here  */
.signIn-wrapper .modal-content {
    z-index: 1;
}

.signIn-wrapper .modal-content::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    background-size: 80%;
    height: 220px;
    background-image: url('../images/signin-bg.webp');
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    background-position: center;
    z-index: -1;
}

.sign-in-head img {
    margin-bottom: 40px;
}

.signIn-wrapper .modal-body {
    padding-bottom: 50px;
}

.sign-in-head h1 {
    padding-bottom: 10px;
}

.sign-in-head .gradiant-text {
    font-weight: 400;
}

.login-form {
    text-align: center;
}

.login-form .form-group {
    position: relative;
    width: max-content;
    margin: 30px auto auto;
}

.login-form input {
    border: none;
    border-bottom: 1px solid #E2E2E2;
    padding: 10px 50px 10px 70px;
}

.login-form input::placeholder {
    color: #000;
}

.countryflag {
    position: absolute;
    top: 6px;
}

.login-withBtns {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.login-form .form-group button {
    position: absolute;
    top: 8px;
    right: 10px;
    transition: 0.5s ease;
    border: none;
    background: transparent;
    padding: 0;
}

.login-form .form-group img {
    transition: 0.5s ease;
}

.login-form input:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid #d562ae;
}

.login-form .form-group button:hover img {
    transform: translateX(10px);
}

.and-text {
    display: block;
    margin: 20px 0;
    font-size: 22px;
    font-weight: 400;
}

.login-withBtns .btn-outline {
    justify-content: space-between;
    width: 100%;
    max-width: 290px;
    margin: auto;
    font-weight: 400;
    border-radius: 15px;
}

.login-withBtns .btn-outline img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.backToTop {
    transition: 0.5s ease;
    box-shadow: rgb(160 193 223) 0px 0px 30px -9px;
    animation: float 3s ease-in-out infinite;
}

.backToTop:hover {
    transform: translateY(-5px);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* paralax effect for why happen section */

.why-happen-sec.for-mobile-sec {
    display: none;
}

.why-happen-sec .card-wrapper {
    height: 70vh;
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: auto;
    padding-top: 50px;
}

.why-happen-sec .card-wrapper:last-of-type {
    height: 60vh;
    padding-bottom: 15vh;
}


.why-happen-sec .card {
    width: 100%;
    height: calc(70vh - 15vh);
    margin: 0 auto;
    background: transparent !important;
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border: none !important;
    box-shadow: none;
}

.why-happen-sec .cards-container .health-issue-row::after {
    top: 50%;
    transform: translate(-50%, -40%);
}

.why-happen-sec .cards-container img {
    height: 300px !important;
    object-fit: cover;
}



.modal-dialog {
    margin-top: 50px;
}

/*** 404 page style start here **/
.page-404 .btn-outline {
    flex-direction: row-reverse;
    width: max-content;
    margin: 20px auto auto;
}
.page-404 .btn-outline svg {
    transform: scaleX(-1);
}
.page-404 .content {
    margin-top: 20px;
}
.page-404 .content h1 {
    padding-bottom: 7px;
}

/*** privacy policy style start here ***/

.privacy-wrapper {
    max-width: 850px;
    margin: 0 auto;
}
.privacy-heading {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #1B2B57;
    margin-bottom: 40px;
    position: relative;
}

.privacy-wrapper h3 {
    font-size: 38px;
    font-weight: 700;
    padding: 20px 0;
    color: #223645;
}
.privacy-wrapper ul {
    margin: 10px 0 25px 18px;
}
.privacy-wrapper ul li {
    font-size: 17px;
    line-height: 30px;
    list-style: disc;
}
.privacy-wrapper h2 {
    font-size: 46px;
    font-weight: 700;
    padding: 20px 0;
    color: #223645;
}