body {
    overflow-x: hidden;
}

* ::-moz-selection {
    color: #000;
    background-color: #7d0400a1;
}

* ::selection {
    color: #000;
    background-color: #7d0400a1;
}

* ::-webkit-scrollbar {
    width: 0.5rem;
}

* ::-webkit-scrollbar-track {
    background: #fff;
}

* ::-webkit-scrollbar-thumb {
    background-color: #7d0400;
    border-radius: 5px;
}


h1 {
    font-size: 50px;
}


h1 br {
    display: none;
}

.ir-page-bg h1 br {
    display: block;
}

.clear {
    clear: both;
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px;
    }
}

#banner-container h2 {
    font-size: 32px;
}

h2 br {
    display: none;
}

#header .box-logo {
    padding-top: 20px;
}

.title-section h2:after {
    background-color: #7d0400;
    left: 50%;
    transform: translate(-50%);
}

#mainnav .menu>li>.sub-menu {
    opacity: 0;
    z-index: 9999;
    position: absolute;
    width: 250px;
    border-top: 1px solid #7d0400;
    background-color: rgba(75, 75, 75, 0.80);
    top: 150%;
    left: 0;

}

#video {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    z-index: -1000;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: url("") no-repeat;
    background-size: cover;
}

.video_bg {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
}

.video-wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.default-btn {
    background: linear-gradient(180deg, rgba(125, 0, 0) 0%, #201c1d 100%);
    border-radius: 1.5rem;
    width: 100%;
    max-width: 250px;
    height: 60px;
    padding-top: 18px;
    font-weight: 700;
    margin: 2.5rem;
    border: none;
    transition: all 2s;
}

.default-btn a {
    color: white;
}

.default-btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.img-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.img-btn img {
    border-radius: 50%;
    width: 50px;
    border: 3px solid #ccc;
}

.img-btn span {
    font-weight: bold;
    text-decoration: underline;

}


.pulse {
    animation: pulse 1.2s infinite;
}

.pulse:hover {
    animation: unset;
}


@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(3, 54, 10, 0.808);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(125, 0, 0, .5);
        box-shadow: 0 0 0 0 rgba(125, 0, 0, .5);
    }

    70% {
        -moz-box-shadow: 0 0 0 5px rgba(125, 0, 0, .5);
        box-shadow: 0 0 0 5px rgba(125, 0, 0, .5);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}


.hero-description {
    z-index: 999999999 !important;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    top: 0;
    z-index: 20;
}

.tp-bullet {
    display: none;
}



.about h2 {
    font-size: 30px;
}

.about p {
    font-size: 18px;
}

.about .box-img {
    position: relative;
    transition: 0.5s;
}

.about .box-img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);

}

.about .box-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #7d0400;
    border-top: 5px solid #7d0400;
    border-radius: 5px;
    transition: 0.5s;
}

.about .box-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #7d0400;
    border-bottom: 5px solid #7d0400;
    border-radius: 5px;
    transition: 0.5s;
}


.about .box-img img {
    max-width: 100%;
    border: 4px solid #ccc;
    border-radius: 5px;
    position: relative;
}

/*Differential*/

.differentials {
    background-color: #f7f7f7;
}

.differentials .title-section h2::after {
    left: 0;
    transform: translate(0%);
}

.differentials .box {
    padding: 40px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 25px;
}

.differentials .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #7d0400;
}

.differentials .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #4b4b4b;
    line-height: 27px;
}

.differentials .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.differentials .box:hover {
    transition: all 2s;
    background: linear-gradient(180deg, rgba(125, 0, 0) 0%, #201c1d 100%);
    padding: 20px 25px 60px 25px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.differentials .box:hover span,
.differentials .box:hover h4,
.differentials .box:hover p {
    color: #fff;
}

/*specialties*/

.specialties .title-section h2::after {
    left: 0;
    transform: translate(0%);
}

.specialties .service {
    text-align: center;
    background: #343a40;
    position: relative;
    overflow: hidden;
}

.specialties .service .service-info {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
    background: linear-gradient(180deg, rgba(125, 0, 0, 0.6) 0%, #201c1d 100%);
}

.specialties .service .service-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
    max-width: 92%;
    margin: auto;
}

.specialties .service .service-info-content h4 {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 27px;
    font-style: italic;
    color: #fff;
    /* font-family: 'Manuscrita'; */
}

.specialties .service:hover .service-info {
    background: linear-gradient(180deg, rgba(125, 0, 0, 0.7) 0%, #201c1d 100%);
    opacity: 1;
    transition: 0.4s;
}

.specialties .service:hover .service-info-content {
    bottom: 200px;
    transition: bottom 0.4s;
}

.specialties .service img {
    transition: all 1s;

}

.specialties .service:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);

}

.specialties .service:hover .service-info-content h4 {
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

.specialties .service:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
}

/*Custom declaration*/
.declaration h2 {
    line-height: 45px
}

.declaration h2 br {
    display: block;
}

@media (min-width: 992px) {
    .choose-item {
        padding: 0 20px;
        border: 1px solid #f0f4f8;
        border-radius: 4px;
        font-size: 18px;
        line-height: 18px;
        height: 72px;
    }

    .choose-item span {
        width: calc(100% - 46px);
    }

    .choose-item-angle {
        right: 16px;
    }

    /* .custom-declaration-dialog:not(.show) {
        display: none;
    } */

    .custom-declaration-dialog {
        padding-left: 42px;
    }

    .custom-declaration-dialog-content {
        padding-left: 7px;
        padding-top: 10px;
    }

    .choose-item:not(.disabled):hover {
        background: linear-gradient(180deg, rgba(125, 0, 0) 0%, #201c1d 100%);
        border-color: #7d0400;
        color: #fff;
    }
}

.choose-item,
.choose-item-icon,
.choose-item-angle {
    transition: ease-in-out .15s;
}

.choose-item {
    background-color: #fff;
    position: relative;
    border-bottom: 1px solid #f0f4f8;
    box-sizing: border-box;
    border-radius: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: ease-in-out .15s;
}

.choose-item,
.choose-item-icon,
.choose-item-angle {
    transition: ease-in-out .15s;
}

.choose-item-icon {
    width: 36px;
    height: 36px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #7d0400;
    font-size: 25px;
}

.choose-item-icon-img {
    width: 67px;
    height: 67px;
    background: linear-gradient(180deg, rgba(125, 0, 0) 0%, #201c1d 100%);
    border-radius: 50%;
    margin-right: 15px;
    padding: 10px;
    animation: pulse 0.8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(3px);
    }
}


.choose-item span {
    position: relative;
    bottom: 2px;
}

.choose-item,
.choose-item-icon,
.choose-item-angle {
    transition: ease-in-out .15s;
}

.choose-item-angle {
    color: #666666;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-declaration-dialog p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.5px;
    color: #666666;
    margin-bottom: 17px;
}

.custom-declaration-dialog .btn {
    padding-left: 0;
    padding-right: 0;
    width: 207px;
}

.custom-declaration-dialog .btn+.btn {
    margin-top: 14px;
}

.custom-declaration-dialog .btn {
    padding-left: 0;
    padding-right: 0;
    width: 207px;
}

.custom-declaration-dialog {
    background-color: white;
    width: 100%;
    height: 100vh;
}

.custom-declaration-dialog .close-btn.btn-outline-danger {
    color: #7d0400;
    border-color: #7d0400;
}

.custom-declaration-dialog .close-btn.btn-outline-danger:hover {
    color: #fff;
    background: linear-gradient(180deg, rgba(125, 0, 0) 0%, #201c1d 100%);
}

@media (max-width: 768px) {
    .custom-declaration-dialog {
        text-align: center;
    }

    .custom-declaration-dialog p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: unset;
    }

    .custom-declaration-dialog img {
        max-width: 150px;
    }
}


/*Planos*/

.plans .title-section h2::after {
    left: 0;
    transform: translate(0%);
}

.plans.parallax1 {
    background-image: url(../images/nossos-planos.jpeg);
    background-repeat: no-repeat;
}

.plans .iconbox.style3 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
    margin-bottom: 24px;
}

.flat-benefit {
    padding: 50px 0px 0;
}

.plans .iconbox.style3 .icon-benefit {
    margin-top: 0;
}

.plans .iconbox.style3 .box-header .box-title {
    margin-top: 0px;
    margin-bottom: 8px;
    letter-spacing: 0px;
}

.readmore.style3 a {
    color: #7d0400;
    line-height: 28px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.readmore.style3 a:hover {
    text-decoration: underline;
}

.readmore.style3 a:after {
    content: "\f30f";
    font-size: 18px;
    font-family: "Ionicons";
    position: absolute;
    right: -20px;
    color: #7d0400;
    font-weight: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}




/*Imposto de Renda*/
.ir-list img {
    border-radius: 50%;
    filter: grayscale();
    width: 60px;
    height: 57px;
}

.ir-list .choose-item-icon-img {
    background: #ccc;
    padding: 5px;
}

.ir-details .box-img img {
    border-radius: 50%;
    filter: grayscale();
    width: 300px;
    height: 300px;
}

.ir-details .custom-declaration-dialog {
    height: unset;
}

@media (max-width: 768px) {
    .ir-details .box-img img {
        height: 150px;
    }

    .choose h2 {
        line-height: 27px;
        padding: 20px 0;
    }
}

.ir {
    overflow: hidden;
    background-color: #fff;
}

.ir .title-section h2::after {
    left: 0;
    transform: translate(0%);
}

.ir .nav-tabs {
    border: 0;
}

.ir .nav-link {
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: #4b4b4b;
    border-radius: 0;
    border-right: 2px solid #7d0400;
    font-weight: 600;
    font-size: 15px;
}

.ir .nav-link:hover {
    color: #7d0400;
}

.ir .nav-link.active {
    color: white;
    background: linear-gradient(180deg, rgba(125, 0, 0, 1) 0%, #201c1d 100%);
    border-color: #7d0400;
}

.ir .nav-link:hover {
    border-color: #7d0400;
}

.ir .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
}

.ir .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4b4b4b;
    line-height: 30px;
}

.ir .details p {
    color: #4b4b4b;
}

.ir .details p:last-child {
    margin-bottom: 0;
}

.ir img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    filter: grayscale(1);
}

.ir .cta h3 {
    font-size: 30px;
    color: #201c1d;
    font-weight: 600;
    line-height: 35px;
}

.ir .cta h3 span {
    color: #7d0400;
}

@media (max-width: 992px) {
    .ir .nav-link {
        border: 0;
        padding: 15px;
    }
}

/*Reagularização em 48 horas*/
.regularization .box-content .flat-list li {
    line-height: 22px;
    margin-bottom: 20px;
}

/*MALHA Fiscal*/
.fiscal {
    background: linear-gradient(180deg, rgba(125, 0, 0, 1) 0%, #201c1d 100%);
}

.fiscal .title-section h2:after {
    background-color: #000;
}

.fiscal .box-content .flat-list li:before {
    color: #000;
    font-size: 14px;
}


/*Depoimentos HOME*/
.testimonials {
    background-color: #f7f7f7;
}

.testimonials .title-section h2::after {
    left: 0;
    transform: translate(0%);
}

.testimonials .title-section h2 {
    margin-bottom: 15px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #ccc;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #343333;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgb(102, 102, 102);
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #7d0400;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    min-height: 230px;
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
}



.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #343333;
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #7d0400;
}

/*BLOG HOME*/
.flat-news .title-section h2::after {
    left: 0;
    transform: translate(0%);
}

.flat-news .thumb img {
    max-width: 110px;
}

.post-cover {
    height: 180px;
    object-fit: cover;
}

article.post .content-post:after {
    background-color: #7d0400;
}

article.post .content-post h4 {
    line-height: 18px;
}

.flat-client img {
    max-width: 100px;
}

.flat-client {
    padding: 25px 0 30px;
}

.flat-client .title-section h2::after {
    left: 0;
    transform: translate(0%);
}

.wrap-button.s2 .flat-button {
    background-color: #343333;
}

.wrap-button.s2 .flat-button:hover {
    background-color: #7d0400;
}

.paginate .pagination li {
    margin: 0 5px;
}

.paginate .pagination .page-link {
    color: #7d0400;
    padding: 10px 17px;
    border: none;
    background-color: #f2f2f2;
}

.paginate .pagination .active .page-link {
    background-color: #7d0400;
    padding: 10px 17px;
    color: white;
    border: 0;
}

.paginate .pagination .page-link:hover {
    background-color: #7d0400;
    color: white;
}

/*Página de especialidades*/
.specialty-bg {
    background-image: url(../images/specialty-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/*Página de Serviços*/
.services-bg {
    background-image: url(../images/service-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay-services {
    position: absolute;
    background-color: #00000090;
    width: 100%;
    height: 150px;
}

.sidebar .widget.widget_nav_menu ul li.active,
.sidebar .widget.widget_nav_menu ul li:hover {
    background: linear-gradient(180deg, rgba(125, 0, 0, 1) 0%, #201c1d 100%);
    color: #fff;
}

.services-bg .breadcrumbs {
    font-size: 20px;
    font-weight: 500;
}

.flex-direction-nav a {
    border-color: #7d0400;
    background-color: #7d0400;
}

.flat-accordion .toggle-title,
.flat-accordion .toggle-title.active {
    background: #343333;
}

/*Página de Planos*/
.plans-bg {
    background-image: url(../images/bg-plans.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-plans .flat-list li {
    line-height: 23px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.page-plans .flat-list li i {
    color: #7d0400;
}

.plans .iconbox i {
    font-size: 60px;
    color: #7d0400;
    display: inline-block;
    height: auto;
    line-height: normal;
    width: 80px;
    text-align: center;
}

.page-plans .box-content .flat-list li:before {
    /* content: ""; */
}

/*Página BLOG*/
.blog-bg {
    background-image: url(../images/blog-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

article.main-post .entry-content a.more-link:before {
    content: "";
    right: 0;
}

article.main-post .entry-content a.more-link:hover {
    background-color: #343333;
}

.widget-tags .tag-cloud a:hover {
    background-color: #343333;
}

/*Página SOBRE*/
.about-bg {
    background-image: url(../images/about-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video .description h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.about-page {
    /* background: url("../images/about-bg2.jpeg") center center; */
    /* background-size: cover; */
    position: relative;
    padding: 40px 0;
}

.about-page:before {
    content: "";
    background-color: #F5F5F5;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.about-page .about-page-img {
    position: relative;
    transition: 0.5s;
}

.about-page .about-page-img img {
    max-width: 100%;
    border: 4px solid #ccc;
    position: relative;
}

.about-page .about-page-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #7d0400;
    border-top: 5px solid #7d0400;
    transition: 0.5s;
}

.about-page .about-page-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #7d0400;
    border-bottom: 5px solid #7d0400;
    transition: 0.5s;
}

.about-page .about-page-img:hover {
    transform: scale(1.03);
}

.about-page .about-page-img:hover::before {
    left: 10px;
    top: 10px;
}

.about-page .about-page-img:hover::after {
    right: 10px;
    bottom: 10px;
}

.black-overlay {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background: rgba(0, 0, 0, .6);
    border-radius: 4px
}

.about-page .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: white;
    line-height: 30px;
    padding-bottom: 10px;
}


.about-page .content p {
    color: #201c1d;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.about-page .content ul {
    list-style: none;
    padding: 0;
}

.about-page .content ul li {
    padding-bottom: 10px;
}

.about-page .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #7d0400;
}

.about-page .content p:last-child {
    margin-bottom: 0;
}

.pd-imagebox .imagebox-title h3 {
    /* font-family: 'Manuscrita'; */
    font-size: 35px;
}

.imagebox.style1 .imagebox-title h3 {
    font-size: 25px;
    text-transform: none;
}

@media (min-width: 1024px) {
    .about-page {
        background-attachment: fixed;
    }
}

.imagebox.style1 .imagebox-title,
.imagebox.style1 .imagebox-content {
    background: linear-gradient(180deg, rgba(125, 0, 0, 0.6) 0%, #201c1d 100%);
}

.imagebox.style1 .imagebox-content {
    padding: 10px 30px 10px;
    display: flex;
    align-items: center;
}

.imagebox-desc p {
    font-size: 16px;
    font-weight: 500;
}

#gallery {
    background-color: #F7F7F7;
}

.gallery .title-section p {
    font-size: 22px;
}

.gallery .gallery-item {
    overflow: hidden;
    border-right: 4px solid #454035;
    border-bottom: 4px solid #454035;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    filter: grayscale(1);
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.gallery .cta h3 {
    font-size: 28px;
    color: #201c1d;
    font-weight: 600;
    line-height: 35px;
}

.gallery .cta h3 span {
    color: #7d0400;
}

.gallery .flat-portfolio .one-four .item {
    margin-bottom: 0px;
}

.gallery-bg {
    background-image: url(../images/clients-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/*Página de clientes*/
.clients-bg {
    background-image: url(../images/clients-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-wrap .featured-post {
    max-width: 150px;
    margin: 0 auto;
}

#work .title-section h2 {
    line-height: 50px;
}

.flat-portfolio .one-four .item {
    margin-bottom: 20px;
}

.pd-portfolio-s2 .cta h3 {
    font-size: 28px;
    color: #201c1d;
    font-weight: 600;
    line-height: 35px;
}

.pd-portfolio-s2 .cta h3 span {
    color: #7d0400;
}

.pd-portfolio-s2 {
    padding-bottom: 0;
}

/*Página Imposto de Renda*/
.ir-page-bg {
    background-image: url(../images/service-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/*Página de CONTATO*/
.contact-bg {
    background-image: url(../images/contact-gb.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.input-info {
    position: relative;
}

.form-info .input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font: inherit;
    color: #fff;
    background-color: transparent;
    outline: 2px solid #fff;
}

.form-info .input-label {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(12px, 12px);
    transition: transform .25;
    color: #ccc;
}

.form-info .input:focus+.input-label,
.form-info .input:valid+.input-label {
    transform: translate(10px, -14px) scale(.8);
    color: #7d0400;
    font-size: 18px;
    padding-inline: 5px;
    background-color: #fff;
}

select {
    background-color: #f7f7f7;
}

.form-info button {
    background: linear-gradient(180deg, rgba(125, 0, 0) 0%, #201c1d 100%);
    border: 0 none;
    font-size: 16px;
}

.form-info button:hover {
    background: linear-gradient(180deg, #201c1d 0%, rgba(125, 0, 0) 100%);
}

/*Página CARREIRA*/
.career-bg {
    background-image: url(../images/career-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.career h3 {
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 20px;
}

.career p {
    font-size: 16px;
    margin-bottom: 10px;
}

.form-content {
    padding: 0px 120px 80px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}


form input[type=file] {
    display: none;
}

.input-wrapper label {
    border: 1px solid #ced4da;
    color: #8b8b8b;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 15%);
    height: 45px;
    display: flex;
    margin-top: 30px;
    justify-content: space-evenly;
    align-items: center;
}

.career .pd-title-section {
    padding: 45px 0 0;
}

.form-content h2 {
    font-size: 25px;
}

.form-content .pd-title-section {
    padding: 0px 0 0;
}


/*Footer*/
#footer h2 {
    font-size: 28px;
}

#footer h4 {
    color: white;
    font-weight: 600;
    line-height: 25px;
    font-size: 22px;
}

#footer img {
    max-width: 80px;
}

.widget-box {
    padding: 60px 0;
}

.widget-box .widget-text p {
    color: #ffffff;
    margin-bottom: 10px;
}

.widget-box .widget-text a {
    color: #ccc;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.widget-services p,
.widget-social p {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

#footer .widget-services a,
#footer .widget-social a {
    color: #ccc;
    line-height: 32px;
    font-size: 16px;
}

#footer a {
    color: #ccc;
}

.widget-box .widget-text a:hover,
.widget-services a:hover,
.widget-social a:hover,
#footer a:hover {
    color: #7d0400;
}

.widget-social a.icon:hover {
    color: #fff;
}

/*Social Icon*/
a.icon {
    text-decoration: none;
    width: 50px;
    height: 50px;
    background-color: #323232;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    box-shadow: 4px 4px 4px #434242, -5px -5px 10px #585858;
    font-size: 22px;
}

a.icon:hover {
    box-shadow: inset 5px 5px 10px #454444, inset -5px -5px 10px #454444;
}

.footer-widgets .widget-box .col-md-4:nth-of-type(2) {
    border-left: 1px solid #4b4b4b;
    border-right: 1px solid #4b4b4b;
}

.footer-bottom {
    border-top: 1px solid #4b4b4b;
}

@media (max-width: 768px) {
    h2 {
        font-size: 26px !important;
        line-height: 35px !important;
    }

    #header .box-logo {
        float: left;
        padding-top: 23px;
    }

    #header .box-logo img {
        max-width: 150px;
    }

    h1 {
        font-size: 28px;
        text-align: center;
        line-height: 32px;
    }

    h1 br {
        display: block;
    }

    #banner-container h2 {
        font-size: 20px;
        line-height: 27px;
    }

    h2 br {
        display: block;
    }

    .title-section h2 {
        margin-bottom: 25px;
    }

    .tp-parallax-wrap {
        top: 55px !important;
    }

    .default-btn {
        max-width: 200px;
        height: 44px;
        padding-top: 10px;
        font-weight: 500;
        margin: 2rem 0;
        border: none;
        transition: all 2s ease 0s;
    }

    .about .default-btn {
        max-width: 270px;
    }

    .video_bg {
        position: static;
        margin-top: -0.3rem;
        background: rgba(0, 0, 0, 0.5) url("");
        background-blend-mode: darken;
    }

    #video {
        position: relative;
        display: block;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
        z-index: -1000;
    }

    #bg_video {
        width: auto;
    }

    .plans .benefit-image img {
        display: none;
    }

    .ir img {
        margin-bottom: 20px;
    }



    /*Página SOBRE*/

    .about-page {
        padding: 40px 0;
    }

    .gallery .cta h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .form-content .pd-title-section {
        padding: 22px 0 0;
    }

    .form {
        padding-top: 20px;
    }

    .form-content {
        padding: 0px 35px 80px;
    }

    .widget-box {
        padding-top: 7px;
    }

    .footer-widgets .col-md-4:nth-of-type(2) {
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #4b4b4b;
        border-top: 1px solid #4b4b4b;
    }

    .footer-widgets .col-md-4 {
        padding-bottom: 30px;
        padding-top: 15px;
    }

    .footer-widgets .col-md-4:nth-of-type(3) {
        padding-top: 15px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .footer-bottom .menu-footer {
        text-align: center;
    }

    .footer-bottom .menu-footer li:last-child {
        display: inline;
        margin-left: 28px;
    }
}


/*INÍCIO - BOTÃO FLUTUANTE WHATSAPP*/
.whats {
    position: fixed;
    bottom: 60px;
    right: 10px;
}

.whats p {
    display: none;
    background-color: #00e676;
    border-radius: 30px;
    position: relative;
    color: white;
    font-weight: 400;
    font-size: 16px;
    z-index: 0;
    right: -35px;
    padding: 6px 40px 6px 15px;
    line-height: 16px;
    top: 0;
}

.whats img {
    width: 100%;
    max-width: 55px;
    z-index: 1;
}

a.whats {
    text-decoration: none;
}

.whats:hover p {
    display: block;
    -webkit-animation: tilt-in-right-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: tilt-in-right-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (max-width: 768px) {
    .whats img {
        max-width: 50px;
    }

    .whats {
        bottom: 60px;
        right: 0px;
    }
}

@-webkit-keyframes tilt-in-right-1 {
    0% {
        -webkit-transform: rotateX(-30deg) translateX(300px) skewX(30deg);
        transform: rotateX(-30deg) translateX(300px) skewX(30deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
        transform: rotateX(0deg) translateX(0) skewX(0deg);
        opacity: 1;
    }
}

@keyframes tilt-in-right-1 {
    0% {
        -webkit-transform: rotateX(-30deg) translateX(300px) skewX(30deg);
        transform: rotateX(-30deg) translateX(300px) skewX(30deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
        transform: rotateX(0deg) translateX(0) skewX(0deg);
        opacity: 1;
    }
}

/*FIM - BOTÃO FLUTUANTE WHATSAPP*/


/*Recaptcha invisível*/
.grecaptcha-badge {
    opacity: 0 !important;
    /*Joga para o lado esquerdo*/
    position: absolute;
    left: -250px;
    transform: rotate(-180deg);
}
