:root {
  /* base unit for project spacing */
  --bu: 4;

  /* font */
  --font-primary: Rubik, arial, sans-serif;
  --font-secondary: 'serif';
  --font-lineheight: 1.8;

  /* color */
  --color-green-500: #76aa3b;
  --color-green-600: #48f786;
  --color-selection: #2793c7;

  /* layout */
  --container-maxwidth: 600px;
  --container-maxwidth-wide: 1200px;

  /* trasnsitions */
  --transition: 0.4s;
}
@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: ' (' attr(href) ')';
  }

  abbr[title]:after {
    content: ' (' attr(title) ')';
  }

  /* 
		don't show links that are fragment identifiers,
		or use the `javascript:` pseudo protocol
	*/
  a[href^='#']:after,
  a[href^='javascript:']:after {
    content: '';
  }

  pre,
  blockquote {
    border: 1px solid #000;
    page-break-inside: avoid;
  }

  /* 
		printing tables:
		http://css-discuss.incutio.com/wiki/Printing_Tables
	*/
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
html {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

::selection {
  background: var(--color-selection);
  color: white;
  text-shadow: none;
}
body {
  font-family: var(--font-primary);
  line-height: var(--font-lineheight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: black;
  background-color: #1c1c1c;
  color: white;
}
h1,
h2,
h3 {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
p {
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .about:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('img/bg/bg-about-large.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 85%;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: -1;
  }
}
.contact a {
  color: white;
  display: block;
  margin-bottom: 15px;
}

.contact a:hover {
  color: var(--color-green-600);
}

.contact a:hover::after {
  color: white;
}

@media screen and (min-width: 620px) {
  .contact a {
    display: inline-block;
  }

  .contact a:after {
    content: '\25cf';
    display: inline-block;
    margin-left: 15px;
    margin-right: 10px;
  }

  .contact a:last-child:after {
    content: '';
    margin-right: 0;
  }
}
.container {
  position: relative;
  width: auto;
  max-width: var(--container-maxwidth);
  margin: auto;
  padding: 0;
}

.container--wide {
  max-width: var(--container-maxwidth-wide);
}
.intro:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('img/bg/bg-intro-large.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: -1;
}
.intro-title {
  text-align: center;
  color: white;
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 0;
}

.intro-subtitle {
  font-size: 18px;
}
.nav-scroll {
  display: none;
  position: fixed;
  top: 60%;
  right: 4rem;
  z-index: 50;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  -o-transform: translateY(-60%);
  transform: translateY(-60%);
}

.nav-scroll a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-scroll a:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.nav-scroll__item {
  position: relative;
  margin: 40px 0;
}

.nav-scroll__item:hover .nav-scroll__text {
  opacity: 1;
}

.nav-scroll__item:hover .nav-scroll__icon {
  background-color: #48f786;
}

.nav-scroll__item:hover .nav-scroll__icon:before {
  opacity: 1;
}

.nav-scroll__item--active .nav-scroll__icon {
  background-color: #48f786;
}

.nav-scroll__item--active .nav-scroll__icon:before {
  opacity: 1;
}

.nav-scroll__item--active .nav-scroll__icon:hover {
  transform: none;
}

.nav-scroll__text {
  font-size: 14px;
  position: absolute;
  right: 30px;
  top: -9px;
  transition: var(--transition);
  opacity: 0;
}

.nav-scroll__icon {
  position: relative;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.nav-scroll__icon:before {
  content: '';
  opacity: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: -8px;
  transition: var(--transition);
}

@media only screen and (min-width: 1200px) {
  .nav-scroll {
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.scroll-next {
  display: none;
  text-decoration: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.scroll-next img,
.scroll-next svg {
  display: block;
  width: 30px;
  height: 50px;
  margin: 0 auto -20px;
}

.scroll-next__sect {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.scroll-next--persist {
  display: block;
}

@media only screen and (min-width: 800px) {
  .scroll-next {
    display: block;
  }
}
.section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
}

@media screen and (min-width: 800px) {
  .section {
    height: 100vh;
  }
}

@media screen and (max-width: 800px) {
  .section--persist {
    height: 100vh;
  }
}
.slider {
  position: relative;
  height: 400px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  margin-top: 20px;
}

.slider__slide {
  height: 400px;
}

.slider__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}

.slider__arrows button {
  border: 0;
  padding: 0;
  cursor: pointer;

  background: black;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider__arrows svg {
  width: 20px;
  height: 40px;
}

.slider__arrows__left {
  position: absolute;
  left: 10px;
  transform: rotate(90deg);
}

.slider__arrows__right {
  position: absolute;
  right: 10px;
  transform: rotate(270deg);
}

@media screen and (prefers-reduced-motion: no-preference) {
  .js-scroll-container {
    scroll-behavior: smooth;
  }
}

@media screen and (min-width: 800px) {
  .slider__arrows__left {
    left: 20px;
  }

  .slider__arrows__right {
    right: 20px;
  }

  .slider__arrows button:hover {
    opacity: 0.7;
  }
}
.video-play {
  display: flex;
  text-decoration: none;
  color: white;
  letter-spacing: 0.3px;
  font-size: 1.4rem;
}

.video-play__button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
  margin: 0 auto;
}

.video-play__button::before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid white;
  transition: var(--transition);
}

.video-play:hover .video-play__button::before {
  border-left-color: var(--color-green-600);
}

.video-play__text {
  font-size: 16px;
}
.margin-bottom-x2 {
  margin-bottom: 10px;
}

.margin-bottom-x4 {
  margin-bottom: 20px;
}

.margin-bottom-x5 {
  margin-bottom: 25px;
}

.margin-bottom-x6 {
  margin-bottom: 30px;
}
.text-align-center {
  text-align: center;
}
/* hide from screen readers */
.hidden {
  display: none !important;
}

/* hide visually and from screen readers, but maintain layout */
.invisible {
  visibility: hidden;
}

/* hide only visually, but have it available for screen readers */
.sr-only {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* extends the .sr-only class to allow the element 
to be focusable when navigated to via the keyboard */
.sr-only.focusable:focus,
.sr-only.focusable:active {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.green-text {
  color: var(--color-green-600);
}

.bgcolor-black {
  background-color: black;
}
