/* __________________________________________  */
/* -------------------- BASES ---------------  */
/* __________________________________________  */
@font-face {
  font-family: 'amor_sans_probold';
  src: url("../fonts/amor-sans-pro-webfont.woff2") format("woff2"), url("../fonts/amor-sans-pro-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'amor_sans_probold_italic';
  src: url("../fonts/amorsansprobolditalic-webfont.woff2") format("woff2"), url("../fonts/amorsansprobolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'amor_sans_text_probold';
  src: url("../fonts/amor-sans-text-pro-bold-opentype-webfont.woff2") format("woff2"), url("../fonts/amor-sans-text-pro-bold-opentype-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'amor_sans_text_proitalic';
  src: url("../fonts/amor-sans-text-pro-italic-webfont.woff2") format("woff2"), url("../fonts/amor-sans-text-pro-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'barlowmedium';
  src: url("../fonts/barlow-medium-webfont.woff2") format("woff2"), url("../fonts/barlow-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'barlow_semi_condensedbold';
  src: url("../fonts/barlowsemicondensed-bold-webfont.woff2") format("woff2"), url("../fonts/barlowsemicondensed-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'barlow_semi_condensedregular';
  src: url("../fonts/barlowsemicondensed-regular-webfont.woff2") format("woff2"), url("../fonts/barlowsemicondensed-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

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

img {
  width: 100%;
}

section {
  padding: 5rem 0;
}

@media screen and (max-width: 991.98px) {
  section {
    padding: 3rem 2rem;
  }
}

a {
  text-decoration: none;
  line-height: 1.4rem;
}

p {
  font-family: 'barlowmedium';
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8rem;
}

@media (max-width: 767.98px) {
  p {
    font-size: 1.3rem;
    line-height: 1.4rem;
  }
}

input,
select {
  border-radius: 0.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: white;
  outline: none;
  padding: 0.8rem 1rem;
  width: 100%;
}

.hidden {
  display: none;
}

p.msg-error {
  color: #e74c3c;
  font-family: 'barlow_semi_condensedbold';
}

p.msg-success {
  color: #3c7cc4;
  font-family: 'barlow_semi_condensedbold';
}

/* SCROLL */
.scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body.scroll::-webkit-scrollbar {
  width: 14px;
}

.scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.scroll::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}

.scroll-winners::-webkit-scrollbar-thumb,
.scroll-winners::-webkit-scrollbar-thumb:hover,
.scroll-winners::-webkit-scrollbar-thumb:active {
  background-color: #4a688e;
}

button {
  border: 0;
  padding: 1rem 3rem;
  border-radius: 1rem;
  cursor: pointer;
  font-family: 'barlow_semi_condensedbold';
  font-size: 1.1rem;
}

/* BUTTONS */
button.btn-link {
  background-color: transparent;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  color: #30435c;
  font-size: 1.3rem;
  padding: 0;
}

button.btn-primary {
  background-color: #30435c;
  color: #fff;
  -webkit-transition: background-color 2s ease;
  transition: background-color 2s ease;
}

button.btn-primary:hover {
  background-color: #1f2b3a;
}

button.btn-primary:disabled {
  opacity: 0.7;
  cursor: auto;
}

button.btn-secondary {
  background-color: #3c7cc4;
  color: #fff;
  -webkit-transition: background-color 2s ease;
  transition: background-color 2s ease;
}

button.btn-secondary:hover {
  background-color: #30639d;
}

/* DISPLAY */
.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-none {
  display: none;
}

/* MARGINS */
.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

/* TEXT ALIGN */
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/* FORM - CONTROL */
.form-control {
  margin-bottom: 1.4rem;
  width: 100%;
}

.form-control label {
  color: #a0a0a0;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-control.no-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.form-control input,
.form-control select {
  border: 2px solid #dbdbdb;
  color: #a0a0a0;
}

.form-control input:focus,
.form-control select:focus {
  -webkit-box-shadow: 0 0 0 0.25rem white;
          box-shadow: 0 0 0 0.25rem white;
}

.form-control input::-webkit-input-placeholder,
.form-control select::-webkit-input-placeholder {
  color: #a9a6a6;
}

.form-control input:-ms-input-placeholder,
.form-control select:-ms-input-placeholder {
  color: #a9a6a6;
}

.form-control input::-ms-input-placeholder,
.form-control select::-ms-input-placeholder {
  color: #a9a6a6;
}

.form-control input::placeholder,
.form-control select::placeholder {
  color: #a9a6a6;
}

.form-control label,
.form-control input {
  font-family: 'barlow_semi_condensedregular';
}

.form-control-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .form-control-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* LINKS */
a {
  color: currentColor;
}

a.link,
.link {
  color: #0bbdfd;
  cursor: pointer;
  font-weight: bold;
}

/* __________________________________________  */
/* ---------------- PAGE MAIN ---------------  */
/* __________________________________________  */
.bg-white {
  background-color: #fff;
}

.bg-white .description {
  color: #a0a0a0;
}

.bg-cyan {
  background-color: #b5ebf6;
}

.bg-cyan .description {
  color: #53749f;
  max-width: 790px;
  width: 100%;
}

.bg-gray {
  background-color: #f9f9f9;
}

.container {
  max-width: 950px;
  margin: auto;
}

.strong {
  color: #7a7a7a;
}

.banner-main {
  background-color: #a2ede6;
  overflow: hidden;
  max-height: 520px;
}

.banner-main img {
  max-height: 520px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 767.98px) {
  .banner-main img {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 200px;
  }
}

.banner-main img.banner-desktop {
  display: block;
}

@media (max-width: 767.98px) {
  .banner-main img.banner-desktop {
    display: none;
  }
}

.banner-main img.banner-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .banner-main img.banner-mobile {
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.title {
  color: #3c7cc4;
  font-family: 'barlow_semi_condensedbold';
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}

@media (max-width: 767.98px) {
  .title {
    font-size: 1.6rem;
  }
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.tags p {
  color: #7a7a7a;
  font-weight: bold;
}

@media (max-width: 575.98px) {
  .tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.image-featured img {
  max-width: 350px;
  width: 100%;
}

.section-how-to-participate {
  padding-bottom: 2rem;
  overflow: hidden;
}

/* ----- STEPS -----------------------------  */
.content-steps {
  background-color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  left: -3rem;
  padding: 2rem 4rem;
  position: relative;
}

@media (max-width: 991.98px) {
  .content-steps {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 1.5rem;
    left: 0;
  }
}

.content-steps .subtitle {
  color: #4a688e;
  font-family: 'barlowmedium';
  font-size: 1.4rem;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

@media (max-width: 767.98px) {
  .content-steps .subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 991.98px) {
  .content-steps .steps {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}

.content-steps .steps .step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6rem 1fr;
      grid-template-columns: 6rem 1fr;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .content-steps .steps .step {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.content-steps .steps .step > p {
  color: #ff4145;
  font-family: 'barlow_semi_condensedbold';
  font-size: 1.5rem;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .content-steps .steps .step > p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .content-steps .steps .step > p {
    font-size: 1.4rem;
  }
}

.content-steps .steps .step .content {
  word-break: break-word;
}

.content-steps .steps .step .content p {
  color: #708eb5;
}

.content-steps .steps .step .content a,
.content-steps .steps .step .content .link {
  color: #0bbdfd;
  font-family: 'barlow_semi_condensedbold';
}

.content-steps .steps .step .content a,
.content-steps .steps .step .content p {
  font-size: 1.2rem;
}

.content-steps .steps .description-steps {
  margin-top: 2rem;
}

@media (max-width: 991.98px) {
  .content-steps .steps .description-steps {
    margin-top: 0;
  }
}

.content-steps .steps .description-steps p {
  color: #708eb5;
  font-size: 1.2rem;
}

.content-steps .steps .description-steps p a {
  font-family: 'barlow_semi_condensedbold';
  color: #0bbdfd;
}

.content-steps .image {
  height: 100%;
  max-width: 450px;
  position: absolute;
  right: 2rem;
  top: -2rem;
}

@media (max-width: 991.98px) {
  .content-steps .image {
    display: none;
  }
}

/* ----- FORM -----------------------------  */
.section-form .content-form {
  max-width: 740px;
  position: relative;
}

.section-form .content-form .title {
  margin-bottom: 2rem;
}

.section-form .content-form .input-w-img {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.section-form .content-form .input-w-img img {
  max-width: 55px;
}

@media screen and (max-width: 300px) {
  .section-form .content-form .input-w-img button {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.section-form img {
  max-width: 80px;
}

.section-form img.priest {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@media (max-width: 575.98px) {
  .section-form img.priest {
    top: 2.5rem;
  }
}

@media (max-width: 400px) {
  .section-form img.priest {
    display: none;
  }
}

.section-form .btn-primary {
  width: 60%;
}

@media (max-width: 991.98px) {
  .section-form .btn-primary {
    width: 100%;
  }
}

/* ----- MODAL -----------------------------  */
.modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 4;
}

@media (max-width: 767.98px) {
  .modal {
    padding: 0 1rem;
    width: inherit;
  }
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  color: #3c7cc4;
  padding: 2rem;
}

@media (max-width: 991.98px) {
  .modal-content {
    padding: 1rem;
  }
}

.modal-content .icon {
  text-align: right;
}

.modal-content .icon i {
  font-size: 2.2rem;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .modal-content .icon {
    margin-bottom: 1rem;
  }
}

.modal-content .header {
  text-align: center;
}

.modal-content .body {
  max-height: 450px;
  max-width: 420px;
  padding-right: 1.5rem;
  overflow: auto;
}

.modal-content .body li {
  font-family: 'barlowmedium';
  font-size: 1rem;
  margin-bottom: 12px;
}

/* ----- WINNERS --------------------------  */
.grid-companies {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  max-width: 740px;
}

.grid-companies img {
  max-width: 130px;
}

@media (max-width: 767.98px) {
  .grid-companies {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.list-winners .header,
.list-winners .body .winner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  padding: 10px 1.5rem;
}

@media (max-width: 767.98px) {
  .list-winners .header,
  .list-winners .body .winner {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    padding: 1rem 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .list-winners .header .date,
  .list-winners .body .winner .date {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    text-align: center;
  }
  .list-winners .header .document,
  .list-winners .body .winner .document {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .list-winners .header,
  .list-winners .body .winner {
    padding: 10px;
  }
}

.list-winners p {
  font-size: 1.1rem;
}

@media (max-width: 575.98px) {
  .list-winners p {
    font-size: 1rem;
  }
}

@media (max-width: 300px) {
  .list-winners p {
    font-size: 12px;
  }
}

.list-winners .header {
  background-color: #4a688e;
}

.list-winners .header p {
  color: #fff;
  font-family: 'barlowmedium';
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .list-winners .header .header-dni {
    display: none;
  }
  .list-winners .header .header-winner {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .list-winners .header .header-date {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
}

.list-winners .body {
  background-color: #fff;
  color: #a0a0a0;
  max-height: 308px;
  overflow: auto;
}

.list-winners .body .winner .title {
  display: none;
}

@media (max-width: 767.98px) {
  .list-winners .body .winner .title {
    display: block;
    margin-bottom: 0;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .list-winners .body .winner .title {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .list-winners .body .winner {
    border-bottom: 0.2px solid #a0a0a0;
  }
}

.list-winners .body .winner:last-child {
  border-bottom: 0;
}

.contact-email {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7a7a7a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.contact-email .email {
  padding: 0.6rem;
  border-radius: 50%;
  border: 3px solid currentColor;
}

.contact-email .email i {
  font-size: 1.4rem;
}

@media (max-width: 767.98px) {
  .contact-email {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ---- TERMS ----------------------------  */
.section-terms li {
  font-family: 'barlowmedium';
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* ---- COMPANIES ----------------------------  */
.owl-carousel .owl-item img {
  max-width: 180px;
  width: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  max-height: 100px;
}

.owl-carousel .owl-item {
  min-height: 115px;
}

.carousel-img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

/* ----- FOOTER --------------------------  */
footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ff4145;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  font-family: 'barlowmedium';
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  padding: 2rem 6rem;
  text-align: center;
}

footer img {
  max-width: 240px;
}

footer .col-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}

footer .col-social-media .social-media {
  background-color: #000;
  border-radius: 50%;
  padding: 12px;
}

footer .col-social-media .social-media a {
  line-height: inherit;
}

footer .col-social-media .social-media i {
  color: #fff;
  font-size: 1.5rem;
}

@media (max-width: 991.98px) {
  footer {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  footer {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  footer .copyright {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .logo {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
/*# sourceMappingURL=styles.css.map */