ÿØÿÛ C 

ÿØÿÛ C 

@import "../scss/variable.scss";

.about-section {
    .about-left {
        .about-1 {
            height: 300px;

            img {
                border-radius: 10px 10px 10px 10px;
            }
        }

        .about-content-box {
            margin-top: 24px;
            margin-left: 60px;
            border-radius: $border-radius;

            @media (max-width: 767px) {
                margin-left: 0;
                margin: 20px 0;
            }
        }

        .about-content {
            width: 100%;
            height: 245px;
        }

        .about-2 {
            height: 320px;

            img {
                border-radius: 10px 10px 10px 10px;
            }
        }
    }

    .about-right {
        li {
            position: relative;
        }

        li::before {
            position: absolute;
            content: "";
            top: 14px;
            left: -25px;
            height: 3px;
            width: 15px;
            background: $primary;
            display: inline-block;
            margin: auto;
        }
    }
}

.success-stories-section {
    .success-stories-content {
        border-radius: $border-radius;

        .stories-img {
            width: 100%;
            height: 275px;
            border-radius: $border-radius;

            @media (max-width: 480px) {
                height: 200px;
            }
        }
    }
}
