.whatsapp_btn{
    position: fixed;
    bottom: 1.5rem;
    left: 2rem;
    z-index: 999;
}
.call_btn{
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
    z-index: 999;
}
.whatsapp_btn img, .call_btn img{
    width: 80px;
}



.topNav {
    background-color: var(--main-color);
    padding: 10px;
}

.topNav_left,
.topNav_left__right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.topNav_left a,
.topNav_left__right a {
    display: flex;
    gap: 6px;
    font-size: 18px;
    font-weight: 400;
    align-items: center;
    color: var(--black-color);
}

.topNav_left a:hover,
.topNav_left__right a:hover {
    color: whitesmoke;
}

.topNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.myNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.myNav {
    border-bottom: 1px solid #ccc;
    position: relative;
    /*background-image: url('../images/header_bg.png');*/
}

.myNav.sticky {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--white-color) !important;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.menu ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.menu ul li a {
    color: #5a5a7f;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
}

.myNav.sticky .logo img {
    padding: 12px 0;
    width: 200px;
    transition: .3s ease all;
}

.logo img {
    width: 254px;
    padding: 1rem 0;
    transition: .3s ease all;
}

/* banner_content */
.banner_content,
.banner_img,
.about_img,
.about_right,
.how_wrapper__right {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.banner_wrapper {
    background-color: var(--main-color);
}

.global_wrapper {
    padding: 80px 0;
}

.global_content {
    margin-top: 30px;
}

.banner_img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 10px;
}

.banner_content h1 {
    font-size: 50px;
    line-height: 1.13;
    font-weight: 700;
    color: var(--black-color);
}

.banner_content h1 span {
    color: var(--light-gold);
}

.banner_content p {
    margin-top: 1rem;
    font-size: 18px;
    color: var(--black-color);
    line-height: 27px;
}

.myBtn {
    margin-top: 2rem;
}
.header_right{
    display: flex;
    gap:30px;
    align-items: center;
}

.banner_btn {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.banner_btn .schedule_btn {
    background-color: #934240;
    color: var(--white-color);
}

.banner_btn button,
.banner_btn a {
    background-color: var(--white-color);
    color: var(--main-color);
}

.about_wrapper {
    background-color: whitesmoke;
}

.about_img img {
    width: 100%;
    height: 700px;
    border-radius: 10px;
    object-position: center;
    object-fit: cover;
}

.section_name {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondory-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 2rem;
    position: relative;
    display: block;
}

.section_name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondory-color);
    height: 2px;
    width: 24px;
}

.about_right h2 {
    font-size: 65px;
    font-weight: 600;
    color: var(--black-color);
}

.about_right p {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 27px;
}

.about_right {
    padding-left: 3rem;
}

/* how_wrapper */
.how_wrapper {
    background-color: var(--main-color);
}

.how_wrapper__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.how_wrapper__left h2 {
    font-size: 72px;
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px !important;
}

.step_count__box h4 {
    max-width: max-content;
    background: var(--secondory-color);
    color: var(--white-color);
    margin-bottom: 1rem !important;
    border-radius: 100%;
    padding: 10px;
    font-size: 20px;
}

.step_count__box {
    border: 2px solid #fff;
    padding: 1.5rem;
    background-color: var(--white-color);
    height: 92%;
    margin-bottom: 1rem;
    border-radius: 5px;
    transition: .3s ease-in;
    cursor: pointer;
    transform: translateY(0px);
}

.step_count__box:hover {
    transition: .3s ease-in;
    transform: translateY(-5px);
    border: 2px solid var(--secondory-color);
}

.step_count__box h6 {
    color: var(--secondory-color);
    font-size: 20px;
    line-height: 27px;
}

.step_count__box p {
    margin-top: 10px;
    color: var(--black-color);
}

.main_heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main_heading h2 {
    font-size: 55px;
    color: var(--black-color);
    font-weight: 600;
    text-transform: capitalize;
}

.main_heading h2 span {
    color: var(--black-color);
}

.main_heading p {
    max-width: 768px;
    margin: 0 auto;
    color: var(--black-color);
    margin-top: 1rem !important;
    font-size: 18px;
    line-height: 30px;
}

.how_wrapper .main_heading h2,
.how_wrapper .main_heading p {
    color: var(--black-color);
}

.started_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.started_btn a {
    /* background-color: var(--secondory-color); */
    color: var(--white-color);
}

/* service_left */
.service_left {
    position: sticky;
    top: 8rem;
}

.service_left h2 {
    font-size: 55px;
    font-weight: 700;
    color: var(--black-color);
}

.service_left p {
    font-size: 18px;
    line-height: 28px;
    color: #434343;
    margin-top: 12px;
}

.service_right {
    padding-left: 3rem;
}

.service_box {
    border: 1px solid var(--main-color);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    background-color: ghostwhite;
}

.service_box__icon i {
    margin-top: 10px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 22px;
}

.service_box__content h3 {
    text-transform: capitalize;
    font-size: 34px;
    font-weight: 700;
    color: var(--main-color);
}

.service_box__content p {
    margin-top: 4px;
    color: var(--black-color);
    font-size: 16px;
}

/* parralex_wrapper */
.parralex_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .47), rgba(0, 0, 0, .387)), url('../images/podcast.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
}

.parralex_wrapper__content h2 {
    font-size: 70px;
    font-weight: 700;
}

.parralex_wrapper__content p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    margin-top: 1rem !important;
}

.read_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured_box {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.featured_box img {
    width: 120px;
    aspect-ratio: 3/2;
    object-fit: contain;
    transition: .3s ease-in;
}

.featured_box:hover img {
    /* filter: contrast(1); */
    transition: .3s ease-in;
}

.featured_wrapper {
    padding: 30px 0;
    background-color: var(--main-color);
}

.featured_heading h2 {
    font-size: 36px;
    text-align: center;
    color: var(--black-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* blog_box__img */
.blog_box {
    margin-bottom: 30px;
}

.blog_box__img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blog_box__content h3 {
    color: var(--secondory-color);
    margin-top: 12px;
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 600;
}

.blog_box__content span {
    display: flex;
    margin: 10px 0;
    gap: 3px;
    align-items: center;
    color: #434343;
    font-weight: 400;
    text-transform: capitalize;
}

.blog_box__content a {
    display: block;
    margin-top: 10px;
    color: var(--secondory-color);
    text-transform: uppercase;
    font-weight: 600;
}

.blog_box__content p {
    color: #434343;
    font-weight: 400;
    text-transform: lowercase;
}

/* testimonial_wrapper */
.testimonial_wrapper {
    background-color: var(--main-color);
}

.testimonial_box__img img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
}

.testimonial_box {
    padding: 1.5rem;
    background-color: var(--white-color);
    margin: 0 12px;
    text-align: center;
}

.testimonial_box__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial_box__content p {
    margin: 12px 0;
    font-size: 17px;
     display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.testimonial_box__content h3 {
    font-size: 28px;
    color: var(--secondory-color);
    font-style: italic;
    margin-top: 1rem;
    font-weight: 700;
}

.testimonial_slider .slick-dots {
    line-height: 0;
    bottom: -3.5rem;
}

.testimonial_slider .slick-dots li button::before {
    display: none;
}

.testimonial_slider .slick-dots li {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: var(--black-color);
}

.testimonial_slider .slick-dots li.slick-active {
    background-color: var(--secondory-color);
}

.menu_btn {
    display: none;
}

.menu_btn span {
    width: 25px;
    position: relative;
    display: inline-block;
    background-color: var(--secondory-color);
    height: 1.8px;
    margin-right: 12px;
    transition: .3s ease all;
}

.menu_btn span::before {
    top: -10px;
}

.menu_btn span::after {
    bottom: -10px;
}

.menu_btn span::before,
.menu_btn span::after {
    content: '';
    position: absolute;
    right: 0;
    width: 25px;
    height: 1.8px;
    background-color: var(--secondory-color);
    transition: .3s ease all;
}

.myNav.active span {
    background-color: transparent;
    transition: .3s ease all;
}

.myNav.active span::before {

    transform: rotate3d(0, 0, 1, 45deg);
}

.myNav.active span::before,
.myNav.active span::after {
    transition: 0.3s ease;
    top: 0;
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
}

.myNav.active span::after {

    transform: rotate3d(0, 0, 1, -45deg);
}




/* mobile_nav */
.mobile_nav {
    position: absolute;
    left: -100%;
    top: 5rem;
    z-index: 999;
    width: 100%;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    transition: .3s ease all;
    background-color: #fff;
    background-image: url('../images/header_bg.png');
}

.myNav.active .mobile_nav {
    left: 0;
    transition: .3s ease all;
}


.mobile_nav__menu ul li a {
    display: block;
    padding: 14px;
    text-transform: capitalize;
    color: var(--black-color);
}

.field.calendar-icon {
    cursor: pointer;
    margin-left: 5px;
    font-size: 18px;
    color: #6c757d;
}
/* Custom styling for available appointment dates */
.highlight-date {
    background: #28a745 !important; /* Green Background */
    color: white !important; /* White Text */
    border-radius: 50%;
}

.field_calender{
    position: relative;
    left: 22%;
}
.calendar-icon{
    position: absolute;
    right: 52%;
    top: 28%;
    cursor: pointer;
}


@media(max-width:1440px) {
    .logo img {
        width: 170px;
        padding: 10px 0;
    }
    .menu ul {
    gap:1.5rem;
        
    }

    .about_right {
        padding-left: 2rem;
    }

    .about_img img {
        height: 600px;
    }

    .field_calender{
        position: relative;
        left: 12%;
    }
    .calendar-icon{
       position: absolute;
        left: 43%;
        top: 50%;
        cursor: pointer;
        transform: translateY(-50%);
    }
    .field{
        position: relative;
    }
}


@media(max-width:1200px) {
    .banner_content h1 {
        font-size: 50px;
    }
    .menu ul li a {
    
        font-size: 16px;
    }

    .about_right {
        padding-left: 0;
    }

    .about_right h2 {
        font-size: 50px;
    }

    .about_right p,
    .service_left p {
        font-size: 16px;
        margin-top: 12px;
        line-height: 25px;
    }

    .parralex_wrapper__content h2 {
        font-size: 52px;
    }

    .service_left h2 {
        font-size: 42px;
    }

}

@media(max-width:992px) {
    .mobile_nav {
        top: 7rem;
    }

    .mobile_nav__menu ul {
        padding-left: 6rem !important;
    }
    .coaching_wrapper__img img{
        height: auto;
    }

    .menu_btn {
        display: block;
    }

    .menu ul {
        display: none;
    }

    .banner_wrapper {
        padding: 50px 0;
    }

    .banner_content h1 {
        font-size: 36px;
    }

    .banner_content p {
        font-size: 16px;
    }

    .service_right {
        padding-left: 0;
        margin-top: 2rem;
    }

    .parralex_wrapper {
        padding: 50px 0;
    }

    .parralex_wrapper__content h2 {
        font-size: 36px;
    }

    .parralex_wrapper__content p {
        font-size: 18px;
    }

    .blog_box__img img {
        height: 260px;
    }

    .blog_box__content h3 {
        font-size: 26px;
    }
}

@media(max-width:768px) {
    .whatsapp_btn img, .call_btn img{
        width: 55px;
    }
    .whatsapp_btn{
        left: 12px;
    }
    .call_btn{
        right: 12px;
    }
    .service_left h2 {
        font-size: 34px;
    }

    .mobile_nav__menu ul {
        padding-left: 3rem !important;
    }

    .mobile_nav {
        top: 5.5rem;
    }

    .banner_flex {
        flex-direction: column-reverse;
    }

    .banner_img img {
        height: 380px;
        border-radius: 5px;
    }

    .banner_content,
    .about_right {
        margin-top: 1rem;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .global_content {
        margin-top: 2rem;
    }

    .main_heading h2 {
        font-size: 42px;
    }

    .step_count__box {
        padding: 1rem;
    }

    .step_count__box h4 {
        padding: 10px;
        font-size: 16px;
    }

    .step_count__box {
        height: 96%;
    }

    .step_count__box h6 {
        font-size: 18px;
    }

    .logo img {
        width: 100px;
    }

    .myNav.sticky .logo img {
        width: 90px;
    }

    .about_img img {
        height: 380px;
    }

    .service_box {
        padding: 1rem;
    }

    .service_box__content h3 {
        font-size: 26px;
    }

    .service_box__icon i {
        height: 40px;
        width: 40px;
    }

    .blog_box {
        margin-top: 1rem;
    }

    .about_right h2 {
        font-size: 36px;
    }

    .featured_heading h2 {
        font-size: 28px;
    }

    .featured_box img {
        width: 5.625rem;
    }

    .main_heading p {
        font-size: 16px;
        margin-top: 7px !important;
        line-height: 24px;
    }

    .testimonial_slider .slick-dots {
        bottom: -2.5rem;
    }
}

@media(max-width:576px) {
        .calendar-icon {
        left: inherit;
            right:12px;
        }
        .btns{
            display: flex !important;
            flex-direction: column;
            width: 100%;
        }
        .btns button{
            width: 100%;
        }
    .mobile_nav__menu ul {
        padding-left: 0 !important;
    }
.header_right .schedule_btn{
    display: none;
}
    .mobile_nav {
        top: 5.3rem;
    }

    .step_count__box {
        height: auto;
    }

    .topNav_left__right {
        display: none;
    }

    .topNav_content {
        justify-content: center;
    }

    .topNav_left a,
    .topNav_left__right a {
        font-size: 13px;
        gap: 4px;
    }

    .logo img {
        width: 110px;
    }

    .service_left h2 {
        font-size: 32px;
    }

    .section_name {
        font-size: 15px;
    }

    .testimonial_box {
        padding: 1.5rem 1rem;
    }

    .testimonial_box__img img {
        height: 60px;
        width: 60px;
    }

    .testimonial_box__content p {
        font-size: 15px;
    }

    .testimonial_box__content h3 {
        font-size: 24px;
    }

    .myBtn {
        margin-top: 1.5rem;
    }

    .banner_img img {
        height: auto;
    }

    .banner_content h1 {
        font-size: 32px;
    }

    .main_heading h2 {
        font-size: 36px;
    }

    .about_right p,
    .service_left p {
        margin-top: 7px;
    }

    .step_count__box p {
        margin-top: 6px;
    }

    .service_box {
        flex-direction: column;
        gap: 10px;
    }

    .service_box__icon i {
        margin-top: 0;
    }

    .parralex_wrapper__content h2 {
        font-size: 28px;
    }

    .parralex_wrapper__content p {
        margin-top: 7px !important;
        font-size: 16px;
    }

    .featured_box img {
        width: 4.625rem;
    }

    .global_content {
        margin-top: 2rem;
    }

    .blog_box__content span {
        margin: 5px 0 !important;
        font-size: 13px;
    }

    .blog_box__content p {
        font-size: 14px;
    }
}