.hero_section {
    position: relative;
}
.hero_section::after {
    content: "";
    width: 100%;
    height: 17rem;
    position: absolute;
    bottom: 0;
    background-color: #5e7d95;
    transform: skewY(15deg);
    z-index: -1;
}
.content_1 {
    position: relative;
}
.content_1::before {
    content: "";
    width: 100%;
    height: 10rem;
    position:absolute;
    top: -7rem;
    background-color: black;
    transform: skewY(6deg);
    opacity: 0.2;
    z-index: -1;
}
.content_1 .content h1 {
    font-weight: 350;
    font-size: 2.2rem;
    color: #545454;
    margin-bottom: 15px;
}
.content_1 .content h2 {
    font-family: "Cairo", sans-serif;
    font-weight: 350;
    font-size: 2rem;
    color: #5a5a5a;
    margin-bottom: 2px;
}
.content_1 .content p {
    font-weight: 250;
    color: #545454;
    font-size: 17.5px;
    margin-bottom: 15px;
}
.content_1 .content ul li {
    font-weight: 250;
    color: #545454;
    font-size: 17.5px;
    margin-bottom: 15px;
}
.dotted-list li {
    position: relative;
  }
.dotted-list {
    padding-left: 16px;
}
.dotted-list li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(44, 44, 44);
}