.img_section {
    position: relative;
    min-height: 490px;
    z-index: -1;

    @media #{$mobile} {
        min-height: 410px;
    }

    .about_img_1 {
        position: absolute;
        bottom: 35px;
        z-index: -2;
        left: 30px;

        @media #{$mobile} {
            bottom: 52px;
            left: 30px;
            max-width: 250px;
        }

        @media #{$tab_device} {
            left: 30px;
            max-width: 300px;
        }
    }

    .about_img_1 {
        position: absolute;
        bottom: -25px;
        z-index: -1;
        left: -67px;

        @media #{$mobile} {
            bottom: 62px;
            left: 30px;
            max-width: 250px;
        }

        @media #{$tab_device} {
            left: -62px;
            max-width: 300px;
        }
    }

    .about_img_2 {
        @media #{$xs_mobile} {
            max-width: 235px;
        }
    }

    .about_img_3 {
        position: absolute;
        top: 160px;
        right: 0;
        z-index: 1;

        @media #{$mobile} {
            max-width: 250px;
            right: 0;
            top: 108px;
        }

        @media #{$tab_device} {
            right: -70px;
            top: 167px;
        }
        @media #{$tab_device} {
            right: -70px;
            top: 60px;
        }
    }
}

.about_section_img {
    display: flex;
    max-width: 540px;

    .about_us_img {
        position: relative;
        margin-right: 30px;
        z-index: 1;
        margin-top: 50px;
    
        &:last-child {
            margin-top: 70px;
            @media #{$tab}{
                margin-top: 10px;
            }
        }
    
        .about_img_shape {
            position: absolute;
            position: absolute;
            left: -45px;
            top: -15px;
            z-index: -1;
        }
    
        .round_shape_animation {
            border-radius: 50%;
            background: #acf2f0;
            position: absolute;
            left: -45px;
            bottom: -70px;
            width: 110px;
            height: 110px;
            -webkit-animation: circleAnimation 5s linear infinite;
            animation: circleAnimation 5s linear infinite;
            z-index: -1;
            @media #{$tab}{
                bottom: -30px;
            }
        }
    
    }
}

.round_shape_animation {
    border-radius: 50%;
    background: #85b0fc;
    position: absolute;
    right: 95px;
    top: 60px;
    width: 190px;
    height: 190px;
    -webkit-animation: circleAnimation 5s linear infinite;
    animation: circleAnimation 5s linear infinite;
    z-index: -1;
}

.about_img {
    position: relative;
    z-index: 1;
    max-width: 475px;
    margin-left: auto;

    @media (max-width: 1440px) {
        margin-left: 40px;
    }

    @media (max-width: 1280px) {
        margin-left: 20px;
    }

    @media (min-width: 992px) and (max-width: 1200px) {
        max-width: 350px;
    }

    @media (max-width: 1280px) {
        margin-left: 0;
    }

    .about_overlay {
        position: absolute;
        right: -150px;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;

        @media (max-width: 1440px) {
            right: -100px;
        }

    }
    
}