
:root {
    --blue-main: #20409A;
    --cyan: #1EB0D5;
    --grey-corp: #CBCBCB;
}

/* Base */
:root {
  --hero-slide-image-width: 100%;
  --bottom-header-height: initial;
  --hero-slide-height: initial;
}


/* Shared for FIRST 2 */
@media (max-width: 480px), (min-width: 481px) and (max-width: 768px) {
  :root {
      --hero-slide-height: initial;
  }
}


/* Shared for FIRST 3 */
@media (max-width: 480px), (min-width: 481px) and (max-width: 768px), (min-width: 769px) and (max-width: 959px) {
  :root {
    --bottom-header-height: 62px;
    --second-nav-mobile: block;    
  }
}

/* Shared for 3 TO 7 (LAST) */
@media (min-width: 769px) and (max-width: 959px), (min-width: 960px) and (max-width: 1124px), (min-width: 1125px) and (max-width: 1367px), (min-width: 1368px) and (max-width: 1511px), (min-width: 1512px) {
  :root {
    --hero-slide-image-width: 100%;
    --second-nav-mobile: none;
  }
}


/* Shared for 4 AND 5 */
@media (min-width: 960px) and (max-width: 1124px), (min-width: 1125px) and (max-width: 1367px) {
  :root {
    --hero-slide-height: 478px;
  }
}

/* Shared for 6 TO 7 (LAST) */
@media (min-width: 1368px) and (max-width: 1511px), (min-width: 1512px) {
  :root {
    --hero-slide-height: 583px;
  }
}


/* WOW ANIMATIONS */

.wow.animate__fadeInLeft.animate__animated, .wow.animate__fadeInRight.animate__animated {
    animation-duration: 2.2s; /* default Animate.css is 1s */
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.wow.animate__fadeInUp.animate__animated {
    animation-duration: 1.2s; /* default Animate.css is 1s */
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.wow.animate__fadeIn.animate__animated {
    animation-duration: 1.4s; /* default Animate.css is 1s */
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes cfadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0; /* ensure it starts hidden */
  animation-name: cfadeInUp;
  animation-duration: 1.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.panoramic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    opacity: 1;
    transition: none;
    visibility: hidden;
}

.zoom-out {
    /* We don't animate immediately anymore */
}

.panoramic.zoom-out
 {
    animation: zoom-Out 3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes zoom-Out {

    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        visibility: visible;
    }
}


h1 {
    color:var(--blue-main);
}

html {
    scroll-behavior: smooth;
}

a:visited {
    color:inherit;
  }

a:link {
    text-decoration: none;
    color:inherit;
  }

.alignleft {
    text-align:left !important;
}

body {
    padding:0;
    margin:0;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    background-color: #f5f5f5;
}

.uppercase {
    text-transform: uppercase;
}

header ul {
    padding:0;
    margin:0;
    list-style: none;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

header ul li {
    display:flex;
}

.cont-bottom-header {
    background-color:var(--blue-main);
}

header.corp .cont-bottom-header {
    background-color:var(--grey-corp)
}

.bottom-header .logo {
    width:172px;
    display: flex;
    align-items: center;
}

.bottom-header .logo a {
    width: 100%;
}

.bottom-header .logo a img {
    display:block;
}

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


.top-header, .bottom-header {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:0 55px;
}

.main-menu > ul > li {
    font-weight: 500;
    font-size: 15px;
    margin:0 14px;
    letter-spacing: 0.02em;
    border-bottom: 3px solid var(--blue-main);
    border-top: 3px solid var(--blue-main);
    transition: border .2s ease;
}

header.corp .main-menu > ul > li {
    font-weight: 600;
    font-size: 15px;
    margin:0 14px;
    letter-spacing: 0.01em;
    border-bottom: 3px solid var(--grey-corp);
    border-top: 3px solid var(--grey-corp);
    transition: border .2s ease;
}

.main-menu > ul > li > a {
    color:white;
    text-decoration: none;
    padding:30px 0;
    display:block;
    height:100%;
    width:100%;
    opacity: .8;
}

header.corp .main-menu > ul > li > a {
    color:#444444;
    opacity: 1;
}

.main-menu > ul > li:hover, .main-menu > li.active {
    border-bottom: 3px solid white;
}

.main-menu > ul > li:hover a, .main-menu > li.active a  {
    opacity: 1;
}

header.corp .main-menu > ul > li:hover {
    border-bottom: 3px solid var(--blue-main);
}

header.corp .main-menu > ul > li:hover a {
    color:#222222;
}


.sec-menu li {
    font-weight: 500;
    font-size: 14px;
    margin:0 12px;
}

.sec-menu li a {
    color:#777777;
    text-decoration: none;
}

.sec-menu li a.area-clientes {
    transition: all .3s ease;
}

.sec-menu li a:hover {
    color:#333333;
}

.sec-menu li a.area-clientes:hover {
    transform: scale(.85);
}


.sec-menu li img {
    width:24px;
    height:auto;
    display: inline-block;
}

.sec-menu-sand {
    width:40%;
    display: flex;
    justify-content: flex-end;
}

.sec-menu-sand svg:hover {
    color:#000000;
    cursor:pointer;
}

.sec-menu-sand svg {
    color:#777777;
    width:24px;
    height:auto;
}

.second-nav-mobile {
    display: var(--second-nav-mobile);
}

.spacer {
    width:36%;
}

.sec-menu {
    width:40%;
}

.cont-segmentos {
    display: flex;
    justify-content: center;
    padding: 0 0 10px;
}

.segmentos {
    width: 1300px;

}

.segmentos .cont-cards.corp {
    justify-content: center;
    flex-wrap: wrap;
}

.segments {
    width:20%;
}

.segments ul {
    text-transform: uppercase;
    justify-content: center;
}

.sec-menu {
    justify-content: flex-end;
    display:none;
}

.segments ul li {
    text-transform: uppercase;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    padding: 12px 34px;
    color:#666666;
    letter-spacing: 0.03em;
    display: flex;
    cursor: pointer;
    position:relative;
}

.segments ul li a {
    color:#666666;
    text-decoration: none;
}

.segments ul li.active {
  background-color: var(--blue-main);
  color:white;
  font-weight: 600;
}

.segments ul li.active a { 
    color:white;
    text-decoration: none;
}

.segments ul li.active ul li a, .segments ul li.active ul li svg  { 
    color: #666666;
    text-decoration: none;
}

.segments .sub-menu,
.main-menu .sub-menu
 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    min-width: 180px;
    padding:18px 0;
    display: block;
  }

  .main-menu .sub-menu
 {
    min-width: 220px;
  }


.segments .sub-menu li,
.main-menu .sub-menu li
{
    justify-content: flex-start;
    padding:4px 0 4px 35px;
    display:flex;
    justify-content: flex-start;
    text-align: center;
}

.main-menu .sub-menu li
{
    padding:4px 0 4px 26px;
}

  .segments .sub-menu li a,
   .main-menu .sub-menu li a
   {
    padding: 0.5em 0.24em;
    white-space: nowrap;
    text-align: left;
    text-transform: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    display: inline-block;
  }

  .main-menu .sub-menu li a
{
color:var(--blue-main) !important;
}

  .main-menu .sub-menu li:hover a
{
color:#333333 !important;
}

  .segments .sub-menu li svg,
  .main-menu .sub-menu li svg {
    color:#999999;
    display: inline-block;
    width: 6px;
    height:auto;
  }

.main-menu .sub-menu li svg {
      margin-right: 6px;
      width: 5px;
  }

.menu-item-has-children {
   position:relative;
  }
  

  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  

.cont-analiticas {
    display: flex;
    justify-content: center;
    padding:60px 0;
    margin-bottom: 60px;
}

.analiticas {
    width: 88%;
}

.analiticas ul {
    width:85%;
    list-style: none;
    margin:0 auto;
    padding:0;
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 3px;
}

.analiticas ul li {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    padding:30px 40px; 
    color:#444444;
    padding: 29px 46px 27px 49px;
}

.analiticas ul li h3 {
  font-size: 16px;
  font-weight:700;
  margin: 0;
  padding: 0;
}

.analiticas ul li p {
    font-size: 16px;
    font-weight:400;
    line-height: 1.6em;
    margin: 6px 0;
    padding: 0;
    color:#666666;
  }

  .analiticas ul li img {
    width: 51px;
    height:auto;
    margin-right:22px;
  }


header.corp .segments ul li.active {
    background-color: var(--grey-corp);
    color:var(--blue-main);
    font-weight:700;
}

header.corp .segments ul li.active a {
    color:var(--blue-main);
    text-decoration: none;
}

.segments ul li svg {
    color:#5C5859;
    margin-right:10px;
  }

header.corp .segments ul li.active svg {
    color:var(--blue-main);
    margin-right:10px;
  }

  .segments ul li.active svg {
    color:white;
  }

  .segments > ul > li.inactive:hover {
    color:#333333;
  }

  .segments > ul > li.inactive:hover > a {
    color:#333333;
    text-decoration: none;
  }

  .segments > ul > li.inactive:hover > svg {
    color:#333333;
  }

  .segments ul li.menu-item-has-children .sub-menu li:hover a {
    color:#111111;
  }

  .segments ul li.menu-item-has-children .sub-menu li:hover svg {
    color:#111111;
  }


  #hero .wrapper-hero-image {
   width:100%;
   height:100%;
   overflow:hidden;
   display: block;
   position: relative;
}

  #hero .wrapper-hero-image img {
   display: block;
   position: relative;
    object-fit: cover;
    width:100%;
   height:100%;
}

#hero::after {
    content:'';
    width:100%;
    height:100%;
    background-color: black;
    opacity: .4;
    display: block;
    position: absolute;
    left:0;
    top:0;
 }

#hero {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 583px;
    overflow:hidden;
}

#hero .wrapper-hero {
    width: 100%;
    display: block;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: -100%;
    z-index: 2;
}

#hero .wrapper-hero .heading {
    margin-left: 90px;
    width:520px;
}

#hero .wrapper-hero .heading h1 {
    position: relative;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight:700;
    color:white;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 1.1em;
    margin-bottom: 4px;
}

#hero .wrapper-hero .heading p {
    position: relative;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-size: 18px;
    color:white;
    line-height: 1.6em;
}

.swiper-container-wrapper {
  position: relative;
}

.swiper-cards {
    overflow: hidden !important;
    width: 92%;
}

.swiper-slide .card-basic {
    width:100%;
    margin-left: 0 !important;
}

.card-basic.swiper-slide {
    margin-left: 0 !important;
}

.swiper-hero .swiper-button-next, .swiper-hero .swiper-button-prev {
    color:white !important;
    opacity: .3;
}

.swiper-container-wrapper .swiper-button-next, .swiper-container-wrapper .swiper-button-prev {
    color:#333 !important;
    opacity: .6;
}

.swiper-hero .swiper-button-next:hover, .swiper-hero .swiper-button-prev:hover,
.swiper-container-wrapper .swiper-button-next:hover, .swiper-container-wrapper .swiper-button-prev:hover {
    opacity: 1;
}

.swiper-hero .swiper-button-prev:after, .swiper-hero .swiper-rtl .swiper-button-next:after {
    content: '' !important;
    background-image: url(images/chevron-slider-carousel.svg) !important;
    background-size: 72%;
    background-repeat: no-repeat;
    height: 35px;
    width: 27px;
}

.swiper-hero .swiper-button-next:after, .swiper-hero .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
    background-image: url(images/chevron-slider-carousel.svg) !important;
    background-size: 72%;
    background-repeat: no-repeat;
    height: 35px;
    width: 27px;
    transform: scaleX(-1);
}


.swiper-container-wrapper .swiper-button-prev:after, .swiper-container-wrapper .swiper-rtl .swiper-button-next:after {
    content: '' !important;
    background-image: url(images/chevron-slider-carousel-grey.svg) !important;
    background-size: 72%;
    background-repeat: no-repeat;
    height: 35px;
    width: 27px;
}

.swiper-container-wrapper .swiper-button-next:after, .swiper-container-wrapper .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
    background-image: url(images/chevron-slider-carousel-grey.svg) !important;
    background-size: 72%;
    background-repeat: no-repeat;
    height: 35px;
    width: 27px;
    transform: scaleX(-1);
}


.swiper.swiper-hero  .swiper-pagination-bullet {
    background:white !important;
}


.swiper.swiper-cards .swiper-pagination-bullet {
    background:#999999 !important;
}

.swiper-pagination-bullet-active {
    background:white !important;
}

.swiper.swiper-cards  .swiper-pagination-bullet-active {
    background:#999999 !important;
}

.swiper-container-wrapper .swiper-pagination-bullet-active {
    background: #666666 !important;
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom:18px !important;
}

.swiper.swiper-cards.swiper-initialized.swiper-horizontal {
    padding: 10px 0 54px 0;
}

.swiper.swiper-cards .swiper-pagination.swiper-pagination-bullets {
    bottom: 0 !important;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .5 !important;
    cursor: pointer !important;
    pointer-events:initial !important;
}

.swiper-container-wrapper .swiper-button-prev, .swiper-container-wrapper .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 18px);
    right: auto;
}

.swiper-container-wrapper .swiper-button-next, .swiper-container-wrapper .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 18px);
    left: auto;
}


.banner-form {
    margin-right: 70px;
    flex-shrink: 0;
    width:341px;
    padding: 30px;
    background-color: white;
    border-radius: 6px;
    -moz-box-shadow: 0 0 18px rgba(68, 68, 68, 1);
    -webkit-box-shadow: 0 0 18px rgba(68, 68, 68, 1);
    box-shadow: 0 0 18px rgba(68, 68, 68, 1);
}

.banner-form.corp {
    top:68px;
}

.banner-form h2 {
    font-size: 24px;
    font-weight: 700;
    color:#444444;
    padding:6px 0;
    margin:0;
}

.banner-form h4 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color:#444444;
    padding:6px 0;
    margin:0;
}

.banner-form .input {
    display:block;
    height:40px;
    border: 1px solid #d6d6d6;
    margin: 14px 0;
    border-radius: 3px;
    background-color: rgb(243, 243, 243);
    font-size: 14px;
    width:100%;
    padding-left:10px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    box-sizing: border-box;
    color: #333333;
    padding-bottom: 4px;
}

.banner-form .input::placeholder {
    text-transform: uppercase;
    color:#666666;
    font-size: 11px;
letter-spacing: 0.05em;
}

.banner-form .cont-inputs {
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.banner-form .cont-inputs input {
    width:48%;
    margin-top: 0;
}

.banner-form .cont-inputs:first-child  {
    margin-top: 10px;
}

.banner-form .cont-inputs:first-child input {
    margin-bottom: 0;
}


.banner-form select {
    appearance: none;
    background-image: url(images/chevron-select.svg);
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    display:block;
    height:40px;
    border: 1px solid #d6d6d6;
    margin: 0 0 14px;
    border-radius: 3px;
    background-color: rgb(243, 243, 243);
    font-size: 11px;
    color:#666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width:100%;
    padding-left:10px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    box-sizing: border-box;
}

.banner-form .cont-acepto {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-form .acepto {
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-size: 13px;
    color:#666666;
}


.acepto a {
    color:var(--blue-main);
    text-decoration:none;
}

.acepto a:hover {
    text-decoration:underline;
}

.banner-form .cont-acepto input {
    width:15px;
    height:15px;
    margin:0;
    margin-right:8px;
}

.banner-form .forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-form .forgot a {
    color:var(--blue-main);
}

.button-banner-form {
    background-color: var(--cyan);
    border-radius: 5px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    color:white;
    text-transform: uppercase;
    font-size:13px;
    font-weight:700;
    text-align: center;
    height:42px;
    width:100%;
    box-sizing: border-box;
    border:0;
    margin:22px 0 0;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color .2s ease;
}

.button-banner-form.corp {
    background-color: var(--blue-main);
}

.button-banner-form.corp.grey{
    background-color: var(--grey-corp);
    color: var(--blue-main);
}

.button-banner-form:hover { 
    background-color: var(--blue-main);
}

.button-banner-form.corp:hover { 
    background-color: var(--cyan);
}

.button-banner-form.corp.grey:hover { 
    background-color: var(--blue-main);
    color:white;
}

.content-block {
    margin: 47px 0 87px;
}

.content-block#interesado {
    margin: 10px 0 0;
}

.content-block#novedades {
    margin: 26px 0 100px;
}


.heading-h2 {
    font-size:28px;
    text-transform: uppercase;
    font-weight:700;
    color:#333333;
    text-align: center;
    padding:35px 0;
    letter-spacing: 0.01em;
    margin: 0;
    font-family: 'Assistant', sans-serif;
    font-optical-sizing: auto;
    margin-left: auto;
    margin-right: auto;
}

.heading-h2.white {
    color:white;
}

.heading-h2.white::after {
    border-bottom:1px solid white;
}

.heading-h2::after {
    content:'';
    border-bottom:1px solid #999999;
    width:12%;
    display: block;
    margin:22px auto;
}

.cont-cards {
    margin: 20px auto 0;
    width:fit-content;
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}


/*CARD BASIC **********************/

.card-basic {
    width:304px;
    height:514px;
    background-color: white;
    position: relative;
    margin: 0 20px;
}

.card-basic.corp {
    height:540px;
}


.card-basic.corp .icon-card {
    width:50px;
    height:auto;
}

.card-basic .icon-card {  
    width:50px;
    height:auto;
}

.card-basic img {
    display:block;
    width:100%;
}

.card-basic .cont-data-card {
    padding:25px 23px;
}

.card-basic h2 {
    font-size:18px;
    text-transform: uppercase;
    font-weight:700;
    margin-bottom:30px;
    color:#333333;
}

.card-basic.corp h2 {
    font-size:18px;
    color:var(--blue-main)
}

.card-basic p {
    font-size:14px;
    font-weight:400;
    line-height: 1.6em;
    color:#777777;
}

.card-basic ul {
   list-style: square;
   padding-left:15px;
}

.card-basic ul li {
    font-size:14px;
    font-weight:400;
    line-height: 1.6em;
    color:#777777;
}


.card-basic.steps {
    border-bottom: 6px solid var(--blue-main);
}

.card-basic.normal {
    height:434px;
}

.card-basic.large {
    height:554px;
}

.card-basic.medium {
    height: 470px;
}

.card-basic.steps .icon-card {
    margin: auto;
}

.card-basic.steps .icon-card.alignleft {
    margin: inherit;
}

.card-basic.steps .cont-data-card {
    text-align: center;
}

.card-basic.steps h2 {
    color:var(--blue-main);
}


.card-basic.no-button {
    height:554px;
    width:380px;
    border-bottom: 6px solid var(--blue-main);
}

.card-basic.no-button .icon-card {
    margin: auto;
    width: 36px;
    height: auto;
}

.card-basic.no-button  .cont-data-card {
    text-align: center;
    padding: 32px 28px;
}

.card-basic.no-button  h2 {
    color:var(--blue-main);
    margin-bottom: 20px;
    margin-top: 24px;
}

.card-basic.no-button p {
    font-size:15px;
}

.cont-otras-soluciones {
    display: flex;
    margin: 90px auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.otras-soluciones {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1280px;
}


#back-photo-items-4 {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

#back-photo-items-4::after {
    content:'';
    background-color: #000000;
    opacity: .4;
    display:block;
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    left:0;
    top:0;
}

#back-photo-items-4 img {
    height: auto;
    width: 100%;
    position: relative;
}

#back-photo-items-4 .cont-items {
    position: relative;
    margin-left: -100%;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#back-photo-items-4 .cont-items h2 {
    color:white;
    padding-bottom: 2px;
}

#back-photo-items-4 .cont-items h2:after {
    border-bottom: 1px solid #ffffff;
}

#back-photo-items-4 .cont-items ul {
    display: block;
    margin: 0 auto;
    color: white;
    columns: 2;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

#back-photo-items-4 .cont-items ul li {
    width: 34%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 33%;
}

#back-photo-items-4 .cont-items ul li h4 {
    font-size:16px;
    margin: 20px 0 0 0;
}

#back-photo-items-4 .cont-items ul li p {
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 13px;
}

#back-photo-items-4 .cont-items ul li img {
    display:block;
    width: 55px;
}


.card-basic.otras-soluc {
    height:314px;
}

.card-basic.otras-soluc .icon-card {
    margin: auto;
}

.card-basic.otras-soluc .cont-data-card {
    text-align: center;
}

.card-basic.otras-soluc h2 {
    color:#333333;
    text-align: center;
}

.card-basic.otras-soluc p {
    font-size:15px;
}

.card-step-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-step-wrapper .step-number {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    align-items: center;
}


.card-step-wrapper .step-number .circle {
    border: 1px solid #cccccc;
    border-radius: 100%;
    padding:5px;
    aspect-ratio: 1/1;
}

.card-step-wrapper .step-number .circle span {
    color:var(--cyan);
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    display: block; 
}

.card-step-wrapper .step-number .line {
    border-left: 1px solid #cccccc;
    height:20px;
    width:1px;
    margin-right: -1px;
    position: relative;
}





/*CARD SEGMENT **********************/

.card-segments {
    width:340px;
    height:282px;
    background-color: white;
    position: relative;
    margin: 0 14px 50px;
    border-bottom:6px solid var(--blue-main);
}

.card-segments h2 {
    font-size:18px;
    text-transform: uppercase;
    font-weight:700;
    margin-bottom:30px;
    color:#333333;
    padding:25px 28px;
    text-align: center;
}

.card-segments img {
    display:block;
    width:100%;
}

.butt-card {
    padding:14px;
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    box-sizing: border-box;
    transition: background-color .3s ease;
    cursor: pointer;
}

.butt-card a {
    text-decoration: none;
}

.butt-card.blue { 
    background-color: var(--blue-main);
}

.butt-card.grey { 
    background-color: var(--grey-corp);
}

.butt-card.blue:hover {
    background-color: var(--cyan);
}

.butt-card.blue.corp:hover {
    background-color: var(--grey-corp);
}

.butt-card.grey:hover {
    background-color: var(--blue-main);
}

.butt-card.grey:hover span {
    color: white;
}

.butt-card.blue.corp:hover span, .butt-card.blue.corp:hover svg {
    color: var(--blue-main);
}

.butt-card.grey:hover svg {
    color: white;
}

.butt-card span {
    font-size:14px;
    font-weight:600;
    text-align: center;
    display: block;
    letter-spacing: 0.03em;
}

.butt-card.blue span {
    color:white;
}

.butt-card.grey span {
    color:var(--blue-main);
}

.butt-card svg {
    position: absolute;
    right: 16px;
    top: 0;
    width: 14px;
    height: auto;
    display: block;
    padding: 17px 0;
    color:white;
}

.butt-card.grey svg {
    color:var(--blue-main);
}

.cont-porque-protek {
    background-color: var(--blue-main);
    display: flex;
    justify-content: center;
}

.cont-analisis-corpo {
    background-color: white;
    display: flex;
    justify-content: center;
    margin: 28px 0;
}

.porque-protek {
    width:fit-content;
    margin: 20px 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.analisis-corpo {
    width:fit-content;
    margin: 64px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.porque-protek h2 {
    font-size:29px;
    text-transform: uppercase;
    font-weight:700;
    color:white;
    text-align: center;
    padding:35px 0;
    letter-spacing: 0.01em;
}


.analisis-corpo img {
    display: block;
    width:600px;
}


.porque-protek h2::after {
    content:'';
    border-bottom:1px solid rgba(255,255,255,.5);
    width:12%;
    display: block;
    margin:22px auto;
}

.porque-protek ul {
    list-style: none;
    padding:0;
    margin:0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.porque-protek ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:30px 100px;
    width: 190px;
}

.porque-protek ul li span {
    color:white;
    font-size:16px;
    font-weight:500;
    text-align: center;
    display:block;
    margin:20px 0;
    letter-spacing: 0.02em;
}

.porque-protek ul li::after {
    content:'';
    display:block;
    width:20%;
    border-bottom:1px solid white;
    margin:5px 0;

}

.porque-protek ul li::before {
    content:url(images/icon-porque-referentes.svg);
    display:block;
    width:54px;
    height:auto;
    text-align: center;
    margin:0 auto;
}

.porque-protek ul li.refer::before {
    content:url(images/icon-porque-referentes.svg);
}

.porque-protek ul li.resp::before {
    content:url(images/icon-porque-respuesta.svg);
}

.porque-protek ul li.monit::before {
    content:url(images/icon-porque-monitoreo.svg);
}

.porque-protek ul li.trayec::before {
    content:url(images/icon-porque-trayectoria.svg);
}

.porque-protek ul li.soluc::before {
    content:url(images/icon-porque-soluciones.svg);
}

.porque-protek ul li.integ::before {
    content:url(images/icon-porque-integradores.svg);
}

.porque-protek .button-cyan {
    align-self: center;
    margin:40px 0;
}

.porque-protek .button-cyan a {
    display:flex;
}

.cont-funcionalidades-sistema {
    background-color: #6E717A;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cont-funcionalidades-sistema::after {
    content: url(images/business-people-bw.jpg);
    opacity:.1;
    width: 100%;
    height: auto;
    position:absolute;
    left:0;
    top:0;
}

.funcionalidades-sistema {
    width:fit-content;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.funcionalidades-sistema .wireframe {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Equal width columns */
    grid-template-rows: repeat(4, 1fr); /* 4 equal-height rows */
    gap: 1px; /* optional */
    width: 90%; /* or fixed width */
    margin:0 auto;
}

.cell {
    display: flex;
    align-items: center;
  }

  .cell.a3 {
    display:flex;
    flex-direction: column;
  }

  .cell.a3 .icon-text-wrap {
    width:168px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 12px;
  }

  .cell.a3 .line {
    width:44%;
    align-self: flex-end;
  }

  .cell.a5 {
    display:flex;
    flex-direction: row;
    align-items: center;
  }

  .cell.a5 .icon-text-wrap {
    width:168px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 12px;
  }

  .cell.a5 .line {
    width:44%;
    align-self: center;
    order:2;
  }

  .cell.a1 {
    display:flex;
    flex-direction: column;
  }

  .cell.a1 .icon-text-wrap {
    width:168px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 12px;
  }

  .cell.a1 .line {
    width:44%;
    align-self: flex-end;
    transform: scaleY(-1);
    order:2;
  }

  .cell.a2 {
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .cell.a2 .icon-text-wrap {
    width:168px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 12px;
  }

  .cell.a2 .line {
    width:44%;
    align-self: flex-start;
    order:2;
    transform: rotate(180deg);
  }

  .cell.c1 {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .cell.c1 .icon-text-wrap {
    width:168px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 12px;
  }

  .cell.c1 .line {
    width:44%;
    align-self: center;
  }

  .cell.c3 {
    display:flex;
    flex-direction: column;
  }

  .cell.c3 .icon-text-wrap {
    width:168px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 12px;
  }

  .cell.c3 .line {
    width:44%;
    align-self: flex-start;
    transform: scaleX(-1);
  }

  .cell.b2 {
    display:flex;
    flex-direction: column;
    margin-top: -31px;
  }

  .cell.b2 .icon-text-wrap {
    width:168px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 12px;
  }

  .cell.b2 .line {
    height: 62px;
    align-self: center;
    margin-bottom: 9px;
  }

  .cell.b1 img {
    width:95%;
    display: block;
    margin:0 auto;
  }

  .cell p {
    color:white;
    font-size:15px;
    font-weight:600;
    text-align: center;
  }

  .cell .icon-text-wrap img {
    width:63px;
    height:auto;
  }


.button-cyan {
    background-color: var(--cyan);
    border-radius: 6px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    color:white;
    text-transform: uppercase;
    font-size:13px;
    font-weight:700;
    text-align: center;
    width:fit-content;
    box-sizing: border-box;
    border:0;
    margin:22px 0 0;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color .2s ease;
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 23px;
}

.button-cyan a {
    color:white;
    text-decoration: none;
}

.button-cyan svg {
    width:12px;
    height:auto;
    display:flex;
    margin-left:11px;
}

.button-cyan:hover {
    background-color: white;
    color:var(--blue-main);
}

.button-cyan:hover a {
    color:var(--blue-main);
}

.button-cyan:hover svg {
    color:var(--blue-main);
}

.button-cyan.blue {
    background-color: var(--blue-main);

}

.button-cyan.blue:hover {
    background-color: var(--cyan);

}

.button-white {
    background-color: white;
    border-radius: 6px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    color:var(--blue-main);
    text-transform: uppercase;
    font-size:14px;
    font-weight:700;
    text-align: center;
    width:fit-content;
    box-sizing: border-box;
    border:0;
    margin:22px 0 0;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background-color .2s ease;
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 23px;
}

.button-white.gray {
background-color: #DEDEDE;
}

.button-white:hover {
    background-color: var(--blue-main);
    color:white;
}

.button-white.gray:hover {
    background-color: var(--blue-main);
    color:white;
}

.button-cyan.blue {
    background-color:var(--blue-main);
    color:white;
}

.button-cyan.blue:hover {
    background-color:var(--cyan);
}


.cont-banner-corp {
    background: url(images/banner-corp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:468px;
    display: flex;
    justify-content: center;
    margin: 90px 0 20px;
}

.banner-corp {
    width: 1300px;
}

.banner-corp .block {
    background-color: #d9d9d9;
    width:420px;
    padding: 70px 60px;
}

.banner-corp .block h4 {
    font-size: 23px;
    font-weight: 500;
    color: #333333;
    margin: 35px 0;
    padding-right: 10%;
    line-height: 1.4em;
}

.banner-corp .block img {
    width:180px;
}

.cont-certificacion {
    display: flex;
    justify-content: center;
    padding:60px 0;
}

.certificacion {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cccccc;
}

.certificacion .data {
    width: 65%;
}

.certificacion .data h3 {
    font-size: 24px;
    font-weight:500;
    color:var(--blue-main)
}

/* Modal Overlay */

body.modal-open {
  overflow: hidden;
}

.certificacion .modalCer {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Show class to activate the modal */
.certificacion .modalCer.show {
  opacity: 1;
  visibility: visible;
}

.certificacion .modalcer-content {
  background-color: white;
  margin: 2% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
    max-height: 90vh;         /* Limits height */
  overflow-y: auto;
}

.certificacion .modalCer.show .modalcer-content {
  transform: scale(1);
}


.certificacion .modalcer-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Close Button */
.certificacion .close-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.certificacion .close-button:hover {
  color: #000;
}


.certificacion .logo {
    width: 35%;
    display: flex;
    justify-content: flex-end;
    border-left: 1px solid #cccccc;
    padding: 8px 0 59px;
}

.certificacion .logo img {
    height: 117px;
}

#novedades .cont-cards {
   flex-wrap: nowrap;
}

.card-basic.novedades-card {
    width:340px;
    height:410px;
    min-height:410px;
    margin: 0px 30px;
}

.card-basic.novedades-card .wrapper-thumb {
    width: 100%;
    aspect-ratio: 3/1.8;
    overflow: hidden;
}

.card-basic.novedades-card .wrapper-thumb img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.card-basic.novedades-card a {
    text-decoration: none;
    color: #444;
    font-weight: 650;
    font-size: 19px;
    padding-top: 13px;
    display: block;
    line-height: 1.3em;
}

.card-basic.novedades-card.corpo a {
    color: var(--blue-main);
}

footer {
    display: flex;
    justify-content: center;
    background-color: var(--blue-main);
    color:white;
    padding:60px 0;
    letter-spacing: 0.02em;
}

footer.corp {
    background-color: #EBEBEB;
    color:#222222;
}


footer .wrap-footer {
    width: 1300px;
    display: flex;
    flex-direction: column;
}

footer .wrap-footer h3 {
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    line-height: 3em;
    font-weight: 700;
    letter-spacing: 0.005em;
    margin: 5px 0;
    text-transform: uppercase;
}

footer.corp .wrap-footer h3 {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

footer .wrap-footer .row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .wrap-footer .row1 ul li {
    color:#d7e9ff;
}

footer.corp .wrap-footer .row1 ul li {
    color:#222222;
}

footer .wrap-footer .row1 h4 {
    color:#e3f0ff;
}

footer.corp .wrap-footer .row1 h4 {
    color:#333333;
}

footer .wrap-footer .row1 .soluciones {
    display: flex;
    flex-direction: column;
    width:15%;
}

footer .wrap-footer .row1 .soluciones ul {
    list-style: none;
    margin:0;
    padding:0;
}

footer .wrap-footer .row1 .soluciones ul li {
    padding:9px 0;
    font-size:14px;
    font-weight:500;
}

footer .wrap-footer .row1 .soluciones ul li a {
    text-decoration: none;
    color:white;
    transition: padding .3s ease;
}

footer.corp .wrap-footer .row1 .soluciones ul li a {
    color:#222222;
    font-weight:600;
}


footer .wrap-footer .row1 .soluciones ul li a:hover {
    text-decoration: none;
    color:var(--cyan);
    padding-left:6px;
}

footer.corp .wrap-footer .row1 .soluciones ul li a:hover {
    color:var(--blue-main);
}

footer .wrap-footer .row1 .soluciones .logo {
    width:170px;
    height:auto;
    margin-bottom: 36px;
    margin-top: 20px;
}

footer .wrap-footer .row1 .soluciones .mailto {
    font-size:14px;
    color:var(--cyan);
    margin-top:55px;
    text-decoration: none;
}

footer.corp .wrap-footer .row1 .soluciones .mailto {
    color:var(--blue-main);
}

footer .wrap-footer .row1 .soluciones .mailto:hover {
    color:white;
}

footer.corp .wrap-footer .row1 .soluciones .mailto:hover {
    text-decoration: underline;
    color:#222222;
}

footer .wrap-footer .row1 .encontranos {
    width:48%;
}

footer .wrap-footer .row1 .encontranos .wrap-ciudades {
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1, footer .wrap-footer .row1 .encontranos .wrap-ciudades .col2 {
    width:47%;
}

footer .wrap-footer .row1 h4 {
    font-weight:700;
    margin: 20px 0 0;
}

footer .wrap-footer .row1 ul {
    font-weight:300;
    font-size:14px;
    line-height: 1.4em;
    padding:0;
    margin-bottom:40px;
    margin-top: 10px;
    list-style:none;
}

footer.corp .wrap-footer .row1 ul {
    font-weight:400;
}

footer .wrap-footer .encontranos ul li, footer .wrap-footer .internacional ul li {
    padding:6px 0;
    display:flex;
    align-items: flex-start;
    justify-content: flex-start;
}

footer .wrap-footer .encontranos ul li::before, footer .wrap-footer .internacional ul li::before {
    content:url(images/icon-footer-phone.svg);
    width:12px;
    height:auto;
    margin-right:8px;
    flex-shrink: 0;
}

footer .wrap-footer .encontranos ul li.call::before, footer .wrap-footer .internacional ul li.call::before { 
    content:url(images/icon-footer-call.svg);
}

footer .wrap-footer .encontranos ul li.mail::before, footer .wrap-footer .internacional ul li.mail::before {
    content:url(images/icon-footer-mail.svg);
}


footer .wrap-footer .encontranos ul li.loc::before, footer .wrap-footer .internacional ul li.loc::before {
    content:url(images/icon-footer-loc.svg);
}

footer .wrap-footer .encontranos ul li.ws::before, footer .wrap-footer .internacional ul li.ws::before  {
    content:url(images/icon-footer-ws.svg);
}

footer .wrap-footer .row1 .internacional {
    width: 16%;
}


footer .wrap-footer .row2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    border-top:1px solid rgba(255,255,255,.2);
    border-bottom:1px solid rgba(255,255,255,.2);
}

footer.corp .wrap-footer .row2 {
    border-top:1px solid rgba(46,46,46,.2);
    border-bottom:1px solid rgba(46, 46, 46, 0.2);
}

footer .wrap-footer .row2 .subnav {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    margin:0;
    padding:0;
}

footer .wrap-footer .row2 .subnav li {
    margin:0 13px;
}

footer .wrap-footer .row2 .subnav li a {
    opacity: .7;
    text-decoration: none;
    color:white;
    font-size: 13px;
}

footer.corp .wrap-footer .row2 .subnav li a {
    color:#222222;
}

footer .wrap-footer .row2 .subnav li a:hover {
    opacity: 1;

}

footer .corp .wrap-footer .row2 .subnav li a:hover {
    opacity: 1;
    color:var(--blue-main);
}

footer .wrap-footer .row2 p {
    font-size:13px;
    opacity: .6;
}

footer .wrap-footer .row2 .social {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    margin:0;
    padding:0;
}

footer .wrap-footer .row2 .social li {
  margin-left:30px;
}

footer .wrap-footer .row2 .social li svg {
  width:18px;
  height:auto;
  color:var(--cyan);
  transition: color .3s ease;
  cursor: pointer;
}

footer.corp .wrap-footer .row2 .social li svg {
    color:#666666;
  }

footer .wrap-footer .row2 .social li svg:hover {
    width:18px;
    height:auto;
    color:white;
  }

footer.corp .wrap-footer .row2 .social li svg:hover {
    color:var(--blue-main);
  }

.content-area {
    width: 92%;
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    line-height: 1.6em;
    color: #333333;
    padding-right: 20%;
    box-sizing: border-box;
  }

.content-area h2 {
    font-size:32px;
    margin-top:50px;
    line-height:1.5em;
 }

 .content-area h3 {
    font-size:26px;
 }

  .content-area h4 {
    font-size:22px;
 }





/*BUTTON TERTIARY CYAN **********************/

.button-tert-cyan-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:fit-content;
    text-decoration: none;
}

.button-tert-cyan-icon span {
    color:var(--cyan);
    font-weight: 600;
    font-size: 16px;
}

.button-tert-cyan-icon svg {
    display:flex;
    margin-left:10px;
    width:11px;
    height:auto;
    color:var(--cyan);
}

.button-tert-cyan-icon:hover span, .button-tert-cyan-icon:hover svg {
    color:var(--blue-main);
}

/*BUTTON TERTIARY CYAN **********************/



.cont-breadcrumb {
    background-color: white;
    padding: 12px 0;
}

.cont-breadcrumb .breadcrumb {
    margin: 12px auto;
    width: 93%;
    font-size: 14px;
    display: flex;
}

.breadcrumb a {
    text-decoration: none;
    color:#777777;
    font-weight:400;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--blue-main);
}

.breadcrumb a::after {
    content: '/';
    display:inline-block;
    margin:0 13px;
}


.breadcrumb .active {
    color:#555555;
    font-weight:600;
}

header.corp .main-menu-sand svg {
    color: #444444;
}


.segmentos-protek {
    margin: 70px 0;
}

.segmentos-protek .wrap-segmentos {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: white;
    padding: 59px;
    box-sizing: border-box;
}

.segmentos-protek .wrap-segmentos .hogar,
.segmentos-protek .wrap-segmentos .corpo {
   width:45%;
 }

 .segmentos-protek .wrap-segmentos .hogar img{
   width:187px;
 }

.segmentos-protek .wrap-segmentos .corpo img {
   width:177px;
 }


 .segmentos-protek .wrap-segmentos .hogar p,
 .segmentos-protek .wrap-segmentos .corpo p {
    font-size:15px;
    line-height:1.7em;
    margin-bottom: 58px;
  }

.segmentos-protek .wrap-segmentos .hogar .logo-cont,
.segmentos-protek .wrap-segmentos .corpo .logo-cont {
    height: 90px;
    display: flex;
    align-items: center;
    margin-bottom: 29px;
   }

.cont-porque-protek .porque-protek ul {
    padding-bottom:40px;
    grid-template-rows: repeat(1, 1fr);
}


.casos-exito {
    margin: 70px 0;
}

.casos-exito .wrapper {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.casos-exito .wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color:#444444;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

.casos-exito .caso {
    padding: 0 10px;
    box-sizing: border-box;
}

.casos-exito .caso .photo {
    width: 100%;
    aspect-ratio: 4 / 2.5;
    margin-bottom: 29px;
    overflow: hidden;
}


.casos-exito .caso .logo {
    height:50px;
    margin: 0 auto;
    display:block;
}

.casos-exito .caso .logo.wtc {
    height:50px;
}

.casos-exito .caso .logo.coomecipar {
    height:48px;
}

.casos-exito .caso .logo.perfecta {
    height:40px;
}

.casos-exito .caso .logo.itaipu {
    height:56px;
}

.casos-exito .caso .logo.luminotecnia {
    height:50px;
}

.casos-exito .caso .logo.caacupemi {
    height:50px;
}

.casos-exito .caso .logo.caiasa {
    height:44px;
}

.casos-exito .caso .photo img {
    height:100%;
}

.casos-exito .caso p {
    text-align: center;
    margin:23px 0;
}



.block-photo-text.portrait .info.normal p {
    font-size: 15px;
    line-height: 1.6em;
    color: #333333;
    font-weight: 500;
    margin: 20px 0 0;
    width: 70%;
}

.block-photo-text .info.normal h2 {
    margin-bottom:30px;
    width: 70%;
}

.comprometidos {
    margin: 70px 0;
}

.comprometidos .wrapper {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.comprometidos .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.comprometidos .wrapper .card-icon-text {
    width: 23%;
    background-color: white;
    padding: 40px 30px 20px 30px;
    box-sizing: border-box;
    border-bottom: 4px solid var(--blue-main);
    min-height: 216px;
}

.comprometidos .wrapper .card-icon-text .icon {
    width: 45px;
    display: block;
    margin: 0 auto;
}

.comprometidos .wrapper .card-icon-text h4 {
    font-size:16px;
    font-weight: 600;
    text-align: center;
    color:#222222;
    line-height: 1.4em;
}






/*INTERNAS **********************/


.block-text {
    width: 60%;
    margin: 10px auto 116px;
}

.block-text p {
    text-align: center;
    font-size:18px;
    color:#555555;
    font-weight:400;
    line-height: 1.8em;
    letter-spacing: 0.02em;
    margin:0;
}


.block-photo-text {
    width:1300px;
    margin: 90px auto;
    display:flex;
    align-items: flex-start;
    position:relative;
    z-index: 1;
}

.block-photo-text.sm-margin-top {
    margin-top: 23px;
}

h2.heading-h2.plus-margin-top {
    margin-top:115px;
}


.block-photo-text .info {
    background-color: var(--blue-main);
    padding: 64px 8% 69px 5%;
    margin-right: -60px;
    z-index: 2;
    position: relative;
    max-width: 37%;
    color: white;
}

.block-photo-text.corp .info {
    background-color: white;
    padding: 64px 8% 69px 5%;
    margin-right: -60px;
    z-index: 2;
    position: relative;
    max-width: 37%;
    color: #333333;
}

.block-photo-text .info h2 {
    font-size:36px;
    margin: 0;
    letter-spacing: 0;
    font-weight:700;
    line-height: 1.2em;
}

.block-photo-text.corp .info h2 {
   color:var(--blue-main);
}

.block-photo-text .info p {
    font-size:15px;
    line-height: 1.7em;
    opacity: .8;
    margin: 20px 0 30px;
    letter-spacing: .015em;
}


.block-photo-text .image-box {
    flex: 1;
    z-index: 1;
    position: relative;
  }

.block-photo-text .image-box img {
    display: block;
    width: 100%;
    height: auto;
}

.block-photo-text.portrait .info {
    order: 2;
    max-width: 49%;
    padding: 73px 10% 69px 14%;
    margin-right: 0;
    font-weight: 400;
    color:#666666;
}

.block-photo-text.portrait .info ul li {
    font-size: 16px;
    list-style: square;
    margin: 16px 0;
    line-height: 1.6em;
}

.block-photo-text.portrait .image-box {
    margin-right: -100px;
    z-index:3;
}

.block-photo-text.portrait .info p {
    font-size: 16px;
    line-height: 1.7em;
    opacity: 1;
    margin: 30px 0 20px;
    letter-spacing: .015em;
    color:#333333;
    font-weight:600;
}

.block-photo-text .wrap-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.block-photo-text .wrap-buttons .button-cyan {
   margin-right:20px;
}

.block-photo-text .wrap-buttons {
    display: flex;
}

.block-video {
    margin: 70px auto;
}

.block-video .wrap-video {
    margin: 40px auto 0;
    width:74%;
}

#block-video-element {
    width:100%;
}

.block-image {
    margin: 70px auto;
}

.block-image .wrap-image {
    margin: 0 auto 0;
    width:63%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-image .wrap-image.full {
    width:100%;
}

.block-image .wrap-image img {
    width:100%;
    height:auto;
}

.block-logos  {
    margin: 70px auto;
}

.block-logos .wrap-logos  {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}

.block-logos .wrap-logos .col1,
.block-logos .wrap-logos .col2,
.block-logos .wrap-logos .col3 {
    width:28%;

}

.block-logos .wrap-logos .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.block-logos .wrap-logos .wrapper .logo-blk {
    width:43%;
    margin-top: 30px;
}

.block-logos .wrap-logos .wrapper .logo-blk img {
    width: 40%;
    margin: 0 auto 24px;
    display: block;
}

.block-logos .wrap-logos h4 {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.block-logos .wrap-logos p {
    font-size: 13px;
    text-align: center;
}

.block-logos.aseguradoras .wrap-logos {
  align-items: center;
  margin: 35px auto 200px auto;
}


.block-logos.aseguradoras .wrap-logos img {
    height:53px;
    width: auto;
}

.block-logos.aseguradoras .wrap-logos img.sancor {
    height:36px;

}

.block-logos.aseguradoras .wrap-logos img.atlas {
    height:36px;
}


.block-logos.aseguradoras .wrap-logos img.seguridad {
    height:79px;

}

.block-logos.aseguradoras .wrap-logos img.rio {
    height:56px;
}

.busquedas {
 margin: 70px 0;
}

.busquedas .wrap-busquedas {
    margin: 10px auto;
    width: 88%;
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}

.busquedas .wrap-busquedas .card {
    margin: 0 auto;
    width: 23%;
    position: relative;
    background-color: white;
    padding: 73px 32px 77px;
    margin: 0;
    box-sizing: border-box;
}

.busquedas .wrap-busquedas .card .icon {  
    width: 90px;
    height: 90px;
    border-radius: 90px;
    background-color: var(--cyan);
    position: absolute;
    margin-top: -45px;
    top: 0;
    left: 50%;
    margin-left: -45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.busquedas .wrap-busquedas .card .icon img {  
    width: 47%;
    height: auto;
}


.busquedas .wrap-busquedas .card h3 {
    font-size: 20px;
    color:#222222;
}

.busquedas .wrap-busquedas .card p {
    font-size: 14px;
    line-height: 1.6em;
    color:#444444;
}

.busquedas .wrap-busquedas .swiper-cards .swiper-slide {
    overflow: visible !important;
}

.busquedas .wrap-busquedas .swiper.swiper-cards.swiper-initialized.swiper-horizontal {
    padding-top: 59px !important;
}


/* Base modal style */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 70% black mask */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  overflow: auto; /* allow scrolling if modal is taller than viewport */
}

/* Modal becomes visible */
.modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* Modal content box */
.modal-content {
  background: #fff;
  width: 66%;
  max-width: 800px;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.7s ease;
    margin: 4rem auto; /* add margin to separate from top */
  max-height: calc(100vh - 10rem); /* don't exceed screen */
  overflow-y: auto; /* scroll only inner content */
}

.modal-content .wrapper {
    color: #333333;
    padding: 30px;
    font-size: 14px;
    line-height: 1.6em;
}

.modal-content .wrapper .butt-card {
    position: relative;
    margin-top:40px;
}



.modal-content .wrapper .modal-image {
        width: 100px;
    height: 100px;
    border-radius: 90px;
    background-color: var(--cyan);
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 20px;
    top: 41px;
    right: 60px;
    box-sizing: border-box;
}

.modal-content .wrapper h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.modal-content .wrapper h2::after {
    content:'';
    border-bottom:1px solid #444444;
    height:30px;
    display:block;
    width:40px;
}

/* Animate in */
.modal.active .modal-content {
  transform: scale(1);
}

/* Close button */
.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}




.faq-section {
    margin:60px 0;
}

.faq-section .wrapper {
    margin: 30px auto;
    width:80%;
    columns: 2;
    gap:76px;
}

.faq-item {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
    margin: 9px 0;
}

.faq-item:first-child {
    border-top: 1px solid #e1e1e1;
    padding-top: 6px;
    margin: 3px 0;
}


.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    font-family: "Assistant", sans-serif;
    text-align: left;
    cursor: pointer;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:var(--blue-main);
    line-height: 1.5em;
}

.faq-toggle {
    font-size: 39px;
    transition: transform 0.3s ease;
    padding-left: 7%;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    font-size:15px;
    color: #444444;
    line-height:1.5em;
}


.cont-wide-photo-block {
    display: flex;
        justify-content: flex-start;
        margin: 120px 0 80px;
        width: 100%;
        height: 523px;
        align-items: flex-end;
        overflow: hidden;
}

.cont-wide-photo-block .panoramic {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.wide-photo-block {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 60px;
    margin-left: -107%;
    position: relative;
    z-index: 3;
}

.wide-photo-block .block {
    background-color: #F5F5F5;
    width: 380px;
    padding: 30px 68px 30px 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
}

.wide-photo-block .block h4 {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin: 35px 0 18px;
    padding-right: 10%;
    line-height: 1.2em;
}

.wide-photo-block .block ul {
    padding:0;
    list-style: none;
}

.wide-photo-block .block ul li {
    padding:0;
    list-style: none;
    margin:14px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.wide-photo-block .block img {
    width:154px;
}

.wide-photo-block .block ul li img {
    width: 30px;
    margin-right: 20px;
}

.wide-photo-block .block p {
    font-size: 15px;
    line-height: 1.6em;
    margin-bottom: 35px;
}

.wide-photo-block .block .app-block {

    width:100%;
    margin-top:10px;

}

.wide-photo-block .block .app-block span {

    font-size: 15px;
    color:#444444;

}

.wide-photo-block .block .app-block .butts-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin:15px 0;
}

.wide-photo-block .block .app-block .butts-wrap a {
    text-decoration: none;
    display:block;
    margin-right: 22px;
}

.wide-photo-block .block .app-block .butts-wrapp a img {
    width:100%;
    height:auto;
}




.planes-block {
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.planes-block.planes-wrapper {
    display:flex;
    justify-content: center;
    flex-direction: column;
    width:1063px;
}

.planes-block .planes-wrapper .photo {
    width:100%;
}

.planes-block .planes-wrapper .photo img {
    display:block;
    width:100%;
    height:auto;
}

.planes-block .planes-wrapper .planes {
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}

.planes-block .planes-wrapper .planes .plan {
    width: 33.1%;
    background-color: white;
    position: relative;
    padding-bottom: 38px;
    min-height: 470px;
}

.planes-block .planes-wrapper .planes .plan h3 {
    display: block;
    width:100%;
    padding:25px;
    background-color: var(--cyan);
    text-transform: uppercase;
    color:white;
    font-size: 17px;
    text-align: center;
    font-weight: 700;
    box-sizing: border-box;
    margin: 3px 0;
}

.planes-block .planes-wrapper .planes .plan ul {
    list-style: none;
    padding:0;
}

.planes-block .planes-wrapper .planes .plan ul li {
    border-bottom:1px solid rgba(0, 0, 0, .1);
    padding: 11px 5px 11px 25px;
    font-size:14px;
    color:#555555;
    display:flex;
    justify-content: flex-start;
    align-items: center;
}

.planes-block .planes-wrapper .planes .plan ul li:last-child {
    border:0;
}

.planes-block .planes-wrapper .planes .plan ul li::before {
    content:url(images/check-green.svg);
    width:10px;
    height: auto;
    display:flex;
    margin-right:14px;
}

.planes-block .planes-wrapper .planes .plan ul li.nocheck::before {
    content:'';
}

#interesado {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0 76px;
}

#interesado h2 {
    text-align: center;
    font-size:26px;
    font-weight:700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color:#333333;
}

#interesado p {
    text-align: center;
    font-size:15px;
    font-weight:400;
    color:#444444;
}

#interesado .form-interesado,
#form-contacto .form-interesado {
    width:800px;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-contacto .form-interesado {
    width:initial !important;
}

.form-interesado .cont-acepto {
    margin: 7px 0 10px;
}


#interesado .form-interesado .wrap-cols,
#form-contacto .form-interesado .wrap-cols {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    flex-direction: column;
}

#form-contacto .form-interesado .wrap-cols {
    flex-direction: column !important;
}


#interesado .form-interesado .wrap-cols .col1,
#interesado .form-interesado .wrap-cols .col2,
#interesado .form-interesado .wrap-cols .col3 {
    justify-content: space-between;
    width: 100%;
    display: flex;
}

#interesado .form-interesado .wrap-cols .col1 > div,
#interesado .form-interesado .wrap-cols .col2 > div,
#interesado .form-interesado .wrap-cols .col3 > div {
    width:49%;
}

#interesado .form-interesado .wrap-cols .col4  {
    width: 100%;
}

#form-contacto .form-interesado .wrap-cols .col1, #form-contacto .form-interesado .wrap-cols .col2 {
    width:100%;
}

#interesado .form-interesado .wrap-cols input,
#form-contacto .form-interesado .wrap-cols input {
    display:block;
    height:45px;
    border: 1px solid #d6d6d6;
    margin: 6px 0 18px;
    border-radius: 3px;
    background-color: rgb(243, 243, 243);
    font-size: 15px;
    color:#222222;
    letter-spacing: 0;
    width:100%;
    padding-left:10px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    box-sizing: border-box; 
}

#interesado .form-interesado .wrap-cols input::placeholder,
#form-contacto .form-interesado .wrap-cols input::placeholder,
#interesado .form-interesado .wrap-cols textarea::placeholder,
#form-contacto .form-interesado .wrap-cols textarea::placeholder
{
    color: #b3b3b3;
    opacity: 1 !important;
}

#interesado .form-interesado select {
    appearance: none;
    background-image: url(images/chevron-select.svg);
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    display:block;
    height:45px;
    border: 1px solid #d6d6d6;
    margin: 6px 0 14px;
    border-radius: 3px;
    background-color: rgb(243, 243, 243);
    font-size: 11px;
    color:#666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width:100%;
    padding-left:10px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    box-sizing: border-box;
}

#form-contacto .form-interesado .wrap-cols input {
    margin-top:3px !important;
}

#form-contacto .form-interesado .wrap-cols textarea {
    display:block;
    height:125px;
    border: 1px solid #d6d6d6;
    margin: 4px 0 14px;
    border-radius: 3px;
    background-color: rgb(243, 243, 243);
    font-size: 15px;
    color:#222222;
    letter-spacing: 0;
    width:100%;
    padding-left:10px;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    box-sizing: border-box; 
    padding-top: 10px;
}


#interesado .cont-acepto .acepto,
 #form-contacto .cont-acepto .acepto
 {
    color:#444444;
}

#ejemplo-analiticas .cont-vids {
    width:84%;
    margin:0 auto;
    display:flex;
    justify-content: space-between;
    align-items: center;
}

#ejemplo-analiticas .cont-vids img {
    width:30%;
    height:auto;
    display:block;
}


.cards-square {
    margin:70px 0;
}

.wrap-cards-square {
    width: 88%;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-square {
    width: 48%;
    background-color: white;
    border-bottom: 5px solid var(--blue-main);
    margin-bottom: 70px;
    padding: 0 6% 5% 4%;
    min-height: 513px;
    box-sizing: border-box;
    position: relative;
}

.card-square .cont-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-square .cont-images .foto {
    width: 77%;
    height: auto;
    margin-top: -20px;
}

.card-square .cont-images .icon {
    width: 66px;
}

.card-square h3 {
    color: var(--blue-main);
    margin-top: 45px;
    margin-bottom: 12px;
    font-size:23px
}

.card-square p {
    font-size: 15px;
    line-height: 1.6em;
    color: #333333;
}

.noform-mobile {
    display: none;
}

#hero picture {
    width: 100%;
}


#contacto-block {
    width: 100%;
}

#contacto-block .wrapper {
    width: 77%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 80px auto;
    line-height: 1.9em;
}

#contacto-block .wrapper .direcciones {
    width: 42%;
    color:#333333;
}

#contacto-block .wrapper .direcciones .pais {
    margin-bottom:40px;
}

#contacto-block .wrapper .direcciones h2 {
    font-weight:700;
    font-size: 24px;
    margin-bottom: 14px;
}

#contacto-block .wrapper .direcciones h3 {
    font-weight:700;
    font-size: 17px;
    margin-bottom:8px;
    margin-top: 27px;
}

#contacto-block .wrapper .direcciones span {
    font-weight:400;
    font-size: 15px;
}

#contacto-block .direcciones span strong {
    font-weight:500;
    font-size: 16px;
}

#contacto-block #form-contacto {
    width: 52%;
    background-color: white;
}

#contacto-block #form-contacto h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue-main);
    text-align: left;
    padding: 30px 0 10px;
    letter-spacing: 0.01em;
    margin: 0;
    font-family: 'Assistant', sans-serif;
    font-optical-sizing: auto;
}


#contacto-block #form-contacto .cont-form {
    width: 72%;
    margin:15px auto;
    padding: 2px 0 36px;
}

#contacto-block #form-contacto .cont-form p {
    font-size:15px;
}

#contacto-block .direcciones a {
    color:var(--blue-main);
    text-decoration: none;
    font-size: 16px;
}

#contacto-block .direcciones a:hover {
    text-decoration: underline;
}





/*INTERNAS HOGAR **********************/



/*NEWS **********************/

.wrapper-news {
    width:88%;
    margin:40px auto;
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wrapper-news .entry-footer {
    display:none;
}

.wrapper-news main.site-main {
    width:62%;
}

.wrapper-news main.site-main p {
    font-size:16px;
    line-height: 1.7em;
    margin:20px 0;
    color:#555555;
}

.wrapper-news main.site-main img {
    margin:20px 0;
}

.wrapper-news main.site-main h1 {
    font-size:40px;
}

.wrapper-news main.site-main h2 {
    font-size:28px;
    margin-top:35px;
    color: #333333;
}

.wrapper-news main.site-main .entry-meta {
    color: #666666;
    font-style: italic;
    letter-spacing: 0.01em;
}

.wrapper-news aside.widget-area {
    width: 34%;
    background-color: white;
    padding: 34px 42px;
    box-sizing: border-box;
    margin-top: 20px;
}

.wrapper-news aside.widget-area .widget_block {
    margin:36px 0;
    color:#333333;
}

.wrapper-news aside.widget-area .widget_block h2 {
    font-weight:650;
}

.wrapper-news aside.widget-area .widget_block ul {
    padding-left: 16px;
    list-style: square;
    line-height: 1.7em;
}

.wrapper-news aside.widget-area .widget_block ul li {
    margin:10px 0;
}

.wrapper-news aside.widget-area .widget_block ul li a {
    color:var(--blue-main);
    font-size:15px;
}


.wrapper-news aside.widget-area .wp-block-search__inside-wrapper {
    margin-top: 5px;
}



.wrapper-news aside.widget-area .wp-block-search__input {
    border: 1px solid #d1d1d1;
}


.wrapper-news .has-post-thumbnail .post-thumbnail img {
    max-width: 100%;
    height: auto;
}

.cont-cards.novedades-home {
    row-gap: 35px;
}

.wrapper-news .cont-cards.novedades-home .wrapper-thumb img {
    margin: 0;
}

.cont-cards.novedades-home .card-basic.novedades-card {
    width: 46%;
    margin: 0px 15px;
}




.whatsapp a {
    width: 57px;
    height:57px;
    border-radius: 90px;
    background-color: #7AD867;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 33px;
    right:26px;
    z-index:9990;
    transition: all .3s ease;
    cursor:pointer;
}


.whatsapp a:hover  {
    background-color: #5dc049;
    transform: scale(.8);
}

.whatsapp img {
    width: 29px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.main-menu-sand {
        width: 52px;
        height: 14px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
}

.pagination {
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

.pagination {
    display: flex;
    margin-top: 70px;
    justify-content: center;
}

.pagination  .page-numbers {
    padding: 12px;
    border: .5px solid #b5b5b5;
    margin: 5px;
    height: 7px;
    display: flex;
    align-items: center;
    text-align: center;
}

.pagination .page-numbers.current {
    background-color: #e3e3e3;
    color: #999;
    border-color: #e3e3e3;
}

.pagination .page-numbers.dots {
    background-color: transparent;
    border: 0;
}

.pagination .page-numbers:hover {
    background-color: #e3e3e3;
    border-color: #e3e3e3;
}

.pagination .prev,
.pagination .next {
    padding: 12px 20px;
    font-weight: 700;
    color:var(--blue-main);
}

.pagination .nav-links {
    display:flex;

}

.search-results h2 a:hover {
    color:var(--blue-main);

}

.search-results article {
    border-bottom: 1px solid #ccc;
    padding-bottom: 12px;
}

.search-results article a.search-link {
    color: var(--blue-main);
    display: block;
    padding: 0 0 12px 0;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.search-results article a.search-link:hover {
   text-decoration: underline;
}

.search-results .search-heading {
    color: var(--blue-main) !important;
    margin-bottom: 59px;
    font-size: 27px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 21px;
}

.search-results .search-heading strong {
    font-weight:bold;
}



@media only screen and (max-width: 480px) {


    .banner-form .cont-inputs:first-child input {
        margin-bottom: 10px;
    }

    #hero {
        height: initial !important;
    }

    .block-photo-text .wrap-buttons {
        flex-direction: column;
        
    }

    .block-photo-text .wrap-buttons .button-cyan:last-child {
        margin-top: 21px;
    }

    .block-photo-text .wrap-buttons .button-cyan{
        width: 70%;
        justify-content: center;
    }

    .comprometidos .wrapper {
        flex-direction: column;
    }

    .comprometidos .wrapper .card-icon-text {
        width: 100%;
        margin: 15px 0;
    }

    .block-photo-text.portrait .image-box {
        width: 100%;
    }

    .block-photo-text .info.normal h2 {
        margin-bottom: 30px;
        width: 90%;
    }

    .block-photo-text.portrait .info.normal p {
        width: 90%;
    }

    .segmentos-protek .wrap-segmentos {
        width: 90%;
        padding: 34px;
        flex-direction: column;
    }

    .segmentos-protek .wrap-segmentos .hogar, .segmentos-protek .wrap-segmentos .corpo {
        width: 100%;
    }

    .segmentos-protek .wrap-segmentos .corpo {
        margin-top: 58px;
    }

    .segmentos-protek .wrap-segmentos .hogar .logo-cont, .segmentos-protek .wrap-segmentos .corpo .logo-cont {
        height: 80px;
        margin-bottom: 0px;
    }

    .segmentos-protek .wrap-segmentos .hogar p, .segmentos-protek .wrap-segmentos .corpo p {
        margin-bottom: 31px;
    }

    #back-photo-items-4 .cont-items {
        padding: 50px 0;
    }

    #back-photo-items-4 .cont-items ul {
        columns: 1;
        width: 100%;
        box-sizing: border-box;
    }

    #back-photo-items-4 .cont-items ul li {
        width: 97%;
        padding: 6px 40px;
        box-sizing: border-box;
    }

    #back-photo-items-4 img {
        height: initial;
        width: 100%;
        object-fit: cover;
    }

    .block-photo-text .wrap-buttons .button-cyan {
        margin-top: 2px;
    }

    .interna .banner-form,
    .banner-form.no-slider
    {
        height:initial;
    }

    .wide-photo-block .block img {
        width: 134px;
    }

    header.corp .bottom-header .logo {
        width: 160px;
        padding: 10px 0;
    }

    .heading-h2 {
        font-size: 23px;
        line-height: 1.3em;
        padding: 0 18px;
    }

    #hero .wrapper-hero .heading p {
        font-size: 17px;
    }

    .segments ul li {
        font-size: 12px;
        padding: 12px 27px;
    }

    .bottom-header .logo {
        width: 210px;
    }

     .bottom-header .logo img {
        width: 100%;
        height: auto;
    }

    .top-header, .bottom-header {
        padding: 0px 18px;
    }

    .heading.no-visible-mobile {
        height: 100px;
    }


    .heading.no-visible-mobile h1, .heading.no-visible-mobile p, .heading.no-visible-mobile .button-cyan {
        display:none;
    }

    .noform-mobile {
        background-color: var(--blue-main);
        width: 100%;
        height: 419px;
        text-align: center;
        padding: 45px 26px 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .noform-mobile h1 {
        color:white;
    }

    .noform-mobile p {
        color:white;
    }

    #hero {
        justify-content: flex-start;
        align-items: flex-start;
        height:initial;
        position:relative;
        overflow: hidden;
    }

    #hero.hero-slide {
        height:var(--hero-slide-height);
    }

    #hero.hero-slide .wrapper-hero-image {
        height:initial;
    }

    #hero .wrapper-hero-image {
        height:286px;
    }

    #hero .wrapper-hero-image img {
        width: 100%;
        height:100%;
        object-fit: cover;
        margin-left: 0;
    }

    #hero img {
        width: 100%;
        height:100%;
        object-fit: cover;
        margin-left: 0;
    }

    #hero .wrapper-hero {
        width: 100%;
        align-items: center;
        margin-left: -100%;
        flex-direction: column;
    }

    #hero .wrapper-hero .heading {
        margin-left: 0;
        padding: 0;
        width: 90%;
        height: 286px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #hero.hero-slide .wrapper-hero .heading {
        margin-left: 0;
        padding: 60px 0px;
        width: 90%;
        height:initial;
    }

    #hero.hero-slide .wrapper-hero.corpo .heading {
        padding: 49px 0px;
    }

    #hero .wrapper-hero .heading h1, #hero .wrapper-hero .heading p {
        text-align: center;
    }

    #hero .wrapper-hero .heading h1 {
        font-size: 28px;
    }

    #hero .wrapper-hero .heading p {
        text-align: center;
        line-height: 1.3em;
    }

    .banner-form {
        margin-right: 0;
        width: 100%;
        padding: 40px 30px 20px;
        box-sizing: border-box;
        border-radius: 0;
        -moz-box-shadow: 0 0 18px rgba(68, 68, 68, .3);
        -webkit-box-shadow: 0 0 18px rgba(68, 68, 68, .3);
        box-shadow: 0 0 18px rgba(68, 68, 68, .3);
        height:530px;
    }

    .banner-form.corp {
        height:initial;
        padding: 20px 30px;
    }

    .banner-form .input {
        margin: 15px 0;
        height: 46px;
    }

    .banner-form form {
        margin-top: 14px;
    }

    .banner-form.corp .input {
        margin: 0 0 10px;
        height: 40px;
    }

    .banner-form h2 {
        font-size: 23px;
        padding: 6px 0 8px;
    }

    .banner-form.corp h2 {
        padding: 6px 0 0;
    }

    .banner-form .cont-inputs input {
        width: 48.5%;
    }

    .banner-form select {
        height:40px;
    }
    
    .line {
        position: absolute;
        width: 100%;
        height: 1.5px;
        background-color: white;
        left: 0;
        transition: all 0.3s ease;
    }

    .corp .line {
        background-color: #666666;
    }

    .line.top {
        top: 0;
    }

    .line.bottom {
        bottom: 0;
    }

    /* Toggle to X */
    .main-menu-sand.active .line.top {
        transform: rotate(45deg);
        top: 6px;
    }

    .main-menu-sand.active .line.bottom {
        transform: rotate(-45deg);
        bottom:7px;
    }
   
    .main-menu li {
        font-size: 14px;
        margin: 0 10px;
    }

    .bottom-header .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        margin-top: 0;
    }

    .main-menu.show {
        max-height: 100vh;
        height: 100vh;
    }

    .main-menu ul {
        list-style: none;
        flex-direction: column;
        padding: 0;
    }

    .main-menu ul li, header.corp .main-menu ul li {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #e1e1e1;
        border-top:0;
        width: 100%;
        text-align: center;
    }

    .main-menu ul li:hover, header.corp .main-menu ul li:hover {
        border-bottom:0;
    }
    
    .main-menu .second-nav-mobile ul {
        padding: 0;
    }

    .main-menu .second-nav-mobile ul li {
        padding: 15px 0;
        font-size: 15px;
        font-weight: 500;
        color: #555555;
    }

    .main-menu > ul > li {
        border-top: 0;
    }

    .main-menu > ul > li > a {
        color: initial;
        padding: 0;
    }

    .spacer, .sec-menu {
        display: none;
    }

    .top-header {
        justify-content: center;
    }

    .porque-protek h2 {
        font-size: 23px;
        padding: 5px 0;
    }

    .porque-protek ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .porque-protek ul li {
        margin: 20px 10px;
        width: 152px;
    }

    .porque-protek ul li::before {
        width: 50px;
    }

    .porque-protek ul li span {
        font-size: 14px;
    }

    .cont-porque-protek {
        background-color: var(--blue-main);
        display: flex;
        justify-content: center;
    }

    .cont-banner-corp {
        height: 248px;
        margin: 303px 0 20px;
    }

    .banner-corp {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: -544px;
        flex-direction: column;
    }

    .banner-corp .block {
        background-color: #d9d9d9;
        width: 90%;
        padding: 53px 5%;
    }

    .banner-corp .block h4 {
        font-size: 17px;
        margin: 14px 0;
    }

    .banner-corp .block img {
        width: 150px;
    }

    .card-segments {
        width: 92%;
        height: initial;
        margin: -5px 4px 17px;
        border-bottom: 4px solid var(--blue-main);
    }

    .card-segments h2 {
        margin-bottom: 14px;
        padding: 10px 17px;
    }

    .certificacion {
        width: 83%;
        flex-direction: column;
        border:0;
    }

    .certificacion .data {
        width: 100%;
    }

    .certificacion .data h3 {
        font-size: 19px;
    }

    .certificacion .logo {
        width: 100%;
        order: -2;
        border:0;
        justify-content: flex-start;
        padding: 8px 0 10px
    }

    .certificacion .logo img {
        height: 100px;
    }

    .card-basic.novedades-card {
        width: 92%;
        height: initial;
        margin: 15px auto;
    }

    .card-basic .cont-data-card {
        padding: 15px 28px;
        padding-bottom: 20%;
    }

    .card-basic.corp  {
        height: initial;
        margin: 13px 0;
    }

    footer .wrap-footer {
        width: 86%;
    }

    footer .wrap-footer .row1 {
        flex-direction: column;
    }

    footer .wrap-footer .row1 .soluciones .mailto {
        display:none;
    }

    footer .wrap-footer .row1 .soluciones {
        width: 100%;
    }

    footer .wrap-footer .row1 .soluciones ul {
        columns: 2;
        margin-bottom: 22px;
    }

    footer .wrap-footer .row1 .encontranos {
        width: 100%;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades {
        flex-direction: column;
    }
    
    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1, footer .wrap-footer .row1 .encontranos .wrap-ciudades .col2{
        width: 99%;
    }

    footer .wrap-footer .row1 .internacional {
        width: 100%;
    }

    footer .wrap-footer .row2  {
        position: relative;
        padding: 9px 0;
        flex-direction: column;
    }

    footer .wrap-footer .row2 .subnav {
        margin: 12px 0;
    }

    footer .wrap-footer .row2 .subnav li {
        margin: 0 6px;
        font-size: 13px;
    }

    footer .wrap-footer .row2 .social li {
        margin-left: 32px;
    }

    footer .wrap-footer .row2 .social li svg {
        width: 24px;
    }

    footer .wrap-footer .row2 .social {
        margin: 12px 0;
    }

    footer .wrap-footer .row1 ul {
        margin-bottom: 30px;
        font-size: 13px;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1 .encar ul {
        margin-bottom: 15px;
    }

    footer .wrap-footer .row2 p {
        font-size: 12px;
        order: 3;
        top: 43px;
    }

    footer .wrap-footer .row1 .soluciones .logo {
        width: 150px;
    }

    footer .wrap-footer h3 {
        font-size: 16px;
    }

    .block-image .wrap-image {
        width: 87%;
    }

    .cont-breadcrumb .breadcrumb {
        margin: 0 auto 9px auto;
        border-top: 1px solid #d8d8d8;
        padding-top: 18px;
        width: 100%;
        padding-right: 4%;
        padding-left: 4%;
        box-sizing: border-box;
    }

    .block-photo-text {
        width: 92%;
        flex-direction: column;
        margin: 46px auto;
    }

    .block-photo-text .info h2 {
        font-size: 28px;
    }

    .block-photo-text .info p {
        line-height: 1.5em;
    }

    .block-photo-text .info {
        padding: 41px 10% 39px 7%;  
        margin-right: 0;
        max-width: 100%;
    }

    .block-photo-text .image-box {
        z-index: 1;
        margin-top: -10px;
    }

    .wrapper-hero .heading .button-cyan {
        margin-right:auto;
        margin-left:auto;
    }

    .cont-cards {
        justify-content: center;
    }

    .card-step-wrapper {
        margin: 20px 0;
    }
    
    .card-basic {
        width:88%;
        margin: 13px 0;
    }

    .card-basic.steps {
        height: initial;
        border-bottom: 5px solid var(--blue-main);
    }

    .card-basic .cont-data-card {
        padding: 14px 28px;
        padding-bottom: 80px;
    }

    .card-basic h2 {
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 11px;
    }

    .cont-wide-photo-block {
        height: 702px;
        justify-content: flex-end;
        margin: 0;
        flex-direction: column;
    }

    h2.heading-h2.plus-margin-top {
        margin-top: 75px;
    }

    .cont-wide-photo-block .panoramic {
        width: 192%;
        align-self: flex-start;
    }

    .wide-photo-block .block {  
        min-height: 270px;
    }

    .wide-photo-block .block ul li {
        margin: 16px 0;
        font-size: 15px;
    }

    .planes-block .planes-wrapper .planes .plan h3 {
        padding: 20px;
    }

    .wide-photo-block {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 46%;
    }

    .casos-corpo img {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .block-photo-text.corp .info {
        padding: 30px 20px 36px 22px;
    }

    .wide-photo-block .block {
        background-color: #F5F5F5;
        width: 92%;
        padding: 20px 26px;
        box-sizing: border-box;
    }

    .wide-photo-block .block h4 {
        margin: 18px 0 2px;
    }


    .otras-soluciones {
        flex-direction: column;
        width: 100%;
    }

    .card-basic.otras-soluc {
        height: initial;
        margin: 15px 0;
        width: 88%;
    }

    .card-basic img {
        display: block;
        width: 100%;
    }

    .card-basic.otras-soluc h2 {
        padding: 30px 0;
    }

    .card-basic.otras-soluc .cont-data-card {
        text-align: center;
        padding: 0px 28px;
        padding-bottom: 51px;
    }

    .card-basic.no-button {
        height: initial;
    }

    .heading-h2 {
        font-size: 22px;
        line-height: 1.3em;
        padding: 0px 28px;
    }

    #interesado {
        flex-direction: column;
        padding: 31px 0 56px;
    }

    #interesado p {
        width: 84%;
        margin-top: 11px;
    }

     #interesado form {
        width: 84%;
    }

    #interesado .form-interesado {
        width: 100%;
    }

    #interesado .form-interesado .wrap-cols {
        width: 100%;
        margin-top: 13px;
        flex-direction: column;
    }

    #interesado .form-interesado .wrap-cols .col1,
    #interesado .form-interesado .wrap-cols .col2,
    #interesado .form-interesado .wrap-cols .col3 {
        width: 100%;
        flex-direction: column;
    }

    #interesado .form-interesado .wrap-cols .col1 > div,
    #interesado .form-interesado .wrap-cols .col2 > div,
    #interesado .form-interesado .wrap-cols .col3 > div {
        width:100%;
    }

    .wrap-cols input {
        margin: 6px 0 14px;
    }

    .breadcrumb a::after {
        margin: 0px 7px;
    }


    .analiticas ul li p {
        font-size: 15px;
        line-height: 1.5em;
        margin: 6px 0;
    }

    .analiticas {
        width: 95%;
    }

    .analiticas ul {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }


    .analiticas ul li {
        padding: 18px 18px 14px 21px;
        flex-direction: row;
        align-items: center;
    }

    .analiticas ul li img {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .cell p {
        color: white;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
    }

    .cell.a1 .icon-text-wrap {
        width: 90%;
        flex-direction: column;
        margin-top: 9px;
    }

    .cell .icon-text-wrap img {
        width:43px;
      }

    .cell.b2 {
        margin-top: 0;
    }

    .block-text {
        width: 82%;
        margin: 10px auto;
    }

    .block-text p {
        font-size: 16px;
        line-height: 1.5em;
    }

    .block-photo-text {
        width: 92%;
        flex-direction: column;
        margin: 36px auto;
    }

    .block-photo-text .info h2 {
        font-size: 29px;
    }

    .block-photo-text .info p {
        line-height: 1.6em;
    }

    .block-photo-text .info {
        padding: 41px 10% 39px 7%;  
        margin-right: 0;
        max-width: 83%;
    }

    .block-photo-text .image-box {
        z-index: 1;
        margin-top: -25px;
    }

    .block-photo-text.corp .info {
        max-width: 100%;
        box-sizing: border-box;
    }

    .content-block {
        margin: 40px 0 10px;
    }

    .content-block#novedades {
        margin: 26px 0 35px;
    }
    
    .cont-certificacion {
        padding: 42px 0 50px;
        background-color: white;
    }

    .swiper.swiper-hero  .swiper-pagination-bullet {
        background: #777777 !important;
        width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
        height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    }

    .swiper.swiper-hero .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper.swiper-hero .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px);
    }

    .porque-protek .button-cyan {
        margin: 20px 0;
    }

    .wrap-cards-square {
        flex-direction: column;
    }

    .card-square {
        width: 100%;
    }

    .block-logos .wrap-logos {
        flex-direction: column;
    }

    .block-logos .wrap-logos .col1, .block-logos .wrap-logos .col2, .block-logos .wrap-logos .col3 {
        width: 100%;
    }

    .funcionalidades-sistema .wireframe {
        display: flex;
        flex-direction: column;
    }

    .cell.b1 img {
        width: 45%;
    }

    .cell .line {
        width: 0 !important;
    }

    .cell.a5 {
        flex-direction: row;
        justify-content: center;
    }

    .cell.a5 .icon-text-wrap {
        justify-content: center;
    }

    .cell.c1 {
        flex-direction: column;
    }

    .cell.b2 .line {
        height: 0;
    }

    .funcionalidades-sistema {
        margin: 50px 0 50px;
    }

    .cell.b1 {
        margin: 8px 0;
    }

    .cont-analiticas {
        margin-bottom: 0px;
    }

    .cont-breadcrumb {
        padding: 14px 0;
        border-bottom: 1px solid #e9e9e9;
        padding-top: 0;
    }

    .bottom-header {
        position: relative;
        height: var(--bottom-header-height);
    }

    .bottom-header .menu-wrapper {
        width:100%;
    }

    #novedades .cont-cards {
        flex-direction: column;
    }

    .analisis-corpo {
        margin: 34px 0;
    }

    .analisis-corpo img {
        width: 100%;
    }

    .segmentos {
        width: initial;
        margin-top: 34px;
    }

    .casos-exito {
        margin: 70px 0 30px;
    }

    .planes-block .planes-wrapper .planes {
        flex-direction: column;
    }

    .planes-block .planes-wrapper .planes .plan {
        width: 90%;
        padding-bottom: 38px;
        margin: 10px auto;
    }

    .button-cyan a {
        text-wrap: nowrap;  
    }

    .wrapper-news {
        width: 92%;
        margin:10px auto;
        flex-direction: column;
    }

    .wrapper-news main.site-main {
        width:100%;
    }

    .wrapper-news main.site-main img {
        margin:20px 0;
    }

    .wrapper-news aside.widget-area {
        width: 96%;
        padding: 5px 42px;

    }

    .wrapper-news aside.widget-area .widget_block {
        margin:36px 0;
        color:#333333;
    }


    .wrapper-news aside.widget-area .widget_block ul {
        padding-left: 16px;
        list-style: square;
        line-height: 1.7em;
    }

    .wrapper-news aside.widget-area .widget_block ul li {
        margin:10px 0;
    }

    .wrapper-news aside.widget-area .widget_block ul li a {
        color:var(--blue-main);
        font-size:15px;
    }


    .wrapper-news aside.widget-area .wp-block-search__inside-wrapper {
        margin-top: 5px;
    }



    .wrapper-news aside.widget-area .wp-block-search__input {
        border: 1px solid #d1d1d1;
    }


    .wrapper-news .has-post-thumbnail .post-thumbnail img {
        max-width: 100%;
        height: auto;
    }

    .pagination {
        margin-top: 35px;
        margin-bottom: 30px;
    }

    .cont-cards.novedades-home .card-basic.novedades-card {
    width: 100%;
    margin: 0px 15px;
    }

    .content-area {
    width: 88%;
    padding-right: 0%;

  }

    .content-area h2 {
        font-size:28px;
        margin-top:50px;
    }

    .content-area h3 {
        font-size:24px;
    }

    .content-area h4 {
        font-size:20px;
    }

}

@media only screen and (min-width: 481px) and (max-width: 768px) {

    #hero {
        height: initial !important;
    }

    .banner-form.corp .input, .banner-form.corp select {
        margin: 0 0 10px;
        height: 40px;
    }


  .segmentos-protek .wrap-segmentos {
        width: 90%;
        padding: 34px;
        flex-direction: column;
    }

    .segmentos-protek .wrap-segmentos .hogar, .segmentos-protek .wrap-segmentos .corpo {
        width: 100%;
    }

    .segmentos-protek .wrap-segmentos .corpo {
        margin-top: 58px;
    }

    .segmentos-protek .wrap-segmentos .hogar .logo-cont, .segmentos-protek .wrap-segmentos .corpo .logo-cont {
        height: 80px;
        margin-bottom: 0px;
    }

    .segmentos-protek .wrap-segmentos .hogar p, .segmentos-protek .wrap-segmentos .corpo p {
        margin-bottom: 31px;
    }


    #back-photo-items-4 .cont-items {
        padding: 50px 0;
    }

    #back-photo-items-4 .cont-items ul li {
        box-sizing: border-box;
        width: 100%;
        padding: 26px 14%;
    }

     #back-photo-items-4 img {
        height: initial;
        width: 100%;
        object-fit: cover;
    }

    .block-photo-text .wrap-buttons .button-cyan {
        margin-top: 2px;
    }

    .interna .banner-form ,
    .banner-form.no-slider
    {
        height:initial;
    }

    .cont-breadcrumb .breadcrumb {
        margin: 11px auto 9px auto;
        border-top: 1px solid #d8d8d8;
        padding-top: 18px;
        width: 100%;
        padding-right: 4%;
        padding-left: 4%;
        box-sizing: border-box;
    }

    .line {
        position: absolute;
        width: 100%;
        height: 1.5px;
        background-color: white;
        left: 0;
        transition: all 0.3s ease;
    }

    .line.top {
        top: 0;
    }

    .line.bottom {
        bottom: 0;
    }

    .corp .line {
        background-color: #666666;
    }

    .main-menu-sand {
        width: 32px;
    }

  /* Toggle to X */
    .main-menu-sand.active .line.top {
        transform: rotate(45deg);
        top: 6px;
    }

    .main-menu-sand.active .line.bottom {
        transform: rotate(-45deg);
        bottom:7px;
    }
   
    .main-menu li {
        font-size: 14px;
        margin: 0 10px;
    }

    .bottom-header .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        margin-top: 0;
    }

    .main-menu ul {
        list-style: none;
        flex-direction: column;
        padding: 20px 0;
    }

    .main-menu ul li, header.corp .main-menu ul li {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #e1e1e1;
        border-top:0;
        width: 100%;
        text-align: center;
    }

    .main-menu ul li:hover, header.corp .main-menu ul li:hover {
        border-bottom:0;
    }

    .main-menu .second-nav-mobile ul {
        padding: 0;
    }

    .main-menu .second-nav-mobile ul li {
        padding: 15px 0;
        font-size: 15px;
        font-weight: 500;
        color: #555555;
    }

    .main-menu > ul > li {
        border-top: 0;
    }

    .main-menu > ul > li > a {
        color: initial;
        padding: 0;
    }

    .main-menu-sand {
        display: flex;
        justify-content: flex-end;
    }

    .main-menu-sand svg {
        color: white;
        width: 26px;
        height: auto;
        padding: 30px 0;
    }

    .sec-menu-sand svg {
        display: none;
    }

    .bottom-header .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        margin-top: 0;
    }

    .main-menu.show {
        max-height: 100vh;
        height: 100vh;
    }

    header.corp .bottom-header .logo {
        width: 119px;
        padding: 13px 0;
    }

    .spacer, .sec-menu {
        display: none;
    }

    .top-header {
        justify-content: center;
    }

    .bottom-header {
        position: relative;
        height: var(--bottom-header-height);
    }

    .bottom-header .logo {
        width: 150px;
    }

    .top-header, .bottom-header {
        padding: 0px 36px;
    }

    #hero {
        justify-content: flex-start;
        align-items: flex-start;
        height: 723px;
    }

     #hero.hero-slide {
        height:var(--hero-slide-height);
    }

    #hero img {
        width: 139%;
    }

    #hero .wrapper-hero-image {
        height: 286px;
    }

    #hero .wrapper-hero {
        width: 100%;
        align-items: center;
        margin-left: -100%;
        flex-direction: column;
    }

    #hero .wrapper-hero .heading {
        margin-left: 0;
        padding: 38px 0;
    }

    #hero .wrapper-hero .heading h1, #hero .wrapper-hero .heading p {
        text-align: center;
    }

    #hero .wrapper-hero .heading h1 {
        font-size: 30px;
    }

    .wrapper-hero .heading p {
        font-size: 17px;
    }

    .banner-form {
        margin-right: 0;
        width: 100%;
        padding: 20px 30px;
        box-sizing: border-box;
        border-radius: 0;
        -moz-box-shadow: 0 0 18px rgba(68, 68, 68, .3);
        -webkit-box-shadow: 0 0 18px rgba(68, 68, 68, .3);
        box-shadow: 0 0 18px rgba(68, 68, 68, .3);
    }

    .banner-form .input {
        margin: 15px 0;
        height: 46px;
    }

    .banner-form select {
        height: 46px;
    }

    .banner-form h2 {
        font-size: 23px;
        padding: 6px 0 0;
    }

    .banner-form .cont-inputs input {
        width: 49.2%;
    }
    
    .card-basic.novedades-card {
        width: 92%;
        height: initial;
        margin: 10px auto;
    }

    .card-basic.novedades-card .cont-data-card {
        padding: 15px 28px;
        padding-bottom: 80px;
    }

    .card-basic.medium {
        height: 538px;
    }    

    .card-basic, .card-basic.medium {
        height: initial;
    }

    .swiper .card-basic {
        height:initial;
    }

    .porque-protek {
        width: 100%;
    }

    .porque-protek h2 {
        font-size: 25px;
        padding: 10px 0;
    }

    .porque-protek ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .porque-protek ul li {
        margin: 20px auto;
    }

    .porque-protek ul li::before {
        width: 56px;
    }

    .cont-banner-corp {
        height: 388px;
    }

    .card-segments {
        width:294px;
        height:253px;
    }

    .banner-corp {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: -30px;
    }

    .banner-corp .block {
        background-color: #d9d9d9;
        width: 370px;
        padding: 37px 1px 35px 38px;
    }

    .banner-corp .block h4 {
        font-size: 19px;
        margin: 25px 0;
    }

    .certificacion {
        width: 88%;
    }

    .certificacion .data h3 {
        font-size: 18px;
    }

    .certificacion .logo img {
        height: 83px;
    }

    .certificacion .logo {
        width: 50%;
        padding: 28px 0 49px;
    }

    .certificacion .data {
        width: 49%;
        padding-right: 40px;
        padding-bottom: 30px;
    }

    footer .wrap-footer {
        width: 90%;
    }

    footer .wrap-footer .row1 {
        flex-direction: column;
    }

    footer .wrap-footer .row1 .soluciones .mailto {
        display:none;
    }

    footer .wrap-footer .row1 .soluciones {
        width: 100%;
    }

    footer .wrap-footer .row1 .soluciones ul {
        columns: 2;
        margin-bottom: 22px;
    }

    footer .wrap-footer .row1 .encontranos {
        width: 100%;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades {
        flex-direction: row;
    }
    
    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1, footer .wrap-footer .row1 .encontranos .wrap-ciudades .col2{
        width: 48%;
    }

    footer .wrap-footer .row1 .internacional {
        width: 100%;
    }

    footer .wrap-footer .row2  {
        position: relative;
        padding: 9px 0;
        flex-direction: column;
    }

    footer .wrap-footer .row2 .subnav {
        margin: 12px 0;
    }

    footer .wrap-footer .row2 .subnav li {
        margin: 0 6px;
        font-size: 13px;
    }

    footer .wrap-footer .row2 .social li {
        margin-left: 32px;
    }

    footer .wrap-footer .row2 .social li svg {
        width: 24px;
    }

    footer .wrap-footer .row2 .social {
        margin: 12px 0;
    }

    footer .wrap-footer .row1 ul {
        margin-bottom: 30px;
        font-size: 13px;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1 .encar ul {
        margin-bottom: 15px;
    }

    footer .wrap-footer .row2 p {
        font-size: 12px;
        order: 3;
        top: 43px;
    }

    footer .wrap-footer .row1 .soluciones .logo {
        width: 150px;
    }

    footer .wrap-footer h3 {
        font-size: 16px;
    }

    .heading-h2 {
        padding: 9px 12px;
        font-size:24px;
    }

    .cont-breadcrumb .breadcrumb {
        margin: 7px auto;
        width: 94%;
    }

    .block-photo-text {
        width: 92%;
        flex-direction: column;
        margin: 56px auto;
    }

    .block-photo-text .info h2 {
        font-size: 32px;
    }

    .block-photo-text .info p {
        line-height: 1.6em;
    }

    .block-photo-text .info {
        padding: 41px 10% 39px 7%;  
        margin-right: 0;
        max-width: 75%;
    }

    .block-photo-text .image-box {
        z-index: 1;
        margin-top: -25px;
    }

    .wrapper-hero .heading .button-cyan {
        margin-right:auto;
        margin-left:auto;
    }

    .cont-cards {
        justify-content: center;
    }

    .card-step-wrapper {
        margin: 20px 0;
    }
    
    .card-basic {
        width:80%;
        margin: 20px 20px;
    }

    .card-basic.steps {
        height: initial;
        border-bottom: 5px solid var(--blue-main);
    }

    .card-basic .cont-data-card {
        padding: 14px 28px;
        padding-bottom: 70px;
    }

    .card-basic h2 {
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 11px;
    }

    .wide-photo-block .block {
        background-color: #F5F5F5;
        width: 66%;
        padding: 18px 51px 26px 50px;
    }

    .planes-block .planes-wrapper {
        width: 98%;
    }

    .planes-block .planes-wrapper .planes .plan ul li {
        padding: 11px 5px 11px 10px;
    }

    .otras-soluciones {
        flex-direction: column;
        width: 100%;
    }

    .card-basic.otras-soluc {
        height: initial;
        margin: 15px 0;
        width: 88%;
    }

    .card-basic img {
        display: block;
        width: 100%;
    }

    .card-basic.otras-soluc h2 {
        padding: 30px 0;
    }

    .card-basic.otras-soluc .cont-data-card {
        text-align: center;
        padding: 0px 28px;
        padding-bottom: 51px;
    }

    .card-basic.no-button {
        height: initial;
    }

    .block-text {
        width: 78%;
        margin: 10px auto;
    }

    .block-text p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .block-photo-text.corp .info {
        max-width: 75%;
    }

    .analiticas ul li p {
        font-size: 15px;
        line-height: 1.5em;
        margin: 6px 0;
    }

    .analiticas {
        width: 95%;
    }

    .analiticas ul {
        width: 100%;
    }


    .analiticas ul li {
        padding: 29px 18px 24px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .analiticas ul li img {
        margin-bottom: 13px;
        margin-right:0;
    }


    #interesado {
        flex-direction: column;
        padding: 31px 0 56px;
    }

    #interesado p {
        width: 84%;
        margin-top: 11px;
    }

    #interesado form {
        width: 84%;
    }

    #interesado .form-interesado {
        width: 100%;
    }

    #interesado .form-interesado .wrap-cols {
        width: 100%;
        margin-top: 13px;
        flex-direction: column;
    }

    #interesado .form-interesado .wrap-cols .col1, #interesado .form-interesado .wrap-cols .col2 {
        width: 100%;
    }

    .wrap-cols input {
        margin: 6px 0 14px;
    }

    .funcionalidades-sistema {
        margin: 50px 0 12px;
    }

    .funcionalidades-sistema .wireframe {
        width: 98%;
    }
    
    .cell p {
        color: white;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
    }

    .cell.a1 .icon-text-wrap {
        width: 90%;
        flex-direction: column;
        margin-top: 9px;
    }

    .cell .icon-text-wrap img {
        width:43px;
    }

    .cell.b2 {
        margin-top: -71px;
    }

    .card-basic.no-button {
        width: 90%;
        margin: 12px 0;
    }

    .content-block {
        margin: 60px 0 0;
    } 

    .cont-wide-photo-block {
        height: initial;
        justify-content: flex-end;
        margin: 60px 0 0;
        flex-direction: column;
    }

    h2.heading-h2.plus-margin-top {
        margin-top: 75px;
    }

    .cont-wide-photo-block .panoramic {
        width: 180%;
        align-self: flex-start;
    }

    .wide-photo-block .block {  
        min-height: 270px;
    }

    .wide-photo-block .block ul li {
        margin: 16px 0;
    }

    .wide-photo-block {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: -250px;
    }

}

@media only screen and (min-width: 769px) and (max-width: 959px) {

     #hero {
        height: initial !important;
    }


    #back-photo-items-4 .cont-items {
        padding: 50px 0;
    }

     #back-photo-items-4 .cont-items ul li {
        box-sizing: border-box;
        width: 100%;
        padding: 26px 14%;
    }

     #back-photo-items-4 img {
        height: initial;
        width: 100%;
        object-fit: cover;
    }

    .line {
        position: absolute;
        width: 100%;
        height: 1.5px;
        background-color: white;
        left: 0;
        transition: all 0.3s ease;
    }

    .corp .line {
        background-color: #666666;
    }

    .line.top {
        top: 0;
    }

    .line.bottom {
        bottom: 0;
    }

    .main-menu-sand {
        width: 32px;
    }

    .second-nav-mobile {
        display: block;
    }

    .spacer, .sec-menu {
        display: none;
    }

    .top-header {
        justify-content: center;
    }

    .bottom-header .logo {
        width: 150px;
    }

  /* Toggle to X */
    .main-menu-sand.active .line.top {
        transform: rotate(45deg);
        top: 6px;
    }

    .main-menu-sand.active .line.bottom {
        transform: rotate(-45deg);
        bottom:7px;
    }
   
    .main-menu li {
        font-size: 14px;
        margin: 0 10px;
    }

    .bottom-header .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        margin-top: 0;
    }

    .main-menu ul {
        list-style: none;
        flex-direction: column;
        padding: 20px 0;
    }

     .main-menu ul li {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #e1e1e1;
        width: 100%;
        text-align: center;
    }

    .main-menu .second-nav-mobile ul {
        padding: 0;
    }

    .main-menu .second-nav-mobile ul li {
        padding: 15px 0;
        font-size: 15px;
        font-weight: 500;
        color: #555555;
    }

    .main-menu > ul > li {
        border-top: 0;
    }

    .main-menu > ul > li > a {
        color: initial;
        padding: 0;
    }

    .main-menu-sand {
        display: flex;
        justify-content: flex-end;
    }

    .main-menu-sand svg {
        color: white;
        width: 26px;
        height: auto;
        padding: 30px 0;
    }

    .sec-menu-sand svg {
        display: none;
    }

    .bottom-header .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        margin-top: 0;
    }

    .bottom-header {
        position: relative;
        height: var(--bottom-header-height);
    }

    .main-menu.show {
        max-height: 100vh;
        height: 100vh;
    }

    header.corp .bottom-header .logo {
        width: 140px;
        padding: 13px 0;
    }  

    #hero {
        justify-content: flex-start;
        align-items: flex-start;
        height: 710px;
    }

    #hero img {
        width: 139%;  
    }

    #hero .wrapper-hero-image {
        height: 286px;
    }

    #hero .wrapper-hero {
        width: 100%;
        align-items: center;
        margin-left: -100%;
        flex-direction: column;
    }

    #hero .wrapper-hero .heading {
        margin-left: 0;
        padding: 38px 0;
    }

    #hero .wrapper-hero .heading h1, #hero .wrapper-hero .heading p {
        text-align: center;
    }

    #hero .wrapper-hero .heading h1 {
        font-size: 32px;
    }

    .wrapper-hero .heading p {
        font-size: 17px;
    }

    .banner-form {
        margin-right: 0;
        width: 100%;
        padding: 20px 30px;
        box-sizing: border-box;
        border-radius: 0;
        -moz-box-shadow: 0 0 18px rgba(68, 68, 68, .3);
        -webkit-box-shadow: 0 0 18px rgba(68, 68, 68, .3);
        box-shadow: 0 0 18px rgba(68, 68, 68, .3);
    }

    .banner-form .input {
        margin: 10px 0;
        height: 46px;
    }

    .banner-form select {
        height: 46px;
    }

    .banner-form h2 {
        font-size: 23px;
        padding: 6px 0 0;
    }

    .banner-form .cont-inputs input {
        width: 49.4%;
    }

    .porque-protek ul li {
        margin: 34px 27%;
        width: 50%;
    }

    .porque-protek h2 {
        font-size: 26px;
        padding: 22px 0 0;
    }

    .porque-protek .button-cyan {
        margin: 0 0 18px;
    }

    .card-segments {
        width:294px;
        height:253px;
    }

    .content-block#novedades {
        margin: 12px 0 70px;
    }

    #novedades .cont-cards {
        margin: 0 auto;
    }

    .card-basic {
        margin: 16px 0;
    }

    .card-basic.novedades-card {
        width: 31%;
        height: 340px;
        margin: 0 10px;
        min-height: 340px;
    }

    .certificacion {
        width: 88%;
    }

    .certificacion .data {
        width: 60%;
        Padding-right: 30px;
    }

    .certificacion .data h3 {
        font-size: 21px;
    }

    .certificacion .logo {
        width: 35%;
        display: flex;
        justify-content: flex-end;
        border-left: 1px solid #cccccc;
        padding: 30px 0 59px;
    }

    .certificacion .logo img {
        height: 100px;
    }

    .banner-corp {
        width: 100%;
    }

    .banner-corp .block {
        background-color: #d9d9d9;
        width: 370px;
        padding: 57px 11px 55px 42px;
    }

    .banner-corp .block h4 {
        font-size: 21px;
    }

    footer .wrap-footer {
        width: 90%;
    }

    footer .wrap-footer .row1 .soluciones {
        width: 19%;
    }

    footer .wrap-footer .row1 .encontranos {
        width: 32%;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades {
        flex-direction: column;
    }
    
    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1, footer .wrap-footer .row1 .encontranos .wrap-ciudades .col2{
        width: 100%;
    }

    footer .wrap-footer .row1 .internacional {
        width: 32%;
    }

    footer .wrap-footer .row2  {
        position: relative;
        padding: 9px 0;
    }

    footer .wrap-footer .row2 .subnav li {
        margin: 0 6px;
        font-size: 13px;
    }

    footer .wrap-footer .row2 .social li {
        margin-left: 19px;
    }

    footer .wrap-footer .row1 ul {
        margin-bottom: 30px;
        font-size: 13px;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1 .encar ul {
        margin-bottom: 15px;
    }

    footer .wrap-footer .row2 p {
        font-size: 12px;
        position: absolute;
        top: 43px;
    }

    footer .wrap-footer .row1 .soluciones .logo {
        width: 150px;
    }

    footer .wrap-footer h3 {
        font-size: 16px;
    }

    .heading-h2 {
        padding: 9px 40px;
    }

    .cont-breadcrumb .breadcrumb {
        margin: 11px auto 9px auto;
        border-top: 1px solid #d8d8d8;
        padding-top: 18px;
        width: 100%;
        padding-right: 4%;
        padding-left: 4%;
    }

    .block-photo-text {
        width: 92%;
    }

    .block-photo-text .info h2 {
        font-size: 32px;
    }

    .block-photo-text .info p {
        line-height: 1.6em;
    }

    .block-photo-text .info {
        padding: 50px 8% 46px 5%;
    }

    .wrapper-hero .heading .button-cyan {
        margin-right:auto;
        margin-left:auto;
    }

    .cont-cards {
        justify-content: space-between;
        width:92%;
        margin-bottom: 37px;
    }

    .card-step-wrapper {
        margin: 20px 0;
        width: 50%;
    }

    .swiper-slide .card-step-wrapper {
        width: initial;
    }
    
    .card-basic {
        width:48%;
    }

    .card-basic.steps {
        height: initial;
        border-bottom: 5px solid var(--blue-main);
    }

    .card-basic .cont-data-card {
        padding: 14px 22px;
        padding-bottom: 20px;
    }

    .card-basic h2 {
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 11px;
    }

    .card-basic.novedades-card a {
        font-size: 17px;
    }

    .wide-photo-block .block {
        background-color: #F5F5F5;
        width: 380px;
        padding: 18px 51px 26px 50px;
    }

    .planes-block .planes-wrapper {
        width: 98%;
    }

    .planes-block .planes-wrapper .planes .plan ul li {
        padding: 11px 5px 11px 10px;
    }

    #interesado form {
        width: 90%;
    }

    #interesado .form-interesado {
        width: 100%;
    }

    .otras-soluciones {
        display: grid;
        width: 85%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-row-gap: 32px;
    }

    .card-basic.otras-soluc {
        height: initial;
        margin: 0 auto;
        width: 85%;
    }

    .card-basic.otras-soluc  .cont-data-card {
        padding: 44px 28px;
        padding-bottom: 20px;
    }

    .card-basic.otras-soluc  h2 {
        font-size: 18px;
        margin-bottom: 62px;
        margin-top: -9px;
    }

    .card-basic.no-button {
        width: 32%;
        height:600px;
    }

    .block-text {
        width: 76%;
        margin: 10px auto;
    }

    .block-text p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .analiticas {
        width: 92%;
    }

    .analiticas ul {
        width: 100%;
    }

    .analiticas ul li {
        padding: 29px 36px 27px 30px;
    }

    .analiticas ul li p {
        font-size: 15px;
        line-height: 1.5em;
        margin: 6px 0;
    }

    .cell p {
        color: white;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }

    .cell .icon-text-wrap img {
        width:53px;
      }

    .cell.b2 {
        margin-top: -71px;
    }
    
    .block-photo-text.portrait .info {
        padding: 73px 7% 69px 18%;
    }

    .content-block {
        margin: 85px 0 40px;
    }

    .bottom-header {
        height:var(--bottom-header-height);
    }

    .cont-wide-photo-block {
        height: initial;
        justify-content: flex-end;
        margin: 60px 0 0;
        flex-direction: column;
    }

    h2.heading-h2.plus-margin-top {
        margin-top: 75px;
    }

    .cont-wide-photo-block .panoramic {
        width: 185%;
        align-self: flex-start;
    }

    .wide-photo-block .block {  
        background-color: #F5F5F5;
        width: 380px;
        padding: 18px 54px 26px 104px;
    }

    .wide-photo-block .block ul li {
        margin: 16px 0;
    }

    .wide-photo-block {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: -329px;
    }

}


@media only screen and (min-width: 960px) and (max-width: 1124px) {

     .line {
        position: absolute;
        width: 100%;
        height: 1.5px;
        background-color: white;
        left: 0;
        transition: all 0.3s ease;
    }

    .corp .line {
        background-color: #666666;
    }

    .line.top {
        top: 0;
    }

    .line.bottom {
        bottom: 0;
    }

    header.comercio .main-menu li {
        margin: 0px 10px
    }

    .heading-h2 {
        padding: 9px 0;
        max-width: 89%;
    }

    .card-segments {
        width:320px;
        height:270px;
    }

    .cont-cards {
        margin: 20px auto;
        width: 90%;
    }

 .content-block#novedades {
        margin: 12px 0 70px;
    }

    #novedades .cont-cards {
        margin: 0 auto;
    }

    .card-basic.novedades-card {
        width: 31%;
        height: 375px;
        margin: 0 10px;
        min-height: 375px;
    }

    .card-basic.novedades-card a {
        font-size: 18px;
    }

    .top-header, .bottom-header {
        padding: 0px 36px;
    }
   
    .main-menu li {
        font-size: 14px;
        margin: 0 10px;
    }

    .main-menu-sand {
        display: none;
    }

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

    header.corp .bottom-header .logo {
        width: 136px;
    }

    .second-nav-mobile {
        display: 62px;
    }


      /* Toggle to X */
    .main-menu-sand.active .line.top {
        transform: rotate(45deg);
        top: 6px;
    }

    .main-menu-sand.active .line.bottom {
        transform: rotate(-45deg);
        bottom:7px;
    }
   
    .main-menu li {
        font-size: 14px;
        margin: 0 10px;
    }


    .bottom-header .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        margin-top: 0;
    }

    .main-menu ul {
        list-style: none;
        flex-direction: column;
        padding: 20px 0;
    }

     .main-menu ul li {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #e1e1e1;
        width: 100%;
        text-align: center;
    }

    .main-menu .second-nav-mobile ul {
        padding: 0;
    }

    .main-menu .second-nav-mobile ul li {
        padding: 15px 0;
        font-size: 15px;
        font-weight: 500;
        color: #555555;
    }

    .main-menu > ul > li {
        border-top: 0;
    }

    .main-menu > ul > li > a {
        color: initial;
        padding: 0;
    }

    .main-menu-sand {
        display: flex;
        justify-content: flex-end;
        width:32px;
    }

    .main-menu-sand svg {
        color: white;
        width: 26px;
        height: auto;
        padding: 30px 0;
    }

    .sec-menu-sand svg {
        display: none;
    }

    .bottom-header .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        margin-top: 0;
    }

    .bottom-header {
        position: relative;
        height: 62px;
    }

    .main-menu.show {
        max-height: 100vh;
        height: 100vh;
    }

    #hero.hero-slide  {
        height: var(--hero-slide-height);
    }

    #hero .wrapper-hero .heading p {
        font-size: 17px;
    }

    #hero .wrapper-hero .heading {
        margin-left: 4%;
    }

    #hero .wrapper-hero .heading h1 {
        font-size: 40px;
    }

    .banner-form {
        margin-right: 5%;
    }

    .banner-form .input {
        margin: 7px 0;
        height:39px;
    }

    .banner-form h2 {
        font-size: 23px;
        padding: 6px 0 0;
    }

    .porque-protek ul li {
        width: 50%;
        margin: 30px 80px;
    }

    .porque-protek ul li::before {
        width: 57px;
    }

    .banner-corp {
        width: 100%;
    }

    .banner-form.corp {
        padding: 13px 16px;
    }

    .banner-form.corp .input {
        margin: 6px 0;
    }

    .banner-form.corp .cont-inputs input {
        margin-top: 0; 
    }

    .banner-form.corp h2 {
        font-size: 22px;
        padding: 6px 0 0;
    }

    .button-banner-form {
        margin: 15px 0 0;
    }

    .banner-form.corp .cont-inputs input {
        width: 49%;
    }

    .banner-corp .block {
        width: 392px;
        padding: 65px 14px 65px 55px;
    }

    .banner-corp .block h4 {
        font-size: 22px;
    }

    .banner-corp .block img {
        width:175px;
    }

    .certificacion {
        width: 88%;
    }

    .certificacion .data h3 {
        font-size: 21px;
    }

    .certificacion .logo img {
        height: 105px;
    }

    footer .wrap-footer {
        width: 90%;
    }

    footer .wrap-footer .row1 .soluciones {
        width: 19%;
    }

    footer .wrap-footer .row1 .encontranos {
        width: 32%;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades {
        flex-direction: column;
    }
    
    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1, footer .wrap-footer .row1 .encontranos .wrap-ciudades .col2{
        width: 100%;
    }

    footer .wrap-footer .row1 .internacional {
        width: 32%;
    }

    footer .wrap-footer .row2 .subnav li {
        margin: 0 10px;
        font-size: 13px;
    }

    footer .wrap-footer .row2 .social li {
        margin-left: 19px;
    }

    footer .wrap-footer .row1 ul {
        margin-bottom: 30px;
    }

    footer .wrap-footer .row1 .encontranos .wrap-ciudades .col1 .encar ul {
        margin-bottom: 15px;
    }

    .block-photo-text {
        width: 92%;
    }

    .block-photo-text .info h2 {
        font-size: 34px;
    }

    .block-photo-text .info p {
        line-height: 1.65em;
    }

    .block-photo-text .info {
        padding: 56px 8% 50px 5%;
    }

  .cont-cards {
        justify-content: space-between;
        width:92%;
        margin-bottom: 37px;
    }

    .card-step-wrapper {
        margin: 20px 0;
        width: 50%;
    }
    
    .card-basic {
        width:48%;
        margin:16px 0;
    }

    .card-step-wrapper {
        margin: 20px 0;
        width: 50%;
    }

    .swiper-slide .card-step-wrapper {
        width: initial;
    }

    .card-basic.steps {
        height: initial;
        border-bottom: 5px solid var(--blue-main);
    }

    .card-basic .cont-data-card {
        padding: 14px 28px;
        padding-bottom: 20px;
    }

    .card-basic h2 {
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 11px;
    }

    .wide-photo-block .block {
        background-color: #F5F5F5;
        width: 380px;
        padding: 18px 51px 26px 50px;
    }

    .planes-block .planes-wrapper {
        width: 92%;
    }

    .otras-soluciones {
        display: grid;
        width: 85%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-row-gap: 32px;
    }

    .card-basic.otras-soluc {
        height: initial;
        margin: 0 auto;
        width: 85%;
    }

    .card-basic.otras-soluc  .cont-data-card {
        padding: 44px 28px;
        padding-bottom: 20px;
    }

    .card-basic.otras-soluc  h2 {
        font-size: 18px;
        margin-bottom: 62px;
        margin-top: -9px;
    }

    .card-basic.no-button {
        height: 554px;
        width: 30%;
    }

    .analiticas {
        width: 87%;
    }

    .analiticas ul {
        width: 100%;
    }

    .analiticas ul li {
        padding: 29px 36px 27px 30px;
    }

    .analiticas ul li p {
        font-size: 15px;
        line-height: 1.5em;
        margin: 6px 0;
    }

    .cell p {
        color: white;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }

    .cell .icon-text-wrap img {
        width:56px;
      }

    .spacer {
        width:20%;
    }

    .sec-menu {
        width:58%;
        display: flex;
    }

    .sec-menu li {
        font-size: 13px;
        margin: 0px 10px;
    }

    .cont-wide-photo-block {
        height: initial;
    }
    

}


@media only screen and (min-width: 1125px) and (max-width: 1367px) {

    header.comercio .main-menu li {
        margin: 0px 9px
    }

    header.comercio .main-menu li {
        font-size: 14px;
    }

    .main-menu-sand {
        display: none;
    }

    .second-nav-mobile {
        display: var(--second-nav-mobile);
    }

    .certificacion {
        width: 88%;
    }

    footer .wrap-footer {
        width: 90%;
    }

    .cont-cards {
        margin: 2px auto;
        width: 97%;
    }

    .card-basic {
        width: 24%;
        margin: 0;
    }

    .card-step-wrapper {
        width: 24%;
    }

    .swiper-slide .card-step-wrapper {
        width: initial;
    }

    .card-basic.steps {
        width:100%;
    }

    .card-basic.novedades-card {
        width: 30%;
    }

    .banner-form.corp {
        padding: 20px;
    }

    .banner-form.corp .input {
        margin: 10px 0;
    }

    .banner-form.corp .cont-inputs input {
        margin-top: 0; 
    }

    #hero .wrapper-hero .heading h1 {
        font-size: 46px;
    }

    .block-photo-text {
        width: 92%;
    }

    .wide-photo-block .block {
        background-color: #F5F5F5;
        width: 380px;
        padding: 20px 55px 30px 56px;
    }

    .otras-soluciones {
        justify-content: space-between;
        width: 95%;
    }

    .card-basic.otras-soluc {
        height: 304px;
        width: 24%;
        margin: 0px 8px;
    }

    .card-basic.otras-soluc .cont-data-card {
        padding: 23px 24px;
    }

    .card-basic.no-button {
        width: 30%;
    }

    .heading-h2 {
        max-width: 60%;
    }

    #hero.hero-slide {
        height: var(--hero-slide-height);
    }

    #hero.hero-slide picture img {
       width: var(--hero-slide-image-width);
    }

    .spacer {
        width:26%;
    }

    .sec-menu {
        width:48%;
        display: flex;
    }

    .sec-menu li {
        font-size: 13px;
        margin: 0 10px;
    }



}

 @media only screen and (min-width: 1368px) and (max-width: 1511px) {
    

        header.comercio .main-menu li {
        margin: 0px 14px
        }

        .sec-menu {
            display:flex;
        }
    
        .sec-menu-sand {
            display:none;
        }

        .main-menu-sand {
            display: none;
        }

        #hero .wrapper-hero .heading h1 {
            font-size: 46px;
        }

        .block-photo-text {
            width: 92%;
        }

        .wide-photo-block .block {
            background-color: #F5F5F5;
            width: 380px;
            padding: 20px 55px 30px 56px;
        }

        .otras-soluciones {
            justify-content: space-between;
            width: 95%;
        }

        .card-basic.otras-soluc {
            height: 363px;
            width: 24%;
            margin: 0px 8px;
        }

        .card-basic.otras-soluc.comercio {
            width: 18%;
        }

        .card-basic.otras-soluc .cont-data-card {
            padding: 23px 24px;
        }

        h2.heading-h2 {
            max-width: 60%;
            margin-left:auto;
            margin-right:auto;
        }
        
        #hero.hero-slide {
            height:var(--hero-slide-height);
        }

        #hero.hero-slide picture img {
            width: var(--hero-slide-image-width);
        }

        .second-nav-mobile {
            display: var(--second-nav-mobile);
        }
    
    }



@media only screen and (min-width: 1512px) {

     .sec-menu {
            display:flex;
        }


    .bottom-header, .top-header {
        max-width: 1512px;
        margin: 0 auto;
    }

    #cont-hero {
        max-width: 1512px;
        margin: 0 auto;
    }

    .main-menu-sand {
        display: none;
    }

    h2.heading-h2 {
        max-width: 49%;
        margin-left:auto;
        margin-right:auto;
    }

     #hero.hero-slide {
            height:var(--hero-slide-height);
        }

     #hero.hero-slide picture img {
            width: var(--hero-slide-image-width);
     }

     .second-nav-mobile {
        display: var(--second-nav-mobile);
    }
  
}