.approach-section .wrapper {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.approach-section h2 {
    margin: 0;
}

.approach-section .wrapper .col-item {
    padding-left: 15px;
    padding-right: 15px;
    width: 33.33%;
    margin-top: 40px;
}

.approach-section .wrapper .col-item .item-box {
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    overflow: hidden;
    padding: 20px 26px;
    text-align: center;
    color: var(--brown);
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.approach-section .wrapper .col-item .item-box h6 {
    font-family: var(--body-font);
}

.approach-section .wrapper .col-item .item-box *:not(.btn) {
    color: var(--brown);
}

.approach-section .wrapper .col-item .item-box .icon {
    background: #F7F3F0;
    border-radius: 100%;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.approach-section .wrapper .col-item .item-box:hover .icon {
    background: var(--brown);
}

.approach-section .wrapper .col-item .item-box:hover .icon img {
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .approach-section .wrapper .col-item {
        width: 50%;
    }

    .approach-section .wrapper .col-item {
        margin-top: 30px;
    }

    .approach-section .wrapper .col-item .item-box {
        border-radius: 15px;
        padding: 20px 15px;
    }
}

@media (max-width: 575px) {
    .approach-section .wrapper .col-item {
        width: 100%;
    }
}