:root {

    --primary: #004040;

    --secondary: #D34E37;

    --light: #F3F9F9;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Manrope', sans-serif;

    color: #333;

    overflow-x: hidden;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    transition: .4s;

}

ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.section-padding {

    padding: 80px 0;

}

.section-tag {

    font-family: 'Manrope';

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 2%;

    line-height: 180%;

    color: var(--secondary);

    display: block;

    margin-bottom: 12px;

    text-align: center;

}

.section-title {

    font-family: 'Marcellus';

    font-size: 48px;

    line-height: 74px;

    letter-spacing: -2%;

    color: var(--primary);

    text-align: center;

    margin-bottom: 30px;

}

.theme-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 34px;

    background: var(--secondary);

    color: #fff;

    border-radius: 50px;

    font-weight: 500;

    transition: .4s;

    border: 2px solid var(--secondary);

}

.theme-btn:hover {

    background: transparent;

    color: var(--secondary);

}

.outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 34px;

    border: 2px solid #fff;

    border-radius: 50px;

    color: #fff;

    margin-left: 15px;

    transition: .4s;

}

.outline-btn:hover {

    background: #fff;

    color: var(--primary);

}


.navbar {

    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);

}

.navbar-brand{
padding: 0;
}

.navbar-brand img {

    height: 70px;

}

.navbar-nav {

    gap: 35px;

}

.nav-link {

    font-size: 15px;

    font-weight: 500;

    color: #6D6D6D;

}

.nav-link.active {

    color: var(--primary) !important;

    font-weight: 700;

}

.nav-link:hover {

    color: var(--secondary);

}

.hero {

    background: var(--primary);

}

.hero-content {

    padding: 110px 90px;

}

.hero .section-tag {

    text-align: left;

    font-size: 24px;

    margin-bottom: 25px;

}

.hero h1 {

    font-family: 'Marcellus';

    font-size: 60px;

    line-height: 74px;

    font-weight: 400;

    color: #fff;

    margin-bottom: 35px;

}

.hero h1 span {

    color: var(--secondary);

}

.hero p {

    font-size: 18px;

    font-weight: 300;

    line-height: 32px;

    letter-spacing: 2%;

    color: #d7d7d7;

    max-width: 600px;

    margin-bottom: 40px;

}

.hero-image {
    height: 100%;
}

.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.hero-btns {

    display: flex;

    align-items: center;

}


@media(max-width:991px) {

    .navbar-nav {

        gap: 10px;

        padding: 25px 0;

    }

    .hero-content {

        padding: 70px 30px;

    }

    .hero h1 {

        font-size: 48px;

        line-height: 60px;

    }

    .hero-image img {

        height: 500px;

    }

}

@media(max-width:767px) {

    .section-padding {

        padding: 60px 0;

    }

    .section-title {

        font-size: 34px;

        line-height: 48px;

    }

    .hero .section-tag {

        font-size: 18px;

    }

    .hero h1 {

        font-size: 38px;

        line-height: 50px;

    }

    .hero-btns {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .outline-btn {

        margin-left: 0;

    }

    .hero-image img {

        height: 350px;

    }

}

.feature-card {

    background: #fff;

    padding: 40px 30px;

    text-align: center;

    border-radius: 12px;

    transition: .4s;

    height: 100%;

}

.feature-card:hover {

    background: var(--light);

    transform: translateY(-12px);

    box-shadow: 0px 8px 20px 0px #33333326;

}

.feature-icon {

    width: 82px;

    height: 82px;

    margin: 0 auto 25px;

    background: var(--primary);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    transition: .4s;

}

.feature-card:hover .feature-icon {

    background: var(--secondary);

    transform: rotate(8deg) scale(1.08);

}

.feature-icon img {

    width: 42px;

    height: 42px;

    object-fit: contain;

}

.feature-card h4 {

    font-family: 'Marcellus';

    font-size: 32px;

    color: var(--secondary);

    margin-bottom: 14px;

}

.feature-card p {

    font-size: 16px;

    line-height: 30px;

    color: #6D6D6D;

    max-width: 220px;

    margin: auto;

}

@media(max-width:991px) {

    .feature-card {

        padding: 35px 20px;

    }

    .feature-card h4 {

        font-size: 28px;

    }

}

@media(max-width:767px) {

    .feature-card {

        padding: 30px 20px;

    }

    .feature-icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

    .feature-card h4 {

        font-size: 26px;

    }

}


.grey-bg {
    background: #F3F9F9;
}


.about-desc {

    font-size: 16px;
    line-height: 32px;
    color: #6D6D6D;
    margin-bottom: 25px;

}

.about-list {

    display: flex;
    flex-direction: column;
    gap: 16px;

}

.about-item {

    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

}

.about-item:hover {

    transform: translateX(8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

}

.about-icon {

    width: 46px;
    height: 46px;
    background: var(--secondary);
    color: #fff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;

}

.about-icon img {
    width: 35px;
}

.about-item span {

    font-weight: 600;
    color: #222;
    font-size: 24px;

}

.about-image {

    position: relative;
    margin-top: 25px;

}

.about-image img {

    width: 100%;
    border-radius: 22px;
    height: 390px;
    object-fit: cover;

}

.about-btn {

    position: absolute;
    top: -16px;
    right: 20px;
    background: var(--secondary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;

}

.about-btn:hover {

    background: var(--primary);
    color: #fff;

}

/* Responsive */

@media(max-width:991px) {

    .about-title {

        font-size: 42px;
        line-height: 56px;

    }

    .about-image img {

        height: 330px;

    }

}

@media(max-width:767px) {

    .about-title {

        font-size: 34px;
        line-height: 46px;

    }

    .about-item {

        padding: 15px;

    }

    .about-item span {

        font-size: 16px;

    }

    .about-image img {

        height: 260px;

    }

    .about-btn {

        right: 15px;
        padding: 10px 22px;
        font-size: 13px;

    }

}


.program-wrapper {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;

}

.program-left,
.program-right {

    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 400px;

}

.program-card {

    background: #F9F9F94D;
    border: 1px solid #0000001A;
    border-radius: 22px;
    padding: 14px;
    display: flex;
    gap: 10px;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
    transition: all .4s ease;

}

.program-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);

}

.program-card img {

    width: 150px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;

}

.program-card h4 {

    font-family: 'Marcellus';
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;

}

.program-card p {

    font-size: 14px;
    line-height: 24px;
    color: #6D6D6D;
    margin: 0;

}

.program-center {

    width: 260px;
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}

.circle {

    position: absolute;
    border: 1px solid #d8d8d8;
    border-radius: 50%;

}

.circle.one {

    width: 400px;
    height: 400px;

}

.circle.two {

    width: 300px;
    height: 300px;

}

.center-img {

    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

}

.center-img img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.mini-btn {

    display: none;
    margin-top: 12px;
    background: var(--secondary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all .4s ease;

}

.mini-btn:hover {

    background: var(--primary);
    color: #fff;

}

.program-card:hover .mini-btn {
    display: block;
    position: absolute;
    left: 10%;
    bottom: 2%;
}

.program-card:hover {
    border: 1px solid var(--primary);
}


.logo-strip img {
    filter: grayscale(100%);
    opacity: .5;
    transition: all .4s ease;
}

.logo-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}


@media(max-width:1199px) {

    .program-wrapper {

        flex-direction: column;

    }

    .program-left,
    .program-right {

        width: 100%;

    }

    .program-center {

        margin: 35px 0;

    }

}

@media(max-width:767px) {

    .program-card {

        flex-direction: column;
        text-align: center;

    }

    .program-card img {

        width: 100%;
        height: 180px;

    }

    .program-center {

        width: 220px;
        height: 220px;

    }

    .circle.one {

        width: 200px;
        height: 200px;

    }

    .circle.two {

        width: 145px;
        height: 145px;

    }

    .program-card h4 {

        font-size: 22px;

    }

}


.testimonialSwiper {

    padding: 15px 5px 10px;

}

.testimonial-card {

    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
    position: relative;

}

.swiper-slide {
    height: -webkit-fill-available !important;
}

.testimonial-card:hover {

    transform: translateY(-8px);

}

.testimonial-card::before {

    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 12px;
    background: var(--primary);

}

.quote-icon {

    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: -10px;
    left: 18px;

}

.testimonial-card h5 {

    margin-top: 38px;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);

}

.testimonial-card p {

    padding: 10px 20px 24px;
    font-size: 15px;
    line-height: 28px;
    color: #555;
    margin: 0;

}

@media(max-width:767px) {

    .testimonial-card h5 {

        font-size: 16px;

    }

    .testimonial-card p {

        font-size: 14px;
        line-height: 24px;

    }

}


.growth-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

}

.growth-box {

    position: relative;
    padding: 15px;
    transition: .35s;

}

.growth-box:hover {

    background: #F3F9F9;
    border-radius: 12px;
    box-shadow: 0px 48px 120px 0px #33333340;

}

.growth-number {

    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-family: 'Marcellus';
    margin-bottom: 18px;

}

.growth-box h4 {

    font-family: 'Marcellus';
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 10px;

}

.growth-box p {

    font-size: 15px;
    line-height: 27px;
    color: #6D6D6D;
    margin: 0;

}

.contact-box {

    background: #F3F9F9;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0px 2px 10px 0px #00000040;

}

.contact-box h2 {

    font-family: 'Marcellus';
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 35px;

}

.form-group {

    margin-bottom: 25px;

}

.form-group label {

    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #444;

}

.form-control {

    border: none;
    border-bottom: 1px solid #d6d6d6;
    border-radius: 0;
    background: transparent;
    padding: 8px 0;
    box-shadow: none !important;
    font-size: 15px;

}

.form-control:focus {

    border-color: var(--secondary);

}

textarea.form-control {

    resize: none;

}

/* Responsive */

@media(max-width:991px) {

    .contact-box {

        margin-top: 40px;

    }

}

@media(max-width:767px) {

    .growth-grid {

        grid-template-columns: 1fr;

    }

    .contact-box {

        padding: 30px 20px;

    }

    .contact-box h2 {

        font-size: 34px;

    }

    .growth-box h4 {

        font-size: 26px;

    }

}



/*=========================
Newsletter
=========================*/

.newsletter-section {

    background: #F3F9F9;
    padding: 60px 0 40px;

}

.newsletter-wrapper {

    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 40px;

}

.newsletter-wrapper h3 {

    font-family: 'Marcellus';
    font-size: 38px;
    line-height: 54px;
    color: var(--primary);
    margin: 0;

}

.newsletter-form {

    display: flex;
    justify-content: end;
    align-items: baseline;
    gap: 15px;

}

.newsletter-input p{

    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 0 18px;
    height: 58px;

}

.newsletter-input p i {

    color: #999;
    margin-right: 12px;

}

.newsletter-input p span input {

    border: none;
    outline: none;
    width: 100%;
    background: none;

}

/*=========================
Footer
=========================*/

.footer {

    background: #F3F9F9;
    padding: 50px 0 20px;

}

.footer-logo {

    height: 65px;
    margin-bottom: 20px;

}

.footer h4 {

    font-family: 'Marcellus';
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 22px;

}

.footer h5 {

    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;

}

.footer p {

    font-size: 15px;
    line-height: 28px;
    color: #6D6D6D;

}

.footer ul {

    padding: 0;
    margin: 0;
    list-style: none;

}

.footer ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #6D6D6D;
}

.footer ul li a {
    font-size: 15px;
    color: #6D6D6D;
    transition: .3s;
    line-height: 1;
}

.footer ul li a:hover {

    color: var(--secondary);
    padding-left: 5px;

}

.contact-info strong {

    color: var(--secondary);

}

.footer hr {

    margin: 45px 0 20px;

}

.footer-bottom {

    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6D6D6D;

}

.footer-bottom p {

    margin: 0;
    color: #6D6D6D;
    font-size: 14px;

}

.footer-bottom p a {

    margin: 0;
    color: #6D6D6D;
    font-size: 14px;

}

.footer-social {

    display: flex;
    gap: 12px;

}

.footer-social a {

    width: 38px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: .35s;

}

.footer-social a:hover {

    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-4px);

}


@media(max-width:991px) {

    .newsletter-form {

        flex-direction: column;
        align-items: stretch;

    }

    .footer-bottom {

        flex-direction: column;
        gap: 18px;
        text-align: center;

    } 
	
	.navbar{
		position: fixed;
		width: 100%;
		top: 0;
	}
	
	html,
	body{
		overflow-x: hidden;
	}

}

.footer-logo-part img{
    margin-bottom: 20px;
}

@media(max-width:767px) {

    .newsletter-wrapper h3 {

        font-size: 30px;
        line-height: 42px;

    }
	
	
	.footer-logo-part img{
		justify-self: center;
	}


    .footer {

        text-align: center;

    }

    .footer-social {

        justify-content: center;

    }

}




.tsm-banner {
    padding: 70px 0;

}

.tsm-banner-content {

    text-align: center;

}

.tsm-banner-content h1 {

    font-family: 'Marcellus';
    font-size: 60px;
    color: #fff;
    margin-bottom: 18px;

}

.tsm-banner-content ul {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;

}

.tsm-banner-content ul li {

    color: #fff;
    font-size: 17px;

}

.tsm-banner-content ul li a {

    color: #fff;

}

.tsm-banner-content ul li:last-child {

    color: #D34E37;

}

@media(max-width:767px) {

    .tsm-banner {

        padding: 110px 0 70px;

    }

    .tsm-banner-content h1 {

        font-size: 42px;

    }

}



/*==================================
Worked With Section
==================================*/

.worked-section {
    background: #F3F9F9;
}

.worked-subtitle {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #D34E37;
    margin-bottom: 10px;
}

.worked-title {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    color: #004040;
    margin-bottom: 18px;
}

.worked-desc {
    max-width: 760px;
    margin: 0 auto 15px;
    font-size: 17px;
    line-height: 32px;
    color: #666;
}

.worked-logo {

    height: 150px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    border: 1px solid #e9ecef;
    transition: .35s;
    overflow: hidden;

}

.worked-logo img {

    max-width: 160px;
    max-height: 70px;
    width: auto;
    filter: grayscale(100%);
    opacity: .55;
    transition: .35s;

}

.worked-logo:hover {

    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    border-color: #004040;

}

.worked-logo:hover img {

    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);

}

@media(max-width:991px) {

    .worked-title {
        font-size: 40px;
    }

    .worked-logo {
        height: 130px;
    }

}

@media(max-width:767px) {

    .worked-title {
        font-size: 32px;
        line-height: 42px;
    }

    .worked-desc {
        font-size: 15px;
        line-height: 28px;
    }

    .worked-logo {
        height: 110px;
        padding: 20px;
    }

    .worked-logo img {
        max-width: 120px;
    }

}


/*==========================
Review Section
==========================*/

.review-area {

    background: #fff;

}

.review-subtitle {

    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #D34E37;
    margin-bottom: 12px;

}

.review-heading {

    font-family: 'Marcellus';
    font-size: 48px;
    line-height: 64px;
    color: #004040;
    margin-bottom: 20px;

}

.review-text {

    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 30px;
    color: #666;

}

.review-box {

    background: #fff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #e8e8e8;
    height: 100%;
    transition: .35s;

}

.review-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

    border-color: #004040;

}

.review-stars {

    margin-bottom: 20px;

}

.review-stars i {

    color: #FDBA12;
    margin-right: 3px;

}

.review-box p {

    font-size: 16px;
    line-height: 30px;
    color: #666;
    margin-bottom: 30px;

}

.review-user {

    display: flex;
    align-items: center;
    gap: 15px;

}

.review-user img {

    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;

}

.review-user h5 {

    font-size: 20px;
    margin-bottom: 4px;
    font-family: 'Marcellus';
    color: #004040;

}

.review-user span {

    font-size: 15px;
    color: #D34E37;
    font-weight: 600;

}

@media(max-width:991px) {

    .review-heading {

        font-size: 40px;
        line-height: 54px;

    }

}

@media(max-width:767px) {

    .review-heading {

        font-size: 32px;
        line-height: 44px;

    }

    .review-box {

        padding: 25px;

    }

    .review-user img {

        width: 60px;
        height: 60px;

    }

}




/*=========================
Services
=========================*/

.srv-card {

    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    border: 1px solid #ececec;

}

.srv-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.srv-img {

    position: relative;
    overflow: hidden;

}

.srv-img img {

    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;

}

.srv-card:hover img {

    transform: scale(1.08);

}

.srv-card span {

    position: absolute;
    top: 44%;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #D34E37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    border: 6px solid #fff;
    transition: .35s;

}

.srv-card:hover .srv-img span {

    background: #004040;
    transform: rotate(15deg);

}

.srv-content {

    padding: 45px 28px 30px;

}

.srv-content h3 {

    font-family: 'Marcellus';
    font-size: 32px;
    color: #004040;
    margin-bottom: 15px;

}

.srv-content p {

    font-size: 16px;
    line-height: 30px;
    color: #666;
    margin-bottom: 25px;

}

.srv-content a {

    color: #D34E37;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    align-items: center;

}

.srv-content a i {

    transition: .35s;

}

.srv-card:hover a i {

    transform: translateX(8px);

}

@media(max-width:767px) {

    .srv-content h3 {

        font-size: 26px;

    }

    .srv-img img {

        height: 220px;

    }

}



/*=========================
Blog Page
=========================*/

.blog-card {

    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #ececec;
    transition: .4s;
    height: 100%;

}

.blog-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.blog-image {

    position: relative;
    /* overflow: hidden; */

}

.blog-image img {

    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;

}

/* .blog-card:hover img {

    transform: scale(1.08);

} */

.blog-date {

    position: absolute;
    left: 25px;
    bottom: -28px;
    width: 110px;
    height: 72px;
    background: #D34E37;
    color: #fff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);

}

.blog-date span {

    font-size: 24px;
    font-weight: 700;
    line-height: 1;
	margin-bottom: 10px;

}

.blog-date small {

    font-size: 13px;
    letter-spacing: 2px;

}

.blog-content {

    padding: 45px 28px 30px;

}

.blog-meta {

    display: flex;
    gap: 20px;
    font-size: 14px;
    margin-bottom: 18px;
    color: #777;
    flex-wrap: wrap;

}

.blog-meta i {

    color: #D34E37;
    margin-right: 6px;

}

.blog-content h3 {

    font-family: 'Marcellus';
    font-size: 30px;
    line-height: 42px;
    color: #004040;
    margin-bottom: 15px;
    transition: .3s;

}

.blog-card:hover h3 {

    color: #D34E37;

}

.blog-content p {

    font-size: 16px;
    line-height: 30px;
    color: #666;
    margin-bottom: 24px;

}

.blog-content a {

    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #004040;

}

.blog-content a i {

    transition: .3s;

}

.blog-card:hover a i {

    transform: translateX(8px);

}

.blog-pagination ul {

    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;

}

.blog-pagination a {

    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F9F9;
    color: #004040;
    font-weight: 600;
    transition: .3s;

}

.blog-pagination a:hover,
.blog-pagination .active {

    background: #D34E37;
    color: #fff;

}

@media(max-width:767px) {

    .blog-image img {

        height: 220px;

    }

    .blog-content h3 {

        font-size: 24px;
        line-height: 34px;

    }

    .blog-content {

        padding: 40px 22px 25px;

    }

}



/*=========================
Blog Detail
=========================*/

.bd-main-img {

    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;

}

.bd-meta {

    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: #777;

}

.bd-meta i {

    color: #D34E37;
    margin-right: 6px;

}

.bd-post h2 {

    font-family: 'Marcellus';
    font-size: 46px;
    color: #004040;
    margin-bottom: 20px;

}

.bd-post h3 {

    font-family: 'Marcellus';
    font-size: 32px;
    color: #004040;
    margin: 35px 0 18px;

}

.bd-post p {

    font-size: 17px;
    line-height: 32px;
    color: #666;

}

.bd-sidebar {
    position: sticky;
    top: 100px;
}

.bd-list {

    list-style: none;
    padding: 0;

}

.bd-list li {

    margin-bottom: 15px;
    font-size: 17px;

}

.bd-list i {

    color: #D34E37;
    margin-right: 10px;

}

/* Sidebar */

.bd-widget {

    background: #F3F9F9;
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 30px;

}

.bd-widget h4 {

    font-family: 'Marcellus';
    margin-bottom: 25px;
    color: #004040;

}

.related-post {

    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: center;

}

.related-post:last-child {

    margin-bottom: 0;

}

.related-post img {

    width: 95px;
    height: 85px;
    border-radius: 12px;
    object-fit: cover;

}

.related-post span {

    font-size: 13px;
    color: #D34E37;
    font-weight: 700;

}

.related-post a {

    display: block;
    font-weight: 600;
    margin-top: 6px;
    color: #004040;

}

.bd-cta {

    background: #004040;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: #fff;

}

.bd-cta h3 {

    font-family: 'Marcellus';
    font-size: 34px;
    margin-bottom: 18px;

}

.bd-cta p {

    color: #d8d8d8;
    margin-bottom: 25px;

}

@media(max-width:767px) {

    .bd-main-img {

        height: 260px;

    }

    .bd-post h2 {

        font-size: 32px;

    }

    .bd-post h3 {

        font-size: 26px;

    }

    .bd-meta {

        gap: 12px;

    }

}


.about-story-section {

    background: #fff;

}

.about-story-image {

    overflow: hidden;
    border-radius: 25px;

}

.about-story-image img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
    transition: .5s;
    object-fit: cover;

}

.about-story-image:hover img {

    transform: scale(1.05);

}

.about-story-content p {

    font-size: 17px;
    line-height: 32px;
    color: #666;
    margin-bottom: 20px;

}

/* .about-feature-list {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0;

} */

/* .about-feature-list div {

    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #004040;

} */

.about-feature-list i {

    color: #D34E37;
    font-size: 18px;

}

@media(max-width:767px) {

    .about-feature-list {

        grid-template-columns: 1fr;

    }

    .about-story-content p {

        font-size: 16px;
        line-height: 28px;

    }

}

.mindset-purpose {

    background: #F3F9F9;

}

.purpose-card {

    position: relative;
    background: #fff;
    padding: 55px 40px;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    border: 1px solid #eee;

}

.purpose-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.purpose-no {

    position: absolute;
    right: 25px;
    top: 5px;
    font-size: 90px;
    font-family: 'Marcellus';
    color: #F3F9F9;
    line-height: 1;
    transition: .4s;

}

.purpose-card:hover .purpose-no {

    color: #d8ecec;

}

.purpose-icon {

    width: 75px;
    height: 75px;
    background: #004040;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
    transition: .4s;

}

.purpose-card:hover .purpose-icon {

    background: #D34E37;
    transform: rotate(10deg);

}

.purpose-card h3 {

    font-family: 'Marcellus';
    font-size: 34px;
    color: #004040;
    margin-bottom: 18px;

}

.purpose-card p {

    font-size: 17px;
    line-height: 31px;
    color: #666;
    margin: 0;

}

@media(max-width:767px) {

    .purpose-card {

        padding: 40px 25px;

    }

    .purpose-card h3 {

        font-size: 28px;

    }

    .purpose-no {

        font-size: 70px;

    }

}

.choose-image {

    overflow: hidden;
    border-radius: 25px;

}

.choose-image img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
    transition: .5s;
    object-fit: cover;

}

.choose-image:hover img {

    transform: scale(1.05);

}

.choose-list {

    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

}

.choose-item {
    padding: 22px;
    background: #fff;
    border-radius: 18px;
    transition: .35s;
    border: 1px solid #eee;

}

.choose-item:hover {

    transform: translateX(10px);
    border-color: #004040;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);

}

.choose-item i {

    width: 65px;
    height: 65px;
    background: #004040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    transition: .35s;

}

.choose-item:hover i {

    background: #D34E37;
    transform: rotate(15deg);

}

.choose-item h4 {

    font-family: 'Marcellus';
    font-size: 28px;
    color: #004040;
    margin-bottom: 8px;

}

.choose-item p {

    margin: 0;
    font-size: 16px;
    line-height: 28px;
    color: #666;

}

@media(max-width:767px) {

    .choose-item {

        flex-direction: column;
        text-align: center;

    }

    .choose-item i {

        margin: auto;

    }

    .choose-item h4 {

        font-size: 24px;

    }

}



.journey-wrapper {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;

}

.journey-wrapper::before {

    content: "";
    position: absolute;
    top: 55px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: #d8d8d8;
    z-index: 0;

}

.journey-item {

    position: relative;
    text-align: center;
    z-index: 2;

}

.journey-circle {

    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #004040;
    position: relative;
    border: 2px solid #004040;
    transition: .4s;

}

.journey-circle span {

    position: absolute;
    top: -10px;
    right: -5px;
    width: 34px;
    height: 34px;
    background: #D34E37;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;

}

.journey-item:hover .journey-circle {

    background: #004040;
    color: #fff;
    transform: rotate(10deg);

}

.journey-item h4 {

    margin: 30px 0 15px;
    font-family: 'Marcellus';
    font-size: 28px;
    color: #004040;

}

.journey-item p {

    font-size: 16px;
    line-height: 29px;
    color: #666;

}

@media(max-width:991px) {

    .journey-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

    .journey-wrapper::before {

        display: none;

    }

}

@media(max-width:767px) {

    .journey-wrapper {

        grid-template-columns: 1fr;

    }

}


.impact-section {

    padding: 80px 0;

}

.impact-box {

    background: #004040;
    padding: 70px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;

}

.impact-box::before {

    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;

}

.impact-box::after {

    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;

}

.impact-item {

    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;

}

.impact-item h2 {

    font-family: 'Marcellus';
    font-size: 64px;
    margin-bottom: 10px;
    color: #fff;

}

.impact-item::after {

    content: "+";
    font-size: 34px;
    color: #D34E37;
    margin-left: 4px;

}

.impact-item span {

    display: block;
    font-size: 18px;
    color: #d9d9d9;

}

@media(max-width:767px) {

    .impact-box {

        padding: 50px 20px;

    }

    .impact-item {

        margin-bottom: 35px;

    }

    .impact-item h2 {

        font-size: 44px;

    }

}


.coach-photo {

    position: relative;

}

.coach-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 25px;

}

.coach-exp {

    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #004040;
    padding: 25px;
    width: 180px;
    text-align: center;
    border-radius: 20px;
    color: #fff;

}

.coach-exp h3 {

    font-family: 'Marcellus';
    font-size: 48px;
    margin-bottom: 8px;
    color: #fff;

}

.coach-exp span {

    font-size: 15px;

}

.coach-info p {

    font-size: 17px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #666;

}

.coach-sign {

    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0;

}

.coach-sign img {

    height: 55px;

}

.coach-sign h5 {

    margin-bottom: 4px;
    font-family: 'Marcellus';
    font-size: 24px;
    color: #004040;

}

.coach-sign span {

    color: #D34E37;
    font-weight: 600;

}

@media(max-width:991px) {

    .coach-exp {

        right: 20px;

    }

}

@media(max-width:767px) {

/*     .coach-exp {

        position: static;
        margin-top: 20px;
        width: 100%;

    } */

    .coach-sign {

        flex-direction: column;
        align-items: start;

    }

}

.blog-detail-area ul {
	padding-left: 1rem;
	margin-bottom: 10px;
}

.blog-detail-area ul li{
	list-style: disc;
	padding: 3px;
}

.about-cta {

    position: relative;

    padding: 120px 0;

}

.about-cta::before {

    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 64, 64, .82);

}

.cta-wrap {

    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;

}

.cta-wrap span {

    display: block;
    letter-spacing: 2px;
    font-weight: 700;
    color: #D34E37;
    margin-bottom: 15px;

}

.cta-wrap h2 {

    font-family: 'Marcellus';
    font-size: 58px;
    line-height: 72px;
    color: #fff;
    margin-bottom: 25px;

}

.cta-wrap p {

    font-size: 18px;
    line-height: 34px;
    color: #e8e8e8;
    margin-bottom: 20px;

}

@media(max-width:767px) {

    .about-cta {

        padding: 90px 0;

    }

    .cta-wrap h2 {

        font-size: 36px;
        line-height: 48px;

    }

    .cta-wrap p {

        font-size: 16px;
        line-height: 28px;

    }

}



.contact-v2 {

    background: #fff;

}

.contact-v2-box {

    background: #4b7683;
    padding: 70px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.contact-left h2 {

    font-family: 'Marcellus';
    font-size: 58px;
    color: #fff;
    margin-bottom: 45px;

}

.contact-info {

    margin-bottom: 45px;

}

.contact-info:last-child {

    margin-bottom: 0;

}

.contact-info h5 {

    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;

}

.contact-info a,
.contact-info p {

    font-size: 22px;
    line-height: 34px;
    color: #fff;
    margin: 0;

}

.contact-right input,
.contact-right textarea {

    width: 100%;
    background: rgba(0, 64, 64, .28);
    border: none;
    padding: 18px 22px;
    color: #fff;
    margin-bottom: 22px;
    outline: none;
    transition: .35s;

}

.contact-right textarea {

    resize: none;

}

.contact-right input::placeholder,
.contact-right textarea::placeholder {

    color: #eef4f5;

}

.contact-right input:focus,
.contact-right textarea:focus {

    background: #004040;

}

.contact-right .theme-btn {

    margin-top: 10px;

}

@media(max-width:991px) {

    .contact-v2-box {

        padding: 40px;

    }

    .contact-left {

        margin-bottom: 30px;

    }

}

@media(max-width:767px) {

    .contact-v2-box {

        padding: 30px 20px;

    }

    .contact-left h2 {

        font-size: 42px;

    }

    .contact-info a,
    .contact-info p {

        font-size: 18px;

    }

}

.contact-map {

    position: relative;
    margin-top: 100px;

}

.map-wrapper {

    position: relative;

}

.map-wrapper iframe {

    width: 100%;
    height: 600px;
    border: none;

}


.quote-modal {

    border: none;
    border-radius: 25px;
    overflow: hidden;

}

.quote-close {

    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    background: var(--secondary);
    color: white;
    opacity: 1;
    border-radius: 50%;
    padding: 10px;

}

.quote-close {

    position: absolute;
    top: 18px;
    right: 18px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #004040;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: .35s;
    z-index: 10;

}

.quote-close:hover {

    background: #D34E37;
    color: #fff;
    transform: rotate(90deg);

}

.quote-left {

    background: #004040;
    padding: 60px 40px;
    height: 100%;
    color: #fff;

}

.quote-left span {

    display: inline-block;
    background: #D34E37;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;

}

.quote-left h2 {

    font-family: 'Marcellus';
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 20px;

}

.quote-left p {

    line-height: 30px;
    color: #d8e4e4;
    margin-bottom: 30px;

}

.quote-right {

    padding: 55px 40px;
    background: #fff;

}

.quote-right h3 {

    font-family: 'Marcellus';
    font-size: 36px;
    margin-bottom: 30px;
    color: #004040;

}

.quote-right .form-control,
.quote-right .form-select {
    padding: .375rem .75rem;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: none;

}

.quote-right textarea.form-control {

    height: auto;
    resize: none;
    padding-top: 15px;

}

.quote-right .form-control:focus,
.quote-right .form-select:focus {

    border-color: #004040;

}

@media(max-width:991px) {

    .quote-left {

        padding: 40px 30px;

    }

    .quote-right {

        padding: 35px 25px;

    }

}

@media(max-width:767px) {

    .quote-left h2 {

        font-size: 32px;
        line-height: 42px;

    }

    .quote-right h3 {

        font-size: 30px;

    }

}


/* Services Dropdown */

.service-dropdown {

    display: flex;
    align-items: center;
    position: relative;

}

.dropdown-toggle-btn {

    color: #004040;
    padding: 0 0 0 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: .3s;

}

.dropdown-toggle-btn:hover {

    color: #D34E37;

}

.dropdown-menu {

    margin-top: 15px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    padding: 10px 0;
    min-width: 240px;
    top: 30%;
}

.dropdown-item {

    padding: 12px 20px;
    transition: .3s;

}

.dropdown-item:hover {

    background: #004040;
    color: #fff;

}

@media(min-width:992px) {

    .service-dropdown:hover .dropdown-menu {

        display: block;

    }

}




.error-page {

    min-height: 80vh;
    display: flex;
    align-items: center;

}

.error-wrap {

    max-width: 750px;
    margin: auto;
    text-align: center;

}

.error-wrap img {

    width: 240px;
    margin-bottom: 30px;

}

.error-wrap span {

    display: block;
    font-size: 140px;
    font-family: 'Marcellus';
    color: #004040;
    line-height: 1;

}

.error-wrap h2 {

    font-family: 'Marcellus';
    font-size: 54px;
    margin: 15px 0;
    color: #004040;

}

.error-wrap p {

    max-width: 600px;
    margin: auto;
    line-height: 32px;
    color: #666;
    margin-bottom: 35px;

}

@media(max-width:767px) {

    .error-wrap span {

        font-size: 90px;

    }

    .error-wrap h2 {

        font-size: 34px;

    }

    .error-wrap img {

        width: 170px;

    }

}


.thank-page {

    min-height: 80vh;
    display: flex;
    align-items: center;

}

.thank-box {

    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 70px 50px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
    text-align: center;

}

.thank-box img {

    width: 180px;
    margin-bottom: 20px;

}

.thank-icon {

    width: 85px;
    height: 85px;
    background: #004040;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    border: 6px solid #D34E37;

}

.thank-box h2 {

    font-family: 'Marcellus';
    font-size: 52px;
    color: #004040;
    margin-bottom: 18px;

}

.thank-box p {

    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin-bottom: 35px;

}

@media(max-width:767px) {

    .thank-box {

        padding: 45px 25px;

    }

    .thank-box h2 {

        font-size: 34px;

    }

    .thank-box img {

        width: 130px;

    }

}





/*==================================
Modern Contact
==================================*/

.contact-modern{

    background:#F3F9F9;

}

.contact-modern-wrap{

    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*========================
Left
========================*/

.contact-info-side{

    background:linear-gradient(180deg,#004040 0%,#006666 100%);
    padding:70px 45px;
    color:#fff;
    height:100%;
    position:relative;
    overflow:hidden;

}

.contact-info-side::before{

    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-80px;
    right:-80px;

}

.contact-info-side::after{

    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-60px;
    left:-60px;

}

.contact-badge{

    display:inline-block;
    background:#D34E37;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:25px;
    letter-spacing:1px;

}

.contact-info-side h2{

    font-family:'Marcellus';
    font-size:46px;
    line-height:58px;
    margin-bottom:20px;

}

.contact-info-side p{

    color:#d8ecec;
    line-height:32px;
    margin-bottom:40px;

}

/*========================
Info Card
========================*/

.info-card{

    display:flex;
    align-items:center;
    gap:18px;
    padding:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    margin-bottom:20px;
    transition:.35s;

}

.info-card:hover{

    transform:translateY(-6px);
    background:#D34E37;

}

.info-icon{

    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff;
    color:#004040;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;

}

.info-card small{

    display:block;
    color:#d9d9d9;
    margin-bottom:4px;

}

.info-card h5 a{

    margin:0;
    color:#fff;
    font-size:20px;

}

.info-card h5{

    margin:0;
    color:#fff;
    font-size:20px;

}

.coach-photo {
	height: 100%;
}

/*========================
Right
========================*/

.contact-form-side{

    padding:70px 60px;

}

.contact-text{

    margin:18px 0 35px;
    color:#666;
    line-height:31px;

}

/*========================
Input
========================*/

.input-box{

    position:relative;
    margin-bottom:0px;

}

.input-box i{

    position:absolute;
    left:20px;
    top:65%;
    transform:translateY(-50%);
    color:#004040;
    font-size:16px;
	z-index: 9;

}

.input-box p span input,
.input-box p span select{

    width:100%;
    height:60px;
    border:1px solid #d8e5e5;
    background:#F8FBFB;
    border-radius:15px;
    padding-left:55px;
    padding-right:20px;
    outline:none;
    transition:.35s;

}

.textarea-box i{

    top:60px;

}

.input-box p span textarea{

    width:100%;
    border:1px solid #d8e5e5;
    background:#F8FBFB;
    border-radius:15px;
    padding:22px 20px 20px 55px;
    outline:none;
    resize:none;
    transition:.35s;

}

.input-box p span input:focus,
.input-box p span textarea:focus,
.input-box p span select:focus{

    border-color:#004040;
    background:#fff;
    box-shadow:0 0 0 4px rgba(0,64,64,.08);

}


.contact-form-side .theme-btn{

    margin-top:10px;

}



/* Desktop */

@media(min-width:992px){

	.menu-item-has-children{
		position:relative;
	}

	.menu-item-has-children > .dropdown-menu{

		display:block;
		opacity:0;
		visibility:hidden;
		transform:translateY(15px);
		transition:.35s;
		min-width:260px;
		border:none;
		border-radius:15px;
		padding:12px 0;
		box-shadow:0 20px 40px rgba(0,0,0,.12);
		top: 100%;
	}

	.menu-item-has-children:hover > .dropdown-menu{

		opacity:1;
		visibility:visible;
		transform:translateY(0);

	}

	.menu-item-has-children > .dropdown-menu .nav-link{

		padding:12px 22px;
		display:block;

	}

}


@media(max-width:991px){

	.menu-item-has-children{

		position:relative;

	}

	.submenu-toggle{

		position:absolute;
		left: 15%;
		top: -5px;
		width:48px;
		height:48px;
		display:flex;
		align-items:center;
		justify-content:center;
		cursor:pointer;
		color:#004040;
		font-size:16px;

	}

	.menu-item-has-children > .dropdown-menu{

		display:none;
		position:static;
		box-shadow:none;
		border:none;
		padding-left:15px;
		margin-top:8px;

	}

	.menu-item-has-children.open > .dropdown-menu{

		display:block;

	}

}




@media(max-width:1199px){

.contact-info-side{

    padding:60px 35px;

}

.contact-form-side{

    padding:60px 40px;

}

}

@media (min-width: 992px) and (max-width: 1024px){
	.navbar-nav {
		gap: 15px;
	}
}

@media(max-width:991px){

.contact-info-side{

    border-radius:0;

}

.contact-form-side{

    padding:50px 35px;

}
	
	.impact-section {
		padding-bottom: 0px;
	}
	
	.coach-photo {
		height: auto;
	}
	
	.newsletter-section {
		padding-bottom: 0;
	}
	

}

@media(max-width:767px){

.contact-info-side{

    padding:45px 25px;

}
	
		.program-card:hover .mini-btn {
		position: static;
	}
	.about-story-image img,
	.choose-image img{
		height: 450px;
	}
	
	.choose-list {
		grid-template-columns: 1fr;
	}

.contact-info-side h2{

    font-size:34px;
    line-height:44px;

}

.contact-form-side{

    padding:40px 20px;

}

.info-card{

    padding:15px;

}

.info-card h5{

    font-size:17px;

}

.input-box input,
.input-box select{

    height:55px;

}

}