.icons_with_text {
    background-color: #F5F6F8;

    & .icons_with_text_arrows {
        display: none;
        gap: 12px;
        align-items: center;
        justify-content: center;
        margin-top: 24px;

        &.is_active {
            display: flex;
        }

        & .slick-prev,
        & .slick-next {
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #1B1788;
            border: none;
            padding: 0;
            margin: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;

            &:before {
                display: none;
            }

            & svg {
                width: 36px;
                height: 36px;
                display: block;
            }

            & .circle-path {
                fill: #1B1788;
                stroke: none;
            }

            & .arrow-path {
                fill: #fff;
            }

            &.slick-disabled {
                cursor: not-allowed;
                background: transparent;

                & .circle-path {
                    fill: none;
                    stroke: #DCDCDC;
                    stroke-width: 1;
                }

                & .arrow-path {
                    fill: #DCDCDC;
                }
            }
        }
    }

    & .enable_4_column {
        grid-template-columns: repeat(4, 1fr)!important;
        gap: 40px!important;
        & span {
            margin-bottom: 0px!important;
            margin-top: 0px!important;
        }
    }
    & .enable_5_column {
        grid-template-columns: repeat(5, 1fr)!important;
        gap: 30px!important;
        & span {
            margin-bottom: 0px!important;
            margin-top: 0px!important;
        }
        & .icon_image {
            width: 69px!important;
            height: 69px!important;
            position: relative;
            top: 20px;
        }
        &  .icon_with_text .content {
            padding: 0 20px!important;
            min-height: 150px!important;
        }
        & .icon_with_text .content p {
            font-size: 16px!important;
        }
    }
    & .sub_title {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #1B1788;
        margin-bottom: 15px;
    }
    & h2 {
        margin-bottom: 80px;
        margin-top: 0;
        text-align: center;
        color: #002446;
    }
    & .content {
        margin-top: 0;
        text-align: center;
    }
    & .container.enable_5_column {
        max-width: 1600px!important;
    }
    & .icons_with_text_inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        & .icon_with_text_inner {
            position: relative;
            padding-top: 35px;
            
            & .icon_with_text {
                background: #FFFFFF;
                border-radius: 5px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                min-height: 250px;
                padding: 50px 24px 32px;
                gap: 16px;
                
                & .icon_image {
                    width: 70px;
                    height: 70px;
                    background: #1B1788;
                    border-radius: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 16px;
                    position: absolute;
                    top: -5px;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: 2;
                    & img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
                & .content {
                    min-height: auto;
                    & p {
                        font-size: 16px;
                        line-height: 1.6;
                        color: #505050;
                        text-align: center;
                        margin-bottom: 0;
                        margin-top: 0;
                        max-width: 100%;
                    }
                }
                & span {
                    font-style: normal;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 1.3;
                    text-align: center;
                    letter-spacing: 0;
                    color: #0A3956;
                    text-transform: none;
                    display: block;
                    margin-bottom: 0;
                    margin-top: 0;
                }
               
            }
        }
    }
}
@media (max-width: 991px) {
    & .icons_with_text_inner {
        display: block!important;
    }
    & .slider_blocks .slick-list {
        padding-top: 35px;
    }
    & .slider_blocks .slick-slide {
        padding-left: 12px!important;
        padding-right: 12px!important;
    }
    & .icon_with_text span {
        max-width: 300px!important;
    }
}
@media (max-width:1024px) { 
    & .icons_with_text_inner.enable_4_column {
     grid-template-columns: repeat(2, 1fr)!important;
     gap: 30px!important;
   }
   & .icon_with_text_inner {
       padding-top: 30px!important;
   }
   & .icon_image {
    width: 60px!important;
    height: 60px!important;
    top: -5px!important;
    padding: 12px!important;
    & img {
        width: 100%!important;
        height: 100%!important;
    }
   }
   & .icon_with_text {
    padding: 40px 20px 28px!important;
    gap: 12px!important;
    & span {
        max-width: 100%;
        font-size: 16px!important;
    }
   }
}
@media (max-width:767px) {
    & .icon_with_text {
     & span {
         max-width: 100%;
     }
    }
 }
 @media (max-width: 640px) {
    & .icon_with_text_inner {
        padding-top: 28px!important;
    }
    & .icon_image {
        width: 56px!important;
        height: 56px!important;
        top: -5px!important;
        padding: 12px!important;
        & img {
            width: 100%!important;
            height: 100%!important;
        }
    }
    & .icon_with_text {
        padding: 38px 20px 24px!important;
        gap: 12px!important;
    }
    & .icon_with_text span {
        font-size: 16px!important;
    }
    & .icon_with_text .content p {
        font-size: 14px!important;
    }
 }

