@import url('common.css');

.func-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    position: relative;
    gap: 50px;
}
.func-item>div:nth-child(1){
    width: 53px;
    height: 53px;
    background: #3286FF;
    border-radius: 6px 0 6px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}
.func-item:nth-child(3n+2)>div:nth-child(1){
    background: #08A1FC;
}
.func-item:nth-child(3n+3)>div:nth-child(1){
    background: #00E0E0;
}
.func-item>div:nth-child(2){
    flex:1;
}
.func-item h3{
    text-align: left;
    font: normal normal bold 22px/26px SF UI Text;
    letter-spacing: 0px;
    color: #2B3133;
    margin: 0 0 20px 0;
}
.func-item>div>div{
    text-align: left;
    font: normal normal normal 16px/19px SF UI Text;
    letter-spacing: 0px;
    color: #2B3133;
}

.func-item{
    margin-bottom: 81px;
}
.func-item:last-child{
    margin-bottom: 0;
}

.func-item-container{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    position: relative;
}

@media (max-width: 500px)  {
    .func-item {
        gap:20px;
        flex-direction: column;
    }
    .func-item>img {
        margin-right: 0;
    }

    .sops-card {
        width: calc(100% - 10px);
    }
    .two.column>div:first-child {
        margin-right: 0;
    }
    .gradient {
        min-width: 0;
        width: calc(100% - 10px);
        padding: 20px;
    }
}

@media (max-width: 1100px)  {
    .func-item-container{
        padding-right: 0;
    }
}