#start-section {
    position: relative;
}

#start-section .content {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 75px;
    padding-bottom: 80px;
    z-index: 1000;
}

#start-section h1, #start-section h5 {
    text-align: center;
    width: 100%;
}

#start-section h1 {
    max-width: 943px;
}

#start-section h1 span {
    color: var(--color-brand);
}

#start-section h5 {
    max-width: 525px;
    color: var(--color-black-light);
}

#start-section .black-button {
    margin-top: 64px;
}

#start-section #separator {
    background: #E4E7F8;
    width: 100%;
    height: 1px;
    margin-top: 61px;
}

#start-section #gradient-1 {
    
    background: radial-gradient(ellipse at center, rgba(89, 75, 246, 0.3) 0%, rgba(89, 75, 246, 0.2) 30%, rgba(255, 255, 255, 0.0) 70%, rgba(255, 255, 255, 0.0) 100%);
    width: 822px;
    height: 755px;
    transform: rotate(127.33deg);
    position: absolute;
    bottom: -200px;
    left: 0;
    z-index: 100;
    /* backdrop-filter: blur(300px) */

}

#start-section .elipse-1,
#start-section .elipse-2 {
    position: absolute;
    z-index: 100;
}

#start-section .elipse-1 {
    bottom: -500px;
    left: 0;
}

#start-section .elipse-2 {
    top: -100px;
    right: 0;
    z-index: 100;
}

@media (max-width: 1200px) {
    #start-section .elipse-1 {
        left: -300px;
    }
    #start-section .elipse-2 {
        right: -50px;
    }
    #start-section h1 {
        font-size: 36px;
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    #start-section .elipse-1 {
        left: -400px;
    }
    #start-section .elipse-2 {
        right: -50px;
        top: -150px;
    }
    /* #start-section h1 {
        max-width: 367px;
    } */

    #start-section .content {
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 16px;
        padding-bottom: 40px;
    }
    #start-section h5 {
        font-size: 16px;
    }
    #start-section #separator {
        margin-top: 40px;
    }
    #start-section .black-button {
        margin-top: 34px;
        width: 310px;
    }
}

