@import './constants.css';

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: var(--font-1);
  
}

a {
  text-decoration: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* GLOBAL SETTINGS */


body {
  /*font-family: var(--font-1);  */
  font-family: 'Quicksand', sans-serif;
  color: var(--black);
  padding-top: 98px;
}

h1,
h2,
h3 {
  font-weight: 600;
}

.text-blue {
  color: var(--blue);
}

.text-xs {
  font-size: var(--text-xs);
}

.text-s {
  font-size: var(--text-s);
}

.text-rm {
  font-size: var(--text-rm);
}

.text-m {
  font-size: var(--text-m);
}

.text-ml {
  font-size: var(--text-ml);
}

.text-l {
  font-size: var(--text-l);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-xxl {
  font-size: var(--text-xxl);
}

.text-xxxl {
  font-size: var(--text-xxxl);
}

.text-xxxxl {
  font-size: var(--text-xxxxl);
}

.text-400 {
  font-weight: var(--text-400);
}

.text-500 {
  font-weight: var(--text-500);
}

.text-600 {
  font-weight: var(--text-600);
}

.bg-gold {
  background-color: var(--gold) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.bg-magenta {
  background-color: var(--magenta) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.bg-gradient,
.bg-gradient-1 {
  background: var(--gradient-1) !important;
  color: #fff;
}

.bg-gradient-2 {
  background: #F4F4F4 !important;
  color: #fff;
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

button.btn,
p.sbscrbr-submit-block input,
span.btn {
  border-radius: .5rem;
  border: none;
  padding: .25rem 2rem;
  font-weight: 500;
  margin-left: 2px;
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 0 0 2px var(--blue);
  transition: all .2s ease;
}

button.btn:hover,
span.btn:hover,
form.dplr_form .input-buttom button:hover {
  color: #fff;
  background: black;
}

button.btn.btn-outline {
  color: var(--blue);
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)),
    linear-gradient(101deg, #DFCFA8, #0092CB);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
}

button.btn.btn-outline:hover {
  color: #fff;
  background-color: var(--blue);
  box-shadow: none;
}

button.btn.btn-outline {
  color: var(--blue);
  border-radius: .5rem;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)),
    linear-gradient(101deg, #DFCFA8, #0092CB);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
}

.cta {
  border-radius: .5rem;
  text-decoration: none;
  transition: all .2s ease-out;
}

a.cta-1 {
  background: var(--gradient-red);
  color: red;
  transition: all .2s ease;
  padding: .5rem 1rem;
}

a.cta-1:hover {
  background: var(--gradient-1);
  color: #fff !important;
}

.img-rounded {
  border-radius: 2rem;
  box-shadow: var(--box-shadow-3);
}


/* HEADER */



@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}


.header-main {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1.5rem 0;
  z-index: 100;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow-1);
  box-shadow: var(--box-shadow-1);
  transition: all .2s ease-out;
}

.header-main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-main.sticky {
  padding: .75rem 0;
}

.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17%;
  flex: 0 0 17%;
}

.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-main .logo img,
.header-main .logo svg {
  transition: all .2s ease-out;
  width: 160px;
}

.header-main.sticky .logo img,
.header-main.sticky .logo svg {
  width: 120px;
}

.header-main .menu>ul>li {
  display: inline-block;
  line-height: 3.125rem;
  margin-left: 1.5rem;
}

.header-main .menu>ul>li>a {
  position: relative;
  font-family: inherit;
  font-size: var(--text-rm);
  font-weight: 500;
  line-height: 1.25;
  border: none;
  outline: none;
  color: var(--black);
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header-main .menu>ul>li>a.cta {
  color: #fff;
}

.header-main .menu>ul>li .sub-menu {
  position: absolute;
  width: 100%;

  height: auto;
  margin-top: 1.75rem;
  padding: 3rem 2rem 1rem 2rem;
  z-index: 109;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 4px 2px -2px gray;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-main .menu>ul>li .sub-menu:before {
  content: "";
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 6rem);
  z-index: -1;
}

.header-main .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

.header-main .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: var(--black);
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


.header-main .menu>ul>li .sub-menu.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header-main .menu>ul>li .sub-menu.menu-mega>.list-item>ul>li {
  display: block;
  line-height: 1;
}

.header-main .menu>ul>li .sub-menu.menu-mega>.list-item>ul>li>a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  color: var(--black);
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header-main .menu>ul>li .sub-menu.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 1.25rem 1rem;
}

.header-main .menu>ul>li .sub-menu.menu-column-4>.list-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  padding: 0 1rem;
}

.header-main .menu>ul>li .sub-menu.menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header-main .menu>ul>li .sub-menu.menu-column-4>.list-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-main .menu>ul>li a {
  transition: all .2s ease-out;

}

.header-main .menu>ul>li a:hover {
  color: var(--gold);
}

.header-item-right a:hover,
.header-main .menu>ul>li:hover>a {
  color: var(--gold);
}

.header-main .menu-mobile-header,
.header-main .menu-mobile-toggle {
  display: none;
}

.header-main ul.menu-section {
  margin-bottom: 0;
}

.sub-menu-nav ul {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  padding: 0;
}

.sub-menu p.title {
  line-height: 1;
}

.sub-menu-nav ul li a {
  color: var(--black);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sub-menu .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sub-menu .container .content {
  width: 885px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sub-menu .container .content .misc {
  width: 100%;
  position: relative;
}

.sub-menu .container .content .misc hr {
  width: calc(100% - 20px);
  height: 2px;
  border: none;
  background-color: black;
  opacity: 1;
}

.sub-menu .container .content .misc img {
  position: absolute;
  right: 0;
  top: 3px;

}

.sub-menu-nav.sub-menu-software li a img {
  max-width: 100px;
}

.lang-selector {
  position: relative;
  color: var(--blue);
}

.lang-dropdown {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  border-radius: 1rem;
  border: solid 1px #f4f4f4;
  list-style: none;
  padding: 1rem 2rem;
}

.lang-selector:hover .lang-dropdown {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

.lang-dropdown li {
  line-height: 2;
}

.lang-dropdown li a {
  color: var(--black);
}

.lang-dropdown li a:hover {
  color: var(--gol4);
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}


.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

body.nav-open .hamburger--squeeze .hamburger-inner,
.menu-mobile-close .hamburger--squeeze .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.nav-open .hamburger--squeeze .hamburger-inner::before,
.menu-mobile-close .hamburger--squeeze .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

body.nav-open .hamburger--squeeze .hamburger-inner::after,
.menu-mobile-close .hamburger--squeeze .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/* HOME */

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

header.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

header.section-header h2 {
  font-weight: 600;
  font-size: var(--text-xxl);
}


header.section-header p {
  max-width: 600px;
  font-size: var(--text-rm);
}

header.section-header .fecha {
  color: var(--blue);
  border-bottom: solid 2px var(--gold);
  padding-bottom: .5rem;
}


#home-flex .boxes {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5rem;
  position: relative;
  margin-top: 9rem;
  margin-bottom: 6rem;
}

#home-flex .box {
  width: calc(100% / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3rem;
  border-radius: 2rem;
  background: #d91c5c;
 /* background: background: linear-gradient(264deg, rgba(217,28,92,1) 2%, rgba(77,90,212,1) 76%);
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;*/
}
.box-2{background: #d91c5c;}

.box-1{background: #d91c5c;}

.box-3{background: #d91c5c;}



.box .icon {
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  max-width: 60%;
  max-height: 60%;
}



#home-flex .box.box-2:after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/circuloidero1.svg);
}

#home-flex .misc-1 {
  position: absolute;
  right: 0;
  top: -5%;
}

section.separator {
  height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--gradient-1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator .container {
  z-index: 20;
  position: relative;
}


.separator:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
  pointer-events: none;
  opacity: .25;
}


.swiperSeparator,
.swiperSeparator .swiper-slide {
  height: 100%;
}


.swiperSeparator .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.swiperSeparator .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: solid 2px var(--gold);
  background: none;
  opacity: 1;
}

.swiperSeparator .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--gold);
}

#home-main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  background-color: rgba(255, 255, 255, 0.666);
}

#home-main .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#home-main h1 {
  font-size: auto;
  font-weight: 600;
  line-height: 1;
}

#home-features .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#home-features .item .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-features .item h4 {
  font-size: var(--text-m);
}

#home-features .icon img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.list-1 ul {
  list-style: none;
  padding: 0;
}

.list-1 ul li {
  position: relative;
  font-size: var(--text-m);
  padding-left: 3.5rem;
  margin-bottom: 3.5rem;
}

.list-1 ul li:before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  width: 35px;
  height: 35px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/icon-checkidero.svg);

}

/* COMPONENTES */
.item-icon-1 {
  margin-bottom: 2rem;
}

.item-icon-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.item-icon-1 .icon {
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow-3);
  min-width: 70px;
  min-height: 70px;
}

.item-icon-1 .titulo {
  font-size: var(--text-l);
  color: var(--blue);
  font-weight: 600;
  margin-bottom: .5rem;
}

.item-icon-1 .texto {
  max-width: 360px;
  font-size: 1.1rem;
}

/* FOOTER */
#footer-main {
  z-index: 10;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  box-shadow: var(--box-shadow-1);
}

#footer-main::before {
  content: "";
  position: absolute;
  height: 10px;
  background-color: var(--blue);
  width: 70%;
  left: 15%;
  top: -5px;
}

#footer-main .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

#footer-main .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
}

#footer-main a {
  color: var(--black);
}

#footer-main hr {

  opacity: 1;
  background-color: var(--gold);
  height: 2px;
  border: none;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

#footer-main .countries,
#footer-main .social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-media a svg path {
  transition: all .2s ease-out;
}

.social-media a:hover svg path {
  fill: var(--gold);
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1rem;
}

.input-container input,
.form-floating input,
.input-container textarea,
.input-container select,
.input-container datalist {
  border: none;
  border-radius: .5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.form-infosis .form-floating>.form-control,
.form-infosis .form-floating>.form-select form button.btn {
  height: 3rem;
}

.form-infosis .form-check-input:checked,
.form-infosis input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.form-infosis .form-floating>label {
  line-height: 1;
  opacity: .6;
}


.form-infosis .form-floating>.form-control:focus~label,
.form-infosis .form-floating>.form-control:not(:placeholder-shown)~label,
.form-infosis .form-floating>.form-select~label {
  transform: scale(.85) translateY(-.75rem) translateX(.15rem);
}

.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile+label {
  max-width: 80%;
  font-size: 1rem;
  /* 20px */
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  /* 10px 20px */
}

.no-js .inputfile+label {
  display: none;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}

.inputfile+label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  /* 4px */
  margin-right: 0.25em;
  /* 4px */
}


/* style 1 */

.inputfile-1+label {
  color: #000;
  background-color: var(--gold);
  border-radius: 1rem;
}

.inputfile-1:focus+label,
.inputfile-1.has-focus+label,
.inputfile-1+label:hover {
  background-color: var(--blue);
}

form button.btn:hover {
  background: #fff;
}


.select-pais {
  position: relative;
}

.select-pais:after {
  content: "";
  position: absolute;
  top: 8px;
  height: 20px;
  width: 20px;
  right: 15px;
  background-image: url(../images/chevron-down-purple.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}

.input-pais {
  pointer-events: none;
  z-index: 2;
  position: relative;
  padding-left: 50px;
  height: 3rem;
}

.dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.select-pais .dropdown-toggle {
  padding: 0;
  border-radius: 0;
  opacity: 0;
}

.select-pais .dropdown-item {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: .5rem;
}

.select-pais .dropdown-item img {
  width: 25px;
}

.selected-flag {
  position: absolute;
  top: 14px;
  left: 11px;
  width: 30px;
  height: 20px;
  background: #f4f4f4;
  border-radius: .25rem;
  z-index: 50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

select.icon-menu option {
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-left: 30px;
}

#submit-status {
  position: relative;
}

#submit-status .status {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: var(--text-m);
}


#submit-status.error .status.status-error {
  opacity: 1;
  visibility: visible;
}

#submit-status .status.status-enviando {
  background: linear-gradient(90deg, #0092CB 32.06%, #DFCFA8 96.19%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;

}
#submit-status .status.status-enviando img  {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 

}

#submit-status.enviando  {
  pointer-events: none;
}
#submit-status.enviando .status.status-enviando {
  opacity: 1;
  visibility: visible;
}

#submit-status .status.status-exito {
  background: linear-gradient(90deg, #DFCFA8 32.06%, #DFCFA8 96.19%);
  box-shadow: 0 0 0 2px var(--gold);

}
#submit-status.exito .status.status-exito {
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  from {
      transform:rotate(0deg);
  }
  to {
      transform:rotate(360deg);
  }
}
.cards {
  display: flex;
  gap: 3rem;
  background-color: #fff;
}

.card {
  flex: 1 1 0;
  border-radius: 3rem;
  box-shadow: var(--box-shadow-2);
  border: none;
  margin-bottom: 2rem;
}

.card .text {
  padding: 2rem 1rem;
}

.card p.title {
  font-size: var(--text-m);
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.card p {
  text-align: center;
}

.card .image {
  position: relative;
}

.card img:not([class]) {
  width: 100%;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  aspect-ratio: 4/3;
  height: 100%;
  object-fit: cover;
}

.card .image img.logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  max-width: 150px;
}

@media screen and (min-width: 1366px) {
  .container.container-narrow {
    padding-left: 7%;
    padding-right: 7%;
  }
}

@media screen and (min-width: 1031px) {
  .header-main .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }

  #home-flex .box:nth-child(2) {
    transform: scale(1.1);
  }
  br.br-mobile {
    display: none !important;
    }
}

@media screen and (max-width: 1030px) {
br.br-desktop {
display: none !important;
}

  body {
    padding-top: 60px;
  }

  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .header-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 100vw;
  }

  .header-item-center {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header-item-left,
  .header-item-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }


  .header-main .menu-mobile-toggle {
    position: relative;
    display: block;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }

  .header-main .menu-mobile-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: var(--color-black);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .header-main .menu-mobile-toggle span:nth-child(1) {
    top: 0;
  }

  .header-main .menu-mobile-toggle span:nth-child(2),
  .header-main .menu-mobile-toggle span:nth-child(3) {
    top: 0.5rem;
  }

  .header-main .menu-mobile-toggle span:nth-child(4) {
    top: 1rem;
  }

  .header-item-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-main .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 111;
    overflow: hidden;
    background: #fff;
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .header-main .menu.active {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }

  .header-main .menu>ul>li {
    display: flex;
    line-height: 1;
    width: 100%;
    margin: 0;
  }

  .header-main .menu>ul>li.menu-item-has-children>a,
  .header-main .menu>ul>li.lang-selector>a {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    width: 100%;
    padding: 0 3.125rem 0 1rem;
  }

  .header-main .menu>ul>li.menu-item-has-children:last-child>a,
  .header-main .menu>ul>li.lang-selector:last-child>a {
    border-bottom: none;
  }

  .header-main .menu>ul>li>a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .lang-dropdown {
    top: 3rem;
  }

  .header-main .menu .menu-mobile-header {
    position: relative;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 110;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
  }

  .header-main .menu .menu-mobile-header .menu-mobile-arrow {
    display: flex;
    opacity: 0;
    pointer-events: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    color: var(--black);
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .header-main .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }

  .header-main .menu .menu-mobile-header .menu-mobile-arrow svg {
    max-width: 80%;
    max-height: 80%;
  }

  .header-main .menu .menu-mobile-header .menu-mobile-title {

    font-size: var(--text-m);
    font-weight: 500;
    line-height: inherit;
    color: var(--black);
  }

  .header-main .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
  }

  .header-main .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-main .menu>ul>li .sub-menu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header-main .menu>ul>li .sub-menu.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header-main .menu>ul>li .sub-menu.active {
    display: block;
  }

  .header-main .menu>ul>li .sub-menu.menu-column-4>.list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0rem;
  }

  .header-main .menu>ul>li .sub-menu.menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header-main .menu>ul>li .sub-menu.menu-column-4>.list-item.text-center .title {
    margin-bottom: 1.25rem;
  }

  .header-main .menu>ul>li .sub-menu.menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }

  .header-main .menu>ul>li .sub-menu>ul>li>a {
    display: block;
  }

  .sub-menu-nav ul {
    gap: 1rem;
  }

  .header-main .menu>ul>li .sub-menu.menu-mega>.list-item>ul {
    margin-bottom: 1rem;
  }

  .header-main .menu>ul>li .sub-menu.menu-mega>.list-item>ul>li>a {
    display: block;
  }

  .sub-menu p.title,
  .sub-menu .container .content .misc {
    margin-bottom: 1rem;
  }

  .sub-menu-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .sub-menu-nav.sub-menu-software ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .sub-menu-nav.sub-menu-software ul li {
    max-width: calc(50% - .5rem);
  }

  .sub-menu-nav.sub-menu-software li a img {
    max-width: 90px;
  }

  .sub-menu .container .content {
    padding-top: 3rem;
  }

  .header-main .menu>ul>li.menu-item-has-children > .cta.cta-1 {
    display: inline-block;
    width: auto;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.65);
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
  }

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

  header.section-header {
    margin-bottom: 3rem;
  }
  header.section-header h1 {
    font-size: var(--text-l);
  }
  #home-main {
    min-height: 50vh;
  }

  #home-flex .boxes {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  #home-flex .boxes .box {
    width: 100%;
    margin-bottom: 1rem;
    order: 2;
    padding: 2rem;
  }

  #home-flex .boxes .box:nth-child(2) {
    order: 1;
    margin-bottom: 1rem;
  }

  #home-flex .box.box-2:after {

    right: 0;

  }

  header.section-header p {
    max-width: 340px;
  }

  #home-features .item {
    margin-bottom: 2rem;
  }

  .list-1 ul li:before {
    left: 0;
  }

  section.separator {
    height: 45vh;
  }

  #footer-main .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  #footer-main .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #footer-main .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}