.logo-text{
    font-family: 'Russo One', sans-serif;
    font-size: 1.7em !important;
}
.mhe{
    max-height: 50vh;
}
.roboto-text{
    font-family: 'Roboto Condensed', sans-serif;
}

.img-logo{
    padding-top: 150px;
    justify-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: block;
    animation: spin 1s linear 1;
}
.img-logo img:hover{
    animation: spin2 1s linear 1;
}
.hc-50{
    height: 350px !important;
}
.mt-7p{
    margin-top: 150px;
}
.mt-5p{
    margin-top: 103px;
}
.mt-3p{
    margin-top: 100px;
}
.mt-6p{
    margin-top: 125px;
}
.mt-4p{
    margin-top: 180px;
}
.mt-60{
    margin-top: 60px !important;
}

.view{
    width: 100%;
    height: 100vh;
    background: url(../image/background.png);
    background-repeat: no-repeat;
}

.titulo-principal{
    max-width: 1000px;
    text-align: center;
    margin: 60px auto;
    color: #fff;
    font-size: 2.5em;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: white;
}
.titulo-principal:after{
 content: '|';
 margin-left: 5px;
 opacity: 1;
 animation: pisca .7s infinite;
}

.animar a img:hover{
    animation: spin2 1s linear 1;
}

.logo-Menu{
    width: 70px;
    z-index: 2;
    position: absolute;
    margin-top: 20px;

}
.margin-5{
    margin-left: 100px !important;
}
.v-divider{
    border-left: 1px solid black;
}
.box-shadow{
    box-shadow: inset 0 0 1em white, 0 0 1em rgb(102, 102, 102);
}
.vp100{
    width: 100%;
    height: 100vh;
}
/* .mr-5{
    margin-right: 15px;
} */
.link-logo{
    width: 60px;
}
.margin-t5{
    margin-top: 100px !important;
}
.bghistoria{
    background-color:#1f1f1f;
}
.skew-open{
    width:100%;
    height:101px;
    position:absolute;
    left:0px;
    background: linear-gradient(to left bottom, #fff 49%, #1f1f1f 50%);
  }
.skew-close{
    width:100%;
    height:100px;
    position:absolute;
    left:0px;
    background: linear-gradient(to right bottom, #1f1f1f 49%, #fff 50%),    linear-gradient(-50deg, #ffffff 16px, #000 0);
  }

  .skew-open2{
    width:100%;
    height:100px;
    position:absolute;
    left:0px;
    background: linear-gradient(to right bottom, #fff 49%, #1f1f1f 50%);
  }

.divider-all{
    width: 100%;
    padding: 10px;
    border-top: #4d4d4d 1px solid;
}

.divider-all-black{
    width: 100%;
    padding-bottom: 5px;
    border-top: #b3b3b3 1px solid;
}

.border-transparent{
    border: 1px solid #c2c2c2;
}

.mleft-5{
    margin-left: 50px;
}

@media screen and (max-width: 1700px) {
    .view{
        width: 100%;
        height: 100%;
    }
    .img-logo{
        padding-top: 10%;
    }
    .logo-cprp{
        max-width: 320px;
    }
}









/* Animações */

.fadeLeft{
    opacity: 0;
    transform: translate3d(-100px,0,0);
    transition: 1s;
}
.fadeRight{
    opacity: 0;
    transform: translate3d(100px,0,0);
    transition: 1s;
}
.fadeCenter{
    opacity: 0;
    transform: translate3d(0,-100px,0);
    transition: 1s;
}
.fadeOut{
    opacity: 1;
    transform: translate3d(0,0,0);
}

@keyframes spin {
    0% {
        padding-top: 10px;
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(360deg);
        padding-top: 150px;
    }
}

@keyframes spin2 {
    0% {
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(360deg);
    }
}

@keyframes pisca{
    0%, 100%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
}