.div_for_main_of_about_us_of_looplane_that_created_by_anirban {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            /* align-items: center; */
            justify-content: center;
            gap: 40px;
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
            padding: 60px 20px;
        }

        .div_for_left_side_under_about_us_of_looplane {
            width: 50%;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .div_for_first_div_under_left {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .div_for_upper_image_of_first_div_under_left {
            height: 380px;
            width: 100%;
        }

        .div_for_upper_image_of_first_div_under_left img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        .div_for_upper_image_of_second_div_under_left {
            height: 240px;
            width: 100%;
        }

        .div_for_upper_image_of_second_div_under_left img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        .div_for_second_div_under_left {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        .div_for_right_side_under_about_us_of_looplane {
            height: 180px;
            width: 100%;
            background-color: #0b0d17;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-radius: 4px;
        }

        .div_for_right_side_under_about_us_of_looplane h2 {
            font-size: 50px;
            margin: 0;
            font-weight: bold;
        }

        .div_for_right_side_under_about_us_of_looplane h2 span {
            background: linear-gradient(331deg, #0bbcd6, #FC1CB2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .div_for_right_side_under_about_us_of_looplane p {
            margin: 5px 0 0;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .div_for_main_of_right_side {
            width: 55%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .div_for_heading_on_top_under_aboyt_us_of_looplane {
            background: linear-gradient(331deg, #0bbcd6, #FC1CB2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .div_for_2nd_main_heading_under_right_side {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            color: #0b0d17;
        }

        .div_description_under_right_side_under_about {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin: 10px 0;
        }

        .div_for_left_side_key_point_main {
            display: flex;
            gap: 20px;
            margin: 15px 0;
        }

        .div_for_left_key_point_sub1,
        .div_for_left_key_point_sub2 {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .div_for_key_point1,
        .div_for_key_point2 {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
        }

        .div_for_key_point1::before,
        .div_for_key_point2::before {
            /* content: ""; */
            /* color: #ff5e3a; */
            margin-right: 10px;
            font-weight: bold;
        }

        .btn_for_about_us_bottom {
            margin-top: 20px;
            height: 45px;
            width: 167px;
            font-size: 15px;
            background: var(--background-linear-gradient);
            color: white;
            border: none;
            font-weight: bold;
            cursor: pointer;
            border-radius: 4px;
            transition: 0.3s;
            text-transform: uppercase;
        }
        .bold{
            color: var(--blue-color);
            font-size: 21px;
            font-weight: 600;
        }

        /* 
        .btn_for_about_us_bottom:hover {

        } */

/* <-------------------media-query------start------------------> */
        @media (max-width: 992px) {
            .div_for_main_of_about_us_of_looplane_that_created_by_anirban {
                flex-direction: column;
                padding: 40px 0px;
            }

            .div_for_left_side_under_about_us_of_looplane,
            .div_for_main_of_right_side {
                width: 100%;
            }

            .div_for_2nd_main_heading_under_right_side {
                font-size: 32px;
            }
        }

        @media (max-width: 600px) {
            .div_for_left_side_under_about_us_of_looplane {
                flex-direction: column;
            }

            .div_for_first_div_under_left,
            .div_for_second_div_under_left {
                width: 100%;
                margin-top: 0;
            }

            .div_for_upper_image_of_first_div_under_left {
                height: 250px;
            }

            .div_for_left_side_key_point_main {
                flex-direction: column;
                gap: 10px;
            }

            .div_for_left_key_point_sub1,
            .div_for_left_key_point_sub2 {
                width: 100%;
            }

            
        }