:root{
  --yellow:#fff200;
  --pink:#ff00d8;
  --blue:#29acff;
  --green:#43ff00;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

* {
  padding:0;
  margin:0;
  box-sizing: border-box;
	font-family:inherit;
	color:inherit;
}

::selection {
  background-color:var(--pink);
  color:#000;
  text-shadow: none;
}

img {
  max-width:100%;
  display:block;
}

.wrap {
  position:relative;
  width:1240px;
  padding:0 20px;
  max-width:100%;
  margin:0 auto;
  clear:both;
}

#burger,
#mobnav {
  display:none;
}

html {
  min-height:100vh;
  scroll-behavior: smooth;
}

body {
  float:left;
  width:100%;
  font-size:62.5%;
  background-color:var(--blue);
  color:#fff;
  font-family: 'Montserrat', sans-serif;
  min-height:100vh;
}

.mainbg {
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:-1;
  background-image:url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  opacity:0.35;
}

  #top-tear {
    display:none;
  }

.container {
  container-type: inline-size;
}

header {
  position:fixed;
  z-index:100;
  float:left;
  clear:left;
  width:22.5%;
  height:100%;
  overflow-y:auto;
  left:0;
  top:0;
  padding:2.5%;
  display:grid;
}

  header .bg {
    position:fixed;
    z-index:0;
    left:0;
    top:0;
    width:13%;
    height:100%;
    background-color:#000;
    margin:0;
    padding:0;
  }

    header .bg img {
      position:absolute;
      left:100%;
      top:0;
      height:100%;
      pointer-events: none;
      user-select: none;
    }

  header .inner {
    align-self: center;
    position: relative;
    z-index:2;
  }

  .logo {
    float:left;
    width:90%;
    user-select: none;
    margin-bottom:2em;
  }

    .logo img {
      width:100%;
    }

    nav {
      padding-left:10%;
    }

    nav,
    nav ul,
    nav li,
    nav a {
  		float:left;
      clear:left;
      list-style: none;
    }

          nav a,
          nav button {
            text-decoration: none;
            font-size:2.75em;
            padding:0.4em 0;
            text-transform: uppercase;
            font-family: "Bebas Neue", serif;
            color:#fff;
            text-shadow: 0.1em 0.1em 0 var(--pink);
            letter-spacing: -0.05em;
            line-height:1;
          }

            nav ul li a:hover,
            nav button:hover,
            .active{
              text-shadow: 0.1em 0.1em 0 var(--blue);
            }

            nav li.def:nth-of-type(7n+1) a{
              margin-left:0.5em;
              transform:rotate(-2deg);
            }

            nav li.def:nth-of-type(7n+2) a{
              font-size:3.25em;
            }

            nav li.def:nth-of-type(7n+3) a{
              margin-left:0.5em;
              margin-bottom:0.25em;
              transform:rotate(-3deg);
            }

            nav li.def:nth-of-type(7n+4) a{
              font-size:2.5em;
              transform:rotate(3deg);
            }

            nav li.def:nth-of-type(7n+5) a{
              font-size:2.5em;
              margin-left:0em;
              transform:rotate(-1deg);
              width:80%;
            }

            nav li.def:nth-of-type(7n+6) a{
              transform:rotate(-6deg);
              margin-left:-1em;
              /* max-width:75%; */
            }

            nav li.def:nth-of-type(7n+7) a{
              margin-left:-1em;
            }

            .social {
              margin-top:2em;
            }

              nav li.social a {
                float:right;
                clear:none;
                border:none;
                padding:0;
                margin-left:0.25em;
                width:auto;
                filter:drop-shadow(0.15em 0.15em 0 #000);
              }

                .social a img {
                  width:25px;
                }

                .social a img:last-of-type {
                  display:none;
                }

                .social a:hover img:first-of-type {
                  display:none;
                }

                .social a:hover img:last-of-type {
                  display:block;
                }

.flex {
  display:-webkit-flex;
  display:flex;
  -webkit-flex-direction:row;
  flex-direction:row;
  -webkit-flex-wrap:wrap;
  flex-wrap:wrap;
}

.fcw {
  float:left;
  clear:left;
  width:100%;
}

.main {
  width:80%;
  float:right;
  min-height:100vh;
}

.main p,
.main li{
	font-size:1.2rem;
	line-height:1.6;
	margin-bottom:1em;
  clear:left;
}

  .main :is(p,li,td) a {
    color:var(--green);
  }

.main ul,
.main ol {
  margin:2em;
}

  .main li {
    padding-left:1em;
  }

.main h2,
.main h3,
.main h4,
.main h5,
.main h6 {
	font-size:3rem;
	margin-bottom:1em;
  font-family: "Bebas Neue", serif;
  color:#fff;
  text-shadow: 0.15em 0.15em 0 #000;
  font-weight:normal;
  letter-spacing: -0.01em;
}

.main h3 {
	font-size:2.2em;
}

.main h4 {
	font-size:1.9em;
}

.main h5 {
	font-size:1.6em;
}

.main h6 {
	font-size:1.3em;
}

.main td {
  font-size:1.6em;
  padding:1em;
}

  .main td p,
  .main td li {
    font-size:1em;
    margin-bottom:0;
  }

  .main td img {
    display:inline-block;
  }

.transition {
  transition:all 1s ease-out;
}

  .fadein {
    opacity:0;
  }

  .fadein.go {
    opacity:1;
  }

.align_left {
  float:left;
}

.align_right {
  float:right;
}

.align_center {
  text-align: center;
}

img.align_left {
  margin:0.5em 1em 1em 0;
}

img.align_right {
  margin:0.5em 0 1em 1em;
}

img.align_center {
  display:block;
  margin-left:auto;
  margin-right:auto;
}
  
footer {
  float:left;
  clear:left;
  width:100%;
  margin-top:2em;
  padding-bottom:2rem;
  color:#fff;
}

  p.copyright {
    text-align: center;
    font-size:0.9em;
    line-height:1.5;
    width:100%;
  }

  .watch-box {
    display:none;
    position:fixed;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background-color:rgba(0,0,0,0.7);
    text-align:center;
    z-index: 101;
  }
  
    .watch-box .content {
      position:absolute;
      min-width:75%;
      max-width:100%;
      max-height:100%;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      background-color:#000;
    }

    .watch-box iframe,
    .TextformatterVideoEmbed,
    .watch-box video {
      padding:0;
      margin:0;
    }


.mailerlite-form-slidebox {
  max-width:min(500px,100%) !important;
}

.ml-popup {
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color:#000A;
  padding:5%;
  z-index:101;
  display:none;
}

.ml-form {
  position:absolute;
  inset:50% 0 0 50%;
  transform:translate(-50%,-50%);
  width:min(500px,calc(100% - 2rem));
  max-width:100%;
}

    .close {
      position:absolute;
      right:1em;
      top:1em;
      background-color:#fff;
      color:#111;
      font-size:1.8em;
      text-decoration:none;
      padding:0.4em;
      border-radius: 10em;
      width:2em;
      text-align: center;
      z-index:10;
    }

@keyframes pulse {
  0%{
      transform:scale(1);
  }
  100%{
      transform:scale(1.01);
  }
}


@media screen and (max-width:1099px) {
  header {
    padding:2.5%;
  }

  nav a {
    
  }
}
  
@media screen and (max-width:999px) {

  header {
    position:fixed;
    width:100%;
    height:unset;
    padding:0.75em 0;
    text-align: center;
    background-color:#000;
    overflow-y:unset;
  }

    .logo {
      float:none;
      display:inline-block;
      width:10em;
      margin:0 0 -4em 0;
    }

      .logo img {
        max-height: 100%;
      }

    header .bg {
      display:none;
    }

    nav li.def:nth-of-type(7n+6) a {
      margin-left:0;
      max-width:unset;
    }

    #top-tear {
      position:absolute;
      left:0;
      top:100%;
      height:1.5rem;
      width:100%;
      display:block;
    }
  
  #mainnav {
    display:none;
    float:left;
    clear:left;
    width:100%;
    background:none;
  }

    #burger {
      position:absolute;
      right:1em;
      top:1em;
      display:block;
      width:40px;
    }

    nav,
    nav li,
    nav a {
      float:left;
      clear:left;
      width:100%;
      text-align:center;
      padding:0;
      margin:0;
    }

    nav .social {
      text-align: center;
      margin:0;
      padding: 1.5em;
    }

      nav a {
        font-size:2em;
        padding:0.25em;
      }

      nav li:first-of-type {
        margin-top:5em;
      }

      nav .social a {
        width:auto;
        clear:none;
        float:none;
        display:inline-block;
        margin:0 0.35em;
      }

      nav li:hover .subnav {
        display:none;
      }

  .main {
    width:100%;
    margin-top:7em;
  }
  
  footer {
    grid-template-columns: 2fr 4fr;
    grid-gap:10%;
    margin-top:2.5em;
  }

    footer .links {
      padding-top:0;
    }

    footer .social {
      grid-column: 2/3;
      padding:0;
      margin:0;
    }
}

@media screen and (max-width:599px) {
  .main td {
    display:block;
  }
}

@media screen and (max-width:499px) {
  footer {
    grid-template-columns:1fr;
    grid-gap:5%;
  }

    footer .social {
      grid-column:unset;
      text-align:center;
    }
}
@media screen and (max-width:399px) {
  footer .links {
    grid-template-columns:1fr;
    grid-gap:5%;
    text-align: center;
  }
}