.container.home{
    width: 100vw;
    height: 100vh;
    align-items: center;    
}

.title-content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.bars{
    width: 100%;
    height: 10%;
    position: absolute;
    background: transparent;
    justify-content: space-between;
    display: flex;
}
#white, #red{
    width: 100%;
    height: 10%;
    background-color: transparent;
}
#upper{
    top: 5%;
    flex-direction: column;
}
#lower{
    bottom: 15%;
    flex-direction: column-reverse;
}

#white> div{
    width: 10%;
    height: 1%;
    background-color: white;
}
#red> div{
    width: 4%;
    height: 1%;
    background-color: red;
}
#white> div:first-child, #red> div:first-child{
    position: absolute;
    left: 0;
}
#white> div:last-child, #red> div:last-child{
    position: absolute;
    right: 0;
}

.image{
    z-index: 0;
    display: flex;
    width: 100%;
    height: 80%;
    align-items: center;
    position: relative;
    flex-direction: column;
}
.image > p{
    background-color: transparent;
    position: absolute;
    bottom: -1rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;

}
#display-triangles{
    display: block;
    object-fit: contain;
    width: 100vw;
    height: 90vh;
}
.container.home .title-text{
    z-index: 10;
    position: absolute;
    left: 12%;
    top: 16%;
}
.container.home .title-text, .container.home .title-text *{
    background-color: transparent;
}

.container.home .title-text> p:first-child{
    font-size: 10rem;
    font-weight: 500;
}
.container.home .title-text> p:last-child{
    font-size: 1rem;
    font-weight: 300;
}

.home-data-container{
    width: 100%;
    height: 90%;
    margin-bottom: 10%;
}
.gradient-content{
    width: 100%;
    height: 80%;    
    background: linear-gradient(92.03deg, rgba(25, 25, 56, 0.63) 40.12%, rgba(245, 25, 25, 0.6237));
    display: flex;
}
.gradient-content *{
    background-color: transparent;
}

.gradient-content > .text-content{
    padding-left: 2rem;
    padding-right: 4rem;
    padding-top: 2rem;
    width: 50%;
    height: 100%;
}
.gradient-content> .image-content{
    width: 50%;
    height: 95%;
    margin-right: 2rem;
    border-radius: 1rem;
    display: block;
    object-fit: cover;
    background-color: grey;
    margin-top: 5%;
}

.gradient-content#reverse{
    background: linear-gradient(92.03deg, rgba(245, 25, 25, 0.6237), rgba(25, 25, 56, 0.63) 50.12%);
    flex-direction: row-reverse;
    text-align: end;
}
.gradient-content#reverse > .text-content{
    padding-right: 2rem;
    padding-left: 4rem;
}

.gradient-content#reverse > .image-content{
    margin-left: 2rem;
}
.gradient-content > .text-content > #title{
    color: #F51919;
    letter-spacing: 0.4rem;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
}
.gradient-content > .text-content > #subtitle{
    margin-top: 1.5rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 400;
    padding-right: 2rem;
    padding-left: 0;
}
.gradient-content#reverse > .text-content > #subtitle{
    padding-right: 0;
    padding-left: 2rem;
}

.gradient-content > .text-content > #description{
    color: rgba(255, 255, 255, 0.83);
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 200%;
}