* {
    margin: 0;
    padding: 0;
  }

  @font-face {
    font-family: Swash;
    src: url(/assets/fonts/BerkshireSwash-Regular.ttf);
  }

  @font-face {
    font-family: Rubik;
    src: url(/assets/fonts/Rubik-VariableFont_wght.ttf);
  }

  @font-face {
    font-family: Monthoers;
    src: url(/assets/fonts/Monthoers.ttf );
  }

  :root {
    --padding: 1.5rem;
    --c-black: black;
    --color-white: #fff;
    --color-grey: #777;
    --color-light: #efefef;
    --c1: #ae00ff;
    --c2: #c436fc;
    --c3: #fabb32;
    --g1:
    --color-text: var(--color-black);
    --color-text-grey: var(--color-grey);
    --color-background: var(--color-white);
    --font-family-sans: Rubik, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    --f-fancy: "Swash", serif;
    --f-adventure: "Monthoers", var(--font-family-sans);
  }

  html {
    font-family: var(--font-family-sans);
    color: var(--color-text);
    background: var(--c3);
  }

body {
  font-size: 1.5rem;
  color: var(--c-black);
  line-height: 2rem;;
}

  img {
    width: 100%;
    border-radius: 20px;
  }

  iframe {
      border-radius: 20px;
  }


li {
    list-style: disc;
    margin-left: 2rem;
}

  a {
    color: currentColor;
    text-decoration: underline;
  }

  .menu a {
      text-decoration: none;
  }
  button {
    font: inherit;
    background: none;
    border: 0;
    color: currentColor;
    cursor: pointer;
  }
  strong, b {
    font-weight: 600;
  }
  small {
    font-size: inherit;
    color: var(--color-text-grey);
  }

.header {
    padding: 0.5rem 1rem 1rem 1rem;
    position: relative;
    background-color: var(--c1);
    background-image: linear-gradient(to top, var(--c1), var(--c2), var(--c2));
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
    z-index: 2;
  }

  .sitenav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    margin: 0 auto;

  }

  .homecontainer {
    background-image: url('/assets/img/ab-splash-2021.png');
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: none;
  }

  .homecontainer h3 {
    position: absolute;
    bottom: 0.5em;
    width: 100%;
    text-align: center;
    text-decoration: underline;
  }

  @media only screen and (max-width: 1230px) {
      .sitenav {
          flex-direction: column;
          justify-content: center;
      }
      .menu {
          justify-content: center;
      }
  }

  .logo {
    padding: 0rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    width: 180px;
    transition: transform 0.2s;
  }

  .logo:hover {
      transform:scale(105%);
      transform:rotate(-5deg);
  }

  .menu {
    display: flex;
    font-weight: 800;
    font-family: var(--f-fancy);
    font-size: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    color: var(--c-black )
  }
  .menu a {
    padding: 0.5rem 1rem;
    display: block;
    transition: transform 0.2s;

  }
  .menu a[aria-current] {
    text-decoration: underline;
  }

  .menu a:hover {
      transform:translate(0px, -5px)
  }



  @media only screen and (max-width: 800px) {
      .menu {
          font-size: 1.5rem
      }
      .menu a {
          padding: 0.2rem 1rem;
      }
      .logo {
          width: 140px;
      }

      h1 {
          font-size: 3rem !important;
          margin-bottom: 2rem !important;
      }
  }

  .container {
      padding: 0 1rem;
      max-width: 60rem;
      margin: 1.5rem auto;
  }



  h1 {
    font-family: var(--f-fancy);
    font-size: 4rem;
    text-align: center;
    color: var(--c1);
    margin-bottom: 3rem;;
  }

  h2 {
    font-family: var(--f-fancy);
    font-size: 3rem;
    text-align: left;
    color: var(--c-black);
    margin: 3rem 0 2rem 0;
  }

  h3 {
      font-family: var(--f-adventure);
      text-align: center;
      margin: 1.5rem 0;
      color: var(--c1);
      font-size: 2rem;
      text-transform: lowercase;
  }

  p {
    margin: 1rem 0;
  }

  video {
    max-width: 100%;
  }

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
  text-align: center;
  font-size: 1rem;
}

.masonry-grid {
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count:3;
    column-gap: 20px;
    -moz-column-gap: 20px;
    -webkit-column-gap: 20px;
    margin: 50px 0px;
    line-height: 0;
    margin-left:0;
 }

 .gallery-item {
    width: 100%;
    border-radius: 20px;
    padding: 0px;
    margin: 10px 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0px 0px 8px 0px #ce8415;
    display: inline-block;
    background-color: #fff;
 }

 @media (max-width: 1199px) {
    .masonry-grid {
       column-count: 3;
       -webkit-column-count: 3;
       -moz-column-count: 3;
    }
 }
 @media (max-width: 991px){
    .masonry-grid {
       column-count: 2;
       -webkit-column-count: 2;
       -moz-column-count: 2;
    }
 }
 @media (max-width: 600px){
    .masonry-grid {
       column-count: 1;
       -webkit-column-count: 1;
       -moz-column-count: 1;
    }
 }

  blockquote {
      margin: 2rem 0;
      text-align: center;
      font-weight: 600;
  }

  blockquote footer {
      font-weight: normal;
      font-size: 1rem;
  }

  /* Newsletter Sign Up */

  #mc_embed_signup {
    max-width: 40rem;
    margin: 0 auto 6rem auto;
    font-size: 1.3rem;

}

  .indicates-required{
      font-size: 0.8em;
      float: right;
  }

  .asterisk {
    color: coral;
    font-size: 0.8em;

  }

  .mc-field-group {
      clear: both;
  }



  .clear {
      clear: both;
  }

  .email {
      width: 100%;
      border-radius: 20px;
      border-style: none;
      font-size: 1.5rem;
      padding: 1rem;
  }

  *:focus {outline:none !important}

  #mc_embed_signup div.mce_inline_error {
      background-color: coral!important;
      display: inline;
  }

  .button {
      background-color: var(--c1);
      border-style: none;
      font-size: 1.5rem;
      padding: 1rem;
      border-radius: 1.5rem;
      font-weight: bold;
      cursor: pointer;
  }
