.main {
    margin: 20px auto;
}

.team {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.box {
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 15px 20px;
    position: relative;
}

.flag {
    width: 25px;
    position: absolute;
    top: 15px;
    left: 20px;
}

.prof {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 6px;
    object-fit: cover;
}

.box>.name {
    font-weight: 700;
    font-size: 22px;
}

.box>.alias {
    font-size: 14px;
    color: rgb(110, 110, 110);
}

.box>hr{
    width: 80px;
    margin: 12px auto;
}

.box>.roles {
    font-size: 15px;
    line-height: 20px;
    color: rgb(60, 60, 60);
}

.partners {
    display: grid;
    grid-gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    margin-bottom: 30px;
}

.partner-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    background-color: white;
    padding: 20px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease-in-out;
}

.partner-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 8px 1px rgba(0, 0, 0, 0.1);
}

.partner-box>a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.partner-box>img {
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.partner-box>.title {
    font-size: 20px;
    font-weight: 700;
}