.container {
    font-family: "Public sans", sans-serif;
    color: #fff;
    padding: 30px 0px;
    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: 60px 0px 0px 0px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
}
.about_help {
    background: var(--gradient);
    padding: 100px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about_help_1 {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.about_help_2 {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.about_help img {
    width: 80px;
    margin-bottom: 20px;
}
.about_help p {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.8rem;
    text-transform: uppercase;
}
.content {
    padding: 30px 0px;
}
.content_p {
    text-align: center;
}
.table {
    margin: 30px 0px;
    display: flex;
}
.column {
    width: 50%;
    padding-left: 20px;
}
.column ul {
    margin: 10px 0px;
    margin-left: 15px;
}
.column ul li {
    margin-bottom: 5px;
}
.column:first-child {
    border-right: 1px dashed #fff;
}

@media screen and (max-width: 1000px) {
    .container {
        display: none;
    }
}
