@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.header {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: end;
  align-items: center;
  position: fixed;
  right: 100px;
  top: 0;
  z-index: 10;
}

.header a {
  font-family: "Sofia Sans Extra Condensed";
  font-size: 24px;
  color: lightblue;
}

.logo {
  width: 300px;
  padding: 10px;
}

@media (max-width: 480px) {
  .logo {
    width: 200px;
  }
}
.logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
}

.BG-index {
  background-image: url("..//img/fondo-degrade-2.png");
  width: 100%;
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  z-index: -1;
}

.BG-index > .BG-index-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .BG-index > .BG-index-content {
    margin-top: 30%;
  }
}
.BG-index > .BG-index-content > h1 {
  font-size: 114px;
  text-transform: uppercase;
  margin-top: 50px;
  max-width: 1000px;
  text-align: center;
}

@media (max-width: 768px) {
  .BG-index > .BG-index-content > h1 {
    max-width: 450px;
    font-size: 74px;
  }
}
@media (max-width: 480px) {
  .BG-index > .BG-index-content > h1 {
    max-width: 400px;
    font-size: 55px;
    margin-top: 20px;
  }
}
.BG-index > .BG-index-content > p {
  width: 750px;
  letter-spacing: 1px;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 800px;
}

@media (max-width: 768px) {
  .BG-index > .BG-index-content > p {
    width: 550px;
  }
}
@media (max-width: 480px) {
  .BG-index > .BG-index-content > p {
    width: 350px;
    font-size: 20px;
  }
}
.BG-index > .BG-index-content > .container-bar {
  margin: 0px auto 100px;
  width: 400px;
  text-align: center;
}

@media (max-width: 480px) {
  .BG-index > .BG-index-content > .container-bar {
    margin: 0px auto 50px;
    width: 300px;
  }
}
.progress {
  background: rgba(255, 255, 255, 0.5);
}

.progress-bar {
  height: 14px;
  width: 70%;
  background-color: rgb(122, 181, 244);
}

.percent {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
}

.percent p {
  font-size: 20px;
  letter-spacing: 1px;
}

.BG-index > .BG-index-content > .barraMenu > .side-menu {
  display: none;
}

.BG-index > .BG-index-content .botonesInicio {
  display: flex;
}

@media (max-width: 480px) {
  .BG-index > .BG-index-content .botonesInicio {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 70px;
  }
}
.BG-index > .BG-index-content .botonesInicio .btn-suscribe {
  text-align: center;
  margin-left: 10px;
  color: grey;
  border: none;
  width: 300px;
  padding: 12.5px;
  border-radius: 5px;
  font-family: "Sofia Sans Extra Condensed";
  font-weight: lighter;
  font-size: 20px;
  letter-spacing: 1px;
}

.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  inset: 0;
  display: flex;
  justify-content: center;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  perspective: 1000px;
  padding: 1rem;
  overflow-y: auto;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal__wrapper {
  max-width: 576px;
  padding: 50px;
  background: rgb(122, 181, 244);
  border-radius: 0.75rem;
  transition: 0.2s;
  transition-delay: 0.1s;
  transform: rotateX(-45deg);
  transform-style: preserve-3d;
  margin: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .modal__wrapper {
    max-width: 400px;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .modal__wrapper {
    max-width: 300px;
    padding: 30px;
  }
}
.modal.show .modal__wrapper {
  transform: rotateX(0);
}

.modal__wrapper h3 {
  font-size: 55px;
  font-weight: lighter;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .modal__wrapper h3 {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .modal__wrapper h3 {
    font-size: 35px;
  }
}
.modal__wrapper p {
  font-family: "Sofia Sans Extra Condensed";
  font-size: 24px;
  font-weight: lighter;
  color: #FFF;
  margin-bottom: 50px;
}

.modal__wrapper input {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  outline: none;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  background: #EEE;
  border: 1px solid #DDD;
  transition: 0.2s;
  font-family: "Sofia Sans Extra Condensed";
  font-weight: lighter;
  font-size: 20px;
  letter-spacing: 1px;
}

.modal__wrapper input:focus {
  border-color: #1895DB;
  box-shadow: 0 0 0 0.25rem #A0DDFF;
}

.modal__wrapper .btn-submit-modal {
  font-family: "Sofia Sans Extra Condensed";
  font-weight: lighter;
  background-color: #0f3a67;
  color: #FFF;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 20px;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  margin: 0 5px;
}

.modal__wrapper .btn-cancel-modal {
  font-family: "Sofia Sans Extra Condensed";
  font-weight: lighter;
  background-color: rgba(205, 205, 205, 0.505);
  color: #0f3a67;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 20px;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  margin: 0 5px;
}

.BG-index > .BG-index-content .botonesInicio .btn-comenzar {
  text-align: center;
  margin-left: 10px;
  color: white;
  background-color: rgb(122, 181, 244);
  border: none;
  width: 175px;
  padding: 12.5px;
  border-radius: 5px;
  font-family: "Sofia Sans Extra Condensed";
  font-weight: lighter;
  font-size: 20px;
  letter-spacing: 1px;
  cursor: pointer;
  display: block;
  transform-origin: center;
  transition: 0.5s ease-in-out;
}

.BG-index > .BG-index-content .botonesInicio .btn-comenzar:hover {
  background-color: rgb(92, 166, 245);
}

.whats-float {
  position: fixed;
  transform: translate(115px, 0px);
  bottom: 15%;
  right: 0;
  width: 180px;
  overflow: hidden;
  background-color: #25d366;
  color: #FFF;
  border-radius: 2px 0 0 2px;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.whats-float a span {
  color: white;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 20px;
  font-weight: bolder;
}

.whats-float i {
  font-size: 50px;
  color: white;
  line-height: 35px;
  padding: 12.5px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.whats-float:hover {
  color: #FFFFFF;
  transform: translate(0px, 0px);
}

.whats-float:hover i {
  transform: rotate(360deg);
}

body {
  font-family: "Sofia Sans Extra Condensed";
  background-color: #000000;
}/*# sourceMappingURL=style.css.map */