#brxe-zoeijf .student-cards-section {
    padding-inline: 0px
}
#brxe-zoeijf .student-cards-section .conatiner {
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1200px)
{
    #brxe-zoeijf .student-cards-section .student-cards .student-card {
        width: 100%;
    }
    #brxe-zoeijf .student-cards-section .student-cards .student-card:nth-child(odd) {
        margin-right: 0px;
    }
    #brxe-zoeijf .student-cards-section .student-cards .student-card:nth-child(even) {
        margin-left: 0px;
    }
}

.student-cards-section {

}

.student-cards-section .conatiner {
    max-width: 1440px;
    margin: 0 auto;
}

.student-cards-section .student-cards-top-block .student-cards-title {
    font-size: var(--h2);
    font-weight: 500;
    margin-bottom: var(--space-s);
}

.student-cards {
    display: flex;
    flex-wrap: wrap;
}
.student-cards .student-card {
    width: calc(50% - 10px);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #001A52;
    margin-bottom: 20px;
}

.student-cards .student-card:nth-child(odd) {
    margin-right: 10px;
}

.student-cards .student-card:nth-child(even) {
    margin-left: 10px;
}

@media (max-width: 1024px)
{
    .student-cards .student-card {
        width: 100%;
    }
    .student-cards .student-card:nth-child(odd) {
        margin-right: 0px;
    }
    .student-cards .student-card:nth-child(even) {
        margin-left: 0px;
    }
}

.student-card .student-card-top {
    display: flex;
    align-items: center;
}

.student-card .student-card-img-block {
    width: 108px;
    margin-right: 20px;
    position: relative;
}
.student-card .student-card-img-block img.student-card-img-country {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 30px;
    height: 24px;
    object-fit: fill;
    border: 2px solid white;
    border-radius: 4px;
}
.student-card .student-card-img-block img.student-card-img-photo {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
}

.student-card .student-card-about {

}

.student-card .student-card-about .student-card-name {
    font-family: "HW Cigars";
    font-size: clamp(1.9rem, calc(0vw + 1.9rem), 1.9rem);;
    line-height: 2.25rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.student-card .student-card-about .student-card-program {
    font-family: "Suisse Int’l";
    font-size: clamp(1.2rem, calc(0.17857143vw + 1.14285714rem), 1.4rem);
    line-height: 1.375rem;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: manual;
    margin-top: 1rem;
}

.student-card .student-card-about .student-card-email {
    font-family: "Suisse Int’l";
    font-size: clamp(1.2rem, calc(0.17857143vw + 1.14285714rem), 1.4rem);
    line-height: 1.375rem;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: manual;
}

.student-card .student-card-bottom {
    margin-top: 16px;
}

.student-card .student-card-bottom .student-card-linkedin {
    padding: 6px 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #001A52;
    color: #FFF;
    border: 2px solid #001A52;
    border-radius: 10px;
    transition: all 0.3s linear;
}
.student-card .student-card-bottom .student-card-linkedin:hover {
    background-color: #FFF;
    color: #001A52;
}