
.aboutProject {
    position: relative;
    background: #1B1D26;
}
.aboutProject::before {
    content: '';
    position: absolute;
    top: -40px;
    margin: 0 30%;
    width: 40%;
    height: 80px;
    background-color: #1B1D26;
    border-radius: 50px;
}

.aboutProject__header {
    text-align: center;
    padding: 8vh 0;
}

.aboutProject__item_content {
    display: flex;
    align-items: center;
    padding: 0 10%;
    margin-bottom: 40px;
}

.aboutProject__itemIcon_wrapper {
    margin-right: 15px;
}

.aboutProject__itemText_wrapper p {
    line-height: 26px;
    font-weight: 400;
}

.aboutProject__subheaders_wrapper {
    text-align: center;
    padding: 0 5%;
}
.aboutProject__subheaders_wrapper h3,
.aboutProject__subheaders_wrapper h4{
    margin-bottom: 20px;
}

.aboutProject__btn_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;

    margin: 8vh 0;
}
.aboutProject__btn_wrapper a{
    padding: 2px 27px;
}

.aboutProject__bottom_img_wrapper {
    overflow: hidden;
}
.aboutProject__bottom_img_wrapper img {
    width: 100%;
    /*filter: drop-shadow(0px 3px 8px rgba(255, 255, 255, 0.8));*/
}

@media (max-width: 991px) {
    .aboutProject_container {
        max-width: 100% !important;
    }

    .aboutProject::before {
        margin: 0 20%;
        width: 60%;
    }

    .aboutProject__subheaders_wrapper h3,
    .aboutProject__subheaders_wrapper h4{
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .aboutProject::before {
        margin: 0 10%;
        width: 80%;
    }
    .aboutProject__itemText_wrapper p {
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .aboutProject__subheaders_wrapper {
        padding: 0 0;
    }
}