/* SCSS Document */
/* MICROSOFT NONSENSE */
/* MIXINS */
/* RESET STYLES */
html, body, ul, ol, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, button, select, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

/* VARIABLES */
/* ELEMENT STYLES */
*:focus {
  outline: none !important;
}

strong {
  font-weight: 700;
}

a {
  color: #262626;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  cursor: pointer;
}
a img {
  border: none;
}
a:hover {
  opacity: 0.5;
}

em {
  font-style: italic;
}

body.pause {
  overflow: hidden;
  height: 100%;
}

body, html {
  text-align: center;
  color: #262626;
  font-family: poppins, sans-serif;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  background: #FFFFFF;
  line-height: 1.5em;
}

h1, h2 {
  font-family: poppins, sans-serif;
  font-weight: 800;
  font-size: 1em;
  margin: 0.5em 0;
  line-height: 0.9em;
  display: block;
  color: #9CFF1C;
  text-transform: uppercase;
}

p {
  text-wrap: balance;
}

h1 {
  font-size: 4em;
}

h2 {
  font-size: 4em;
}

h3 {
  font-size: 1em;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}

input {
  line-height: 1em;
  padding: 0;
  margin-bottom: 0;
  outline: none;
  border: none;
  font-family: poppins, sans-serif;
  font-size: 1em;
  border-bottom: 1px solid #FFFFFF;
  text-transform: uppercase;
}
input::-moz-placeholder {
  color: #262626;
}
input::placeholder {
  color: #262626;
}
input:hover {
  color: #262626;
  border-color: #262626;
}
input:hover::-moz-placeholder {
  color: #262626 !important;
}
input:hover::placeholder {
  color: #262626 !important;
}
input:focus {
  border-color: #262626;
}
input:focus::-moz-placeholder {
  color: #262626 !important;
}
input:focus::placeholder {
  color: #262626 !important;
}
input:focus:hover {
  color: #262626;
}

/* GENERAL STYLES */
header, section {
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
header .inner, section .inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
}

/* NAV STYLES */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99999;
  padding: 1em 0;
  background-color: #9CFF1C;
}
header .inner {
  height: 40px;
  background-image: url("../images/club-conect-logo-grey.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
header .inner div, header .inner a {
  border: 2px solid #262626;
  border-radius: 20px;
  height: 32px;
  line-height: 32px;
  padding: 3px 20px 0;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  right: 0;
}

/* GSAP STUFF */
#smoothcont {
  will-change: transform;
}

/* CONTENT STYLES */
main {
  position: relative;
  min-height: 100vh;
}

section#intro {
  padding: 0 0 200px;
  border-top: 200px solid #9CFF1C;
  height: 100vw;
  max-height: 75vh;
  min-height: 25vw;
  background-image: url("../images/bg-patterns-combined.svg"), linear-gradient(170deg, rgb(156, 255, 29) 0%, rgb(156, 255, 29) 50%, rgba(156, 255, 29, 0) 50%, rgba(156, 255, 29, 0) 100%);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
section#intro img, section#intro svg {
  width: 50%;
  max-width: 250px;
  aspect-ratio: 1/1;
}
section#intro lottie-player {
  width: 50%;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
section.cols .inner {
  display: flex;
  gap: 40px;
}
section.cols .inner .col {
  width: 50%;
  text-align: left;
  display: flex;
  align-items: center;
}
section.cols .inner .col img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
section.cols .inner .col h1, section.cols .inner .col h2 {
  color: #262626;
}
section.cols.first {
  margin-top: -50vh;
}
section.cols.first .inner .col {
  align-items: flex-end;
}
section.cols.second {
  margin: 100px 0;
}
section.cols.second .inner .col h2 {
  color: #9CFF1C;
  margin-top: 3em;
}
section.cols.last {
  margin: 100px 0 -25vw;
}
section#usps .wrapper {
  width: 100%;
  max-width: 1200px;
  height: 160px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
section#usps .wrapper ul {
  display: flex;
  width: 100%;
  height: 160px;
  position: absolute;
  left: -160px;
}
section#usps .wrapper ul li {
  position: absolute;
  background-color: #262626;
  color: #9CFF1C;
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  width: 100px;
  aspect-ratio: 1/1;
  text-align: left;
  display: flex;
  align-items: end;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  transform: skewX(-10deg);
  flex-shrink: 0;
}
section#usps .wrapper ul li:nth-child(even) {
  background-color: #9CFF1C;
  color: #262626;
}
section#usps .mask {
  display: none;
  position: absolute;
  margin: 0 auto;
  top: 0;
  height: 160px;
  width: 100%;
  max-width: 1200px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgb(255, 255, 255) 100%);
}
section#connect {
  min-height: 500px;
  background-color: #9CFF1C;
}
section#connect .slant {
  width: 100%;
  min-height: 25vw;
  background-image: url("../images/bg-pattern-lime.svg"), linear-gradient(170deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
section#connect .inner {
  top: 4em;
}
section#connect .inner h2, section#connect .inner h3 {
  color: #262626;
}
section#connect .inner ul {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
section#connect .inner ul li {
  width: 40px;
  margin: 0 20px;
}
section#connect .inner ul li a {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
}
section#connect .inner ul li a svg {
  width: 40px;
  aspect-ratio: 1/1;
}
section#connect .inner ul li a svg path {
  fill: #262626;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
section#connect .inner ul li a:hover {
  opacity: 1;
}
section#connect .inner ul li a:hover svg path {
  fill: #FFFFFF;
}

/* FOOTER STYLES */
footer {
  position: relative;
  z-index: -1;
}
footer section {
  -moz-columns: #FFFFFF;
       columns: #FFFFFF;
  background-color: #262626;
  color: #FFFFFF;
}
footer section .slant {
  width: 100%;
  min-height: 25vw;
  background-image: linear-gradient(170deg, rgb(156, 255, 29) 0%, rgb(156, 255, 29) 50%, rgba(156, 255, 29, 0) 50%, rgba(156, 255, 29, 0) 100%);
}
footer section .inner {
  padding-bottom: 2em;
}
footer section .inner .icon {
  width: 50px;
  height: auto;
}
footer section .inner h2 {
  color: #9CFF1C;
}
footer section.cols {
  color: #FFFFFF;
  font-size: 0.75em;
}
footer section.cols .inner .col {
  align-items: flex-end;
}
footer section.cols .inner .col .emaillink {
  border: 2px solid #9CFF1C;
  border-radius: 20px;
  line-height: 32px;
  padding: 3px 50px 0 20px;
  margin-bottom: 1em;
  font-weight: 700;
  display: inline-block;
  color: #9CFF1C;
  background-image: url("../images/link-arrow.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 22px;
}
footer section.cols .inner .col .emaillink:hover {
  background-position: 97% 50%;
}
footer section.cols .inner .col:last-of-type {
  justify-content: right;
}
footer section.cols .inner .col a {
  color: #FFFFFF;
}

/* Tablet Styles */
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 3em;
  }
}
/* ipad Styles */
@media only screen and (max-width: 820px) {
  h1 {
    font-size: 1.9em;
  }
  h2 {
    font-size: 1.9em;
  }
}
/* Phone Styles */
@media only screen and (max-width: 819px) {
  section#intro {
    padding: 0 0 250px;
    border-top: 250px solid #9CFF1C;
    height: 110vw;
  }
  section#intro lottie-player {
    width: 100%;
    height: auto;
    margin-top: -50px;
  }
  section.cols.first {
    margin-top: -80vw;
  }
  section.cols.first .inner .col:last-of-type {
    margin-top: 25vw;
  }
  section.cols.second {
    margin: 0;
  }
  section.cols.second .inner .col h2 {
    margin-top: 0em;
  }
  section.cols.last .inner .col img {
    margin-top: 0vw;
  }
  section.cols.last .inner .col:last-of-type img {
    margin-top: 10vw;
  }
  section.cols .inner {
    display: block;
    width: 80%;
  }
  section.cols .inner .col {
    width: 100%;
  }
  section#usps .wrapper, section#usps .mask {
    margin: 25vw auto;
  }
  footer section.cols .inner .col {
    justify-content: center;
    text-align: center;
  }
  footer section.cols .inner .col:last-of-type {
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */