.site-content {
    padding-bottom: 96px;
}

.home .site-content {
    background: linear-gradient(to bottom, transparent 950px, var(--color-light-blue) 0);
    position: relative;
}

.home .site-content::before {
    content: "";
    position: absolute;
    top: 950px;
    left: 0;
    width: 250px;
    height: 250px;
    background-image: url('../../../img/svg/ellipse_left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    z-index: 0;
    pointer-events: none;
}

.home .site-content .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .site-content {
        /* background: linear-gradient(to bottom, transparent 2150px, var(--color-light-blue) 0); */
        background: none;
        padding-bottom: 0;
    }

    .home .site-content {
        background: linear-gradient(to bottom, transparent 2120px, var(--color-light-blue) 0);
        padding-bottom: 66px;
    }

    .home .site-content::before {
        background-image: none;
    }
}