.apply-section {
    position: relative;
    background-color: var(--green-100);
}

.apply-section .row {
    align-items: center;
    row-gap: 32px;
}

.apply-section__teacher-content {
    position: relative;
    overflow: hidden;
}

.apply-section__teacher-holder {
    position: relative;
    overflow: hidden;
    padding-top: 100%;

    border-radius: 50%;
}

.apply-section__teacher-image-wrapper {
    width: 560px;
    max-width: 100%;
    margin-inline: auto;
}

.apply-section__image-holder {
    position: absolute;
    inset: 0;
    width: 110%;
    height: 110%;
    object-fit: cover;
}

.apply-section__teacher-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply-section__teacher-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

.apply-section__teacher-content-info {
    background-color: var(--white);
    border-radius: 24px;
    padding: 24px 32px;

    max-width: calc(100% - 48px);
    width: calc(100% - 48px);
    margin-inline: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    @media screen and (min-width: 575.8px) {
        width: min-content;
        min-width: 400px;
        padding: 24px 32px;
    }

}

.apply-section__teacher-content-info .teacher-name {
    font-size: 14px;
    line-height: 100%;
    font-weight: 700;
    width: 100%;
    flex-basis: 100%;
    @media screen and (min-width: 575.8px) {
        font-size: 24px;
    }
}

.apply-section__teacher-content-info .teacher-experience {
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    width: 100%;
    flex-basis: 100%;
    @media screen and (min-width: 575.8px) {
        font-size: 18px;
    }
}

.apply-section__teacher-content-info .teacher-position {
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    width: 100%;
    flex-basis: 100%;
    @media screen and (min-width: 575.8px) {
        font-size: 18px;
    }
}

.apply-section__text-content .text {
    margin-bottom: 32px;
}

.apply-section__text-content .text ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.apply-section__text-content .text ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--grey-100);
    width: 100%;
    flex-basis: 100%;
    padding-left: 40px;
    position: relative;
}

.apply-section__text-content .text ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url("./assets/images/checkbox.svg");
}

.apply-section__text-content .cta-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    @media screen and (min-width: 575.8px) {
        justify-content: flex-start;
    }
}

.apply-section__text-content .cta-button a {
    width: 100%;
    text-align: center;
    @media screen and (min-width: 575.8px) {
        width: auto;
    }
}