body {
    color: var(--dark);
}

* {
    font-family: 'Montserrat', sans-serif;
}

p {
    letter-spacing: 0.01em;
}

b {
    font-weight: 600;
}

pri {
    color: var(--primary) !important;
}

sec {
    color: var(--secondary) !important;
}

ter {
    color: var(--tertiary) !important;
}

.cor-primary, text-primary {
    color: var(--primary) !important;
}

.cor-secondary, text-secondary {
    color: var(--secondary) !important;
}

.cor-tertiary, text-tertiary {
    color: var(--tertiary) !important;
}

.cor-cinza-azul {
    color: var(--cinza-azulado) !important;
}

.bg-cinza-azul {
    background-color: var(--cinza-azulado) !important;
    transition: all 0.1s ease-out;
}

.bg-cinza-azul:hover {
    color: var(--cinza-azulado-2) !important;
    background-color: transparent !important;
    border: 1px solid var(--cinza-azulado-2) !important;
}

.cor-cinza-azul-2 {
    color: var(--cinza-azulado-2) !important;
}

.bg-cinza-azul-2 {
    background-color: var(--cinza-azulado-2) !important;
}

.cor-castanho {
    color: var(--castanho) !important;
}

.bg-castanho {
    background: var(--castanho) !important;
}

.cor-laranja {
    color: var(--laranja) !important;
}

.bg-laranja {
    background: var(--laranja) !important;
}

.cor-verde {
    color: var(--verde) !important;
}

.bg-verde {
    background: var(--verde) !important;
}

.cor-vermelho {
    color: var(--vermelho) !important;
}

.bg-vermelho {
    background: var(--vermelho) !important;
}

.cor-branco {
    color: var(--branco) !important;
}

.bg-branco {
    background: var(--branco) !important;
}

.cor-dark {
    color: var(--dark) !important;
}

.bg-dark {
    background: var(--dark) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 100px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

/*.btn.btn-primary,*/
/*.btn.btn-secondary,*/
/*.btn.btn-tertiary {*/
/*    color: #FFFFFF;*/
/*}*/

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 15px;
    margin-left: 15px;
    padding: 8px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    transition: 0.5s ease-in-out;
    transition: font-weight 0s ease-in-out;
}


.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--light);
    font-weight: 700;
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light);
    font-weight: 300;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

.offset-lang {
    margin-top: 0px;
    margin-left: 20px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .img-sobre-bg {
        background-image: url('../../img/asdfggh.jpg');
        background-size: 42%;
        background-position: right;
        background-repeat: no-repeat
    }

    .offset-lang {
        margin-top: 65px;
        margin-left: -3px;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
    border-radius: 50%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--branco);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
    border-radius: 50%;
}

/*.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FAAF3B;
    border: 1px solid #FFFFFF;
    border-radius: 50%;

}*/

.header-carousel .owl-dot.active {
    background: var(--tertiary);
    border-color: var(--branco);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

/*.breadcrumb-item + .breadcrumb-item::before {*/
/*    color: var(--light);*/
/*}*/


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    #navbarCollapse {
        opacity: 1 !important;
    }
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}
.bg-langs {
    transition: background-color 0.5s ease;
}
.scrolled .bg-langs {
    background-color: #FFF !important;
}
@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: .1s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    /*color: var(--primary);*/
    /*border-color: var(--primary);*/
    color: rgba(255, 255, 255, 1);
    font-weight: 600 !important;
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: transparent;
}

.portfolio-item .portfolio-overlay-effect {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 100%;
    bottom: 0;
    left: 50%;
    background-color: var(--tertiary);
    opacity: 80%;
    transition: .3s ease-in-out;
}

.portfolio-item:hover .portfolio-overlay-effect {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-overlay .container {
    z-index: 2;
}

.portfolio-img {
    min-height: 420px !important;
}


.portfolio-item:hover .portfolio-overlay .btn, .portfolio-item:hover .portfolio-overlay .portfolio-text {
    opacity: 1;
}

.portfolio-text {
    opacity: 0;
    transition: 0.3s;
}

.portfolio-container {
    max-height: 98vh;
}

@media (max-width: 991px) {
    .portfolio-container {
        max-height: 720px;
    }
    .mobile-h200 {
        height: 200px;
    }
    .portfolio-img {
        min-height: 360px !important;
    }
}

/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.h-md-100 {
    height: 50%;
}
.bg-md-cover {
    background-position: center !important;
    background-size: cover !important;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }

    .bg-md-cover {
        background-position: center !important;
        background-size: contain !important;
    }
    .h-md-100 {
        height: 100%;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: #fff;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--primary);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.pointer {
    cursor: pointer;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

nav {
    -webkit-transition: background-color 250ms linear;
    -moz-transition: background-color 250ms linear;
    -o-transition: background-color 250ms linear;
    -ms-transition: background-color 250ms linear;
    transition: background-color 250ms linear;
}

.bg-transparent {
    color: var(--primary);
    color: #fff;
}

.normal-logo {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.menu-open .normal-logo, .scrolled .normal-logo {
    opacity: 0;
}

.scrolled-logo {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.menu-open .scrolled-logo, .scrolled .scrolled-logo {
    opacity: 1;
}

.menu-open {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0) !important
    /*transition: none !important;*/
}

.menu-open, .scrolled {
    background-color: rgba(255, 255, 255, 1) !important;
    position: sticky !important;
    top: 0px;
    color: var(--primary);
}

.navbar-toggler i {
    color: #ffffff;
    transition: all 0.3s ease;
}
.menu-open .navbar-toggler i, .scrolled .navbar-toggler i {
    color: #484c4a !important;
}
.navbar-light .navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.rotate-90 {
    transform: rotate(90deg);
}

.menu-phone {
    position: relative;
    bottom: -3px;
}

.offcanvas {
    background: #29AAE1;
}

.h-60vh {
    height: 60vh !important;
}

.h-70vh {
    height: 70vh !important;
}

.laranja {
    color: var(--laranja);
}

.owl-carousel-item h2 {
    color: var(--primary);
}

.btn-orange {
    background-color: var(--laranja) !important;
    color: var(--light);
    border: 1px solid var(--laranja) !important;
    padding: 8px 30px;
    font-size: 14px;
    text-transform: capitalize;
}

.btn-orange:hover {
    background-color: transparent !important;
    color: var(--laranja) !important;
    font-weight: 700;
}

.offcanvas-body {
    flex-grow: 5;
}

.offcanvas-footer {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
}

.offcanvas-footer img {
    max-width: 40px;
    height: auto;
}

.offcanvas-footer img:hover {
    filter: grayscale(100%);
}

.text-justify {
    text-align: justify !important;
}

.mod_separador {
    height: 400px;
}

.mod_separador .container {
    height: 100%;
}

.mod_separador .container .row {
    height: 100%;
}

.mod_separador img {
    max-width: 80px;
}

h3 {
    font-weight: 300;
}

.slick-next {
    position: absolute;
    right: 30px;
    top: 50%;
    z-index: 99;
    background: transparent;
    border: none;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
}

.slick-prev {
    position: absolute;
    left: 30px;
    top: 50%;
    z-index: 99;
    background: transparent;
    border: none;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
}

.orcamentos .item {
    height: 350px;
}

.orcamentos .item img {
    max-width: 65px;
}

.centrar {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.btn-light {
    background: var(--light);
    border: 1px solid #29AAE1;
    padding: 5px 40px;
    color: #29AAE1;
}

.btn-light:hover {
    background: var(--primary);
    color: var(--light) !important;
    border-color: var(--primary);
}

.fs-14 {
    font-size: 14px !important;
}

.text-muted {
    color: #808080 !important;
}

.list-group li::marker {
    display: none !important;
    color: #fff;
}

.footer ul li {
    padding: 0 0 5px 0;
}

#mod_home_sobre img {
    transition: -webkit-transform 1s ease-in;
    -webkit-transform-style: preserve-3d;
}

#mod_home_sobre .col:hover img {
    -webkit-animation: flipHeads 10s ease-out forwards;
    -moz-animation: flipHeads 10s ease-out forwards;
    -o-animation: flipHeads 10s ease-out forwards;
    animation: flipHeads 10s ease-out forwards;
}

@-webkit-keyframes flipHeads {
    from {
        -webkit-transform: rotateY(0);
        -moz-transform: rotateY(0);
        transform: rotateY(0);
    }
    to {
        -webkit-transform: rotateY(1800deg);
        -moz-transform: rotateY(1800deg);
        transform: rotateY(1800deg);
    }
}

.orcamento_banner {
    height: 400px;
}

.orcamento_caminho ul li {
    color: var(--dark);
}

.orcamento_caminho ul li::after {
    content: '';
    background-color: var(--dark);
    height: 1px;
    width: 50px;
    display: inline-block;
    margin: 0 10px;
    position: relative;
    top: -3px;
}

.orcamento_caminho ul li:last-child::after {
    display: none;
}

.orcamento_caminho ul li span {
    height: 30px;
    width: 30px;
    display: inline-block;
    border: 1px solid var(--dark);
    border-radius: 50%;
    text-align: center;
    line-height: 27px;
    margin-right: 5px;
}

.orc_ativo {
    color: var(--primary) !important;
    font-weight: 600;
}

.orc_ativo span {
    border-color: var(--primary) !important;
}

.h-250 {
    height: 250px;
}

.h-200 {
    height: 200px;
}

.orc_item {
    border: 1px solid var(--laranja);
    position: relative;
    cursor: pointer;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), var(--mybg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.orc_item_full {
    border: 1px solid var(--light);
    position: relative;
    cursor: pointer;
    background: var(--mybg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 3px solid #fff;
}

.orc_item:hover {
    background: linear-gradient(rgba(250, 175, 59, 0.8), rgba(250, 175, 59, 0.8)), var(--mybg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.orc_item:active, .orc_item:focus {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), var(--mybg);
}

.orc_item .text-center {
    color: var(--laranja);
    font-weight: 600;
    width: 100%;
    display: inline-block;
}

.orc_item_full .text-center {
    color: var(--light) !important;
    font-weight: 600;
    width: 100%;
    padding: 0 15px;
    display: inline-block;
}

.orcamento_select .col {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

/* Hide the browser's default checkbox */
.orc_check {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid var(--dark);
    border-radius: 50%;
}

.check2 {
    position: relative;
    height: 20px;
    width: 20px;
    top: 5px;
    right: inherit;
    background-color: #fff;
    border: 1px solid var(--dark);
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

/* On mouse-over, add a grey background color */
.orc_item:hover .text-center {
    color: #fff;
}

.orc_item:hover img {
    filter: brightness(0) invert(1);
}

/* When the checkbox is checked, add a blue background */
.orc_check:checked ~ .checkmark {
    background-color: #fff;
    border-color: transparent;
}

.orc_check:checked ~ .check2 {
    background-color: var(--dark);
    border-color: var(--dark);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
}

/* Show the checkmark when checked */
.orc_check:checked ~ .checkmark:after {
    border: solid var(--laranja);
    border-width: 0 2px 2px 0;
}

.orc_check:checked ~ .check2:after {
    border: solid var(--light);
    border-width: 0 2px 2px 0;
}

/* Style the checkmark/indicator */
.checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--dark);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check2:after {
    position: absolute;
    content: '';
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bg-laranja {
    background: var(--laranja) !important;
}

.orcamento_select .bg-laranja .text-center {
    color: #fff;
}

.orcamento_select .bg-laranja img {
    filter: brightness(0) invert(1);
}

.neg-btm-5 {
    position: relative;
    bottom: -5px;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    background-color: var(--laranja);
    color: var(--light);
    border-color: var(--laranja);
    font-weight: 500;
}

.nav-tabs.blue-tab .nav-link.active, .nav-tabs.blue-tab .nav-item.show .nav-link {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
    font-weight: 500;
}

.nav-tabs .nav-link {
    color: var(--laranja);
}

.nav-tabs, .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: var(--laranja);
}

.nav-tabs.blue-tab, .nav-tabs.blue-tab .nav-link:hover, .nav-tabs.blue-tab .nav-link:focus {
    border-color: var(--primary);
}

.orcamento_info .form-select, .orcamento_info .form-control {
    max-width: 200px;
}

.form-select, .form-control {
    border: none;
    border-bottom: 1px solid var(--dark);
    color: var(--dark);
    padding-left: 0;
}

.form-select:focus, .form-control:focus {
    box-shadow: none;
}

.pub_lateral {
    height: 480px;
    width: 100%;
}

.icon-90 {
    max-width: 90px;
    height: auto;
}

.icon-60 {
    max-width: 60px;
    height: auto;
}

.btn-info {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-info:hover {
    background-color: var(--light);
    border-color: var(--primary);
    color: var(--primary) !important;
}

.text-info {
    color: var(--primary) !important;
}

.bg-info {
    background-color: var(--primary) !important;
}

.breadcrumb a {
    color: var(--dark);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

.login-btn:focus, .login-btn:hover {
    border: none;
    box-shadow: none;
    color: var(--laranja);
}

.show_hide_password {
    max-height: 61px;
}

.show_hide_password .toggle-password {
    position: absolute;
    bottom: 6px;
    right: 30px;
    color: var(--primary);
    cursor: pointer;
}

input:not(:placeholder-shown):invalid {
    background: rgba(250, 175, 59, 0.2);
}

.placeholder-white input::placeholder, .placeholder-white textarea::placeholder {
    color: #fff;
    opacity: 0.8;
    font-weight: 300;
}

input::placeholder, textarea::placeholder {
    color: var(--tertiary);
    opacity: 0.8;
    font-weight: 300;
}

.input_required:invalid {
    background: rgba(250, 175, 59, 0.2);
}

.input_required[type="checkbox"]:invalid + label {
    background: rgba(250, 175, 59, 0.2);
}

.login-btn:hover {
    color: var(--laranja) !important;
}

.w-100vw {
    width: 100vw !important;
}

.navbar-brand {
    margin-right: 0;
}

.orcamento_caminho i {
    font-style: normal;
}

#orc_submit {
    display: inline-flex;
}

.back-to-top {
    display: none;
}

.btn-primary {
    background-color: #fff;
    border-color: var(--tertiary);
    color: var(--tertiary);
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
    background-color: var(--secondary);
    border-color: var(--tertiary);
    box-shadow: 0 0 0 .25rem rgba(56, 169, 10, 0.47);
    color: var(--tertiary);
}

.btn-tertiary {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color: #fff;
    transition: all 0.2s;
}

.btn-tertiary:hover {
    background-color: #fff;
    border-color: var(--tertiary);
    color: var(--tertiary);
}

.btn-check:focus + .btn-tertiary, .btn-tertiary:focus {
    background-color: var(--secondary);
    border-color: var(--tertiary);
    box-shadow: 0 0 0 .25rem rgba(56, 169, 10, 0.47);
    color: var(--tertiary);
}

.hover-tertiary {
    color: inherit;
    transition: all 0.1s ease-out;
}

.hover-tertiary:hover {
    color: var(--tertiary) !important;
}

.orc_item_full.bg-laranja {
    background: var(--mybg) !important;
    border: 3px solid var(--laranja);
}

.navbar-toggler:hover .fas {
    color: var(--laranja);
}

#orc_limpa {
    height: 38px;
    width: 38px;
}

.orcamentos .item > div:hover {
    background: var(--laranja) !important;
}

select {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 1px solid var(--dark);
    color: var(--dark);
    padding-left: 0;
}

.material_form {
    display: none;
}

.h-150 {
    height: 150px;
}

.bottom-0 {
    bottom: 0 !important;
}

.item:hover img {
    filter: brightness(0) invert(1);
}

.bg-registo-cont {
    background: #e9f6fc;
}

.float-right {
    float: right;
}

.box-recuperar {
    display: none;
}

.table .fa-pencil {
    background: var(--primary);
    color: #fff;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 5px;
}

.det_orc {
    background: #f7f7f7;
    font-size: 0.8rem;
}

.det_orc b {
    color: var(--primary);
    font-size: 1rem;
}

.cor-laranja {
    color: var(--laranja) !important;
}


#comments #commentform p input[type="text"],
#comments #commentform p textarea {
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 13px;
    padding: 10px;
    width: 100%;
}

#comments #commentform p textarea {
    height: 100px;
    width: 100%;
}

#comments #commentform p {
    margin: 0 0 10px;
}

#comments #commentform p.form-submit input {
    background: rgb(51, 62, 72) none repeat scroll 0 0;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1.5px;
    line-height: 30px;
    margin-top: 40px;
    padding: 10px 23px;
    text-transform: uppercase;
}

#comments #commentform p.form-submit:hover input {
    background: #dd2527;
}

#comments #respond {
    padding-top: 50px;
}

#comments #commentform p.comment-form-author,
#comments #commentform p.comment-form-email {
    float: left;
    width: 100%;
}

.comments-area .offset2 {
    margin-left: 116px;
}

.social-list {
    margin-top: 10px;
}

.comment-respond.comment-replay {
    border-top: 1px solid #e9e9e9;
    margin-top: 10px;
    padding-top: 20px;
}

.comment-replay h3 {
    margin-bottom: 35px;
}

.contact-form {
    float: left;
    width: 100%;
}

.contact-form p input[type="text"],
.contact-form p textarea {
    border: none;
    border-bottom: 1px solid #6D6E71;
    border-radius: 0;
    color: var(--primary);
    font-size: 14px;
    padding: 10px;
    width: 100%;
}

.contact-form .form-submit input {
    background: #808285 none repeat scroll 0 0;
    border-radius: 0 !important;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1.5px;
    line-height: 24px;
    margin-bottom: 50px;
    margin-top: 20px;
    text-transform: uppercase;
    padding: 10px 30px;
    width: 100%;
}

.contact-title.text-center span {
    color: #9d9d9d;
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
}

.contact-title.text-center {
    color: #606060;
    margin-bottom: 50px;
}

.contact-title.text-center > h2 {
    margin-bottom: 30px;
}

.contact-info strong {
    display: inline-table;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 15px;
}

.menu-langs {
    display: none;
    background-color: #fff3;
    position: absolute;
    top: 0px;
}

nav {
    height: 100px;
}

.animated-line {
    stroke-dasharray: 2;
    stroke-dashoffset: 10;
    animation: dash 10s linear infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 20;
    }
}

@media (max-width: 991.98px) {
    .menu-langs:not(.menu-langs-mobile) {
        display: flex;
        background-color: #fff3;
        position: relative;
    }
    .menu-langs {
        background-color: #fff3;
    }
    nav {
        height: 76px;
    }

    .mt-offset-top {
        margin-top: -76px !important;
    }
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #ffffff55;
}

.overflow-y-scroll {
    overflow-y: scroll !important;
}

.box-height {
    height: 400px !important;
}

.bg-branco-semi {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

@media (max-width: 1199.98px) {
    .mobile-bg-branco {
        background-color: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 0.3rem 0.55rem rgba(0, 0, 0, 0.1) !important;
        max-width: 100% !important;
    }

    .box-height {
        height: 200px !important;
    }

    .slick-arrow {
        font-size: 24px;
    }

    .mobile-cor-primary {
        color: var(--primary) !important;
    }

    .pl-mobile-30px {
        padding-left: 30px !important;
    }

    .pr-mobile-30px {
        padding-right: 30px !important;
    }

    .mobile-pt-9px {
        margin-top: 0px;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .fa-4x {
        font-size: 3.4rem;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        /*border-top: 1px solid #EEEEEE;*/
    }

}

.card-header {
    background-color: transparent;
}

.card-title {
    font-size: 1.8rem !important;
    font-weight: 500;
    color: var(--primary);
    background-color: transparent;
}

.card-body h4 {
    font-size: 0.9rem !important;
}

.card-outline {
    border-top: none !important;
}

.card-container {
    -webkit-box-shadow: 0px 0px 16px -7px rgba(147, 149, 152, 1) !important;
    -moz-box-shadow: 0px 0px 16px -7px rgba(147, 149, 152, 1) !important;
    box-shadow: 0px 0px 16px -7px rgb(147, 149, 152) !important;
}

.card {
    border-radius: 0 !important;
    border: 0;
    margin-bottom: 2rem;
    position: relative;
}

.card-header {
    border-bottom: 1px solid #e8e8e8;
    padding: 15px 25px;
}

.card-footer {
    background: transparent !important;
}

.fancybox-close-small {
    top: 8px !important;
    right: 8px !important;
}

.fancybox-close-small::after {
    font-size: 50px !important;
}

.btn-atividade-pais {
    padding: 0.3rem 0.4rem;
    color: var(--primary);
    background-color: var(--secondary);
    text-transform: uppercase;
    border: 1px solid var(--primary);
    min-width: 100px;
    transition: all 0.06s ease-out;
    margin-right: 2px;
}

.btn-atividade-pais:hover {
    padding: 0.3rem 0.4rem;
    color: var(--branco);
    background-color: var(--cinza-azulado-2);
    text-transform: uppercase;
    border: 1px solid var(--primary);
    min-width: 100px;
}

.btn-atividade-pais-selected {
    color: var(--branco);
    background-color: var(--primary) !important;
    text-transform: uppercase;
    transition: all 0.2s ease-out;
}

.altura-min-ecra-offset {
    min-height: calc(100vh - 100px);
}
.altura-ecra-offset {
    height: calc(100vh - 100px);
}
.mt-offset-top {
    margin-top: -100px
}
.nav-menu-active {
    color: var(--light);
    font-weight: 700 !important;
}

.footer-item {
    color: var(--dark);
    font-weight: 500;
    text-decoration: underline dotted;
    font-size: inherit;
}

.footer-item:hover {
    color: var(--tertiary);
    font-weight: 500;
}

.textarea-2 {
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 1px solid #6D6E71;
    border-radius: 0;
    color: var(--primary);
    font-size: 14px;
    padding: 10px;
    width: 100%;
    background-color: transparent;
}

.slick-prev {
    left: 0px !important;
    padding: 30px !important;
    height: 100%;
}
.slick-next {
    right: 0px !important;
    padding: 30px !important;
    height: 100%;
}

.slick-prev, .slick-next {
    transition: all 0.2s ease;
}

.slick-prev:hover, .slick-next:hover {
    background-color: #fff4;
}

.highcharts-credits {
    display: none;
}

.grecaptcha-badge {
    visibility: hidden;
}



.checkboxCustom {
    display: flex;
    position: relative;
    padding-left: 24px;
    /*cursor: pointer;*/
    font-size: 22px;
    line-height: 1.3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkboxCustom input {
    position: absolute;
    opacity: 0;
    /*cursor: pointer;*/
    height: 0;
    width: 0;
    display: none;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 4px;
    transition: all 0.05s ease;
    margin-top: 0px;
}
.checkboxCustom:hover input ~ .checkmark {
    background-color: rgba(204, 204, 204, 0.44);
    margin-bottom: 0px;
}
.checkboxCustom input:checked ~ .checkmark {
    background-color: var(--primary);
}
.checkmark ~ label {
    margin-top: -1px;
    margin-bottom: 0px;
    margin-right: 15px;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkboxCustom input:checked ~ .checkmark:after {
    display: block;
}
.checkboxCustom .checkmark:after {
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(41deg);
    -ms-transform: rotate(41deg);
    transform: rotate(41deg);
}
.checkboxCustom.branco .checkmark {
    border: 1px solid #fff;
}
.checkboxCustom.branco .checkmark:after {
    border-color: #000 !important;
}
.checkboxCustom.branco input:checked ~ .checkmark {
    background-color: #fff !important;
}

a:hover {
    color: var(--tertiary);
}
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.1s ease;
}
html {
    scroll-behavior: auto !important;
}

.back-to-top:hover {
    background-color: var(--tertiary);
}