section.container.methods-container {
    background-color: var(--main-apricot);
    padding-bottom: 0;
}

.methods-container .top-part {
    padding-bottom: 0;
}

.methods-container h2 {
    color: var(--main-blue);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
}

.methods-container .top-part .description p {
    text-align: center;
    margin-top: 20px;
    color: #000;
}

.methods-container .bottom-part {
    column-gap: 40px;
    padding-top: 170px;
    padding-bottom: 0;
}

.methods-container .bottom-part .method {
    position: relative;
    padding-bottom: 50px;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: end;
    min-width: 20%;
}

.methods-container .bottom-part .method::before {
    content: '';
    border-left: 1px solid var(--main-blue);
    position: absolute;
    height: calc(100% + 50px);
    top: -50px;
    left: -20px;
    opacity: 0.3;
}

.methods-container .bottom-part .method:first-child::before {
    height: calc(100% + 200px);
    top: -200px;
}

.methods-container .bottom-part .method:nth-child(2)::before {
    height: calc(100% + 130px);
    top: -130px;
}

.methods-container .method .description {
    color: #000;
    font-family: 'Poppins-Medium';
    margin-top: 15px;
    margin-bottom: 40px;
    font-size: 27px;
    line-height: 1.1;
}

@media screen and (max-width: 767px) {

    .methods-container h2 {
        font-size: 35px;
    }

    .methods-container .bottom-part {
        flex-direction: column;
    }

    .methods-container .bottom-part .method::before {
        height: 100% !important;
        top: 0 !important;
    }

    .methods-container .method .description {
        font-size: 20px;
    }

    .methods-container .bottom-part {
        padding-top: 20px;
    }
}