.titleSection {
    margin: 0 auto;
    width: 50%;
}

.titleSection.animate {
    animation: fadeUpEntrance 1s ease-out forwards;
    opacity: 0;
}


.titleSection .textWrapper {
    text-align: center;
    display: flex;
    justify-content: center;
}

.titleSection .title {
    background: -webkit-linear-gradient(#ffffff, var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 54px;
    line-height: 60px;
    margin: 0;
    font-weight: bold;
}

.titleSection .subtitle {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

@media only screen and (max-width: 991px) {
    .titleSection {
        width: 70%;
    }
}

@media only screen and (max-width: 767px) {
    .titleSection {
        width: 95%;
    }
    .titleSection .title {
        font-size: 28px;
        line-height: 32px;
    }
    .titleSection .subtitle {
        font-size: 22px;
    }
}


@keyframes fadeUpEntrance {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}