/* Cambiar color del fomrulario */
:root {
  --colorformulario: #2f475d;
}

#banner-form .formulario .texto,
#banner-form .formulario .titulo {
  margin-bottom: 20px;
  text-align: center;
}

#banner-form {
  z-index: 9;
  position: relative;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1px);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#banner-form .formulario {
  text-align: center;
}

#banner-form .input-g {
  display: flex;
  margin-bottom: 10px !important;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

#banner-form .input-g2 {
  flex-direction: row;
  justify-content: space-evenly;
}

#banner-form .head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#banner-form .profile-image {
  position: relative;
  height: 100px;
  width: 100px;
  margin-right: 20px;
}

#banner-form .profile-info span {
  display: block;
  font-size: 1em;
  color: #000;
}

#banner-form .profile-info span strong {
  color: var(--colorformulario);
  font-weight: 900;
}

#banner-form img {
  border-radius: 100px;
}

#banner-form .circle {
  position: absolute;
  bottom: 0;
  right: 10px;
  height: 15px;
  width: 15px;
  border-radius: 100px;
  background: #2ee7b1;
}

#banner-form .formulario .titulo {
  font-size: 1.5em;
  font-weight: 900;
  color: var(--colorformulario);
}

#banner-form .formulario .texto strong {
  color: var(--colorformulario);
}

#banner-form .formulario input,
#banner-form .formulario select {
  border-radius: 10px !important;
  padding: 10px 10px 10px 20px;
  background: #f2f2f2;
  border: 2px solid var(--colorformulario);
  height: auto !important;
  display: block !important;
  line-height: normal !important;
  width: 100% !important;
}

#banner-form .formulario input::placeholder {
  color: #000;
}

#banner-form .formulario button,
#banner-form a {
  border-radius: 100px;
  padding: 15px 30px;
  color: #fff;
  border: 2px solid #fff;
  background: var(--colorformulario);
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.5s;
  cursor: pointer;
  text-decoration: none;
}

#banner-form a {
  display: inline-block !important;
  background-color: #000;
}

#banner-form .formulario button:hover {
  background: #000;
  transition: 0.5s;
}

#banner-form .formulario a:hover {
  background: var(--colorformulario);
}

#banner-form .respuestaformulario {
  background: #000;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  margin: 10px 0;
  display: none;
  font-weight: 900;
}

#banner-form .fail {
  display: block;
  background: #f36e59;
}

#banner-form .send {
  display: block;
  background: #2ee7b1;
}
body{
  overflow-x: hidden !important;
  width: 100vw !important;
}
.beautypress-header-section.navbar-fixed.fixed{
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
.mesadeluz{
  position: relative;
  display: flex;
  background-position: center !important;
  height: 600px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  overflow: hidden;
  margin: 1em;
}
.mesadeluz::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute; 
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 0;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0) 70%, rgba(0,0,0,1) 100%);
  border-radius: 10px;
  transition: .3s ease;
}
.mesadeluz .title{
  color: white;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: left;
  z-index: 1;
  font-size: 1em;
  font-weight: 600;
  break-after: always;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}
.mesadeluz .title img{
  margin-right: 10px;
}
.mesadeluz .bottom{
  background: rgba(0, 0, 0, 0.5);
  color: white;
  position: absolute;
  bottom: 10px;
  left: 0px;
  text-align: left;
  z-index: 1;
  font-size: 1em;
  font-weight: 600;
  break-after: always;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0px 10px 10px 0px;
}
.mesadeluz .bottom img{
  filter: grayscale(1) invert(1) contrast(2);
}
.mesadeluz .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mesadeluz .icon img{
  width: 60px;
  transition: .3s ease;
}
.mesadeluz:hover{
  transition: .3s ease !important;
  filter: contrast(1);
}
.mesadeluz:hover .icon img{
  transform: scale(1.1);
  transition: .3s ease;
}
@media (max-width: 768px) {
  #banner-form .input-g2 {
    display: block !important;
  }

  #banner-form .formulario a {
    display: block !important;
  }
}
