#teachers {
    width: 100%;
    background: #f4f4f4;
    position: relative;
    z-index: 2;
}

.teachers {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.teachers-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.teachers-title h1 {
    font-size: 3rem;
    color: #111;
    margin: 0;
}

.teachers-title span {
    font-size: 1.75rem;
    font-weight: 300;
    color: #111;
    margin: 0;
}

.teachers-statistics-container {
    width: 100%;
}

.teachers-statistics {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.teachers-line-1 {
    width: 50%;
    height: 3px;
    fill: #ae0000;
    margin-bottom: 30px;    
}

.teachers-line-2 {
    width: 30%;
    height: 3px;
    fill: #ae0000;
    margin-top: 30px;  
}

.teachers-statistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 100px;
    row-gap: 40px;
}

.teachers-statistics-bk {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teachers-statistics-text {
    font-size: 3.25rem;
    color: #ae0000;
}

.teachers-statistics-title {
    color: #111;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .teachers {
        width: 90%;
        padding: 60px 0;
        gap: 30px;        
    }
 
    .teachers-line-1,
    .teachers-line-2 {
        margin: 0;
    }

    .teachers-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
}    
}