@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
# Normalize
# Forms
# Links
# Transitions
# Utilities
# Header
# Panel Side Mobile
# Footer

# Hero

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
    font-family: 'alleritalic';
    src: url('../../assets/fonts/aller_it-webfont.woff2') format('woff2'),
         url('../../assets/fonts/aller_it-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'allerbold_italic';
    src: url('../../assets/fonts/aller_bdit-webfont.woff2') format('woff2'),
         url('../../assets/fonts/aller_bdit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'allerbold';
    src: url('../../assets/fonts/aller_bd-webfont.woff2') format('woff2'),
         url('../../assets/fonts/aller_bd-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'allerregular';
    src: url('../../assets/fonts/aller_rg-webfont.woff2') format('woff2'),
         url('../../assets/fonts/aller_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: #fff;
    color: #434867;
    font-size: 16px;
    position: relative;
}

p {
    font-weight: 400;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Open Sans", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input:focus,
select:focus {
  outline: 0;
}

input:focus-visible,
select:focus-visible {
  outline: 0;
}

button,
input,
select,
textarea {
  color: #a4a4a4;
  font-size: 16px;
  line-height: 1.875;
  word-break: break-word;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
    width: 100%;
    color: #706F6F;
    border: none;
    background: #fff;
    border-bottom: 1px solid #fff;
    padding: 11px 24px;
    box-sizing: border-box;
    outline: none;
    font-size: 0.938rem;
    line-height: 1;
    font-weight: 400;
    border-radius: 50px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #a4a4a4;
}

select {
  border: none;
  background: transparent;
  outline: none;
  border-bottom: 1px solid #a4a4a4;
}

textarea {
  width: 100%;
  height: 130px;
  vertical-align: top;
  border-radius: 10px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a4a4a4;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #a4a4a4;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #a4a4a4;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #a4a4a4;
}
/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a:hover, a:focus, a:active {
  color: #fff;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}
/*--------------------------------------------------------------
# Transitions
--------------------------------------------------------------*/
a, .Web-Header, .Web-Header.Sticky, .cta, img, .menu,
.panel-overlay, {
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    letter-spacing: normal;
    color: #a4a4a4;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.Main-Wrapper {
    display: block;
    position: relative;
}

.main-border::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 2;
}

.main-border::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #f4f4f4;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 2;    
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}
#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -100px 0 0 -100px;
}

.cta {
    background: #fff;
    border: 1px solid #fff;
    padding: 6px 41px;
    color: #c39176;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    border-radius: 0;
    position: relative;
    border-radius: 50px;
    font-weight: 700;
}

/*.cta::after {
    content: '';
    background-image: url('../../assets/img/arrow-down-diagonal.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    width: 21px;
    height: 21px;
    margin-left: 22px;
}*/

.cta:hover{
    color: #c39176;
    text-decoration: none;
}

.panel-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.seccion {
    padding: 90px 0;
}

.box_mouse {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mouse {
    width: 23px;
    height: 33px;
    border: 1px solid rgb(67 72 103 / 50%);
    background-color: transparent;
    border-radius: 13px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scroll {
  width: 3px;
  height: 10px;
  background-color: rgb(67 72 103 / 50%);
  border-radius: 2px;
  position: absolute;
  bottom: 9px;
  animation: move_918 1.5s linear infinite;
}

@keyframes move_918 {
    0% {
        bottom: 9px;
    }

    50% {
        bottom: 5px;
    }

    100% {
        bottom: 9px;
    }
}

.seccion_home_hero .box_mouse {
    top: inherit;
    background-color: transparent;
}

.seccion_home_hero .box_mouse .mouse {
    border: 1px solid rgb(255 255 255);
}

.seccion_home_hero .box_mouse .mouse .scroll {
    background-color: rgb(255 255 255);
}

.seccion_home_metodo .box_mouse {
    background-color: #c39276;
}

.seccion_home_metodo .box_mouse .mouse {
    border: 1px solid rgb(67 72 103);
}

.seccion_home_metodo .box_mouse .mouse .scroll {
    background-color: rgb(67 72 103);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.Web-Header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0;
}

.main-header .header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.header-row > [class^=col-header] {
    display: flex;
    align-items: stretch;
    position: static;
}

.header-row .col-header {
    flex-basis: 0;
    flex-grow: 0.65;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
}

.header-row .col-header.col-nav {
    flex-grow: 0.4;
}

.header-row .col-header.col-logo {
    flex-grow: 0.2;
    align-items: center;
}

.header-row .col-header.col-header_left {
    justify-content: flex-start;
}

.header-row .col-header.col-header_center {
    justify-content: center;
}

.header-row .col-header.col-header_right {
    -ms-flex-pack: center;
    justify-content: flex-end;
}

.main-navigation {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: auto;
}

.main-navigation > ul {
    position: relative;
    display: flex;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}

.main-navigation ul {
    font-weight: 600;
    font-size: 0.875rem;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
}

.main-navigation > ul > li {
    margin: 0px 17px;
    padding: 0px 0px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.main-navigation ul > li > a {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    outline: none;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding: 0;
}

.main-navigation ul > li > a.cotizar {
    background: linear-gradient(90deg, rgba(255, 107, 0, 1) 0%, rgba(231, 42, 101, 1) 100%);
    padding: 10px 20px;
}

.main-navigation ul > li > a.cotizar::after {
    content: '';
    background-image: url('../../assets/img/arrow.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 17px;
    height: 16px;
    margin-left: 10px;
}

.main-navigation_mob ul > li > a.cotizar {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    outline: none;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding: 10px 0;
    text-transform: uppercase;
    font-family: 'gill_sansregular';
    background: linear-gradient(90deg, rgba(255, 107, 0, 1) 0%, rgba(231, 42, 101, 1) 100%);
    padding: 6px 10px;
    font-size: 0.875rem;
}

.main-navigation_mob ul > li > a.cotizar::after {
    content: '';
    background-image: url('../../assets/img/arrow.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 17px;
    height: 16px;
    margin-left: 10px;
}

.main-nav-mob {
    display: flex;
    align-items: center;
}

.menu-burger {
    position: relative;
    width: 32px;
    height: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-left: 16px;
    cursor: pointer;
    display: flex;
}

.menu-burger > span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

/*--------------------------------------------------------------
# Header Sticky
--------------------------------------------------------------*/
.header-sticky {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #c39276;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
    border-bottom: 1px solid #e6e6e6;
    padding: 16px 0;
}

.Web-Header.Sticky .header-sticky {
    top: 0;
    opacity: 1;
}

.header-sticky .main-navigation ul > li > a {
    color: #fff;
}

.header-sticky .main-navigation ul > li > a.cotizar {
    background: linear-gradient(90deg, rgba(255, 107, 0, 1) 0%, rgba(231, 42, 101, 1) 100%);
    padding: 10px 20px;
    color: #fff;
}

/*--------------------------------------------------------------
# Panel Side Mobile
--------------------------------------------------------------*/
.side-panel {
    width: 300px;
    max-width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: #4a4f54;
    overflow-x: hidden;
    z-index: 9999;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    /* -webkit-transform: translateX(0); */
    /* -ms-transform: translateX(0); */
    /* transform: translateX(0); */
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}

.side-panel.side-panel-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.side-panel_inner {
    height: 100%;
    padding: 24px;
    padding-top: 0;
}

.side-panel_head {
    padding: 14px 0 13px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.side-panel_body {
    padding: 1rem 0;
}

.side-panel-redes {
    margin-top: 24px;
    line-height: 0;
}

.side-panel_body nav ul li {
    margin-bottom: 0.5rem;
}

.side-panel_body nav ul li a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dropdown-menu {
    background-color: #009fe3;
    border: 0;
    width: 100%;
    padding: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.Web-Footer {
    background-color: #f6f6f6;
    color: #434867;
    background-image: url('../../assets/img/bg_footer.jpg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.footer_top {
    border-top: 1px solid #434867;
    border-bottom: 1px solid #434867;
}

.col_borde {
    border-left: 1px solid #434867;
    border-right: 1px solid #434867;
}

.footer_top .widget-footer {
    padding: 20px 0;
}
.widget-footer.widget-footer-1 {}
.widget-footer.widget-footer-2 {}
.widget-footer.widget-footer-3 {}
.widget-footer.widget-footer-4 {}

.widget-footer .footer_social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.widget-footer .footer_social a {
    display: inline-flex;
    background-color: #434867;
    color: #c1a686;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.footer_social a i {}

.box_footer {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    width: 32%;
    vertical-align: top;
}
.box_footer .icon {}
.box_footer .box_footer_content {}
.box_footer .box_footer_content h6 {
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1;
    margin-bottom: 0;
}
.box_footer .box_footer_content a {
    color: #434867;
    font-size: 0.813rem;
    line-height: 1;
}

.widget-footer .nav-list li {
    margin-bottom: 20px;
}

.widget-footer a {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 1;
}

.footer_nav {}
.footer_nav a {
    color: #434867;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.75rem;
    margin-left: 5px;
    font-weight: 700;
}

.footer_nav a::after {
    content: "|";
    display: inline-block;
    margin-left: 10px;
    vertical-align: text-bottom;
}

.footer_nav a:first-child {
    margin-left: 0;
}

.footer_nav a:last-child::after {
    display: none;
} 

.footer_bottom {
    padding: 132px 0;
}

.footer_copy {
    font-size: 2rem;
    line-height: 2.375rem;
    font-family: 'allerbold_italic';
}

.footer_copy_small {
    font-size: 0.75rem;
    line-height: 1;
    margin-top: 10px;
}

.footer_copy_small a {
    color: #434867;
    text-decoration: none;
    font-weight: 700;
}

.BoxBotonWhatsappFlotante {
    position: fixed;
    right: 15px;
    bottom: 24px;
    z-index: 9991;
}

.BoxBotonWhatsappFlotante .BtnLink {
    background: linear-gradient(180deg, rgba(95, 252, 123, 1) 0%, rgba(40, 209, 70, 1) 100%);
    width: 60px;
    height: 60px;
    background-size: contain;
    border-radius: 50%;
    box-shadow: 0px 5px 5px rgb(0 0 0 / 20%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------------------------------------------------------------
# Hero Home
--------------------------------------------------------------*/
.seccion_home_hero {
    background-image: url('../../assets/img/home/SP_Hero_v2.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 135px;
    color: #fff;
}

.seccion_home_hero .box_content .title {
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 32px;
}
.seccion_home_hero .box_content .image_hero {}

/*--------------------------------------------------------------
# Nosotros Home
--------------------------------------------------------------*/
.seccion_home_nosotros {
    background-color: #434867;
    color: #fff;
}

.box_content {
    font-size: 0.938rem;
    line-height: 1.5rem;
}

.box_content .subTitle {
    font-family: 'alleritalic';
    font-size: 0.875rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.box_content .title {
    font-family: 'allerbold_italic';
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.box_content .title_large {
    font-size: 2.75rem;
    line-height: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.text_large {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.font_bold {
    font-weight: 700;
}

.seccion_home_nosotros .box_content {}
.seccion_home_nosotros .box_content .subTitle {}
.seccion_home_nosotros .box_content .title {
    color: #c39176;
}

.nosotros_card {
    background-color: #c39176;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 54px;
}

.nosotros_card_content {
    padding: 50px 71px 50px 71px;
}

.nosotros_card_content .title {
    font-size: 1.5rem;
    line-height: 1.875rem;
    font-weight: 700;
}

.nosotros_card_content .cta {
    position: relative;
    left: 180px;
}

/*--------------------------------------------------------------
# Que hacemos Home
--------------------------------------------------------------*/
.seccion_home_queHacemos {}

.card_queHacemos {
    background-color: #434867;
    color: #fff;
    border-radius: 16px;
    position: relative;
}

.card_queHacemos .cta_video {
    position: absolute;
    top: 230px;
    right: 60px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all .5s ease;
}

.card_queHacemos .cta_video .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #515f8c;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.card_queHacemos .cta_video .palabra {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-left: -20px;
}

.card_queHacemos .imagen {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card_queHacemos .card_queHacemos_content {
    padding: 48px 32px;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.card_queHacemos .card_queHacemos_content .title {}

.card_queHacemos .card_queHacemos_content .cta {
    background-color: #c39176;
    border: 1px solid #c39176;
    color: #fff;
    margin-top: 1.5rem;
    position: relative;
    left: 395px;
}

/*--------------------------------------------------------------
# Como lo hacemos Home
--------------------------------------------------------------*/
.seccion_home_metodo {
    background-color: #c39276;
    color: #fff;
    background-image: url('../../assets/img/bg_marron.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.card_icon .icon {
    margin-bottom: 1rem;
}

.card_icon p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #434867;
    font-weight: 700;
}

.seccion_home_metodo .cta {
    background-color: #434867;
    border: 1px solid #434867;
    color: #fff;
}

/*--------------------------------------------------------------
# Proyectos Home
--------------------------------------------------------------*/
.seccion_home_proyectos {
    background-color: #f6f6f6;
}

#carouselProyectos {}

#carouselProyectos .carrusel_image {
    border-radius: 20px;
}

#carouselProyectos .carousel-caption {
    top: 40px;
    bottom: inherit;
    left: 50px;
    text-align: left;
    background-color: rgb(112 111 111 / 80%);
    border-radius: 20px;
    width: 390px;
    padding: 32px;
}

#carouselProyectos .carousel-caption .title {
    font-family: 'allerbold_italic';
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}

#carouselProyectos .carousel-caption p {
    font-weight: 300;
}

#carouselProyectos .carousel-caption .cta {
    background: #434867;
    border: 1px solid #434867;
    color: #fff;
    position: relative;
    left: 190px;
}

.carousel-indicators {
    margin-bottom: 3rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    margin-left: 5px;
    opacity: 1;
    padding: 4px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators .active {
    border: 1px solid #fff;
}

.carousel-indicators [data-bs-target] .circle {
    display: block;
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/*--------------------------------------------------------------
#   Hero
--------------------------------------------------------------*/
.seccion_hero {
    background-color: #434867;
    color: #fff;
    min-height: 400px;
    padding: 130px 0 200px;
}

.seccion_hero.seccion_hero_nosotros {
    background-image: url('../../assets/img/quienes-somos/SP_Nosotros_hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.seccion_hero .box_content {}
.seccion_hero .box_content .title {
    font-family: 'allerregular';
    line-height: 1.75rem;
}
.seccion_hero .box_content p {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
}

.seccion_nosotros_01 {
    padding-bottom: 90px;
}

.seccion_hero_grid {
    position: relative;
    top: -116px;
}

.nosotros_grid_imagenes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    align-items: center;
}

.nosotros_grid_imagenes img {
    border-radius: 16px;
    width: 100%;
}

.seccion_nosotros_02 {
    padding-bottom: 90px;
}

.seccion_nosotros_03 {
    background: linear-gradient(90deg, rgba(67, 72, 103, 1) 50%, rgba(246, 246, 246, 1) 50%);
}

.seccion_nosotros_03 .box_content_left {
    color: #fff;
}

.seccion_nosotros_03 .box_content_left .cta {
    background-color: #C39176;
    border: 1px solid #C39176;
    color: #fff;
    display: table;
    margin-left: auto;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.seccion_nosotros_03 .box_content_left .cta:hover {
    background-color: #fff;
    color: #C39176;
}

.seccion_nosotros_03 .box_content_right {
    
}

.seccion_nosotros_03 .box_content_right .cta {
    background-color: #434867;
    border: 1px solid #434867;
    color: #fff;
    display: table;
    margin-left: auto;
    webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.seccion_nosotros_03 .box_content_right .cta:hover {
    background-color: #fff;
    color: #434867;
}

.list_check li {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.list_check li::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url('../../assets/img/check.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
}

/*--------------------------------------------------------------
#   Pagina Que Hacemos
--------------------------------------------------------------*/
.seccion_hero.seccion_hero_queHacemos {
    background-image: url('../../assets/img/que-hacemos/SP_Que_Hacemos_hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.seccion_queHacemos_02 {
    background: linear-gradient(0deg, rgba(246, 246, 246, 1) 30%, rgba(255, 255, 255, 1) 30%);
}

.seccion_queHacemos_01 {
    padding: 64px 0 0px;
}

.seccion_queHacemos_01 .box_content_right p {
    max-width: 335px;
}

.imgQueHacemosVideo {
    display: block;
    position: relative;
    top: -200px;
}

.imgQueHacemosVideo img {
    border-radius: 10px;
}

.seccion_metodo_QueHacemos {
    background-image: none;
    background-color: #F6F6F6;
    color: #434867;
}

/*--------------------------------------------------------------
#   Pagina Como lo hacemos
--------------------------------------------------------------*/
.seccion_hero.seccion_hero_comoLoHacemos {
    background-image: url('../../assets/img/como-lo-hacemos/SP_Como_Lo_Hacemos_hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.seccion_comoLoHacemos_01 {
    position: relative;
    top: -132px;
}

.card_metodo {
    background-color: #F8F8F8;
    padding: 48px 32px;
    border-radius: 10px;
    height: 100%;
}

.card_metodo h3 {
    font-size: 1.5rem;
    line-height: 1.875rem;
    font-weight: 700;
}

.card_metodo_last {
    background-color: #C39276;
    color: #fff;
}

.card_metodo_last .cta {
    border: 1px solid #434867;
    background-color: #434867;
    color: #fff;
}

.galeria img {
    border-radius: 10px;
}

/*--------------------------------------------------------------
#   Galeria
--------------------------------------------------------------*/
.seccion_hero.seccion_hero_galeria {
    background-image: url('../../assets/img/galeria/SP_Galeria_hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.seccion_galeria_01  {
    position: relative;
    top: -132px;
}

/*--------------------------------------------------------------
#   Contacto
--------------------------------------------------------------*/
.seccion_hero.seccion_hero_contacto {
    background-image: url('../../assets/img/galeria/SP_Galeria_hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.seccion_contacto_01 {
    position: relative;
    top: -132px;
}

.box_formulario {
    background-color: #434867;
    border: 1px solid #DBDBDB;
    border-radius: 25px;
    color: #fff;
    padding: 32px;
}

.box_formulario .title {
    font-family: 'allerregular';
    font-size: 1.5rem;
    line-height: 1.813rem;
    margin-bottom: 10px;
}
.box_formulario .text {
    font-size: 0.938rem;
    line-height: 1.5rem;
}

.btnForm {
    background-color: #C1A686;
    border: 1px solid #C1A686;
    color: #fff;
    font-size: 0.938rem;
    line-height: 1;
    font-weight: 400;
    padding: 13px 57px;
}

.btnForm:hover {
    color: #fff;
}

.box_contacto_aside {
    background-color: #F6F6F6;
    padding: 48px 48px;
    border: 1px solid #DBDBDB;
    border-radius: 25px;
    color: #434867;
    height: 100%;
}

.contacto_info {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid #C1A686;
    margin-bottom: 32px;
}

.contacto_info .icon {
    justify-self: center;
}

.contacto_info h6 {
    font-size: 0.938rem;
    line-height: 1;
    font-weight: 700;
}

.contacto_info p {
    font-size: 1rem;
    line-height: 1.5rem;
}

.contacto_info a {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #434867;
    text-decoration: none;
}

.contacto_info:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}