

.summary {
    background-color: #F2F8FC;
    margin-bottom: 60px;
    padding: 24px;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.summary>div {
    width: 34%;
    text-align: right;
    line-height: 175%;
    color: #000000;
}

.summary a {
    text-align: left;
    width: 100%;
}



.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.logos>div {
    width: calc((100% - 36px) / 4);
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}
.logos>div a{
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.logos>div a *{
    color: #285FBB;
}

.logos>div .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin-bottom: 1em;
}
.logos>div .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 150px;
}

.logos .name {
    /* height: 70px; */
    text-align: center;

    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logos>div>.name{
    padding: 0 16px;
}

.second_content {

    line-height: 150%;
    color: #000000;
}


@media screen and (max-width: 767.5px) {
    .summary{
        margin-bottom: 25px;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    .summary>div {
        width: auto;
    }

    .logos{
        gap: 1%;
        margin-bottom: 0;
    }
    .logos>div{
        width: 49%;
        margin-bottom: 1%;
    }

    .logos>div .logo {
        height: 70px; 
    }
    .logos>div .logo img{
        max-width: 100px;
    }
}