/*
===============================================
          Import CSS
===============================================
 */

@import "shared.css";

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Variable */
:root {
    /*  Color Variable  */
    --color-goldLight: #E2D9CE;
    --color-goldDark: #CAB08F;
    --color-light: #BBBDBF;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bgLight: #F7F7F7;
    --color-moreDark: #7e604d;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

/* /END RESET */
body {
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    overflow-x: hidden;
}

/* RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: 400;
    font-style: inherit;
    font-size: 100%;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}


h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
}

a img {
    border: none;
    outline: none;
}

a {
    outline: none;
    text-decoration: none;
}

ul, ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


/* ================================= Top bar and Logo nav Section Open =============================== */

/* TopBar */
.topbar {

}

.topbar .topbar__contactInfo {
    min-height: 50px;
    padding: 10px 0;
}

.topbar .topbar__list a {
    color: var(--color-light);
    font-size: 14px;
    display: inline-block;
}

.topbar .topbar__contactInfo .topbar__list:not(:last-child) {
    margin-right: 25px;
}

/* ----------- Header logo menu  ---------------- */

.headerWrap {
    background-color: var(--color-white);
    padding: 15px 0;
    transition: padding .8s ease-in-out;
}

.headerWrap .navbar {
    display: flex;
    z-index: 100;
}

.headerWrap .navbar .navbar-logo img {
    width: 100%;
    max-width: 115px;
}

.headerWrap .navbar .header__hamburger {
    cursor: pointer;
    order: 3 !important;
    z-index: 1200;
}

.headerWrap .navbar .header__hamburger > span {
    width: 30px;
    height: 3px;
    background: var(--color-light);
    margin: 5px;
    transition: all 0.3s ease;
    display: block;
}

.headerWrap .navbar .header__hamburger.toggle > span:first-child {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--color-white);
}

.headerWrap .navbar .header__hamburger.toggle > span:nth-child(2) {
    transition: all .7s ease;
    width: 0;
}

.headerWrap .navbar .header__hamburger.toggle > span:last-child {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--color-white);
}


.headerWrap .navbar .nav-links {
    background-color: var(--color-goldDark);
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    left: 0;
    bottom: 0;
    z-index: 1000;
    transition: all 1s ease-out;
    padding-top: 80px;
}

.headerWrap .navbar .nav-links.open {
    clip-path: circle(77.0% at 67% 41%);
    -webkit-clip-path: circle(77.0% at 67% 41%);
    pointer-events: all;
}

.headerWrap .navbar .nav-links li .nav-link {
    color: var(--color-white);
    padding-top: 55px;
    font-size: 24px;
}


.navsticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.headerWrap.navsticky .navbar .navbar-logo img {
    width: 100%;
    max-width: 115px;
    transition: all .8s ease-in-out;
}


/* ================================= Top bar and Logo nav Section Close =============================== */


/*  ========================= Hero SEction Open ========================   */

.hero {
    background: linear-gradient(transparent, rgba(202, 176, 143, .4)), url("../images/home-banner.jpg");
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 550px;
    max-height: 550px;
}

.hero .hero--caption h1 {
    color: var(--color-white);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    padding-bottom: 10px;
}

.hero .hero--caption p {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    padding-top: 10px;
}

.hero .hero--caption .hero-btn {
    margin-top: 30px;
}

.hero .hero--caption .heroFill__btn {
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*  ========================= Hero SEction Close ========================   */
/*  ========================= Services SEction Open ========================   */

.servicesWrapper {
    background-color: var(--color-bgLight);
    padding: 40px 0;
    position: relative;
    isolation: isolate;
}


.servicesWrapper .fancy-imge img {
    width: 100%;
    max-width: 60px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.servicesWrapper .servicesSlide .servicesBox {
    background-color: var(--color-white);
    -webkit-box-shadow: -1px -1px 31px -19px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px -1px 31px -19px rgba(0, 0, 0, 0.75);
    box-shadow: -1px -1px 31px -19px rgba(0, 0, 0, 0.75);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    transition: box-shadow .5s ease;
    min-height: 325px;
}

.servicesWrapper .servicesSlide .servicesBox:hover {
    box-shadow: none;
}

.servicesWrapper .servicesSlide .servicesBox .servicesBox-icon {
    background-color: var(--color-goldLight);
    height: 110px;
    width: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.servicesWrapper .servicesSlide .servicesBox .servicesBox-icon img {
    width: 100%;
    max-width: 65px;
}


.servicesWrapper .servicesSlide .servicesBox .servicesBox-heading {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 600;
    padding: 35px 10px;
}

.servicesWrapper .servicesWrapper__inner {
    padding-top: 80px;
}

.servicesWrapper .servicesWrapper__inner .swiper-button-next,
.servicesWrapper .servicesWrapper__inner .swiper-button-prev {
    top: -11%;
    border: 2px solid var(--color-goldDark);
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.servicesWrapper .servicesWrapper__inner .swiper-button-next::after,
.servicesWrapper .servicesWrapper__inner .swiper-button-prev::after {
    font-size: 15px;
    color: var(--color-goldDark);
}

.servicesWrapper .servicesWrapper__inner .swiper-button-prev {
    left: calc(50% - 40px);
}

.servicesWrapper .servicesWrapper__inner .swiper-button-next {
    right: calc(50% - 40px);
}

/*  ========================= Services SEction Close ========================   */

/* ========================= Home Page CTA Section Open ========================  */

.homeCta {
    background-image: url("../images/home-cta-bg.png");
    background-size: cover;
    background-position: center 10%;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    isolation: isolate;
}

.homeCta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, .6);
    z-index: -1;
}


.homeCta .homeCta-btn {
    text-align: center;
    margin-top: 30px;
}

/* ========================= Home Page CTA Section Close ========================  */


/* ========================= Home About us Section Open ======================== */

.homeAboutus {
    background-color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 80px;
}

.homeAboutus .section-title .subTitle,
.homeAboutus .section-title .mainTitle {
    text-align: left;
}

.homeAboutus .homeAboutus__para {
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
}


/* ========================= Home About us Section Close ======================== */

/*   ========================= Testomonials  Section Open ========================   */

.testimonialsWrapper {
    border-top: 2px solid var(--color-goldDark);
    border-bottom: 2px solid var(--color-goldDark);
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonialsWrapper .testimonialWrapper__slider .swiper-slide {
    text-align: center;
}

.testimonialsWrapper .testimonialWrapper__slider .testimonials {
    padding-top: 40px;
}

.testimonialsWrapper .testimonialWrapper__slider .testimonials .testo-text {
    font-size: 18px;
}

.testimonialsWrapper .testimonialWrapper__slider .testimonials .testo-user {
    padding-top: 20px;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
}


/*   ========================= Testomonials  Section Close ========================   */


/* ========================= Blog  Section Open ======================== */
.homeBlogWrapper {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow-x: hidden;
    position: relative;
}

.homeBlogWrapper .fancy-imge {
    position: absolute;
    right: 0;
    top: 21%;
}

.homeBlogWrapper .fancy-imge img {
    width: 100%;
    max-width: 427px;
}

.homeBlogWrapper .homeBlogWrapper__inner {
    margin-top: 80px;
}

.homeBlogWrapper .homeBlogWrapper__inner .swiper {
    overflow: visible;
}

.homeBlogWrapper .section-title .subTitle,
.homeBlogWrapper .section-title .mainTitle {
    text-align: left;
}

.homeBlogWrapper .homeBlogWrapper__inner .homeBlogBox {
    position: relative;
    min-height: 400px;
    max-height: 400px;
    transition: margin-top .3s ease-in-out;
    -webkit-transition: margin-top .3s ease-in-out;
}

.homeBlogWrapper .homeBlogWrapper__inner .homeBlogBox .homeBlogBox__image {
    width: 100%;
    min-height: 400px;
    max-height: 400px;
}

.homeBlogWrapper .homeBlogWrapper__inner .homeBlogBox .homeBlogBox__image img {
    height: 100%;
    object-fit: cover;
    min-height: inherit;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    position: relative;
}

.homeBlogWrapper .homeBlogWrapper__inner .homeBlogBox .homeBlog__hoverInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(202, 176, 143, .8), rgba(202, 176, 143, .8));
    padding: 40px 20px 30px;
    width: 100%;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.homeBlogWrapper .homeBlogWrapper__inner .homeBlogBox .homeBlog__hoverInfo .smallHead {
    color: var(--color-white);
    font-style: italic;
    font-size: 18px;
}

.homeBlogWrapper .homeBlogWrapper__inner .homeBlogBox .homeBlog__hoverInfo .homeBlog__heading {
    color: var(--color-white);
    font-size: 22px;
    padding-top: 8px;
}


/* next prev btn */

.homeBlogWrapper .homeBlogWrapper__inner .swiper-button-next,
.homeBlogWrapper .homeBlogWrapper__inner .swiper-button-prev {
    top: -11%;
    border: 2px solid var(--color-goldDark);
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.homeBlogWrapper .homeBlogWrapper__inner .swiper-button-next::after,
.homeBlogWrapper .homeBlogWrapper__inner .swiper-button-prev::after {
    font-size: 15px;
    color: var(--color-goldDark);
}

.homeBlogWrapper .homeBlogWrapper__inner .swiper-button-prev {
    left: calc(100% - 126px);
}

.homeBlogWrapper .homeBlogWrapper__inner .swiper-button-next {
    right: 53px;
}

/* next prev btn */

/* ========================= Blog  Section Close ======================== */


/* ========================= client slider  Section Open  ========================  */


.clientSlide .clientSlide__inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.clientSlide .clientSlide__inner .clientSlideBox {
    text-align: center;
}

.clientSlide .clientSlide__inner .clientSlideBox img {
    width: 100%;
    max-width: 160px;
}

/* ========================= client slider  Section Close  ========================  */

/* ========================= Footer section Open ======================== */

.footerWrapper {
    background-color: var(--color-goldLight);
    padding-top: 40px;
    padding-bottom: 40px;
}


.footerWrapper .footerWrapper__left img {
    width: 100%;
    max-width: 200px;
    padding-bottom: 35px;
}

.footerWrapper .footerWrapper__left .footerWrapper__para {
    color: var(--color-white);
    font-size: 18px;

}


.footerWrapper .footerWrapper__right h3 {
    color: var(--color-white);
    font-size: 25px;
    padding-bottom: 20px;
}

.footerWrapper .footerWrapper__right .footer__phone,
.footerWrapper .footerWrapper__right .footer__email {
    color: var(--color-white);
    font-size: 18px;
}

.footerWrapper .footerWrapper__right .footer__social {
    display: flex;
    padding-top: 25px;
}

.footerWrapper .footerWrapper__right .footer__social li a {
    color: var(--color-white);
    font-size: 20px;
    margin-right: 20px;
    display: inline-block;
    border: 1px solid transparent;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.footerWrapper .footerWrapper__right .footer__social li a:hover {
    color: var(--color-goldDark);
}


/* footerbar */
.footerBar {
    background-color: var(--color-goldLight);
    border-top: 2px solid var(--color-goldDark);
    padding-top: 20px;
    padding-bottom: 20px;
}

.footerBar p, .footerBar a {
    color: var(--color-white);
    font-size: 16px;
    transition: all .3s ease-in-out;
    display: inline-block;
}

.footerBar a:hover {
    color: var(--color-goldDark);
    text-decoration: underline;
}

.footerBar a:not(:last-child) {
    margin-right: 20px;
}

/* ========================= Footer section Close ======================== */


/* ================================================ ======================= =======================

 ***************************  ABOUT US PAGE ******************************************************

 =============================================== ======================= =======================  */

/* ======================== about us banner Open ================================ */


.hero.aboutus {
    background: url("../images/about-banner.png");
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 550px;
    max-height: 550px;
}

.hero.aboutus .hero--caption h1 {
    color: var(--color-goldDark);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    padding-bottom: 10px;
}

.hero.aboutus .hero--caption p {
    color: var(--color-goldDark);
    font-size: 21px;
    font-weight: 400;
    padding-top: 10px;
}

.teamWrapper {
    position: relative;
}


.teamWrapper .teamWrapper__inner {
    margin-top: 80px;
    position: relative;
}


.teamWrapper .section-title .subTitle,
.teamWrapper .section-title .mainTitle {
    text-align: left;
}

.teamWrapper .teamWrapper__inner .swiper {
    overflow: visible;
}

.teamWrapper .teamWrapper__inner .swiper-slide {
    width: 100%;
    height: 450px;
}


/* next prev btn */

.teamWrapper .teamWrapper__inner .swiper-button-next,
.teamWrapper .teamWrapper__inner .swiper-button-prev {
    top: -11%;
    border: 2px solid var(--color-goldDark);
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.teamWrapper .teamWrapper__inner .swiper-button-next::after,
.teamWrapper .teamWrapper__inner .swiper-button-prev::after {
    font-size: 15px;
    color: var(--color-goldDark);
}

.teamWrapper .teamWrapper__inner .swiper-button-prev {
    left: calc(100% - 126px);
}

.teamWrapper .teamWrapper__inner .swiper-button-next {
    right: 53px;
}

/* next prev btn */


.teamWrapper .teamWrapper__inner .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.teamWrapper .teamWrapper__inner .swiper-slide .teamWrapper__hover {
    background: rgba(202, 176, 143, .7);
    width: 100%;
    text-align: center;
    padding: 25px 0;
}

.teamWrapper .teamWrapper__inner .swiper-slide .teamWrapper__hover h3 {
    font-size: 21px;
    color: var(--color-white);
    font-weight: 600;
}

.teamWrapper .teamWrapper__inner .swiper-slide .teamWrapper__hover .team__post {
    font-size: 16px;
    color: var(--color-white);
    font-style: italic;
}

.teamWrapper .teamWrapper__inner .swiper-slide .teamWrapper__hover ul {
    padding-top: 20px;
}

.teamWrapper .teamWrapper__inner .swiper-slide .teamWrapper__hover ul li {
    font-size: 16px;
    color: var(--color-white);
}


.teamWrapper .fancy-imge img {
    width: 100%;
    max-width: 427px;
}

.teamWrapper .fancy-imge {
    position: absolute;
    right: 0;
    top: 49%;
}


/*  ========================= Services SEction Open ========================   */

.about-servicesWrapper {
    margin-top: 40px;
    padding: 40px 0;
    position: relative;
    isolation: isolate;
}

.about-servicesWrapper .fancy-imge img {
    width: 100%;
    max-width: 60px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.about-servicesWrapper .servicesSlide .servicesBox {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    transition: box-shadow .5s ease;
    min-height: 325px;
}

.about-servicesWrapper .servicesSlide .servicesBox:hover {
    box-shadow: none;
}

.about-servicesWrapper .servicesSlide .servicesBox .servicesBox-icon {
    background-color: var(--color-goldLight);
    height: 110px;
    width: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.about-servicesWrapper .servicesSlide .servicesBox .servicesBox-icon img {
    width: 100%;
    max-width: 65px;
}


.about-servicesWrapper .servicesSlide .servicesBox .servicesBox-heading {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 600;
    padding: 35px 10px;
}

.about-servicesWrapper .servicesWrapper__inner {
    padding-top: 80px;
}

.about-servicesWrapper .servicesWrapper__inner .swiper-button-next,
.about-servicesWrapper .servicesWrapper__inner .swiper-button-prev {
    top: -11%;
    border: 2px solid var(--color-goldDark);
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.about-servicesWrapper .servicesWrapper__inner .swiper-button-next::after,
.about-servicesWrapper .servicesWrapper__inner .swiper-button-prev::after {
    font-size: 15px;
    color: var(--color-goldDark);
}

.about-servicesWrapper .servicesWrapper__inner .swiper-button-prev {
    left: calc(50% - 40px);
}

.about-servicesWrapper .servicesWrapper__inner .swiper-button-next {
    right: calc(50% - 40px);
}

/*  ========================= Services SEction Close ========================   */


/* About us Footer Contact page */
.about__contact {
    margin-bottom: 50px;
}

.about__contact .about-contact__left,
.about__contact .about-contact__right {
    padding-bottom: 35px;
}

.about__contact .about-contact__left .section-title .subTitle,
.about__contact .about-contact__left .section-title .mainTitle {
    text-align: left;
}

.about__contact .about-contact__left .about-contact__in {
    padding-top: 25px;
}

.about__contact .about-contact__left .about-contact__in p {
    font-size: 16px;
}

.about__contact .about-contact__left .about-contact__in a {
    display: inline-block;
    color: #212529;
}


/* ======================== about us banner Close ================================ */


/* ================================================ ======================= =======================

 ***************************  SERVICES PAGE ******************************************************

 =============================================== ======================= =======================  */

/* ======================== Services banner Open ================================ */

.servicesBanner {
    background: linear-gradient(transparent, rgba(202, 176, 143, .4)), url("../images/services-banner.png");
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 600px;
    max-height: 600px;
}

.servicesBanner .hero--caption h1 {
    color: var(--color-black);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    padding-bottom: 10px;
}

.servicesBanner .hero--caption p {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 400;
    padding-top: 10px;
}

.servicesBanner .hero--caption .hero-btn {
    margin-top: 30px;
}

.servicesBanner .hero--caption .heroFill__btn {
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.servicesBanner .hero--form {
    background-color: var(--color-goldLight);
    padding: 20px;
    border-radius: 50px;
}


.servicesBanner .hero--form .hero--form__title h3 {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
}

.servicesBanner .hero--form .form-control:focus {
    box-shadow: unset;
    border: 0;
}

.servicesBanner .hero--form .form-check {
    color: var(--color-white);
    font-size: 14px;
}

/* ======================== Services banner Close ================================ */


/* ======================== Como Atuamos Open ================================ */
.services__processo {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.services__processo .serices__processo__inner {
    padding-top: 40px;
}

.services__processo .serices__processo__inner .circle-number {
    color: var(--color-white);
    font-size: 35px;
    background-color: var(--color-goldDark);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.services__processo .serices__processo__inner .sevicesProcesso__box {
    margin-bottom: 25px;
}

.services__processo .serices__processo__inner .sevicesProcesso__box h4 {
    color: var(--color-moreDark);
    font-size: 20px;
    font-weight: 600;
}

.services__processo .serices__processo__inner .sevicesProcesso__box p {
    color: var(--color-black);
    font-size: 16px;
}

.services__processo .fancy-imge {
    position: absolute;
    right: -10%;
    top: 0;
    z-index: -1;
}

.services__processo .fancy-imge img {
    width: 100%;
    max-width: 300px;
}

.services__processo .section-title .subTitle,
.services__processo .section-title .mainTitle {
    text-align: left;
}

.servicesEmque {
    margin-top: 80px;
}


.servicesEmque .section-title .subTitle,
.servicesEmque .section-title .mainTitle {
    text-align: left;
}

.servicesEmque p {
    padding-top: 15px;
}


.servicesAntese {
    margin-top: 80px;
}


.servicesAntese .beer-slider {
    margin-top: 40px;
}

.homeCta.servicesCta {
    margin-top: 80px;
}


.homeCta.servicesCta .homeAboutus__para {
    font-size: 16px;
}

/* ======================== Como Atuamos Close ================================ */


/*  ========================= FAQ Section Open  ======================== */

.faq {
    margin-top: 80px;
    position: relative;
}
.faq .accordion-item {
    border:2px solid var(--color-goldDark);
}
.faq .accordion-button {
    background-color: var(--color-goldDark);
    color:var(--color-white);
    font-size: 24px;
    font-weight: 600;
}
.faq .accordion-button:not(.collapsed) {
    color: var(--color-black);
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    font-size: 24px;
    font-weight: 600;
}
.faq .accordion-button:focus {
    border: 0;
    box-shadow: unset;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url(../images/mis.png);
    transform: rotate(-180deg);
}

.faq .accordion-button::after {
    flex-shrink: 0;
    width: 1.87rem;
    height: 1.87rem;
    margin-left: auto;
    content: "";
    background-image: url(../images/plus.png);
    background-repeat: no-repeat;
    background-size: 1.87rem;
    transition: transform 0.2s ease-in-out;
}

.faq .fancy-imge {
    position: absolute;
    left: -10%;
    top: 20%;
    z-index: -1;
}

.faq .fancy-imge img {
    width: 100%;
    max-width: 450px;
}



/*  ========================= FAQ Section Close  ======================== */

.servicesFoot {
    margin-top: 80px;
    margin-bottom: 80px;
}

.servicesFoot .section-title {
    margin-bottom: 40px;
}



/*  ========================= Services Archive PAge Open  ======================== */

.hero.servicesArchive {
    background: url("../images/service-archive.png");
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 550px;
    max-height: 550px;
}



.serarchive-servicesWrapper {
    margin-top: 80px;
    margin-bottom: 60px;
}

.serarchive-servicesWrapper .servicesWrapper__inner {
    margin-top: 50px;
}

.serarchive-servicesWrapper   .servicesBox {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 325px;
}


.serarchive-servicesWrapper   .servicesBox .servicesBox-icon {
    background-color: var(--color-goldLight);
    height: 110px;
    width: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.serarchive-servicesWrapper   .servicesBox .servicesBox-icon img {
    width: 100%;
    max-width: 65px;
}

.serarchive-servicesWrapper  .servicesBox .servicesBox-heading {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 600;
    padding: 35px 10px;
}


/*  ========================= Services Archive PAge Close  ======================== */



/*  ========================= NOTICIAS  PAge Open  ======================== */

.noticiasWrapper {
    margin-top: 80px;
    margin-top: 80px;
}

.noticiasWrapper .noticiasHeaading {
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    padding-bottom: 40px;
}
.noticiasWrapper .noticiasHeaading span {
     color:var(--color-moreDark);
    font-weight: 600;

}
.noticiasWrapper .noticiasWrapper__blog {
    margin-bottom: 50px;
}
.noticiasWrapper .noticiasWrapper__blog img {
    width: 100%;
    height:350px;
    object-fit: cover;
}
.noticiasWrapper .noticiasWrapper__blog .blog-cat {
    font-size: 14px;
    font-style: italic;
    color:var(--color-moreDark);
    padding-top: 15px;
}

.noticiasWrapper .noticiasWrapper__blog h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

/*  ========================= NOTICIAS  PAge Close  ======================== */

/*  ========================= NOTICIAS SINGLE  PAge Open  ======================== */
.noticiasSingle {
    margin-top: 80px;
}
.noticiasSingle .noticiasLeft {
    padding-bottom: 40px;
}
.noticiasSingle .noticiasLeft .notices-cat{
  color:var(--color-goldDark);
    font-size: 16px;
    font-style: italic;
}
.noticiasSingle .noticiasLeft img {
    margin-bottom: 15px;
}
.noticiasSingle .noticiasLeft h3{
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 25px;
}
.noticiasSingle .noticiasLeft p {
    font-size:16px;
}
.noticiasSingle .noticiasRight  img {
    width: 100%;
    max-width: 180px;

}
.noticiasSingle .noticiasRight a h3{
    font-size:24px;
    color:var(--color-black);
    font-weight: 600;
    padding-bottom: 40px;
}
.noticiasSingle .noticiasRight .blog-cat {
    color:var(--color-goldDark);
    font-style: italic;
}
.noticiasSingle .noticiasRight .relatedNotices {
    border-top:2px solid var(--color-goldDark);
    padding: 25px 0;
}

.noticiasSingle .noticiasRight .relatedNotices:last-child {
    border-bottom:2px solid  var(--color-goldDark);
}

/*  ========================= NOTICIAS SINGLE  PAge Close  ======================== */