/* Variables */
/* Helpers */
/* 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: #4636b8;
  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: #7e0a18;
  color: #4636b8;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* ==========
Header
========== */
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  margin-top: 20px;
}
.header .log-sc img {
  height: 70px;
  padding: 5px 0;
  margin: 0px 15px;
}
.header .navbar {
  background: #ffffff;
  padding: 8px 40px;
  border-radius: 240px;
  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);
}
.header.sticked {
  padding: 0;
}
@media (max-width: 1200px) {
  .header {
    padding: 0;
  }
}
@media (max-width: 1279px) {
  .header {
    padding: 5px 0;
    margin-top: 0px;
  }
  .header.sticked {
    padding: 8px 0;
  }
  .log-sc img {
    height: 60px !important;
    margin: 10px 15px 10px 0 !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: #4636b8;
  }
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #7e0a18;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    text-transform: uppercase;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #fff;
    border-bottom: 1px solid #4636b8;
  }
  .navbar .active {
    color: #7e0a18;
    border-bottom: 2px solid #7e0a18;
    border-bottom-width: 50%;
  }
  .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: #ffffff;
    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: #3a669c;
    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: #212529;
    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: #7e0a18 !important;
  }
  .navbar .active {
    background: #4636b8;
    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: #4636b8;
    font-size: 40px;
    font-weight: 500;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 30px;
    text-shadow: 2px 2px 4px #ffffff, -1px -1px 2px #FFFFFF;
  }
  .mobile-nav-hide {
    color: #7e0a18;
    font-size: 40px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    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;
  }
}
/* ==========
Register
========== */
.registro {
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
  background: url("../img/backg/BG_HOME.png") center center;
  background-size: cover;
}
.registro .cont-w {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: transparent;
}
.registro .campania img {
  max-height: 1002px;
}
.registro .form.form-modern {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  max-width: 560px;
  margin: 20px auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(70, 54, 184, 0.14);
  /* Header */
  /* Tabs (segmented control style) */
  /* Body */
  /* Fields */
  /* Input with icon */
  /* Inputs */
  /* Legals */
  /* Errors */
  /* CTA */
  /* pulse animation */
}
@media (max-width: 991px) {
  .registro .form.form-modern {
    width: 92%;
  }
}
@media (max-width: 480px) {
  .registro .form.form-modern {
    width: 100%;
    max-width: 100% !important;
    border-radius: 16px;
  }
}
.registro .form.form-modern .form-head {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(70, 54, 184, 0.12) 0%, rgba(70, 54, 184, 0.04) 45%, rgba(126, 10, 24, 0.06) 100%);
  border-bottom: 1px solid rgba(70, 54, 184, 0.1);
}
.registro .form.form-modern .form-title {
  display: flex;
  gap: 14px;
  align-items: center;
}
.registro .form.form-modern .form-title i {
  font-size: 22px;
  color: #4636b8;
  margin-top: 2px;
}
.registro .form.form-modern .form-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #212529;
  letter-spacing: 0.2px;
}
.registro .form.form-modern .form-title p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(33, 37, 41, 0.7);
  text-align: left;
  font-weight: 500;
  line-height: 1.35;
}
.registro .form.form-modern .nav-tabs {
  border: 0;
  padding: 12px 14px 0;
  background: #ffffff;
}
.registro .form.form-modern .nav-tabs .nav-item {
  width: 50%;
}
.registro .form.form-modern .nav-tabs .nav-link {
  width: 100%;
  border: 1px solid rgba(70, 54, 184, 0.16);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  padding: 12px 10px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(33, 37, 41, 0.7);
  background: rgba(70, 54, 184, 0.04);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.registro .form.form-modern .nav-tabs .nav-link i {
  font-size: 16px;
  color: rgba(70, 54, 184, 0.7);
}
.registro .form.form-modern .nav-tabs .nav-link:hover {
  color: #212529;
  background: rgba(70, 54, 184, 0.06);
}
.registro .form.form-modern .nav-tabs .nav-link.active {
  background: #4636b8;
  color: #ffffff;
  border-color: #4636b8;
}
.registro .form.form-modern .nav-tabs .nav-link.active i {
  color: #ffffff;
}
@media (max-width: 480px) {
  .registro .form.form-modern .nav-tabs .nav-link {
    font-size: 13px;
    padding: 12px 8px;
  }
}
.registro .form.form-modern .tab-content {
  padding: 18px 20px 22px;
  background: #ffffff;
}
@media (max-width: 480px) {
  .registro .form.form-modern .tab-content {
    padding: 16px 14px 18px;
  }
}
.registro .form.form-modern .form-body {
  width: 100%;
}
.registro .form.form-modern .form-grid {
  display: grid;
  gap: 12px;
}
.registro .form.form-modern .field {
  display: grid;
  gap: 6px;
}
.registro .form.form-modern .hint {
  font-size: 12px;
  color: rgba(33, 37, 41, 0.58);
  padding-left: 4px;
}
.registro .form.form-modern .input-icon {
  position: relative;
}
.registro .form.form-modern .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(70, 54, 184, 0.7);
  pointer-events: none;
}
.registro .form.form-modern .input-icon input.form-control {
  padding-left: 44px !important;
}
.registro .form.form-modern input.form-control {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(70, 54, 184, 0.22);
  border-radius: 14px;
  padding: 12px 14px;
  line-height: 1.2;
  color: #212529;
  font-weight: 600;
  width: 100%;
  margin: 0;
  transition: all 0.2s ease;
}
.registro .form.form-modern input.form-control::placeholder {
  color: rgba(33, 37, 41, 0.45);
  font-weight: 600;
}
.registro .form.form-modern input.form-control:focus {
  border-color: rgba(70, 54, 184, 0.65);
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(70, 54, 184, 0.18);
  background: #ffffff;
}
.registro .form.form-modern .legals {
  width: 100%;
  margin: 6px 0 2px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.registro .form.form-modern .legals .form-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
}
.registro .form.form-modern .legals .form-check-input {
  margin-top: 0px;
  border-radius: 6px !important;
  border: 1px solid rgba(70, 54, 184, 0.35);
  background-color: rgba(70, 54, 184, 0.1) !important;
}
.registro .form.form-modern .legals .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(70, 54, 184, 0.18);
}
.registro .form.form-modern .legals .form-check-input:checked {
  background-color: #4636b8 !important;
  border-color: #4636b8 !important;
}
.registro .form.form-modern .legals label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.78);
  line-height: 1.35;
}
.registro .form.form-modern .legals a {
  color: #4636b8;
  font-weight: 800;
  text-decoration: none;
}
.registro .form.form-modern .legals a:hover {
  text-decoration: underline;
}
.registro .form.form-modern .errors {
  width: 100%;
  min-height: 18px;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(126, 10, 24, 0.07);
  border: 1px dashed rgba(126, 10, 24, 0.25);
  color: rgba(126, 10, 24, 0.85);
  font-size: 13px;
  font-weight: 700;
  display: none;
}
.registro .form.form-modern .errors ul {
  list-style: none;
}
.registro .form.form-modern .errors ul li {
  text-align: center;
}
.registro .form.form-modern .errors.show {
  display: block;
}
.registro .form.form-modern .send {
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  width: 100%;
  max-width: 320px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: linear-gradient(180deg, #5544c8 0%, #4636b8 100%);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.registro .form.form-modern .send i {
  margin-right: 8px;
}
.registro .form.form-modern .send:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(70, 54, 184, 0.3);
}
.registro .form.form-modern .send:active {
  transform: translateY(0px);
  opacity: 0.92;
}
@media (max-width: 480px) {
  .registro .form.form-modern .send {
    max-width: 100%;
  }
}
.registro .form.form-modern .microcopy {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(33, 37, 41, 0.55);
  font-weight: 600;
}
.registro .form.form-modern .question {
  margin: 10px auto 0;
  padding: 6px 0;
}
.registro .form.form-modern .question .question-text {
  margin: 0;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}
.registro .form.form-modern .question .btn-help {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  line-height: 0;
  cursor: pointer;
}
.registro .form.form-modern .question .btn-help i {
  font-size: 20px;
  color: #4636b8;
  display: inline-block;
  border-radius: 999px;
  animation: pulseHelp 1.8s ease-in-out infinite;
  transform-origin: center;
}
.registro .form.form-modern .question .btn-help:hover i {
  filter: brightness(0.92);
  transform: scale(1.05);
}
.registro .form.form-modern .question .btn-help:focus-visible {
  outline: none;
}
.registro .form.form-modern .question .btn-help:focus-visible i {
  box-shadow: 0 0 0 4px rgba(70, 54, 184, 0.22);
}
.registro .form.form-modern .question .btn-help:active i {
  transform: scale(0.98);
  animation: none;
}
@keyframes pulseHelp {
  0% {
    box-shadow: 0 0 0 0 rgba(70, 54, 184, 0.35);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(70, 54, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(70, 54, 184, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .registro .form.form-modern .question .btn-help i {
    animation: none !important;
  }
}
.file-upload {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(70, 54, 184, 0.35);
  background: rgba(70, 54, 184, 0.04);
  transition: all 0.2s ease;
}
.file-upload:hover {
  border-color: rgba(70, 54, 184, 0.55);
  background: rgba(70, 54, 184, 0.06);
}
.file-upload .controls {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.file-upload.has-file {
  border-style: solid;
  border-color: rgba(70, 54, 184, 0.25);
  background: rgba(70, 54, 184, 0.03);
}
.file-upload .image-box {
  height: 64px;
  width: 64px;
  border-radius: 16px;
  border: 1px solid rgba(70, 54, 184, 0.25);
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.file-upload .image-box i {
  font-size: 26px;
  color: #4636b8;
  font-weight: 900;
}
.file-upload .image-box img {
  height: 100%;
  width: 100%;
  display: none;
  object-fit: cover;
  object-position: 50% 50%;
}
.file-upload .image-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(70, 54, 184, 0.18);
}
.file-upload .upload-meta {
  min-width: 0;
}
.file-upload .upload-meta p {
  margin: 0;
  font-size: 14px !important;
  color: #212529;
  font-weight: 900;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}
.file-upload .upload-meta small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(33, 37, 41, 0.6);
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .file-upload {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .file-upload .image-box {
    margin: 0 auto;
  }
  .file-upload .upload-meta p,
  .file-upload .upload-meta small {
    text-align: center;
  }
}
/*** Mobile ***/
@media (max-width: 767px) {
  .registro {
    background: url("../img/backg/BG_HOME_mb.png") center center;
  }
  .registro .cont-w {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: transparent;
  }
  .registro .campania img {
    max-height: 480px;
  }
  .registro .form.form-modern .nav-tabs {
    padding: 10px 10px 0;
  }
  .registro .form.form-modern .nav-tabs .nav-link {
    font-size: 13px;
  }
}
/*** Tablet ***/
@media (min-width: 768px) and (max-width: 991px) {
  .registro {
    background: url("../img/backg/BG_HOME_mb.png") center center;
  }
  .registro .cont-w {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: transparent;
  }
  .registro .campania img {
    max-height: 680px;
  }
  .registro .form.form-modern .nav-tabs .nav-link {
    font-size: 14px;
  }
}
/*** laptop ***/
@media (min-width: 992px) and (max-width: 1450px) {
  .registro {
    background: url("../img/backg/BG_HOME.png") center center;
  }
  .registro .cont-w {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: transparent;
  }
  .registro .campania img {
    max-height: 640px;
  }
}
/*** laptop ***/
@media (min-width: 1451px) and (max-width: 1980px) {
  .registro {
    background: url("../img/backg/BG_HOME.png") center center;
  }
  .registro .cont-w {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background-color: transparent;
  }
  .registro .campania img {
    max-height: 760px;
  }
}
/* ==========
Dinamic
========== */
#dinamic {
  overflow-x: hidden;
  background: #faf5e9;
  width: 100%;
  min-height: 80vh;
}
#dinamic .cont-w {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: transparent;
}
#dinamic .img-logo1 {
  text-align: center;
  margin-bottom: 60px;
}
#dinamic .img-logo1 img {
  height: 120px;
}
#dinamic .txt-1 {
  font-weight: 800;
  text-align: center;
  color: #4636b8;
  font-size: 2em;
  max-width: 800px;
  margin: 60px auto 0px;
}
#dinamic .pil1 {
  width: 350px;
  margin: 20px auto;
  background: #ffffff;
  padding: 30px 10px 20px;
  text-align: center;
  border-radius: 14px;
  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);
}
#dinamic .pil1 .iconp {
  margin: 10px auto;
}
#dinamic .pil1 .iconp img {
  height: 160px;
}
#dinamic .pil1 a {
  color: #7e0a18;
}
#dinamic .pil1 h4 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 800;
  color: #4636b8;
  margin-bottom: 0;
}
#dinamic .pil1 span {
  font-size: 1em;
  text-transform: uppercase;
}
#dinamic .pil1 p {
  max-width: 240px;
  margin: 5px auto;
  font-weight: 600;
  font-size: 1.4em;
}
@media (max-width: 767px) {
  #dinamic .txt-1 {
    padding: 0 20px;
    font-size: 1.4em;
  }
  #dinamic .pil1 {
    padding: 30px 20px;
  }
  #dinamic .pil1 .iconp img {
    height: 120px;
  }
  #dinamic .pil1 a {
    color: #4636b8;
  }
  #dinamic .pil1 h4 {
    font-size: 1.6em;
    color: #4636b8;
  }
  #dinamic .pil1 p {
    font-size: 1.1em;
  }
  #dinamic .cont-w {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #dinamic .img-logo1 {
    text-align: center;
    margin-bottom: 20px;
  }
  #dinamic .img-logo1 img {
    height: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #dinamic .txt-1 {
    padding: 0 20px;
    font-size: 1.6em;
  }
  #dinamic .pil1 {
    padding: 30px 20px;
  }
  #dinamic .pil1 .iconp img {
    height: 140px;
  }
  #dinamic .pil1 a {
    color: #4636b8;
  }
  #dinamic .pil1 h4 {
    font-size: 1.6em;
    color: #4636b8;
  }
  #dinamic .pil1 p {
    font-size: 1.2em;
  }
  #dinamic .cont-w {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  #dinamic .img-logo1 {
    text-align: center;
    margin-bottom: 20px;
  }
  #dinamic .img-logo1 img {
    height: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1450px) {
  #dinamic .txt-1 {
    padding: 0 20px;
    font-size: 1.6em;
  }
  #dinamic .pil1 {
    padding: 30px 20px;
  }
  #dinamic .pil1 .iconp img {
    height: 140px;
  }
  #dinamic .pil1 a {
    color: #4636b8;
  }
  #dinamic .pil1 h4 {
    font-size: 1.6em;
    color: #4636b8;
  }
  #dinamic .pil1 p {
    font-size: 1.1em;
  }
  #dinamic .cont-w {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  #dinamic .img-logo1 {
    text-align: center;
    margin-bottom: 20px;
  }
  #dinamic .img-logo1 img {
    height: 100px;
  }
}
@media (min-width: 1451px) and (max-width: 1980px) {
  #dinamic .txt-1 {
    padding: 0 20px;
    font-size: 1.6em;
  }
  #dinamic .pil1 {
    padding: 30px 20px;
  }
  #dinamic .pil1 .iconp img {
    height: 140px;
  }
  #dinamic .pil1 a {
    color: #4636b8;
  }
  #dinamic .pil1 h4 {
    font-size: 1.6em;
    color: #4636b8;
  }
  #dinamic .pil1 p {
    font-size: 1.1em;
  }
  #dinamic .cont-w {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #dinamic .img-logo1 {
    text-align: center;
    margin-bottom: 20px;
  }
  #dinamic .img-logo1 img {
    height: 100px;
  }
}
/* ==========
Awwards
========== */
.awward {
  width: 100%;
  min-height: 80vh;
  background: url("../img/backg/BG_Premios.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.awward .cont-w {
  padding: 100px 1% 80px;
  background-color: transparent;
}
.awward .awward-cont {
  background-color: transparent;
  margin: 0px auto;
  position: relative;
  color: black;
  z-index: 2;
  max-width: 100%;
}
.awward h2 {
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 3.6em;
  text-transform: uppercase;
}
.awward h2 span {
  font-weight: 800;
}
.awward .din-imag-1 {
  padding: 0px;
  max-width: 100%;
  margin: 5px auto;
}
.awward .din-imag-1 img {
  max-height: 570px;
}
.awward .din-imag-1 h5 {
  text-align: left;
  font-weight: 800;
  font-size: 4.2em;
  margin-top: 20px;
  color: #ffffff;
}
.awward .din-imag-1 p {
  text-align: left;
  padding: 8px 0px;
  font-size: 2.6em;
  font-weight: 600;
  color: #ffffff;
  max-width: 95%;
}
.awward .din-imag-1 span {
  font-size: 0.8em;
}
.awward .swiper {
  margin: 0px 25px;
  text-align: center;
  overflow: hidden;
}
.awward .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.awward .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  width: 20px;
  height: 20px;
}
.awward .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4636b8;
}
/*** Mobile ***/
@media (max-width: 767px) {
  .awward {
    background: url("../img/backg/BG_premios-mb.png");
  }
  .awward .cont-w {
    padding: 120px 1%;
    background-color: transparent;
  }
  .awward h2 {
    font-size: 2.4em;
  }
  .awward .din-imag-1 img {
    max-height: 270px;
  }
  .awward .din-imag-1 h5 {
    text-align: center;
    font-size: 2.2em;
    margin-top: 20px;
  }
  .awward .din-imag-1 p {
    text-align: center;
    font-size: 1.6em;
    max-width: 100%;
  }
  .awward .swiper-pagination {
    margin-top: 10px;
    position: relative;
  }
  .awward .swiper-pagination .swiper-pagination-bullet {
    background-color: #ffffff;
    width: 16px;
    height: 16px;
  }
  .awward .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4636b8;
  }
}
/*** tablet ***/
@media (min-width: 768px) and (max-width: 991px) {
  .awward {
    min-height: 70vh;
    background: url("../img/backg/BG_premios-mb.png");
  }
  .awward .cont-w {
    padding: 80px 1%;
    background-color: transparent;
  }
  .awward h2 {
    font-size: 2.4em;
  }
  .awward .din-imag-1 img {
    max-height: 500px;
  }
  .awward .din-imag-1 h5 {
    text-align: left;
    font-size: 2.6em;
    margin-top: 20px;
  }
  .awward .din-imag-1 p {
    text-align: left;
    font-size: 1.8em;
  }
  .awward .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .awward .swiper-pagination .swiper-pagination-bullet {
    background-color: #ffffff;
    width: 20px;
    height: 20px;
  }
  .awward .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4636b8;
  }
}
/*** laptop ***/
@media (min-width: 992px) and (max-width: 1450px) {
  .awward {
    min-height: 70vh;
    background: url("../img/backg/BG_Premios.png");
  }
  .awward .cont-w {
    padding: 120px 1%;
    background-color: transparent;
  }
  .awward h2 {
    font-size: 3em;
  }
  .awward .din-imag-1 {
    text-align: center;
  }
  .awward .din-imag-1 img {
    margin: auto;
    max-height: 500px;
  }
  .awward .din-imag-1 h5 {
    text-align: left;
    font-size: 3em;
    margin-top: 20px;
  }
  .awward .din-imag-1 p {
    text-align: left;
    font-size: 2em;
  }
  .awward .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .awward .swiper-pagination .swiper-pagination-bullet {
    background-color: #ffffff;
    width: 20px;
    height: 20px;
  }
  .awward .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4636b8;
  }
}
/*** laptop ***/
@media (min-width: 1451px) and (max-width: 1980px) {
  .awward {
    background: url("../img/backg/BG_Premios.png");
  }
  .awward .cont-w {
    padding: 120px 1%;
    background-color: transparent;
  }
  .awward h2 {
    font-size: 3.4em;
  }
  .awward .din-imag-1 img {
    max-height: 500px;
  }
  .awward .din-imag-1 h5 {
    text-align: left;
    font-size: 3em;
    margin-top: 20px;
  }
  .awward .din-imag-1 p {
    text-align: left;
    font-size: 2.2em;
  }
  .awward .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .awward .swiper-pagination .swiper-pagination-bullet {
    background-color: #ffffff;
    width: 20px;
    height: 20px;
  }
  .awward .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4636b8;
  }
}
/* ==========
Buy
========== */
#buy {
  background: #faf5e9;
}
#buy h2 {
  color: #4636b8;
  text-align: center;
  margin: 40px auto;
  font-weight: 800;
  font-size: 3.6em;
}
#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: #3a669c;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#buy .btn:hover {
  color: #ffffff;
  background: #4636b8;
}
#buy .product-inf {
  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;
  height: 49px;
  padding: 5px 5px 8px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #212529;
}
#buy .product-inf .product i {
  vertical-align: middle;
}
#buy .product-inf .product .btns {
  background: #3a669c;
  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: #ffffff;
  margin-top: 5px;
}
#buy .product-inf .product .btns a {
  color: #ffffff;
  text-decoration: none;
}
#buy .product-inf .product .btns:hover {
  color: #4636b8;
  background: #4636b8;
}
#buy .product-inf .product:hover {
  transform: scale(1.03);
}
#buy .product-inf .info {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #buy .cont-w {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 988px) {
  #buy .product-inf {
    margin-bottom: 90px;
    padding: 0 4%;
    margin-top: 0px;
  }
  #buy .logo-prin {
    text-align: center !important;
  }
  #buy .logo-prin img {
    margin-left: 0px !important;
  }
}
@media (max-width: 992px) {
  #buy .info {
    width: 100% !important;
    margin: 0 auto;
  }
}
@media (min-width: 500px) {
  .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;
  }
  .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;
  }
  .product .btns a {
    text-decoration: none;
    color: #ffffff;
  }
  .product .btns a:hover {
    color: #4636b8;
  }
  .product .btns:hover {
    color: #4636b8;
  }
}
/* ==========
Footer
========== */
#footer {
  background-color: #3a669c;
  border-top: 2px solid #ffffff;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  width: 95%;
  margin: auto;
  background: #3a669c;
  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: 60px;
}
#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-success {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  /* Botón */
  /* ==========
  Animación SVG
  ========== */
  /* ==========
  Responsive
  ========== */
  /* Mobile */
  /* Tablet */
  /* Laptop */
  /* Desktop */
}
.modal-success .modal-body {
  padding: 26px 26px 10px;
  background: #ffffff;
}
.modal-success .modal-footer {
  border-top: 1px solid rgba(70, 54, 184, 0.14);
  padding: 14px 18px 20px;
  background: #ffffff;
}
.modal-success .modal-success-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.modal-success .success-title {
  margin-top: 14px;
}
.modal-success .success-title h3 {
  font-size: 22px;
  font-weight: 900;
  color: #212529;
  letter-spacing: 0.2px;
}
.modal-success .success-title p {
  font-size: 13px;
  font-weight: 700;
  color: rgba(33, 37, 41, 0.7);
  line-height: 1.45;
  margin: 0 auto;
  max-width: 460px;
}
.modal-success .modal-leg {
  margin-top: 14px;
}
.modal-success .modal-leg p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(33, 37, 41, 0.6);
  line-height: 1.4;
}
.modal-success .modal-leg a {
  color: #4636b8;
  font-weight: 900;
  text-decoration: none;
}
.modal-success .modal-leg a:hover {
  text-decoration: underline;
}
.modal-success .btn.btn-secondary.mx-auto {
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
  width: 100%;
  max-width: 320px;
  background: linear-gradient(180deg, #5544c8 0%, #4636b8 100%);
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.modal-success .btn.btn-secondary.mx-auto:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(70, 54, 184, 0.3);
  color: #ffffff;
}
.modal-success .btn.btn-secondary.mx-auto:active {
  transform: translateY(0);
  opacity: 0.92;
}
.modal-success .btn.btn-secondary.mx-auto:focus {
  box-shadow: 0 0 0 0.25rem rgba(70, 54, 184, 0.2);
}
.modal-success .success-anim {
  width: 96px;
  height: 96px;
  margin: 8px auto 0;
  display: grid;
  place-items: center;
}
.modal-success .success-svg {
  width: 96px;
  height: 96px;
  display: block;
}
.modal-success .success-circle {
  fill: rgba(22, 163, 74, 0.1);
  stroke: rgba(22, 163, 74, 0.25);
  stroke-width: 3;
  stroke-linecap: round;
  /* “Dibujo” del círculo */
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  animation: circleDraw 0.55s ease-out forwards;
}
.modal-success .success-check {
  fill: none;
  stroke: #16a34a;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* “Dibujo” de la paloma */
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkDraw 0.35s 0.35s ease-out forwards;
}
@keyframes circleDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 767px) {
  .modal-success {
    border-radius: 16px;
  }
  .modal-success .modal-body {
    padding: 18px 14px 8px;
  }
  .modal-success .success-anim,
  .modal-success .success-svg {
    width: 84px;
    height: 84px;
  }
  .modal-success .success-title h3 {
    font-size: 20px;
  }
  .modal-success .btn.btn-secondary.mx-auto {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .modal-success .modal-body {
    padding: 22px 20px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1450px) {
  .modal-success .modal-body {
    padding: 26px 26px 12px;
  }
}
@media (min-width: 1451px) and (max-width: 1980px) {
  .modal-success .modal-body {
    padding: 28px 28px 12px;
  }
}
/* ==========
Modal ticket
========== */
#helpticket .modal-footer .btn.btn-secondary {
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
  width: 100%;
  max-width: 180px;
  background: linear-gradient(180deg, #5544c8 0%, #4636b8 100%);
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
#helpticket .modal-footer .btn.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(70, 54, 184, 0.3);
  color: #ffffff;
}
#helpticket .modal-footer .btn.btn-secondary:active {
  transform: translateY(0);
  opacity: 0.92;
}
#helpticket .modal-footer .btn.btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(70, 54, 184, 0.2);
}
.loader-form {
  position: absolute;
  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);
  }
}
