/* CSS Reset */
/* HTML5 display-role reset for older browsers */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.c-header {
  width: 100%;
  padding: 1.7rem 8rem;
  display: flex;
  align-items: center;
  position: fixed;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .c-header {
    padding: 1.375rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header {
    padding: 1.375rem 1.375rem;
  }
}
.c-header a {
  margin-bottom: 0;
}
.c-header.scrolled {
  background: hsl(212, 60%, 96%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.c-header__logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 28px;
  width: 157px;
}
@media screen and (max-width: 767px) {
  .c-header__logo {
    display: none;
  }
}
.c-header__logo > svg, .c-header__logo > img {
  width: inherit;
  position: absolute;
}
.c-header__logoSmall {
  opacity: 0;
  transition: none;
  transform: translateY(-150%);
}
.c-header__links {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-header__links {
    display: none;
  }
}
.c-header .-active a {
  color: hsl(259, 100%, 54%);
}
.c-header__link a {
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 1rem;
  font-family: "Roboto";
  font-weight: 600;
  font-style: normal;
  margin: 0;
  transition: 0.35s;
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 767px) {
  .c-header__link a {
    font-size: 14px;
    line-height: 28px;
  }
}
.c-header__link a.selected {
  color: hsl(259, 100%, 54%);
}
.c-header__link:hover a {
  color: hsl(259, 100%, 54%);
}
.c-header__links .c-header__link:not(:last-of-type) {
  margin-right: 1rem;
}
.c-header__overlay .c-header__link:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.c-header__overlay .c-header__link a {
  font-size: 36px;
  font-family: "Roboto";
  font-weight: 800;
  font-style: normal;
  line-height: 44px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-header__overlay .c-header__link a {
    font-size: 24px;
    line-height: 40px;
  }
}
.c-header__workCount {
  color: #737373;
  font-size: 0.8rem;
}
.c-header__ham {
  width: 2rem;
  height: 2rem;
  padding: 0.45rem;
  border-radius: 7px;
  background: #fff;
  color: #000;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(-100%);
  animation: slide-in-top 1000ms 0ms forwards;
}
@keyframes slide-in-left {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-header__ham {
    display: flex;
  }
}
.c-header__ham svg {
  width: 100%;
  height: 100%;
}
.c-header__overlay {
  animation: none;
  opacity: 1;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.55s;
  transform: translateX(-100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__overlay {
    display: flex;
  }
}
.c-header__overlay.active {
  transform: translateX(0px);
}
.c-header__overlayHamWrapper {
  width: 100%;
  padding: 1.7rem 8rem;
  display: flex;
  align-items: center;
  margin-bottom: auto;
}
@media screen and (max-width: 991px) {
  .c-header__overlayHamWrapper {
    padding: 1.375rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header__overlayHamWrapper {
    padding: 1.375rem 1.375rem;
  }
}
.c-header__overlayLinks {
  height: 100%;
  width: 100%;
  padding: 0rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.c-header__overlayLinks .c-header__link a {
  margin: 0;
}
.c-header__switcher {
  display: flex;
}
.c-header__switcher li {
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 1rem;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-header__switcher li {
    font-size: 14px;
    line-height: 28px;
  }
}
.c-header__switcher li.-active {
  font-family: "Roboto";
  font-weight: 600;
  font-style: normal;
}
.c-header__switcher.-seperator {
  margin: 0 0.25rem;
}

.c-footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  position: relative;
  z-index: 10;
}
.c-footer__wave {
  display: flex;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 20rem;
  top: -20rem;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .c-footer__wave {
    height: 16rem;
    top: -16rem;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__wave {
    height: 12rem;
    top: -12rem;
  }
}
.c-footer__wave svg {
  margin-top: auto;
  width: 100%;
}
.c-footer__wave path {
  fill: hsl(212, 45%, 92%) !important;
}
.c-footer__content {
  background: hsl(212, 45%, 92%);
  padding: 2rem 3.5rem;
}
.c-footer__content h3 {
  color: hsl(211, 12%, 43%);
  margin: 0;
}
.c-footer__content .-seperator {
  margin: 1rem 0;
  background-color: hsl(212, 30%, 85%);
}
.c-footer__content a {
  margin-bottom: 0;
}
.c-footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}
.c-footer__contact > a:not(:last-of-type) {
  margin-right: 2rem;
}
.c-footer__contact a {
  color: hsl(211, 12%, 43%);
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  line-height: 20px;
  margin-bottom: 2.5rem;
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  margin: 0;
  transition: 0.35s;
}
@media screen and (max-width: 767px) {
  .c-footer__contact a {
    font-size: 14px;
    line-height: 20px;
  }
}
.c-footer__contact a:hover {
  color: #4a545e;
}
@media screen and (max-width: 767px) {
  .c-footer__contact {
    margin-bottom: 1rem;
  }
}
.c-footer__socials {
  display: flex;
  flex-wrap: wrap;
}

.c-rotatingwords__container {
  display: inline-block;
}
.c-rotatingwords__wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 52.2px;
}
@media screen and (max-width: 991px) {
  .c-rotatingwords__wrapper {
    height: 47.1px;
  }
}
@media screen and (max-width: 767px) {
  .c-rotatingwords__wrapper {
    height: 31.8px;
  }
}
.c-rotatingwords__item {
  color: hsl(259, 100%, 54%);
  display: block;
}
@media screen and (max-width: 767px) {
  .c-rotatingwords__item {
    animation: none !important;
  }
}

.p-socials {
  display: flex;
}
.p-socials__link a svg {
  width: 1.75rem;
  height: 1.75rem;
  transition: 0.35s;
  fill: hsl(211, 12%, 43%);
}
.p-socials__link a svg:hover {
  fill: hsl(259, 100%, 54%);
}

.e-maintenance {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.e-maintenance__text {
  padding: 0.5rem 1.5rem;
}
.e-maintenance p {
  color: hsl(211, 12%, 43%);
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
}

.c-home {
  height: 100%;
  display: flex;
  z-index: 0;
}
.c-home__hero {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 8rem;
}
@media screen and (max-width: 1132px) {
  .c-home__hero {
    position: initial;
  }
  .c-home__hero lottie-player {
    display: none;
  }
}
.c-home__hero lottie-player {
  width: 20rem;
  height: 20rem;
}
.c-home__hero h1 {
  height: fit-content;
}
.c-home__hero h3 {
  color: hsl(211, 12%, 43%);
}
.c-home__hero a {
  position: relative;
  padding: 0.7rem 1.2rem;
  background: hsl(259, 100%, 54%);
  color: #fff;
  border-radius: 7px;
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  z-index: 1;
}
.c-home__hero a:hover::before {
  opacity: 1;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}
.c-home__hero a::before {
  opacity: 0;
  transition: 0.35s cubic-bezier(0.47, 1.94, 0.41, 0.8);
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid hsl(259, 100%, 54%);
  border-radius: 10px;
}
.c-home__hero a + a {
  margin-left: 0.5rem;
  background: hsl(259, 50%, 70%) !important;
}
.c-home__hero a + a::before {
  border-color: hsl(259, 50%, 70%) !important;
}

.c-work {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-work__item {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-work__item-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 7px;
}
.c-work__item-image img {
  width: 100%;
  height: auto;
}
.c-work__item-info {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .c-work__item-info {
    width: 100%;
    padding: 0rem 1rem;
  }
}
.c-work__item-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.c-work__item-info sub {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 1rem;
  font-family: "Roboto";
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .c-work__item-info sub {
    font-size: 14px;
    line-height: 28px;
  }
}
.c-work__item-info sub span {
  font-weight: 300;
}
.c-work__item-info p a {
  color: hsl(259, 100%, 54%);
  text-decoration: underline;
}

.c-work__item > a {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  margin: 0;
  border-radius: 7px;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .c-work__item > a {
    flex-direction: column-reverse;
    gap: 0rem;
    background-color: hsl(212, 45%, 92%);
  }
}
@media screen and (min-width: 992px) {
  .c-work__item > a {
    transition: 0.35s cubic-bezier(0.47, 1.94, 0.41, 0.8);
  }
  .c-work__item > a:hover {
    padding: 1.5rem;
    background: rgba(164, 140, 217, 0.2);
  }
}

/* Any imports required multiple times across the site will be imported here. */
/* Any CSS beyond this point will be globally applied to the whole document. */
body {
  overflow-x: hidden;
  width: 100vw;
  min-height: 100vh;
  color: hsl(210, 24%, 16%);
  background-color: hsl(212, 60%, 96%);
  position: relative;
  display: flex;
  flex-direction: column;
}
body a,
body button,
body input[type=submit] {
  text-decoration: none;
  cursor: pointer;
  color: hsl(210, 24%, 16%);
}
body button,
body a,
body input,
body select {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  body button,
  body a,
  body input,
  body select {
    font-size: 14px;
    line-height: 28px;
  }
}
body h1 {
  font-size: 42px;
  font-family: "Roboto";
  font-weight: 800;
  font-style: normal;
  line-height: 48px;
}
@media screen and (max-width: 767px) {
  body h1 {
    font-size: 30px;
    line-height: 33px;
  }
}
body h2 {
  font-size: 36px;
  font-family: "Roboto";
  font-weight: 800;
  font-style: normal;
  line-height: 44px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  body h2 {
    font-size: 24px;
    line-height: 40px;
  }
}
body h3 {
  font-size: 26px;
  font-family: "Roboto";
  font-weight: 700;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  body h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
body h4 {
  font-size: 22px;
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 0.15rem;
}
@media screen and (max-width: 767px) {
  body h4 {
    font-size: 12px;
    line-height: 28px;
  }
}
body h5 {
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  line-height: 20px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  body h5 {
    font-size: 14px;
    line-height: 20px;
  }
}
body p {
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  body p {
    font-size: 14px;
    line-height: 28px;
  }
}
body label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  body label {
    font-size: 12px;
    line-height: 24px;
  }
}
body h1 + p {
  margin-bottom: 3rem;
}
body .-page {
  padding: 8rem;
}
@media screen and (max-width: 991px) {
  body .-page {
    padding: 8rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  body .-page {
    padding: 8rem 2rem;
  }
}
body .-seperator {
  height: 1.5px;
  background-color: hsl(212, 45%, 92%);
  width: 100%;
  display: block;
}

/*# sourceMappingURL=style.css.map */
