.container {
    font-family: "Public sans", sans-serif;
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading {
    color: #012237;
    font-size: 54px;
    font-weight: 900;
}
.sub_heading {
    color: #333;
    font-weight: 500;
    margin: 30px 0px;
}

.btn {
    background: #f16101;
    border: none;
    outline: none;
    font-family: inherit;
    color: #fff;
    padding: 20px 60px;
    font-weight: 500;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 30px;
}

.features {
    display: flex;
}

.feature {
    display: flex;
    align-items: center;
}

.feature p {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.content {
    width: calc(100% - 550px);
}

.graphic {
    position: relative;
    height: 500px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: url("/static/images/mecat/about.jpg") no-repeat center
        center/cover;
}

.graphic::after {
    position: absolute;
    content: "";
    height: 50%;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 20px solid #fff;
}

.graphic::before {
    position: absolute;
    content: "";
    top: 0px;
    left: -25px;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid #f16101;
    z-index: -1;
}

.graphic_main {
    position: absolute;
    left: -30px;
    bottom: -30px;
    background: #fff;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
.graphic_head {
    font-size: 14px;
    color: #9f9f9f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.number {
    margin-top: 5px;
    font-size: 28px;
    font-weight: 500;
    color: #f16101;
}

@media screen and (max-width: 950px) {
    .container {
        flex-direction: column;
    }
    .content {
        width: 100%;
    }
    .features {
        justify-content: space-between;
    }
    .feature {
        width: 48%;
    }
    .graphic {
        margin-top: 40px;
        height: 350px;
        width: 350px;
    }
    .graphic_main {
        left: -35px;
        bottom: -35px;
        height: 150px;
        width: 150px;
    }
    .graphic_head {
        font-size: 14px;
    }
}

@media screen and (max-width: 550px) {
    .heading {
        font-size: 38px;
    }
}
