section.container {
    padding: 40px 70px 0;
}

section .container {
    padding: var(--gap);
}

h2 {
    margin: 0;
}

.hero-container {
    position: relative;
    height: calc(100vh - var(--header-height));
}

.hero-container .hero-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-container .hero-banner img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.hero-container .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px;
}

.hero-container h2 {
    font-size: 120px;
    line-height: 1.2;
    color: #fff;
}

section.container.manage {
    background-color: #fff;
    padding-bottom: 70px;
}

.manage .pc-button {
    border-color: #000;
}

.manage .pc-button span {
    color: #000;
}

.manage .pc-button::before {
    background-color: var(--main-blue);
}

.manage .pc-button:hover {
    border-color: var(--main-blue);
}

.manage .pc-button:hover span {
    color: #fff;
}

.manage .top-part h2 {
    color: var(--main-blue);
}

.manage .top-part h2.blue {
    margin-left: 50px;
}

.manage .top-part .description {
    width: 55%;
    min-width: 650px;
    margin-right: auto;
}

.manage .top-part .description p:last-child {
    margin-top: var(--gap);
}

.manage .benefits {
    column-gap: 30px;
    padding-top: 75px;
}

.manage .benefit {
    width: 25%;
    background-color: var(--main-blue);
}

.manage .benefit h3 {
    font-size: 19px;
    margin-top: 0;
    line-height: 1.2;
    color: #fff;
}

.manage .benefit p {
    font-size: 16px;
    color: #fff;
}

.invoicing-solutions {
    background-color: var(--aqua-variant-3);
    padding-bottom: 0;
}

.invoicing-solutions .top-part {
    padding-bottom: 0;
}

.invoicing-solutions h2 {
    text-align: center;
    color: var(--main-blue);
}

.invoicing-solutions .top-part .description {
    text-align: center;
    margin-top: 20px;
}

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

.invoicing-solutions .bottom-part .solution {
    position: relative;
    padding-bottom: 50px;
}

.invoicing-solutions .bottom-part .solution::before {
    content: '';
    border-left: 1px solid #705BAF;
    position: absolute;
    height: calc(100% + 50px);
    top: -50px;
    left: -20px;
}

.invoicing-solutions .bottom-part .solution:first-child::before {
    height: calc(100% + 200px);
    top: -200px;
}

.invoicing-solutions .bottom-part .solution:nth-child(2)::before {
    height: calc(100% + 130px);
    top: -130px;
}

@media screen and (max-width: 767px) {
    section.container {
        padding: 40px 20px;
    }

    .manage h2,
    .invoicing-solutions .top-part h2 {
        font-size: 35px;
        line-height: 1.4;
    }

    .hero-container h2 {
        font-size: 50px;
    }

    .hero-container .container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .manage .benefits {
        flex-direction: column;
        row-gap: var(--gap);
    }

    .manage .benefit {
        width: 100%;
        padding: 20px;
    }

    .invoicing-solutions .bottom-part {
        flex-direction: column;
        padding-top: var(--gap);
    }

    .invoicing-solutions .bottom-part .solution::before {
        height: 100% !important;
        top: 0 !important;
    }

    .manage .top-part .description {
        width: 100%;
        min-width: unset;
    }
}