/* Menu */
.menu--desktop {
  display: block;
}
.menu--mobile {
  display: none;
}

@media (max-width: 1100px) {
  .menu--desktop.mega-menu {
    display: none !important;
  }
  .header__navigation.header--element.open .menu--mobile {
    display: block;
  }
}

/* Menu items */
.header .menu--desktop ul.mega-menu-outer li.menu__item:hover a.menu__link{
  color: #F59C00 !important;
} 
.menu__submenu .menu__link:hover span.sub-main {
  color: #F59C00 !important; 
}

.menu__link {
  color: #143041 !important;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px !important;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: none;
  color: #F59C00 !important;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: normal;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1150px) {
  .menu__link {
    font-size: 0.833rem;
  }
}

@media (max-width: 1100px) {
  .menu__item {
    display: block;
    width: 100%;
  }

  .menu__link {
    display: block;
    font-size: 1.083rem;
  }
}

/* Menu items - top level */

.menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0.875rem;
  text-transform: uppercase;
}

.menu__item--depth-1 > .menu__link--active-link:after {
  bottom: -3px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

@media (max-width: 1100px) {
  .menu__item--depth-1 { 
    border-top: 1px solid #EAF0F7;
    padding: 0;
  } 

  .menu__item--depth-1 > .menu__link {
    padding: 25px 8px;
    text-transform: capitalize;
    text-align: left;
  }

  .menu__item--depth-1 > .menu__link--active-link:after {
    content: none;
  }
}

/* Menu items - submenus */

.menu__submenu {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: none;
  left: 0;
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 270px;
  z-index: 99;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu--level-2 {
  transform: translateX(-50%);
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

.menu__item--depth-1:first-child .menu__submenu--level-2 {
  transform: unset;
}

.menu__submenu .menu__item {
  border-bottom: none;
  padding: 0;
  width: 100%;
}

.menu__submenu .menu__link {
  display: block;
  transition: background-color 0.3s;
  width: 100%;
}

.menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */

.menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 2rem;
}

/* Creates the triangle at the top of the submenu drop down */

@media (min-width: 1101px) {
  .menu__submenu--level-2 > .menu__item:first-child:before {
    border-radius: 6px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
    content: '';
    display: block;
    height: 30px;
    left: 125px;
    margin-left: 1rem;
    overflow: hidden;
    position: absolute;
    top: -12px;
    transform: rotate(45deg);
    transition: background-color .3s;
    width: 30px;
    z-index: 2;
  }

  /* Keeps triangle to the left for the first menu item's drop down menu */

  .menu__item--depth-1:first-child > .menu__submenu--level-2 > .menu__item:first-child:before {
    left: 0;
  }

  .menu__submenu--level-2 > .menu__item:first-child > .menu__link {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1100px) {
  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
  }

  .menu__submenu .menu__item {
    background-color: #FFF;
    padding: 0;
  }

  .menu__submenu .menu__link {
    display: block;
    padding: 14.5px 8px;
    transition: none;
    width: 100%;
  }

  .menu__submenu .menu__item .menu__link:hover,
  .menu__submenu .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .menu__item--has-submenu > .menu__link {
    width: 100%;
  }

  .menu__submenu--level-3 .menu__item .menu__link {
    padding: 20;
  }
}

/* Menu icons */

@media(min-width: 1101px) {
  .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }
  header.header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .menu__child-toggle {
    position: absolute;
    right: 5px;
    top: 30px;
    z-index: 2;
  }

  .menu__item--depth-1 > .menu__child-toggle {
    position: static;
    right: 0;
    top: 0;
    vertical-align: middle;
  }

  .menu__child-toggle-icon {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top-style: solid;
    border-top-width: 7px;
    display: block;
    height: 0;
    margin-left: 1px;
    width: 0;
  }
}

@media (max-width: 1100px) {
  .menu__child-toggle {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 100%;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
  }
  .menu__child-toggle.no-button.menu__child-toggle--open{
    /*     height: auto;
    width: auto;
    top: 25px; */
  }

  .menu__child-toggle-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="16" viewBox="0 0 10 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.88596 7.21653C9.31866 7.64923 9.31866 8.35077 8.88596 8.78347L2.61816 15.0513C2.18546 15.484 1.48392 15.484 1.05122 15.0513C0.618515 14.6186 0.618515 13.917 1.05122 13.4843L6.53554 8L1.05122 2.51568C0.618516 2.08298 0.618516 1.38143 1.05122 0.948731C1.48392 0.51603 2.18546 0.516029 2.61817 0.948731L8.88596 7.21653Z" fill="%23133040" fill-opacity="0.6"/></svg>');
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    margin-left: auto;
    /*     margin-right: 1.05rem; */
    transition: transform 0.4s;
    width: 12px;
  }


  /*   .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
  transform: rotate(45deg);
  transition: transform 0.4s;
} */
}



/* Mega menu */
.header .menu--desktop .menu__item .sub-menu {
  display: none;
}
.header .menu--desktop.mega-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menu--desktop ul.mega-menu-outer {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin-bottom: 0px;
  width: 80%;
  justify-content: center;
}
.header .menu--desktop li.menu__item.menu-item-has-submenu a.menu__link{
  position: relative;
}
.header .menu--desktop li.menu__item.menu-item-has-submenu a.menu__link:after {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.25087 11.6258C8.97425 11.9025 8.52575 11.9025 8.24913 11.6258L4.24219 7.6189C3.96557 7.34228 3.96557 6.89379 4.24219 6.61717C4.51881 6.34055 4.96731 6.34055 5.24393 6.61717L8.75 10.1232L12.2561 6.61717C12.5327 6.34055 12.9812 6.34055 13.2578 6.61717C13.5344 6.89379 13.5344 7.34228 13.2578 7.6189L9.25087 11.6258Z" fill="%23133040"/></svg>');
  position: absolute;
  right: -25px;
  width: 20px;
  top: 1px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.header .menu--desktop li.menu__item.menu-item-has-submenu:hover a.menu__link:after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.25087 11.6258C8.97425 11.9025 8.52575 11.9025 8.24913 11.6258L4.24219 7.6189C3.96557 7.34228 3.96557 6.89379 4.24219 6.61717C4.51881 6.34055 4.96731 6.34055 5.24393 6.61717L8.75 10.1232L12.2561 6.61717C12.5327 6.34055 12.9812 6.34055 13.2578 6.61717C13.5344 6.89379 13.5344 7.34228 13.2578 7.6189L9.25087 11.6258Z" fill="%23F59C00"/></svg>');
}

.header .menu--desktop li.menu__item.menu-item-has-submenu:hover > a.menu__link:after {
  rotate: 180deg;
}
.header .menu--desktop ul.mega-menu-outer li.menu__item {
  display: inline-block;
  padding: 26px 30px;
}
.header .menu--desktop li.menu__item.menu-item-has-submenu:hover a.menu__link {
  cursor: pointer !important;
}
.header .menu--desktop a.link-disable {
  pointer-events: none;
  cursor: not-allowed;
}
/* .header .menu--desktop a.menu__link.top-menu-link {
font-weight: 700;
} */
.header .menu--desktop li.menu__item:hover a.menu__link{
  font-weight: 400; 
  color: #F59C00;
  -webkit-transition: all 0.03s ease-in-out;
  transition: all 0.03s ease-in-out;
}
.header .menu--desktop li.menu__item:hover > .sub-menu{
  display: flex;
  justify-content: center;
}
.header .menu--desktop.mega-menu .sub-menu {
  width: 100%;
  border-top: 1px solid #EBF2F8;
  box-shadow: 0px -4px 7px 0px rgba(0, 0, 0, 0.03);
}
.header .menu--desktop li.menu__item .sub-menu {
  position: absolute;
  width: 100%;
  top: 80px;
  background: #fff;
  left: 0; 
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .menu--desktop li.menu__item .sub-menu .submenu-inner {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  margin: 0 auto;
  max-width: 1200px;
}
.header .menu--desktop .submenu-service-main{
  background: linear-gradient(to right, #fff 0%, #fff 60%, #f5f7f9 60%, #f5f7f9 100%);
  width: 100%;
}
.header .menu--desktop li.menu__item .sub-menu .submenu-left {
  width: 70%;
  padding: 32px 20px 102px 20px;
}
.header .menu--desktop li.menu__item .sub-menu .submenu-right {
  width: 30%;
  padding: 32px 20px 102px 20px;
  background: #f5f7f9;

}
.header .menu--desktop .submenu-left .submenu-head {
  color: #97A3B7;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header .menu--desktop .submenu-left .submenu-head {
  color: #97A3B7;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header .menu--desktop .menu-item-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
  list-style: none;
  padding-left: 0pc;
}
.header .menu--desktop .menu-item-content ul li {
  width: 38%;
}
.header .menu--desktop .menu-item-content {
  margin-top: 16px;
}
.header .menu--desktop .menu-item-content ul li h5,
.header .menu--desktop .menu-item-content ul li h5 a{
  color: #111B29;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; 
  text-decoration: none;
  margin-bottom: 2px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .menu--desktop .menu-item-content ul li p{
  color: rgba(103, 116, 137, 0.80);
  font-family: Hind;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
  margin-bottom: 0px;
}
.header .menu--desktop .menu-item-content ul li h5 a:hover,
.header .menu--desktop .menu-item-content ul li h5:hover a{
  color: #F59C00;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-item-content ul li h5::after {
  content: "";
  background: url('https://1924294.fs1.hubspotusercontent-na1.net/hubfs/1924294/2024/arrow_right_alt.svg');
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  right: -10px;
  top: 2px;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-item-content ul li h5:hover::after {
  opacity: 1;
  right: -30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sub-menu-post-item .post-header {
  color: #97a3b7;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sub-menu .sub-menu-post-item img.img-src{
  width: 270px;
  height: 168px;
  object-fit: cover;
  border-radius: 6px;
}
.sub-menu .sub-menu-post-item .post-content h4 {
  color: #111B29;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 119%;
  margin-top: 10px;
}
.sub-menu .sub-menu-post-item .post-content a {
  color: #F59C00;
  font-family: Hind;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  position: relative;
}
.sub-menu .sub-menu-post-item .post-content a:hover {
  color: #111B29;
}
.sub-menu .sub-menu-post-item .post-content a:after {
  content: "";
  background: url('https://1924294.fs1.hubspotusercontent-na1.net/hubfs/1924294/2024/arrow_right_alt.svg');
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  right: -5px;
  top: 4px;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sub-menu .sub-menu-post-item .post-content a:hover::after {
  opacity: 1;
  right: -15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Recursos styles */
.header .menu--desktop li.menu__item .sub-menu .submenu-service-main.recursos .submenu-left {
  width: 46%;
}
.header .menu--desktop li.menu__item .sub-menu .submenu-service-main.recursos .submenu-right {
  width: 50%;
  padding: 32px 20px 102px 44px;
}
.header .menu--desktop .submenu-service-main.recursos {
  background: linear-gradient(90deg, #fff 0, #fff 55%, #f5f7f9 0, #f5f7f9);
  width: 100%;
}
.header .menu--desktop .submenu-service-main.recursos .post-video-full {
  display: flex;
  align-items: flex-start;
}
.header .submenu-service-main.recursos .post-video-full .menu-post-video {
  width: 280px;
  position: relative;
}
.header .submenu-service-main.recursos .post-video-full .menu-post-video img.video-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .submenu-service-main.recursos .post-video-full .menu-post-video img.video-icon {
  opacity: 0.5;
}
.header .submenu-service-main.recursos .post-video-full .menu-post-video:hover img.video-icon {
  opacity: 0.9;
}
.header .submenu-service-main.recursos .post-video-full .post-content {
  width: 50%;
  padding-left: 33px;
}
.header .submenu-service-main.recursos .post-video-full .menu-post-video img {
  max-width: 100%;
  width: 280px;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
}
.header .submenu-service-main.recursos .post-video-full .menu-post-video a {
  display: block;
}
.header .submenu-service-main.recursos .post-video-full .post-content h4 {
  margin-top: 5px;
}
.header .submenu-service-main.recursos .post-video-full .post-content p {
  color: #143041;
  font-family: Hind;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  margin-top: 7px;
  margin-bottom: 0px;
}
.submenu-service-main.recursos .post-content a {
  color: #F59C00;
  font-family: Hind;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  text-decoration: none;
  margin-top: 16px;
  display: inline-block;
}

/* soluciones styles */
.submenu-service-main.soluciones {
  background: #fff !important;
}
.submenu-service-main.soluciones .submenu-inner {
  flex-wrap: wrap;
  flex-direction: column;
}
.submenu-service-main.soluciones .submenu-inner .soluciones-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px 40px;
  padding: 32px 20px 50px 29px;
  width: 80%;
}
.submenu-service-main.soluciones .submenu-inner .soluciones-bottom{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px 40px;
  border-top: 2px solid #EAF0F7;
  padding: 28px 20px 50px 25px;
}
.submenu-service-main.soluciones .menu-singe-box .box-top-head {
  color: #97A3B7;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 17px;
  min-height: 24px; 
}
/* .submenu-service-main.soluciones .menu-singe-box .box-top-head:empty{
display:none;
} */
.submenu-service-main.soluciones .menu-singe-box .box-menu-head h5 {
  color: #111B29;
  font-family: Montserrat;
  font-size: 16px; 
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom 2px;
}
.submenu-service-main.soluciones .menu-singe-box .box-menu-head h5 a { 
  color: #111B29;
  font-family: Montserrat;
  font-size: 16px; 
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom 2px;
  text-decoration: none;
}
.submenu-service-main.soluciones .menu-singe-box .box-menu-head h5:hover a {
  color: #F59C00;
  text-decoration: unerline;
}
.submenu-service-main.soluciones .menu-singe-box .box-menu-head p{
  color: rgba(103, 116, 137, 0.80);
  font-family: Hind;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.submenu-service-main.soluciones .menu-singe-box .sub-menu-items ul li a {
  color: #111B29;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.submenu-service-main.soluciones .menu-singe-box .sub-menu-items ul li a {
  text-decoration: none;
}
.submenu-service-main.soluciones .menu-singe-box .sub-menu-items ul li:hover a {
  color: #F59C00;
  text-decoration: unerline;
}
.submenu-service-main.soluciones .menu-singe-box .menu-read-more a {
  color: #F59C00;
  font-family: Hind;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.submenu-service-main.soluciones .menu-singe-box .menu-read-more a:hover{
  text-decoration: underline;
}
.submenu-service-main.soluciones .menu-singe-box .sub-menu-items ul li.hs-menu-item {
  margin-bottom: 6px;
  width: 100%;
}
.submenu-service-main.soluciones .menu-singe-box .menu-read-more a:after {
  content: "";
  background: url('https://1924294.fs1.hubspotusercontent-na1.net/hubfs/1924294/2024/arrow_right_alt.svg');
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  right: -5px;
  top: 4px;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submenu-service-main.soluciones .menu-singe-box .menu-read-more a:hover::after {
  opacity: 1;
  right: -15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.menu-item-content ul li.last-item h5::after {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none"><mask id="mask0_4826_1082" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%23D9D9D9"/></mask><g mask="url(%23mask0_4826_1082)"><path d="M14 18L12.6 16.55L16.15 13H4V11H16.15L12.6 7.45L14 6L20 12L14 18Z" fill="%231C1B1F"/></g></svg>');
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  right: -25px;
  top: 2px;
  opacity: 1;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-item-content ul li.last-item h5:hover::after {
  width: 22px; 
  height: 22px;
  top: 2px !important;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none"><mask id="mask0_4826_1082" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%23F59C00"/></mask><g mask="url(%23mask0_4826_1082)"><path d="M14 18L12.6 16.55L16.15 13H4V11H16.15L12.6 7.45L14 6L20 12L14 18Z" fill="%23F59C00"/></g></svg>');
}
.header__cta.header-cta-element a.cta_button.yellow-button {
  padding: 13px 26px;
  font-size: 16px;
}
.header__cta.header-cta-element a.cta_button:hover .cta_text:after {
  right: -25px;
}

/* Mobile menu */
/*************Responsive Styles*****************/
/***************iPhone Portrait**************/
@media only screen and (max-width: 1100px) and (min-width: 220px){
  header.header {
    padding: 16px 0 16px 0px;
  }
  body.menu-open {
    overflow: hidden;
  }
  .header__row-1, .header__row-2 {
    flex-direction: column;
    width: 100%;
  }
  .header .header-menu-section {
    width: 100%;
  }
  .menu__item {
    position: relative;
  }
  .header .header__navigation.header--element {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: -8px;
    box-shadow: 0 -3px 5px 0 rgba(0, 0, 0, .05);
    background-color:#fff;
    z-index: 9999;
  } 

  .menu__item--depth-1:first-child {
    border-top: none;
  }
  .header__navigation.header--element.open .menu--mobile {
    padding-top: 50px;
  }
  /*   .header li.menu__item.menu__item--has-submenu {
  position: relative;
} */

  li.menu__item.menu__item--has-submenu.menu__item--open{
    position: unset;
  }
  li.menu__item.menu__item--has-submenu.menu__item--open > .menu__submenu.menu__submenu--level-2 {
    display: block;
    position: absolute;
    top: 0;
    padding: 35px 28px 150px 28px;
    background: #fff;
    overflow-y: scroll;
  }
  .menu__submenu li.menu__item.menu__item--depth-2.menu__item--has-submenu ul.menu__submenu.menu__submenu--level-3 {
    position: absolute;
    top: 0;
    z-index: 9999;
    left: 0;
    height: 100%;
    padding: 35px 28px;
    background: #fff;
    overflow-y: scroll;
  }
  .menu__submenu li.menu__item.menu__item--depth-2.menu__item--has-submenu ul.menu__submenu.menu__submenu--level-3 li.menu__item:last-child {
    border: none !important;
  }
  .menu__submenu li.menu__item.menu__item--depth-2.menu__item--has-submenu ul.menu__submenu.menu__submenu--level-3 li.menu__item:last-child span.link {
    color: #F59C00;
    font-family: Hind;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .header__navigation.header--element.open .menu--mobile {
    padding: 30px 28px;
    margin-bottom:50px;
    background: #ffffff;
  }
  .header__navigation.header--element.open .volver:before {
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="16" viewBox="0 0 9 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.783474 7.05127C0.350773 7.48397 0.350773 8.18552 0.783474 8.61822L7.05127 14.886C7.48397 15.3187 8.18552 15.3187 8.61822 14.886C9.05092 14.4533 9.05092 13.7518 8.61822 13.3191L3.1339 7.83475L8.61822 2.35043C9.05092 1.91773 9.05092 1.21618 8.61822 0.783478C8.18552 0.350777 7.48397 0.350777 7.05127 0.783478L0.783474 7.05127Z" fill="%23133040" fill-opacity="0.6"/></svg>');
    position: absolute;
    left: 0px;
    width: 10px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    top: 5px;
  }
  .header__navigation.header--element.open .volver {
    color: #143041;
    font-family: Hind;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    position: relative;
    line-height: normal;
    padding-left: 20px; 
    padding-bottom: 15px;
    background: #fff;
  }
  .menu__submenu .menu__item:first-child {
    border-top: none;
  }
  .menu__submenu  li.menu__item.menu__item--depth-2:first-child .menu__link {
    color: #97A3B7;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .menu__submenu .menu__item span.inner {
    color: #97A3B7;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .menu__submenu .menu__item .menu__link {
    color: #111B29;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    background-color: #FFF;
    text-align:left;
  }
  .menu__submenu .menu__item .menu__link span {
    color: rgba(103, 116, 137, 0.80);
    font-family: Hind;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: flex;
  }
  .menu__submenu .menu__item.menu__item--depth-3 .menu__link {
    color: #111B29;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    background-color: #FFF;
  }
  .menu__submenu .menu__item.menu__item--depth-3 .menu__link span.sub-main{
    color: #111B29;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
  }
  .menu__item--depth-1:last-child {
    border-bottom: 1px solid #EAF0F7;
  }
  .header__cta.header-cta-element {
    margin-top: 80px;
  }
  .header__cta.header-cta-element a.cta_button {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    vertical-align: middle;
    width: 100%;
  }
  .menu__submenu li.menu__item.menu__item--has-submenu.menu__item--open span.menu__child-toggle-icon {
    display: none;
  }


}


/*************************iPad Portrait***************/
@media only screen and (max-width: 985px) and (min-width: 768px){

}

/**************iPad Landscape***************/
@media only screen and ( max-width: 1024px ) and (min-width: 986px){

}
