body {
  background: #254f91;
  background-image: url("../../assets/img/bg-robotica.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.form-check-input:checked {
  background-color: #0b326f;
  border-color: white;
}

a {
  color: white;
  text-decoration: underline;
}

.fnt-damion {
  font-family: 'Damion';
}

.fnt-helvetic {
  font-family: 'helvetic';
}

.fnt-30 {
  font-size: 40px;
}

a:hover {
  color: white;
  text-decoration: underline;
}

.heading img {
  width: 500px;
}

#cover {
  position: relative;
  z-index: 1;
}

#cover img {
  position: fixed;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#info {
  position: relative;
  z-index: 2;
}

.footer {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .footer {
    bottom: -50px;
  }
}

@media (min-width: 1200px) {
  .footer {
    bottom: -60px;
  }
}

.footer img {
  width: 100%;
  object-fit: cover;
}

.form input, .form select {
  height: 45px;
  border: solid 2px transparent;
  margin-bottom: 15px;
  background: rgba( 255 255 255 / 90%);
}

.form .form-check input {
  height: 16px;
}

.form label {
  font-size: 12px;
  margin-bottom: 0px;
}

.form .btn {
  width: 100%;
  background: #254f91;
  color: white;
  transition: .3s;
}

.form .btn:hover {
  background: #0b326f;
  color: white;
}

.form-control:focus, .form-check-input:focus, .form-select:focus {
  border: solid 2px #c4d3f1;
  box-shadow: 0 0 0 .25rem rgba(138,174,208,0.25);
}

.rotate-15 {
  transform: rotate(-5deg);
}

@keyframes blur {
  to {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}

.bg-blur {
  -webkit-transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-animation: blur 0.3s linear forwards;
  -moz-animation: blur 0.3s linear forwards;
  -ms-animation: blur 0.3s linear forwards;
  -o-animation: blur 0.3s linear forwards;
  animation: blur 0.3s linear forwards;
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  animation-delay: .2s;
  filter: blur(10px);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

/* new styles */

.text-green {
  color: #3b9b54;
}

.btn-primary {
  background: #0b326f !important;
  border-color: #0b326f !important;
  color: white !important;
}

.btn-primary:hover {
  background: #06224d !important;
  color: white !important;
  border-color: #06224d!important;
  text-decoration: none;
}

.aspect {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
}

.aspect img {
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.aspect-4-4 {
  padding-top: 100%;
}

.aspect-4-3 {
  padding-top: 75%;
}

.aspect-2-3 {
  padding-top: 120%;
}

.card-drawing {
  background: white;
  padding: 15px;
  border-radius: 10px;
}

.card-drawing a img {
  opacity: 1;
  transition: .3s;
}

.card-drawing a:hover img {
  opacity: .75;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.flickity-page-dots .dot {
  background: white;
}

/* New styles */

.bg-blue {
  background: #0b326f;
}

hr {
  border-top: solid 1px white;
}

.form.selected select {
  margin-bottom: 0;
}

/* CONTADOR DE FECHA */
.count-downt-numbers {
  padding: 12px 10px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgb(40 26 82 / 20%);
  margin: 17px 10px;
  width: 60px;
  font-size: 30px;
  color: var(--primary);
  font-weight: 700;
}

@media (min-width: 576px) {
  .count-downt-numbers {
    padding: 12px 40px;
    font-size: 36px;
    width: 100px;
    border-radius: 30px;
  }
}

@media (min-width: 992px) {
  .count-downt-numbers {
    padding: 12px 40px;
    font-size: 36px;
    width: 150px;
    margin: 17px;
    border-radius: 40px;
  }
}

.name-conut-down {
  font-size: 16px;
}