@import url(/style/colors.css);

@import url(/style/fonts.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}


html,
body {
    height: auto;
    width: 100%;
}


::-webkit-scrollbar {
    width: 10px;
    height: 90px;
}

::-webkit-scrollbar-thumb {
    background: #d3cdcd;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}



.navbar-light #navbarSupportedContent {
    justify-content: flex-end;
}

nav ul li {
    height: auto;
    width: auto;
    padding: 0.4rem 0.1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li:hover {
    background: var(--colorHover);
    border-bottom: 2px solid var(--borderColor);
}

nav ul li a {
    font-weight: bolder;
}


.container .logo img {
    height: 5rem;
    width: 100%;
}

.dropdown-menu {
    width: 100%;
}

.hero {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero .container .hero-text-about {
    height: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container .hero-text-about p {
    color: white;
    font-size: 38pt;
    padding-top: 15rem;
    padding-bottom: 14.50rem;
    position: relative;
    top: 65px;
    border-right: 2px solid transparent;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0);
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
}

.hero .overley {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.titulo {
    color: black;
    font-weight: bold;
    font-size: 1.3rem;
}

.conteudo-titulo {
    display: flex;
    align-items: center;
    height: auto;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 0.7rem;
}

.conteudo-titulo img {
    height: 60px;
    margin: 0px 40px 0px 0px;
}

.conteudo-texto {
    text-align: justify;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.068);
    border-radius: 10px 10px 0px 0px;
    transition: max-height 1.4s ease;
}


.conteudo-texto img {
    height: 60px;
    margin: 0px 40px 0px 0px;
    position: relative;
    left: 30px;
    display: none;
}

.conteudo-texto p {
    padding: 1rem;
}

.pilar {
    cursor: pointer;
    border-bottom: #800B09 solid 2px;
}

.pilar.active .conteudo-texto {
    max-height: 0px;
    display: block;
}

svg {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.pilar.active svg {
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

#abctech {
    height: 90px;
    width: 110px;
    position: relative;
    top: 10px;
    left: 10px;
}

#abctech-mobile {
    height: 70px;
    width: 110px;
    position: relative;
    top: 8px;
    left: 45px;
}

#ASVSB {
    height: 90px;
    width: 100px;
}

#jarvis {
    height: 90px;
    width: 150px;
}


footer {
    margin-top: 5rem;
    position: relative;
    bottom: 0;
}

footer #myForm {
    display: flex;
    align-items: left;
    justify-content: left;
    flex-direction: column;
}

footer #myForm .text {
    color: #fff;
    height: auto;
    width: 100%;
    display: flex;
    align-items: left;
    justify-content: left;
    flex-direction: column;
}

footer #myForm .input-nome {
    width: 100%;
    height: auto;
}

footer #myForm .input-nome input {
    padding: 0.50rem;
    width: 100%;
    border: none;
    outline: none;
}

footer #myForm .input-email {
    width: 100%;
    height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

footer #myForm .input-email input {
    padding: 0.50rem;
    width: 100%;
    border: none;
    outline: none;
}


footer #myForm .input-btn {
    width: 100%;
    height: auto;
}

footer #myForm .input-btn input {
    width: 100%;
    border: none;
    outline: none;
    background: #A61213;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.50rem;
    transition: all 0.3s ease-in-out;
}

footer #myForm .input-btn input:hover {
    background: #b41515;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.288);
    border-radius: 10px;
    cursor: pointer;
}

.span-required-footer {
    display: none;
    margin: 3px 0 0 1px;
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
}

footer .container .icones {
    margin-top: 2rem;
    text-align: left;
}


footer .container .icones img {
    margin-right: 10px;
}



@media Screen and (max-width: 1200px) {

    .conteudo-titulo img {
        display: none;
    }

}

@media Screen and (max-width: 1200px) {

    .conteudo-texto img {
        height: 60px;
        margin: 0px 40px 0px 0px;
        position: relative;
        left: 30px;
        display: inline-block;
        padding-bottom: 10px;
    }

    .imagem-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 1rem;

    }

}