@import url("https://use.typekit.net/tsr7bsh.css");

:root {
  --fr-red: #E72B3A;
}

body {
  /* padding: 0px; */
  margin: 0px;
  font-family: open-sans,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

h1, .c2a-btn {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: -0.04;
  font-size: 20px;
}

.bg-red {
  background: var(--fr-red);
  color: white;
}

.d-flex {
  display: flex;
}

.columnify {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.c2a-btn {
  color: white;
  padding: 20px;
  margin: 10px 0px;
  border: 2px solid white;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
  text-align: center;

  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;

  cursor: pointer;
}

.c2a-btn-red {
  color: var(--fr-red);
  border: 2px solid var(--fr-red);
  background: white;
}

.c2a-btn:hover {
  background: white;
  color: var(--fr-red)
}

.c2a-btn-red:hover {
  background: var(--fr-red);
  color: white
}

label {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;

  display: flex;
  flex-direction: column;
}

input, textarea {
  border: 2px solid var(--fr-red);
  border-radius: 2px;
  padding: 10px;
  font-size: 18px;
  max-width: 250px;
  font-family: open-sans,sans-serif;

}

.small {
  font-family: open-sans,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
}

button.c2a-btn{
  margin: 0px;
}
.content {
  display: grid;
  grid-template-columns: 15px 1fr 15px;
  grid-auto-rows: min-content;
  padding: 30px;
}

#video-mb>iframe {
    overflow: hidden;
}

#video-lg {
  display: none;
}

.content>* {
  grid-column: 2/3;
}

.hide-desktop {
  display: block; 
}

.hide-mobile {
  display: none;
}

.form-checkbox {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.form-checkbox input {
  height: 20px;
  width: 20px;
}

#brandlogo {
  height: 70px;
  width: max-content;
}

#hero {
  max-width: 100%;
  padding: 30px 0px;
}


@media screen and (min-width: 640px) {

  .hide-desktop {
    display: none;
  }

  .c2a-btn {
    margin: 10px;
  }

  .hide-mobile {
    display: block;
  }
  
  .content {
    grid-template-columns: 1fr 600px 1fr;
  }
  
  #video-mb {
    display: none;
  }

  #video-lg {
    display: flex;
  }
  .columnify {
    flex-direction: row;
  }

  h1 {
    font-size: 40px;
  }

  input, textarea {
    max-width: unset;
  }
}

#colophon {
  font-size: 14px;
}