.heroSection{
    display: flex;
    width: 100%;
    height: 85vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contentHeroSection{
    position: relative;
    z-index: 1;
}


.primaryText{
    color: var(--bs-primary);
}

.myVideo{
    position: absolute;
    left: 50%;
    top: 50%;
    /* The following will size the video to fit the full container. Not necessary, just nice.*/
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 0;
    opacity: .2;
}
.techImg {
    max-width: 80px;
    max-height: 80px;
    border-radius: 0.2rem;
    margin: 0 1rem;
}

.textSection{
    background-image: url(../../assets/images/banner.png);
    background-position: fixed;
    padding: 7rem 0;
}

.techImgLine {
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
}

.simpleText{
    font-size: 16px;
    font-weight: 300;
    color: #eeeeee;
    text-align: justify;
    line-height: 1.8rem;
}

.mainTitle{
    font-size: 4rem !important;
    margin: 0 0 1.8rem 0 !important;
    padding: 0;
}
.subTitle{
    font-size: 1.125rem !important;
    line-height: 1.3;
    margin: 0;
    color: var(--bs-text);
}
.mainTitle2{
    font-size: 3rem !important;
    margin: 0 0 1rem 0 !important;
    padding: 0;
}
.subTitle2{
    font-size: 1rem !important;
    margin: 0;
    color: var(--color-text-secundary);
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-break { 
    display: none; 
}

section{
    padding: 5rem 0;
}

.textBold{
    font-weight: 700;
}

.title{
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.5;
}
.paragraph{
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 1.2rem;
    line-height: 1.5;
}
.paragraph2{
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 1rem;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .mobile-break { display: flex; }
    .techImg {
        max-width: 50px;
        max-height: 50px;
        border-radius: 0.2rem;
        margin: 0 1rem;
    }
    .textBold2 {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    .paragraph {
        font-size: 0.95rem;
        line-height: 1.7rem;
    }
    .paragraph2 {
        font-size: 0.95rem;
        line-height: 1.7rem;
    }
}

.single-content{
    position: relative;
    transition: .3s;
}

.single-content .text-content,
.single-content:after {
    position: absolute;
    left: 15px;
    right: 15px;
    
}

.single-content:after{
    content: '';
    display: block;
    background: #252525;
    top: 15px;
    bottom: 15px;
    opacity: 0;
    transform: rotate3d(-1,1,0,100deg);
    transition: .4s;
}
.single-content:hover:after{
    opacity: .9;
    transform: rotate3d(0,0,0,0deg);
}

.single-content img {
    width: 100%;
    height: auto;
}

.text-content{
    top: 52%;
    opacity: 0;
    z-index: 1;
    transform: translate(10%, -30%);
    transition: .3s;
    text-align: center;
    color: #fff;
    padding: 3rem;
}

.single-content:hover .text-content{
    opacity: 1;
    transform: translate(0, -50%);
    transition-delay: .3s;
}