.licenses {
    margin-top: 40px;
}
.licenses__container {
}
.licenses__title {
    margin-bottom: 40px;
}
.licenses__items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.license {
    width: calc(100% / 3 - 20px);
    position: relative;
    background-color: #F55F89;
}
.license::after{
    content: "";
    display: block;
    padding-top: 150%;
}
.license img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 900px) {
    .license {
        width: calc(50% - 15px);
    }
}

@media(max-width: 500px) {
    .license {
        width: 100%;
    }
}