@font-face {
  font-family: "Bebas";
	src: url('/fonts/BebasPro/BebasNeuePro-Bold.eot');
    src: local('Bebas Neue Pro Bold'), local('BebasNeuePro-Bold'),
        url('/fonts/BebasPro/BebasNeuePro-Bold.eot?#iefix') format('embedded-opentype'),
        url('/fonts/BebasPro/BebasNeuePro-Bold.woff2') format('woff2'),
        url('/fonts/BebasPro/BebasNeuePro-Bold.woff') format('woff'),
        url('/fonts/BebasPro/BebasNeuePro-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato/Lato-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato/Lato-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato/Lato-Bold.ttf");
  font-weight: 700;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  font-style: normal;
  background: #313130;
  color: #fff;
}
body.lock {
  overflow: hidden;
}

a, a:hover {
  color: #fff;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

input, textarea {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
}

.opHover {
  opacity: 1;
  transition: all 0.25s;
}
.opHover:hover {
  opacity: 0.7;
  transition: all 0.25s;
}

.burgerToggle {
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.burgerToggle div {
  width: 22px;
  height: 2px;
  background-color: #fff;
  cursor: pointer;
}
.burgerToggle div:nth-child(1) {
  position: relative;
  top: 40%;
}
.burgerToggle div:nth-child(2) {
  position: relative;
  top: 52%;
}
.burgerToggle.--active {
  position: relative;
  transition: all 0.3s;
}
.burgerToggle.--active div:nth-child(1) {
  position: absolute;
  top: 50%;
  left: -1px;
  transform: rotate(45deg) translateY(-50%);
}
.burgerToggle.--active div:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
}

.container-fluid {
  max-width: 1200px;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
}

.header {
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .header {
    margin-top: 3px;
  }
}
.header__logo {
  display: block;
  z-index: 1;
}
.header__right {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .header__menu {
    position: absolute;
    top: -1000px;
  }
  .header__menu ul {
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .header__menu.--show {
    background: #313130;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 100px;
  }
}
.header__menu a {
  white-space: nowrap;
  font-size: 12px;
}
@media (max-width: 991.98px) {
  .header__menu a {
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
  }
}
.header__menu a.--login {
  border-radius: 8px;
  background: var(--White, #FFF);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.15);
  color: #313130;
  padding: 5px 10px;
  font-weight: 700;
}
.header__menu li + li {
  margin-left: 24px;
}
@media (max-width: 991.98px) {
  .header__menu li + li {
    margin-left: 0;
  }
}

.menu ul {
  display: flex;
}
.menu a {
  color: #D4D4D4;
  font-weight: 500;
}

h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bebas";
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0px 2px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-style: normal;
}

h2 {
  font-size: 90px;
  line-height: 80px;
}
h3 {
  font-size: 60px;
  line-height: normal;
}
@media (max-width: 991.98px) {
  h3 {
    font-size: 40px;
  }
}
h4 {
  font-size: 30px;
  line-height: normal;
}
.fw700 {
  font-weight: 700;
}

.brand-button {
  padding: 22px 52px;
  background: #33BAFE;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  border-radius: 16px;
  display: block;
}
.brand-button.--violet {
  border-radius: 16px;
  background: var(--F, linear-gradient(180deg, #CE9FFC 0%, #7367F0 100%));
  box-shadow: 0px 2px 20px 0px rgba(180, 148, 248, 0.3);
}
.brand-button.--green {
  border-radius: 16px;
  background: var(--G, linear-gradient(180deg, #04CE9B 0%, #64E408 100%));
  box-shadow: 0px 2px 20px 0px rgba(38, 213, 129, 0.3);
}
.brand-button.--red {
  border-radius: 16px;
  background: var(--R, linear-gradient(180deg, #EC008C 0%, #FC6767 100%));
  box-shadow: 0px 2px 20px 0px rgba(243, 57, 136, 0.3);
}
.brand-button.--yellow {
  border-radius: 16px;
  background: var(--O, linear-gradient(180deg, #FF9415 0%, #FFC709 100%));
  box-shadow: 0px 2px 20px 0px rgba(255, 206, 116, 0.3);
}

.hero {
  margin-bottom: 130px;
}
@media (max-width: 575.98px) {
  .hero {
    position: relative;
    margin-bottom: 0;
  }
}
.hero__block {
  width: 100%;
  max-width: 445px;
  padding-right: 60px;
  border-right: 1px solid rgba(83, 81, 80, 0.7);
}
@media (max-width: 991.98px) {
  .hero__block {
    border: none;
  }
}
.hero__block p {
  font-size: 18px;
  color: #D4D4D4;
  margin-bottom: 50px;
  max-width: 283px;
}
.hero__header {
  width: 100%;
  margin-bottom: 40px;
}
.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1099.98px) {
  .hero__img {
    opacity: 0.4;
  }
}
@media (max-width: 575.98px) {
  .hero__img {
    display: none;
  }
}
.hero__img-sm {
  display: none;
}
@media (max-width: 575.98px) {
  .hero__img-sm {
    display: block;
    margin-left: auto;
    width: 100%;
    margin-top: -230px;
    z-index: -1;
    position: relative;
  }
}
.hero .brand-button {
  padding: 20px 22px;
}

.mb20 {
  margin-bottom: 20px;
}

.about {
  padding-bottom: 30px;
}
@media (max-width: 575.98px) {
  .about {
    margin-top: -600px;
  }
}
.about h2 {
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .about h2 {
    display: none;
  }
}
.about__block {
  padding: 25px;
  border-radius: 16px;
  height: 100%;
  background: #262625;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.15);
}
.about__block h4 {
  margin-bottom: 8px;
  font-size: 28px;
}
.about__block p {
  color: #D4D4D4;
}
.about__block img {
  margin: -40px 0 -15px -40px;
  width: 100%;
}
.about__block.--num span {
  font-family: "Bebas";
  font-weight: 700;
  font-size: 90px;
  white-space: nowrap;
  line-height: 1;
  background: var(--O, linear-gradient(180deg, #FF9415 0%, #FFC709 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__block.--num span.--green {
  background: var(--G, linear-gradient(180deg, #04CE9B 0%, #64E408 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__block.--num span.--blue {
  background: var(--F, linear-gradient(180deg, #CE9FFC 0%, #7367F0 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__block.--num span.--red {
  background: var(--R, linear-gradient(180deg, #EC008C 0%, #FC6767 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__block.--num p {
  margin-bottom: 20px;
}
.about__block.--num h4 {
  margin: 0;
}

.complex__title {
  margin-bottom: 30px;
}
.complex__title img {
  width: 100%;
}
.complex__blocks {
  padding: 57px 50px;
  border-radius: 16px;
  background: #262625;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991.98px) {
  .complex__blocks {
    padding: 25px;
  }
}
.complex__block h3 {
  margin-bottom: 20px;
}
.complex__block p {
  color: #D4D4D4;
  max-width: 500px;
}
.complex__block p + p {
  margin-top: 20px;
}
.complex .brand-button {
  margin-top: 45px;
  width: -moz-fit-content;
  width: fit-content;
}
.complex .complex-1 {
  margin-top: -170px;
  margin-left: -100px;
}
.complex .complex-2 {
  margin-top: -50px;
}
.complex .complex-3 {
  margin-top: -50px;
}
.complex .complex-4 {
  margin-top: -20px;
  margin-left: -70px;
  z-index: -1;
}
.complex .complex-5 {
  margin-top: -100px;
}
@media (max-width: 991.98px) {
  .complex .complex-1,
  .complex .complex-2,
  .complex .complex-3,
  .complex .complex-4,
  .complex .complex-5 {
    width: 150px;
    display: block;
    margin: 50px auto 30px;
  }
}

.our-cases {
  margin-top: 100px;
  position: relative;
}
.our-cases h2 {
  margin-bottom: 40px;
}
.our-cases .--relative {
  position: relative;
}
@media (max-width: 767.98px) {
  .our-cases .--relative {
    padding-bottom: 70px;
  }
}

.cases__slider {
  position: initial;
}
.cases__slider-item {
  height: 100%;
  border-radius: 16px;
  background: #262625;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.15);
  padding-bottom: 22px;
  margin-left: 12px;
  margin-right: 12px;
  overflow: hidden;
}
.cases__slider-item img {
  width: 100%;
  height: auto;
}
.cases__slider-item h4 {
  margin-top: 26px;
  padding-left: 25px;
  padding-right: 25px;
}
.cases__slider-item p {
  color: #D4D4D4;
  margin-top: 13px;
  padding-left: 25px;
  padding-right: 25px;
}
.cases__slider .slick-dots {
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 10px;
}
@media (max-width: 767.98px) {
  .cases__slider .slick-dots {
    bottom: 0px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
}
.cases__slider .slick-dots li.slick-active button {
  background: #64E408;
  width: 30px;
  height: 30px;
  color: #64E408;
  border-radius: 50%;
}
.cases__slider .slick-dots li button {
  background: #262625;
  width: 20px;
  height: 20px;
  color: #262625;
  border-radius: 50%;
}
.cases__slider .slick-dots li + li {
  margin-left: 10px;
}

.traff {
  position: relative;
  margin-top: 100px;
}
.traff h2 {
  margin-bottom: 40px;
}
.traff__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.traff__item {
  height: 100%;
  border-radius: 16px;
  background: #262625;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.15);
  padding: 30px 25px;
}
.traff__item p {
  color: #D4D4D4;
}
.traff__item h4 {
  margin-bottom: 8px;
}
.traff__item.--1, .traff__item.--2 {
  position: relative;
  padding-top: 190px;
}
@media (max-width: 1198.98px) {
  .traff__item.--1, .traff__item.--2 {
    padding-top: 0px;
  }
}
.traff__item.--1 img, .traff__item.--2 img {
  position: absolute;
  top: -110px;
  right: 0;
}
@media (max-width: 1198.98px) {
  .traff__item.--1 img, .traff__item.--2 img {
    top: 10px;
    width: 150px;
    position: relative;
    margin-left: -30px;
  }
}
.traff .brand-button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 50px;
}

.footer {
  margin-top: 100px;
  position: relative;
  padding-bottom: 100px;
}
.footer__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .footer__bg {
    opacity: 0.3;
  }
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__logo-holder {
  padding-right: 35px;
  border-right: 1px solid rgba(83, 81, 80, 0.7);
}
@media (max-width: 991.98px) {
  .footer__logo-holder {
    text-align: center;
    margin-top: 50px;
    border: none;
  }
}
.footer__menus {
  display: flex;
}
@media (max-width: 991.98px) {
  .footer__menus {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .footer__menus {
    flex-direction: column;
  }
}
.footer__menu {
  margin-right: 50px;
  margin-bottom: 20px;
}
.footer__menu a {
  display: block;
  font-size: 14px;
  color: #D4D4D4;
}
.footer__menu a + a {
  margin-top: 24px;
}/*# sourceMappingURL=style.css.map */