body {
  background: #254f91;
}

.form-check-input:checked {
  background-color: red;
  border-color: lightcoral;
}

a {
  color: lightcoral;
}

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

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

a:hover {
  color: lightcoral;
}

.heading img {
  width: 100%;
}

#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: red;
  color: white;
  transition: .3s;
}

.form .btn:hover {
  background: darkred;
}

.form-control:focus, .form-check-input:focus, .form-select:focus {
  border: solid 2px lightcoral;
  box-shadow: 0 0 0 .25rem rgb(253 13 13 / 25%);
}

#lamp-left {
  position: absolute;
  z-index: 2;
  width: 120px;
  top: -9px;
  left: 0;
  transition: .3s;
}

@media (min-width: 768px) {
  #lamp-left {
    width: 200px;
  }
}

#lamp-right {
  position: absolute;
  z-index: 2;
  width: 120px;
  top: -9px;
  right: 0;
  transition: .3s;
  transform: scaleX(-1);
}

@media (min-width: 768px) {
  #lamp-right {
    width: 200px;
  }
}

.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;
}



#regresar{
  background: darkred;
  color: aliceblue;
}

.btn-socialmedia a {
  display: block;
  width: 40px;
  height: 40px;
  background: darkred;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  transition: .3s;
}

.btn-socialmedia a:hover {
  background: #ffd100;
}


#myDropzone {
  border: 2px dashed #007bff;
  border-radius: 10px;
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}

#myDropzone.dz-drag-hover {
  border-color: #0056b3;
  background-color: #e9f5ff;
}

#myDropzone .dz-message {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

#myDropzone .dz-message span {
  color: #007bff;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}

.guardarImagen {
  display: block;
  margin: 15px auto 0;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.guardarImagen:hover {
  background-color: #0056b3;
}

.dz-preview {
  margin-top: 15px;
}

.dz-preview .dz-image {
  border-radius: 5px;
  overflow: hidden;
}

.dz-remove {
  color: red;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin-top: 10px;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

.dz-remove:hover {
  color: darkred;
}

