/* Variables */
/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/* General */
img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
body {
  font-family: sans-serif;
  background: transparent;
}
a {
  color: #FE007F;
  /*text-decoration: none;*/
  transition: 0.3s;
}
a:hover {
  color: #0067A0;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
}
/* ==========
D
========== */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* ==========
Boton up
========== */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #FE007F;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
  color: #fff;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: #0067A0;
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* ==========
Header
========== */
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  background: #0067A0;
}
.header .log-sc img {
  height: 0px;
  padding: 5px 0;
  margin: 0 15px 0 0;
}
.header .logo-cent img {
  height: 45px;
  padding: 5px 0;
  margin-top: 10px;
}
.header.sticked {
  background: #0067A0;
  padding: 0;
}
@media (max-width: 1200px) {
  .header {
    padding: 0;
  }
}
@media (max-width: 1279px) {
  .header {
    padding: 15px 0;
  }
  .header.sticked {
    padding: 8px 0;
  }
  .logo-cent {
    display: none;
  }
  .logo-inv {
    display: none;
  }
  .log-sc img {
    height: 35px !important;
  }
}
/* ==========
Nav Desktop
========== */
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar li:hover > a {
    color: #ffffff;
  }
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
  }
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #fff;
  }
  .navbar .active {
    background: #FE007F;
    border-radius: 8px;
  }
  .navbar .active a {
    color: #ffffff;
  }
  .navbar .active:focus {
    color: #fff;
  }
  .mobile-nav-show {
    display: none !important;
  }
  .mobile-nav-hide {
    display: none !important;
  }
}
/* ==========
Nav mobile
========== */
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #0067A0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    /****/
    text-align: center;
  }
  .navbar a {
    /*display: flex;
			align-items: center;
			justify-content: space-between;*/
    padding: 20px;
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #fff;
  }
  .navbar .active {
    background: #FE007F;
    color: #fff;
  }
  .navbar .active:focus {
    color: #fff;
  }
  .navbar li {
    /******/
    margin: 20px 0;
    padding: 15px 0;
    /******/
    list-style: none;
  }
  .navbar li:hover > a {
    color: #fff;
  }
  .mobile-nav-show {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 25px;
    top: 15px;
  }
  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 35px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 25px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}
/* ==========
Dinamic
========== */
.dinamic {
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG_Mobile.png") top center;
  background-size: cover;
  padding: 120px 0px 80px;
}
.dinamic h3 {
  font-size: 34px;
  font-weight: 800;
  color: #FE007F;
  padding: 0 15px;
  margin: 30px 0;
}
.dinamic h4 {
  font-size: 34px;
  font-weight: 600;
  color: #FE007F;
  margin-top: 15px;
}
.dinamic p {
  padding: 5px 40px;
  font-size: 1.1em;
  font-weight: 600;
  color: #FE007F;
  line-height: 1.4em;
}
.dinamic span {
  color: #FE007F;
  font-size: 1.2em;
  font-weight: 800;
}
.dinamic a {
  color: #FE007F;
}
.dinamic .cont-w {
  padding: 60px 0 30px 0;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.dinamic .din-txt {
  margin-top: 40px;
}
.dinamic .din-txt p {
  color: #FE007F;
  font-size: 1.2em;
  text-align: center;
  font-weight: 500;
}
.dinamic .din-txt span {
  color: #FE007F;
  font-size: 1.2em;
  font-weight: 600;
}
.dinamic .instrucciones img {
  height: 280px;
}
.dinamic .cont-prod {
  max-width: 600px;
  margin: 20px auto;
  background-color: #ffffff;
  border-radius: 20px;
}
.dinamic .cont-prod p {
  color: #555555;
}
.dinamic .cont-prod .btn {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 12px;
  transition: 0.5s;
  margin-top: 10px;
  text-decoration: none;
  color: #ffffff;
  background: #0067A0;
  margin-bottom: 10px;
}
.dinamic .cont-prod .btn:hover {
  background: #FE007F;
}
@media (min-width: 500px) {
  .dinamic {
    background: url("../img/backg/BG_home.png") center center;
    background-size: cover;
  }
  .dinamic h3 {
    font-size: 44px;
    font-weight: 800;
    color: #FE007F;
    padding: 0 15px;
    margin: 30px 0;
  }
}
/* ==========
Awwards
========== */
.Awwards {
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG_Mobile.png") top center;
  background-size: cover;
}
.Awwards h3 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 15px;
  margin: 30px 0 60px;
  line-height: 35px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}
.Awwards p {
  color: black;
  padding: 5px 20px;
  font-size: 1.2em;
  font-weight: 500;
  color: #FE007F;
  line-height: 1.4em;
}
.Awwards span {
  color: #0067A0;
  font-size: 1.4em;
  font-weight: 800;
}
.Awwards a {
  color: #0067A0;
}
.Awwards .cont-w {
  padding-top: 80px;
  padding-bottom: 160px;
  background-color: transparent;
}
.Awwards .din-txt {
  padding: 0 0px;
}
.Awwards .din-txt p {
  color: #FE007F;
  font-size: 1.2em;
}
.Awwards .din-txt span {
  color: #FE007F;
  font-size: 1.4em;
  font-weight: 600;
}
.Awwards .awwards-item {
  background-color: #ffffff;
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  border-radius: 25px;
}
.Awwards .awwards-item .awward-img {
  margin-bottom: 10px;
  text-align: center;
}
.Awwards .awwards-item .awward-img img {
  height: 350px;
}
.Awwards .awwards-item h4 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 1.8em;
  color: #FE007F;
}
.Awwards .awwards-item h4 a {
  text-decoration: none;
  transition: ease-in-out 0.3s;
}
.Awwards .awwards-item p {
  text-align: center;
  line-height: 24px;
  font-size: 1.4em;
  margin-bottom: 0;
}
.Awwards .awwards-item:hover {
  transform: translateY(-10px);
}
.Awwards .cont-prod {
  max-width: 680px;
  margin: 80px auto 20px;
  background-color: transparent;
  border-radius: 50px;
  background: #ffffff;
  height: auto;
}
.Awwards .cont-prod .cont-prod1 {
  padding: 0px 0 10px;
}
.Awwards .cont-prod p {
  color: #FE007F;
  font-size: 1.2em;
  margin-left: 8px;
}
.Awwards .cont-prod span {
  color: #FE007F;
  font-size: 1.4em;
}
.Awwards .cont-prod img {
  margin-top: -40px;
}
.Awwards .cont-prod .btn {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 12px;
  transition: 0.5s;
  margin-top: 10px;
  text-decoration: none;
  color: #ffffff;
  background: #0067A0;
  margin-bottom: 10px;
}
.Awwards .cont-prod .btn:hover {
  background: #FE007F;
}
@media (min-width: 500px) {
  .Awwards {
    background: url("../img/backg/BG_home.png") center center;
    background-size: cover;
  }
  .Awwards .cont-prod {
    height: 120px;
  }
}
/* ==========
Register
========== */
.registro {
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG_home.png") top center;
  background-size: cover;
  overflow-y: hidden;
}
.registro .cont-w {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: transparent;
}
.registro .campania img {
  margin-top: auto;
  max-height: 900px;
}
.registro .form {
  background-color: #ffffff;
  /*backdrop-filter: blur(5px);*/
  margin: 0px auto 0;
  padding: 32px 10% 40px;
  border-radius: 5%;
  position: relative;
  color: black;
  z-index: 2;
  max-width: 550px;
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
}
.registro .form .nav-tabs {
  border: none;
}
@media (max-width: 991px) {
  .registro .form {
    width: 90%;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .registro .form {
    max-width: 100% !important;
    width: 100%;
    margin-top: 20px;
  }
}
.registro .form input {
  background-color: #0067A0;
  border: solid 1px #ffffff;
}
.registro .form input:focus {
  border: solid 1px #ffffff;
}
.registro .form label {
  font-size: 14px;
  color: #0067A0;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
}
.registro .form label a {
  font-weight: bold;
  color: #000000;
  letter-spacing: normal;
}
.registro .form .form-control,
.registro .form .form-select-sm {
  background-color: #ededed;
  border: none;
  color: #0067A0;
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.75;
  border-radius: 8px;
  margin-top: 10%;
}
.registro .form .form-control::placeholder,
.registro .form .form-select-sm::placeholder {
  text-align: left;
  color: rgba(254, 0, 127, 0.6);
}
.registro .form select {
  color: #0067A0 !important;
  font-size: 1rem;
}
.registro .form select option {
  background-color: #ededed;
  font-family: 'Bogle', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
}
.registro .form p {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: #FE007F;
  font-size: 18px !important;
  line-height: 1;
}
@media (max-width: 480px) {
  .registro .form p {
    padding: 0px 4% 20px;
  }
}
.registro .form .send {
  background-color: #FE007F;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  color: #ffffff;
  width: 60%;
  margin-top: 5px;
  font-weight: bold;
  transition: all 0.5s;
}
.registro .form .send:hover {
  background-color: #0067A0;
  color: white;
}
@media (max-width: 480px) {
  .registro .form .send {
    width: 80%;
  }
}
.registro .form ul {
  list-style-type: none;
  padding-left: 0;
}
.registro .form ul li {
  display: inline-block;
  width: 100%;
  margin: 20px auto 4px;
}
.registro .form ul li input[type="radio"][id^="cat"],
.registro .form ul li input[type="radio"][id^="pills"] {
  display: none;
}
.registro .form ul li label {
  background-color: #FE007F;
  color: #FE007F;
  border: 1px solid #fff;
  padding: 8px;
  display: block;
  border-radius: 8px;
  position: relative;
  margin: 4px;
  cursor: pointer;
}
.registro .form ul li label::before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}
.registro .form ul li label img {
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  border-radius: 4px;
}
.registro .form ul li label span {
  min-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.registro .form ul li :checked + label {
  border-color: #FE007F;
  color: white;
}
.registro .form ul li :checked + label::before {
  content: "✓";
  transform: scale(1);
  z-index: 1;
  line-height: 1.4em;
  font-size: 1.3em;
}
.registro .form ul li :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}
.registro .form ul li :disabled + label {
  opacity: 0.5;
  transform: scale(0.9);
}
.registro .form ul li :disabled + label::before {
  content: "✓";
  background-color: #FE007F;
  transform: scale(1);
  z-index: 1;
  line-height: 1.4em;
  font-size: 1.2m;
}
.registro .form ul li :disabled + label img {
  transform: scale(0.9);
}
.registro .form ul.pills-ul li {
  width: auto;
}
.registro .form ul.pills-ul label {
  padding: 4px 12px;
  border: 1px solid #fff;
  display: block;
  border-radius: 16px;
  position: relative;
  margin: 8px;
  cursor: pointer;
}
.registro .form ul.pills-ul label::before {
  display: none;
}
.registro .form ul.pills-ul :checked + label {
  color: white;
}
.registro .form .nav-tabs {
  max-width: 350px;
  margin: auto;
}
.registro .form .nav-tabs li {
  padding: 5px 0;
  width: 50%;
  font-weight: bold;
  background-color: rgba(230, 235, 242, 0.9);
}
.registro .form .nav-tabs li:nth-child(1) {
  border-radius: 16px 0 0 16px;
}
.registro .form .nav-tabs li:nth-child(2) {
  border-radius: 0 16px 16px 0;
}
.registro .form .nav-tabs li:nth-child(2):hover {
  border-radius: 0 16px 16px 0;
}
.registro .form .nav-tabs li :hover {
  background-color: transparent;
  font-weight: bold;
  color: #0067A0;
  border: none;
  border-radius: none;
  transition: none;
}
.registro .form .nav-tabs li button {
  width: 90%;
  margin: auto;
  color: #FE007F;
  font-size: 1em;
  padding: 9px 0px;
  font-weight: bold;
}
.registro .form .nav-tabs li button.active {
  width: 90%;
  margin: auto;
  color: #ffffff;
  border: none;
  background-color: #FE007F;
  border-radius: 8px;
  padding: 10px;
}
.registro .form .nav-tabs li.nav-link {
  border: none;
}
.registro .form .legals {
  margin: 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.registro .form .legals label {
  font-size: 12px;
  font-weight: 100;
  color: #555555;
}
.registro .form .legals a {
  color: #555555;
  font-weight: 900;
}
.registro .form .tab-content {
  width: 80%;
  background-color: transparent;
  max-width: 550px;
  margin: 0 auto;
}
.registro .form .tab-content label {
  margin-bottom: 0px;
}
.registro .hiden {
  display: none !important;
}
.file-upload {
  margin-top: 20px;
}
.file-upload p {
  font-size: 1em !important;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 8px;
}
.file-upload .image-box {
  margin: 24px auto;
  height: 50px;
  width: 50px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: 1px solid #FE007F;
  border-radius: 50%;
  -ms-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.5s ease;
  /*&::after {
            content: "";
            width: calc(100% + 16px);
            height: calc(100% + 16px);
            position: absolute;
            top: -8px;
            left: -8px;
            border-radius: 50%;
            border: solid 2px @color-white;
        }*/
}
.file-upload .image-box i {
  color: #FE007F;
  margin-top: 7px;
  font-weight: 500;
  font-size: 35px;
  margin: 7px auto;
}
.file-upload .image-box img {
  height: 40px;
  width: 100%;
  border-radius: 8px;
  display: none;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 480px) {
  .file-upload .image-box {
    height: 50px;
    width: 50px;
  }
  .file-upload .image-box img {
    height: 80px;
    width: 100%;
  }
}
.file-upload .image-box p {
  position: relative;
  top: 32%;
  color: #000000;
  font-size: 14px;
  line-height: 1.3em;
  padding: 0 8%;
}
@media (min-width: 768px) {
  .registro {
    background: url("../img/backg/BG_home.png") bottom center;
    background-size: cover;
    overflow: hidden;
    /*background-attachment: fixed;*/
  }
  .registro .cont-w {
    padding-top: 100px;
  }
}
/* ==========
Consulta
========== */
.consult {
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG_secciones_mobile.png") top center;
  background-size: cover;
}
.consult .cont-w {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
}
.consult .form-cons {
  background-color: #FE007F;
  margin: 20px auto;
  padding: 10%;
  border-radius: 5%;
  position: relative;
  color: black;
  z-index: 2;
  max-width: 680px;
}
.consult legend {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.8em;
  margin-bottom: 40px;
}
.consult .send {
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  color: #FE007F;
  width: 60%;
  margin-top: 40px;
  font-weight: bold;
  transition: all 0.5s;
}
.consult .send:hover {
  background-color: #0067A0;
  color: white;
}
@media (max-width: 480px) {
  .consult .send {
    width: 80%;
  }
}
.consult .form-control,
.consult .form-select-sm {
  background-color: #ededed;
  border: none;
  color: #FE007F;
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.75;
  border-radius: 8px;
  width: 80%;
  margin: 40px auto 0 auto;
}
.consult .form-control::placeholder,
.consult .form-select-sm::placeholder {
  text-align: left;
  color: rgba(254, 0, 127, 0.4);
}
@media (min-width: 500px) {
  .consult {
    background: url("../img/backg/BG_home.png") center center;
    background-size: cover;
  }
}
/* ==========
Resultados
========== */
.result {
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG_secciones.png") top center;
  background-size: cover;
}
.result .cont-w {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
}
.result .result-cont {
  background-color: transparent;
  margin: 20px auto;
  padding: 1%;
  border-radius: 5%;
  position: relative;
  color: black;
  z-index: 2;
  max-width: 90%;
}
.result h2 {
  color: #FE007F;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 2.4em;
}
.result h3 {
  color: #555555;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 16px;
  padding: 0 20px;
}
.result .txt-hello {
  margin-bottom: 30px;
}
.result .txt-hello p {
  color: #ffffff;
  font-size: 1.4em;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
}
.result .txt-hello span {
  color: #ffffff;
  font-size: 1.8em;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
}
.result .txt-leg {
  text-align: center;
  font-weight: 600;
  margin: 20px 0;
}
.result .txt-point {
  margin: 20px auto;
  padding: 15px 60px;
  text-align: center;
}
.result .txt-point span {
  font-size: 2.5em;
  font-weight: 800;
  color: #ffffff;
}
.result .txt-point p {
  color: #ffffff;
  margin: 30px 0;
  font-weight: 600;
}
.result .cont-a {
  background: #FE007F;
  padding: 40px 1%;
  border-radius: 25px;
  max-height: 450px !important;
}
.result .cont-b {
  max-height: 450px !important;
  background-color: #ffffff;
  padding: 60px 2%;
  border-radius: 25px;
}
.result .cont-b .din-txt p {
  color: #555555;
  font-weight: 700;
  font-size: 16px;
}
.result .cont-b .din-txt span {
  color: #FE007F;
  font-weight: 700;
  font-size: 24px;
}
.result .din-imag {
  padding: 10px 20px;
  max-width: 100%;
  text-align: center;
  margin: 10px auto;
}
.result .din-imag img {
  height: 200px;
}
.result .din-imag-1 {
  padding: 10px;
  max-width: 100%;
  text-align: center;
  margin: 5px auto;
}
.result .din-imag-1 img {
  height: 150px;
}
.result .desc-txt {
  color: #ffffff;
  font-size: 1em;
  font-weight: 600;
  padding: 15px;
}
.result .swiper {
  margin: 0px 25px;
  text-align: center;
  overflow: hidden;
}
.result .swiper-button-prev {
  left: 0px;
}
.result .swiper-button-prev:after {
  font-size: 40px;
  font-weight: 800;
  color: #FE007F;
}
.result .swiper-button-next {
  right: 0px;
}
.result .swiper-button-next:after {
  font-size: 40px;
  font-weight: 800;
  color: #FE007F;
}
.result .swiper-pagination {
  margin-top: 10px;
  position: relative;
}
.result .swiper-pagination .swiper-pagination-bullet {
  background-color: #555555;
}
.result .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #555555;
}
@media (min-width: 500px) {
  .result {
    background: url("../img/backg/BG_secciones.png") center center;
    background-size: cover;
  }
}
@media (max-width: 1200px) {
  .result .swiper {
    margin: 0px 60px 0px 60px;
  }
  .result .swiper-button-prev {
    left: 5px;
  }
  .result .swiper-button-next {
    right: 5px;
  }
}
@media (max-width: 575px) {
  .result .swiper {
    margin: 0px 40px 0px 40px;
  }
}
@media (max-width: 640px) {
  .logo-1 {
    width: 120px !important;
    margin-bottom: 0px;
  }
  .result h2 {
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  .result .txt-point {
    margin: 25px auto;
    padding: 15px 30px;
  }
  .result .txt-point span {
    color: #ffffff;
    font-size: 1.8em;
    font-weight: 600;
  }
  .result .txt-point p {
    color: #ffffff;
  }
}
/* ==========
Buy
========== */
.buy {
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG_Mobile.png") bottom center;
  background-size: cover;
}
.buy h3 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 15px;
  margin: 30px 0 60px;
  line-height: 35px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}
.buy h4 {
  font-size: 34px;
  font-weight: 600;
  color: #0067A0;
  margin-top: 15px;
}
.buy p {
  color: black;
  padding: 5px 40px;
  font-size: 1.2em;
  font-weight: 600;
  color: #0067A0;
  line-height: 1.4em;
}
.buy span {
  color: #0067A0;
  font-size: 1.4em;
  font-weight: 800;
}
.buy a {
  color: #0067A0;
}
.buy .cont-w {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
}
.buy .din-txt {
  padding: 0 0px;
}
.buy .din-txt p {
  color: #FE007F;
  font-size: 1.2em;
}
.buy .din-txt span {
  color: #FE007F;
  font-size: 1.4em;
  font-weight: 600;
}
.buy .buy-slider {
  padding: 20px 0;
}
.buy .buy-slider .swiper-pagination {
  margin-bottom: 40px;
  text-align: left;
  position: relative;
}
.buy .buy-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  width: 16px;
  height: 16px;
  margin-right: 16px;
}
.buy .buy-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
}
.buy .product {
  background-color: #ffffff;
  width: 90%;
  padding: 15px 10px;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.buy .product img {
  max-width: 80%;
  border-radius: 12px;
}
.buy .product p {
  text-align: center;
  color: #000;
  font-size: 14px;
  line-height: 1em;
  margin: 5px 0 0 0;
  font-weight: 600;
  height: 50px;
  padding: 5px 5px 8px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.buy .product i {
  vertical-align: middle;
}
.buy .product .btns {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 5px;
  border-radius: 12px;
  transition: 0.5s;
  text-decoration: none;
  text-align: left;
  width: 100%;
  color: #FE007F;
}
.buy .product .btns a {
  text-decoration: none;
}
.buy .product .btns:hover {
  color: #FE007F;
}
.buy .product:hover {
  transform: scale(1.03);
}
.buy .info {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 500px) {
  .buy {
    background: url("../img/backg/BG_home.png") center center;
    background-size: cover;
  }
  .buy .product p {
    font-size: 16px;
    line-height: 1em;
    margin: 15px 0 0 0;
    font-weight: 600;
    height: 50px;
    padding: 5px 15px 0 15px !important;
    padding-bottom: 8px;
    text-transform: ;
  }
  .buy .product .btns {
    font-weight: 600;
    font-size: 16px !important;
    padding: 6px 15px !important;
    border-radius: 12px;
    transition: 0.5s;
    text-decoration: none;
    text-align: left;
    width: 100%;
    color: #FE007F;
  }
  .buy .product .btns a {
    text-decoration: none;
  }
  .buy .product .btns:hover {
    color: #FE007F;
  }
}
/* ==========
Modal
========== */
.modal-content {
  background: url("../img/backg/BG_home.png") center center;
  background-size: cover;
  border-radius: 15px;
}
.modal-content .modal-body {
  background-color: transparent;
  border: none;
  padding-top: 50px;
  padding-bottom: 20px;
}
.modal-content .modal-body .post-all {
  max-width: 600px;
  margin: 40px auto;
}
.modal-content .modal-body .post-all .inst-post {
  background-color: #ffffff;
  padding: 45px 15px 15px 15px;
  border: 2px solid #FE007F;
  border-radius: 8px;
  -webkit-box-shadow: 0px 12px 1px -1px #004a74;
  -moz-box-shadow: 0px 12px 1px -1px #004a74;
  box-shadow: 0px 12px 1px -1px #004a74;
}
.modal-content .modal-body .post-all .inst-post h3 {
  color: #FE007F;
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.modal-content .modal-body .post-all .inst-post i {
  vertical-align: middle;
  color: #FE007F;
  font-size: 1.4em;
}
.modal-content .modal-body .post-all .inst-post h5 {
  color: #FE007F;
  font-weight: 900;
  font-size: 1.2em;
  text-align: center;
}
.modal-content .modal-body .post-all .inst-post ol {
  color: #FE007F;
  font-weight: 600;
  font-size: 1em;
}
.modal-content .modal-body .post-all .inst-post p {
  text-align: center;
  color: #FE007F;
  font-weight: 600;
  font-size: 0.8em;
}
.modal-content .modal-footer {
  background-color: transparent;
  border: none;
}
.modal-content .modal-footer a {
  color: #ffffff;
  font-weight: 600;
}
.modal-content .modal-footer .btn-secondary {
  background-color: #0067A0;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
}
.loader-form {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2022;
}
.loader-form .three {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loader-form .three .loader {
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
/* LOADER 6 */
#loader-6 span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: #3498db;
  background-color: white;
}
#loader-6 span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}
#loader-6 span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}
#loader-6 span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}
#loader-6 span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}
@keyframes grow {
  0%,
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}
#Tablewiners {
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG_Mobile.png") top center;
  background-size: cover;
}
#Tablewiners .cont-w {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
}
#Tablewiners.interno {
  padding-top: 0px;
}
@media (max-width: 480px) {
  #Tablewiners.interno h2 {
    font-size: 35px;
  }
}
#Tablewiners h3 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 15px;
  margin: 30px 0 60px;
  line-height: 35px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}
#Tablewiners h2 {
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
}
@media (max-width: 480px) {
  #Tablewiners h2 {
    font-size: 35px;
  }
}
#Tablewiners .overfl {
  overflow: auto;
  max-width: 600px !important;
  margin: 0 auto;
}
#Tablewiners table {
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
}
#Tablewiners table th {
  padding: 20px;
  text-align: center;
  color: white !important;
  font-size: 1.3em;
  background-color: #FE007F;
}
#Tablewiners table td {
  font-size: 14px !important;
  text-align: center;
  padding: 15px;
}
#Tablewiners .swiper-pagination {
  margin-top: 10px;
  position: relative;
}
#Tablewiners .swiper-pagination .swiper-pagination-bullet {
  background-color: #555555;
}
#Tablewiners .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0067A0;
}
@media (min-width: 768px) {
  #Tablewiners {
    background: url("../img/backg/BG_home.png") center center;
    background-size: cover;
    /*background-attachment: fixed;*/
  }
  #Tablewiners .cont-w {
    padding-top: 80px;
    padding-bottom: 0px;
  }
}
@media (max-width: 714px) {
  #Tablewiners .swiper-button-prev:after {
    font-size: 0px;
  }
  #Tablewiners .swiper-button-next:after {
    font-size: 0px;
  }
}
