.bg-lightblue {
    background: var(--t1-color);
    position: relative;
}

.bg-p-blue {
    background: var(--p-color);
}

.bg-white {
    background: #fff;
}

.bg-blue-gradient {
    background: var(--btn-bgcolor);
}

/* Scroll animations */

.bg-scroll-wrapper {
    height: 200px;
    position: relative;
    z-index: -1;
}

.bg-scroll-wrapper.z-1 {
    z-index: 1;
}

.bg-scroll {
    height: 100%;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 0;
    transition: all 0.2s ease;
}

/* From (light blue)left top to bottom on scroll */
.bg-scroll-lb-left-top-to-bottom {
    transform-origin: top right;
    background: var(--t1-color);
    bottom: -80%;
    transform: skewY(10.825deg);
}

/* From (light blue)right top to bottom on scroll */
.bg-scroll-lb-right-top-to-bottom {
    transform-origin: bottom left;
    background: var(--w-color);
    transform: skewY(-11deg);
    top: 0;
}
/* From (dark blue)left top to bottom on scroll */
.bg-scroll-db-left-top-to-bottom {
    transform-origin: top right;
    background: var(--p-color);
    transform: skewY(10.825deg);
    bottom: -100%;
}
/* From (dark blue)right top to bottom on scroll */
.bg-scroll-db-right-top-to-bottom {
    transform-origin: top left;
    background: var(--p-color);
    transform: skewY(-10.9deg);
}

@media screen and (min-width: 1024px) {
    .bg-scroll-wrapper {
        height: 400px;
    }

    .bg-scroll-lb-left-top-to-bottom {
        bottom: -100%;
    }
}