html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: unset;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border-color: unset;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

*,
:after,
:before {
  box-sizing: border-box;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  cursor: pointer;
}

div.two-col {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  div.two-col {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.two-col {
  -moz-columns: 2;
       columns: 2;
}
@media screen and (max-width: 767px) {
  .two-col {
    -moz-columns: 1;
         columns: 1;
  }
}

.three-col {
  -moz-columns: 3;
       columns: 3;
}
@media screen and (max-width: 767px) {
  .three-col {
    -moz-columns: 1;
         columns: 1;
  }
}

sub, sup {
  /* Specified in % so that the sup/sup is the
     right size relative to the surrounding text */
  font-size: 75%;
  /* Zero out the line-height so that it doesn't
     interfere with the positioning that follows */
  line-height: 0;
  /* Where the magic happens: makes all browsers position
     the sup/sup properly, relative to the surrounding text */
  position: relative;
  /* Note that if you're using Eric Meyer's reset.css, this
     is already set and you can remove this rule */
  vertical-align: baseline;
}

sup {
  /* Move the superscripted text up */
  top: -0.5em;
}

sub {
  /* Move the subscripted text down, but only
     half as far down as the superscript moved up */
  bottom: -0.25em;
}

strong {
  font-weight: bold;
}

small {
  font-size: 0.85em;
}

em {
  font-style: italic;
}

/* wordpress */
@media screen and (max-width: 767px) {
  img.alignnone,
  img.size-full {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

img.aligncenter {
  margin: 1rem auto;
  max-width: 100%;
  height: auto;
  display: block;
}

img.alignleft {
  margin: 1rem 3rem 3rem 0;
  max-width: 100%;
  height: auto;
  float: left;
}

img.alignright {
  margin: 1rem 0rem 3rem 3rem;
  max-width: 100%;
  height: auto;
  float: right;
}

@media screen and (max-width: 767px) {
  img.aligncenter,
  img.alignleft,
  img.alignright,
  img.alignmedium,
  img.aligcenter {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .wp-caption {
    max-width: 100%;
  }
  .wp-caption img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}
iframe {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  iframe[src*=youtube] {
    max-height: 340px;
  }
}
img.lazyload,
img.lazyloading {
  opacity: 0;
  transition: opacity 400ms ease;
}

img.lazyloaded {
  opacity: 1;
  transition: opacity 400ms ease;
}

@font-face {
  font-family: "BiancoSans";
  src: url("fonts/BiancoSans-Regular.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "BiancoBold";
  src: url("fonts/BiancoSans-ExtraBold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "ColumbaReg";
  src: url("fonts/ColumbaTextPro-Regular.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "ColumbaItal";
  src: url("fonts/ColumbaTextPro-Italic.woff") format("woff");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "ColumbaBold";
  src: url("fonts/ColumbaTextPro-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Glotik";
  src: url("fonts/Glotik-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}
body {
  text-rendering: optimizeLegibility;
  background-color: #dc1f76;
  color: #fff;
}

main {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.leftside {
  display: flex;
  flex-direction: column;
  flex: 1 0 40%;
}
@media (max-width: 767px) {
  .leftside {
    flex-wrap: wrap;
    flex-basis: 100%;
  }
}
.leftside .topcontainer {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "BiancoBold";
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .leftside .topcontainer {
    margin-top: 1rem;
  }
}
.leftside .center {
  margin-block: auto;
}
@media (max-width: 767px) {
  .leftside .center {
    padding-inline: 20px;
  }
}
.leftside .logo {
  display: block;
  margin-inline: auto;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .leftside .logo {
    margin-top: 0px;
  }
}
.leftside .logo img {
  display: block;
  margin-inline: auto;
  max-width: 25vw;
}
@media (max-width: 767px) {
  .leftside .logo img {
    width: 100%;
    max-width: 60vw;
  }
}
.leftside .formwrap {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .leftside .formwrap {
    margin-top: 20px;
  }
}
.leftside .formwrap p {
  font-family: "Glotik";
  font-size: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .leftside .formwrap p {
    font-size: 22px;
    margin-top: 20px;
  }
}

.rightside {
  background-image: url(images/puesto-salsa-family.webp);
  background-size: cover;
  background-position: center;
  flex: 1 0 60%;
  background-color: #dc1f76;
}
@media (max-width: 767px) {
  .rightside {
    display: none;
  }
}

.copy {
  font-size: 1rem;
  text-align: center;
  font-family: "BiancoBold";
  margin-top: auto;
  margin-bottom: 1rem;
  color: #fff;
}
@media (max-width: 767px) {
  .copy {
    margin-top: unset;
  }
}
.copy a {
  color: currentColor;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.copy a:hover {
  text-decoration: underline;
}
.copy span {
  display: block;
  font-size: 14px;
  margin-top: 1rem;
  font-family: "BiancoSans";
}

#form {
  max-width: 450px;
  margin-inline: auto;
  margin-top: 40px;
}
@media (min-width: 1280px) {
  #form {
    aspect-ratio: 450/50;
  }
}
@media (max-width: 767px) {
  #form {
    max-width: 100%;
    margin-block: 20px;
  }
}
#form form {
  padding: 0 !important;
}
@media (max-width: 767px) {
  #form form {
    max-width: 100%;
  }
}
#form div.needsclick:has(button) button {
  font-family: "BiancoBold" !important;
  min-width: 12ch;
}
@media (max-width: 767px) {
  #form div.needsclick:has(button) button {
    min-width: unset;
  }
}
#form input[type=email] {
  background: transparent !important;
  border: 1px solid #fff !important;
  color: #fff;
  border-radius: 0 !important;
  font-size: 14px;
  font-family: "BiancoSans";
}
#form input[type=email]::-moz-placeholder {
  color: #fff;
}
#form input[type=email]::placeholder {
  color: #fff;
}

.mobimg {
  display: none;
}
@media (max-width: 767px) {
  .mobimg {
    display: block;
    margin-top: 20px;
  }
  .mobimg img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */