.company-info__title{
    margin-bottom: 40px;
}
.company-info__list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.company-info__item{
    width: calc(25% - 12px);
    min-width: 200px;
}

.company-info__img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 156px;
    min-width: 100px;
    height: 156px;
    border-radius: 50%;
    background: #F1FDFF;
    box-shadow: 3px 1px 3px #F2F9FA, 6px 6px 7px #FFFFFF, 9px 8px 7px #F2F9FA, inset -2px -8px 13px #FFFFFF, inset 0px 4px 10px #C9F8FF;
    transition: all linear .15s;
}

.company-info__img:hover {
    background: rgba(244, 119, 53, 0.1);
    box-shadow: 3px 1px 3px #F2F9FA, 6px 6px 7px #FFFFFF, 9px 8px 7px #F2F9FA, inset -2px -8px 13px #FFFFFF, inset 0px 4px 10px rgba(244, 119, 53, 0.1);
    transition: all linear .15s;
}
.company-info__img:hover path {
    stroke: var(--orange-color);
    transition: all linear .15s;
}
.company-info__content{
    margin-top: 40px;
}
.company-info__name{
    margin-bottom: 16px;
}
.company-info__text{
    padding-right: 10px;
}
.company-info__btn{
    margin-top: 40px;
}

@media screen and (min-width:1024px) {
    .company-info__title-90{
        width: 90%;
    }
}

.company-info__item--horizontal{
    width: calc(50% - 12px);
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.company-info__item--horizontal .company-info__img{
    width: 50px;
    min-width: 50px;
    height: 50px;
    box-shadow: 0.846154px 0.282051px 0.846154px #F2F9FA, 1.69231px 1.69231px 1.97436px #FFFFFF, 2.53846px 2.25641px 1.97436px #F2F9FA, inset -0.564103px -2.25641px 3.66667px #FFFFFF, inset 0px 1.12821px 2.82051px #C9F8FF;
}
.company-info__item--horizontal .company-info__img svg{
    width: 24px;
    height: 24px;
}
.company-info__item--horizontal .company-info__content {
    margin-left: 16px;
    margin-top: 0;
}
.company-info__item--horizontal .company-info__content p{
    font-size: 14px;
}

@media screen and (max-width:880px) {
    .col-md-6 .company-info__item--horizontal{
        min-width: 130px;
    }
}

@media screen and (max-width:768px) {
    .company-info__list{
        gap: 0px;
    }
    .company-info__item {
        width: calc(50% - 12px);
        margin-bottom: 24px;
        text-align: center;
    }
    .company-info__img{
        height: 120px;
        width: 120px;
        margin-inline: auto;
    }
    .company-info__item--horizontal .company-info__img{
        margin: 0;
    }
    .company-info__item--horizontal{
        text-align: left;
    }
}
@media screen and (max-width:500px) {
    .company-info__item {
        width: 100%;
        display: flex;
        text-align: left;
    }
    .company-info__item--align{
        align-items: center;
    }
    .company-info__img{
        height: 100px;
        width: 100px;
        margin: 0;
    }
    .company-info__img svg{
        height: 30px;
    }
    .company-info__content {
        margin-top: 0;
        margin-left: 24px;
    }
    .company-info__name{
        margin-bottom: 8px;
    }
    .company-info__btn {
        margin-top: 20px;
    }
    .company-info__item--horizontal .company-info__content p{
        font-size: 12px;
    }
}

@media screen and (min-width: 1280px) {
    .company-info__list--middle .company-info__item {
        width: calc(19% - 12px);
    }

    .company-info__list--middle .company-info__img {
        height: 120px;
        width: 120px;
    }

    .company-info__list--middle .company-info__content {
        font-size: 12px;
        margin-top: 24px;
    }
}