:root {
  --bg-color: $blueColor;
}

body {
  color: #080222;
  font-family: "Lato", sans-serif;
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 400;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}

p {
  font-size: 1.2em;
}

section {
  background-color: #fff;
}

.full-section {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

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

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

.background-orange {
  background-color: #FF7826;
  color: white;
}

.background-purple {
  background-color: #797EDA;
  color: white;
}

.background-blue {
  background-color: #3540FA;
  color: white;
}

.background-fade {
  background-color: var(--bg-color);
  color: white;
  transition: 0.4s ease-in-out;
}

section-content {
  min-width: 100vw;
  min-height: 100vh;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section-content-left {
  width: 45vw;
  padding-left: 5vw;
  padding-right: 5vw;
}

section-content-right {
  width: 35vw;
  padding-left: 5vw;
  padding-right: 5vw;
}

.full-height {
  min-height: 80vh;
  height: 100%;
}

.full-width {
  min-width: 80vw;
  width: 100%;
}

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.absolute-right {
  position: absolute;
  right: 10vw;
}

.absolute-center {
  position: absolute;
  justify-self: center;
  align-self: center;
}

.text-left {
  text-align: left;
}

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

.content-center-left {
  align-items: center;
  justify-content: left;
}

.content-bottom {
  align-items: flex-end;
  justify-content: baseline;
}

.huge-title {
  font-size: 7em;
}

.normal-title {
  font-size: 3em;
}

header .header-one {
  z-index: 9999;
  width: 100vw;
  display: flex;
  flex-direction: column;
  position: absolute;
}
header .header-one ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
}
header .header-one ul li {
  padding: 0 2vw;
  text-decoration: none;
  list-style: none;
  transition: 0.3s;
}
header .header-one ul li a {
  text-decoration: none;
  color: white;
}
header .header-one ul li:hover {
  text-decoration: underline;
  font-size: 1.2em;
}
header .header-title {
  z-index: 9999;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 5vh;
  left: 5vw;
}
header .header-title a {
  color: #080222;
  text-decoration: none;
  font-size: 0.8em;
  letter-spacing: 1em;
}
header .header-title a h2 {
  margin-bottom: 0.1em;
}
header .header-title a h4 {
  margin-top: 0.1em;
  letter-spacing: 0;
}

.slides-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  background: #3540FA;
  border: solid 1px white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.slides-to-top .arrow-container {
  width: 50px;
  height: 50px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  color: white;
  font-size: 2em;
  transition: 0.3s;
}
.slides-to-top:hover {
  background: white;
}
.slides-to-top:hover .arrow-container {
  font-size: 2.2em;
  color: #3540FA;
}

.slides-to-none {
  transition: 0.3s;
  width: 0;
  height: 0;
  opacity: 0;
}
.slides-to-none .arrow-container {
  font-size: 0;
}

.slides-to-one {
  transition: 0.3s;
  opacity: 1;
  width: 50px;
  height: 50px;
}
.slides-to-one .arrow-container {
  font-size: 2em;
}

.only-show-mob {
  display: none;
}

@media only screen and (max-width: 1201px) {
  .only-show-mob {
    display: block;
  }
  header .header-title a h2 {
    font-size: 1.5em;
    letter-spacing: 0.5em;
  }
  .full-section {
    height: auto;
  }
  .full-height {
    min-height: 90vh;
  }
  .huge-title {
    font-size: 4em;
  }
  section-content {
    grid-template-columns: auto;
  }
  section-content section-content-left {
    min-height: 90vh;
    width: 90vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  section-content section-content-right {
    min-height: 90vh;
    width: 90vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}/*# sourceMappingURL=style.css.map */