.team-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    width: 100%;
}

.team-left h1 {
    font-size: 34px;
    line-height: 45px;
    margin: 0;
}

.team-left p {
    font-size: 20px;
    line-height: 28px;
    margin-top: 29px;
}

.bold-text {
    font-size: 90px;
    line-height: 62px;
    font-weight: 800;
    margin: 0;
    color: #2B318A;
}

.text-optional {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0;
}

.team-right img {
    width: 100%;
}

@media (max-width: 1200px) {
    .team-left h1 {
        font-size: 36px;
        line-height: 48px;
    }
    
    .team-left p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .team-left img {
        max-width: 380px;
    }
}

@media (max-width: 992px) {
    .team-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-left h1 {
        font-size: 32px;
        line-height: 42px;
    }
    
    .team-left p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .team-left img {
        margin-top: 30px;
        max-width: 100%;
    }
    
    .team-right img {
        margin-left: 0;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .bold-text {
        font-size: 70px;
        line-height: 52px;
    }
    
    .text-optional {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .team-left h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .bold-text {
        font-size: 60px;
        line-height: 46px;
    }
    
    .text-optional {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .team-container {
        margin-top: 30px;
    }
    
    .team-left h1 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .team-left p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 15px;
    }
    
    .bold-text {
        font-size: 50px;
        line-height: 40px;
    }
    
    .text-optional {
        font-size: 16px;
        line-height: 22px;
    }
    
    .team-left img {
        margin-top: 20px;
    }
    
    .team-right img {
        margin-top: 20px;
    }
}

.about-container {
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.about-border {
    border: 1px solid #5C84FB;
    border-radius: 15px;
    flex: 1 1 300px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-border p {
    font-size: 20px;
    line-height: 28px;
    margin: 30px 36px 34px 36px;
}

.about-border p:last-child {
    margin-top: 0;
}

.about-border img {
    margin-top: 34px;
    filter: brightness(0%);
}

@media (max-width: 1024px) {
    
    .about-border {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .about-border p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 600px) {
    
    .about-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .about-border {
        flex: 1 1 100%;
    }
    
    .about-border p {
        margin: 20px;
        font-size: 16px;
        line-height: 24px;
    }
    
    .about-border img {
        margin-left: 20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .about-border p {
        font-size: 15px;
        line-height: 22px;
    }
}

.about-page .consult {
    background: none;
}

.about-page .grid-colums {
    border: 1px solid #5C84FB;
    border-radius: 15px;
}