/* 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 {
  /*text-decoration: none;*/
  transition: 0.3s;
}
a:hover {
  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: #F36F38;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
  color: #fff;
  border: 0.5px solid white;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: #642BED;
  color: #f5e102;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* ==========
Header
========== */
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0px;
  background-color: transparent;
}
.header .log-sc img {
  height: 40px;
  padding: 5px 10px;
  margin: 5px 10px;
}
.header .menu-red {
  background: transparent;
  padding: 5px 20px;
  width: 95%;
}
.header.sticked {
  background: #0C00BF;
  padding: 10px 0;
  box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.49);
}
@media (max-width: 1200px) {
  .header {
    padding: 0px;
  }
  .header .menu-red {
    padding: 5px;
    width: 100% !important;
  }
  .header .log-sc img {
    padding: 5px 0px;
  }
}
/* ==========
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 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #F36F38;
    text-shadow: 1px 1px 2px #FFFFFF;
  }
  .navbar a:hover:before {
    visibility: visible;
    width: 25px;
  }
  .navbar .active {
    background: #F99E4C;
    border-bottom: 2px solid #FFFFFF;
  }
  .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: #0C00BF;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    /****/
    text-align: center;
  }
  .navbar a {
    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: 25px;
    font-weight: 600;
    color: #F36F38;
    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: #F36F38 !important;
  }
  .navbar .active {
    background: #F36F38;
    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: 40px;
    font-weight: 700;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }
  .mobile-nav-hide {
    color: #F99E4C;
    font-size: 40px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 5px;
    top: 30px;
    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;
  }
}
/* ==========
Hero - Registro
========== */
.registro {
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  background: url("../img/backg/BG-home.png") center center;
  background-size: cover;
}
.registro .cont-w {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: transparent;
}
.registro .campania img {
  max-height: 800px;
}
.registro .form {
  margin: 0px auto 0;
  padding: 0px 0% 40px;
  border-radius: 50px;
  position: relative;
  color: black;
  z-index: 2;
  max-width: 650px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.1px);
  -webkit-backdrop-filter: blur(7.1px);
  border: 1px solid #ffffff;
  /*text area*/
}
.registro .form .nav-tabs {
  border: none;
}
@media (max-width: 991px) {
  .registro .form {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .registro .form {
    max-width: 100% !important;
    width: 100%;
    margin-top: 20px;
  }
}
.registro .form input {
  background-color: rgba(255, 255, 255, 0.6) !important;
  border: none;
  border-radius: 15px !important;
  padding: 12px;
}
.registro .form input:focus {
  border: solid 1px #F99E4C;
}
.registro .form .form-control,
.registro .form .form-select-sm {
  background-color: #ededed;
  border: none;
  color: #F36F38;
  font-weight: 600;
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.75;
  border-radius: 4px;
  width: 80%;
  margin: 5% auto 0;
  padding-left: 20px;
}
.registro .form .form-control::placeholder,
.registro .form .form-select-sm::placeholder {
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}
.registro .form select {
  color: #F99E4C !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: #FFFFFF;
  font-size: 1.4rem !important;
  line-height: 1;
}
@media (max-width: 480px) {
  .registro .form p {
    padding: 0px 4% 20px;
  }
}
.registro .form .send {
  background: #F99E4C;
  background: linear-gradient(180deg, #f99e4c 0%, #f36f38 100%);
  border: solid 2px #FFFFFF;
  border-radius: 15px;
  padding: 16px 30px;
  color: #FFFFFF;
  font-weight: 800;
  transition: all 0.5s;
}
.registro .form .send:hover {
  color: #0C00BF;
  transition: 0.5s;
}
@media (max-width: 480px) {
  .registro .form .send {
    width: 80%;
  }
}
.registro .form ul {
  list-style-type: none;
  padding: 0;
}
.registro .form ul li {
  display: inline-block;
  width: 100%;
  margin: 0px 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: #FFFFFF;
  color: #F99E4C;
  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: #FFFFFF;
  color: #F99E4C;
}
.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: #F99E4C;
  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: 8px;
  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 {
  width: 80%;
  margin: 20px auto;
}
.registro .form .nav-tabs li {
  padding: 0;
  width: 50%;
  font-weight: bold;
  background-color: transparent;
}
.registro .form .nav-tabs li :hover {
  background-color: transparent;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px #F36F38;
  border: none;
  border-radius: none;
  transition: none;
}
.registro .form .nav-tabs li button {
  width: 100%;
  margin: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4em;
  padding: 20px;
  font-weight: bold;
  border: none;
  text-decoration: underline;
  text-underline-offset: 12px;
}
.registro .form .nav-tabs li button.active {
  width: 100%;
  margin: auto;
  color: #FFFFFF;
  text-shadow: 2px 2px 2px #F36F38;
  border: none;
  background: #6AC569;
  background: transparent;
  padding: 20px;
  text-decoration: underline;
  text-underline-offset: 12px;
}
.registro .form .nav-tabs li.nav-link {
  border: none;
}
.registro .form .legals {
  width: 90%;
  margin: 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.registro .form .legals label {
  font-size: 14px;
  font-weight: 100;
  color: #FFFFFF;
  vertical-align: middle !important;
  margin-top: 6px;
  padding-left: 6px;
}
.registro .form .legals input {
  background-color: rgba(243, 111, 56, 0.6) !important;
  border-radius: 4px !important;
}
.registro .form .legals a {
  color: #FFFFFF;
  font-weight: 900;
  font-size: 14px;
}
.registro .form .tab-content {
  width: 100%;
  background-color: transparent;
  max-width: 550px;
  margin: 0 auto;
}
.registro .form .tab-content label {
  margin-bottom: 0px;
}
.registro .hiden {
  display: none !important;
}
.registro .consulta-p {
  font-size: 12px;
  font-weight: 600;
}
.registro .form-title {
  width: 90%;
  text-align: center;
  padding-top: 20px;
  margin: auto;
}
.registro .form-title h4 {
  font-weight: 700;
  font-size: 1.6em;
  color: #FFFFFF;
  text-shadow: 2px 2px 2px #F36F38;
}
.registro .form-title p {
  font-size: 1.2em !important;
  text-shadow: 2px 2px 2px #F36F38;
  padding: 0 2%;
}
.file-upload {
  margin-top: 10px;
}
.file-upload p {
  font-size: 1em !important;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 8px;
}
.file-upload .image-box {
  margin: 24px auto;
  height: 65px;
  width: 65px;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  border: 3px solid #F36F38;
  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: #F36F38;
  margin-top: 10px;
  font-weight: 500;
  font-size: 40px;
}
.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: 60px;
    width: 60px;
  }
  .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%;
}
/*** Mobile ***/
@media (max-width: 767px) {
  .registro {
    background: #211257;
  }
  .registro .cont-w {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .registro .campania {
    background: url("../img/backg/BG-home.png") center center;
    background-size: cover;
    padding: 120px 0px 40px;
  }
  .registro .form .legals label {
    font-size: 16px;
    padding-left: 6px;
  }
  .registro .form .legals input {
    margin-right: 0px;
    border-radius: 4px !important;
  }
  .registro .form .legals a {
    color: #FFFFFF;
    font-weight: 900;
    font-size: 16px;
  }
}
/*** Tablet ***/
@media (min-width: 768px) and (max-width: 991px) {
  .registro {
    background: #211257;
  }
  .registro .cont-w {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .registro .campania {
    background: url("../img/backg/BG-home.png") center center;
    background-size: cover;
    padding: 120px 0px 40px;
  }
  .registro .form {
    margin-top: 40px;
  }
}
/* ==========
Dinamic
========== */
#dinamic {
  overflow-x: hidden;
  background: #FFFFFF;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  /* Ondas decorativas a la izquierda */
  /* Puntos decorativos a la derecha */
}
#dinamic .cont-w {
  max-width: 1640px;
  background-color: transparent;
}
#dinamic .img-logo1 {
  text-align: center;
  margin-bottom: 60px;
}
#dinamic .img-logo1 img {
  height: 80px;
}
#dinamic .pil1 {
  width: 450px;
  margin: 20px auto;
  background: #2679FE;
  background: linear-gradient(180deg, #2679fe 0%, #642bed 80%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 38%;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  position: relative;
}
#dinamic .pil1 .iconp {
  width: 180px;
  height: 180px;
  align-content: center;
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.125);
  margin: 10px auto;
}
#dinamic .pil1 .iconp img {
  height: 100px;
}
#dinamic .pil1 a {
  color: #F36F38;
}
#dinamic .pil1 h4 {
  margin-top: 40px;
  font-size: 2.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f5e102;
  margin-bottom: 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
#dinamic .pil1 span {
  color: #FFFFFF;
  font-size: 1.3em;
}
#dinamic .pil1 p {
  max-width: 320px;
  margin: 5px auto;
  font-weight: 600;
  font-size: 1.2em;
  color: #FFFFFF;
}
#dinamic .txt2 {
  margin: 60px auto 40px;
}
#dinamic .txt2 .cont-iz {
  display: flex;
  align-items: center;
}
#dinamic .txt2 .cont-iz p {
  text-align: left;
  color: #FFFFFF;
  padding: 10px;
  font-size: 1.4em;
  width: 95%;
  margin: auto;
}
#dinamic .txt2 .cont-der {
  text-align: center;
}
#dinamic .txt2 .cont-der img {
  margin: 10px auto;
}
#dinamic .decoracion-izq {
  position: absolute;
  left: -250px;
  top: 40%;
  width: 550px;
  height: 550px;
  background: url('../img/backg/elemento2.png') no-repeat left center;
  background-size: contain;
  z-index: 0;
}
#dinamic .decoracion-der {
  position: absolute;
  right: -150px;
  top: 10%;
  width: 350px;
  height: 350px;
  background: url('../img/backg/elemento1.png') no-repeat left center;
  background-size: contain;
  z-index: 0;
}
#dinamic .title {
  max-width: 90%;
  margin: 0 auto 40px;
}
#dinamic .title h2 {
  position: relative;
  font-size: 2.8em;
  color: #0C00BF;
  font-weight: 800;
  text-align: left;
}
#dinamic .title span {
  font-size: 0.5em;
  font-weight: 400;
  text-transform: uppercase;
}
/*** Mobile ***/
@media (max-width: 767px) {
  #dinamic {
    padding-top: 100px;
    padding-bottom: 20px;
    /* Ondas decorativas a la izquierda */
    /* Puntos decorativos a la derecha */
  }
  #dinamic .pil1 {
    width: 450px;
    margin: 20px auto;
  }
  #dinamic .pil1 .iconp {
    width: 120px;
    height: 120px;
    margin: 10px auto;
  }
  #dinamic .pil1 .iconp img {
    height: 60px;
  }
  #dinamic .pil1 a {
    color: #F36F38;
  }
  #dinamic .pil1 h4 {
    margin-top: 40px;
    font-size: 1.8em;
  }
  #dinamic .pil1 span {
    color: #FFFFFF;
    font-size: 1.6em;
  }
  #dinamic .pil1 p {
    margin: 5px auto;
    font-size: 1.2em;
  }
  #dinamic .title {
    max-width: 90%;
    margin: 0 auto 40px;
  }
  #dinamic .title h2 {
    font-size: 2em;
    text-align: center;
  }
  #dinamic .title span {
    font-size: 0.5em;
  }
  #dinamic .decoracion-izq {
    left: -250px;
    top: 60%;
    width: 550px;
    height: 550px;
  }
  #dinamic .decoracion-der {
    right: -180px;
    top: 20%;
    width: 450px;
    height: 450px;
  }
}
/* ==========
Awward
========== */
#Awwards {
  overflow-x: hidden;
  background: #FFFFFF;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding-top: 100px;
  padding-bottom: 60px;
}
#Awwards .cont-w {
  max-width: 1640px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ebf9fc;
  border-radius: 25px;
  margin: auto;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
}
#Awwards .img-logo1 {
  text-align: center;
  margin-bottom: 60px;
}
#Awwards .img-logo1 img {
  height: 80px;
}
#Awwards .contaw {
  max-width: 450px;
  margin: 20px auto;
  border-radius: 25px;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
}
#Awwards .contaw .img-aw {
  text-align: center;
}
#Awwards .contaw a {
  color: #F36F38;
}
#Awwards .contaw h4 {
  margin-top: 40px;
  font-size: 2.6em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}
#Awwards .contaw span {
  font-size: 0.6em;
  font-weight: 800;
}
#Awwards .contaw p {
  font-weight: 600;
  font-size: 1.2em;
}
#Awwards .contaw .copy {
  font-size: 0.9em;
  margin-bottom: 8px;
}
#Awwards .cont-info1 {
  background: #62d4ee;
  padding: 30px 40px 10px;
}
#Awwards .cont-info1 .img-aw img {
  max-height: 160px;
}
#Awwards .cont-info1 a {
  color: #F36F38;
}
#Awwards .cont-info1 h4 {
  color: #0C00BF;
}
#Awwards .cont-info1 p {
  color: #212529;
  width: 60%;
}
#Awwards .cont-info2 {
  background: #FFFFFF;
  padding: 40px;
}
#Awwards .cont-info2 .img-aw img {
  max-height: 290px;
}
#Awwards .cont-info2 a {
  color: #F36F38;
}
#Awwards .cont-info2 h4 {
  color: #0C00BF;
}
#Awwards .cont-info2 span {
  color: #0C00BF;
}
#Awwards .cont-info2 p {
  color: #212529;
  width: 60%;
}
#Awwards .cont-info3 {
  background: #6246f1;
  padding: 60px 40px;
}
#Awwards .cont-info3 a {
  color: #F36F38;
}
#Awwards .cont-info3 h4 {
  color: #FFFFFF;
}
#Awwards .cont-info3 span {
  color: #FFFFFF;
}
#Awwards .cont-info3 p {
  color: #FFFFFF;
  width: 80%;
}
#Awwards .txt2 {
  margin: 60px auto 40px;
}
#Awwards .txt2 .cont-iz {
  display: flex;
  align-items: center;
}
#Awwards .txt2 .cont-iz p {
  text-align: left;
  color: #FFFFFF;
  padding: 10px;
  font-size: 1.4em;
  width: 95%;
  margin: auto;
}
#Awwards .txt2 .cont-der {
  text-align: center;
}
#Awwards .txt2 .cont-der img {
  margin: 10px auto;
}
#Awwards .title {
  max-width: 90%;
  margin: auto;
  margin-bottom: -80px;
}
#Awwards .title h2 {
  font-size: 2.8em;
  color: #0C00BF;
  font-weight: 800;
}
#Awwards .title span {
  font-size: 0.5em;
  font-weight: 400;
  text-transform: uppercase;
}
/*** Mobile ***/
@media (max-width: 767px) {
  #Awwards {
    padding-top: 160px;
    padding-bottom: 60px;
  }
  #Awwards .contaw {
    margin: 10px auto;
  }
  #Awwards .contaw h4 {
    margin-top: 40px;
    font-size: 2em;
  }
  #Awwards .contaw span {
    font-size: 0.5em;
  }
  #Awwards .contaw p {
    font-size: 1em;
  }
  #Awwards .cont-info1 {
    background: #62d4ee;
    padding: 40px;
  }
  #Awwards .cont-info1 .img-aw img {
    max-height: 200px;
  }
  #Awwards .cont-info2 {
    background: #FFFFFF;
    padding: 40px;
  }
  #Awwards .cont-info2 .img-aw img {
    max-height: 200px;
  }
  #Awwards .cont-info3 {
    background: #6246f1;
    padding: 40px;
  }
  #Awwards .cont-info3 .img-aw img {
    max-height: 200px;
  }
  #Awwards .title {
    max-width: 90%;
    margin: 0 auto 40px;
  }
  #Awwards .title h2 {
    font-size: 2em;
    text-align: center;
  }
  #Awwards .title span {
    font-size: 0.5em;
  }
}
/*** Tablet ***/
@media (min-width: 768px) and (max-width: 991px) {
  #Awwards {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  #Awwards .contaw {
    max-width: 100%;
    margin: 10px auto;
  }
  #Awwards .contaw h4 {
    margin-top: 40px;
    font-size: 2em;
  }
  #Awwards .contaw span {
    font-size: 0.5em;
  }
  #Awwards .contaw p {
    font-size: 1em;
  }
  #Awwards .cont-info1 {
    background: #62d4ee;
    padding: 40px;
  }
  #Awwards .cont-info1 .img-aw img {
    max-height: 200px;
  }
  #Awwards .cont-info2 {
    background: #FFFFFF;
    padding: 66px;
  }
  #Awwards .cont-info2 .img-aw img {
    max-height: 200px;
  }
  #Awwards .cont-info3 {
    background: #6246f1;
    padding: 40px;
  }
  #Awwards .cont-info3 .img-aw img {
    max-height: 200px;
  }
  #Awwards .title {
    max-width: 90%;
    margin: 0 auto 40px;
  }
  #Awwards .title h2 {
    font-size: 2em;
    text-align: center;
  }
  #Awwards .title span {
    font-size: 0.5em;
  }
}
/*** Except ***/
@media (min-width: 992px) and (max-width: 1199px) {
  #Awwards .contaw {
    margin: 10px auto;
  }
  #Awwards .contaw h4 {
    margin-top: 20px;
    font-size: 1.8em;
  }
  #Awwards .contaw span {
    font-size: 0.5em;
  }
  #Awwards .contaw p {
    font-size: 1.2em;
  }
  #Awwards .cont-info1 {
    background: #62d4ee;
    padding: 40px;
  }
  #Awwards .cont-info1 .img-aw img {
    max-height: 140px;
  }
  #Awwards .cont-info2 {
    background: #FFFFFF;
    padding: 50px;
  }
  #Awwards .cont-info2 .img-aw img {
    max-height: 240px;
  }
  #Awwards .cont-info3 {
    background: #6246f1;
    padding: 30px;
  }
  #Awwards .cont-info3 .img-aw img {
    max-height: 330px;
  }
  #Awwards .title {
    margin-bottom: 0px;
  }
}
/* ==========
Buy
========== */
#buy {
  position: relative;
  background: #FFFFFF;
  overflow-x: hidden;
  /* Ondas decorativas a la izquierda */
  /* Puntos decorativos a la derecha */
}
#buy .title {
  position: relative;
  max-width: 90%;
  margin: auto;
}
#buy .title h2 {
  text-align: center;
  font-size: 2.2em;
  color: #0C00BF;
  font-weight: 800;
  margin-bottom: 60px;
}
#buy .title span {
  font-size: 0.5em;
  font-weight: 400;
  text-transform: uppercase;
}
#buy .cont-w {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
}
#buy .btn {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 90px;
  border-radius: 12px;
  transition: 0.5s;
  margin-top: 30px;
  text-decoration: none;
  color: #FFFFFF;
  background: #F99E4C;
  background: linear-gradient(180deg, #f99e4c 0%, #f36f38 100%);
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#buy .btn:hover {
  color: #f5e102;
}
#buy .product-inf {
  position: relative;
  text-align: center;
  margin: 0px auto 30px auto;
}
#buy .product-inf .product {
  background: #FFFFFF;
  width: 100%;
  padding: 15px 10px;
  border-radius: 15px;
  margin: 0 auto;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#buy .product-inf .product img {
  max-width: 80%;
}
#buy .product-inf .product p {
  text-align: center;
  font-size: 14px;
  line-height: 1em;
  margin: 5px 0 10px 0;
  font-weight: 600;
  padding: 5px 5px 8px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #212529;
}
#buy .product-inf .product i {
  vertical-align: middle;
}
#buy .product-inf .product .copy {
  height: auto;
  padding-bottom: 0px;
  color: #3A669C;
}
#buy .product-inf .product .btns {
  background: #3A669C;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 35px;
  transition: 0.5s;
  text-decoration: none;
  text-align: left;
  color: #FFFFFF;
  margin-top: 5px;
}
#buy .product-inf .product .btns a {
  color: #FFFFFF;
  text-decoration: none;
}
#buy .product-inf .product .btns a:hover {
  color: #f5e102;
}
#buy .product-inf .product .btns:hover {
  color: #f5e102;
}
#buy .product-inf .product:hover {
  transform: scale(1.03);
}
#buy .product-inf .info {
  width: 100%;
  margin: 0 auto;
}
#buy .decoracion-izq {
  position: absolute;
  left: 10%;
  top: 10%;
  width: 400px;
  height: 400px;
  background: url('../img/backg/elemento1.png') no-repeat left center;
  background-size: contain;
  z-index: 0;
}
#buy .decoracion-der {
  position: absolute;
  right: 90px;
  top: 50%;
  width: 450px;
  height: 450px;
  background: url('../img/backg/elemento2.png') no-repeat left center;
  background-size: contain;
  z-index: 0;
}
/*** Mobile ***/
@media (max-width: 767px) {
  #buy {
    /* Ondas decorativas a la izquierda */
    /* Puntos decorativos a la derecha */
  }
  #buy .product-inf {
    margin-bottom: 0px;
    padding: 0;
    margin-top: 0px;
  }
  #buy .cont-w {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  #buy .logo-prin {
    text-align: center !important;
  }
  #buy .logo-prin img {
    margin-left: 0px !important;
  }
  #buy .info {
    width: 100% !important;
    margin: 0 auto;
  }
  #buy .title {
    position: relative;
    max-width: 90%;
    margin: auto;
  }
  #buy .title h2 {
    font-size: 2em;
  }
  #buy .title span {
    font-size: 0.5em;
  }
  #buy .decoracion-izq {
    left: -30px;
    top: 20%;
    width: 400px;
    height: 400px;
  }
  #buy .decoracion-der {
    position: absolute;
    right: -60px;
    top: 60%;
    width: 450px;
    height: 450px;
  }
}
/*** Tablet ***/
@media (min-width: 768px) and (max-width: 991px) {
  #buy {
    /* Ondas decorativas a la izquierda */
    /* Puntos decorativos a la derecha */
  }
  #buy .cont-w {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #buy .info {
    width: 100% !important;
    margin: 0 auto;
  }
  #buy .product-inf {
    margin-bottom: 20px;
    padding: 0 4%;
    margin-top: 0px;
  }
  #buy .logo-prin {
    text-align: center !important;
  }
  #buy .logo-prin img {
    margin-left: 0px !important;
  }
  #buy .product p {
    font-size: 16px;
    line-height: 1em;
    margin: 5px 0 20px 0;
    font-weight: 600;
    height: 50px;
    padding: 5px 15px 0 15px !important;
    padding-bottom: 8px;
    text-align: center;
  }
  #buy .product .btns {
    font-weight: 600;
    font-size: 18px !important;
    padding: 6px 15px !important;
    border-radius: 12px;
    transition: 0.5s;
    text-decoration: none;
    text-align: left;
    width: 80% !important;
  }
  #buy .product .btns a {
    text-decoration: none;
    color: #FFFFFF;
  }
  #buy .product .btns a:hover {
    color: #f5e102;
  }
  #buy .product .btns:hover {
    color: #f5e102;
  }
  #buy .decoracion-izq {
    left: -150px;
    top: 20%;
    width: 400px;
    height: 400px;
  }
  #buy .decoracion-der {
    position: absolute;
    right: -200px;
    top: 60%;
    width: 450px;
    height: 450px;
  }
}
/*** Except ***/
/* ==========
Footer
========== */
#footer {
  background-color: #642BED;
  border-top: 2px solid #FFFFFF;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  width: 95%;
  margin: auto;
  background: #642BED;
  padding: 30px 0 10px 0;
}
#footer .footer-top .footer-info {
  /*margin: ;*/
}
#footer .footer-top .footer-info p {
  font-size: 18px;
  margin: 0 auto;
  font-family: sans-serif;
  color: #fff;
  width: auto;
}
#footer .footer-top .footer-info span {
  font-size: 22px;
  line-height: 1.4em;
}
#footer .footer-newsletter .logo-1 {
  width: auto;
  height: 50px;
}
#footer .footer-newsletter .logo-2 {
  width: 100px;
  height: auto;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
/* ==========
Modal
========== */
.modal-content {
  background: url("../img/backg/BG-home.png") center center;
  background-size: cover;
  border-radius: 15px;
  border: 3px solid #F99E4C;
}
.modal-content .modal-body {
  background-color: transparent;
  border: none;
  padding-top: 20px;
  padding-bottom: 0px;
}
.modal-content .modal-body .post-all {
  max-width: 600px;
  margin: 20px auto;
}
.modal-content .modal-body .post-all .inst-post {
  background-color: #FFFFFF;
  padding: 15px;
  border: 2px solid #F36F38;
  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: #F36F38;
  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: #F36F38;
  font-size: 1.4em;
}
.modal-content .modal-body .post-all .inst-post h5 {
  color: #212529;
  font-weight: 900;
  font-size: 1.2em;
  text-align: center;
}
.modal-content .modal-body .post-all .inst-post p {
  text-align: center;
  color: #212529;
  font-weight: 600;
  font-size: 0.8em;
}
.modal-content .modal-body .post-all .inst-post a {
  color: #212529;
}
.modal-content .modal-body .post-all .inst-post a:hover {
  color: #F36F38;
}
.modal-content .modal-body .post-all .img-mod {
  text-align: center;
}
.modal-content .modal-body .post-all .img-mod img {
  height: 350px;
}
.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: #F99E4C;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .modal-content {
    background: url("../img/backg/BG-home.png") center center;
    background-size: cover;
  }
  .modal-content .modal-body {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .modal-content .modal-body .post-all {
    margin: 20px auto;
  }
  .modal-content .modal-body .post-all .inst-post h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .modal-content .modal-body .post-all .inst-post i {
    vertical-align: top;
    font-size: 1.2em;
  }
  .modal-content .modal-body .post-all .inst-post h5 {
    font-size: 1em;
  }
  .modal-content .modal-body .post-all .inst-post p {
    font-size: 0.8em;
  }
  .modal-content .modal-body .post-all .img-mod {
    text-align: center;
  }
  .modal-content .modal-body .post-all .img-mod img {
    height: 250px;
  }
}
.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);
  }
}
