@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}
::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-thumb {
    background: #ff0000;
    border: 0px none #000;
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
    background: #222;
}
::-webkit-scrollbar-thumb:active {
    background: #333;
}
::-webkit-scrollbar-track {
    background: #ddd;
    border: 0px none #ffffff;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    min-height: 1000px;
    width: 100%;
    background: #fff;
    overflow-x: hidden;
}

#banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:#fff;
}
#banner header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#banner header .logo{
    position: relative;
    max-width: 300px;
}
#banner header ul{
    position: relative;
    display: flex;
}
#banner header ul li{
    list-style: none;
}
#banner header ul li a{
    display: inline-block;
    color: #333;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
}
#banner .content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
#banner .content .textBox{
    position: relative;
}
#banner .content .textBox h2{
    color: #333;
    font-size: 1.8em;
    line-height: 1.8em;
    font-weight: 700;
    text-transform: uppercase;
}
#banner .content .textBox h2 span{
    color: #ff0000;
    font-size: 2.5em;
    font-weight: 900;
}
#banner .content .textBox p{
    color: #333;
}
#banner .content .textBox i{
    font-size: 2em;
}
#banner .content .textBox label{
    font-size: 1em;
    font-weight: 600;
}
#banner .content .textBox a{
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #ff0000;
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}
#banner .content .imgBox{
    width: 600px;
    display: flex;
    
    margin-top: 40px;
    justify-content: flex-end;
}
#banner .content .imgBox img{
    max-width: 400px;
}
#banner .thumb{
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
}
#banner .thumb li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.5s;
}
#banner .thumb li:hover{
    transform: translateY(-15px);
}
#banner .thumb li img{
    max-width: 40px;
}
#banner .sci{
    position: absolute;
    bottom: 2%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#banner .sci img{
    width: 80px;
}
#banner .sci li{
    list-style: none;
}
#banner .sci li a{
    display: inline-block;
}
#banner .circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff0000;
    clip-path: circle(600px at right 800px);
}

    @media (max-width: 991px){
        section{
            padding: 40px;
            padding-bottom: 140px;
        }

        #banner{            
            padding-right: 0px;
            padding-left: 0px;
            padding-top: 100px;         
        }

        #banner header{
            padding: 10px 10px;
        }
        #banner header .logo{
            position: relative;
            width: 250px;
        }
        #banner header ul{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: 1;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            visibility: hidden;
            opacity: 0;
        }
        #banner header ul.active{
            visibility: visible;
            opacity: 1;
        }
        #banner header ul li a{
            display: inline-block;
            color: #111;
            font-weight: 400;
            margin-left: 0;
            text-decoration: none;
            font-size: 2em;
            margin: 10px 0;
        }
        #banner header ul li a:hover{
            color: #ff0000;
        }
        #banner .toggleMenu{
            position: relative;
            width: 40px;
            height: 40px;
            background: url('../images/menu.png');
            background-position: center;
            background-size: 30px;
            background-repeat: no-repeat;
            z-index: 2;
            cursor: pointer;
            filter: invert(1);
        }
        #banner .toggleMenu.active{
            background: url('../images/close.png');
            background-position: center;
            background-size: 25px;
            background-repeat: no-repeat;
            filter: invert(1);
        }



        #banner .content{
            flex-direction: column;
            margin-top: 50px;
            left: 0 !important;
            float: left !important;            
        }
        #banner .content .textBox{
            position: relative;
            width: 300px;            
        }
        #banner .content .textBox h2{
            font-size: 0.8em;
            background: #fff;
            padding: 5px;
        }
        #banner .content .textBox a{
            font-size: 10px;
            background: #fff;
            color: #ff0000
        }

        #banner .content .imgBox{
            width: 100%;
            display: flex;
            padding-right: 0;
            margin-top: 50px;
            justify-content: center;
        }
        #banner .content .imgBox img{
            max-width: 250px;
        }
        #banner .thumb{        
            width: 30px;
            justify-content: center;
        }
        #banner .sci{
            position: fixed;
            top: 90%;
            right: 10px;
            width: 50px;            
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }





.about{
    padding: 100px;
    background: #ddd;
}
.about .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
    margin-top: 100px;
}

.about .title h2{
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    color: #000;

    border-left: 10px solid #ff0000;
    text-align: left;
    margin-left: 50px;
    padding: 10px;
}

.about .content{
    display: flex;
    justify-content: space-between;
}
.about .contentBx{
    padding: 50px;
}
.about .contentBx h3{
    font-size: 24px;
    margin-bottom: 10px;
}
.about img{
    width: 500px;
    border: 0;
    float: right;

    margin: 5px;

    -webkit-border-radius: 30px 30px 30px 30px;
    border-radius: 30px 30px 30px 30px;

    border: 10px #fff solid;
}


.galeria_fotos{
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}
.galeria_fotos .content{
    position: relative;
    text-align: center;
    width: 100%;
}
.galeria_fotos .portfolioBx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.galeria_fotos .portfolioBx .card{
    position: relative;
    width: 20%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.galeria_fotos .portfolioBx .card img{
    height: 300px;    
}
.galeria_fotos .portfolioBx .card img:hover{
    height: 450px;   
    transition: 5s;
}

.videos_institucional{
    background: #ff0000;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.videos_institucional .content{
    position: relative;
    text-align: center;
    width: 100%;
}
.videos_institucional .content .box{
    max-width: 800px;
    margin: 0 auto;
}
.videos_institucional .content .box h3{
    font-size: 40px;
    font-weight: 200;
    color:#000;
}
.videos_institucional .videoBox{
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    max-width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
}
.videos_institucional .videoBox .box{
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.videos_institucional .videoBox .box video{
    width: 100%;
}

.services{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.services .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.services .title h2{
    font-weight: 600;
    color: #000;
    font-size: 30px;
    text-transform: uppercase;
}
.services .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.services .boxServices{
    position: relative;
    display: grid;    
    width: 100%;
    margin-top: 20px;
}
.services .boxServices .bx{
    width: 80%;    
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    overflow-x: auto;
    
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;
}
.services .boxServices .bx .iconBx{
    margin-top: 5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.services .boxServices .bx .iconBx img{
    max-height: 300px;
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;
}
.services .boxServices h2{
    width: 100%;
    font-size: 1em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: #000;
}
.services .boxServices p{
    text-align: justify;
    color: #000;
}



.alcance{
    animation: gradient2 10s ease alternate infinite;
    background: #333;
    background: linear-gradient(90deg, #000 0%, #555 35%, #000 100%);
    padding: 150px 100px 100px 100px;
}
    /* background */
    @keyframes gradient2 {
        0%{
            background-position: 0 50%;
        }
        50%{
            background-position: 100% 50%;
        }
        100%{
            background-position: 0 50%;
        }
    }
.alcance .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}
.alcance .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}
.alcance .alcanceBox{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.alcance .alcanceBox .alcanceBx{
    padding: 5px;
}
.alcance .alcanceBox .alcanceBx h2{
    color: #fff;
    font-size: 36px;
    text-align: center;
    width: 300px;
}
.alcance .alcanceBox .alcanceBx h4{
    color: #fff;
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 300px;
}




.conteudo{
    background: #ff0000;
    padding: 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.conteudo .content{
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 60px;
}
.conteudo .content .box{
    max-width: 800px;
    margin: 0 auto;
}
.conteudo .content .box h3{
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 10px;
    color: #fff;    
}
.conteudo .content .box p{
    position: relative;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;    
}
.conteudo .conteudoBx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}
.conteudo .conteudoBx .card{
    position: relative;
    width: 400px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    border: 15px;
    justify-content: center;
    align-items: center;

    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;

    border: #fff 10px solid;
}
.conteudo .conteudoBx .card img{
    filter: brightness(0.5);
    max-height: 400px;
}
.conteudo .conteudoBx .card img:hover{
    filter: none;
    transition: 1s;
}
.conteudo .conteudoBx .card .content{
    position: absolute;
    bottom: 0px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    flex-direction: column;
    background: rgba(255, 187, 0, 0.9);
    padding: 10px;
}
.conteudo .conteudoBx .card .content .contentBx h3{
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 2em;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.1em;    
}
.conteudo .conteudoBx .card .content .contentBx span{
    font-size: 12px;
    color: #000;
}
.conteudo .conteudoBx .card .content .sci{
    position: relative;
    bottom: 10px;
    display: flex;
}
.conteudo .conteudoBx .card .content .sci a{
    list-style: none;
    margin: 0 10px;
    color: #000;
    font-size: 14px;
    list-style: none;
    text-decoration: none;
}


.conteudoBox{
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    min-height: 140vh;
    background: #000;
    padding-top: 20px;
}
.conteudoBox::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #ff0000;
}
.conteudoBox .container{
    position: relative;
    min-width: 90%;
    height: 500px;
    display: flex;
}
.conteudoBox .container .photoinfo{
    position: absolute;
    top: 30px;
    right: 0px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}
.conteudoBox .container .photoinfo img{
    width: 350px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}
.conteudoBox .container .photoinfo i{
    font-size: 200px;
    color: #000;
    padding: 20px;
}
.conteudoBox .container .aboutForm{
    position: absolute;
    padding: 70px 50px;
    background: #fff;
    margin-left: 20px;
    padding-left: 50px;
    padding-right: 150px;
    width: calc(100% - 150px);
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);   
    height: 500px;
}
.conteudoBox .container .aboutBox{
    height: 440px;
    overflow: auto;
    margin-top: -40px;
    padding-right: 150px;
    text-align: justify;
}
.conteudoBox .container .aboutForm h2{
    color: #ff0000;
    font-size: 2em;
    font-weight: 800;
    text-transform: uppercase;
}
.conteudoBox .container .aboutForm h3{
    color: #000;
    
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Verdana", sans-serif;
}
.conteudoBox .container .aboutForm span{
    color: #000;
    font-size: 14px;
    font-family: "Verdana", sans-serif;
}
.conteudoBox .container .aboutForm p{
    padding-right: 20px;
}

.equipe{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.equipe .title{
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}
.equipe .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.equipe .content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.equipe .equipeBx{
    padding: 2px;
}
.equipe .box{
    position: relative;
    width: 250px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipe .box img.foto{
    position: absolute;
    width: 180px;
    border-radius: 50%;
    border: #ff0000 8px solid;
    bottom: 0;
}

.equipe .boxRedes{
    position: relative;
    width: 250px;
    height: 45px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.equipe .boxRedes img.redes{
    width: 40px;
    background: #ff0000;
    border-radius: 50%;
    border: #ff0000 0px solid;
}
.equipe .boxRedes img.redes:hover{
    border: #ff0000 2px solid;
}

.equipe .text{
    position: absolute;
    width: 250px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.equipe .text p{
    font-size: 1em;
    font-weight: 900;
    text-align: center;
}
.equipe .text span{
    font-size: 0.8em;
    text-align: center;
}




.empresas_do_grupo{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.empresas_do_grupo .title{
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}
.empresas_do_grupo .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.empresas_do_grupo .content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.empresas_do_grupo .equipeBx{
    padding: 2px;
}
.empresas_do_grupo .box{
    position: relative;
    width: 350px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.empresas_do_grupo img{
    position: absolute;
    width: 250px;
    background-size: cover;
    bottom: 15px;
}

.empresas_do_grupo .text{
    position: absolute;
    width: 350px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.empresas_do_grupo .text p{
    font-size: 1em;
    font-weight: 900;
    text-align: center;
}
.empresas_do_grupo .text span{
    font-size: 0.8em;
    text-align: center;
}




.parceiros{
    background: #ff0000;
    padding: 100px;
}
.parceiros .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}
.parceiros .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}
.parceiros .content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.parceiros .parceiroBx{
    padding: 5px;
}
.parceiros .circle{
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;

}
.parceiros img{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 150px;
    margin: auto;
    padding: 10px;    
}



.links{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.links .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.links .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.links .content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.links .linkBx{
    padding: 50px;
}
.links .circle{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;

    -webkit-box-shadow: 15px 15px 20px 1px #ddd;
    box-shadow: 15px 15px 20px 1px #ddd;
}
.links a img{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 200px;
    margin: auto;
    padding: 10px;    
}


.videos{
    background: #333;
    background: linear-gradient(148deg, #333 0%, #000 47%, #ddd 100%);
    padding: 150px 100px 100px 100px;
}
.videos .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.videos .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.videos .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.videos .content .videoBx{
    width: 50%;
    padding: 20px;
}
.video .content .vidoeBx iframe{
    width: 100%;
}

.depoimentos{
    width: 100%;
    background: #ff0000;
    padding: 150px 100px 100px 100px;
}
.depoimentos .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.depoimentos .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.depoimentos .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.depoimentos .content .depoimentoBx{
    width: 45%;
    padding: 20px 20px;
    margin: 15px;
    background: #000;

    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}
.depoimentos .content .depoimentoBx p{
    color: #fff;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
}
.depoimentos .content .depoimentoBx h3{
    margin-top: 40px;
    text-align: end;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
}
.depoimentos .content .depoimentoBx h3 span{
    font-size: 14px;
    font-weight: 400;
}

.contact{
    background: #ddd;
    padding: 150px 100px 100px 100px;
}
.contact .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.contact .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.contact .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact .content .formBx{
    width: 60%;
}
.contact .content .formBx form{
    display: flex;
    flex-direction: column;
}
.contact .content .formBx form h3,
.contact .content .contactInfo h3{
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.contact .content .formBx form input,
.contact .content .formBx form textarea{
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 5px 5px 15px;
    font-size: 16px;
    border: none;
    outline: none;
    background: #fff;
    color: #000;
    resize: none;

    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}
.contact .content .formBx form textarea{
    min-height: 100px;
}
.contact .content .formBx form input::placeholder,
.contact .content .formBx form textarea::placeholder{
    color: #999;
}
.contact .content .formBx form input[type="submit"]{
    max-width: 200px;
    padding: 20px;
    margin-top: 15px;
    background: #333;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 5px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}
.contact .content .formBx form input[type="submit"]:hover{    
    background: #ddd;   
    color: #333;
}
.contact .content .contactInfo{
    width: 40%;
    padding-left: 30px;
}
.contact .content .contactInfoBx{
    position: relative;
}
.contact .content .contactInfoBx .box{
    position: relative;
    padding: 10px 0;
    display: flex;
}
.contact .content .contactInfoBx .box .icon{
    min-width: 40px;
    padding-top: 4px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}
.contact .content .contactInfoBx .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 18px;
    color: #000;
    flex-direction: column;
    font-weight: 600;
    height: 40px;
}
.contact .content .contactInfoBx .box .text2{
    display: flex;
    margin-left: 20px;
    font-size: 18px;
    color: #000;
    flex-direction: column;
    font-weight: 600;
    height: 80px;
}
.contact .content .contactInfoBx .box .text h3{
    font-weight: 500;
    color: #333;
}

.credit{
    background: #fff;
    width: 100%;
    height: 80px;
    padding-top: 10px;
}
.credit .box{
    width: 50%;
    float: left;
    background: #fff;
    height: 80px;
    padding-left: 70px;
}
.credit .box .cadeado{
    padding-left: 60px;
    margin-top: 10px;
}
.credit .box .copyright{
    color: #000;
    text-align: left;
    padding-left: 60px;
    font-size: 16px;
}
.credit .box .copyright a{
    color: #333;
}
.credit .box .credit{
    color: #000;
    text-align: right;
    padding-right: 120px;
    font-size: 16px;
}
.credit .box .credit a{
    color: #333;
}

    
    @media (max-width: 991px){


        .background_01{
            background-size: 350% 100%;            
        }
        .background_02{            
            background-size: 350% 100%;            
        }       

        section{
            padding: 20px 30px;
        }

        .about{
            padding-top: 100px;
            padding-left: 0px;
            padding-right: 0px;
            padding-bottom: 20px;
            background: #ddd;
        }        
        .about .content{
            flex-direction: column;            
        }
        .about img{
            width: 95%;
            float: left;
            border: 3px #fff solid;
        }




        .galeria_fotos .portfolioBx .card{
            width: 100%;          
        }
        .galeria_fotos .portfolioBx .card img{
            height: 300px;
            width: 1000px;   
        }

        
        .services{           
            padding: 120px 10px 10px 10px;
        }
        
        .services .boxServices .bx{
            width: 90%;    
            padding: 10px;            
        }
        


        .equipe .box{
            height: 250px;           
        }

   


        .conteudo{
            padding: 10px;            
        }
        .conteudo .conteudoBx .card{
            width: 100%;
            height: 400px;            
        }
        .conteudo .conteudoBx .card img{
            max-height: 400px;
        }

        .conteudoBox .container{
            margin-top: 200px; 
            height: 650px; 
        }


        .conteudoBox .container .aboutForm{
            padding: 200px 30px 30px 20px;
            margin-left: 5px;
            width: 100%;
            height: 700px;
        }
        .conteudoBox .container .aboutForm h2{
            font-size: 1em;            
        }
        .conteudoBox .container .aboutForm h3{
            font-size: 14px;            
        }
        .conteudoBox .container .aboutForm span{
            font-size: 12px;            
        }
        .conteudoBox .container .photoinfo{
            top: -60px;     
            left: -30px;       
        }
        .conteudoBox .container .photoinfo img{
            width: 150px;
            
        }

        .alcance{
            padding: 15px 10px 10px 10px;
        }
        .alcanceBox{            
            grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));                      
        }
        .alcanceBox .box{
            width: 100%;
        }

        .videos{
            padding: 15px 10px 10px 10px;
        }
        .videos .content .videoBx{
            width: 100%;
            padding: 10px;
        }
        .videos .content .videoBx iframe{
            width: 100%;
        }
        
        .depoimentos{            
            padding: 15px 10px 10px 10px;
        }
        .depoimentos .content .depoimentoBx{
            width: 100%;
        }

        .contact{
            padding: 120px 20px 20px 20px;
        }
        .contact .content .contactInfo{
            width: 100%;
        }        
        .contact .content .formBx{
            width: 100%;
        }

        .contact .content .contactInfoBx .box .text{            
            font-size: 16px;
            height: 40px;
        }
        .contact .content .contactInfoBx .box .text2{           
            font-size: 14px;            
            height: 110px;
        }


        .credit{ 
            margin-top: 30px;           
            padding-top: 30px;
        }
        .credit .box{
            width: 100%;           
            height: 80px;
            padding-left: 0px;
        }
        .credit .box .cadeado{
            padding-left: 0px;
            margin-top: 10px;
        }
        .credit .box .copyright{
            color: #000;
            text-align: left;
            padding-left: 0px;
            font-size: 16px;
            width: 100%;
        }
        .credit .box .copyright a{
            color: #333;
        }
        .credit .box .credit{
            color: #000;
            text-align: right;
            padding-right: 0px;
            font-size: 16px;
            width: 100%;
        }        
    }


