@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Work+Sans:wght@500;600&display=swap);
:root {
  /*tipos de fuentes*/
  --ftype-roboto: Roboto, sans-serif;
  --ftype-worksans: Work Sans, sans-serif;
  --white: #ffffff;
  --grey: #E0E0E0;
  --lightBlue: #43b0ec;
  --darkBlue: #11194f;
  --lightYellow: #ffe876;
  --yellow: #FFD400;
  --pink: #f64c7f;
  --green: #4CAF50;
  --lightBlueGradient: linear-gradient(#43bfff, #5cd8ff);
  --darkBlueGradient: linear-gradient(#11194f, #262d6d);
  --yellowGradient: linear-gradient(#ffEE99, #ffd400);
  --yellowGradientInverse: linear-gradient(#ffd400, #ffEE99);
  --fsize-xs: clamp(14px, 1.75vw, 18px); /*18px*/
  --fsize-s: clamp(18px, 2vw, 20px); /*20px*/
  --fsize-m: clamp(20px, 3vw, 28px); /*30px*/
  --fsize-l: clamp(26px, 4.5vw, 40px); /*40px*/
  --fsize-xl: clamp(32px, 5.5vw, 55px); /*55px*/
}

:root {
  /*tipos de fuentes*/
  --ftype-roboto: Roboto, sans-serif;
  --ftype-worksans: Work Sans, sans-serif;
  --white: #ffffff;
  --grey: #E0E0E0;
  --lightBlue: #43b0ec;
  --darkBlue: #11194f;
  --lightYellow: #ffe876;
  --yellow: #FFD400;
  --pink: #f64c7f;
  --green: #4CAF50;
  --lightBlueGradient: linear-gradient(#43bfff, #5cd8ff);
  --darkBlueGradient: linear-gradient(#11194f, #262d6d);
  --yellowGradient: linear-gradient(#ffEE99, #ffd400);
  --yellowGradientInverse: linear-gradient(#ffd400, #ffEE99);
  --fsize-xs: clamp(14px, 1.75vw, 18px); /*18px*/
  --fsize-s: clamp(18px, 2vw, 20px); /*20px*/
  --fsize-m: clamp(20px, 3vw, 28px); /*30px*/
  --fsize-l: clamp(26px, 4.5vw, 40px); /*40px*/
  --fsize-xl: clamp(32px, 5.5vw, 55px); /*55px*/
}

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif, Work Sans, sans-serif, sans-serif;
}
@media (min-width: 765px) {
  body {
    min-height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    align-items: stretch;
  }
}


body .ui-dialog {
  border-radius: 1rem !important;
}

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

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #11194f;
}

img {
  width: 80%;
  height: auto;
}

nav .container {
  padding: 0 1em;
  max-width: 60rem;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.card {
  width: 100%;
  height: 264px;
  position: relative;
  padding: 0;
  border-radius: 25px;
}
.card .main-card {
  position: absolute;
  max-width: 16.5rem;
  height: 264px;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.5s ease;
}
.card .main-card:hover {
  opacity: 0;
}
.card .hover-card {
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.3s ease;
}

.fade {
  opacity: 0;
  transition: 0.5s ease;
}

.prev, .next {
  cursor: pointer;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  position: relative;
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}

.forminput {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 1rem 0rem 1rem;
}
.forminput .forminput-label {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding-left: 0.5rem;
  padding-bottom: 0.3rem;
}
.forminput .forminput-span .forminput-span-input {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.5rem;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  width: 100%;
}
.forminput .forminput-input {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.5rem;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  width: 100%;
}
.forminput .forminput-select {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.5rem;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  width: 100%;
}

.form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0rem 0.5rem 0rem 0.5rem;
  margin: 1rem 0rem 0rem 0rem;
}
@media (min-width: 765px) {
  .form {
    margin: 1rem 0.5rem 0.5rem 0.5rem;
  }
}
.form label {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding-left: 0.5rem;
  padding-bottom: 0.3rem;
  width: 100%;
}
.form input[type=text],
.form input[type=password],
.form input[type=number],
.form input[type=time],
.form input[type=date] {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.7rem 1rem;
  border: 2px solid #11194f;
  border-radius: clamp(14px, 1.75vw, 18px);
  width: 100%;
}
.form input[type=text]:focus,
.form input[type=password]:focus,
.form input[type=number]:focus,
.form input[type=time]:focus,
.form input[type=date]:focus {
  outline: none;
  border: 2px solid #FFD400;
}
.form select {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.7rem 1rem;
  border: 2px solid #11194f;
  border-radius: clamp(14px, 1.75vw, 18px);
  width: 100%;
}
.form select:focus {
  border: 2px solid #FFD400;
}
.form .form-span .form-span-input {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.5rem;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  width: 100%;
}

.list {
  margin: 0 auto;
  width: 80%;
  padding: 0 1rem;
}
.list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0.5rem;
  border: 2px solid var(--darkBlue);
  border-radius: 1rem;
  box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 1rem 0;
}
.list ul li {
  margin: 0.5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0rem 1rem;
}
.list ul li span:nth-child(odd) {
  font-weight: bold;
}
.list ul li li:nth-child(odd) {
  font-weight: bold;
}

table {
  width: 80%;
  border: 1px solid #11194f;
  border-radius: 1rem;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 1.2rem;
  text-align: center;
  margin: 1rem auto;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 4px 0px;
}

table thead {
  border-radius: 1rem 0 1rem 0;
}

table thead tr th {
  background-image: linear-gradient(#11194f, #262d6d);
  color: #ffffff;
  font-size: clamp(18px, 2vw, 20px);
}

table th, table td {
  padding: 1em;
  border-bottom: 2px solid #ffffff;
  font-size: clamp(18px, 2vw, 20px);
  color: #11194f;
}

table tr:nth-child(odd) {
  background-color: #ffffff;
}

table tr:nth-child(even) {
  background-color: transparent;
}

.error-messages {
  padding: 0;
}
.error-messages li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.5rem;
  margin-top: 1rem;
  border-bottom: 1px solid #f64c7f;
}
.error-messages li i {
  color: #f61456;
}

:root {
  /*tipos de fuentes*/
  --ftype-roboto: Roboto, sans-serif;
  --ftype-worksans: Work Sans, sans-serif;
  --white: #ffffff;
  --grey: #E0E0E0;
  --lightBlue: #43b0ec;
  --darkBlue: #11194f;
  --lightYellow: #ffe876;
  --yellow: #FFD400;
  --pink: #f64c7f;
  --green: #4CAF50;
  --lightBlueGradient: linear-gradient(#43bfff, #5cd8ff);
  --darkBlueGradient: linear-gradient(#11194f, #262d6d);
  --yellowGradient: linear-gradient(#ffEE99, #ffd400);
  --yellowGradientInverse: linear-gradient(#ffd400, #ffEE99);
  --fsize-xs: clamp(14px, 1.75vw, 18px); /*18px*/
  --fsize-s: clamp(18px, 2vw, 20px); /*20px*/
  --fsize-m: clamp(20px, 3vw, 28px); /*30px*/
  --fsize-l: clamp(26px, 4.5vw, 40px); /*40px*/
  --fsize-xl: clamp(32px, 5.5vw, 55px); /*55px*/
}

:root {
  /*tipos de fuentes*/
  --ftype-roboto: Roboto, sans-serif;
  --ftype-worksans: Work Sans, sans-serif;
  --white: #ffffff;
  --grey: #E0E0E0;
  --lightBlue: #43b0ec;
  --darkBlue: #11194f;
  --lightYellow: #ffe876;
  --yellow: #FFD400;
  --pink: #f64c7f;
  --green: #4CAF50;
  --lightBlueGradient: linear-gradient(#43bfff, #5cd8ff);
  --darkBlueGradient: linear-gradient(#11194f, #262d6d);
  --yellowGradient: linear-gradient(#ffEE99, #ffd400);
  --yellowGradientInverse: linear-gradient(#ffd400, #ffEE99);
  --fsize-xs: clamp(14px, 1.75vw, 18px); /*18px*/
  --fsize-s: clamp(18px, 2vw, 20px); /*20px*/
  --fsize-m: clamp(20px, 3vw, 28px); /*30px*/
  --fsize-l: clamp(26px, 4.5vw, 40px); /*40px*/
  --fsize-xl: clamp(32px, 5.5vw, 55px); /*55px*/
}

.header {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 0rem 1rem;
  box-shadow: rgba(0, 0, 0, 0) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-bottom: 1px solid #E0E0E0;
  min-height: 68.5px;
  position: sticky;
  top: 0;
  z-index: 3;
}
@media (min-width: 765px) {
  .header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 1rem;
  }
}
.header .logo {
  width: 300px;
}
.header nav {
  /*        width: 100%;
         position: fixed;
         top: 68.5px;
         background-color: white; */
  display: none;
}
@media (min-width: 765px) {
  .header nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-right: 5px;
  }
}
.header nav ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header nav ul li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 0.25rem;
}
.header nav ul li:nth-child(1) a {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #ffffff;
  color: #11194f;
  border-color: #ffffff;
}
.header nav ul li:nth-child(1) a:hover {
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
  text-decoration: none;
}
.header nav ul li:nth-child(2) a {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #ffffff;
  color: #11194f;
  border-color: #ffffff;
}
.header nav ul li:nth-child(2) a:hover {
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
  text-decoration: none;
}
.header nav ul li:nth-child(3) a {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
}
.header nav ul li:nth-child(3) a:hover {
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
  text-decoration: none;
}
.header nav ul li:nth-child(3) a i {
  margin-right: 4px;
}

.header nav ul li:nth-child(4) a {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #ffffff;
  color: #11194f;
  border-color: #ffffff;
}
.header nav ul li:nth-child(4) a:hover {
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
  text-decoration: none;
}

.header .showmenu {
  all: unset;
  cursor: pointer;
}
@media (min-width: 765px) {
  .header .showmenu {
    display: none;
  }
}
.header .showmenu button {
  display: block;
  border: none;
  background-color: transparent;
  cursor: pointer;
}



/* lading styles */
.section-1h {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  background-color: #11194f;
}
@media (min-width: 765px) {
  .section-1h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 4vw;
  }
}
@media (min-width: 1025px) {
  .section-1h {
    padding: 4rem 8vw;
  }
}
.section-1h div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: normal;
  align-items: normal;
}
.section-1h div h1 {
  font-family: Work Sans, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(32px, 5.5vw, 55px) !important;
  color: #FFD400;
  line-height: 0.92;
  width: 9ch;
  margin: 0.5rem 0;
}
@media (min-width: 765px) {
  .section-1h div h1 {
    width: 12ch;
    line-height: 1.1;
    margin: 1rem 0;
  }
}
.section-1h div h3 {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #43b0ec;
  margin: 0 0 0.5rem 0;
}
@media (min-width: 765px) {
  .section-1h div h3 {
    margin: 0 0 1rem 0.5rem;
  }
}
.section-1h div div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 765px) {
  .section-1h div div {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    padding-right: 4rem;
  }
}
@media (min-width: 1025px) {
  .section-1h div div {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding-right: 2rem;
  }
}
.section-1h div div a:nth-child(1) {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
  width: 100%;
  height: 100%;
  min-width: 200px;

}
.section-1h div div a:nth-child(1):hover {
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .section-1h div div a:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 1rem;
  }
}
.section-1h div div a:nth-child(2) {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #FFD400;
  color: #11194f;
  border-color: #FFD400;
  width: 100%;
  height: 100%;
  min-width: 200px;
}
.section-1h div div a:nth-child(2):hover {
  background-color: #FFD400;
  color: #11194f;
  border-color: #FFD400;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .section-1h div div a:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 1rem;
  }
}
.section-1h div div a:nth-child(3) {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #43B0EC;
  color: #11194f;
  border-color: #43B0EC;
  width: 100%;
  height: 100%;
  min-width: 200px;
}
.section-1h div div a:nth-child(3):hover {
  background-color: #43B0EC;
  color: #11194f;
  border-color: #43B0EC;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .section-1h div div a:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 1rem;
  }
}
.section-1h div div a i {
  margin-right: 7px;
}
.section-1h .section-h1-img {
  margin-top: 30px;
}
@media (min-width: 765px) {
  .section-1h .section-h1-img {
    margin-top: 0;
    padding: 1.5rem;
  }
}
.section-1h .section-h1-img .pcstoreimg {
  width: 100%;
}

.section-2h {
  padding: 1rem 1rem;
  background-color: #E0E0E0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Ocupa todo el ancho de la pantalla */
}
/* Código CSS para el encabezado de la sección */
.section-2h .section2-head {
  margin: 2rem 0;
  padding: 0 2rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Ocupa todo el ancho de la pantalla */
}
@media (min-width: 765px) {
  .section-2h .section2-head {
    margin: 4rem 0;
    padding: 0 4rem;
  }
}
.section-2h .section2-head h3 {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(18px, 2vw, 20px) !important;
  color: #f64c7f;
}
.section-2h .section2-head p {
  margin: 2rem 0;
  line-height: 1;
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
  text-align: center;
  max-width: 42ch;
}
.section-2h .container-2h {
  background-image: linear-gradient(#43bfff, #5cd8ff);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 765px) {
  .section-2h .container-2h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 3rem;
  }
}
@media (min-width: 1025px) {
  .section-2h .container-2h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 2rem 4rem;
  }
}
.section-2h .container-2h .img-container2h {
  margin-bottom: 2.5rem;
}
@media (min-width: 765px) {
  .section-2h .container-2h .img-container2h {
    padding: 0rem 2rem;
    align-self: center;
  }
}
.section-2h .container-2h .img-container2h .mobstoreimg {
  align-self: center;
  max-width: 100%;
}
.section-2h .container-2h div {
  margin-top: 2rem;
}
.section-2h .container-2h div h3 {
  width: 10ch;
  line-height: normal;
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
}
.section-2h .container-2h div p {
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(18px, 2vw, 20px) !important;
  color: #11194f;
}
@media (min-width: 765px) {
  .section-2h .container-2h div p {
    width: 35ch;
  }
}
@media (min-width: 1025px) {
  .section-2h .container-2h div p {
    width: 50ch;
  }
}
.section-2h .section2-cards-head {
  margin-top: 3rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}
.section-2h .section2-cards-head h1 {
  font-family: Work Sans, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(32px, 5.5vw, 55px) !important;
  color: #11194f;
  text-align: center;
  line-height: normal;
  margin: 0;
}
.section-2h .section2-cards-head h3 {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(18px, 2vw, 20px) !important;
  color: #f64c7f;
}
.section-2h .section2-cards-head p {
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
  text-align: center;
  line-height: normal;
  width: 15ch;
  margin: 0;
}
@media (min-width: 765px) {
  .section-2h .section2-cards-head p {
    width: 35ch;
  }
}
.section-2h .cards-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
  grid-gap: 3rem;
  margin: 2rem 0;
  padding: 2rem 0;
  width: 100%;
}
@media (min-width: 765px) {
  .section-2h .cards-container {
    /* width: -webkit-fill-available; */
    padding: 2rem 2rem;
  }
}
@media (min-width: 1025px) {
  .section-2h .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    /* width: -webkit-fill-available; */
    margin: 3rem 3rem;
  }
}
.section-2h .cards-container .card object tspan {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
}

@media (min-width: 765px) {
  .header nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-right: 5px;
  }
}

#numbersSection {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  width: 100%;
}

.sectionTitle {
  font-size: clamp(20px, 2.5vw, 30px);
  color: #11194f;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.numberColumns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  padding: 0;
  list-style-type: none;
}

.numberColumns li {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

.numberColumns > li > .card {
  background-color: rgba(240, 240, 240, 0.7);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countTitle {
  color: #0047AB;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 600;
  margin-bottom: 0.5rem;
}


.countValue {
  color: #1E90FF;
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 750;
}

.blink {
  animation: blinker 0.6s linear;
  animation-iteration-count: 1;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Media Query para cuando la pantalla se achica */
@media (max-width: 765px) {
  .numberColumns {
    flex-direction: column;
  }

  .numberColumns li {
    margin: 10px 0;  /* Ajustar el margen para que los elementos tengan más espacio vertical */
  }

  .numberColumns > li > .card {
    padding: 1rem 0.5rem;
  }

  /* Adaptar el tamaño de fuente para pantallas más pequeñas */
  .countTitle, .countValue {
    font-size: clamp(18px, 4vw, 28px);
  }
}




.section-3h {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  background-image: linear-gradient(#ffEE99, #ffd400);
}
.section-3h .section3-head {
  margin: 2rem 0;
  padding: 0 2rem;
}
.section-3h .section3-head h3 {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(18px, 2vw, 20px) !important;
  color: #f64c7f;
  text-align: center;
}
.section-3h .section3-head p {
  margin: 0;
  line-height: 1;
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
  text-align: center;
  max-width: 42ch;
}
@media (min-width: 765px) {
  .section-3h .section3-head p {
    max-width: 20ch;
  }
}
@media (min-width: 1025px) {
  .section-3h .section3-head p {
    max-width: 50ch;
  }
}
.section-3h .section3-body {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 4rem 0;
  grid-gap: 3rem;
  width: 100%;
  margin: 3rem 1rem;
}
@media (min-width: 765px) {
  .section-3h .section3-body {
    width: 100%;
    margin: 3rem 2rem;
  }
}
@media (min-width: 1025px) {
  .section-3h .section3-body {
    margin: 3rem 3rem;
  }
}
.section-3h .section3-body .card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #ffffff;
  border-radius: 25px;
  width: 215px;
  height: 353px;
}
@media (min-width: 765px) {
  .section-3h .section3-body .card {
    width: 340px;
  }
}
.section-3h .section3-body .card tspan {
  font-family: Roboto, sans-serif;
}
.section-3h .section3-body .card h3 {
  text-align: left;
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #43b0ec;
}
.section-3h .section3-body .card p {
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: center;
  width: 18ch;
}
@media (min-width: 765px) {
  .section-3h .section3-body .card p {
    width: 25ch;
  }
}

.section-4h {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
@media (min-width: 765px) {
  .section-4h {
    padding: 3rem;
  }
}
.section-4h .head {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}
.section-4h .head p {
  margin: 1rem 0;
  line-height: 1;
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
  text-align: center;
  max-width: 42ch;
}
.section-4h .body {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 540px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}
@media (min-width: 765px) {
  .section-4h .body {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .section-4h .body div {
    padding: 0.3rem;
    width: 100%;
  }
}
.section-4h .body h3 {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.section-4h .body p {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  padding: 0 0.5rem;
}

.section-5h {
  background-color: #E0E0E0;
}
.section-5h .carrusel-noticias div:nth-child(1) {
  background-image: linear-gradient(#11194f, #262d6d);
  border-color: #11194f;
  border-radius: 0;
}
.section-5h .carrusel-noticias div:nth-child(1) .ui-carousel-header-title {
  align-self: center;
}
.section-5h .carrusel-noticias div:nth-child(1) .ui-carousel-header-title h5 {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #ffffff;
}
.section-5h .carrusel-noticias div:nth-child(1) span {
  color: #FFD400;
}
.section-5h .carrusel-noticias div:nth-child(1) select {
  display: none;
}
.section-5h .carrusel-noticias div:nth-child(2) {
  border: none;
}
.section-5h .carrusel-noticias div:nth-child(2) ul li {
  border: none !important;
  margin: 0 !important;
}
.section-5h .carrusel-noticias div:nth-child(2) ul li a {
  position: relative;
  width: 100%;
}
.section-5h .carrusel-noticias div:nth-child(2) ul li a:hover .noticia-texto {
  background-color: rgba(17, 25, 79, 0.6);
}
.section-5h .carrusel-noticias div:nth-child(2) ul li a img {
  width: 100%;
}
.section-5h .carrusel-noticias div:nth-child(2) ul li a .noticia-texto {
  position: absolute;
  z-index: 2 !important;
  width: 100%;
  bottom: 3px;
  padding: 1rem;
  background-color: rgba(17, 25, 79, 0.4);
}
.section-5h .carrusel-noticias div:nth-child(2) ul li a .noticia-texto p {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #ffffff;
  margin: 0 0 0.2rem 1rem;
}
.section-5h .carrusel-noticias div:nth-child(2) ul li a .noticia-texto span {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #ffffff;
  padding: 0 1.3rem;
  display: inline-block;
}

/*Intagram*/

.carrusel-instagram {
  background-color: #E0E0E0;
}

/* Estilos para el encabezado del carrusel */
.carrusel-instagram .ui-carousel-header {
  background-image: linear-gradient(#11194f, #262d6d);
  color: #ffffff !important;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: clamp(20px, 3vw, 28px);
  display: flex;
  align-items: initial;
  justify-content: left;
}

.carrusel-instagram .ui-carousel-header .header-text,
.carrusel-instagram .ui-carousel-header i {
  color: #ffffff !important;
}

.carrusel-instagram .instagram-header-link {
  color: white !important;
}

.carrusel-instagram .carousel-item-container {
  background-color: #000000 !important;
  text-align: center !important;
}

/* Estilos para los ítems del carrusel */
.carrusel-instagram .ui-carousel-item {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* Estilos para el enlace del ítem */
.carrusel-instagram .ui-carousel-item a {
  display: block;
  position: relative;
}

/* Estilos para la imagen dentro del carrusel */
.carrusel-instagram .ui-carousel-item img {
  width: 100%;
  display: block;
}

.carrusel-instagram .ui-carousel-item-image {
  width: 100% !important;
  display: block !important;
}


/* Asegúrate de que el enlace no cambie de color cuando se visita */
.carrusel-instagram .ui-carousel-header a:link,
.carrusel-instagram .ui-carousel-header a:visited {
  color: #ffffff;
  text-decoration: none;
}

.carrusel-instagram .carousel-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(17, 25, 79, 0.7), rgba(38, 45, 109, 0.7));
  color: white;
  padding: 15px;
  font-size: 1em;
  line-height: 1.2;
  text-align: center;
}

.carrusel-instagram .carousel-item-container {
  position: relative;
  overflow: hidden;
  border: 5px solid transparent;
  border-image: linear-gradient(to bottom, #000000, #11194f) 1 round;
}

.carrusel-instagram .carousel-image-link {
  display: block;
  position: relative;
}

.carrusel-instagram .ui-carousel-item-image {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.carrusel-instagram .ui-carousel-item-image:hover {
  transform: scale(1.05);
}


/* Utilizando nth-child para aplicar estilos a elementos específicos del carrusel */
.carrusel-instagram .ui-carousel-item:nth-child(1) {

}

.carrusel-instagram .ui-carousel-item:nth-child(2) {

}

.carrusel-instagram .ui-carousel-item:nth-child(3) {

}

#j_idt22 > div.ui-carousel-header.ui-widget-header.ui-corner-all > span.ui-carousel-button.ui-carousel-next-button.ui-icon.ui-icon-circle-triangle-e{
color: #fdd40a;
  right: 0;
}
#j_idt22 > div.ui-carousel-header.ui-widget-header.ui-corner-all > span.ui-carousel-button.ui-carousel-prev-button.ui-icon.ui-icon-circle-triangle-w{
  color: #fdd40a;
  left: 0;
}
#j_idt22 > div.ui-carousel-header.ui-widget-header.ui-corner-all > select.ui-carousel-dropdown.ui-widget.ui-state-default.ui-corner-left{
     display: none;
}

/* Estilo para el encabezado del carrusel */
/* Estilo para el encabezado del carrusel con elementos invertidos */
.ui-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estilo para el título dentro del encabezado */
.ui-carousel-header-title {
  flex: 1;
  order: -1; /* Asegura que el título se muestre al principio */
  text-align: left;
  flex-direction: row-reverse; /* Alinea el texto del título a la izquierda */
}

/* Estilo para las flechas de desplazamiento con color amarillo */
.ui-carousel-prev-button, .ui-carousel-next-button {
  color: #FFD400;
}

/* Estilo para cambiar el orden visual de las flechas */
.ui-carousel-prev-button {
  order: 1; /* Muestra esta flecha al final (derecha) */
}

.ui-carousel-next-button {
  order: 2; /* Muestra esta flecha al principio (izquierda) */
}

/* Agregar margen a las flechas si es necesario para posicionarlas correctamente */
.ui-carousel-prev-button {
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.ui-carousel-next-button {
  margin-right: auto;
  margin-top: auto;
    margin-bottom: auto;
}

/* Para ocultar los selectores de dropdown que no deseas mostrar */
.ui-carousel-dropdown,
.ui-carousel-dropdown-responsive {
  display: none !important; /* Los oculta */
}



/* login styles */
body .ui-panel .ui-panel-content {
  border: none;
}

.login-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0.5rem;
  background-color: #ffe876;
  flex: auto;
}
@media (min-width: 765px) {
  .login-section {
    padding: 3rem 2rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
  }
}
.login-section .text-container {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 765px) {
  .login-section .text-container {
    border-radius: 0;
    padding: 4rem 4rem;
    align-self: stretch;
  }
}
@media (min-width: 1025px) {
  .login-section .text-container {
    padding: 2rem 3rem;
  }
}
.login-section .text-container h1 {
  font-family: Work Sans, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
  text-align: left;
  margin: 1rem 0;
}
@media (min-width: 765px) {
  .login-section .text-container h1 {
    margin: 1rem 0 3rem 0;
  }
}
.login-section .text-container p {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  margin-bottom: 1rem;
  max-width: 40ch;
}
.login-section .text-container .contenedor {
  width: 100%;
}
.login-section .text-container .contenedor .ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  white-space: nowrap;
  margin-bottom: 2rem;
  border: 1px solid #43b0ec;
  border-radius: 15px;
  background-color: #ffffff;
}
@media (min-width: 765px) {
  .login-section .text-container .contenedor .ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.login-section .text-container .contenedor .ul li {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  flex: auto;
  max-width: 50%;
  text-align: left;
  cursor: pointer;
  transition: all 0.5s ease;
  min-width: 12ch;
  padding: 0.5rem 2rem;
}
@media (min-width: 765px) {
  .login-section .text-container .contenedor .ul li {
    display: flex;
    justify-content: center;
  }
}
.login-section .text-container .contenedor .ul .r {
  border-radius: 0px 15px 15px 0px;
}
.login-section .text-container .contenedor .ul .l {
  border-radius: 15px 0px 0px 15px;
}
.login-section .text-container .contenedor .ul li.active {
  background-image: linear-gradient(#43bfff, #5cd8ff);
  color: #ffffff;
  transform: scale(1.1);
}
.login-section .text-container .contenedor .subcontenedor {
  width: 100%;
}
.login-section .text-container .contenedor .subcontenedor .bloque {
  display: flex;
  flex-flow: column nowrap;
  justify-content: normal;
  align-items: stretch;
  opacity: 0;
  display: none;
  transition: all 0.5s ease;
  top: 0;
}
.login-section .text-container .contenedor .subcontenedor .bloque ul {
  padding: 0;
}
.login-section .text-container .contenedor .subcontenedor .bloque ul li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  border-radius: 15px;
  border: 1px solid #f64c7f;
  /* width: -webkit-fill-available; */
  background-color: #f64c7f;
  color: #ffffff;
}
.login-section .text-container .contenedor .subcontenedor .bloque ul li i {
  color: white;
}
.login-section .text-container .contenedor .subcontenedor .bloque a {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  align-self: flex-end;
  padding: 0.5rem 2rem;
}
.login-section .text-container .contenedor .subcontenedor .bloque .ingresar-btn {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-image: linear-gradient(#43bfff, #5cd8ff);
  color: #ffffff;
  border-color: #43b0ec;
  margin-top: 2rem;
  padding: 0.5rem 2rem;
  width: calc(100% - 5rem);
}
.login-section .text-container .contenedor .subcontenedor .bloque .ingresar-btn:hover {
  background-image: linear-gradient(#43bfff, #5cd8ff);
  color: #ffffff;
  border-color: #43b0ec;
  text-decoration: none;
}
.login-section .text-container .contenedor .subcontenedor .bloque.active {
  opacity: 1;
  display: flex;
}
.login-section .img-container {
  margin-top: 30px;
}
@media (min-width: 765px) {
  .login-section .img-container {
    margin-top: 0;
    padding: 1.5rem;
    align-self: center;
  }
}
@media (min-width: 1025px) {
  .login-section .img-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 4rem 4.5rem;
    align-self: center;
    flex: auto;
    max-width: 860px;
  }
}
.login-section .img-container .pcstoreimg {
  width: 100%;
}

/* checkvoucher styles */
.checkVoucher-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 2rem;
  background-color: #43b0ec;
  flex: auto;
}
@media (min-width: 765px) {
  .checkVoucher-section {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
  }
}
.checkVoucher-section .text-container {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 765px) {
  .checkVoucher-section .text-container {
    border-radius: 0;
    padding: 4rem 4rem;
    align-self: stretch;
  }
}
.checkVoucher-section .text-container h1 {
  font-family: Work Sans, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(18px, 2vw, 20px) !important;
  color: #11194f;
  text-align: left;
  margin-bottom: 1rem;
}
.checkVoucher-section .text-container p {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  margin-bottom: 1rem;
  max-width: 40ch;
}
.checkVoucher-section .text-container ul {
  padding: 0;
}
.checkVoucher-section .text-container ul li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  border-radius: 15px;
  border: 1px solid #f64c7f;
  /* width: -webkit-fill-available; */
  background-color: #f64c7f;
  color: #ffffff;
}
.checkVoucher-section .text-container ul li i {
  color: white;
}
.checkVoucher-section .text-container a {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-image: linear-gradient(#43bfff, #5cd8ff);
  color: #ffffff;
  border-color: #43b0ec;
  align-self: flex-end;
  margin: 1rem;
}
.checkVoucher-section .text-container a:hover {
  background-image: linear-gradient(#43bfff, #5cd8ff);
  color: #ffffff;
  border-color: #43b0ec;
  text-decoration: none;
}
.checkVoucher-section .img-container {
  margin-top: 30px;
}
@media (min-width: 765px) {
  .checkVoucher-section .img-container {
    margin-top: 0;
    padding: 1.5rem;
    align-self: center;
  }
}
@media (min-width: 1025px) {
  .checkVoucher-section .img-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 4rem 4.5rem;
    align-self: center;
    flex: auto;
    max-width: 680px;
  }
}
.checkVoucher-section .img-container .pcstoreimg {
  width: 100%;
}

/* registrate */
.cm-registrate {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 2rem;
  background-color: #11194f;
}
@media (min-width: 765px) {
  .cm-registrate {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 4vw;
  }
}
.cm-registrate .text-container {
  background-color: #ffffff;
  border-radius: clamp(14px, 1.75vw, 18px);
  padding: 1rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media (min-width: 765px) {
  .cm-registrate .text-container {
    width: 45%;
  }
}
.cm-registrate .text-container h1 {
  font-family: Roboto, sans-serif;
  color: #11194f;
  text-align: center;
  font-weight: 900;
  width: 15ch;
  padding: 1rem;
  line-height: 1.1;
}
@media (min-width: 765px) {
  .cm-registrate .text-container h1 {
    width: 20ch;
  }
}
.cm-registrate .text-container .contenedor {
  width: 100%;
}
.cm-registrate .text-container .contenedor .ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  white-space: nowrap;
  margin-bottom: 2rem;
  border: 1px solid #43b0ec;
  border-radius: 15px;
  background-color: #ffffff;
}
@media (min-width: 765px) {
  .cm-registrate .text-container .contenedor .ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.cm-registrate .text-container .contenedor .ul li {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  flex: auto;
  max-width: 50%;
  text-align: left;
  cursor: pointer;
  transition: all 0.5s ease;
  min-width: 12ch;
  padding: 0.5rem 2rem;
}
@media (min-width: 765px) {
  .cm-registrate .text-container .contenedor .ul li {
    display: flex;
    justify-content: center;
  }
}
.cm-registrate .text-container .contenedor .ul .r {
  border-radius: 0px 15px 15px 0px;
}
.cm-registrate .text-container .contenedor .ul .l {
  border-radius: 15px 0px 0px 15px;
}
.cm-registrate .text-container .contenedor .ul li.active {
  background-image: linear-gradient(#43bfff, #5cd8ff);
  color: #ffffff;
  transform: scale(1.1);
}
.cm-registrate .text-container .contenedor .subcontenedor {
  width: 100%;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque {
  display: flex;
  flex-flow: column nowrap;
  justify-content: normal;
  align-items: stretch;
  opacity: 0;
  display: none;
  transition: all 0.5s ease;
  top: 0;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque ul {
  padding: 0;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque ul li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  text-align: left;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  border-radius: 15px;
  border: 1px solid #f64c7f;
  /* width: -webkit-fill-available; */
  background-color: #f64c7f;
  color: #ffffff;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque ul li i {
  color: white;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque a {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-image: linear-gradient(#ffd400, #ffEE99);
  color: #11194f;
  border-color: #FFD400;
  align-self: flex-end;
  padding: 0.5rem 2rem;
  width: calc(100% - 6rem);
  align-self: center;
  margin-top: 4rem;
  line-height: 2;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque a:hover {
  background-image: linear-gradient(#ffd400, #ffEE99);
  color: #11194f;
  border-color: #FFD400;
  text-decoration: none;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque .ingresar-btn {
  margin-top: 2rem;
  width: calc(100% - 5rem);
  color: #ffffff;
}
.cm-registrate .text-container .contenedor .subcontenedor .bloque.active {
  opacity: 1;
  display: flex;
}
.cm-registrate .img-container {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 765px) {
  .cm-registrate .img-container {
    width: 50%;
  }
}
.cm-registrate .img-container object {
  width: 100%;
  z-index: 1;
}
.cm-registrate .img-container img {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.cm-about {
  padding: 3rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 765px) {
  .cm-about {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
}
.cm-about .img-container {
  width: 100%;
}
@media (min-width: 765px) {
  .cm-about .img-container {
    width: 50%;
  }
}
.cm-about .img-container .mobstoreimg {
  width: 80%;
  margin: 3rem;
}
.cm-about .text-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.cm-about .text-container h1 {
  color: #f64c7f;
}
.cm-about .text-container p {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #11194f;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 30ch;
}
.cm-about .text-container a {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
}
.cm-about .text-container a:hover {
  background-color: #ffffff;
  color: #11194f;
  border-color: #11194f;
  text-decoration: none;
}

footer {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-items: unset;
  align-items: center;
  background-image: linear-gradient(#11194f, #262d6d);
  padding: 1rem;
  color: #ffffff;
}
@media (min-width: 765px) {
  footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    justify-items: center;
    align-items: center;
    padding: 1rem 10rem;
  }
}
@media (min-width: 1025px) {
  footer {
    padding: 1rem 16rem;
  }
}
footer .text-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 1rem;
  justify-self: flex-start;
}
footer .text-container h4 {
  font-family: Roboto, sans-serif !important;
  font-weight: bold !important;
  font-size: clamp(18px, 2vw, 20px) !important;
  color: #FFD400;
  margin: 0;
}
footer .text-container h3 {
  font-family: Roboto, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #43b0ec;
  margin: 0;
}
footer .i-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 765px) {
  footer .i-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
  }
}
@media (min-width: 1025px) {
  footer .i-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
  }
}
footer .i-container a {
  background-color: #ffffff;
  padding: 0.6rem;
  border-radius: 55%;
  margin: 0.5rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
footer .i-container a i {
  align-self: center;
  cursor: pointer;
  color: #11194f;
}
footer .c {
  color: #ffffff;
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #11194f;
  color: #ffffff;
  border-color: #ffffff;
}
footer .c:hover {
  background-color: #11194f;
  color: #ffffff;
  border-color: #ffffff;
  text-decoration: none;
}
@media (min-width: 765px) {
  footer .c {
    justify-self: flex-start;
  }
}
footer .t {
  all: unset;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
  padding: clamp(14px, 1.75vw, 18px) calc(clamp(14px, 1.75vw, 18px) + 1rem);
  border-radius: clamp(14px, 1.75vw, 18px);
  font-family: Work Sans, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(14px, 1.75vw, 18px) !important;
  color: #11194f;
  margin: calc(clamp(14px, 1.75vw, 18px) / 2) 0;
  line-height: 1.3;
  background-color: #11194f;
  color: #ffffff;
  border-color: #ffffff;
  color: #ffffff !important;
}
footer .t:hover {
  background-color: #11194f;
  color: #ffffff;
  border-color: #ffffff;
  text-decoration: none;
}







/*# sourceMappingURL=style.css.map */
