.section-title {
    color: #9d6637;
    font-weight: 800;
    position: relative;
    margin: 0 auto 70px;
    font-size: 2rem;
    width: fit-content;
}

.section-title::after {
    content: "";
    position: absolute;
    left: -270px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    border: 1px solid rgba(108, 66, 34, 0.6);
}
.section-title::before {
    content: "";
    position: absolute;
    right: -270px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    border: 1px solid rgba(108, 66, 34, 0.6);
}


.partners{
    padding: 200px 10px 100px;
    min-height: 100vh;
    background-image: url("/front/images/partners-page-background.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.partners .partners-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    row-gap: 70px;
    column-gap: 100px;
    width: 90vw;
    margin: auto;
}
.partners .partners-grid .partner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partners .partners-grid .partner img{
    width: 120px;
    height: 120px;
}
.partners .partners-grid .partner h3{
    color: #6C4222;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
}

.partners + footer{
    display: none;
}


@media screen and (max-width: 991px) {
    .section-title {
        font-size: 1.5rem;
        margin: -20px auto 70px;
    }
    .section-title::after {
        left: -110px;
        width: 90px;
    }
    .section-title::before {
        right: -110px;
        width: 90px;
    }


    .partners .partners-grid {
    }
    .partners .partners-grid .partner {

    }

}
