:root {
    --lightgray: #f2f2f2;
    --gray: #3a3f47;
    --lead: #e2e3f8;
    --yellow: #fdd835;
    --darkyellow: #fddf2e;
    --lightyellow: #f6d92d;
    --blue: #193e51;
    --verdewsp: #00c62a;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
    color: var(--blue);
}

p {
    font-size: inherit;
}

a {
    color: inherit;
}

a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}

.text-lightgray {
    color: var(--lightgray);
}

.text-gray {
    color: var(--gray);
}

.text-lead {
    color: var(--lead);
}

.text-yellow {
    color: var(--yellow);
}

.text-darkyellow {
    color: var(--darkyellow);
}

.text-lightyellow {
    color: var(--lightyellow);
}

.text-blue {
    color: var(--blue);
}

.text-verdewsp {
    color: var(--verdewsp);
}

.bg-lightgray {
    background-color: var(--lightgray);
}

.bg-gray {
    background-color: var(--gray);
}

.bg-lead {
    background-color: var(--lead);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-darkyellow {
    background-color: var(--darkyellow);
}

.bg-lightyellow {
    background-color: var(--lightyellow);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-blue-700 {
    background-color: rgb(25, 62, 81, .7);
}

.bg-verdewsp {
    background-color: var(--verdewsp);
}

.bg-black-40 {
    background-color: rgba(0, 0, 0, 0.40);
}

.bg-cover {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.object-cover {
    object-fit: cover !important;
    object-position: center center !important;
}

.bg-cover-top {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important;
}

.border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity));
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity));
}

.cursor-pointer {
    cursor: pointer;
}

/* ==========================================================================
Fonts
========================================================================== */

@font-face {
    font-family: "GothamBold";
    src: url("../fonts/GothamBold.eot");
    src: url("../fonts/GothamBold.eot") format("embedded-opentype"),
        /* url("../fonts/GothamBold.woff2") format("woff2"), */
        /* url("../fonts/GothamBold.woff") format("woff"), */
        url("../fonts/GothamBold.ttf") format("truetype"),
        url("../fonts/GothamBold.svg#GothamBold") format("svg");
}

@font-face {
    font-family: "GothamMedium";
    src: url("../fonts/GothamMedium.eot");
    src: url("../fonts/GothamMedium.eot") format("embedded-opentype"),
        /* url("../fonts/GothamMedium.woff2") format("woff2"), */
        /* url("../fonts/GothamMedium.woff") format("woff"), */
        url("../fonts/GothamMedium.ttf") format("truetype"),
        url("../fonts/GothamMedium.svg#GothamMedium") format("svg");
}

@font-face {
    font-family: "GothamBook";
    src: url("../fonts/GothamBook.eot");
    src: url("../fonts/GothamBook.eot") format("embedded-opentype"),
        /* url("../fonts/GothamBook.woff2") format("woff2"), */
        /* url("../fonts/GothamBook.woff") format("woff"), */
        url("../fonts/GothamBook.ttf") format("truetype"),
        url("../fonts/GothamBook.svg#GothamBook") format("svg");
}

@font-face {
    font-family: "GothamBlack";
    src: url("../fonts/GothamBlack.eot");
    src: url("../fonts/GothamBlack.eot") format("embedded-opentype"),
        /* url("../fonts/GothamBlack.woff2") format("woff2"), */
        /* url("../fonts/GothamBlack.woff") format("woff"), */
        url("../fonts/GothamBlack.ttf") format("truetype"),
        url("../fonts/GothamBlack.svg#GothamBlack") format("svg");
}

@font-face {
    font-family: "GothamLight";
    src: url("../fonts/GothamLight.eot");
    src: url("../fonts/GothamLight.eot") format("embedded-opentype"),
        /* url("../fonts/GothamLight.woff2") format("woff2"), */
        /* url("../fonts/GothamLight.woff") format("woff"), */
        url("../fonts/GothamLight.ttf") format("truetype"),
        url("../fonts/GothamLight.svg#GothamLight") format("svg");
}

.trans {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.light {
    font-family: "GothamLight", sans-serif;
}

.book {
    font-family: "GothamBook", sans-serif;
}

.semi,
.medium {
    font-family: "GothamMedium", sans-serif;
}

.bold,
.fw-bold {
    font-family: "GothamBold", sans-serif;
}

.black,
.extra-bold {
    font-family: "GothamBlack", sans-serif;
}


body {
    color: #193e51;
    font-family: "GothamBook", sans-serif;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 400;
}

.index-n2 {
    z-index: -2;
}

.index-n1 {
    z-index: -1;
}

.index-1 {
    z-index: 1;
}

.index-2 {
    z-index: 2;
}

.index-3 {
    z-index: 3;
}

.index-4 {
    z-index: 4;
}

/* text sizes starts */
.text-vhuge {
    font-size: 40px !important;
}

.text-xhuge {
    font-size: 18px !important;
}

.text-huge {
    font-size: 30px !important;
}

.text-xshuge {
    font-size: 20px !important;
}

.text-vbig {
    font-size: 25px !important;
}

.text-xbig {
    font-size: 25px !important;
}

.text-big {
    font-size: 20px !important;
}

.text-medium {
    font-size: 17px !important;
}

.text-xmedium {
    font-size: 14px !important;
}

.text-xnormal {
    font-size: 12px !important;
}

.text-normal {
    font-size: 14px !important;
}

.text-vsmall {
    font-size: 11px !important;
}

.text-small {
    font-size: 10px !important;
}

.text-xsmall {
    font-size: 10px !important;
}

.text-check-small {
    font-size: 10px !important;
}


.lh-1 {
    line-height: 1;
}

.lh-11 {
    line-height: 1.1;
}

.lh-12 {
    line-height: 1.2;
}

.lh-13 {
    line-height: 1.3;
}

/* text sizes ends */


/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

/*** Navbar Start ***/
.navbar-scroll {
    background-color: var(--blue) !important;
    transition: background-color 0.3s ease;
}

.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 15px;
    color: #fff;
    /* font-weight: 500; */
    font-size: 17px;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--yellow);
    transition: .5s;

}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
    background: var(--blue);
    color: var(--yellow);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-toggler {
    /* background: var(--yellow); */
    color: #fff !important;
    padding: 5px 12px;
    border: 0;
    /* border: 2px solid var(--bs-primary) !important; */
}

.navbar-dark .navbar-toggler {
    border: 0;
    box-shadow: none;
}

.custom-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    width: 36px;
    height: 21px;
}

.custom-hamburger .line {
    background-color: var(--darkyellow);
    height: 6px;
    border-radius: 3px;
    margin: 1px 0;
    transition: all 0.3s ease;
}

.line1 {
    width: 90%;
}

.line2 {
    width: 50%;
}

.line3 {
    width: 70%;
}

/* Estilo cuando el menú está abierto */
.custom-hamburger.open .line1,
.custom-hamburger.open .line2,
.custom-hamburger.open .line3 {
    width: 100%;
    transform: rotate(45deg);
}

.custom-hamburger.open .line2 {
    opacity: 0;
}

.custom-hamburger.open .line1 {
    /* transform: rotate(45deg) translate(5px, 5px); */
    transform: rotate(50deg) translate(5px, 5px);
}

.custom-hamburger.open .line3 {
    /* transform: rotate(-45deg) translate(5px, -5px); */
    transform: rotate(-50deg) translate(5px, -5px);
}

/*** Navbar End ***/


/*** Carousel Start ***/

#slideBanner::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(360deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 30%, rgb(0 0 0 / 60%) 30%, rgba(0, 0, 0, 0.60) 100%);
    left: 0;
    top: 0;
    z-index: 1;
}

.section-banner__content #slideBanner .slide-img__page,
.section-banner__content #slideBanner .slide-contactos__title {
    opacity: 0;
    display: none;
    transition: opacity .2s;
}

.section-banner__content #slideBanner .slide-img__page.active,
.section-banner__content #slideBanner .slide-contactos__title.active {
    opacity: 1;
    display: block;
}


/* Flechas de navegación */
#prevArrow,
#nextArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: 1px solid var(--darkyellow);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    animation: all 0.3s;
}

#prevArrow:hover,
#nextArrow:hover {
    background-color: var(--darkyellow);
}

#prevArrow {
    left: 10px;
}

#nextArrow {
    right: 10px;
}

#prevArrow i {
    position: relative;
    left: -15px;
}

#nextArrow i {
    position: relative;
    right: -15px;
}

#prevArrow-proy_arqui,
#nextArrow-proy_arqui {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid var(--darkyellow);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    animation: all 0.3s;
}

#prevArrow-proy_arqui:hover,
#nextArrow-proy_arqui:hover {
    background-color: var(--darkyellow);
}

.box_slide__content .btn__link button {
    width: 200px;
}

/* Dots personalizados dentro del contenedor */
/* Imágenes como fondo, cubriendo completamente */
.box-slide__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.box-slide__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Estilo opcional para los dots */
.section-banner__content .slick-dots {
    height: min-content;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    top: 0;
    right: 0;
    padding-right: 0rem;
    padding-top: 1rem;
}

#custom-dots-container .slick-dots {
    left: 0;
    top: -40px;
    /* transform: translate(-50%, 50%); */
    width: fit-content;
    z-index: 3;
}

.section-banner__content .slick-dots li {
    margin: 0 1px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #ffffff;
    /* Cambia el color de los dots */
}

.section-banner__content .slick-dots li button {
    padding: 0;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid var(--darkyellow);
}

.section-banner__content .slick-dots li.slick-active button {
    background-color: var(--darkyellow);
}


.section-banner__content .slick-dots li button:before {
    content: '';
}

.section-banner__content #slideContactos .slick-dots {
    position: absolute;
    /* bottom: 0; */
    /* right: 0; */
    top: -20px;
    right: -10px;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    height: min-content;
}

.section-banner__content #slideContactos .slick-dots li .count {
    display: none !important;
    position: absolute;
    top: -24px;
    left: 68%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.section-banner__content #slideContactos .slick-dots li.slick-active .count {
    display: flex !important;
}

.card-servicio {
    min-height: 400px;
}

.card-servicio.stands {
    min-height: 345px;
}

.card-servicio:hover {
    background-color: var(--lightyellow);
    transition: background-color 0.5s;

}

.pt-mobile {
    padding-top: 6rem !important;
}

.card-servicio .bg-image {
    min-height: 100px;
    width: 60px;
}

.card-servicio.stands .bg-image {
    min-height: 115px;
    width: 60px;
}

/** Slider Proyectos de arquitectura **/
.box-slider-proy_arqui>div {
    width: calc(100vw / 2) !important;
}

.box-slider-proy_arqui>div>img {
    height: 480px;
}

.box-slider-proy_arqui .card::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    /* z-index: 2; */
    background: linear-gradient(0deg, var(--blue), rgba(255, 255, 255, 0) 50%) no-repeat;
}

.box-slider-proy_arqui .btn__link {
    width: calc(100% - 40px);
}

.box-slider-proy_arqui .card-img-overlay {
    z-index: 3;
}

.box-slider-proy_arqui .card-img-overlay .btn__link {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.box-slider-proy_arqui .card-img-overlay .card-title {
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.box-slider-proy_arqui:hover .card-img-overlay .btn__link {
    opacity: 1;
    transform: translateY(0);
}

.box-slider-proy_arqui:hover .card::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    /* z-index: 1; */
    background-color: var(--blue);
    opacity: .5;
    filter: brightness(120%);
}

.box-slider-proy_arqui:hover .card-img-overlay .card-title {
    transform: translateY(-10px);
}

/**Formulario**/
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    font-family: "GothamBold", sans-serif;
}

.form-control:focus {
    border-color: var(--darkyellow) !important;
}

.formulario-home textarea {
    width: 100%;
    height: 130px !important;
}

.formulario-home .btn__link>button {
    width: 250px;
}

.box-yellow::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--lightyellow);
    z-index: 0;
}

.formulario-home .form-checkbox {
    width: 10px;
    height: 10px;
    margin-top: 4px;
}

.gracias {
    padding: 150px 0;
    text-align: center;
}

label.error {
    color: #f9f9f9;
}


/**BTN WSP**/
@keyframes wsp {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

.whatsapp-effect {
    animation: wsp 1s infinite;
}

aside.whatsapp:hover {
    transform: scale(1.1);
}

aside.whatsapp:not(.active) {
    bottom: -100px !important;
}

.trans {
    transition: all .3s ease-in-out;
}

/** FOOTER **/
.ul_footer {
    list-style-type: disc !important;
}

.ul_footer ::marker {
    color: var(--darkyellow);
    font-size: 20px;
    line-height: .8;
}

footer .row_foot>div {
    border: 0;
}

footer .row_foot2>div {
    border-top: 1px solid var(--lead);
}

footer .row_foot2>div>div {
    border-right: 1px solid var(--lead);
    padding-top: 10px;
}

footer .row_foot2>div>div:last-child {
    border: 0;
}

footer .row_foot4 {
    border-right: 1px solid var(--lead) !important;
    padding-top: 10px;
}

/** Abouts **/
.box-abouts__content::before {
    content: '';
    position: absolute;
    height: 420px;
    width: 520px;
    background: white;
    z-index: -1;
    top: -10px;
    left: -10px;
}

.section-abouts__content .btn__link {
    width: calc(100% - 40px);
}

.section-stands__content .btn__link {
    width: 240px;
}

.py-7 {
    padding-top: 9rem;
    padding-bottom: 1.5rem;
}

.box-beneficios_wraper .min-height {
    min-height: 300px;
}

.page-header-stands {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/lp/stands/banner-xs.jpg) center center no-repeat;
    background-size: cover;
    height: 480px;
}
.vh-banner{
    min-height: 570px;
    height: 570px;
}
@media (max-width: 991px) {
    #navbar.bg-dark-mobile {
        background-color: var(--blue);
    }

}

@media (min-width: 768px) {
    .card-servicio {
        min-height: 350px;
    }

    .card-servicio.stands {
        min-height: 300px;
    }

    .box-slider-proy_arqui>div {
        width: calc(100vw / 3) !important;
    }

    #prevArrow {
        left: 30px;
    }

    #nextArrow {
        right: 30px;
    }

    footer .row_foot3 {
        border-right: 1px solid var(--lead) !important;
        padding-top: 10px;
    }

    .bg-md-blue {
        background-color: var(--blue) !important;
    }

    .position-md-relative {
        position: relative !important;
    }

}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    .vh-banner{
      min-height: 100vh;
      height: auto;
    }
    #slideBanner::before {
        background: linear-gradient(270deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 50%, rgb(0 0 0 / 60%) 50%, rgba(0, 0, 0, 0.60) 100%);
    }

    /* text sizes starts */
    .text-vhuge {
        font-size: 44px !important;
    }

    .text-xhuge {
        font-size: 40px !important;
    }

    .text-huge {
        font-size: 34px !important;
    }

    .text-xshuge {
        font-size: 32px !important;
    }

    .text-vbig {
        font-size: 32px !important;
    }

    .text-xbig {
        font-size: 24px !important;
    }

    .text-big {
        font-size: 23px !important;
    }

    .text-medium {
        font-size: 19px !important;
    }

    .text-xmedium {
        font-size: 16px !important;
    }

    .text-xnormal {
        font-size: 14px !important;
    }

    .text-normal {
        font-size: 15px !important;
    }

    .text-vsmall {
        font-size: 13px !important;
    }

    .text-small {
        font-size: 12px !important;
    }

    .text-xsmall {
        font-size: 13px !important;
    }

    .card-servicio .card-body>div:first-child {
        min-height: 275px;
    }

    .card-servicio.stands .card-body>div:first-child {
        min-height: 225px;
    }

    .card-servicio .bg-image {
        width: 100%;
    }

    .box-slider-proy_arqui>div {
        width: calc(100vw / 4) !important;
    }

    .box-slider-proy_arqui>div>img {
        height: 460px;
    }

    .box-yellow::before {
        bottom: -25px;
        left: -25px;
        width: 125px;
        height: 125px;
    }

    .box-yellow iframe {
        height: 100%;
    }

    footer .row_foot>div {
        border-right: 1px solid var(--lead);
        padding-top: 10px;
    }

    footer .row_foot>div:last-child {
        border: 0;
    }

    footer .row_foot2>div>div,
    footer .row_foot2>div {
        border: 0;
    }

    .box_slide__content .btn__link button {
        width: 235px;
    }

    .bg-lg-blue {
        background-color: var(--blue) !important;
    }

    .position-lg-relative {
        position: relative !important;
    }

    .box-beneficios_wraper .min-height {
        min-height: 450px;
    }

    .page-header-stands {
        background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/lp/stands/banner.jpg) center center no-repeat;
        height: 530px;
    }
}

@media (min-width: 1200px) {
    .card-servicio .card-body>div:first-child {
        min-height: 225px;
    }

    .card-servicio.stands .card-body>div:first-child {
        min-height: 185px;
    }

    .box-slider-proy_arqui>div {
        width: calc(100vw / 5) !important;
    }

    .box-slider-proy_arqui>div>img {
        height: 520px;
    }

    .box-beneficios_wraper .min-height {
        min-height: 520px;
    }
}

@media (min-width: 1400px) {

    /* text sizes starts */
    .text-vhuge {
        font-size: 50px !important;
    }

    .text-xhuge {
        font-size: 45px !important;
    }

    .text-huge {
        font-size: 40px !important;
    }

    .text-xshuge {
        font-size: 35px !important;
    }

    .text-vbig {
        font-size: 38px !important;
    }

    .text-xbig {
        font-size: 30px !important;
    }

    .text-big {
        font-size: 25px !important;
    }

    .text-medium {
        font-size: 20px !important;
    }

    .text-xmedium {
        font-size: 18px !important;
    }

    .text-xnormal {
        font-size: 20px !important;
    }

    .text-normal {
        font-size: 17px !important;
    }

    .text-vsmall {
        font-size: 15px !important;
    }

    .text-xsmall {
        font-size: 15px !important;
    }

    .pt-mobile {
        padding-top: 0 !important;
    }

    .box-beneficios_wraper .min-height {
        min-height: 600px;
    }
}


@media screen and (min-width: 1700px) {
    #nextArrow {
        transform: translateX(-5vw);
    }

    #prevArrow {
        transform: translateX(5vw);
    }
}


/**CSS RECUPERADO **/

.page-header1 {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/servicios-de-arquitectura-comercial-cubico-retail.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

.page-header2 {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/Stands-y-Arquitectura-Publicitaria-cubico.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/obras-civiles-y-servicios-generales-cubico-pe-arquitectura-comercial.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

.page-header-nosotros {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/cubico-arquitectura-comercial-nosotros.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

.page-header-contacto {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/cubico-arquitectura-comercia-cubico-contacto.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}


.arquitectura-img {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px;
    overflow: hidden;
}

.arquitectura-img::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-gray-green);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.arquitectura-img::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.arquitectura-rotate-left {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    left: -10%;
    rotate: 25deg;
    z-index: 2;
}

.arquitectura-rotate-right {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: -10%;
    rotate: -25deg;
    z-index: 2;
}

.arquitectura-img img {
    position: relative;
    z-index: 2;
    border-radius: 0px;
}

.arquitectura-item .arquitectura-content {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: 1s;
}

.arquitectura-item:hover .arquitectura-content {
    box-shadow: inset 950px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

/*Our Process 1*/

.our-process {
    padding: 95px 0;
    padding-bottom: 140px;
    background-color: #f8f8f8;
}

.our-process__item {
    background: #213e51;
    padding: 45px 30px;
    position: relative;
    margin-top: 25px;
}

.our-process__item>h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
}

.our-process__item>h3>i {
    color: var(--yellow);
    margin-right: 8px;
    font-size: 30px;
    vertical-align: middle;
}

.our-process__item>p {
    color: #ffffff;
}

.our-process__item--l-b:after {
    content: '';
    height: 30px;
    width: 287px;
    border: 2px dashed #bbbbbb;
    border-top: none;
    position: absolute;
    left: 50%;
    bottom: -30px;
    /*display: none;*/
}

.our-process__item--l-t:before {
    content: '';
    height: 30px;
    width: 287px;
    border: 2px dashed #bbbbbb;
    border-bottom: none;
    position: absolute;
    left: 50%;
    top: -30px;
    /*display: none;*/
}