/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: none;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
:root {
  --gfs: 1920px;
  --gfs-rem: 32;
  --gap-content: 2vh;
  --lime-green: #50DF3A;
  --deep-violet: #19045D;
  --granny-smith-apple: #A9EF9F;
  --vodka: #BBB3FF;
  --rich-black: #040A1B;
  --violets-are-blue: #8D7AFF;
  --majorelle-blue: #6635F2;
  --ttf: ease;
  --td: 0.3s;
  --border-radius: 40px;
  --border-radius-xs: 20px;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  margin: 0;
  background: #000;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-size: 1em;
}
body .hero-title {
  opacity: 1;
  filter: blur(0px);
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: ease;
}
body.loading .hero-title {
  opacity: 0;
  filter: blur(5px);
}

html, body, body > div, .app, main, .transitions, .wrapper {
  overflow: hidden !important;
}

html, body, body > div, .app, main, .transitions, .wrapper, .scroll-content {
  height: 100%;
}

button, input, optgroup, select, textarea {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

ol, ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.d-none {
  display: none !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
}

.container-fluid {
  position: relative;
  box-sizing: border-box;
  padding: 0 var(--gap-content);
  width: 100%;
}

section {
  width: 100%;
  padding: 0;
  margin-bottom: -1px;
  background-color: #fff;
  color: var(--rich-black);
}
section.section {
  padding-top: 8vh;
  padding-bottom: 8vh;
  width: 100%;
  height: auto;
}
section.section.starter {
  padding-top: 12vh;
  margin-bottom: -1px;
}
section.section.inverse {
  background-color: var(--rich-black);
  color: #fff;
}
section.section.inverse .title .title-text {
  color: var(--violets-are-blue);
}
section.section.inverse .gradient-block.gradient-light {
  background: linear-gradient(180deg, #222732 0%, rgba(10, 12, 17, 0) 100%);
}
section.section .gradient-block {
  width: 100%;
  height: 100%;
  padding: 30px 40px;
  border-radius: 40px;
}
section.section .gradient-block.gradient-light {
  background: linear-gradient(180deg, #F4F3FF 0%, rgba(244, 243, 255, 0) 100%);
}
section.section .title .title-text {
  display: flex;
  align-items: center;
  font-size: 1.4vw;
  font-weight: 700;
  color: var(--majorelle-blue);
}
section.section .title .title-text i {
  margin-right: 6px;
}
section.section .hero-title {
  font-size: 5vw;
  font-variation-settings: "wght" 400, "wdth" 100;
  line-height: 1;
  text-align: left;
  margin: 2vh 0 4vh 0;
}
section.section .text {
  width: 65vw;
  max-width: 100%;
}
section.section .text .preamble {
  color: #8b8b8b;
  text-transform: capitalize;
}
section.section .text.smaller p {
  font-size: 2vw;
}
section.section .text p {
  font-size: 3.6vw;
  line-height: 1.2;
  font-weight: 500;
  margin: 0.5em 0;
}
section.section .text p span > div {
  overflow: hidden;
  position: relative;
  display: inline-flex !important;
}
section.section article.post img {
  border-radius: 40px;
}
section.section article.post .content {
  font-size: 2vw;
  margin: 2.5vh 0;
}
section.section .posts-list {
  margin: 0 -15px;
}
section.section .posts-list article {
  float: left;
  position: relative;
  padding: 0 15px;
  margin-bottom: 4vh;
}
section.section .posts-list article a {
  float: left;
  position: relative;
  text-decoration: none;
  padding: 0;
  box-sizing: border-box;
}
section.section .posts-list article a img {
  border-radius: 40px;
  transition: all 0.5s 0s ease;
}
section.section .posts-list article a:hover img {
  border-radius: 0;
}
section.section .posts-list article a h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2vh 3vw;
  font-size: 2.5vw;
  color: #fff;
  line-height: 1;
  margin: 0;
}
section.section .posts-list article a p {
  font-size: 1.25vw;
  color: var(--rich-black);
  margin: 0;
}
section.hero {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
section.hero .hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.hero .hero-container .hero-title {
  color: var(--lime-green);
  position: absolute;
  bottom: 32px;
  font-size: 8vw;
  line-height: 0.8;
  margin: 0.1em 0;
  font-weight: 900;
}
section.hero .hero-container .hero-service {
  color: #fff;
  position: absolute;
  bottom: 32px;
  font-size: 1.6vw;
  line-height: 1;
  margin: 0;
  font-weight: 300;
  max-width: calc(100% - 200px);
}
section.hero .hero-container .hero-service h2 {
  font-weight: 300;
  margin: 1em 0 0 0;
}
section.hero .hero-container .hero-service svg path, section.hero .hero-container .hero-service svg rect {
  fill: #fff;
}
section.hero video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  border: 0;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
section.hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(25, 4, 93, 0.75) 0%, rgba(25, 4, 93, 0.75) 75%, rgba(25, 4, 93, 0.75) 75%, rgba(25, 4, 93, 0.75) 100%);
}
section.contact-us {
  position: relative;
  background-color: #fff;
  color: #000;
  z-index: 2;
}
section.contact-us .contact-form-wrapper form.contact-form {
  color: var(--rich-black);
}
section.contact-us .contact-form-wrapper form.contact-form h2.form-title {
  font-size: 11vw;
  font-variation-settings: "wght" 400, "wdth" 100;
  line-height: 1;
  text-align: center;
  margin: 2vh 0 4vh 0;
}
section.contact-us .contact-form-wrapper form.contact-form h2.form-title span {
  transition: all 0.5s ease;
}
section.contact-us .contact-form-wrapper form.contact-form p.form-description {
  margin: 0 0 1em 0;
  font-weight: 400;
  font-size: 2.1vw;
  line-height: 1.25;
  text-align: center;
  transition: all 0.5s ease;
}
section.contact-us .contact-form-wrapper form.contact-form p.form-legend {
  font-size: 1vw;
  color: #8C929C;
  text-align: center;
  transition: all 0.5s ease;
}
section.contact-us .contact-form-wrapper form.contact-form .form-row {
  margin: 0 -15px;
}
section.contact-us .contact-form-wrapper form.contact-form .form-control {
  margin: 2.5vh 0;
  padding: 0 15px;
  position: relative;
}
section.contact-us .contact-form-wrapper form.contact-form .form-control.focused label, section.contact-us .contact-form-wrapper form.contact-form .form-control.filled label {
  transform: translate3d(0px, -65%, 0px);
  font-size: 0.8vw;
}
section.contact-us .contact-form-wrapper form.contact-form input, section.contact-us .contact-form-wrapper form.contact-form select, section.contact-us .contact-form-wrapper form.contact-form textarea {
  background-color: #EBECF0;
  border-radius: 120px;
  width: 100%;
  padding: 30px;
  font-size: 2vw;
  line-height: 1;
}
section.contact-us .contact-form-wrapper form.contact-form .form-button {
  margin: 6vh 0;
  position: relative;
  text-align: center;
}
section.contact-us .contact-form-wrapper form.contact-form button {
  background-color: var(--rich-black);
  border-radius: 120px;
  min-width: 320px;
  padding: 30px;
  font-size: 1.6vw;
  font-weight: 700;
  color: #fff;
}
section.contact-us .contact-form-wrapper form.contact-form label {
  position: absolute;
  pointer-events: none;
  font-size: 2vw;
  left: 45px;
  top: 30px;
  transition: all 0.25s ease-in-out;
}
section.section-marquee {
  background-color: var(--majorelle-blue);
  overflow: hidden;
  min-height: 300vh;
}
section.section-marquee .title .title-text {
  margin-top: 10vh;
  color: #fff;
}
section.section-marquee #pin-marquee p {
  margin: 0;
  color: var(--lime-green);
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 10vw;
  font-weight: 900;
}
section.section-mask {
  min-height: 300vh;
  padding: 0;
}
section.section-mask .mask {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 1rem 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url(../images/earth.jpg);
  -webkit-mask-image: url(../images/logo.svg);
  -webkit-mask-size: var(--mask-size);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  mask-image: url(../images/logo.svg);
  mask-size: var(--mask-size);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
}
section.section-contacts {
  padding-top: calc(6vh + 40px);
}
section.section-contacts h1 {
  overflow: hidden;
  text-align: center;
  font-size: 8vw;
  font-variation-settings: "wght" 400, "wdth" 100;
  line-height: 1;
  margin: 2vh 0 4vh 0;
}
section.section-contacts .map {
  font-size: 2vw;
}
section.section-contacts .map p {
  margin: 0;
}
section.section-contacts .map .contacts {
  display: flex;
  flex-direction: column;
}
section.section-contacts .map .contacts .address, section.section-contacts .map .contacts .email, section.section-contacts .map .contacts .image {
  margin-bottom: 2vh;
}
section.section-contacts .map .contacts .address a, section.section-contacts .map .contacts .email a, section.section-contacts .map .contacts .image a {
  color: var(--violets-are-blue);
}
section.section-contacts .map .contacts .image {
  float: left;
  width: 100%;
  margin-top: 2vh;
  position: relative;
}
section.section-contacts .map .contacts .image svg {
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 82px;
}
section.section-contacts .map .contacts .image .map-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
section.services #services-text {
  margin-bottom: 10vh;
}
section.services #pin-services {
  display: flex;
  flex-direction: row;
}
section.services #pin-services .service-switcher, section.services #pin-services .service-items {
  width: 50%;
}
section.services #pin-services .service-switcher {
  display: flex;
  color: var(--lime-green);
  font-weight: 400;
  font-size: 8vw;
  line-height: 1;
  white-space: nowrap;
}
section.services #pin-services .service-switcher #pin-number {
  display: flex;
}
section.services #pin-services .service-switcher .current {
  font-size: 20vw;
  line-height: 0.8;
  display: flex;
  color: var(--majorelle-blue);
}
section.services #pin-services .service-switcher .current .first-num,
section.services #pin-services .service-switcher .current .second-num {
  position: relative;
  overflow: hidden;
}
section.services #pin-services .service-switcher .current .first-num .hidden-num,
section.services #pin-services .service-switcher .current .second-num .hidden-num {
  visibility: hidden;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section.services #pin-services .service-switcher .current .first-num .inner-num,
section.services #pin-services .service-switcher .current .second-num .inner-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.services #pin-services .service-switcher .total {
  display: flex;
}
section.services #pin-services .service-items .item {
  border: 1px solid #D7D5FF;
  background-color: #F4F3FF;
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 12vh;
}
section.services #pin-services .service-items .item .title {
  margin-bottom: 20px;
}
section.services #pin-services .service-items .item .title.social svg, section.services #pin-services .service-items .item .title.media-production svg {
  min-height: 140px;
}
section.services #pin-services .service-items .item .title svg {
  width: auto;
  min-height: 93px;
}
section.services #pin-services .service-items .item .except {
  max-width: 600px;
  margin-bottom: 5vh;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
}
section.services #pin-services .service-items .item .btn {
  border-radius: 120px;
  padding: 15px 20px;
  text-decoration: none;
}
section.services #pin-services .service-items .item .btn.btn-black {
  color: #fff;
  background-color: #040A1B;
}
section.services #pin-services .service-items .item .btn span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
}
#preloader.deep-violet {
  background-color: transparent;
}
#preloader.deep-violet #preloaderLine .line {
  background-color: var(--lime-green);
}
#preloader.deep-violet #preloaderLine .num {
  color: var(--lime-green);
}
#preloader #preloaderWrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#preloader #preloaderWrapper span {
  position: relative;
}
#preloader #preloaderWrapper span.tile {
  background: var(--deep-violet);
  height: 16.6666666667%;
  border-radius: 25vh;
  width: 150%;
}
#preloader #preloaderWrapper span#preloaderLine {
  opacity: 0;
  position: absolute;
  bottom: 2vw;
  width: 6%;
  height: auto;
  filter: blur(30px);
  z-index: 1;
  padding: 0 var(--gap-content);
}
#preloader #preloaderWrapper span#preloaderLine .line {
  float: left;
  position: relative;
  width: 100%;
  height: 4vw;
  border-radius: 2vw;
  transform: translateY(-50%);
}
#preloader #preloaderWrapper span#preloaderLine .num {
  float: left;
  position: relative;
  left: 0;
  bottom: 0;
  font-size: 18vw;
  font-weight: 900;
  line-height: 1;
  margin: 0.2em 0;
}

.transition-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 999999999999;
  pointer-events: none;
}
.transition-container span {
  position: relative;
}
.transition-container.from-left {
  flex-direction: column;
}
.transition-container.from-left span.tile {
  background: var(--deep-violet);
  height: 100%;
  width: 0;
}
.transition-container.from-top span.tile {
  border-radius: 25vh;
  background: var(--deep-violet);
  height: 150vh;
  top: 150vh;
  width: 100%;
}
.transition-container .logo-tiles {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.transition-container .logo-tiles .logo-tile {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: var(--deep-violet);
  z-index: 2;
}
.transition-container .logo-tiles .logo-tile.logo-tile-first {
  left: 0;
}
.transition-container .logo-tiles .logo-tile.logo-tile-second {
  left: -100%;
}
.transition-container .logo-tiles img {
  width: 240px;
  max-width: 100%;
  height: auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: transparent;
  color: #fefefe;
  padding: 2vh 0 0 0;
  transition: padding 0.4s ease-in-out;
}
#header .header-container {
  display: flex;
  flex-direction: row;
}
#header nav.navbar-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#header nav.navbar-menu .menu-list {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#header nav.navbar-menu .menu-list ul.menu-list-left, #header nav.navbar-menu .menu-list ul.menu-list-right {
  display: flex;
  margin-left: -1vh;
  margin-right: -1vh;
}
#header nav.navbar-menu .menu-list ul.menu-list-left li, #header nav.navbar-menu .menu-list ul.menu-list-right li {
  display: flex;
  margin-left: 1vh;
  margin-right: 1vh;
  z-index: 0;
}
#header nav.navbar-menu .menu-list ul.menu-list-left li a, #header nav.navbar-menu .menu-list ul.menu-list-right li a {
  color: var(--rich-black);
  background-color: var(--vodka);
  padding: 10px 40px 10px 40px;
  text-decoration: none;
  border-radius: 120px;
  font-size: 2.1vw;
  line-height: 1;
  transition: all 0.5s 0s ease;
}
#header nav.navbar-menu .menu-list ul.menu-list-left li a i.icons.icon-arrow-down, #header nav.navbar-menu .menu-list ul.menu-list-right li a i.icons.icon-arrow-down {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2vw;
  transition: all 0.5s 0s ease;
}
#header nav.navbar-menu .menu-list ul.menu-list-left li a i.icons.icon-globe, #header nav.navbar-menu .menu-list ul.menu-list-right li a i.icons.icon-globe {
  font-size: 1.7vw;
}
#header nav.navbar-menu .menu-list ul.menu-list-left li a.navbar-brand svg, #header nav.navbar-menu .menu-list ul.menu-list-right li a.navbar-brand svg {
  width: 8vw;
  height: auto;
}
#header nav.navbar-menu .menu-list ul.menu-list-left li .menu-link:hover, #header nav.navbar-menu .menu-list ul.menu-list-right li .menu-link:hover {
  border-radius: 0;
}
#header nav.navbar-menu .menu-list ul.menu-list-left li.menu-selected > .menu-link, #header nav.navbar-menu .menu-list ul.menu-list-left li.menu-selected > .menu-link:visited, #header nav.navbar-menu .menu-list ul.menu-list-right li.menu-selected > .menu-link, #header nav.navbar-menu .menu-list ul.menu-list-right li.menu-selected > .menu-link:visited {
  background-color: var(--granny-smith-apple);
}
#header nav.navbar-menu .menu-list ul.menu-list-left li.menu-has-children.opened .icon-arrow-down, #header nav.navbar-menu .menu-list ul.menu-list-right li.menu-has-children.opened .icon-arrow-down {
  transform: rotate(-90deg);
}
#header nav.navbar-menu .menu-list ul.menu-list-left li:first-child {
  z-index: 9;
}
#header nav.navbar-menu .menu-list ul.menu-list-right li:last-child {
  z-index: 9;
}
#header nav.navbar-menu .sub-menu-list {
  max-height: 0;
  opacity: 0;
  margin: 0;
  position: relative;
  width: 100%;
  transform: translateY(1vh);
  transition: all 0.4s ease-in-out, max-height 0.4s 1s ease;
  overflow: hidden;
}
#header nav.navbar-menu .sub-menu-list.active {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease-in-out, max-height 0.4s 0s ease;
}
#header nav.navbar-menu .sub-menu-list ul {
  display: flex;
}
#header nav.navbar-menu .sub-menu-list ul li {
  margin: 20px 5px 10px 5px;
  z-index: 0;
}
#header nav.navbar-menu .sub-menu-list ul li:first-child {
  z-index: 1;
  margin-left: 0;
}
#header nav.navbar-menu .sub-menu-list ul li:last-child {
  margin-right: 0;
}
#header nav.navbar-menu .sub-menu-list ul li.menu-selected > .menu-link, #header nav.navbar-menu .sub-menu-list ul li.menu-selected > .menu-link:visited {
  background-color: var(--granny-smith-apple);
}
#header nav.navbar-menu .sub-menu-list ul li a {
  padding: 5px 20px;
  font-size: 1.7vw;
  text-decoration: none;
  color: var(--rich-black);
  background-color: var(--vodka);
  border-radius: 120px;
  line-height: 1;
  transition: all 0.5s 0s ease;
}
#header nav.navbar-menu .sub-menu-list ul li a:hover {
  border-radius: 0;
}
#header.down {
  padding: 1vh 0;
}
#header.down nav.navbar-menu .menu-list ul > li {
  transition: all 0.4s ease-in-out;
}
#header.down nav.navbar-menu .menu-list ul > li a {
  padding: 5px 20px 6px 20px;
  transition: all 0.4s ease-in-out;
}
#header.down nav.navbar-menu .sub-menu-list ul > li {
  transition: all 0.4s ease-in-out;
  visibility: hidden;
}
#header.down nav.navbar-menu .sub-menu-list ul > li a {
  padding: 3px 10px 3px 10px;
  transition: padding 0.4s ease-in-out;
}
#header.down nav.navbar-menu .sub-menu-list ul > li:nth-child(1) {
  opacity: 0;
  transition-delay: 0.1s;
}
#header.down nav.navbar-menu .sub-menu-list ul > li:nth-child(2) {
  opacity: 0;
  transform: translateX(-13.8888888889vw);
}
#header.down nav.navbar-menu .sub-menu-list ul > li:nth-child(3) {
  opacity: 0;
  transform: translateX(-20.6944444444vw);
}
#header.down nav.navbar-menu .sub-menu-list ul > li:nth-child(4) {
  opacity: 0;
  transform: translateX(-27.8888888889vw);
}
#header.down nav.navbar-menu .sub-menu-list ul > li:nth-child(5) {
  opacity: 0;
  transform: translateX(-32.8888888889vw);
}
#header.down nav.navbar-menu .sub-menu-list ul > li:nth-child(6) {
  opacity: 0;
  transform: translateX(-38.8888888889vw);
}
#header.up nav.navbar-menu .menu-list ul > li {
  transition: all 0.4s ease-in-out;
}
#header.up nav.navbar-menu .menu-list ul > li > a {
  padding: 10px 40px 10px 40px;
  transition: all 0.4s ease-in-out;
}
#header.up nav.navbar-menu .menu-list.menu-list-left > li:nth-child(2), #header.up nav.navbar-menu .menu-list.menu-list-left > li:nth-child(3), #header.up nav.navbar-menu .menu-list.menu-list-left > li:nth-child(4) {
  opacity: 1;
}
#header.up nav.navbar-menu .sub-menu-list ul > li {
  opacity: 1;
  transition: all 0.4s ease-in-out;
  visibility: visible;
}
#header.up nav.navbar-menu .sub-menu-list ul > li a {
  transition: all 0.4s ease-in-out;
}
#header.up nav.navbar-menu .sub-menu-list ul > li:nth-child(1) {
  transition-delay: 0s;
}
#header.up nav.navbar-menu .sub-menu-list ul > li:nth-child(2), #header.up nav.navbar-menu .sub-menu-list ul > li:nth-child(3), #header.up nav.navbar-menu .sub-menu-list ul > li:nth-child(4), #header.up nav.navbar-menu .sub-menu-list ul > li:nth-child(5), #header.up nav.navbar-menu .sub-menu-list ul > li:nth-child(6) {
  transition-delay: 0.1s;
}
#header .navbar-toggler {
  display: none;
  height: fit-content;
  color: var(--rich-black);
  background-color: var(--vodka);
  margin: 0 0 0 8px;
  padding: 10px 40px 10px 40px;
  text-decoration: none;
  border-radius: 120px;
  font-size: 2.1vw;
  line-height: 1;
  transition: all 0.4s ease;
}

.menu {
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: -125vh;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1001;
  color: #fff;
  max-height: 100%;
}
.menu .menu-wrapper {
  position: relative;
  padding: 72px 0 0 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.menu .menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125vh;
  background-color: var(--deep-violet);
  border-bottom-left-radius: 25vh;
  border-bottom-right-radius: 25vh;
}
.menu .menu-content {
  width: 100%;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}
.menu .menu-content > nav > ul {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  padding-left: var(--gap-content);
  width: 100%;
  margin-top: calc(-20 / var(--gfs-rem) * 1rem);
}
.menu .menu-content > nav > ul:hover > li {
  opacity: 0.5;
  filter: blur(5px);
}
.menu .menu-content > nav > ul > li {
  float: left;
  position: relative;
  display: flex;
  transition: filter 0.5s var(--ttf), opacity 0.5s var(--ttf);
}
.menu .menu-content > nav > ul > li:hover {
  opacity: 1;
  filter: blur(0);
}
.menu .menu-content > nav > ul > li > a {
  color: var(--lime-green);
  position: relative;
  display: block;
  padding-left: calc(49 / var(--gfs-rem) * 1rem);
  overflow: hidden;
  text-decoration: none;
}
.menu .menu-content > nav > ul > li > a .num {
  position: absolute;
  top: calc(22 / var(--gfs-rem) * 1rem);
  left: 0;
  width: calc(22 / var(--gfs-rem) * 1rem);
  font-size: max(12px, 14 / var(--gfs-rem) * 1rem);
  line-height: 1.3333333333;
  letter-spacing: 0.3em;
}
.menu .menu-content > nav > ul > li > a .title {
  display: block;
  font-weight: 500;
  font-size: calc(100 / var(--gfs-rem) * 1rem);
  line-height: 2;
  text-transform: capitalize;
}
.menu .menu-content > nav > ul > li > a .title i {
  display: inline-block;
  font-size: calc(60 / var(--gfs-rem) * 1rem);
  transform: rotate(0);
  transition: all 0.4s ease;
}
.menu .menu-content > nav > ul > li.menu-has-children {
  display: flex;
  flex-direction: column;
}
.menu .menu-content > nav > ul > li.menu-has-children.opened .title i {
  transform: rotate(-90deg);
}
.menu .menu-content > nav > ul > li.menu-has-children.opened > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 600px;
}
.menu .menu-content > nav > ul > li.menu-has-children > ul.sub-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}
.menu .menu-content > nav > ul > li.menu-has-children > ul.sub-menu li {
  width: 100%;
}
.menu .menu-content > nav > ul > li.menu-has-children > ul.sub-menu li a {
  color: var(--lime-green);
  position: relative;
  display: block;
  padding-left: calc(49 / var(--gfs-rem) * 1rem);
  overflow: hidden;
  text-decoration: none;
  font-weight: 500;
  font-size: calc(50 / var(--gfs-rem) * 1rem);
  line-height: calc(80 / var(--gfs-rem) * 1rem);
  text-transform: capitalize;
}
.menu .menu-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: calc(25 / var(--gfs-rem) * 1rem) var(--gap-content);
  font-size: calc(14 / var(--gfs-rem) * 1rem);
  line-height: 1.7;
  letter-spacing: 0.3em;
}
.menu .menu-bottom p {
  position: relative;
  color: #fff;
  font-size: calc(24 / var(--gfs-rem) * 1rem);
  line-height: 1.7;
  letter-spacing: 0.3em;
  text-transform: capitalize;
}
.menu .menu-bottom .socials {
  padding: 1em 0;
  display: flex;
  list-style-type: none;
}
.menu .menu-bottom .socials .social-item {
  position: relative;
  overflow: hidden;
  margin-right: 12px;
}
.menu .menu-bottom .socials .social-item:last-child {
  margin-right: 0;
}
.menu .menu-bottom .socials .social-item a {
  position: relative;
  color: #fff;
  font-size: calc(24 / var(--gfs-rem) * 1rem);
  text-transform: capitalize;
  text-decoration: none;
}
.menu .menu-bottom .socials .social-item a .underline {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform-origin: right;
  transition: all 0.5s ease;
}
.menu .menu-bottom .socials .social-item a:hover .underline {
  left: 100%;
}

#back-forward {
  cursor: pointer;
  position: fixed;
  bottom: var(--gap-content);
  right: var(--gap-content);
  border: none;
  z-index: 10;
  transform: rotate(-180deg);
  transition: all 0.5s ease;
}
#back-forward.back {
  transform: rotate(0);
}

.services-cards-wrapper .services-cards .card-row {
  margin: 0 -15px;
}
.services-cards-wrapper .services-cards .card-wrapper {
  width: 100%;
  padding: 15px;
}
.services-cards-wrapper .services-cards .card-wrapper .card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  height: 330px;
  border-radius: 20px;
  border: 2px solid #222732;
  padding: 20px;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
.services-cards-wrapper .services-cards .card-wrapper .card .number {
  color: #414651;
  font-weight: 400;
  font-size: 6vw;
  line-height: 1;
  transition: all 0.3s ease-out;
}
.services-cards-wrapper .services-cards .card-wrapper .card .description {
  max-height: 80px;
  overflow-y: hidden;
  transition: all 0.3s ease-out;
}
.services-cards-wrapper .services-cards .card-wrapper .card .description .logo {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.services-cards-wrapper .services-cards .card-wrapper .card .description .logo svg {
  max-width: 100%;
}
.services-cards-wrapper .services-cards .card-wrapper .card .description .text {
  font-weight: 400;
  font-size: 0.8vw;
  line-height: 1.3333333333;
  margin: 20px 0 0 0;
}
.services-cards-wrapper .services-cards .card-wrapper .card:hover {
  border-color: #554999;
  background: linear-gradient(180deg, #8D7AFF 0%, rgba(85, 73, 153, 0) 100%);
}
.services-cards-wrapper .services-cards .card-wrapper .card:hover .number {
  color: #0A0C11;
}
.services-cards-wrapper .services-cards .card-wrapper .card:hover .description {
  max-height: 200px;
}

footer {
  position: relative;
  background-color: var(--rich-black);
  color: #fff;
  margin-bottom: -1px;
  transform: translateY(-50vh);
  z-index: 1;
}
footer .footer-top {
  width: 100%;
}
footer .footer-top svg {
  margin-top: 10vh;
  width: 100%;
  height: auto;
}
footer .footer-top svg path {
  fill: #222732;
}
footer .footer-center {
  width: 100%;
  margin-top: 10vh;
}
footer .footer-center .title {
  margin-bottom: 1.5vh;
}
footer .footer-center .title .title-text {
  font-size: 2vw;
  line-height: 1;
  color: var(--violets-are-blue);
}
footer .footer-center .text {
  font-size: 2.25vw;
  line-height: 1;
  color: #fff;
  margin-bottom: 5vh;
}
footer .footer-center .text p {
  margin: 0;
}
footer .footer-bottom {
  width: 100%;
  margin-top: 10vh;
}
footer .footer-bottom .gradient-block {
  width: 100%;
  height: 100%;
  padding: 30px 40px 0 40px;
  border-radius: 40px;
}
footer .footer-bottom .gradient-block.gradient-light {
  background: linear-gradient(180deg, #222732 0%, rgba(10, 12, 17, 0) 100%);
}
footer .footer-bottom nav {
  display: flex;
  flex-direction: row;
}
footer .footer-bottom nav .col {
  width: 16.6666666667%;
}
footer .footer-bottom nav ul li {
  margin-bottom: 2vh;
}
footer .footer-bottom nav ul li a {
  font-size: 2vw;
  line-height: 1;
  color: var(--violets-are-blue);
  text-decoration: none;
}
footer .footer-bottom .copyrights {
  font-size: 1.2vw;
  line-height: 1;
  margin-top: 5vh;
  padding: 2vh 0;
}

@media (min-width: 1200px) and (max-width: 1919px) {
  section.contact-us .contact-form-wrapper form.contact-form h2.form-title {
    font-size: 10.5vw;
  }
  section.contact-us .contact-form-wrapper form.contact-form p.form-description {
    font-size: 2vw;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  #header nav.navbar-menu .menu-list ul.menu-list-left li a, #header nav.navbar-menu .menu-list ul.menu-list-right li a {
    padding: 8px 32px 8px 32px;
    font-size: 2vw;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #header nav.navbar-menu .menu-list ul.menu-list-left li a, #header nav.navbar-menu .menu-list ul.menu-list-right li a {
    padding: 6px 24px 6px 24px;
    font-size: 1.8vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #back-forward svg {
    max-width: 64px;
    max-height: 64px;
  }
}
@media (max-width: 1279px) {
  .services-cards-wrapper .services-cards .card-wrapper .card {
    height: 330px;
    padding: 20px;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .number {
    font-size: 8vw;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .description {
    max-height: 80px;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .description .logo {
    height: 80px;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .description .text {
    font-size: 1.5vw;
    margin: 20px 0 0 0;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card:hover .description {
    max-height: 200px;
  }
}
@media (min-width: 992px) {
  #header.down nav.navbar-menu .menu-list ul.menu-list-left li:nth-child(2) {
    opacity: 0;
    transform: translateX(-11.8888888889vw);
  }
  #header.down nav.navbar-menu .menu-list ul.menu-list-left li:nth-child(3) {
    opacity: 0;
    transform: translateX(-23.6944444444vw);
  }
  #header.down nav.navbar-menu .menu-list ul.menu-list-left li:nth-child(4) {
    opacity: 0;
    transform: translateX(-32.8888888889vw);
  }
  #header.down nav.navbar-menu .menu-list ul.menu-list-left li:nth-child(5) {
    opacity: 0;
    transform: translateX(-40.8888888889vw);
  }
  #header.down nav.navbar-menu .menu-list ul.menu-list-right li:nth-child(1) {
    opacity: 0;
    transform: translateX(11.8888888889vw);
  }
}
@media (min-height: 768px) {
  .d-sm-block {
    display: block !important;
  }
}
@media (max-width: 991px) {
  #header .navbar-toggler {
    display: block;
    z-index: 10;
    padding: 8px 36px;
    font-size: 2vw;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left li {
    display: none;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left li:first-child {
    display: flex;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left li a {
    padding: 8px 36px;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left li a.navbar-brand svg {
    width: 8vw;
    height: auto;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-right li {
    display: none;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-right li:first-child {
    display: flex;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left li a, #header nav.navbar-menu .menu-list ul.menu-list-right li a {
    padding: 8px 36px;
    font-size: 2vw;
  }
  #header nav.navbar-menu .sub-menu-list {
    display: none;
  }
  #header.down .navbar-toggler {
    padding: 6px 24px;
  }
  #header.down nav.navbar-menu .menu-list ul.menu-list-left li a, #header.down nav.navbar-menu .menu-list ul.menu-list-right li a {
    padding: 6px 24px;
  }
}
@media (max-width: 767px) {
  #back-forward svg {
    max-width: 48px;
    max-height: 48px;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left, #header nav.navbar-menu .menu-list ul.menu-list-right {
    margin-left: 0;
    margin-right: 0;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-right {
    display: none;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left li {
    margin: 0;
  }
  #header nav.navbar-menu .menu-list ul.menu-list-left li a.navbar-brand svg {
    width: 22.5vw;
  }
  #header .navbar-toggler {
    font-size: 4.92vw;
    margin: 0;
    text-transform: uppercase;
  }
  section.section {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
  section.section .hero-title {
    font-size: 6vw;
    margin: 2vh 0;
  }
  section.section .title .title-text {
    font-size: 3vw;
  }
  section.section .text {
    width: 100%;
  }
  section.section .text p {
    font-size: 6vw;
  }
  section.section .text.smaller p {
    font-size: 4vw;
  }
  section.section .gradient-block {
    padding: 2.5vh 5vw;
  }
  section.section article.post .content {
    font-size: 3.5vw;
    margin: 2.5vh 0;
  }
  section.hero .hero-container .hero-title {
    font-size: 12vw;
    bottom: 12px;
  }
  section.hero .hero-container .hero-service {
    max-width: calc(100% - 72px);
  }
  section.hero .hero-container .hero-service .hero-anons {
    font-size: 6vw;
  }
  section.contact-us .contact-form-wrapper form.contact-form h2.form-title {
    font-size: 9vw;
    margin: 2vh 0;
  }
  section.contact-us .contact-form-wrapper form.contact-form p.form-description {
    margin: 0 0 1em 0;
    font-size: 3vw;
  }
  section.contact-us .contact-form-wrapper form.contact-form p.form-legend {
    font-size: 2.5vw;
  }
  section.contact-us .contact-form-wrapper form.contact-form .form-row {
    margin: 0 -5px;
  }
  section.contact-us .contact-form-wrapper form.contact-form .form-control {
    margin: 2vh 0;
    padding: 0 5px;
  }
  section.contact-us .contact-form-wrapper form.contact-form .form-control.focused label, section.contact-us .contact-form-wrapper form.contact-form .form-control.filled label {
    transform: translate3d(0px, -75%, 0px);
    font-size: 2vw;
  }
  section.contact-us .contact-form-wrapper form.contact-form input, section.contact-us .contact-form-wrapper form.contact-form select, section.contact-us .contact-form-wrapper form.contact-form textarea {
    padding: 15px 25px;
    font-size: 3vw;
  }
  section.contact-us .contact-form-wrapper form.contact-form .form-button {
    margin: 4vh 0;
  }
  section.contact-us .contact-form-wrapper form.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 3vw;
  }
  section.contact-us .contact-form-wrapper form.contact-form label {
    position: absolute;
    pointer-events: none;
    font-size: 3vw;
    left: 30px;
    top: 15px;
  }
  section.section-marquee {
    min-height: 300vh;
  }
  section.section-marquee #pin-marquee p {
    font-size: 12vw;
  }
  section.section-contacts {
    padding-top: calc(6vh + 40px);
  }
  section.section-contacts .map {
    font-size: 3vw;
  }
  section.section-contacts .map .contacts .image {
    margin-top: 1vh;
  }
  section.section-contacts .map .contacts .image svg {
    width: 32px;
    height: 41px;
  }
  section.section-contacts .map .contacts .image .map-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xs);
  }
  section.services #services-text {
    margin-bottom: 6vh;
  }
  section.services #pin-services .service-items {
    width: 100%;
  }
  section.services #pin-services .service-switcher {
    display: none;
  }
  section.services #pin-services .service-items .item {
    padding: 30px 10px;
    margin-bottom: 6vh;
  }
  section.services #pin-services .service-items .item:last-child {
    margin-bottom: 0;
  }
  section.services #pin-services .service-items .item .title {
    margin-bottom: 20px;
  }
  section.services #pin-services .service-items .item .title.social svg, section.services #pin-services .service-items .item .title.media-production svg {
    min-height: 100px;
  }
  section.services #pin-services .service-items .item .title svg {
    width: auto;
    min-height: 60px;
  }
  section.services #pin-services .service-items .item .except {
    max-width: 100%;
    margin-bottom: 4vh;
    font-size: 4vw;
  }
  section.services #pin-services .service-items .item .btn {
    padding: 10px 15px;
  }
  section.services #pin-services .service-items .item .btn span {
    font-size: 18px;
  }
  .menu .menu-content nav > ul:hover > li {
    opacity: 1;
    filter: unset;
  }
  .menu .menu-content nav > ul > li > a .num {
    font-size: max(12px, 14 / var(--gfs-rem) * 1rem);
  }
  .menu .menu-content nav > ul > li > a .title {
    font-size: calc(80 / var(--gfs-rem) * 1rem);
    line-height: 1.6;
  }
  .menu .menu-content nav > ul > li > a .title i {
    font-size: calc(50 / var(--gfs-rem) * 1rem);
  }
  .menu .menu-content nav > ul > li.menu-has-children > ul.sub-menu li a {
    font-weight: 500;
    font-size: calc(40 / var(--gfs-rem) * 1rem);
    line-height: 1.5;
  }
  .menu .menu-bottom {
    flex-direction: column;
  }
  .menu .menu-bottom p {
    font-size: calc(24 / var(--gfs-rem) * 1rem);
    line-height: 1.7;
    letter-spacing: 0.3em;
  }
  .menu .menu-bottom .socials .social-item a {
    font-size: calc(24 / var(--gfs-rem) * 1rem);
  }
  .services-cards-wrapper .services-cards .card-row {
    margin: 0 -5px;
  }
  .services-cards-wrapper .services-cards .card-wrapper {
    padding: 5px;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card {
    height: 230px;
    padding: 10px;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .number {
    font-size: 12vw;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .description {
    max-height: 80px;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .description .logo {
    height: 80px;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card .description .text {
    font-size: 2.5vw;
    margin: 20px 0 0 0;
  }
  .services-cards-wrapper .services-cards .card-wrapper .card:hover .description {
    max-height: 200px;
  }
  footer .footer-top svg {
    margin-top: 8vh;
  }
  footer .footer-center {
    margin-top: 8vh;
  }
  footer .footer-center .title {
    margin-bottom: 1.5vh;
  }
  footer .footer-center .title .title-text {
    font-size: 4vw;
  }
  footer .footer-center .text {
    font-size: 4vw;
    margin-bottom: 5vh;
  }
  footer .footer-bottom {
    margin-top: 8vh;
  }
  footer .footer-bottom nav ul li {
    margin-bottom: 1vh;
  }
  footer .footer-bottom nav ul li a {
    font-size: 3vw;
  }
  footer .footer-bottom .copyrights {
    font-size: 2.5vw;
    margin-top: 4vh;
    padding: 1vh 0;
  }
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

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