#teachers-container {
    margin: 140px 0;
    width: 100%;
    max-width: 1920px;
}
#teachers-container .wrapper {
    margin: 0 auto 0;
    width: calc(100% - 2rem);
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
#teachers-container .card {
    display: flex;
    gap: 30px;
    border: 1px solid var(--primary);
    padding: 30px;
    padding-bottom: 60px;
    position: relative;
}
#teachers-container .card::before {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: '';
    height: 25px;
    border-top: 3px dashed var(--fifth-color);
}
#teachers-container .card::after {
    position: absolute;
    left: -0.8px;
    right: -2px;
    bottom: -20px;
    content: '';
    height: 30px;
    background-color: var(--fifth-color);
}
#teachers-container .card img {
    max-width: 280px;
    border: 2px solid var(--primary);
}
#teachers-container .card .info-teacher {
    display: flex;
    flex-direction: column;
}
#teachers-container .card .info-teacher h3 {
    font-size: 36px;
    color: var(--primary);
}
#teachers-container .card .info-teacher h4 {
    font-size: 16px;
    margin-top: 10px;
    color: var(--gray-1);
    font-weight: 600;
}
#teachers-container .card .info-teacher p {
    font-size: 20px;
    margin-top: 30px;
    line-height: 30px;
}
@media (max-width: 1000px) {
    #teachers-container .card {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 610px) {
    #teachers-container .card .info-teacher h3 {
        font-size: 32px;
    }
    #teachers-container .card .info-teacher h4 {
        font-size: 14px;
    }
    #teachers-container .card .info-teacher p {
        font-size: 18px;
    }
}
@media (max-width: 500px) {
    #teachers-container .wrapper {
        width: calc(100% - 1rem);
    }
    #teachers-container .card {
        padding-left: 15px;
        padding-right: 15px;
    }
    #teachers-container .card .info-teacher {
        text-align: center;
    }
    #teachers-container .card .info-teacher h4 {
        font-size: 12px;
    }
    #teachers-container .card .info-teacher p {
        font-size: 16px;
    }
}