.container-1{
    position: relative;
    background-image: linear-gradient(to right top , rgba(175, 245, 255, 0.8), rgba(76, 175, 80,1.0));
    min-height: 100vh;
}
.titulo-sombra{
    text-shadow: -2px 1px 0 #000;
}
.paragrafo-sombra{
    text-shadow: -1px 1px 0 #222;
}
.sombra-branca{
    text-shadow: -1px 2px 0 #fff;
}
.container-2{
    opacity: .1;
    transition: .5s ease;
}
.container-3{
    opacity: 0;
    transition: 1s ease;
    padding-top: 4rem;
    padding-bottom: 4rem ;
}
.fade-left{
    animation: moveInLeft 1s ease-out;
}
.fade-right{
    animation: moveInRight 1s ease-out;
}
.fade-bottom{
    animation: moveInBotton 1s ease-out;
}
.container-4{
    opacity: 0;
    transition: 1s;
}
.sessao-4{
    position: relative;
    padding: 3rem 1rem 0 1rem;

    background-color:  rgba(70,64,275, 0.7);
}
@media (min-width: 993px) {
    .sessao-4{
        padding: 4rem;
    }
}
.bg-video{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    overflow: hidden;
}
.bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.container-5{
    opacity: .1;
    transition: .8s ease;
}
.sessao-2{
    padding-bottom: 2rem;
}
.linha-bottom{
    display: inline-block;
    height: 2px;
    width: 8rem;
    margin-bottom: 2rem;
}
.meu-nav{
    position: fixed;
    -webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.18);
    background: rgba(0,0,0,0);
    padding: 0 8rem;
    transition: .3s;
}
.meu-nav-escuro{
    position: fixed;
    background: #4CAF50;
    padding: 0 8rem;
    transition: .3s;
}
.brand-logo{
    font-size: 1.6rem !important;
}
.coluna{
    display: flex;
    height: 65vh;
}
ul.meu-ul a:hover{
    background-color:rgba(255,235,59,.5) !important;
}
ul.meu-ul2,ul.meu-ul2 li{
    margin-bottom: 2rem !important;
    background: transparent !important;
    border: none !important;

}
.btn.meu-btn{
    text-align: center;
    padding: 1.6rem 2.5rem;
    margin-right: 1rem;
    line-height: .4rem;
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    border: 2px solid #fff;
    font-weight: 600 !important;
}
.btn.meu-btn:hover{
    color: #fff !important;
    background: rgba(232, 228, 9, 0.75) !important;
}
.btn.meu-btn2{
    text-align: center;
    padding: 1.6rem 2.5rem;
    margin-right: 1rem;
    line-height: .1rem;
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    border: 2px solid #fff;
    font-weight: 600 !important;
    background:transparent !important
}
.btn.meu-btn2:hover{
    background: rgba(255,255,255,0.2) !important;
}
.btn.meu-btn3{
    text-align: center;
    padding: 1.6rem 2.5rem;
    line-height: .1rem;
    font-weight: 600 !important;
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
}
.btn.meu-btn3:hover{
    background: rgb(251, 251, 251) !important;
}
.icone-padrao{
    color: #1976D2;
    font-size: 1rem !important;
}
.titulo-sessao{
    text-align: center;
    font-weight: 300;
}
.titulo-sessao-3{
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem
}
.titulo-sessao-2{
    margin-top: 3rem;
    padding-bottom: 1rem;
}
.titulo-sessao-membros{
    padding-bottom: 1rem;
    margin-top: -1rem;
}
.margem-bottom{
    margin-bottom: 2rem;
}
.margem-top{
    margin-top: 3rem;
}
.icone-circulo{
     width: 5.5rem;
     height: 5.5rem;
     border-radius: 50%;
     padding: 1.6rem;
     -webkit-box-shadow:0 4px 4px 0 rgba(85,127,249,0.18),0 3px 1px -2px rgba(85,127,249,0.15),0 1px 5px 0 rgba(85,127,249,0.2);
     box-shadow:0 4px 4px 0 rgba(85,127,249,0.18),0 3px 1px -2px rgba(85,127,249,0.15),0 1px 5px 0 rgba(85,127,249,0.2)
}
.meu-z-index{
    -webkit-box-shadow:0 10px 10px 0 rgba(76, 127, 249, 0.18),0 3px 1px -2px rgba(85,127,249,0.15),0 1px 10px 0 rgba(85,127,249,0.2);
    box-shadow:0 10px 10px 0 rgba(85,127,249,0.18),0 3px 1px -2px rgba(85,127,249,0.15),0 1px 10px 0 rgba(85,127,249,0.2)
}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    80% {
        -moz-transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -o-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        -moz-transform: translate(0);
        -webkit-transform: translate(0);
        -o-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }
}
@keyframes moveInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px);
        -webkit-transform: translateX(100px);
        -o-transform: translateX(100px);
        -ms-transform: translateX(100px);
        transform: translateX(100px); }
    80% {
        -moz-transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -o-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px); }
    100% {
        opacity: 1;
        -moz-transform: translate(0);
        -webkit-transform: translate(0);
        -o-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0); } }
@keyframes moveInBotton {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        -webkit-transform: translateY(30px);
        -o-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px); }
    100% {
        opacity: 1;
        -moz-transform: translate(0);
        -webkit-transform: translate(0);
        -o-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0); }
}

.tecnicos{
    /*width: 8rem;*/
    /*height: 8rem;*/
    /*border-radius: 50%;*/
    /*border: 2px solid #fff;*/
}
.mapa{
    background-image: linear-gradient(to right top , rgba(0, 0, 0, .5), rgba(0,0,0,0.9)),  url("../img/mapamundi.png");
    background-repeat: no-repeat;
    background-position: right;
}
.story {
    display: flex;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
    /*box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);*/
    /*background-color: rgba(255, 120, 255, 0.6);*/
    font-size: 1.3rem;
    padding-top: 1rem;
    padding-left: 2rem;
    /*transform: skewX(-12deg);*/
}
.story__shape {
    width: 10rem;
    height: 10rem;
    -webkit-shape-outside: circle(40% at 40% 40%);
    shape-outside: circle(40% at 40% 40%);
    -webkit-clip-path: circle(40% at 40% 40%);
    clip-path: circle(40% at 40% 40%);
    background-color: orangered;
    position: relative;
}
.story__img {
    height: 100%;
    transform: scale(1.2);
    backface-visibility: hidden;
    transition: all .5s;
}
.story__text {
    /*transform: skewX(12deg);*/
}
.story__caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-70%, 20%);
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    opacity: 0;
    transition: all .5s;
    backface-visibility: hidden;
}
.story:hover .story__caption {
    opacity: 1;
    transform: translate(-70%, -50%);
}
.story:hover .story__img {
    transform: scale(1);
    filter: blur(3px) brightness(80%);
}


