// Fonts
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

*{
    font-family: 'Open Sans', sans-serif;
}

body{
    position: relative;
    color: #1b2a4e;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
}
.background-black{
    background-color: black;
}
.background-orange{
    background-color:#f36f21;
}
.background-blue{
    background-color: #00bce7;
}
.vertical-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    color: #1b2a4e;
}
.simple-text h2{
    color: #fff!important;
}
h1,h2{
    font-size: 28px;
}
p{
    font-weight: 300;
    font-size: .9rem;
}
h4{
    font-size: 20px;
}
/**
    * CSS DO MENU
**/
.menu-tab {

    /*height: 70px;*/
    /*position: fixed;*/
    z-index: 100;
    top: 0px;
    /*left: 0px;*/
    cursor: pointer;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    /*end of div*/
}
.menu-tab div {
    width: 33px;
    height: 4px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.menu-tab{
    background-color: #1b2a4e;
    padding: 10px;
    border-radius: 15px;
}

/*.menu-tab div:nth-child(1) {*/
    /*margin-top: 20px;*/
/*}*/
/*end of menu-tab*/

.menu-tab.active {
    /*left: 345px;*/
    transform: translateX(235px);
    -webkit-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    position: relative;
}

.menu-tab.active #one {
    -webkit-transform: translateY(9px) rotate(-135deg);
    transform: translateY(9px) rotate(-135deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: white;
}

.menu-tab.active #two {
    opacity: 0;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}

.menu-tab.active #three {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: white;
}

.menu-hide {
    width: 345px;
    left: -345px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    top: 0px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    /*end of nav*/
}

.menu-hide nav {
    /*end of ul*/
    height: 100%;
}

.menu-hide nav ul {
    /*end of li*/
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-hide nav ul li {
    /*height: 70px;*/
    list-style-type: none;
    text-align: left;
    /*line-height: 70px;*/
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.menu-hide nav ul li:not(.no-hover):hover, .menu-hide nav ul li.active {
    background-color: #fdb813;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.menu-hide nav ul li a {
   padding:0;
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 600;
    font-size: 18px;
}
/*end of menu-hide*/
.menu-hide.show {
    left: 0px;
    background-color: #1b2a4e;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
navbar{
    /*height: 100px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}
navbar .social{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
navbar .social a i{
    border: 2px solid black;
    color: black;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
navbar .mobile-social a i {
    border: 2px solid white;
    color: white;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

navbar .social a:hover i{
    color: black;
    text-decoration: none;
}
navbar .mobile-social a:hover i{
    color: #f36f21;
    text-decoration: none;
}

.carousel-item {
    height: 100%;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-item .carousel-caption{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.carousel-item .carousel-caption-banner{
    height: 100%;
    display: flex;
}
.carousel-item .carousel-caption hr{
    height: 1px;
    background-color: white;
    width: 5%;
}
.overlay{
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.25);
}

p.lead{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

section.simple-text .text-container-home{
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


section.simple-text .text-container p strong, section.simple-text .text-container-home p strong, section.simple-text .text-container strong, section.simple-text .text-container-home strong{
    font-weight: 600!important;
}

section.image-text .background-image{
    min-height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section.image-text .background-image:after{
    content: '';
    background-color: rgba(0, 0, 0, 0.25);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section.image-text .content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.image-text .content ul{
    padding-right: 2rem;
}
section.image-text .content ul li{
    color: white;
    text-align: justify;
}

section.image-text h3{
    font-size: 35px;
    font-weight: 800;
}

section.image-text h6{
    font-size: 17px;
    color: white;
    font-weight: 800;
    text-align: center;
}
section.image-text p{
    font-size: 17px;
    font-weight: 600;
    color: white;
    padding-left: 3rem;
    padding-right: 3rem;
}

.footer{
    background-color: #FFF6D5;
    font-size: .8rem;
}

footer .vertical-center{
    height: 80px;
}

footer .vertical-center a{
    color: black;
    text-decoration: none;
}

footer .vertical-center a:hover{
    color: black;
    text-decoration: none;
    }

footer .vertical-center a img{

    filter: invert(100%);

    height: 18px;

    margin-bottom: 3px;

    margin-left: 3px;

}



footer .financiamento{

    height: 80px;

    margin: auto;

    border-top: 1px solid black;

    display: flex;

    align-items: center;

    justify-content: center;

}
footer .financiamento img{
    max-height: 80px;
    max-width: 100%;
}





/*ENQUADRAMENTO*/

header .page-banenr{

    height: calc(100vh - 115px);

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    background-size: cover;

    background-position: center bottom;

    background-repeat: no-repeat;

}

header .page-banenr:before{

    content: '';

    background-color: rgba(0,0,0,0.4);

    height: 100%;

    width: 100%;

    position: absolute;

    top: 0;

    left: 0;

}

section.gallery .background-image{

    min-height: 470px;

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

}

.background-area{

    min-height:250px ;

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

}

section.gallery .background-image:after{

    content: '';

    background-color: rgba(0, 0, 0, 0.25);

    height: 100%;

    width: 100%;

    position: absolute;

    top: 0;

    left: 0;

}

section.gallery .background-image a{

    z-index: 1;

    display: block;

    height: 100%;

    width: 100%;

    position: relative;

}



.ekko-lightbox.modal .modal-body{

    padding: 0;

    border: none;

}

.ekko-lightbox-nav-overlay {

    padding: 0;

}

section.acordeao .accordion .card-header .card-title{

    font-size: 30px;

    font-weight: 800;

    font-family: 'Open Sans', sans-serif;

    color: black;

}

section.acordeao .accordion .card-header:after {

    font-family: 'Open Sans', sans-serif;

    content: "\f068";

    float: right;

    font-size: 25px;

    color: black;

    margin-top: 5px;

}

section.acordeao .accordion .card-header.collapsed:after {

    /* symbol for "collapsed" panels */

    content: "\f067";

}









.component-accordion {

    margin: 30px 0;

}

.component-accordion .panel-group .panel-heading h4 {

    margin: 0;

    border: 1px solid black;

}

.component-accordion .panel-group .panel-title a {

    color: #000000;

    display: block;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.5;

    position: relative;

    padding: 15px;

    transition: color .2s ease-in-out;
    padding-right: 5rem!important;

}

.component-accordion .panel-group .panel-title a:hover {

    text-decoration: none;

}

.component-accordion .panel-group .panel-title a.collapsed::after, .component-accordion .panel-group .panel-title a::after {

    content: "\f067";

    font-family: 'Open Sans', sans-serif;

    font-size: 30px;

    line-height: 60px;

    padding-left: 20px;

    position: absolute;

    right: 3rem;

    top: 0;

    height: 100%;

    display: flex;

    align-items: center;

}

.component-accordion .panel-group .panel-title a:after {

    content: "\f068 ";
    font-family: 'Open Sans', sans-serif;

}

.component-accordion .panel-body {

    border: 1px solid black;

    border-top: none;

}

.component-accordion .panel-body p{

    color:black;

    font-size: 15px;

}

footer .first-footer{

    margin-bottom: 80px;

}

.sticky-footer{

    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: white;

}

.sticky-top{
    background-color: white;
    box-shadow: 0px 0px 13px -5px rgba(0,0,0,0.7) inset;
}

.simple-text i{
    color: black;
}

.contactos .container{
    margin: 100px auto;
}

.associados .box{
    padding: 100px;
}
.carreiras .box{
    padding: 25px;
}
.carreiras .box h4{
    margin-bottom: 1rem!important;
}
.associados .box .btn-light{
    margin-top: 50px;
    padding: 15px 35px;
    border-radius: 30px;
    color: black !important;
    background-color: white !important;
}

.contactos a{
    color: black;
}

.contactos a:hover{
    color: black;
    text-decoration: none;
}

.contactos i{
    border: 2px solid black;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    font-size: 40px;
    line-height: 95px;
}
.carreiras a i{
    border: 2px solid black;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 25px;
    line-height: 45px;
}
.carreiras a{
    color: black;
}

h3{
    font-size: 28px;
}
.area .container > .row:not(:last-child){
    margin-bottom: 15px;
}

.logo img{
    max-height: 100px;
}
.header-text{
    font-size: 11px;
    color: #1b2a4e;
}
.cta{
    background-color: #fdb813;
    color: #fff;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #fdb813;
    padding: 5px 20px;
    font-size: 18px;
}
.cta:hover{
    background-color: #fff;
    color: #fdb813;
}
.cta2{
    background-color: #1b2a4e;
    color: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 5px 20px;
    font-size: 18px;
    border: 1px solid #1b2a4e;
}
.cta2:hover{
    background-color: #fff;
    color: #1b2a4e;
    border-color: #1b2a4e;
}
.accordion .card-header{
    background-color: #fff;
}
.accordion button{
    text-decoration: none!important;
    color: #1b2a4e;
    font-weight: 900;
    font-family: 'Open Sans', sans-serif;
}
.accordion button:hover, .product .contacts a:hover{
    color: #fdb813;
}
.accordion .card-body{
    font-weight: 700;
    font-size: .9rem;
}
.contact input{
    border-radius: 0;
    color: #1b2a4e;
    text-align: center;
    border: 1px solid #1b2a4e;
}
a.politica, .product .contacts a{
    color: #1b2a4e;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #1b2a4e;
}
#successModal .modal-header{
    color: #fff;
    background-color: #1b2a4e;
}
a:hover{
    text-decoration: none;
}
form input[type=submit], form button{
    cursor: pointer;
}
.carousel-inner{
    height: 100%;
}
navbar .mobile-social a i:hover, navbar .social a i:hover{
    border-color: #fdb813;
    color: #fdb813;
}
.footer{
    color: #000;
}
.product .image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-filter{
    color: #1b2a4e;
    text-transform: uppercase;
}
.category-filter:hover{
    color: #fdb813;
}
.filter-cat{
    transition: all .3s ease-in-out;
}
a.anchor{
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}
html,body{
    scroll-behavior: smooth;
}
.listing .dropdown-toggle.filter{
    text-transform: uppercase;
}


@media (min-width: 768px){

    header .page-banenr{
        height: calc(100vh - 150px);
    }
    .logo img{
        max-height: 150px;
    }
    .header-text{
        font-size: 13px;
    }
    .carousel-item .carousel-caption-banner{
        padding: 3rem 0 0 3rem;
        align-items: baseline;
    }
    div.anchor{
        top: -220px;
    }
    .category-filter{
        font-size: 20px;
    }
}

@media (min-width: 992px){

    header .page-banenr{
        height: 50vh;
    }
    .mobile-social{
        display: none;
    }
    .carousel-item .carousel-caption-banner{
        padding-left: 150px;
    }
}

@media (min-width: 1200px){
    .carousel-item .carousel-caption-banner{
        padding-left: 250px;
    }
}