body {
    background-color: var(--lightmodegray);
}

/* sec1 ----- ----- */

.sec1 {
    margin-bottom: 2rem;
    padding-top: 3rem;
    text-align: center;
}

.sec1 h1 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primaryBlue);
}

.line1h1 {
    width: 40px;
    height: 3px;
    background-color: var(--primaryOrange);
    margin: 12px auto 0 auto;
    position: relative;
}

.line1h1::before {
    content: "";
    background-color: var(--lightGrayBorder);
    width: 40px;
    height: 3px;
    display: block;
    position: absolute;
    right: 40px;
}

.line1h1::after {
    content: "";
    background-color: var(--lightGrayBorder);
    width: 40px;
    height: 3px;
    display: block;
    position: absolute;
    left: 40px;
}

/* sec2 ----- ----- */

.sec2 {
    padding: 0 1rem 5rem 1rem;
}

.sec2 > h2 {
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: var(--primaryBlue);
}

.sec2 > h3 {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primaryTextGrayDark-2);
}

.sec2 > p, .sec2 > ul {
    color: var(--primaryTextGrayDark-2);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.sec2 > ul {
    padding-left: 2rem;
}

/* css media queries ----- ----- */

@media only screen and (min-width: 560px) {
    .sec2 {
        padding: 0 2rem 5rem 2rem;
    }
}

@media only screen and (min-width: 768px) {
    .sec1 {
        margin-bottom: 3rem;
    }

    .sec2 {
        padding: 0 5rem 5rem 5rem;
    }
}

@media only screen and (min-width: 1024px) {
    .sec2 {
        padding: 0 8rem 5rem 8rem;
    }
}
