.container {
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}
.organization {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.org-item {
    width: calc(10% - 9px);
    margin-bottom: 20px;
    text-align: center;
    padding: 0 11px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease-out;
    background-color: #FFFFFF;
    padding: 10px;
    margin-right: 10px;

}
.organization .org-item:nth-child(10n) {
    margin-right: 0;
}
.org-item:hover {
    transform: scale(1.1);
}
.org-item:hover .org-text {
    color: #165fd3;
}

.org-img {
    height: 65px;
    line-height: 65px;
}
.org-img img {
    object-fit: cover;
}
.org-text {
    font-size: 12px;
    line-height: 14px;
    color: #000000;
}
@media screen and (max-width: 550px) {
    .container {
        width: 100%;
    }
    .org-item {
        width: calc(33% - 10px);
        margin-right: 0;
        margin-right: 10px;
    }
    .organization .org-item:nth-child(3n){
        margin-right: 0;
    }
}