.main-banner {
  position: relative;
}
.main-banner .blured-bg {
  height: calc(100% + 5px);
  width: 100%;
  background-image: url("../assets/background-desktop.webp");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: blur(60px);
}
@media only screen and (max-width: 767px) {
  .main-banner .blured-bg {
    background-image: url("../assets/background-mobile.webp");
  }
}

.banner {
  height: calc(100vh - 50px);
  height: calc(var(--vh, 1vh) * 100 - 50px);
  width: 100vw;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url("../assets/background-desktop.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  font-family: "Saira Condensed", sans-serif;
  margin-top: 50px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .banner {
    min-height: 640px;
    background-image: url("../assets/background-mobile.webp");
    background-position: center bottom;
  }
}
.banner .text-content {
  margin: auto auto auto 8vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  .banner .text-content {
    margin: auto auto auto 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .banner .text-content {
    margin: 11vh auto 0;
    padding: 0 15px;
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (max-height: 800px) {
  .banner .text-content {
    margin: 40px auto 0;
  }
}
.banner .text-content .logo {
  height: 65px;
  width: 324px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .banner .text-content .logo {
    height: 35px;
    width: 174px;
    margin-bottom: 25px;
  }
}
.banner .text-content .text-desk {
  width: 26vw;
  max-width: 360px;
  min-width: 350px;
}
@media only screen and (max-width: 767px) {
  .banner .text-content .text-desk {
    display: none;
  }
}
.banner .text-content .text-mob {
  display: none;
}
@media only screen and (max-width: 767px) {
  .banner .text-content .text-mob {
    display: flex;
    width: 80vw;
    max-width: 400px;
  }
}
.banner .oferta-btn {
  width: 400px;
  height: 73px;
  font-weight: 700;
  background: transparent linear-gradient(90deg, #189A4C 0%, #53D67C 100%) 0% 0% no-repeat padding-box;
  border-radius: 8px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  margin: 50px auto 0 0;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  letter-spacing: 1.4px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .banner .oferta-btn {
    width: 100%;
    max-width: 400px;
    height: 46px;
    font-size: 18px;
    letter-spacing: 0.9px;
    border-radius: 8px;
    margin: 30px auto 0;
  }
}/*# sourceMappingURL=banner.css.map */