.container {
    font-family: "Public sans", sans-serif;
    color: #fff;
    padding: 30px 0px;
    display: none;
    background: var(--secondary-color);
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
}
.heading p {
    position: relative;
    font-size: 32px;
    text-transform: uppercase;
    display: inline-block;
}
.heading p::after {
    position: absolute;
    content: "";
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: calc(100% + 120px);
    background: var(--gradient);
    border-radius: 3px;
}

.main {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.about {
    display: flex;
    justify-content: space-between;
    width: 48%;
}
.about_1 {
    border-right: 1px dashed #fff;
}
.about_2 {
    flex-direction: row-reverse;
    width: 50%;
}

.about_head {
    background: var(--gradient);
    padding: 100px 0px;
    width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_1 .about_head {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.about_2 .about_head {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.about_head_container {
    padding: 0px 20px;
    width: 90%;
    margin: auto;
}

.about_head_container img {
    width: 80px;
    margin-bottom: 20px;
}
.about_head_container p {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.8rem;
    text-transform: uppercase;
}

.about_main {
    width: 55%;
}

.about_main p {
    margin-bottom: 25px;
    font-weight: 700;
}
/* .about_main p:nth-child(2) {
} */
.about_main ul {
    margin-left: 20px;
}
.content_p {
    width: 90%;
    margin: 0px auto 25px auto;
    text-align: center;
    line-height: 1.4rem;
    max-width: 750px;
}

@media screen and (max-width: 1000px) {
    .container {
        display: block;
    }
    .main {
        flex-direction: column;
    }
    .about_1 {
        border: none;
    }
    .about {
        width: 90%;
        max-width: 750px;
        flex-direction: column;
        margin: 0px auto 20px auto;
    }
    .about_head {
        padding: 20px;
        width: 100%;
        text-align: center;
    }
    .about_head_container img {
        margin: 0px 0px 15px 0px;
    }
    .about_1 .about_head {
        border-radius: 8px;
    }
    .about_2 .about_head {
        border-radius: 8px;
    }
    .about_main {
        width: 100%;
        margin: 30px auto 0px auto;
    }
    .heading p {
        text-align: center;
    }
    .heading p::after {
        width: 80%;
    }
}

@media screen and (max-width: 750px) {
    .heading p {
        font-size: 24px;
        line-height: 2.2rem;
    }
    .about_head_container p {
        font-size: 18px;
    }
}
