@charset "UTF-8";
/* Styles only for development purposes - delete when deploying */ /*
* For being able to create pixel-perfect experience, I hid the scrollbar.
* ---> Adobe Xd has 1920px width
*/
body, html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body ::-webkit-scrollbar, html ::-webkit-scrollbar {
  display: none;
}

/* Important assets used in other scss files */
/* Base Colors */ /* Naville font styles */
@font-face {
  font-family: "Naville";
  font-weight: 200;
  font-style: normal;
  src: url("../fonts/Naville-ExtraLight.otf") format("opentype");
}
@font-face {
  font-family: "Naville";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Naville-Light.otf") format("opentype");
}
@font-face {
  font-family: "Naville";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Naville-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Naville";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Naville-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Naville";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Naville-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: Naville;
  font-weight: "700";
  font-style: normal;
  src: url("../fonts/Naville-Bold.otf") format("opentype");
}
/* VisbyCF font styles */
@font-face {
  font-family: "Visby CF";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/VisbyCF-Regular.woff2") format("woff2"), url("../fonts/VisbyCF-Regular.woff") format("woff");
}
@font-face {
  font-family: "Visby CF";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/VisbyCF-Medium.woff2") format("woff2"), url("../fonts/VisbyCF-Medium.woff") format("woff");
}
@font-face {
  font-family: "Visby CF";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/VisbyCF-Bold.woff2") format("woff2"), url("../fonts/VisbyCF-Bold.woff") format("woff");
}
/* Important parts of web */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: block;
  width: 100%;
  height: 70px;
  padding-top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
}
.navigation.scrolled-navigation {
  background-color: rgb(0, 0, 0);
  padding-top: 20px !important;
}
.navigation.scrolled-navigation .left-side {
  filter: invert(0);
}
.navigation.scrolled-navigation .right-side a {
  color: #ffffff !important;
}
.navigation.scrolled-navigation .right-side .contact-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.navigation.scrolled-navigation .right-side .projects-link:hover {
  color: #6D15D1 !important;
}
.navigation .left-side {
  position: absolute;
  left: 74px;
}
.navigation .right-side {
  position: absolute;
  right: 75px;
}
.navigation .right-side a {
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.navigation .right-side .projects-link {
  margin-right: 27px;
}
.navigation .right-side .projects-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #6D15D1;
}
.navigation .right-side .projects-link:hover {
  color: #6D15D1;
}
.navigation .right-side .contact-link {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 17px 38px;
  margin-right: 5px;
  background-color: #000000;
  color: #ffffff;
}
.navigation .right-side .contact-link:hover {
  background-color: #6D15D1;
  border: 1px solid #6D15D1;
  color: white;
}
@-webkit-keyframes paperfly {
  0% {
    background-position: 16px 16px;
  }
  50% {
    background-position: 12px 20px;
  }
  100% {
    background-position: 50px -20px;
  }
}
@keyframes paperfly {
  0% {
    background-position: 16px 16px;
  }
  50% {
    background-position: 12px 20px;
  }
  100% {
    background-position: 50px -20px;
  }
}
.navigation .right-side .hiring-link {
  background-color: #6D15D1;
  padding: 0 37px 0 47px;
  border: 1px solid #6213BC;
  background-position: 16px center;
  background-size: 14px;
  background-image: url("../images/paper-swallow.svg");
  background-repeat: no-repeat;
  color: #ffffff;
  transition: all 0.3s ease;
}
.navigation .right-side .hiring-link span {
  transition: all 0.3s ease 0s;
  padding: 17px 0px 17px 16px;
  display: block;
  border-left: 1px solid #6213BC;
}
@media only screen and (min-width: 768px) {
  .navigation .right-side .hiring-link:hover {
    background-color: #6213BC;
    -webkit-animation-name: paperfly;
    animation-name: paperfly;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .navigation .right-side .hiring-link:hover span {
    transition: all 0.3s ease 0.5s;
    padding: 17px 16px 17px 0;
  }
}
.navigation .right-side .mobile-burger {
  display: none;
}

.mobNav {
  width: 100vw;
  height: 0vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: black;
  transition: all 0.4s ease-out;
}
.mobNav-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mobNav a {
  display: block;
  text-align: center;
  color: white;
  position: relative;
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 10vh;
}
.mobNav a:last-of-type {
  margin-bottom: 0;
}

.navcolor-white .right-side a {
  color: #ffffff;
}

.navcolor-black .left-side {
  filter: invert(1);
}
.navcolor-black .right-side a {
  color: #000000;
}
.navcolor-black .right-side .contact-link {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

@media (max-width: 768px) {
  .navigation {
    top: 0;
    padding-top: 20px !important;
    height: 65px;
  }
  .navigation .left-side {
    left: 32px;
    top: 20px;
  }
  .navigation .right-side {
    right: 32px;
    width: 156px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    top: 16px;
  }
  .navigation .right-side .projects-link, .navigation .right-side .contact-link {
    display: none;
  }
  .navigation .right-side .hiring-link {
    padding: 0;
    background-image: none;
    margin: 0;
  }
  .navigation .right-side .hiring-link span {
    padding: 17px 25px 17px 26px;
    border-left: 0;
  }
  .navigation .right-side .mobile-burger {
    display: inline-block;
    height: 48px;
    width: 48px;
    background-color: #6D15D1;
    position: relative;
    background-image: url("../images/burger.svg");
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #6D15D1;
  }
  .mobilenav_black {
    background-color: black;
  }
  .mobilenav_black .left-side {
    filter: invert(0);
  }
}
.footer {
  width: 100%;
  position: relative;
  background-color: #000000;
}
.footer .footer-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.footer .footer-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.3;
}
.footer .footer-background .vimeo-wrapper {
  aspect-ratio: 1622/1080;
  opacity: 0.3;
}
.footer .logo-img {
  width: 212px;
  height: 96px;
}
.footer .footer-content {
  display: block;
  position: relative;
  padding-top: 150px;
  padding-bottom: 20px;
  z-index: 100;
}
.footer .footer-content .logo {
  text-align: center;
}
.footer .footer-content .two-buttons {
  padding: 0 30px;
  margin: 64px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  flex-direction: row-reverse;
}
.footer .footer-content .two-buttons a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
.footer .footer-content .two-buttons a span {
  display: block;
  font-family: "Naville", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ffffff;
  width: 260px;
  padding: 38px 21px 36px;
  text-align: center;
  font-weight: 300;
}
.footer .footer-content .two-buttons .button-black {
  font-weight: 400;
  transition: all 0.5s ease;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.footer .footer-content .two-buttons .button-black span {
  color: #000000;
}
.footer .footer-content .two-buttons .button-black:hover {
  background-color: #6D15D1;
  border: 1px solid #6D15D1;
}
.footer .footer-content .two-buttons .button-black:hover span {
  color: #ffffff;
}
@-webkit-keyframes paperfly-footer {
  0% {
    background-position: 33px 33px;
  }
  50% {
    background-position: 22px 44px;
  }
  100% {
    background-position: 76px -36px;
  }
}
@keyframes paperfly-footer {
  0% {
    background-position: 33px 33px;
  }
  50% {
    background-position: 22px 44px;
  }
  100% {
    background-position: 76px -36px;
  }
}
.footer .footer-content .two-buttons .button-purple {
  background-color: #6D15D1;
  padding-left: 81px;
  border: 1px solid #6213BC;
  background-position: 33px 33px;
  background-size: 14px;
  background-image: url("../images/paper-swallow.svg");
  background-repeat: no-repeat;
}
.footer .footer-content .two-buttons .button-purple span {
  width: 140px;
  padding: 38px 40px 36px;
  border-left: 1px solid #6213BC;
}
.footer .footer-content .two-buttons .button-purple:hover {
  background-color: #6213BC;
  -webkit-animation-name: paperfly-footer;
  animation-name: paperfly-footer;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.footer .footer-content .two-buttons .button-purple:hover span {
  transition: all 0.3s ease 0.4s;
  padding: 38px 80px 36px 0;
}
.footer .footer-content .bottom-logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
}
.footer .footer-content .linkedin-logo {
  display: inline-block;
  width: 81px;
  height: 81px;
  margin: 80px 0 0;
  transition: all 0.3s ease;
}
.footer .footer-content .linkedin-logo:hover {
  filter: grayscale(30%);
}
.footer .footer-content .facebook-logo,
.footer .footer-content .instagram-logo {
  display: inline-block;
  width: 81px;
  height: 81px;
  margin: 80px 0 0;
  transition: all 0.3s ease;
}
.footer .footer-content .facebook-logo img,
.footer .footer-content .instagram-logo img {
  width: 81px;
  height: 81px;
}
.footer .footer-content .facebook-logo:hover,
.footer .footer-content .instagram-logo:hover {
  filter: grayscale(30%);
}
.footer .footer-content .copyright {
  font-family: "Visby CF", sans-serif;
  margin-top: 79px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
.footer .footer-content .bottom-buttons {
  width: 395px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: -12px auto 0;
}
.footer .footer-content .bottom-buttons a {
  font-family: "Visby CF", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-content .bottom-buttons a:hover {
  color: rgb(255, 255, 255);
}

@media (max-width: 576px) {
  .footer .footer-content {
    padding-top: 161px;
  }
  .footer .footer-content .two-buttons {
    width: unset;
    display: block;
    margin: 40px auto 0;
  }
  .footer .footer-content .two-buttons a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
  }
  .footer .footer-content .two-buttons a span {
    text-align: center;
  }
  .footer .footer-content .two-buttons .button-purple {
    background-image: none;
    padding: 0;
  }
  .footer .footer-content .two-buttons .button-purple span {
    width: 260px;
    border-left: 0 none;
    padding: 38px 21px 36px;
  }
  .footer .footer-content .two-buttons .button-purple:hover span {
    padding: 38px 21px 36px;
  }
  .footer .footer-content .linkedin-logo, .footer .footer-content .facebook-logo, .footer .footer-content .instagram-logo {
    width: 63px;
    height: 63px;
    margin: 78px 0 0;
  }
  .footer .footer-content .linkedin-logo img, .footer .footer-content .facebook-logo img, .footer .footer-content .instagram-logo img {
    width: 63px;
    height: 63px;
  }
  .footer .footer-content .copyright {
    margin-top: 27px;
    font-size: 14px;
  }
  .footer .footer-content .bottom-buttons {
    width: 315px;
  }
  .footer .footer-content .bottom-buttons a {
    font-size: 12px;
  }
}
/* Components of the web - base */
.main-text-block p {
  margin-top: 62px;
  font-family: "Visby CF";
  font-weight: bold;
  font-size: 48px;
}
.main-text-block .sub-text {
  font-family: "Visby CF";
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  margin-top: 65px;
}

.text-block-black-bg {
  background-color: #000000;
  color: #ffffff;
}

.text-block-white-bg {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 768px) {
  .main-text-block p {
    font-size: 35px;
    margin-top: 35px;
  }
}
@media (max-width: 576px) {
  .main-text-block p {
    font-size: 25px;
    margin-top: 25px;
  }
}
@media (max-width: 400px) {
  .main-text-block p {
    font-size: 23px;
    margin-top: 23px;
  }
}
.big-video {
  display: block;
  width: 80vw;
  margin: 0 auto;
  margin-top: 159px;
  z-index: 10;
  position: relative;
}
.big-video img, .big-video video, .big-video .video {
  width: 100%;
  height: 640px;
  -o-object-fit: cover;
  object-fit: cover;
}
.big-video .video {
  overflow: hidden;
}
.big-video .vimeo-wrapper {
  position: relative;
  aspect-ratio: 1622/1080;
}

@media (max-width: 576px) {
  .big-video {
    margin-top: 65px;
    width: 100%;
  }
  .big-video video, .big-video .video {
    height: 667px;
  }
}
.asshole-free-header {
  max-width: 100%;
  overflow-x: hidden;
}
.asshole-free-header .header-content {
  width: calc(100% - 148px);
  margin: 0 auto;
}
.asshole-free-header .header-content .line-1, .asshole-free-header .header-content .line-2 {
  font-family: "Naville";
  font-weight: 600;
  font-size: 220px;
  color: #000000;
  position: relative;
  transition: all 0.3s ease;
}
.asshole-free-header .header-content .line-1 {
  text-align: right;
}
.asshole-free-header .header-content .line-1 span {
  position: relative;
  z-index: 5;
}
.asshole-free-header .header-content .line-1::after {
  content: "Asshole";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 200;
  color: rgba(255, 0, 0, 0.5);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}
.asshole-free-header .header-content .line-1 .distorted-a {
  position: relative;
  left: -9px;
}
.asshole-free-header .header-content .line-1 .distorted-a::after {
  content: unset;
}
.asshole-free-header .header-content .line-2 {
  text-align: left;
  position: relative;
  top: -3vw;
}
@media (max-width: 1400px) {
  .asshole-free-header {
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 35px;
  }
  .asshole-free-header .header-content .line-1, .asshole-free-header .header-content .line-2 {
    font-size: 170px;
  }
  .asshole-free-header .header-content .line-1 {
    right: -100px;
  }
  .asshole-free-header .header-content .line-2 {
    left: -100px;
  }
}
@media (max-width: 1200px) {
  .asshole-free-header {
    padding-top: 50px;
  }
  .asshole-free-header .header-content .line-1, .asshole-free-header .header-content .line-2 {
    font-size: 140px;
  }
  .asshole-free-header .header-content .line-1 {
    right: -130px;
  }
  .asshole-free-header .header-content .line-2 {
    left: -130px;
  }
}
@media (max-width: 992px) {
  .asshole-free-header {
    padding-top: 65px;
  }
  .asshole-free-header .header-content .line-1, .asshole-free-header .header-content .line-2 {
    font-size: 110px;
  }
  .asshole-free-header .header-content .line-1 {
    right: -150px;
  }
  .asshole-free-header .header-content .line-2 {
    left: -150px;
  }
}
@media (max-width: 768px) {
  .asshole-free-header .header-content .line-1, .asshole-free-header .header-content .line-2 {
    font-size: 110px;
  }
  .asshole-free-header .header-content .line-1::after {
    left: 0;
  }
}
@media (max-width: 576px) {
  .asshole-free-header {
    padding-top: 0;
  }
  .asshole-free-header .header-content {
    max-width: 100%;
    width: unset;
    overflow: hidden;
  }
  .asshole-free-header .header-content .line-1 {
    font-size: 124px;
    right: -70px;
    top: 60px;
  }
  .asshole-free-header .header-content .line-1::after {
    left: 0;
  }
  .asshole-free-header .header-content .line-2 {
    font-size: 124px;
    left: -54px;
    top: 29px;
  }
  .asshole-free-header .header-content .line-2::after {
    left: 0;
  }
}
.two-images {
  margin-top: 182px !important;
}
.two-images .images-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 1px;
}
.two-images .images-container .one-image {
  display: inline-block;
  position: relative;
}
.two-images .images-container .one-image img {
  width: 519px;
  height: 922px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.two-images .images-container .image-left img {
  -o-object-position: 43%;
  object-position: 43%;
}
.two-images .images-container .image-left::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 46px;
  height: 148px;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #ffffff;
}
.two-images .images-container .image-right img {
  -o-object-position: 41%;
  object-position: 41%;
}
.two-images .images-container .image-right::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 102px;
  height: 329px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #ffffff;
}

@media (max-width: 1400px) {
  .two-images .images-container .one-image {
    width: 49%;
  }
  .two-images .images-container .one-image img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .two-images {
    width: 100% !important;
    overflow-x: hidden;
    margin-top: 103px !important;
    overflow-y: visible;
  }
  .two-images .images-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 32px;
    width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2px 0;
    height: auto;
    overflow-y: hidden;
  }
  .two-images .images-container .one-image img {
    width: 100%;
    height: 525px;
  }
}
@media (max-width: 400px) {
  .two-images .images-container {
    width: 400px;
  }
}
.purple-big-header .line-1, .purple-big-header .line-2 {
  color: #6D15D1;
}

.black-big-header .line-1, .black-big-header .line-2 {
  color: #000000;
}

.white-big-header .line-1, .white-big-header .line-2 {
  color: #ffffff;
}

.big-header {
  width: 100%;
  overflow-x: hidden;
}
.big-header .header-content {
  width: calc(100% - 222px);
  margin: 0 auto;
}
.big-header .header-content .line-1, .big-header .header-content .line-2 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 12.5vw;
  position: relative;
}
.big-header .header-content .line-1 span, .big-header .header-content .line-2 span {
  position: relative;
}
.big-header .header-content .line-1 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -1px;
  /*
  width: 90px;
  height: 108%;
  */
  width: 5vw;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0px 100%);
  clip-path: polygon(100% 0, 100% 100%, 0px 100%);
  background-color: #ffffff;
}
.big-header .header-content .line-2 {
  text-align: right;
  top: -3vw;
  padding-right: 69px;
}
.big-header .header-content .line-2 span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1px;
  /*
  width: 130px;
  height: 108%;
  */
  width: 7vw;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 38% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 38% 0, 100% 100%, 0 100%);
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .big-header .header-content {
    width: unset;
  }
  .big-header .header-content .line-1 {
    font-size: 15vw;
    left: 0px;
  }
  .big-header .header-content .line-1 span::after {
    height: 100%;
    width: 10vw;
  }
  .big-header .header-content .line-2 {
    font-size: 15vw;
    top: 0;
    right: 0;
    padding-right: 0;
  }
  .big-header .header-content .line-2 span::after {
    height: 100%;
    width: 10vw;
  }
}
.hiring-image {
  display: block;
  width: 92vw;
  max-width: 1560px;
  height: 638px;
  margin: 160px auto -1px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("../images/konferencni-room.jpg");
  background-size: cover;
  transition: all 1s ease-out;
}
.hiring-image .image-text {
  padding: 152px 0 0;
}
.hiring-image h3 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  text-align: center;
  color: #ffffff;
  width: 600px;
  margin: 0 auto;
}
.hiring-image p {
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  width: 300px;
  margin: 28px auto 0;
}
.hiring-image .b2bcta {
  max-width: 300px;
  width: 80%;
}
.hiring-image .image-form {
  margin-top: 79px;
  position: relative;
}
.hiring-image .image-form .formular {
  box-sizing: border-box;
  margin-bottom: -6px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
.hiring-image .image-form .formular .inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
}
.hiring-image .image-form .formular .inputs > span {
  display: block;
}
.hiring-image .image-form .formular .inputs > span:first-child {
  grid-column: span 2;
}
.hiring-image .image-form .formular .name-input, .hiring-image .image-form .formular .email-input, .hiring-image .image-form .formular .phone-input {
  width: 100%;
}
.hiring-image .image-form .formular input {
  box-sizing: border-box;
  width: 100%;
  border: none;
  height: 64px;
  background-color: rgba(150, 150, 150, 0.5);
  font-family: "Visby CF", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #ffffff;
  padding-left: 26px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.hiring-image .image-form .formular input::-moz-placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
.hiring-image .image-form .formular input:-ms-input-placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
.hiring-image .image-form .formular input::placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
.hiring-image .image-form .formular .input-success {
  border-bottom: 2px solid #6D15D1;
  position: relative;
}
.hiring-image .image-form .formular .input-success::after {
  content: "";
  display: block;
  position: absolute;
  right: 32px;
  top: 28px;
  height: 13px;
  width: 13px;
  background-size: contain;
  background-image: url("../images/checkmark.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.hiring-image .image-form .formular .input-fail {
  border-bottom: 2px solid #FF0250;
  position: relative;
}
.hiring-image .image-form .formular .input-fail::after {
  content: "";
  display: block;
  position: absolute;
  right: 31px;
  top: 29px;
  height: 10px;
  width: 10px;
  background-size: contain;
  background-image: url("../images/cross-red.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.hiring-image .image-form .formular .buttons {
  width: 100%;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.hiring-image .image-form .formular .buttons .upload-section {
  min-width: 0;
}
.hiring-image .image-form .formular .buttons .upload-section.cv-upload-section .cv-upload-button {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hiring-image .image-form .formular .buttons .upload-section.cv-upload-section .uploaded-file-shown.cv-file {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hiring-image .image-form .formular .buttons .upload-section.portfolio-upload-section .portfolio-upload-button {
  background-color: rgba(150, 150, 150, 0.5);
}
.hiring-image .image-form .formular .buttons .upload-section.portfolio-upload-section .uploaded-file-shown.portfolio-file {
  background-color: rgba(150, 150, 150, 0.5);
  border: 1px solid #fff;
}
.hiring-image .image-form .formular .uploaded-files {
  display: flex;
  flex-flow: column;
  gap: 12px;
  margin-top: 12px;
}
.hiring-image .image-form .formular input[type=file] {
  display: none;
}
.hiring-image .image-form .formular .portfolio-upload-button, .hiring-image .image-form .formular .cv-upload-button {
  box-sizing: border-box;
  width: 100%;
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: inline-block;
  padding: 26px 26px 24px 46px;
  border-radius: 100px;
  position: relative;
  text-align: center;
  background-color: rgba(150, 150, 150, 0.5);
}
.hiring-image .image-form .formular .portfolio-upload-button:hover, .hiring-image .image-form .formular .cv-upload-button:hover {
  cursor: pointer;
}
.hiring-image .image-form .formular .portfolio-upload-button .upload-size-info, .hiring-image .image-form .formular .cv-upload-button .upload-size-info {
  display: block;
  font-size: 9px;
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hiring-image .image-form .formular .portfolio-upload-button::after, .hiring-image .image-form .formular .cv-upload-button::after {
  content: "+";
  display: block;
  position: absolute;
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
  top: 26px;
  left: 26px;
  width: 10px;
  height: 10px;
}
.hiring-image .image-form .formular .uploaded-file-shown {
  font-family: "Naville", sans-serif;
  font-family: Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: inline-block;
  /*padding: 28px 47px 22px 15px;*/
  border-radius: 100px;
  position: relative;
  background-color: rgba(150, 150, 150, 0.5);
  display: flex;
  align-items: center;
  padding: 8px 24px 8px 12px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.hiring-image .image-form .formular .file-cross {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 10px;
  height: 10px;
  background-image: url("../images/cross-purple.svg");
  filter: brightness(0) invert(100%);
}
.hiring-image .image-form .formular .file-cross:hover {
  cursor: pointer;
}
.hiring-image .image-form .formular .send-button-class {
  width: 100%;
  display: block;
  margin-inline: auto;
  margin-top: 20px;
  text-align: left;
}
.hiring-image .image-form .formular .send-button {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 27px 95px 25px 99px;
  background-color: #6D15D1;
  color: #ffffff;
  width: calc(100% + 0px);
  text-align: center;
  transition: all 0.3s ease;
}
.hiring-image .image-form .formular .send-button:hover {
  cursor: pointer;
  background-color: #6213BC;
}
.hiring-image .image-form .formular #agreement-input {
  opacity: 0;
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  position: relative;
  top: 40px;
  left: 11px;
}
.hiring-image .image-form .formular #agreement-input:checked + label::before {
  background-color: #6D15D1;
}
.hiring-image .image-form .formular #agreement-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  left: -27px;
  top: 15px;
  width: 13px;
  height: 10px;
  background-image: url("../images/checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(100%);
}
.hiring-image .image-form .formular .agreement-label {
  font-family: "Visby CF", sans-serif;
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
  position: relative;
  left: 32px;
  padding-top: 13px;
}
.hiring-image .image-form .formular .agreement-label:hover {
  cursor: pointer;
}
.hiring-image .image-form .formular .agreement-label::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: -33px;
  top: 8px;
  border: 2px solid #6D15D1;
  border-radius: 4px;
}
.hiring-image .image-form .formular .agreement-label a {
  color: white;
}

@media (max-width: 1300px) {
  .hiring-image {
    height: auto;
    padding-bottom: 97px;
  }
  .hiring-image .image-form .formular .inputs {
    width: 100%;
  }
  .hiring-image .image-form .formular .portfolio-upload-button, .hiring-image .image-form .formular .cv-upload-button {
    padding: 26px 0 24px;
    text-align: center;
  }
  .hiring-image .image-form .formular .uploaded-file-shown {
    margin-left: 0;
    text-align: center;
  }
  .hiring-image .image-form .formular input {
    /* width: 100%; */
  }
  .hiring-image .image-form .formular .buttons {
    width: 100%;
    text-align: left;
  }
  .hiring-image .image-form .formular .send-button-class {
    width: 300px;
    margin: 30px auto 0;
    float: unset;
  }
}
@media (max-width: 1200px) {
  .hiring-image .image-form .formular .inputs {
    justify-content: space-around;
  }
  .hiring-image .image-form .formular .send-button {
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .hiring-image {
    margin: 100px auto -1px;
  }
  .hiring-image .image-text {
    padding: 70px 0 0;
  }
  .hiring-image h3 {
    text-align: center;
    width: 80%;
  }
  .hiring-image p {
    width: 65%;
  }
  .hiring-image .image-form {
    left: unset;
  }
  .hiring-image .image-form .formular {
    width: 100%;
    padding-inline: 40px;
  }
  .hiring-image .image-form .formular .inputs {
    width: 100%;
    display: block;
    flex-wrap: unset;
    justify-content: unset;
  }
  .hiring-image .image-form .formular .name-input, .hiring-image .image-form .formular .email-input, .hiring-image .image-form .formular .phone-input {
    display: block;
    margin-bottom: 14px;
  }
  .hiring-image .image-form .formular input {
    /*
    padding: 0px 65px 0px 32px;
    width: 100%; 
    */
  }
  .hiring-image .image-form .formular .buttons {
    margin-top: 30px;
    text-align: left;
  }
  .hiring-image .image-form .formular .portfolio-upload-button, .hiring-image .image-form .formular .cv-upload-button {
    display: block;
    text-align: center;
    padding: 25px 0;
    margin-bottom: 9px;
    width: 100%;
    max-width: 500px;
  }
  .hiring-image .image-form .formular .uploaded-file-shown {
    text-align: left;
    width: unset;
    float: unset;
  }
  .hiring-image .image-form .formular .send-button-class {
    margin-top: 23px;
    margin-left: 0;
    float: unset;
    display: block;
    width: unset;
    margin-left: unset;
  }
  .hiring-image .image-form .formular .send-button {
    text-align: center;
    width: 100%;
    padding: 27px 0 25px 0;
  }
}
@media (max-width: 768px) {
  .hiring-image .image-form .formular {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hiring-image .image-form .formular {
    padding-inline: 20px;
  }
  .hiring-image .image-form .formular .buttons {
    grid-template-columns: 1fr;
  }
}
/* Components of the web - Homepage */
.homepage {
  max-width: 100vw;
  overflow: hidden;
  /*
  * There is nothing here yet.
  * This block uses _main-text-block.scss
  */
}
.homepage .landing {
  display: block;
  margin: 0;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.homepage .landing video,
.homepage .landing img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.homepage .landing::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.homepage .landing .center-main-content {
  display: block;
  position: relative;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  padding-inline: 20px;
}
.homepage .landing .mobile-title {
  display: none;
}
.homepage .landing h1 {
  color: #ffffff;
  text-align: center;
}
.homepage .landing h1 .first-line {
  padding-right: 10px;
}
.homepage .landing h5, .homepage .landing .h5 {
  margin-top: 28px;
  color: #ffffff;
  text-align: center;
}
.homepage .landing h5 .first-line, .homepage .landing .h5 .first-line {
  position: relative;
  left: -2px;
}
.homepage .landing a {
  display: inline-block;
  text-decoration: none;
  color: white;
  width: 200px;
  margin: 79px auto 0;
  position: relative;
}
.homepage .landing a .text {
  font-family: "Visby CF", sans-serif;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  border-bottom: 2px solid #6D15D1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  margin-left: 20px;
}
.homepage .landing a .icon {
  display: inline-block;
  background-color: #6D15D1;
  border-radius: 100px;
  height: 52px;
  width: 52px;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center;
}
.homepage .landing .landing-two-icons {
  margin: 0 auto;
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.homepage .landing .landing-two-icons .scroll-down .icon {
  transition: all 0.2s ease;
}
.homepage .landing .landing-two-icons .scroll-down:hover .icon {
  background-position-y: 23px;
}
.homepage .landing .landing-two-icons .play-showreel .icon {
  background-color: transparent;
  border: 1px solid #6D15D1;
  background-image: url("../images/play.svg");
  background-position: 22px center;
  transition: all 0.2s ease;
}
.homepage .landing .landing-two-icons .play-showreel:hover .icon {
  background-color: rgba(109, 21, 209, 0.7);
}
.homepage .popup-showreel {
  position: fixed;
  width: 50vw;
  height: 50vh;
  top: 25vh;
  left: 25vw;
  z-index: 129312931293129;
  transition: width 1s ease, height 1s ease, top 1s ease, left 1s ease, opacity 1s ease;
  display: none;
  opacity: 0;
}
.homepage .popup-showreel .close-popup-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 20px;
  right: 20px;
  background-color: #6D15D1;
  border-radius: 100px;
  cursor: pointer;
}
.homepage .popup-showreel .close-popup-button::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/cross-red.svg);
  filter: brightness(0) invert(100%);
  position: absolute;
  top: 21px;
  left: 21px;
}
.homepage .popup-showreel video {
  width: 100%;
  height: 100%;
  background-color: #000000;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.homepage .popup-showreel.showreel-expanded {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 1s ease, width 1s ease, height 1s ease, top 1s ease, left 1s ease;
}
@media (max-width: 910px) {
  .homepage .landing .logos-bottom {
    display: none !important;
  }
  .homepage .landing .logos-slider {
    display: block !important;
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .homepage .landing .landing-two-icons {
    width: 170px;
  }
  .homepage .landing a {
    width: 100%;
    margin: 20px auto;
  }
  .homepage .landing .computer-title {
    display: none;
  }
  .homepage .landing .mobile-title {
    display: block;
  }
  .homepage .landing .h5 br {
    display: none;
  }
  .homepage .landing .logos-bottom {
    overflow-y: hidden;
    overflow-x: scroll;
    height: 112px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .homepage .landing .logos-bottom .logos-container {
    padding: 0 30px;
    margin-top: 38px;
    width: 640px;
  }
}
.homepage .logos-slider {
  display: none;
}
.homepage .logos-bottom {
  z-index: 5;
  display: block;
  margin-top: 60px;
  margin: 60px auto 0;
  width: 100%;
  padding-bottom: 43px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.homepage .logos-bottom .logos-container {
  display: block;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  position: relative;
  margin-top: 30px;
}
.homepage .logos-bottom img {
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.homepage .logos-slider {
  z-index: 5;
  display: none;
  margin: 0 auto;
  width: 100%;
  height: 163px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.homepage .logos-slider .logos-splide {
  margin-top: 38px;
}
.homepage .logos-slider .splide__slide {
  display: inline-block;
}
.homepage .logos-slider .splide__slide img {
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.homepage .we-understand {
  margin-top: 161px !important;
}
@media (max-width: 992px) {
  .homepage .we-understand {
    margin-top: 50px !important;
  }
}
@media (max-width: 576px) {
  .homepage .we-understand {
    margin-top: 0px !important;
  }
}
.homepage .twoktenstart {
  margin-top: 323px;
  width: 100%;
  overflow-x: hidden;
}
.homepage .twoktenstart .twoktenstart-content {
  width: calc(100% - 148px);
  margin: 0 auto;
}
.homepage .twoktenstart .line-1, .homepage .twoktenstart .line-2 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 22.2vw;
  color: #ffffff;
  position: relative;
}
.homepage .twoktenstart .line-1 {
  text-align: left;
}
.homepage .twoktenstart .line-1 span {
  position: relative;
}
.homepage .twoktenstart .line-1 span::after {
  content: "";
  display: block;
  position: absolute;
  right: -1px;
  top: -5%;
  background: #000000;
  /*
  width: 283px;
  height: 110%;
  */
  width: 15vw;
  height: 24vw;
  -webkit-clip-path: polygon(52% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 0 100%);
}
.homepage .twoktenstart .line-2 {
  text-align: right;
  top: -4vw;
}
.homepage .twoktenstart .line-2 span {
  position: relative;
}
.homepage .twoktenstart .line-2 span::after {
  content: "";
  display: block;
  position: absolute;
  right: calc(100% - 510px);
  top: -5%;
  left: -1px;
  background: #000000;
  /*
  width: 288px;
  height: 110%;
  */
  width: 15vw;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 49% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 49% 0, 100% 100%, 0 100%);
}
@media (max-width: 576px) {
  .homepage .twoktenstart {
    margin-top: 100px;
    width: 100%;
    overflow: hidden;
  }
  .homepage .twoktenstart .twoktenstart-content {
    width: 100%;
  }
  .homepage .twoktenstart .line-1 {
    font-size: 20vw;
    left: 30px;
  }
  .homepage .twoktenstart .line-1 span::after {
    width: 10vw;
    height: 100%;
  }
  .homepage .twoktenstart .line-2 {
    font-size: 20vw;
    top: 0;
    left: unset;
    right: 30px;
  }
  .homepage .twoktenstart .line-2 span::after {
    width: 10vw;
    height: 100%;
  }
}
.homepage .statistics {
  margin-top: 95px !important;
  overflow-x: hidden;
}
.homepage .statistics table {
  border-collapse: collapse;
  width: 100%;
}
.homepage .statistics table .stat-value {
  font-size: 80px;
  padding-right: 0;
  width: 30%;
  padding: 23px 50px 0 0;
}
.homepage .statistics table .stat-name {
  display: block;
  font-size: 32px;
  margin-top: -1px;
  padding: 103px 0 83px;
  width: 100%;
}
.homepage .statistics tr {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}
.homepage .statistics td {
  border-collapse: collapse;
  font-family: "Naville", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
.homepage .statistics .stats-table {
  display: none;
  width: 100%;
  padding-bottom: 1px;
}
.homepage .statistics .stats-table .one-line {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-collapse: collapse;
  font-family: "Naville", sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: -1px;
}
.homepage .statistics .stats-table .stat-value {
  font-size: 80px;
  padding-right: 0;
  width: 24.3%;
  padding: 38px 0 0;
  min-width: 220px;
  width: 25%;
  display: inline-block;
}
.homepage .statistics .stats-table .stat-name {
  font-size: 32px;
  padding: 35px 0 35px;
  display: inline-block;
  position: relative;
  top: -11px;
}
@media (max-width: 768px) {
  .homepage .statistics {
    margin-top: 76px !important;
  }
  .homepage .statistics table {
    display: none;
  }
  .homepage .statistics .stats-table {
    display: block;
  }
  .homepage .statistics .stats-table .stat-value {
    display: block;
    width: 100%;
    border-bottom: unset;
    padding: 38px 0 0;
    width: 100%;
  }
  .homepage .statistics .stats-table .stat-name {
    display: block;
    width: 100%;
    padding: 23px 0 35px;
    border-top: unset;
    font-size: 24px;
    line-height: 30px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .homepage .statistics .stats-table .stat-value {
    font-size: 70px;
  }
  .homepage .statistics .stats-table .stat-name {
    font-size: 22px;
  }
}
.homepage .slider {
  position: relative;
  margin-top: 170px;
}
.homepage .slider .splide__slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(225deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 75%);
  z-index: 0;
}
.homepage .slider img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: var(--sm-op, center);
  object-position: var(--sm-op, center);
}
@media (min-width: 1025px) {
  .homepage .slider img {
    -o-object-position: center;
    object-position: center;
  }
}
.homepage .slider .one-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.homepage .slider .slider-content {
  position: absolute;
  z-index: 1;
  bottom: 42px;
  left: 100px;
}
.homepage .slider .slider-content h3 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 28px;
}
.homepage .slider .slider-content p {
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #ffffff;
  width: 380px;
  margin-left: -3px;
}
.homepage .slider .view-detail {
  position: absolute;
  bottom: 57px;
  right: 109px;
  cursor: pointer;
}
.homepage .slider .view-detail .text {
  display: inline-block;
  font-family: "Visby CF", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  position: relative;
  bottom: 22px;
  margin-right: 17px;
}
.homepage .slider .view-detail .icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background-color: #6D15D1;
  background-image: url("../images/fullscreen.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}
.homepage .slider .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 100%;
}
.homepage .slider .splide__arrows .splide__arrow {
  position: absolute;
  fill: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #6213BC;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  opacity: 1;
  transition: all 0.5s ease;
}
.homepage .slider .splide__arrows .splide__arrow svg {
  height: 25px;
  width: 25px;
}
.homepage .slider .splide__arrows .splide__arrow--prev {
  transform: rotate(180deg);
  left: 50px;
  padding: 2px 0 0 2px;
}
.homepage .slider .splide__arrows .splide__arrow--next {
  right: 50px;
  padding: 4px 0 0 0px;
}
.homepage .slider .splide__arrows .splide__arrow:disabled {
  opacity: 0;
}
.homepage .slider .splide__arrows .splide__arrow:hover {
  background: #6D15D1;
}
.homepage .slider .splide__pagination {
  justify-content: center;
  gap: 20px;
  width: 564px;
  position: relative;
  top: 30px;
  left: 50%;
  transform: translateX(calc(-50% - 20px));
}
.homepage .slider .splide__pagination button {
  height: 1px;
  width: 64px;
  padding: 0px;
  border: unset;
  background-color: #C1C1C1;
}
.homepage .slider .splide__pagination .is-active {
  background-color: #6D15D1;
  padding: 1px 0 1px 0;
}
.homepage .slider .cta-button {
  position: absolute;
  bottom: 84px;
  right: calc(9.75vw + 100px);
}
.homepage .slider .locked .locked-icon {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("../images/padlock.svg");
}
.homepage .slider .locked:hover .slide-darken {
  opacity: 1;
}
@media (max-width: 1550px) {
  .homepage .slider .splide__arrows .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .homepage .slider .splide__arrows .splide__arrow svg {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 1200px) {
  .homepage .slider .slider-content {
    bottom: 150px;
    left: 80px;
    width: 80%;
  }
  .homepage .slider .slider-content p {
    font-size: 16px;
  }
  .homepage .slider .splide__slide::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
  .homepage .slider .cta-button {
    right: calc(9.75vw + 80px);
  }
}
@media (max-width: 768px) {
  .homepage .slider {
    margin-top: 50px;
  }
  .homepage .slider .splide__track {
    margin-left: -17px;
  }
  .homepage .slider .splide__slide {
    margin-right: 17px;
  }
  .homepage .slider .splide__slide::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%);
  }
  .homepage .slider .slider-content {
    left: 17px;
    bottom: 0px;
  }
  .homepage .slider .slider-content h3 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 7px;
  }
  .homepage .slider .slider-content p {
    margin-top: 0;
    margin-left: 0;
    width: 97%;
    letter-spacing: 0.03em;
    font-size: 14px;
  }
  .homepage .slider .splide__arrows {
    top: 100%;
    transform: translateY(7px);
  }
  .homepage .slider .splide__arrows .splide__arrow {
    width: 30px;
    height: 30px;
    fill: #ffffff;
  }
  .homepage .slider .splide__arrows .splide__arrow svg {
    width: 12px;
    height: 12px;
  }
  .homepage .slider .splide__arrows .splide__arrow--prev {
    padding: 3px ​0px 0 0px;
    left: 5vw;
  }
  .homepage .slider .splide__arrows .splide__arrow--next {
    right: 5vw;
  }
  .homepage .slider .splide__pagination {
    width: 55%;
  }
  .homepage .slider .splide__pagination button {
    width: 6vw;
  }
  .homepage .slider .cta-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 80px;
    bottom: auto;
  }
  .homepage .slider .view-detail {
    bottom: 11px;
    right: 17px;
  }
}
.homepage .expanding-slider {
  display: none;
  position: fixed;
  max-height: 100vh;
  overflow: hidden;
}
.homepage .expanding-slider-content {
  display: none;
}
@media (max-width: 1200px) {
  .homepage .expanding-slider {
    overflow: scroll;
  }
  .homepage .expanding-slider .detail-content::before {
    display: none;
  }
}
.homepage .technology .technology-header-content {
  width: 100%;
  padding: 160px 0px 32px 0px;
  margin: 0 auto;
  overflow-x: hidden;
}
.homepage .technology .technology-header-content .line-1, .homepage .technology .technology-header-content .line-2 {
  position: relative;
}
.homepage .technology .technology-header-content .line-1 span, .homepage .technology .technology-header-content .line-2 span {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 12.5vw;
  position: relative;
}
.homepage .technology .technology-header-content .line-1 {
  text-align: left;
}
.homepage .technology .technology-header-content .line-1 span {
  color: #000000;
}
.homepage .technology .technology-header-content .line-2 {
  text-align: right;
  top: -3vw;
  left: 4px;
}
.homepage .technology .technology-header-content .line-2 span {
  color: transparent;
  -webkit-text-stroke: 2px #6D15D1;
}
.homepage .technology .cta-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 38px 50px;
}
@media (max-width: 992px) {
  .homepage .technology {
    width: 100%;
    overflow: hidden;
  }
  .homepage .technology .technology-header-content {
    padding: 160px 0 47px;
  }
  .homepage .technology .technology-header-content .line-1 {
    left: 34px;
    top: 0px;
    text-align: right;
  }
  .homepage .technology .technology-header-content .line-1 span {
    font-size: 124px;
  }
  .homepage .technology .technology-header-content .line-2 {
    top: -30px;
    left: -321px;
  }
  .homepage .technology .technology-header-content .line-2 span {
    font-size: 124px;
  }
}
@media (max-width: 768px) {
  .homepage .technology .technology-header-content .line-1 {
    left: unset;
    right: 50px;
  }
  .homepage .technology .technology-header-content .line-2 {
    text-align: left;
    left: 50px;
  }
  .homepage .technology .technology-header-content .line-2 span {
    -webkit-text-stroke: 1px #6D15D1;
  }
}
@media (max-width: 576px) {
  .homepage .technology .technology-header-content {
    padding: 100px 0 50px;
  }
  .homepage .technology .technology-header-content .line-1 {
    text-align: left;
    left: unset;
    right: 0px;
  }
  .homepage .technology .technology-header-content .line-1 span {
    font-size: 20vw;
  }
  .homepage .technology .technology-header-content .line-2 {
    text-align: left;
    left: 0px;
    top: 0;
  }
  .homepage .technology .technology-header-content .line-2 span {
    font-size: 20vw;
  }
}
.homepage .asshole-free {
  margin-top: -5.85vw;
  z-index: 5;
}
.homepage .asshole-free .asshole-free-content {
  margin-top: 92px;
}
@media (max-width: 576px) {
  .homepage .asshole-free {
    margin-top: -120px;
  }
}
@media (max-width: 768px) {
  .homepage .asshole-free-header .header-content {
    margin-top: 100px;
  }
  .homepage .asshole-free-header .header-content .line-1, .homepage .asshole-free-header .header-content .line-2 {
    top: 0;
  }
  .homepage .asshole-free-header .header-content .line-1 {
    right: 0px;
  }
  .homepage .asshole-free-header .header-content .line-1 span {
    font-size: 15vw;
  }
  .homepage .asshole-free-header .header-content .line-1:after {
    display: none;
  }
  .homepage .asshole-free-header .header-content .line-2 {
    left: 0px;
    font-size: 15vw;
  }
  .homepage .asshole-free-content {
    margin-top: 50px;
  }
}
.homepage .hiring-section {
  margin-top: 149px;
}
.homepage .hiring-section p {
  width: 300px;
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  text-align: center;
  margin: 0 auto 0;
}
.homepage .hiring-section .positions {
  width: 1300px;
  width: auto;
  max-width: 1300px;
  margin: 40px auto 0;
  position: relative;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
}
.homepage .hiring-section .positions .positions-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.homepage .hiring-section .positions .positions-wrapper .one-position {
  margin: 0;
  width: 325px;
  height: 165px;
  text-decoration: none;
  color: white;
  position: relative;
  background-color: #6D15D1;
  background-size: cover;
  background-position: center;
  margin: -0.5px;
}
.homepage .hiring-section .positions .positions-wrapper .one-position:hover .arrow-right-button {
  top: 29px;
  opacity: 1;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto {
  color: black;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto p {
  color: black;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto p::after {
  background-color: #6D15D1;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: white;
  transition: all 0.3s ease;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto:first-of-type {
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto:first-of-type::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
  background-color: white;
  transition: all 0.3s ease;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto:hover::before {
  background-color: #6D15D1;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto:hover .position-name {
  color: white;
}
.homepage .hiring-section .positions .positions-wrapper .one-position.post-auto:hover p {
  color: white;
}
.homepage .hiring-section .positions .positions-wrapper .one-position:last-of-type {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 65%, 90% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 90% 100%, 0 100%);
}
.homepage .hiring-section .positions .positions-wrapper .arrow-right-button {
  display: block;
  padding: 44px;
  top: 34px;
  opacity: 0;
  position: absolute;
  left: 43px;
  border-radius: 100px;
  transform: rotate(270deg);
  background-color: #6D15D1;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  transition: all 0.5s ease;
}
.homepage .hiring-section .positions .positions-wrapper .purple-background .arrow-right-button {
  background-color: #000000;
}
.homepage .hiring-section .positions .positions-wrapper .purple-background p::after {
  background-color: white;
}
.homepage .hiring-section .positions .positions-wrapper .position-content {
  position: absolute;
  bottom: 30px;
  left: 42px;
}
.homepage .hiring-section .positions .positions-wrapper .position-name {
  margin-bottom: 36px;
  transition: all 0.3s ease;
}
.homepage .hiring-section .positions .positions-wrapper h4 {
  margin-bottom: 4px;
  margin-left: 1px;
}
.homepage .hiring-section .positions .positions-wrapper p {
  display: block;
  width: auto;
  font-family: "Visby CF", "sans-serif";
  font-weight: 500;
  font-size: 14px;
  margin: 12px 0 0;
  text-align: left;
  text-decoration: none;
  color: white;
  position: absolute;
  bottom: 0px;
  transition: all 0.3s ease;
}
.homepage .hiring-section .positions .positions-wrapper p::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #6D15D1;
  transition: 0.3s ease all;
}
.homepage .hiring-section .phone-show, .homepage .hiring-section .tablet-show {
  display: none;
}
.homepage .hiring-section .hiring-slider {
  margin-top: 50px;
}
.homepage .hiring-section .hiring-slider .splide__slide {
  -webkit-clip-path: none;
  clip-path: none;
  display: inline-block;
}
.homepage .hiring-section .hiring-slider .splide__slide a {
  display: block;
}
.homepage .hiring-section .hiring-slider .splide__slide:first-of-type .one-position {
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
}
.homepage .hiring-section .hiring-slider .splide__slide:first-of-type .one-position::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
  background-color: white;
  transition: all 0.3s ease;
}
.homepage .hiring-section .hiring-slider .splide__slide:last-of-type .one-position {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 65%, 90% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 90% 100%, 0 100%);
}
.homepage .hiring-section .hiring-slider .one-position {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #6D15D1;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto {
  color: black;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto p {
  color: black;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto p::after {
  background-color: #6D15D1;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto h4 {
  color: black;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: white;
  transition: all 0.3s ease;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto:hover::before {
  background-color: #6D15D1;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto:hover .position-name {
  color: white;
}
.homepage .hiring-section .hiring-slider .one-position.post-auto:hover p {
  color: white;
}
.homepage .hiring-section .hiring-slider .one-position .arrow-right-button {
  display: block;
  padding: 44px;
  top: 34px;
  opacity: 0;
  position: absolute;
  left: 43px;
  border-radius: 100px;
  transform: rotate(270deg);
  background-color: #6D15D1;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  transition: all 0.5s ease;
}
.homepage .hiring-section .hiring-slider .one-position:hover .arrow-right-button {
  top: 29px;
  opacity: 1;
}
.homepage .hiring-section .hiring-slider .one-position .position-content {
  position: absolute;
  bottom: 33px;
  left: 30px;
}
.homepage .hiring-section .hiring-slider .one-position h4 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
  transition: all 0.5s ease;
  max-width: 90%;
}
.homepage .hiring-section .hiring-slider .one-position p {
  display: block;
  width: auto;
  font-family: "Visby CF", "sans-serif";
  font-weight: 500;
  font-size: 14px;
  margin: 12px 0 0;
  text-align: left;
  text-decoration: none;
  color: white;
  position: absolute;
  bottom: 0px;
}
.homepage .hiring-section .hiring-slider .one-position p::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #6D15D1;
  transition: 0.5s ease all;
}
.homepage .hiring-section .hiring-slider .purple-background .arrow-right-button {
  background-color: #000000;
}
.homepage .hiring-section .hiring-slider .purple-background p::after {
  background-color: white;
}
.homepage .hiring-section .splide__pagination {
  justify-content: space-between;
  width: 282px;
  position: relative;
  top: 30px;
  left: 50%;
  transform: translateX(calc(-50% - 20px));
}
.homepage .hiring-section .splide__pagination button {
  height: 1px;
  width: 64px;
  padding: 0px;
  border: unset;
  background-color: #C1C1C1;
}
.homepage .hiring-section .splide__pagination .is-active {
  background-color: #6D15D1;
  padding: 1px 0 1px 0;
}
.homepage .hiring-section .hiring-bottom {
  width: 80vw;
  max-width: 700px;
  margin: 0 auto;
}
.homepage .hiring-section .hiring-bottom p {
  margin: 60px auto 0;
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
}
.homepage .hiring-section .big-cta-button {
  margin: 31px auto 0;
  transition: all 0.3s ease;
}
.homepage .hiring-section .big-cta-button:hover {
  background-color: #1d1d1d;
}
@media (max-width: 1400px) {
  .homepage .hiring-section .positions {
    width: 80vw;
  }
  .homepage .hiring-section .positions .positions-wrapper .one-position {
    width: 50%;
  }
  .homepage .hiring-section .tablet-hide {
    display: none;
  }
  .homepage .hiring-section .tablet-show {
    display: block;
  }
}
@media (max-width: 768px) {
  .homepage .hiring-section {
    width: 100%;
    overflow: hidden;
    margin-top: 36px;
  }
  .homepage .hiring-section .phone-show {
    display: block;
  }
  .homepage .hiring-section .phone-hide {
    display: none;
  }
  .homepage .hiring-section p {
    margin: 0 auto;
    position: relative;
  }
  .homepage .hiring-section .positions {
    width: 100%;
    overflow-x: scroll;
    left: 0;
  }
  .homepage .hiring-section .positions::before, .homepage .hiring-section .positions::after {
    content: unset;
  }
  .homepage .hiring-section .positions .positions-wrapper {
    width: 1230px;
    padding-left: 16px;
    margin: 2px 0;
  }
  .homepage .hiring-section .positions .positions-wrapper .one-position {
    width: 288px;
    height: 512px;
  }
  .homepage .hiring-section .positions .positions-wrapper .one-position:first-child::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 30px;
    height: 100px;
    background-color: #ffffff;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 5;
  }
  .homepage .hiring-section .positions .positions-wrapper .one-position:last-child:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 76px;
    height: 245px;
    background-color: #ffffff;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 5;
  }
}
@media (max-width: 576px) {
  .homepage .hiring-section {
    width: 100%;
    overflow: hidden;
    margin-top: 36px;
  }
  .homepage .hiring-section p {
    margin: 0 auto;
    position: relative;
  }
  .homepage .hiring-section .positions {
    width: 100%;
    overflow-x: scroll;
    left: 0;
  }
  .homepage .hiring-section .positions::before, .homepage .hiring-section .positions::after {
    content: unset;
  }
  .homepage .hiring-section .positions .positions-wrapper {
    width: 1230px;
    padding-left: 16px;
    margin: 2px 0;
  }
  .homepage .hiring-section .positions .positions-wrapper .one-position {
    width: 288px;
    height: 512px;
  }
  .homepage .hiring-section .positions .positions-wrapper .one-position:first-child::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 30px;
    height: 100px;
    background-color: #ffffff;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 5;
  }
  .homepage .hiring-section .positions .positions-wrapper .one-position:last-child:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 76px;
    height: 245px;
    background-color: #ffffff;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 5;
  }
  .homepage .hiring-section .hiring-bottom p {
    margin: 153px auto 0;
    width: 280px;
    font-size: 20px;
    line-height: 24px;
  }
  .homepage .hiring-section .big-cta-button {
    margin: 53px auto 0;
  }
}

/* Components of the web - Hiring */
.hiring-page {
  max-width: 100vw;
  overflow: hidden;
}
.hiring-page .section-text-1 {
  padding-top: 150px;
}
.hiring-page .section-text-1 .cta-button {
  margin: 96px 0 0 0;
}
@media (max-width: 576px) {
  .hiring-page .section-text-1 {
    padding-top: 127px;
  }
}
.hiring-page .big-video {
  margin-top: 180px;
  margin-bottom: -317px;
}
@media (max-width: 576px) {
  .hiring-page .big-video {
    margin-top: 100px;
  }
}
.hiring-page .section-text-2 .asshole-free {
  margin-top: 0;
  padding-top: 200px;
}
.hiring-page .section-text-2 .asshole-free .asshole-free-header .header-content .line-1, .hiring-page .section-text-2 .asshole-free .asshole-free-header .header-content .line-2 {
  color: #ffffff;
}
.hiring-page .section-text-2 .main-text-block {
  margin-top: 112px;
}
@media (max-width: 768px) {
  .hiring-page .section-text-2 .asshole-free-header .header-content {
    margin-top: 100px;
  }
  .hiring-page .section-text-2 .asshole-free-header .header-content .line-1, .hiring-page .section-text-2 .asshole-free-header .header-content .line-2 {
    top: 0;
  }
  .hiring-page .section-text-2 .asshole-free-header .header-content .line-1 {
    right: 0px;
  }
  .hiring-page .section-text-2 .asshole-free-header .header-content .line-1 span {
    font-size: 15vw;
  }
  .hiring-page .section-text-2 .asshole-free-header .header-content .line-1:after {
    display: none;
  }
  .hiring-page .section-text-2 .asshole-free-header .header-content .line-2 {
    left: 0px;
    font-size: 15vw;
  }
  .hiring-page .section-text-2 .main-text-block {
    margin-top: 100px;
  }
}
@media (max-width: 576px) {
  .hiring-page .section-text-2 .asshole-free {
    margin-top: -120px;
  }
  .hiring-page .section-text-2 .asshole-free .asshole-free-content {
    margin-top: 129px;
  }
}
.hiring-page .two-images {
  margin-top: 265px !important;
}
.hiring-page .two-images .images-container .image-left::after, .hiring-page .two-images .images-container .image-right::after {
  background-color: #000000;
}
.hiring-page .two-images .images-container .image-right img, .hiring-page .two-images .images-container .image-left img {
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 576px) {
  .hiring-page .two-images {
    margin-top: 103px !important;
  }
}
.hiring-page .section-text-3 {
  margin-top: 261px;
}
@media (max-width: 576px) {
  .hiring-page .section-text-3 {
    margin-top: 50px;
  }
}
.hiring-page .big-image-1 {
  margin-top: 277px;
  margin-bottom: 0px;
}
@media (max-width: 576px) {
  .hiring-page .big-image-1 {
    margin-top: 100px;
  }
}
.hiring-page .section-text-4 {
  margin-top: 279px;
}
@media (max-width: 576px) {
  .hiring-page .section-text-4 {
    margin-top: 100px;
  }
}
.hiring-page .big-image-2 {
  margin-top: 255px;
}
@media (max-width: 576px) {
  .hiring-page .big-image-2 {
    margin-top: 100px;
  }
  .hiring-page .big-image-2 img {
    height: 666px;
  }
}
.hiring-page .section-text-5 .main-text-block {
  margin-top: 112px;
}
.hiring-page .section-text-5 .asshole-free {
  margin-top: 0;
  padding-top: 200px;
}
.hiring-page .section-text-5 .asshole-free .asshole-free-header .header-content .line-1, .hiring-page .section-text-5 .asshole-free .asshole-free-header .header-content .line-2 {
  color: #000000;
}
@media (max-width: 768px) {
  .hiring-page .section-text-5 .asshole-free-header .header-content {
    margin-top: 150px;
  }
  .hiring-page .section-text-5 .asshole-free-header .header-content .line-1, .hiring-page .section-text-5 .asshole-free-header .header-content .line-2 {
    top: 0;
  }
  .hiring-page .section-text-5 .asshole-free-header .header-content .line-1 {
    right: 0px;
  }
  .hiring-page .section-text-5 .asshole-free-header .header-content .line-1 span {
    font-size: 15vw;
  }
  .hiring-page .section-text-5 .asshole-free-header .header-content .line-1:after {
    display: none;
  }
  .hiring-page .section-text-5 .asshole-free-header .header-content .line-2 {
    left: 0px;
    font-size: 15vw;
  }
  .hiring-page .section-text-5 .main-text-block {
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .hiring-page .section-text-5 .asshole-free {
    margin-top: -120px;
  }
  .hiring-page .section-text-5 .asshole-free .asshole-free-content {
    margin-top: 129px;
  }
}
.hiring-page .positions-expandable {
  margin-top: 103px;
  /* Hover states */
}
.hiring-page .positions-expandable .one-position {
  margin-top: -1px;
  padding: 57px 70px 30px 0;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
  transition: all 0.3s ease;
  max-height: 53px;
  overflow: hidden;
}
.hiring-page .positions-expandable .one-position .position-name {
  margin: 0;
}
.hiring-page .positions-expandable .one-position .position-underline {
  margin: -3px 0 0;
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
}
.hiring-page .positions-expandable .one-position .position-expander-icon {
  display: block;
  position: absolute;
  top: 50px;
  right: 9px;
  font-family: "Naville", sans-serif;
  letter-spacing: -0.28em;
  font-weight: 600;
  font-size: 32px;
  color: #6D15D1;
  transition: all 0.3s ease;
}
.hiring-page .positions-expandable .one-position .position-expander-icon::after {
  content: "--";
  position: absolute;
  transform: rotate(90deg);
  width: 24px;
  left: -2px;
  transition: all 0.3s ease;
}
.hiring-page .positions-expandable .one-position .position-expander-icon::after:hover {
  cursor: pointer;
}
.hiring-page .positions-expandable .one-position .position-expander-icon:hover {
  cursor: pointer;
}
.hiring-page .positions-expandable .one-position .position-expandable-content {
  transition: all 0.3s 0s ease;
  opacity: 0;
}
.hiring-page .positions-expandable .one-position .position-description {
  width: 97%;
  margin-top: 29px;
  margin-bottom: 66px;
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #000000;
}
.hiring-page .positions-expandable .one-position .position-description p {
  margin-bottom: 0px;
}
.hiring-page .positions-expandable .one-position .big-purple-text {
  margin-top: 46px;
  width: 80%;
  font-family: "Visby CF", sans-serif;
  font-weight: bold;
  font-size: 48px;
  line-height: 60px;
  color: #6D15D1;
}
.hiring-page .positions-expandable .one-position .needed-skills {
  margin-top: 55px;
}
.hiring-page .positions-expandable .one-position .strong-text {
  font-weight: bold;
}
.hiring-page .positions-expandable .one-position .strong-text-skills {
  font-family: "Visby CF", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  color: #000000;
}
.hiring-page .positions-expandable .one-position ul {
  margin-top: 0px;
  list-style: none;
}
.hiring-page .positions-expandable .one-position ul li {
  position: relative;
  left: -40px;
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #000000;
  letter-spacing: 0.015em;
}
.hiring-page .positions-expandable .one-position ul li::before {
  content: "•";
  font-size: 50px;
  position: relative;
  top: 7.5px;
  left: -2px;
}
.hiring-page .positions-expandable .one-position .formular {
  margin-top: 99px;
  margin-bottom: -6px;
  width: 100%;
  max-width: 600px;
}
.hiring-page .positions-expandable .one-position .formular .inputs > span {
  display: block;
  margin-bottom: 16px;
}
.hiring-page .positions-expandable .one-position .formular input {
  box-sizing: border-box;
  width: 100%;
  border: none;
  height: 64px;
  background: #f4f4f4;
  font-family: "Visby CF", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #000000;
  padding-left: 26px;
}
.hiring-page .positions-expandable .one-position .formular .input-success {
  border-bottom: 2px solid #6D15D1;
  position: relative;
}
.hiring-page .positions-expandable .one-position .formular .input-success::after {
  content: "";
  display: block;
  position: absolute;
  right: 32px;
  top: 28px;
  height: 13px;
  width: 13px;
  background-size: contain;
  background-image: url("../images/checkmark.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.hiring-page .positions-expandable .one-position .formular .input-fail {
  border-bottom: 2px solid #FF0250;
  position: relative;
}
.hiring-page .positions-expandable .one-position .formular .input-fail::after {
  content: "";
  display: block;
  position: absolute;
  right: 31px;
  top: 29px;
  height: 10px;
  width: 10px;
  background-size: contain;
  background-image: url("../images/cross-red.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.hiring-page .positions-expandable .one-position .formular .buttons {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.hiring-page .positions-expandable .one-position .formular .buttons .upload-section {
  min-width: 0;
  margin-bottom: 0;
}
.hiring-page .positions-expandable .one-position .formular .buttons .upload-section.cv-upload-section .cv-upload-button {
  background-color: rgba(209, 21, 21, 0.1);
  border: 1px solid rgba(209, 21, 21, 0.3);
}
.hiring-page .positions-expandable .one-position .formular .buttons .upload-section.cv-upload-section .uploaded-file-shown.cv-file {
  border: 1px solid rgba(209, 21, 21, 0.3);
}
.hiring-page .positions-expandable .one-position .formular .uploaded-files {
  display: flex;
  flex-flow: column;
  gap: 12px;
  margin-top: 12px;
}
.hiring-page .positions-expandable .one-position .formular input[type=file] {
  display: none;
}
.hiring-page .positions-expandable .one-position .formular .portfolio-upload-button, .hiring-page .positions-expandable .one-position .formular .cv-upload-button {
  box-sizing: border-box;
  width: 100%;
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #6D15D1;
  border: 1px solid #6D15D1;
  display: inline-block;
  padding: 26px 26px 24px 46px;
  border-radius: 100px;
  position: relative;
  text-align: center;
}
.hiring-page .positions-expandable .one-position .formular .portfolio-upload-button:hover, .hiring-page .positions-expandable .one-position .formular .cv-upload-button:hover {
  cursor: pointer;
}
.hiring-page .positions-expandable .one-position .formular .portfolio-upload-button .upload-size-info, .hiring-page .positions-expandable .one-position .formular .cv-upload-button .upload-size-info {
  display: block;
  font-size: 9px;
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hiring-page .positions-expandable .one-position .formular .portfolio-upload-button::after, .hiring-page .positions-expandable .one-position .formular .cv-upload-button::after {
  content: "+";
  display: block;
  position: absolute;
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #6D15D1;
  top: 26px;
  left: 26px;
  width: 10px;
  height: 10px;
}
.hiring-page .positions-expandable .one-position .formular .uploaded-file-shown {
  font-family: Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #6D15D1;
  border: 1px solid #6D15D1;
  /*padding: 28px 47px 22px 15px;*/
  border-radius: 100px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 24px 8px 12px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.hiring-page .positions-expandable .one-position .formular .uploaded-file-shown::after {
  content: "";
  display: block;
  width: 60px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
}
.hiring-page .positions-expandable .one-position .formular .file-cross {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 10px;
  height: 10px;
  background-image: url("../images/cross-purple.svg");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.hiring-page .positions-expandable .one-position .formular .file-cross:hover {
  cursor: pointer;
}
.hiring-page .positions-expandable .one-position .formular .send-button-class {
  width: 50%;
  display: block;
  text-align: center;
}
.hiring-page .positions-expandable .one-position .formular .send-button {
  -webkit-appearance: none;
  display: block;
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 27px 95px 25px 99px;
  background-color: #6D15D1;
  color: #ffffff;
  width: calc(100% + 0px);
  text-align: center;
  transition: all 0.3s ease;
}
.hiring-page .positions-expandable .one-position .formular .send-button:hover {
  cursor: pointer;
  background-color: #6213BC;
}
.hiring-page .positions-expandable .one-position .formular .agreement-input, .hiring-page .positions-expandable .one-position .formular .agreement-input-top {
  opacity: 0;
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  position: relative;
  top: 40px;
  left: 12px;
}
.hiring-page .positions-expandable .one-position .formular .agreement-input-top:checked + label::before {
  background-color: #6D15D1;
}
.hiring-page .positions-expandable .one-position .formular .agreement-input-top:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  left: -27px;
  top: 15px;
  width: 13px;
  height: 10px;
  background-image: url("../images/checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(100%);
}
.hiring-page .positions-expandable .one-position .formular .agreement-label {
  font-family: "Visby CF", sans-serif;
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
  position: relative;
  left: 33px;
  padding-top: 13px;
  text-align: left;
}
.hiring-page .positions-expandable .one-position .formular .agreement-label:hover {
  cursor: pointer;
}
.hiring-page .positions-expandable .one-position .formular .agreement-label::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: -33px;
  top: 8px;
  border: 2px solid #6D15D1;
  border-radius: 4px;
}
.hiring-page .positions-expandable .one-position .formular .agreement-label a {
  color: black;
}
.hiring-page .positions-expandable .active-position {
  padding-left: 30px;
  max-height: 15000px !important;
  padding: 57px 70px 100px;
}
.hiring-page .positions-expandable .active-position .position-name {
  color: #6D15D1;
}
.hiring-page .positions-expandable .active-position .position-expander-icon {
  top: 50px;
  right: 45px;
  letter-spacing: -0.45em;
}
.hiring-page .positions-expandable .active-position .position-expander-icon::after {
  transform: rotate(0);
  left: 0;
}
.hiring-page .positions-expandable .active-position .position-expandable-content {
  transition: all 0.3s 0.1s ease;
  opacity: 1;
}
.hiring-page .positions-expandable .position-name:hover, .hiring-page .positions-expandable .position-underline:hover {
  cursor: pointer;
}
@media (max-width: 1300px) {
  .hiring-page .positions-expandable .one-position .formular {
    width: 100%;
  }
  .hiring-page .positions-expandable .one-position .formular .inputs {
    width: 100%;
  }
  .hiring-page .positions-expandable .one-position .formular .portfolio-upload-button, .hiring-page .positions-expandable .one-position .formular .cv-upload-button {
    text-align: center;
  }
  .hiring-page .positions-expandable .one-position .formular .uploaded-file-shown {
    margin-left: 0;
    text-align: center;
  }
  .hiring-page .positions-expandable .one-position .formular input {
    /* width: 100%; */
  }
  .hiring-page .positions-expandable .one-position .formular .buttons {
    width: 100%;
    text-align: left;
  }
  .hiring-page .positions-expandable .one-position .formular .send-button-class {
    width: 300px;
    margin: 30px auto 0;
    float: unset;
  }
}
@media (max-width: 1200px) {
  .hiring-page .positions-expandable .one-position .formular .send-button {
    padding: 0;
    text-align: center;
  }
  .hiring-page .positions-expandable .one-position .formular .name-input, .hiring-page .positions-expandable .one-position .formular .email-input, .hiring-page .positions-expandable .one-position .formular .phone-input {
    margin: 10px 0;
  }
  .hiring-page .positions-expandable .one-position ul li {
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .hiring-page .mobile-hide {
    display: none;
  }
  .hiring-page .positions-expandable {
    margin-top: 85px;
  }
  .hiring-page .positions-expandable .one-position {
    padding: 42px 0 50px;
  }
  .hiring-page .positions-expandable .one-position .position-expander-icon {
    right: 11px;
    top: 7px;
  }
  .hiring-page .positions-expandable .one-position .position-name {
    line-height: 40px;
  }
  .hiring-page .positions-expandable .one-position .position-underline {
    margin-top: 0;
  }
  .hiring-page .positions-expandable .one-position .big-purple-text {
    margin: 65px 0 0 0;
    line-height: 38px;
    width: 98%;
    font-size: 32px;
  }
  .hiring-page .positions-expandable .one-position .needed-skills {
    margin-top: 69px;
  }
  .hiring-page .positions-expandable .one-position ul {
    margin-top: -1px;
  }
  .hiring-page .positions-expandable .one-position ul li {
    width: 111%;
    line-height: 28px;
    margin-bottom: -10px;
  }
  .hiring-page .positions-expandable .one-position .formular {
    margin-top: 60px;
  }
  .hiring-page .positions-expandable .one-position .formular .inputs {
    width: 100%;
    display: block;
    flex-wrap: unset;
    justify-content: unset;
  }
  .hiring-page .positions-expandable .one-position .formular .name-input, .hiring-page .positions-expandable .one-position .formular .email-input, .hiring-page .positions-expandable .one-position .formular .phone-input {
    width: 100%;
    display: block;
    margin-bottom: 14px;
  }
  .hiring-page .positions-expandable .one-position .formular input {
    padding: 0px 65px 0px 32px;
    width: 100%;
  }
  .hiring-page .positions-expandable .one-position .formular .buttons {
    width: 100%;
    margin-top: 30px;
    text-align: left;
  }
  .hiring-page .positions-expandable .one-position .formular .portfolio-upload-button, .hiring-page .positions-expandable .one-position .formular .cv-upload-button {
    display: block;
    text-align: center;
    padding: 25px 0;
    margin-bottom: 9px;
    width: unset;
  }
  .hiring-page .positions-expandable .one-position .formular .uploaded-file-shown {
    text-align: left;
    margin-left: 0;
    float: unset;
    text-align: unset;
    width: unset;
  }
  .hiring-page .positions-expandable .one-position .formular .send-button-class {
    margin-top: 23px;
    margin-left: 0;
    float: unset;
    display: block;
    width: unset;
  }
  .hiring-page .positions-expandable .one-position .formular .send-button {
    text-align: center;
    width: 100%;
    padding: 27px 0 25px 0;
  }
  .hiring-page .positions-expandable .active-position {
    padding-top: 50px;
    /*max-height: 3000px;*/
    padding: 50px 0 86px;
  }
  .hiring-page .positions-expandable .active-position .position-name {
    width: 90%;
  }
}
@media (max-width: 910px) {
  .hiring-page .positions-expandable .one-position {
    padding: 42px 0 50px;
  }
  .hiring-page .positions-expandable .active-position {
    padding: 42px 0 100px;
  }
}
@media (max-width: 768px) {
  .hiring-page .hiring-image .image-form .formular {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hiring-page .positions-expandable .one-position {
    max-height: 100px;
  }
  .hiring-page .positions-expandable .one-position .formular .buttons {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  .hiring-page .positions-expandable .one-position {
    max-height: 140px;
  }
}
.hiring-page .hiring-image {
  height: auto;
}
@media (min-width: 1300px) {
  .hiring-page .hiring-image {
    padding-bottom: 40px;
  }
}

.contact-page {
  max-width: 100vw;
  overflow: hidden;
}
.contact-page .big-header {
  padding-top: 200px;
  max-width: 100vw;
  overflow: hidden;
}
.contact-page .big-header .header-content {
  width: calc(100% - 330px);
}
.contact-page .big-header .line-1, .contact-page .big-header .line-2 {
  transition: all 0.3s ease;
}
.contact-page .big-header .line-2 {
  padding-right: 55px;
}
@media (max-width: 1400px) {
  .contact-page .big-header .header-content .line-1, .contact-page .big-header .header-content .line-2 {
    font-size: 170px;
  }
  .contact-page .big-header .header-content .line-1 {
    left: -100px;
  }
  .contact-page .big-header .header-content .line-1 span::after {
    width: 70px;
  }
  .contact-page .big-header .header-content .line-2 {
    right: -100px;
  }
  .contact-page .big-header .header-content .line-2 span::after {
    width: 100px;
  }
}
@media (max-width: 1300px) {
  .contact-page .big-header .header-content .line-1, .contact-page .big-header .header-content .line-2 {
    font-size: 150px;
  }
  .contact-page .big-header .header-content .line-1 {
    left: -100px;
  }
  .contact-page .big-header .header-content .line-1 span::after {
    width: 70px;
  }
  .contact-page .big-header .header-content .line-2 {
    right: -100px;
  }
  .contact-page .big-header .header-content .line-2 span::after {
    width: 100px;
  }
}
@media (max-width: 1200px) {
  .contact-page .big-header .header-content .line-1, .contact-page .big-header .header-content .line-2 {
    font-size: 120px;
  }
  .contact-page .big-header .header-content .line-1 {
    left: -100px;
  }
  .contact-page .big-header .header-content .line-1 span::after {
    width: 10vw;
  }
  .contact-page .big-header .header-content .line-2 {
    right: -100px;
    top: 0;
  }
  .contact-page .big-header .header-content .line-2 span::after {
    width: 10vw;
  }
}
@media (max-width: 910px) {
  .contact-page .big-header .header-content .line-1, .contact-page .big-header .header-content .line-2 {
    font-size: 90px;
  }
  .contact-page .big-header .header-content .line-1 {
    left: 0px;
  }
  .contact-page .big-header .header-content .line-2 {
    padding-right: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .contact-page .big-header {
    padding-top: 140px;
  }
  .contact-page .big-header .header-content {
    width: calc(100% - 150px);
  }
  .contact-page .big-header .header-content .line-1, .contact-page .big-header .header-content .line-2 {
    font-size: 15vw;
    text-align: left;
    float: left;
    left: 0;
    right: 0;
  }
  .contact-page .big-header .header-content .line-1 span, .contact-page .big-header .header-content .line-2 span {
    left: 0;
    right: 0;
  }
}
@media (max-width: 576px) {
  .contact-page .big-header .header-content {
    width: calc(100% - 330px);
    margin-bottom: 150px;
  }
  .contact-page .big-header .header-content .line-1, .contact-page .big-header .header-content .line-2 {
    font-size: 13vw;
    text-align: left;
    float: left;
    left: -25vw;
    right: 0;
  }
  .contact-page .big-header .header-content .line-1 span, .contact-page .big-header .header-content .line-2 span {
    left: 0;
    right: 0;
  }
}
@media (max-width: 400px) {
  .contact-page .big-header .header-content .line-1, .contact-page .big-header .header-content .line-2 {
    left: -35vw;
  }
}
.contact-page .one-contact {
  padding-top: 14px;
}
.contact-page .one-contact h3 {
  margin-left: 3px;
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  margin-bottom: 28px;
}
.contact-page .one-contact p {
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  margin-bottom: 20px;
}
.contact-page .one-contact .email {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
  color: #6D15D1;
  text-decoration: none;
  position: relative;
}
.contact-page .one-contact .email::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #6D15D1;
}
.contact-page .one-contact .under-text {
  margin-top: 18px;
  font-family: "Visby CF", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 24px;
  opacity: 0.5;
  margin-bottom: 105px;
}
.contact-page .company-details {
  margin-bottom: 50px;
}
.contact-page .main-contact {
  margin-bottom: 55px;
}
@media (max-width: 1400px) {
  .contact-page .one-contact .email {
    font-size: 33px;
  }
  .contact-page .one-contact .email::after {
    bottom: 2px;
  }
}
@media (max-width: 1200px) {
  .contact-page .one-contact .email {
    font-size: 20px;
  }
  .contact-page .one-contact .email::after {
    bottom: 0px;
  }
}
@media (max-width: 1200px) {
  .contact-page .one-contact .under-text {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .contact-page .one-contact p {
    margin-bottom: 23px;
  }
  .contact-page .one-contact .email {
    font-size: 18px;
  }
  .contact-page .one-contact .email::after {
    bottom: 2px;
    height: 1px;
  }
  .contact-page .one-contact .under-text {
    margin-top: 2px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .contact-page .consumers-players {
    margin-bottom: 30px;
  }
  .contact-page .consumers-players p {
    margin-bottom: 20px;
  }
}
.contact-page .press-youtubers-streamers {
  margin-bottom: 55px;
}
.contact-page .press-youtubers-streamers h3 {
  letter-spacing: -0.004em;
}
@media (max-width: 576px) {
  .contact-page .press-youtubers-streamers p {
    margin-bottom: 20px;
  }
}
.contact-page .hiring-image {
  margin: 205px auto -1px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("../images/headline-for-hiring.png");
  background-size: cover;
  background-position: center 30%;
  height: 500px;
}
.contact-page .hiring-image .image-text {
  padding: 152px 0 0;
}
.contact-page .hiring-image .cta-button {
  margin: 31px auto 0;
}
@media (max-width: 576px) {
  .contact-page .hiring-image {
    margin: 85px auto -1px;
    padding-bottom: 0;
  }
  .contact-page .hiring-image .image-text {
    padding: 103px 0 0;
  }
}

.projects-page {
  max-width: 100vw;
  overflow: hidden;
  /*
  @include responsive('sm') {
      .big-header {
          padding-top: 130px;
          margin-bottom: 0px;
          padding-bottom: 6px;
          .header-content {
              .line-1, .line-2 {
                  font-size: 15vw;
              }
              .line-1 {
                  left: 0px;
                  span::after {
                      width: 10vw;
                      clip-path: polygon(100% 0, 100% 100%, 0px 100%, 50px 0) !important;
                      height: 100%;
                  }
              }
              .line-2 {
                  padding-right: unset;
                  right: 0px;
                  span::after {
                      height: 100%;
                      width: 5vw;
                  }
              }
          }
      }
  }
  */
}
.projects-page .big-header {
  padding-top: 200px;
  padding-bottom: 620px;
  max-width: 100vw;
  overflow: hidden;
}
.projects-page .big-header .header-content {
  width: calc(100% - 330px);
}
.projects-page .big-header .line-1, .projects-page .big-header .line-2 {
  padding: 0;
}
.projects-page .big-header .line-1 span, .projects-page .big-header .line-2 span {
  color: #ffffff;
}
.projects-page .big-header .line-1 span::after, .projects-page .big-header .line-2 span::after {
  background: #000000;
}
.projects-page .big-header .line-2 {
  top: -1.5vw;
}
@media (max-width: 1400px) {
  .projects-page .big-header {
    top: 0px;
    padding-bottom: 750px;
  }
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 170px;
  }
  .projects-page .big-header .header-content .line-1 {
    left: -100px;
  }
  .projects-page .big-header .header-content .line-1 span::after {
    width: 70px;
  }
  .projects-page .big-header .header-content .line-2 {
    right: -100px;
    top: 0;
  }
  .projects-page .big-header .header-content .line-2 span::after {
    width: 100px;
  }
}
@media (max-width: 1300px) {
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 150px;
  }
  .projects-page .big-header .header-content .line-1 {
    left: -100px;
  }
  .projects-page .big-header .header-content .line-1 span::after {
    width: 70px;
  }
  .projects-page .big-header .header-content .line-2 {
    right: -100px;
    top: 0;
  }
  .projects-page .big-header .header-content .line-2 span::after {
    width: 100px;
  }
}
@media (max-width: 1200px) {
  .projects-page .big-header {
    padding-bottom: 0;
  }
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 120px;
  }
  .projects-page .big-header .header-content .line-1 {
    left: -100px;
  }
  .projects-page .big-header .header-content .line-1 span::after {
    width: 30px;
    height: 130px;
  }
  .projects-page .big-header .header-content .line-2 {
    right: -100px;
    top: 0;
  }
  .projects-page .big-header .header-content .line-2 span::after {
    width: 60px;
    height: 130px;
  }
}
@media (max-width: 992px) {
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 90px;
  }
  .projects-page .big-header .header-content .line-1 {
    left: -100px;
  }
  .projects-page .big-header .header-content .line-1 span::after {
    width: 30px;
    height: 100px;
  }
  .projects-page .big-header .header-content .line-2 {
    right: -100px;
    top: 0;
  }
  .projects-page .big-header .header-content .line-2 span::after {
    width: 60px;
    height: 100px;
  }
}
@media (max-width: 910px) {
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 15vw;
  }
  .projects-page .big-header .header-content .line-1 {
    left: -10vw;
  }
  .projects-page .big-header .header-content .line-1 span::after {
    width: 10vw;
    height: 100%;
  }
  .projects-page .big-header .header-content .line-2 {
    right: unset;
    left: -15vw;
    top: 0;
  }
  .projects-page .big-header .header-content .line-2 span::after {
    width: 10vw;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .projects-page .big-header {
    padding-top: 140px;
  }
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 13vw;
  }
}
@media (max-width: 576px) {
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 13vw;
    left: -25vw;
  }
}
@media (max-width: 400px) {
  .projects-page .big-header .header-content .line-1, .projects-page .big-header .header-content .line-2 {
    font-size: 13vw;
    left: -35vw;
  }
}
.projects-page .ref-big {
  position: relative;
  top: -740px;
  display: block;
  width: 92vw;
  height: 878px;
  background-size: cover;
  background-position: var(--sm-bp, center);
}
@media (min-width: 1025px) {
  .projects-page .ref-big {
    background-position: center;
  }
}
.projects-page .ref-big::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 75%);
}
@media (min-width: 1201px) {
  .projects-page .ref-big::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.375) 75%);
  }
}
.projects-page .ref-big .ref-big-darken {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 1;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}
.projects-page .ref-big .ref-content {
  position: absolute;
  bottom: 46px;
  left: 65px;
}
.projects-page .ref-big h4 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 28px;
  margin-left: 3px;
}
.projects-page .ref-big p {
  font-family: "Visby CF", sans-serif;
  width: 60%;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #ffffff;
}
.projects-page .ref-big .view-detail {
  position: absolute;
  bottom: 39px;
  right: 64px;
  text-align: right;
}
.projects-page .ref-big .view-detail .text {
  display: inline-block;
  font-family: "Visby CF", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  position: relative;
  bottom: 22px;
  margin-right: 17px;
}
.projects-page .ref-big .view-detail .icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background-color: #6D15D1;
  background-image: url("../images/fullscreen.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}
.projects-page .ref-big:hover .ref-big-darken {
  opacity: 0.7;
  transition-delay: 0s;
}
@media (max-width: 1200px) {
  .projects-page .ref-big {
    width: 100%;
    top: 0;
  }
  .projects-page .ref-big p {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .projects-page .ref-big {
    top: 0;
    height: 672px;
  }
  .projects-page .ref-big .ref-content {
    bottom: 150px;
    left: 32px;
  }
  .projects-page .ref-big h4 {
    font-size: 24px;
    margin-left: 0;
    margin-bottom: 6px;
  }
  .projects-page .ref-big p {
    margin-top: 0px;
    font-size: 18px;
    width: 75%;
  }
}
.projects-page .references-list {
  position: relative;
  top: -732px;
}
.projects-page .references-list .ref-small-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.projects-page .references-list .ref-small {
  width: calc(50% - 4px);
  height: 437px;
  margin-bottom: 8px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.projects-page .references-list .ref-small::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 75%);
  z-index: 0;
}
@media (min-width: 1201px) {
  .projects-page .references-list .ref-small::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.375) 75%);
  }
}
.projects-page .references-list .ref-small .ref-small-darken {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 1;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}
.projects-page .references-list .ref-small:hover .ref-small-darken {
  opacity: 0.7;
  transition-delay: 0s;
}
.projects-page .references-list .ref-content {
  position: absolute;
  bottom: 43px;
  left: 65px;
}
.projects-page .references-list h4 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 28px;
  margin-left: 3px;
}
.projects-page .references-list p {
  font-family: "Visby CF", sans-serif;
  width: 60%;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #ffffff;
}
.projects-page .references-list .view-detail {
  position: absolute;
  bottom: 20px;
  right: 50px;
  text-align: right;
}
.projects-page .references-list .view-detail .text {
  display: inline-block;
  font-family: "Visby CF", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  position: relative;
  bottom: 22px;
  margin-right: 17px;
}
.projects-page .references-list .view-detail .icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background-color: #6D15D1;
  background-image: url("../images/fullscreen.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}
@media (max-width: 1400px) {
  .projects-page .references-list .ref-content {
    width: 50%;
  }
  .projects-page .references-list h4 {
    font-size: 24px;
    margin-left: 0;
    width: 70%;
    margin-bottom: 11px;
    line-height: 26px;
  }
  .projects-page .references-list p {
    margin-top: 0px;
    font-size: 18px;
    width: 89%;
  }
}
@media (max-width: 1200px) {
  .projects-page .references-list {
    top: 32px;
  }
  .projects-page .references-list .ref-content {
    bottom: 120px;
  }
}
@media (max-width: 992px) {
  .projects-page .references-list {
    display: block;
    margin-bottom: 96px;
  }
  .projects-page .references-list .ref-small {
    display: block;
    width: 100%;
    margin: 0 auto 16px;
    height: 512px;
  }
  .projects-page .references-list .ref-content {
    bottom: 80px;
  }
  .projects-page .references-list h4 {
    font-size: 24px;
    margin-left: 0;
    width: 70%;
    margin-bottom: 11px;
    line-height: 26px;
  }
  .projects-page .references-list p {
    margin-top: 0px;
    font-size: 18px;
    width: 89%;
  }
  .projects-page .references-list .view-detail {
    position: absolute;
    bottom: -13px;
    right: 16px;
  }
}
@media (max-width: 768px) {
  .projects-page .references-list .ref-content {
    width: 70%;
  }
}
@media (max-width: 576px) {
  .projects-page .references-list .ref-small {
    width: 92%;
  }
  .projects-page .references-list .ref-content {
    left: 16px;
    width: 95%;
  }
}
.projects-page .hiring-image {
  margin: -650px auto 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("../images/landing.png");
  background-position: center;
  height: 500px;
}
.projects-page .hiring-image .image-text {
  padding: 152px 0 0;
}
.projects-page .hiring-image .cta-button {
  margin: 31px auto 0;
}
@media (max-width: 1200px) {
  .projects-page .hiring-image {
    margin: 50px auto 0;
  }
}
@media (max-width: 576px) {
  .projects-page .hiring-image {
    padding-bottom: 0;
  }
  .projects-page .hiring-image .image-text {
    padding: 84px 0 0;
  }
}
.projects-page .expanding-slider {
  display: none;
  position: fixed;
  max-height: 100vh;
  overflow: hidden;
}
.projects-page .expanding-slider-content {
  display: none;
}
@media (max-width: 1200px) {
  .projects-page .expanding-slider {
    overflow: scroll;
  }
  .projects-page .expanding-slider .detail-content::before {
    display: none;
  }
}
.projects-page .nc {
  cursor: unset;
}

.detail-page {
  max-width: 100vw;
  overflow: hidden;
  background-color: #000000;
  /* So many lines I decided to put it in separate file */
}
.detail-page .bottom-controllers {
  display: none;
}
.detail-page .close-window {
  display: block;
  position: absolute;
  top: 168px;
  right: 75px;
  background-color: #6D15D1;
  border-radius: 100px;
  padding: 26px;
}
.detail-page .close-window::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/cross-red.svg");
  filter: brightness(0) invert(100%);
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.detail-page .mover {
  display: block;
  padding: 80px;
  position: absolute;
  border-radius: 150px;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("../images/arrow-down.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.detail-page .next-window {
  right: 75px;
  bottom: 250px;
  transform: rotate(270deg);
}
.detail-page .previous-window {
  transform: rotate(90deg);
  right: 75px;
  bottom: 75px;
}
.detail-page .detail-background {
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url("../images/mothergunship.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.detail-page .scroll-for-more {
  display: none;
}
.detail-page .detail-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
}
.detail-page .detail-content {
  display: block;
  width: 770px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 55% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 55% 0, 100% 100%, 0 100%);
}
.detail-page .detail-content:before {
  content: "";
  display: block;
  position: absolute;
  top: -50%;
  left: -25%;
  height: 200%;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
  transform: rotate(-19deg);
}
.detail-page .detail-content .content-container {
  padding: 15vh 0 0px 75px;
}
.detail-page .detail-content .content-top {
  position: relative;
}
.detail-page .detail-content .content-mid {
  margin-top: 3vh;
}
.detail-page .detail-content .content-bottom {
  position: absolute;
  bottom: 75px;
  left: 75px;
}
.detail-page .detail-content h2 {
  font-size: 36px;
  color: #ffffff;
  margin: 11px 0 0 2px;
}
.detail-page .detail-content h3 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 38px;
  color: #ffffff;
  margin: 23px 0 0 3px;
  position: relative;
}
.detail-page .detail-content h4 {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #ffffff;
  margin: 22px 0 0px 2px;
}
.detail-page .detail-content p {
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #ffffff;
  width: 55%;
  margin: 28px 0 0 -1px;
}
.detail-page .detail-content ul {
  margin: 0 0 0 11px;
  padding: 0;
  width: 69%;
  list-style: none;
}
.detail-page .detail-content ul li {
  font-family: "Visby CF", sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ffffff;
  position: relative;
}
.detail-page .detail-content ul li::before {
  content: "•";
  line-height: 13px;
  font-size: 50px;
  position: absolute;
  left: -14px;
  display: block;
}
.detail-page .detail-content .cta-button {
  margin: 33px 0 0 0;
  width: 255px;
}
@media only screen and (max-height: 1000px) and (min-width: 1200px) {
  .detail-page .detail-content {
    /*
    .content-bottom {
        position: initial;
        bottom: 0;
        left: 0;
    }
    */
  }
}
@media only screen and (max-height: 800px) and (min-width: 1200px) {
  .detail-page .detail-background, .detail-page .detail-wrapper {
    min-height: 1000px;
  }
  .detail-page .detail-content .content-container {
    padding: 200px 0 75px 75px;
  }
}
@media (max-width: 1200px) {
  .detail-page .bottom-controllers {
    display: block;
  }
  .detail-page .bottom-controllers .close-window, .detail-page .bottom-controllers .mover {
    display: block;
  }
  .detail-page .bottom-controllers .mover {
    padding: 0px;
    background-color: transparent;
    border: 1px solid #6D15D1;
    width: 50px;
    height: 50px;
    bottom: -81px;
  }
  .detail-page .bottom-controllers .next-window {
    left: 62px;
  }
  .detail-page .bottom-controllers .previous-window {
    left: 2px;
  }
  .detail-page .bottom-controllers .close-window {
    padding: 0px;
    border: 1px solid #6D15D1;
    width: 50px;
    height: 50px;
    top: unset;
    position: fixed;
    z-index: 999;
    /*bottom: -100px;
    right: 6px;*/
    top: 100px;
    right: 20px;
  }
  .detail-page .close-window, .detail-page .mover {
    display: none;
  }
  .detail-page .scroll-for-more {
    display: block;
    text-decoration: none;
    color: white;
    margin: 10px 0 0 2px;
  }
  .detail-page .scroll-for-more .text {
    font-family: "Visby CF", sans-serif;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    border-bottom: 2px solid #6D15D1;
    float: left;
    margin-top: 33px;
    margin-left: 16px;
  }
  .detail-page .scroll-for-more .icon {
    display: block;
    background-color: #6D15D1;
    border-radius: 100px;
    height: 52px;
    width: 52px;
    margin: 16px auto 0;
    float: left;
    background-image: url("../images/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
  }
  .detail-page .detail-background {
    height: 100vh;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%), url("../images/mothergunship.png");
    position: unset;
  }
  .detail-page .detail-wrapper {
    position: unset;
    height: auto;
  }
  .detail-page .detail-content {
    -webkit-clip-path: none;
    clip-path: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-image: unset;
    width: 100%;
    position: unset;
    margin-top: 0vh;
    height: auto;
    padding: 0 0 150px 0;
  }
  .detail-page .detail-content .content-container {
    padding: 0 0 0 30px;
  }
  .detail-page .detail-content h2 {
    font-size: 24px;
  }
  .detail-page .detail-content h3 {
    margin: 75px 0 0 3px;
  }
  .detail-page .detail-content p {
    width: 80%;
    margin: 14px 0 0 1px;
  }
  .detail-page .detail-content ul {
    margin: 0 0 0 15px;
    width: 90%;
  }
  .detail-page .detail-content ul li {
    font-size: 18px;
    letter-spacing: 0.03em;
  }
  .detail-page .detail-content .content-top {
    position: absolute;
    top: 0;
    height: calc(100vh - 30px);
    width: 85vw;
  }
  .detail-page .detail-content .content-top .content-top-container {
    position: absolute;
    bottom: -9px;
    width: 100%;
  }
  .detail-page .detail-content .content-mid {
    margin-top: 100px;
  }
  .detail-page .detail-content .content-bottom {
    position: initial;
    display: block;
  }
  .detail-page .detail-content .cta-button {
    max-width: 300px;
    width: 88%;
    margin: 90px 0 0 0;
  }
}
@media (max-width: 992px) {
  .detail-page .detail-content .cta-button {
    max-width: 300px;
    width: 88%;
    /* margin: 50px auto 0 auto; */
  }
}
@media (max-width: 768px) {
  .detail-page .detail-background {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%), url("../images/mothergunship.png");
  }
}

/* Website animations classes */
/* Before animation classes */
.wm-ol-hide {
  opacity: 0;
}

.wmab-fadeIn {
  transition: all 0.5s ease-out;
  opacity: 0;
}

.wmab-lsHeader, .wmab-rsHeader {
  transition: none !important;
  position: relative;
}

.wmab-lsHeader {
  left: 100%;
}

.wmab-rsHeader {
  right: 100%;
}

.wmab-slightslideup {
  transition: all 0.8s ease-out;
  position: relative;
  top: 200px;
}

.wmab-transformslideup {
  transition: all 0.8s ease-out;
  position: relative;
  transform: translateY(200px);
}

.wmab-marginslideup {
  transition: all 0.3s ease-out;
  margin-top: 50px;
}

.wmab-videoSmaller {
  transition: all 1s ease-out;
  width: 100vw;
  position: relative;
  top: 200px;
}

.wmab-hiringImgSmaller {
  width: 100vw;
  max-width: 100vw;
}

.wmab-menuslidedown {
  transition: all 0.8s ease-out;
  top: 0px;
}

.wmab-bottomlogosslideup {
  transition: all 0.8s ease-out;
  transform: translateY(100px);
}

.wmab-landingLeft {
  transition: all 1s ease-out;
  position: relative;
  left: -200px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.wmab-landingRight {
  transition: all 1s ease-out;
  position: relative;
  left: 200px;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 90% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 90% 100%);
}

.wmaa-landingLeft {
  -webkit-clip-path: polygon(0 0, 100% 0, 110% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 110% 100%, 0 100%);
}

.wmaa-landingRight {
  -webkit-clip-path: polygon(0 -10%, 100% -10%, 100% 100%, -10% 100%);
  clip-path: polygon(0 -10%, 100% -10%, 100% 100%, -10% 100%);
}

html, body {
  margin: 0;
  /*
  width: 100vw;
  width: 100vw;
  overflow-x: hidden;
  */
}

a {
  cursor: pointer;
}

/* Mozilla Firefox fix */
@-moz-document url-prefix() {
  .homepage {
    margin-top: -25px;
  }
}
/* Whole page */
.homepage {
  background-color: #000000;
}

.logo-img {
  width: 106px;
  height: 48px;
}

.hiring-page {
  background-color: #ffffff;
}

/* Page content */
.content-width {
  width: 83vw;
  max-width: 1270px;
  margin: 0 auto;
}

.text-content-width {
  width: 83vw;
  max-width: 1070px;
  margin: 0 auto;
}

.wide-content-width {
  width: 92vw;
  max-width: 1560px;
  margin: 0 auto;
}

/* Base styles */
h1 {
  margin-top: 0;
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
}

h2 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 240px;
}

h3 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 32px;
}

h4 {
  font-family: "Naville", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
}

h5, .h5 {
  font-family: "Visby CF", sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
}

h6 {
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.purple-underline {
  background: linear-gradient(to right, transparent, transparent), linear-gradient(to right, #6D15D1, #6D15D1);
  background-size: 100% 2px, 0 2px;
  background-position: 100% calc(100% - 10px), 0 calc(100% - 10px);
  background-repeat: no-repeat;
  transition: background-size 700ms ease;
}

.shown-underline {
  transition: color 0.3s ease;
  color: #6D15D1;
}

/*.shown-underline { transition: background-size 700ms ease, color .3s ease .5s; background-size: 0 2px, 100% 2px; color: $purple; } */
.black-bg {
  background-color: #000000;
}

.white-bg {
  background-color: #ffffff;
}

.cta-button {
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  background: #6D15D1;
  color: #ffffff;
  padding: 18px 4px;
  text-decoration: none;
  margin: 80px 0 0 0;
  display: block;
  width: 180px;
  text-align: center;
}

.big-cta-button {
  font-family: "Naville", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  background: #000000;
  color: #ffffff;
  padding: 38px 32px;
  text-decoration: none;
  margin: 80px 0 0 0;
  display: block;
  width: 200px;
  text-align: center;
}

.footer-divider {
  height: 80px;
}

.nc:hover .slide-darken, .nc:hover .ref-small-darken {
  opacity: 1 !important;
}

@media (max-width: 576px) {
  .purple-underline {
    background-position: calc(100% - 5px), 0 calc(100% - 5px);
  }
  .big-cta-button {
    padding: 38px 55px;
  }
  .footer-divider {
    height: 32px;
  }
}
.nowrap {
  white-space: nowrap;
}

.vimeo-wrapper {
  min-width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  aspect-ratio: 1920/1080;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.vimeo-wrapper iframe {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}