#why_crimson{
    background: #0c1928;
    /* background: #c76810; */
    height: 100%;
}
.why_crimson_header{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.why_crimson_row{
    display: flex;
    flex-direction: row;
    /* align-items: center;
    justify-content: center; */
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 50px;
    margin-bottom: 50px;
}
.why_crimson_img{
    width: 400px;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.why_crimson_paragraph{
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.row_reverse{
    flex-direction: row-reverse;
}

@media screen and (max-width: 1236px) {
    /* #why_crimson{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    } */
    .why_crimson_row{
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        padding-right: 10px;
    }
    .why_crimson_img{
        width: 70%;
        height: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px){
    .why_crimson_row{
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
        gap: 20px;
    }
    .why_crimson_img{
        width: 80%;
    }
}