/* banner */

.banner {
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), color-mix(in srgb, var(--primary-color) 80%, transparent));
    top: 0;
    left: 0;
}

.banner_content {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}

.banner_heading {
    font-family: 'Kanit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.banner_para {
    color: #495057;
    font-size: 16px;
    font-weight: normal;
    line-height: 34px;
    margin-bottom: 48px;
    font-family: "Inter", serif;
}


@media only screen and (max-width:767px) {
    .banner {
        height: auto;
        padding: 15px 0px 0px 0px;
    }

    .banner_heading {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .banner {
        height: auto;
    }
}


/* banner */

/* Yoga Teacher Start */

.yoga_teacher {
    padding: 22px 0 31px 0;
}

.yoga_teacher .item {
    overflow: hidden;
    padding: 20px 10px;
}

.yoga_teacher .teacher_img {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.yoga_teacher .teacher_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: top;
}

.yoga_teacher .item .teacher_details {
    position: relative;
    background: var(--primary-color);
    border-radius: 20px;
    width: 80%;
    text-align: center;
    margin-bottom: 0;
    padding: 10px;
    margin-top: -15px;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.yoga_teacher .item .teacher_details .teacher_name {
    color: var(--secondary-color);
    font-family: 'Gabarito';
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.yoga_teacher .item .teacher_details .teacher_desig {
    color: #fff;
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
}

.yoga_teacher .item .teacher_content {
    position: relative;
    background: var(--text-light);
    border-radius: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    padding: 30px 20px 20px;
    margin-top: -20px;
    z-index: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
}

.yoga_teacher .item .teacher_content .teacher_description {
    color: #000;
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: justify;
    margin-bottom: 0;
}

@media only screen and (max-width:767px) {
    .yoga_teacher .teacher_img {
        height: 200px;
        width: 200px;
    }

    .yoga_teacher .item .teacher_details .teacher_desig {
        font-size: 14px;
    }

    .yoga_teacher .item .teacher_content .teacher_description {
        font-size: 14px;
    }
}

/* Yoga Teacher End */