@font-face {
  font-family: "helvetica-bold";
  src: url("../fonts/helvetica/helvetica-bold-condensed.otf") format(opentype);
  font-display: swap;
}
@font-face {
  font-family: "helvetica-light";
  src: url("../fonts/helvetica/helvetica-light-condensed.otf") format(opentype);
  font-display: swap;
}
@font-face {
  font-family: "helvetica";
  src: url("../fonts/helvetica/helvetica-condensed.otf") format(opentype);
  font-display: swap;
}
@font-face {
  font-family: "helvetica-extended";
  src: url("../fonts/helvetica/helvetica-bold-extended.otf") format(opentype);
  font-display: swap;
}
@font-face {
  font-family: "helvetica-roman";
  src: url("../fonts/helvetica/helvetica-roman.otf") format(opentype);
  font-display: swap;
}
@font-face {
  font-family: "helvetica-condensed";
  src: url("../fonts/helvetica/helvetica-condensed.otf") format(opentype);
  font-display: swap;
}
@font-face {
  font-family: "montserrat-medium";
  src: url("../fonts/montserrat/montserrat-medium.ttf") format(truetype);
  font-display: swap;
}
.ff-bold {
  font-family: "helvetica-bold";
  font-weight: bold;
}

.ff-light {
  font-family: "helvetica-light";
  font-weight: lighter;
}

.ff-regular {
  font-family: "helvetica";
}

.ff-extended {
  font-family: "helvetica-extended";
}

.ff-roman {
  font-family: "helvetica-roman";
}

.ff-condensed {
  font-family: "helvetica-condensed" !important;
}

.ff-monserrat {
  font-family: "montserrat-medium" !important;
}

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

html,
body {
  max-width: 1440px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.1;
  font-family: "helvetica";
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.text-c-white {
  color: #fff;
}

.bg-c-white {
  background-color: #fff;
}

.text-c-dark {
  color: #000;
}

.bg-c-dark {
  background-color: #000;
}

.text-c-gray {
  color: #858585;
}

.bg-c-gray {
  background-color: #858585;
}

.text-c-light-gray {
  color: #f1f1f1;
}

.bg-c-light-gray {
  background-color: #f1f1f1;
}

.text-c-dark-green {
  color: #284625;
}

.bg-c-dark-green {
  background-color: #284625;
}

.text-c-green {
  color: #498244;
}

.bg-c-green {
  background-color: #498244;
}

.text-c-light-green {
  color: #c7e38b;
}

.bg-c-light-green {
  background-color: #c7e38b;
}

.text-c-blue {
  color: #9bd1f0;
}

.bg-c-blue {
  background-color: #9bd1f0;
}

.bg-i-fondo {
  background-image: url("../imgs/fondos/fondo.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1024px) {
  .bg-i-fondo {
    background-image: url("../imgs/fondos/fondo-2.webp");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.bg-i-fondo-circuitos-new {
  background-image: url("../imgs/fondos/fondo-index-movil-new.webp");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150%;
}
@media (min-width: 1024px) {
  .bg-i-fondo-circuitos-new {
    background-image: url("../imgs/fondos/fondo-index-web-new.webp");
    background-size: contain;
  }
}

.bg-i-circuitos {
  background-image: url("../imgs/fondos/circuito-1.svg"), url("../imgs/fondos/circuito-2.svg"), url("../imgs/fondos/circuito-3.svg");
  background-position: top right, center left, bottom right;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 25%, 12%, 15%;
}

.bg-i-circuitos-registro {
  background-image: url("../imgs/fondos/circuito-4.svg"), url("../imgs/fondos/circuito-2.svg"), url("../imgs/fondos/circuito-3.svg");
  background-position: 100% 13.5rem, 0% 55%, 100% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 20%, 12%, 12%;
}
@media (min-width: 1024px) {
  .bg-i-circuitos-registro {
    background-position: 100% 12rem, 0% 55%, 100% 90%;
  }
}

.bg-i-circuito-1 {
  background-image: url("../imgs/fondos/circuito-1.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 100%;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-none {
  flex: none;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .flex-lg-row {
    flex-direction: row;
  }
}

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

.align-items-flex-end {
  align-items: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-flex-end {
  justify-content: flex-end;
}

.justify-content-flex-start {
  justify-content: flex-start;
}

.justify-content-space-between {
  justify-content: space-between;
}

.justify-content-space-evenly {
  justify-content: space-evenly;
}

.m-0-auto {
  margin: 0 auto;
}

.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-0_5 {
  margin-bottom: 0.5rem;
}

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

.mb-1_5 {
  margin-bottom: 1.5rem;
}

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

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .mb-lg-4 {
    margin-bottom: 4rem;
  }
}

.mt-0 {
  margin-top: 0;
}

.mt-0_5 {
  margin-top: 0.5rem;
}

.mt-0_75 {
  margin-top: 0.75rem;
}

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

.mt-1_5 {
  margin-top: 1.5rem;
}

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

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

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

.ml-0 {
  margin-left: 0;
}

.ml-0_5 {
  margin-left: 0.5rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-0_5 {
  margin-right: 0.5rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.p-0 {
  padding: 0;
}

.p-0_5 {
  padding: 0.5rem;
}

.p-1 {
  padding: 1rem;
}

.p-1_5 {
  padding: 1.5rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}
@media (max-width: 767px) {
  .p-3 {
    padding: 1.5rem;
  }
}

.p-4 {
  padding: 4rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-0_5 {
  padding-top: 0.5rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-0_5 {
  padding-bottom: 0.5rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

@media (min-width: 1024px) {
  .pl-ld-4 {
    padding-left: 4rem;
  }
}

@media (min-width: 1024px) {
  .pr-lg-4 {
    padding-right: 4rem;
  }
}

.gap-0_5 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-1_5 {
  gap: 1.5rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.col-gap-3 {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

.d-grid {
  display: grid;
}

.w-auto {
  width: auto;
}

.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

@media (min-width: 1024px) {
  .w-lg-90 {
    width: 90%;
  }
}

.w-80 {
  width: 80%;
}

@media (min-width: 1024px) {
  .w-lg-80 {
    width: 80%;
  }
}

.w-85 {
  width: 85%;
}

.w-70 {
  width: 70%;
}

.w-65 {
  width: 65%;
}

.w-60 {
  width: 60%;
}

.w-55 {
  width: 55%;
}

.w-50 {
  width: 50%;
}

@media (min-width: 1024px) {
  .w-lg-50 {
    width: 50%;
  }
}

.w-40 {
  width: 40%;
}

@media (min-width: 1024px) {
  .w-lg-40 {
    width: 40%;
  }
}

.w-45 {
  width: 45%;
}

.w-35 {
  width: 35%;
}

.w-30 {
  width: 30%;
}

.w-20 {
  width: 20%;
}

.w-10 {
  width: 10%;
}

.w-5 {
  width: 5%;
}

.vh-100 {
  height: 100vh;
}

.h-100 {
  height: 100%;
}

.min-vh-60 {
  min-height: 60vh;
}

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.form-control {
  background-color: #fff;
  color: #00adee;
  font-family: "helvetica-bold";
  padding: 6px 10px;
  outline: none;
  width: 100%;
  height: 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
}
.form-control::-moz-placeholder {
  color: #858585;
}
.form-control::placeholder {
  color: #858585;
}
.form-control:disabled {
  cursor: not-allowed;
}
.form-control:focus, .form-control:hover {
  transition: all 0.3s;
}

.cont-input-deg {
  background: linear-gradient(90deg, rgba(18, 18, 29, 0) 1%, rgb(0, 173, 238) 65%, rgb(18, 18, 29) 100%);
  padding: 16px 7px 15px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cont-input-deg {
    padding: 14px 5px 12px;
    border-radius: 10px;
  }
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}
.form-group label {
  font-family: "helvetica-bold";
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.input-check {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.input-check label {
  font-size: 1.5rem;
}
.input-check input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.input-check input:disabled {
  cursor: not-allowed;
}
.input-check input:disabled + label {
  cursor: not-allowed;
}
.input-check input:disabled + label:hover {
  cursor: not-allowed;
}
.input-check input:checked + label::before {
  background-image: url("../imgs/iconos/check.webp");
}
.input-check input + label {
  position: relative;
  padding-left: 40px;
}
.input-check input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("../imgs/iconos/checkout.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(90deg, rgb(104, 162, 216) 1%, rgb(161, 209, 218) 32%, rgb(158, 208, 216) 68%, rgb(121, 193, 209) 100%);
  text-align: center;
  font-size: 0.75rem;
}
footer .logo-cargill {
  width: 80px;
}
@media (min-width: 568px) {
  footer {
    font-size: 1.1rem;
    flex-wrap: nowrap;
    text-align: left;
    padding: 2rem 5rem;
    justify-content: space-between;
  }
  footer .logo-cargill {
    width: 120px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul,
ol {
  padding-left: 40px;
}

b,
strong {
  font-family: "helvetica-bold";
}

address {
  font-style: normal;
}

hr {
  border: none;
  border-top: 1px solid #fff;
}

.list-none {
  list-style: none;
}

.fw-normal {
  font-weight: normal;
}

.bor-rad-50 {
  border-radius: 50%;
}

.bor-rad-5 {
  border-radius: 5px;
}

.bor-none {
  border: none;
}

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

.text-upcase {
  text-transform: uppercase;
}

.btn-general {
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-general:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-general:hover {
  transition: all 0.3s;
  scale: 1.05;
}
@media (max-width: 424px) {
  .btn-general {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}

.fs-big {
  font-size: clamp(2.65rem, -0.875rem + 8.333333vw, 3.5rem);
}

.fs-medium {
  font-size: clamp(1.35rem, -0.875rem + 8.333333vw, 2.1rem);
}

.fs-normal {
  font-size: clamp(0.8rem, -0.875rem + 8.333333vw, 1.3rem);
}

.fs-normal-2 {
  font-size: clamp(1.3rem, -0.875rem + 8.333333vw, 1.5rem);
}

.fs-small {
  font-size: clamp(0.7rem, -0.875rem + 8.333333vw, 0.9rem);
}

.separadores {
  background: linear-gradient(90deg, rgb(0, 173, 238) 50%, rgba(255, 255, 255, 0) 100%);
  margin: 1rem auto;
  width: 90%;
  height: 1px;
}

.caja-degradado {
  font-size: clamp(1.75rem, -0.875rem + 8.333333vw, 2.75rem);
  padding: 0.5rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(0, 173, 238) 50%, rgba(255, 255, 255, 0) 100%);
}

.titulos {
  font-size: clamp(1.75rem, -0.875rem + 8.333333vw, 2.75rem);
}

.table {
  border-collapse: collapse;
}
.table thead tr th {
  width: 35%;
  color: #9bd1f0;
  padding: 10px 25px;
  font-size: 1.9rem;
  font-size: clamp(1.35rem, -0.875rem + 8.333333vw, 1.9rem);
  text-align: left;
}
.table tbody tr {
  border-bottom: 1px solid #9bd1f0;
}
.table tbody tr td {
  padding: 15px 25px;
  font-family: "helvetica-light";
  font-size: clamp(1.05rem, -0.875rem + 8.333333vw, 1.55rem);
  vertical-align: text-top;
}
.table tbody tr td:first-child {
  font-family: "helvetica-bold";
}
.table tbody tr:last-child {
  border-bottom: none;
}

.btn-enviar {
  margin-top: 0.5rem;
  font-size: 1.75rem;
  padding: 0.5rem 2rem;
  color: #fff;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(104, 162, 216) 1%, rgb(161, 209, 218) 32%, rgb(158, 208, 216) 68%, rgb(121, 193, 209) 100%);
}

.cont-table {
  overflow-x: auto;
}

.table-ponenecias {
  border-collapse: collapse;
}
.table-ponenecias thead tr {
  background: linear-gradient(90deg, rgb(104, 162, 216) 1%, rgb(161, 209, 218) 32%, rgb(158, 208, 216) 68%, rgb(121, 193, 209) 100%);
}
.table-ponenecias thead tr th {
  padding: 15px 20px;
  font-size: clamp(1.35rem, -0.875rem + 8.333333vw, 1.9rem);
  text-align: left;
}
.table-ponenecias tbody tr {
  border-bottom: 1px solid #9bd1f0;
}
.table-ponenecias tbody tr td {
  padding: 20px 10px;
  font-size: clamp(1.05rem, -0.875rem + 8.333333vw, 1.25rem);
}
.table-ponenecias tbody tr:last-child {
  border-bottom: none;
}

.solo-web {
  display: none;
}
@media (min-width: 658px) {
  .solo-web {
    display: block;
  }
}

@media (min-width: 425px) {
  .solo-movil {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */