body section#title svg {
    stroke: #2B3243;
    height: 100%;
}

body.night section#title svg {
    stroke: #EBEBEB;
}

section#title .fade-out {
    width: 100%;
    height: 100vh;

    position: absolute;
    top: 0;
    left: 0;

    background: var(--primary);

    -webkit-animation: fade-out 0.5s linear 2.75s forwards;
    -moz-animation: fade-out 0.5s linear 2.75s forwards;
    -o-animation: fade-out 0.5s linear 2.75s forwards;
    animation: fade-out 0.5s linear 2.75s forwards;
}

section#title {
    /* LINK */
    background-image: -webkit-linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');
    background-image: -moz-linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');
    background-image: -o-linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');
    background-image: linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');

    background-size: cover;
    background-position: 0 30%;
    background-repeat: no-repeat;

    padding-left: 100px;
}

section#title div.text-container {
    width: -moz-fit-content;
    width: fit-content;
}

section#title div.text-container h1 {
    font-size: 21em;
    font-weight: 400;
    line-height: 90%;

    opacity: 0;

    -webkit-animation: appear 1s linear 0.5s forwards;
    -moz-animation: appear 1s linear 0.5s forwards;
    -o-animation: appear 1s linear 0.5s forwards;
    animation: appear 1s linear 0.5s forwards;
}


section#title div.text-container .wrapper {
    overflow-y: hidden;
}


section#title div.text-container .wrapper.upper {
    padding-bottom: 5px;
}

section#title div.text-container .wrapper.lower {
    padding-top: 5px;
    max-width: 570px;
}


section#title div.text-container hr {
    border-width: 2px;
    border-color: var(--secondary);

    opacity: 0;
    width: 100%;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;

    -webkit-animation: growToRight 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) 2.5s forwards;
    -moz-animation: growToRight 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) 2.5s forwards;
    -o-animation: growToRight 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) 2.5s forwards;
    animation: growToRight 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) 2.5s forwards;
}


section#title div.text-container svg {
    margin-left: 12px;
    opacity: 0;

    -webkit-animation: appear 1s linear 1.5s forwards;
    -moz-animation: appear 1s linear 1.5s forwards;
    -o-animation: appear 1s linear 1.5s forwards;
    animation: appear 1s linear 1.5s forwards;
}


@media only screen and (max-width: 1130px){
    section#title {
        padding: 0; 
        background-position: center;

        /* LINK */
        background-image: -webkit-linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');
        background-image: -moz-linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');
        background-image: -o-linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');
        background-image: linear-gradient(0deg, var(--primary-transparent), var(--primary-transparent)), url('https://saulomira.com.br/images/Title/background.webp');

       /*  align-items: flex-start;
        padding-top: 30vh; */

        height: 100vh;
        min-height: 600px;
    }

    section#title div.text-container {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 720px){

    section#title div.text-container .saulo-mira-text {
        font-size: 14em;
    }

    section#title div.text-container svg {
        margin-left: 7px;
        width: 370px;
    }

    /* section#title div.text-container hr {
        margin-top: -34px;
        margin-bottom: 6px;
    } */
}

@media only screen and (max-width: 490px){

    section#title div.text-container .saulo-mira-text {
        font-size: 10em;
    }

    section#title div.text-container svg {
        margin-left: 5px;
        width: 262px;
    }

    /* section#title div.text-container hr {
        margin-top: -24px;
        margin-bottom: 6px;
    } */
}

@media only screen and (max-width: 350px){

    section#title div.text-container .saulo-mira-text {
        font-size: 7em;
    }

    section#title div.text-container img {
        margin-left: 3px;
        width: 184px;
    }
    
    section#title div.text-container svg {
        margin-left: 7px;
        width: 180px;
    }

   /*  section#title div.text-container hr {
        margin-top: -16px;
        margin-bottom: 5px;
    } */
}