#welcome-section {
    background-image: url('../images/background-01.svg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}

.certificates {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
    animation: scroll-left-certificates 15s linear infinite;
}

.certificates-wrapper:hover>.certificates {
    animation-play-state: paused;
}

@keyframes scroll-left-certificates {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--spacing-xl)));
    }
}

.phase-offset-wrapper {
    height: 16px;
}

.phase-offset {
    margin-top: calc(-1 * (var(--spacing-4xl) + 48px));
}

.phase-icon {
    height: var(--spacing-6xl);
    width: var(--spacing-6xl);
}

.background-02 {
    background-image: radial-gradient(ellipse 40% 150% at 50% 150%, #1dd8872d, #1DD88700);
}

.boder-color-linear-gradient {
    border-image-slice: 1;
    border-image-source: linear-gradient(360deg, #1DD887 1%, #b1e9ca 20%, #1DD887 30%);
}

.boder-color-linear-gradient-02 {
    border: 1px solid;
    border-radius: var(--radius-3xl);  
    border-image: linear-gradient(273deg, #2b2c2b 1%, #2c2e2d 20%, #248658 30%);
    border-image-slice: 1;
}

.background-03 {
    background-image: url('../images/background-03.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150%;
}

.circle-free {
    border: 3px solid #00FFAE;
    border-radius: var(--radius-full);
    padding: var(--spacing-2xl);
    box-shadow: 0 0 10px 1px #00FFAE83, inset 0 0 10px 1px #00ffae83;
    height: 120px;
    width: 120px;
}

.circle-paid {
    border: 2px solid #FFD64A;
    border-radius: var(--radius-full);
    padding: var(--spacing-2xl);
    height: 80px;
    width: 80px;
    margin-top: 20px;
}

.circle-funded {
    border: 2px solid #247BDF;
    border-radius: var(--radius-full);
    padding: var(--spacing-2xl);
    height: 80px;
    width: 80px;
    margin-top: 20px;
}

.horizontal-free-paid {
    border: none;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #88FFCB 0%, #FFD64A 100%);
    border-image-slice: 1;
    width: calc((100% - 120px - 80px - 80px) / 2);
    padding-top: 59px;
}

.horizontal-paid-funded {
    border: none;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #FFD64A 0%, #247BDF 100%);
    border-image-slice: 1;
    width: calc((100% - 120px - 80px - 80px) / 2);
    padding-top: 59px;
}

.text-color-discord {
    color: #6160fe;
}

.text-color-youtube {
    color: #ff2632;
}

.border-color-discord {
    border-color: #6160fe;
}

.border-color-youtube {
    border-color: #ff2632;
}

.width-accordation {
    width: calc(100% - 2 * 40px);
}

#get-funded {
    background-image: radial-gradient(50% 50% at 50% 110%, #1feda380 0%, rgba(12, 12, 12, 0.00) 100%);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: relative;
}

#get-funded-image {
    position: absolute;
    max-width: 500px;
    bottom: 0;
    right: var(--spacing-5xl);
}

.horizontal-linear-gradient-get-funded-type-01 {
    border: 0;
    background: linear-gradient(90deg, rgba(12, 12, 12, 0.00), #222222, rgba(12, 12, 12, 0.00));
    height: 2px;
    width: 100%;
}

.horizontal-linear-gradient-get-funded-type-02 {
    border: 0;
    background: linear-gradient(90deg, #1dd88700, #1dd887, #1dd88700);
    height: 2px;
    width: 100%;
}

.horizontal-linear-gradient-get-funded-type-03 {
    background-image: linear-gradient(270deg, rgba(12, 12, 12, 0.00), #0d140f, rgb(15 31 23));
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}

.flex-order-1 {
    order: 1;
}

.flex-order-2 {
    order: 2;
}

@media screen and (max-width: 768px) {
    .flex-order-1-tablet {
        order: 1;
    }

    .flex-order-2-tablet {
        order: 2;
    }

    .flex-order-3-tablet {
        order: 3;
    }

    .flex-order-4-tablet {
        order: 4;
    }

    .flex-order-5-tablet {
        order: 5;
    }

    .max-width-100-tablet {
        max-width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .circle-free {
        height: 100px;
        width: 100px;
    }

    .circle-funded,
    .circle-paid {
        height: 70px;
        width: 70px;
        margin-top: 15px;
    }

    .horizontal-free-paid {
        border: none;
        border-bottom: 2px solid;
        border-image: linear-gradient(90deg, #88FFCB 0%, #FFD64A 100%);
        border-image-slice: 1;
        width: calc((100% - 100px - 70px - 70px) / 2);
        padding-top: 49px;
    }

    .horizontal-paid-funded {
        width: calc((100% - 100px - 70px - 70px) / 2);
        padding-top: 49px;
    }
}