@charset "UTF-8";

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

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

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

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

body {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: #fff;
    color: #000;
    position: relative;
}

p {
    font-weight: 300;
}

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

h1,h2,h3,h4,h5,h6 {
    font-family: 'akira_expandedsuper_bold';
}

img {
    max-width: 100%;
    height: auto;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
label {
    font-size: 14px;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  border: 0;
  background-color: #fff;
  border-radius: 6px;
}

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: #000;
    font-weight: 400;
    font-size: 1rem;
    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: #000;
    border: none;
    background: #fff;
    padding: 11px 11px;
    box-sizing: border-box;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 0;
}

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 {
  color: #000;
}

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

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

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

/* textarea {
  width: 100%;
  height: 130px;
  vertical-align: top;
  border: 0 !important;
} */

.select_custom {
    position: relative;
    width: 100%;
}

.select_custom::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18px' height='18px' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23000' d='M8.2 275.4c0-8.6 3.4-17.401 10-24.001c13.2-13.2 34.8-13.2 48 0l451.8 451.8l445.2-445.2c13.2-13.2 34.8-13.2 48 0s13.2 34.8 0 48L542 775.399c-13.2 13.2-34.8 13.2-48 0l-475.8-475.8c-6.8-6.8-10-15.4-10-24.199'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1px;
    pointer-events: none;
    line-height: 0px;
}

.select_custom select {
    width: 100%;
    font-weight: 400;
    padding: 11px 11px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #c2c2c2;
}

.select_custom select:focus {
    color: #000;
}

.solid-btn {
    color: #fff;
    background: #2a2a54;
    border: 2px solid #2a2a54;
    border-radius: 40px;
    width: 100%;
    font-weight: 600;
}

.solid-btn:hover {
    color: #fff;
    -webkit-box-shadow: 0 20px 30px 0 rgb(42 42 84 / .2);
    box-shadow: 0 20px 30px 0 rgb(42 42 84 / .2);
}

button, 
[type="button"], 
[type="reset"], 
[type="submit"] {
    -webkit-appearance: button;
}

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

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

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

:-moz-placeholder {
  /* Firefox 18- */
  color: #c2c2c2;
}

.btnSubmit {
    padding: 13px;
    border: 1px solid #000;
    border-radius: 50px;
    font-size: 1.125rem;
    line-height: 1;
    width: 134px;
    max-width: 100%;
    transition: all .5s ease;
}

.btnSubmit:hover {
    background-color: #000;
    color: #fff;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a:hover, a:focus, a:active {
  color: #000;
  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-color: transparent;
    padding: 11px 24px;
    border: 1px solid #1d71b8;
    color: #000;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    border-radius: 40px;
    position: relative;
    max-width: max-content;
}

/*.cta::after {
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 16 9"%3E%3Cpath fill="white" d="M12.5 5h-9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h9c.28 0 .5.22.5.5s-.22.5-.5.5"%2F%3E%3Cpath fill="white" d="M10 8.5a.47.47 0 0 1-.35-.15c-.2-.2-.2-.51 0-.71l3.15-3.15l-3.15-3.15c-.2-.2-.2-.51 0-.71c.2-.2.51-.2.71 0l3.5 3.5c.2.2.2.51 0 .71l-3.5 3.5c-.1.1-.23.15-.35.15Z"%2F%3E%3C%2Fsvg%3E');
    position: absolute;
    top: 50%;
    transform: translateY(-12px);
    right: 24px;
    line-height: normal;
}*/

.cta:hover {
    background-color: #1d71b8;
    color: #fff;
    text-decoration: none;
}

.cta_2 {
    background-color: transparent;
    border: 1px solid #A8A193;
    padding: 12px 50px;
    color: #A8A193;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    position: relative;
}

.cta_2:hover {
    background-color: #A8A193;
    color: #fff;
    text-decoration: none;
}

.parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    top: 0;
    left: 0;
}

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

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

.fondoAmarillo {
    background-color: #ecc544;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.Web-Header {
    transition: all .3s ease-in-out;
    padding: 20px 0;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid #e9e9e9;
}

.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.4;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
}

.header-row .col-header.col-logo {
    flex-grow: 0.3;
    align-items: center;
    min-width: 170px;
}

.header-row .col-header.col-nav {
    -ms-flex-pack: center;
    justify-content: center;
    flex-grow: 0.4;
}

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

.header-logo .logo {
    width: 160px;
}

.header-redes {
    line-height: 0;
}

.header-redes > a {
    display: inline-block;
    margin-left: 10px;
}

.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: 400;
    font-size: 1rem;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
}

.main-navigation > ul > li {
    margin: 0px 50px;
    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: #000;
    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;
    background: transparent;
}

.main-navigation ul > li > a.dest {
    border-radius: 30px;
    padding: 7px 22px;
    background-color: #000;
    margin-left: 20px;
}

.main-navigation ul > li > a.active {
/*    border-bottom: 2px solid #009fe3;*/
}

.main-navigation ul > li > a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 38px;
    width: 100%;
    height: 1px;
    background-color: #009fe3;
}

.menu-burger {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-burger .menu-burger_inner {
    position: relative;
    width: 40px;
    max-height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-left: 32px;
    cursor: pointer;
    padding: 0px;
}

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

.ic-facebook {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' d='M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4z'/%3E%3C/svg%3E");
}

.ic-facebook_02::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4z'/%3E%3C/svg%3E");
}

.ic-twitter {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009fe3' fill-rule='evenodd' d='M15.022 3.343c.508-.087 1.077-.116 1.613-.025a4.85 4.85 0 0 1 2.54 1.273c.456.01.905-.08 1.302-.208a5.36 5.36 0 0 0 1.098-.501l.009-.006a.75.75 0 0 1 1.042 1.037c-.207.315-.496.877-.819 1.507l-.155.301c-.185.36-.375.724-.552 1.036c-.111.196-.23.395-.35.567v.274A12.34 12.34 0 0 1 8.287 21.03a12.32 12.32 0 0 1-6.694-1.97a.75.75 0 0 1 .5-1.375a7.471 7.471 0 0 0 4.033-.642a4.858 4.858 0 0 1-2.61-2.922a.75.75 0 0 1 .147-.722l.01-.01A4.848 4.848 0 0 1 2.05 9.793v-.052a.75.75 0 0 1 .553-.724A4.84 4.84 0 0 1 2.09 6.84a4.9 4.9 0 0 1 .65-2.442a.75.75 0 0 1 1.232-.1a10.89 10.89 0 0 0 7.006 3.93a4.85 4.85 0 0 1 2.562-4.406c.402-.214.934-.385 1.482-.479m-11.28 7.548a3.35 3.35 0 0 0 2.503 2.164a.75.75 0 0 1 .072 1.453c-.272.083-.551.14-.834.173a3.358 3.358 0 0 0 2.59 1.3a.75.75 0 0 1 .45 1.339a8.97 8.97 0 0 1-3.548 1.695a10.82 10.82 0 0 0 3.313.515h.009A10.838 10.838 0 0 0 19.25 8.607v-.535a.75.75 0 0 1 .186-.495c.07-.079.19-.261.36-.56c.16-.282.338-.622.523-.981l.033-.066a4.992 4.992 0 0 1-1.593.097a.75.75 0 0 1-.47-.237a3.35 3.35 0 0 0-1.904-1.032a3.42 3.42 0 0 0-1.11.025a3.605 3.605 0 0 0-1.028.323a3.35 3.35 0 0 0-1.678 3.74a.75.75 0 0 1-.767.925a12.39 12.39 0 0 1-8.149-3.627a3.41 3.41 0 0 0-.063.657v.002a3.34 3.34 0 0 0 1.486 2.785A.75.75 0 0 1 4.64 11a4.798 4.798 0 0 1-.897-.11' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.ic-instagram {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009fe3' d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4zm9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8A1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5a5 5 0 0 1-5 5a5 5 0 0 1-5-5a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3'/%3E%3C/svg%3E");
}

.ic-x::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M9.294 6.928L14.357 1h-1.2L8.762 6.147L5.25 1H1.2l5.31 7.784L1.2 15h1.2l4.642-5.436L10.751 15h4.05zM7.651 8.852l-.538-.775L2.832 1.91h1.843l3.454 4.977l.538.775l4.491 6.47h-1.843z'/%3E%3C/svg%3E");
}

.navigation-sticky {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    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;
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
}

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

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

.navigation-sticky .main-navigation .subMenu li a {
    padding: 0;
}

.main-navigation.main-navigation_mob > ul > li {
    margin: 0;
}

.main-navigation.main-navigation_mob > ul > li > a.dest {
    padding: 6px 16px;
    margin-left: 10px;
}

.header-style-2 .main-navigation ul > li > a.dest {
    border: 1px solid #000;
}

.col-header.col-header_right .main-navigation > ul > li {
    margin: 0px 9px;
}

.col-header.col-header_right .main-navigation > ul > li:last-child {
    margin-right: 0;
}

.main-navigation ul > li > a.cta_tienda {
    font-size: 0.938rem;
    font-weight: 500;
    color: #fff;
    border-radius: 43px;
    max-width: 156px;
    padding: 11px 23px;
    border: 1px solid #1d71b8;
    line-height: 1;
    background-color: #1d71b8;
}

.main-navigation ul > li > a.cta_tienda:hover {
    text-decoration: none;
}

.navigation-sticky .main-navigation ul > li > a.cta_tienda:hover {}

.navigation-sticky .header-logo .logo {
    width: 160px;
}

.navigation-sticky .menu-burger {}

.navigation-sticky .menu-burger > span {
    background-color: #000;
}

.dropdown-menu {
    min-width: 15rem !important;
    width: 100% !important;
    background-color: #fff !important;
    padding: 16px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: translate(0px, 64px) !important;
}

.dropdown-menu li {
    margin-bottom: 10px !important;
}

.dropdown-menu li:last-child {
    margin-bottom: 0 !important;
}

.dropdown-menu li a {
    padding: 0 !important;
    color: #2a2a54 !important;
    font-size: 0.813rem !important;
    font-weight: 600 !important;
    text-transform: math-auto !important;
    background-color: transparent !important;
}

.dropdown-menu li a:hover {
    color: #2a2a54 !important;
    background-color: transparent !important;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 36px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    transform: rotate(45deg);
}

.navigation-sticky .main-navigation ul > li.dropdown > .dropdown-menu {
    transform: translate(0px, 61px) !important;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

#mobile-menu-active .dropdown-menu {
    transform: translate(0px, 24px) !important;
}

#mobile-menu-active .dropdown-menu::before {
    visibility: hidden;
    opacity: 0;
}

#mobile-menu-active .dropdown-menu li a {
    background-color: transparent !important;
}

/*--------------------------------------------------------------
# Panel Side Mobile
--------------------------------------------------------------*/
.side-panel {
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: #000;
    overflow-x: hidden;
    z-index: 1051;
    -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: 32px 16px;
    padding-top: 0;
}

.side-panel_head {
    padding: 14px 0 13px;
/*    border-bottom: 1px solid #000;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-panel_body {
    padding: 0.5rem 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: 0px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
}

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

.side-panel-redes > a {
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background-color: #000;
}

.main-navigation .subMenu {
    width: 200px;
    position: absolute;
    top: 100%;
    left: -24px;
    z-index: 5;
    background-color: rgb(0 159 227 / 75%);
    padding: 24px;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
}

.main-navigation .subMenu li {
    margin-bottom: 0.5rem;
}

.main-navigation .subMenu li:last-child {
    margin-bottom: 0;
}

.main-navigation .subMenu li a {
    color: #fff;
    padding: 0;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.dropdown:hover .subMenu {
    opacity: 1;
    visibility: visible;
}

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

.sidebar_ctas .cta_tienda {
    display: inline-block;
    font-size: 0.938rem;
    font-weight: 500;
    color: #000;
    border-radius: 43px;
    max-width: 156px;
    padding: 9px 20px;
    border: 1px solid #1d71b8;
    line-height: 1;
    background-color: #1d71b8;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.Web-Footer {
    padding: 30px 0;
    background-color: #1d71b8;
    /* background-image: url('../../assets/img/fondo-footer.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center; */
}

.Web-Footer .texto {
    font-family: 'akira_expandedsuper_bold';
    color: transparent;
    font-size: 8.25rem;
    line-height: 7.25rem;
    -webkit-text-stroke: 1px #1d71b8;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.home_hero {
    min-height: 50vh;
    padding: 120px 0 0;
    /* background-image: url('../../assets/img/fondo-footer.jpg');
    background-size: contain;
    background-repeat: repeat no-repeat;
    background-position: top center; */
}

.hero_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.hero_container .col-izquierdo {
    flex: 1;
    max-width: 738px;
}
.hero_container .col-derecho {}

.home_hero .box_text {
    width: 100%;
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 173px;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 12px;
}
.home_hero .box_text p {
    font-size: 1.25rem;
    line-height: 1.625rem;
    max-width: 530px;
}
.home_hero .box_text .cta {
    background-color: #1d71b8;
    border: 1px solid #1d71b8;
    color: #fff;
}

.wrapper_datos {}
.wrapper_datos .item_datos {
    text-align: right;
}
.wrapper_datos .item_datos .numero {
        font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.25rem;
}
.wrapper_datos .item_datos .numero span {
    color: #1d71b8;
}
.wrapper_datos .item_datos .text {
    line-height: 1.25rem;
    margin-bottom: 0;
}

.home_hero .box_flotante {
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 60px;
    z-index: 1;
}
.home_hero .box_flotante .logo {
    margin-bottom: 30px;
}
.home_hero .box_info_hero h1 {
    font-size: 3.5rem;
    color: #1d71b8;
    line-height: 3rem;
}

.wrapper_slider {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    bottom: -20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.wrapper_slider .owl-dots {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 10;
}

.wrapper_slider .owl-theme .owl-dots .owl-dot span {
    background: #1d71b8;
}

.wrapper_slider .owl-theme .owl-dots .owl-dot.active span, 
.wrapper_slider .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

/* CLIENTES */
.owl-carousel .owl-item .client-img {
    width: 161px;
}

/* NOSOTROS */
.home_nosotros {}

.home_nosotros .container {}

.contenido-izquierda {
  min-width: 300px;
  text-align: left;
}

.box_info {
    line-height: 1.625rem;
}

.box_info h2 {
    font-size: 5rem;
    color: #1d71b8;
    line-height: 4.275rem;
    margin-bottom: 20px;
}

.box_info .subTitle {
    line-height: 1;
}

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

/* .home_nosotros .box_info p, */
.home_marca .box_info p {
    max-width: 300px;
    margin-left: auto;
}

.home_nosotros .contenido-derecha {
    margin-top: 120px;
}

.home_nosotros .img-box {}

.img-box img {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.home_trabajos {
    /* color: #fff; */
    /* background: linear-gradient(180deg, rgb(0 0 0) 70%, rgb(255 255 255) 70%); */
}

.home_trabajos .box_info h2 {
        font-size: 3rem;
    line-height: 3rem;
}

.home_trabajos .box_info .cta {
    border: 1px solid #1d71b8;
    color: #1d71b8;
}

.home_trabajos .box_info .cta:hover {
    background-color: #1d71b8;
    color: #000;
}

.home_marca {}

.home_marca .img-box_01 {
    position: relative;
    bottom: -100px;
    z-index: 1;
}

.home_nosotros .box_info h2 {
    font-size: 3rem;
    line-height: 3rem;
}

/*--------------------------------------------------------------
## PopUp
--------------------------------------------------------------*/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1155;
    /* display: none; */
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: rgb(0 0 0 / 90%);
    transition: all .5s ease;
    visibility: hidden;
    opacity: 0;
/*    transform: translateY(100%);*/
}

.popup.active {
    visibility: visible;
    opacity: 1;
/*    transform: translateY(0%);*/
}

.popup_inner {
    position: relative;
    width: auto;
    max-width: 474px;
    margin: auto;
    /* pointer-events: none; */
    margin-top: 24px;
    margin-bottom: 24px;
    min-height: calc(100vh - 48px);
    display: flex;
}

.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper_form {
    background-color: #fff;
    border-radius: 20px;
    padding: 80px 32px 64px;
    position: relative;
    margin: 0 12px;
}

.popupClose {
    position: absolute;
    top: -144px;
    right: -48px;
    z-index: 5;
}

.logo_flotante {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1d71b8;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.logo_flotante .logo_flotante_inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.logo_flotante .logo_flotante_inner .icon_float_wsp {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
}

.popup_head {}
.popup_head p {
    color: #1d71b8;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.btn_popup_form {
    background-color: #34D84F;
    color: #232323;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 44px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-top: 2rem;
    font-weight: 500;
    border: 0;
}

.btn_popup_form i {
    font-size: 20px;
    margin-left: 10px;
}

.btn_popup_form[disabled] {
    border: 1px solid #c1c1c1;
    background-color: #c1c1c1;
}

@media (max-width: 767px) {
    .popupClose {
        right: 0px;
    }
}

@media (max-width: 575px) {
    .logo_flotante .logo_flotante_inner .icon_float_wsp {
        top: -20px;
        right: -20px;
    }
    .btn_popup_form {
        font-size: 0.875rem;
    }
    .logo_flotante {
        top: -40px;
        width: 80px;
        height: 80px;
    }
    .wrapper_form {
        padding: 80px 32px 48px;
    }
}
