/* About Page custom Content */
.custom-section-content {
    .section-content-wrapper.section-content-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 0;
        justify-content: flex-start;
        max-width: 1000px;
        margin: 0 auto; 

        .image-block {
            flex: 0 0 auto;
            width: 195px;
            text-align: center;
            padding: 0 20px;

            img { object-fit: contain; position: relative; transform: translateY(-65%) }

            &:nth-child(3) img { transform: translateY(125%); }
            &:nth-child(1) img { transform: none; }
        }

        .text-block { 
            flex: 0 0 auto; 
            width: calc(100% - 390px); 
            padding-top: 80px;
            
            p { margin: 0 auto 25px auto; text-align: center; }
        }
    }
}

@media (max-width: 767px) {
    .custom-section-content .section-content-wrapper.section-content-wrapper {
        position: relative;
        overflow: hidden;

        .image-block {
            flex: 0 0 auto;
            width: 100%;
            padding: 0 33vw 40px 33vw;
            transform: translateX(20%);

            img { transform: none !important; }
            &:nth-child(1) { transform: none; }
            &:nth-child(3) { position: absolute; bottom: 0; transform: translateX(-20%); }
        }

        .text-block { width: 100%; padding-top: 0; }
    }
}