/* Global */
* {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

iframe {
    width: 30rem;
    height: 20rem;
}

.text-justify-left {
    text-align: justify;
    text-align-last: left
}

.navbar-icon {
    color: #7C7C7D;
    border: 2px solid rgba(124, 124, 125, .5);
    border-radius: 10px;
    padding: 10px 15px;
}
.nav-link{
    color: #000 !important;
}

#logo-navbar {
    width: 300px;
    padding: 20px;
}

@media (max-width: 992px) {
    .nav-item {
        padding-left: 20px;
    }

}

@media (max-width: 768px) {
    .navbar-icon {
        color: #7C7C7D;
        border: 2px solid rgba(124, 124, 125, .5);
        border-radius: 10px;
        padding: 2px 8px;
        margin-top: 5px;
    }

}

@media (max-width: 575.98px) {
    .navbar-icon {
        color: #7C7C7D;
        border: 2px solid rgba(124, 124, 125, .5);
        border-radius: 10px;
        padding: 5px 7.5px;
        margin-top: 5px;
    }

    .navbar-brand {
        width: 70%;
    }

    #logo-navbar {
        width: 200px;
    }
}



/* ENVIANDO FORM */
#enviando-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100vh;
    display: none;
}

#enviando-form.active {
    display: block;
}

#enviando-form .wrapper {
    width: 200px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#enviando-form .circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

#enviando-form .circle:nth-child(2) {
    left: 45%;
    background-color: #292b2c;
    animation-delay: .2s;
}

#enviando-form .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
    background-color: #0275d8;
}

#enviando-form .shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

#enviando-form .shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

#enviando-form .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

#enviando-form .wrapper span {
    position: absolute;
    top: 75px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    width: 400px;
    left: -50%;
    text-align: center;
}

@media (max-width: 576px) {
    #enviando-form .wrapper span {
        width: 280px;
        left: -20%;
    }

}

/* Left menu */
.left-menu {
    padding: 0;
    border: 1px solid red;
    margin-left: 100px;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-sort-up {
    transform: rotate(90deg);
}

/* Header */

/* #header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
} */

#margin-header {
    margin-top: 50px;
}

.bold {
    font-weight: bold;
}

#moderni {
    padding: 40px 0;
    background-color: #F8F9FA;
    margin-top: 40px;
}

/* footer */
footer img {
    width: 200px;
}

footer div.main {
    background-color: #f3f3f3;
}

#links-rapidos ul li a {
    font-weight: 600;
}

@media (max-width: 992px) {
    #duvida {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    #redes-sociais {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {

    #margin-header {
        margin-top: 50px;
    }

    #links-rapidos {
        margin-top: 10px;
    }

    #redes-sociais {
        margin-top: 20px;
    }

    #duvida {
        margin-top: 20px;
    }
}

/* Adiciona a lupa no input file, da página "Trabalhe conosco" */
#input-file-btn::after {
    content: '';
    background: url(/public/assets/images/singel/search-solid.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 15px;

}


#pagina-links {
    position: fixed;
    z-index: 999;
    bottom: 80px;
    right: 30px;
}

#minimizar-pagina-links {
    cursor: pointer;
    transition: all 4s;
}

#btn-pagina-links {
    transition: all 4s;
}

#contatos-icones:active {
    background-color: #F8F9FA;
}

.zap-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

#footer-alguma-duvida {
    border-radius: 40px;
    padding: 10px 40px;
    font-size: 1.2em;
    font-weight: 600;
}


.container {
    max-width: 1300px;
}


/* Instalacoes-e-montagens */
.gray-background {
    background-color: #F8F9FA;
    padding: 20px;

}

.navbar {
    padding: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar img {
    width: 130px !important;
    display: inline-block;
}

/* CLIENTES */
#clientes {
    padding-bottom: 20px;
}

#clientes .owl-nav,
#clientes .owl-dots {
    display: none;
}

/* INFOS */
#infos {
    padding: 40px 0;
    background-color: #2d3338;
}

#infos ul {
    display: flex;
    justify-content: center;
    margin: 0;
}

#infos ul li {
    width: 23%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 5px;
    padding: 10px;
    background-color: #fff;
}

#infos ul li:nth-child(2) .head {
    margin-bottom: 68px;
}

#infos ul li h3 {
    font-size: 1.3rem;
}

#infos ul li .head i {
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
    border-radius: 50%;
    background-color: #031168;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

#infos ul li .content i {
    font-size: .3rem;
}

@media (max-width: 992px) {
    #infos ul {
        flex-wrap: wrap;
    }

    #infos ul li {
        width: 100%;
    }
}

.base-tabela {
    padding: 40px 0;
}

.base-tabela h3 {
    font-size: 1.4rem;
    font-weight: 400;
}

.base-tabela h2 {
    font-size: 1.5rem;
}

.base-tabela h4 {
    font-size: 1.3rem;
    font-weight: 400;
}

.base-tabela p,
.base-tabela h3,
.base-tabela h2,
.base-tabela h4 {
    text-align: center;
}

.base-tabela .table {
    margin-bottom: 40px;
}

.base-servicos {
    padding: 40px 0px;
    background-color: #f8f8f8;
}

.base-servicos h2 {
    text-align: center;
}

.base-servicos h3 {
    font-size: 1.3rem;
    color: #2980b9;
}

.base-servicos h4 {
    font-size: 1.2rem;
}

.base-servicos .card-base {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.base-produtos {
    background-color: #f8f8f8;
    padding: 40px 0;
}

.base-produtos h1 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.base-produtos .card-produto {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.base-produtos .card-produto .head img {
    width: 100%;
    max-width: 300px;
    object-fit: contain;
    display: blocks;
}

.base-produtos .card-produto .head.img-lg {
    width: 70%;
}

.base-produtos .card-produto .content {
    margin-left: 20px;
}

.base-produtos .card-produto .content h3 {
    font-size: 1.3rem;
}

.base-produtos .card-produto .content ul {
    padding: 0;
    margin: 0;
}

.modal ul {
    padding: 0;
    margin: 0;
}

/* HOME */
#home img {
    border-bottom-left-radius: 20%;
    border-top-right-radius: 20%;
    object-fit: cover;
}