section {
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

section .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section .title h1 {
    color: #04bf80;
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

section .title span {
    width: 70px;
    height: 2px;
    background: var(--color);
}


section .title .desc {
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    width: 300px;
    margin-top: 30px;
    margin-bottom:87px;
}


section .title .More {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 1440px) {
    section {
        padding: 150px 0;
    }
}

@media (max-width: 1200px) {
    section {
        padding: 120px 0;
    }

    section .title h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    section .title .desc {
        width: 240px;
        margin-top: 16px;
        margin-bottom: 30px;
    }


}

@media (max-width: 640px) {
    section {
        padding: 60px 0;
    }

    section .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    section .title .desc {
        width: 100%;
        text-align: center;
        line-height: 1.5;
    }
}