@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff") format("woff");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff") format("woff");
}

@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/Poppins-MediumItalic.woff") format("woff");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Poppins-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff") format("woff");
}

@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/GothamPro-Light.woff") format("woff");
}

@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GothamPro.woff") format("woff");
}

@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GothamPro-Medium.woff") format("woff");
}

@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff") format("woff");
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.fade-out {
  -webkit-animation-name: fade-out;
          animation-name: fade-out;
}

/* Flex helpers */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex.vac {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.cac {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.flex-wrap-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex .row,
.flex .full-width {
  width: 100%;
}

.flex.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex.justify-space-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.flex.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
}

.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100000000;
  background: #111417;
}

.overlay .preloader svg {
  -webkit-animation-name: preloader-in;
          animation-name: preloader-in;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.overlay .preloader.out svg {
  -webkit-animation-name: preloader-out;
          animation-name: preloader-out;
}

.overlay .preloader.animate .outer {
  -webkit-animation-name: show100;
          animation-name: show100;
  -webkit-animation-duration: 2.3s;
          animation-duration: 2.3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  opacity: 1;
}

.overlay .preloader .logo {
  opacity: 0;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  display: block;
  width: 50%;
  margin: 0px auto;
  text-align: center;
  background: transparent url(../img/logo.svg) no-repeat center center;
  -webkit-background-size: contain;
          background-size: contain;
  text-indent: -99999px;
  padding: 5px;
}

.overlay .preloader .logo.fade-out {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
}

.overlay .preloader .logo img {
  width: 80px;
}

@-webkit-keyframes preloader-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  25% {
    opacity: 1;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes preloader-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  25% {
    opacity: 1;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes preloader-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    opacity: 1;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}

@keyframes preloader-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    opacity: 1;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}

.loader {
  position: relative;
  height: 200px;
  width: 200px;
}

.loader svg {
  position: absolute;
  top: 0%;
}

.outer {
  fill: transparent;
  stroke: #EC6608;
  stroke-width: 2;
  stroke-dasharray: 99;
  /* transition: stroke-dashoffset 1s;*/
  stroke-dashoffset: 0;
  opacity: 0;
}

.preloader .outer {
  stroke-dasharray: 502;
}

.outer.loading {
  -webkit-transition: stroke-dashoffset 0.8s ease;
  -o-transition: stroke-dashoffset 0.8s ease;
  transition: stroke-dashoffset 0.8s ease;
}

.background {
  opacity: 0.5;
  stroke: #171B1F;
  stroke-width: 2;
  fill: transparent;
}

.animate .outer {
  -webkit-animation-name: show100;
          animation-name: show100;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  opacity: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.loader.animate {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  background-color: #111417;
  color: #fff;
}

body.overflow-hidden {
  overflow: hidden;
}

.container {
  max-width: -webkit-calc(100% - 590px);
  max-width: calc(100% - 590px);
  width: 100%;
}

.section {
  -webkit-border-radius: 20px;
          border-radius: 20px;
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
  padding: 1px;
  -webkit-filter: drop-shadow(0px 4px 33px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 33px rgba(0, 0, 0, 0.25));
  margin-bottom: 30px;
}

.section:last-child {
  margin-bottom: 0;
}

.section__title {
  text-transform: uppercase;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #242424;
}

.section__container {
  background-color: #171B1F;
  padding: 30px 40px 40px;
  -webkit-border-radius: 20px;
          border-radius: 20px;
}

input, textarea {
  background: none;
  border: none;
  color: inherit;
}

::-webkit-input-placeholder {
  color: #6D6D6D;
  font-size: 14px;
  font-family: "GothamPro";
}

:-ms-input-placeholder {
  color: #6D6D6D;
  font-size: 14px;
  font-family: "GothamPro";
}

::-ms-input-placeholder {
  color: #6D6D6D;
  font-size: 14px;
  font-family: "GothamPro";
}

::placeholder {
  color: #6D6D6D;
  font-size: 14px;
  font-family: "GothamPro";
}

@-webkit-keyframes grad-anime {
  0%, 100% {
    -webkit-background-size: 100% 100%;
            background-size: 100% 100%;
  }
  50% {
    -webkit-background-size: 200% 200%;
            background-size: 200% 200%;
  }
}

@keyframes grad-anime {
  0%, 100% {
    -webkit-background-size: 100% 100%;
            background-size: 100% 100%;
  }
  50% {
    -webkit-background-size: 200% 200%;
            background-size: 200% 200%;
  }
}

.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  text-decoration: none;
  line-height: 1;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  width: 200px;
  height: 50px;
  font-size: 16px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  border: none;
  background-color: #000;
  color: #fff;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.button:focus, .button:hover {
  text-decoration: none;
}

.header {
  position: relative;
  z-index: 2;
}

.header__container {
  width: 100%;
  height: 100px;
  padding: 0 1px 1px;
  background: -webkit-linear-gradient(30deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(30deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(60deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-border-radius: 0px 0px 20px 20px;
          border-radius: 0px 0px 20px 20px;
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
}

.header__container-inner {
  padding: 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #171B1F;
  -webkit-border-radius: 0px 0px 20px 20px;
          border-radius: 0px 0px 20px 20px;
  height: 100%;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__inner-wrapper {
  display: none;
}

.header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__title {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  font-weight: 700;
}

.header__subtitle {
  font-size: 14px;
  color: #ACACAC;
  line-height: 1.1;
  font-family: "GothamPro";
}

.header__notice {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #E1E1E1;
}

.header__notice span {
  color: #EC6608;
  font-style: italic;
}

.header__social-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__social-item {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
  overflow: hidden;
  position: relative;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.header__social-item:last-child {
  margin-right: 0;
}

.header__social-item svg {
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.header__social-item svg path {
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.header__social-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  opacity: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.header__social-item:hover {
  -webkit-filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
          filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
}

.header__social-item:hover::before {
  opacity: 1;
}

.header__social-item:hover svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.header__social-item:hover svg path {
  fill: #fff;
}

.header__buttons {
  display: none;
  padding: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__buttons-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  color: #3E4143;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.header__buttons-item:hover, .header__buttons-item.active {
  color: #fff;
}

.header__buttons-item:hover svg path, .header__buttons-item.active svg path {
  fill: #EC6608;
}

.header__buttons-icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
  margin-right: 15px;
}

.header__buttons-icon svg path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.footer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(257deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(257deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(193deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
  margin-top: 40px;
  -webkit-border-radius: 20px 20px 0 0;
          border-radius: 20px 20px 0 0;
  padding: 1px 1px 0;
}

.footer__inner {
  width: 100%;
  content: '';
  -webkit-border-radius: 20px 20px 0 0;
          border-radius: 20px 20px 0 0;
  padding: 50px 40px;
  background-color: #171B1F;
}

.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer__logo {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__logo-img {
  width: 60px;
}

.footer__copyrights {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  color: #727272;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

.footer__copyrights span {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 600;
  font-family: "GothamPro";
}

.footer__contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__contacts-item {
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #A7A7A7;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__contacts-item:last-child {
  margin-bottom: 0;
}

.footer__contacts-item:hover {
  color: #fff;
}

.footer__contacts-item:hover .footer__contacts-icon {
  border: none;
  -webkit-filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
          filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
}

.footer__contacts-item:hover .footer__contacts-icon::before {
  opacity: 1;
}

.footer__contacts-item:hover .footer__contacts-icon svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.footer__contacts-item:hover .footer__contacts-icon svg path {
  fill: #fff;
}

.footer__contacts-item:last-child {
  margin-bottom: 0;
}

.footer__contacts-icon {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: #171B1F;
  border: 1px solid #242424;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-filter .3s;
  transition: -webkit-filter .3s;
  -o-transition: filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s;
}

.footer__contacts-icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
}

.footer__contacts-icon svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__contacts-icon svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__social-item {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
  overflow: hidden;
  position: relative;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.footer__social-item:last-child {
  margin-right: 0;
}

.footer__social-item svg {
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.footer__social-item svg path {
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.footer__social-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
}

.footer__social-item:hover {
  -webkit-filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
          filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
}

.footer__social-item:hover::before {
  opacity: 1;
}

.footer__social-item:hover svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.footer__social-item:hover svg path {
  fill: #fff;
}

.main {
  max-width: -webkit-calc(100% - 80px);
  max-width: calc(100% - 80px);
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.main-plug {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(17, 20, 23, 0.9);
  z-index: 9;
}

.nav {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 160px;
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.nav.swiped {
  -webkit-transform: translate(0, -410px);
      -ms-transform: translate(0, -410px);
          transform: translate(0, -410px);
}

.nav__inner {
  margin-bottom: 80px;
}

.nav__inner:last-child {
  margin-bottom: 0;
}

.nav__inner-close {
  width: 35px;
  height: 35px;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
  position: absolute;
  top: 40px;
  right: 40px;
}

.nav__inner-close::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("../img/icons/close.svg");
  -webkit-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.nav__inner-close:hover::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.nav__heading {
  margin-bottom: 40px;
  letter-spacing: 0.15em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3E4143;
}

.nav__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #757778;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.nav__item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #EC6608;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: absolute;
  left: -44px;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
      -ms-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}

.nav__item:hover, .nav__item._current {
  color: #EC6608;
}

.nav__item:hover .nav__icon, .nav__item._current .nav__icon {
  border: none;
  -webkit-filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
          filter: drop-shadow(0px 8px 20px rgba(234, 86, 12, 0.3));
}

.nav__item:hover .nav__icon::before, .nav__item._current .nav__icon::before {
  opacity: 1;
}

.nav__item:hover .nav__icon svg, .nav__item._current .nav__icon svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.nav__item:hover .nav__icon svg path, .nav__item._current .nav__icon svg path {
  fill: #fff;
}

.nav__item:hover .nav__icon svg path._accent, .nav__item._current .nav__icon svg path._accent {
  fill: #EC6608;
}

.nav__item._current::before {
  -webkit-box-shadow: 0px 0px 20px #EC6608;
          box-shadow: 0px 0px 20px #EC6608;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.nav__icon {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: #111417;
  border: 1px solid #242424;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-filter .3s;
  transition: -webkit-filter .3s;
  -o-transition: filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s;
}

.nav__icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
}

.nav__icon svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.nav__icon svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.nav__dropdown {
  display: none !important;
}

.nav__button {
  display: none;
  width: 100%;
  height: 38px;
  background-color: #171B1F;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  color: #797979;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.nav__button:hover {
  background-color: #EC6608;
  color: #fff;
}

.nav__button span {
  font-size: 0;
}

.nav__button.active {
  font-size: 0;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.nav__button.active span {
  font-size: 12px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.aside {
  -webkit-border-radius: 20px;
          border-radius: 20px;
  width: 350px;
  background: -webkit-linear-gradient(213deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(213deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(237deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  padding: 1px;
}

.aside__container {
  background-color: #171B1F;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  padding: 45px 25px;
}

.aside__container-inner {
  margin-bottom: 20px;
}

.aside__container-inner:last-child {
  margin-bottom: 0;
}

.aside__container-close {
  width: 35px;
  height: 35px;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
  position: absolute;
  top: 40px;
  right: 40px;
}

.aside__container-close::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("../img/icons/close.svg");
  -webkit-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.aside__container-close:hover::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.aside__heading {
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3E4143;
}

.aside__rating {
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
  padding: 20px 0;
}

.aside__rating-item {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.aside__rating-item::before {
  content: '';
  background: -webkit-linear-gradient(196.74deg, #171B1F 27.41%, rgba(136, 67, 19, 0.65) 48.93%, #EC6608 76.64%, #E63612 96.3%);
  background: -o-linear-gradient(196.74deg, #171B1F 27.41%, rgba(136, 67, 19, 0.65) 48.93%, #EC6608 76.64%, #E63612 96.3%);
  background: linear-gradient(253.26deg, #171B1F 27.41%, rgba(136, 67, 19, 0.65) 48.93%, #EC6608 76.64%, #E63612 96.3%);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
      -ms-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 100%;
  height: 100%;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.aside__rating-item:last-child {
  margin-bottom: 0;
}

.aside__rating-item:hover::before {
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
}

.aside__rating-item:hover .aside__rating-number {
  -webkit-border-radius: 5px 0 0 5px;
          border-radius: 5px 0 0 5px;
  background-color: #EC6608;
  color: #fff;
}

.aside__rating-item:hover .aside__rating-image {
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}

.aside__rating-item:hover .aside__rating-image::before {
  opacity: 0;
}

.aside__rating-item:hover .aside__rating-wrapper {
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}

.aside__rating-inner {
  background-color: #171B1F;
  height: -webkit-calc(100% - 2px);
  height: calc(100% - 2px);
  width: -webkit-calc(100% - 2px);
  width: calc(100% - 2px);
  margin: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  position: relative;
  z-index: 2;
}

.aside__rating-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1C2023;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  color: #797979;
  font-size: 14px;
  margin-right: 10px;
  height: 100%;
  width: 35px;
  transition: .3s;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.aside__rating-image {
  width: 100px;
  height: 100%;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
  margin-right: 12px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.aside__rating-image::before {
  content: '';
  background: rgba(23, 27, 31, 0.3);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.aside__rating-wrapper {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.aside__rating-title {
  margin-bottom: 10px;
  color: #E2E2E2;
  font-size: 14px;
  line-height: 1.2;
}

.aside__rating-views {
  color: #525252;
  letter-spacing: 0.05em;
  font-size: 12px;
  font-family: "GothamPro";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside__rating-views::before {
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background-image: url("../img/icons/eye.svg");
  -webkit-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.aside__benefits {
  padding-top: 10px;
}

.aside__benefits-item {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.1;
  color: #A7A7A7;
  font-family: "GothamPro";
}

.aside__benefits-item:last-child {
  margin-bottom: 0;
}

.aside__benefits-icon {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  border: 1px solid #242424;
}

.projects {
  background: -webkit-linear-gradient(347deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(347deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(103deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.projects__title {
  margin-bottom: 0;
}

.projects__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.projects .project {
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  margin-top: 40px;
  display: block;
}

.projects .project:hover .project__preview-wrapper {
  background-color: #EC6608;
}

.projects .project:hover .project__icon::before {
  width: 0;
  height: 0;
}

.projects .project:hover .project__icon svg path {
  fill: #E1E1E1;
}

.projects .project__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #E1E1E1;
  font-weight: 500;
}

.projects .project__title::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-right: 10px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
}

.projects .project__preview {
  position: relative;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
  overflow: hidden;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #171B1F;
}

.projects .project__preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111417;
  opacity: 0.6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.projects .project__preview-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(227.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-border-radius: 12px;
          border-radius: 12px;
  padding: 1px;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  cursor: pointer;
}

.projects .project__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  -webkit-box-shadow: 0px 6.70917px 16.7729px rgba(234, 86, 12, 0.3);
          box-shadow: 0px 6.70917px 16.7729px rgba(234, 86, 12, 0.3);
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  -webkit-border-radius: 0px 12px;
          border-radius: 0px 12px;
  position: absolute;
  right: 0;
  top: 0;
}

.projects .project__category::before {
  content: '';
  width: 17px;
  height: 17px;
  display: inline-block;
  background-image: url("../img/icons/project-category.svg");
  -webkit-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 5px;
}

.projects .project__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EC6608;
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.projects .project__icon::before {
  content: '';
  background-color: #2E2F2D;
  width: -webkit-calc(100% - 4px);
  width: calc(100% - 4px);
  height: -webkit-calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.projects .project__icon svg {
  position: relative;
  z-index: 2;
}

.projects .project__icon svg path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.projects .project__video {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.about {
  background: -webkit-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(130deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.about__logo {
  width: 220px;
  height: 220px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-right: 55px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  background-image: url("../img/about/logo-bg.svg");
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
}

.about__logo-icon {
  margin-bottom: 20px;
  width: 110px;
  height: 110px;
}

.about__logo-caption {
  color: #ACACAC;
  font-weight: 600;
}

.about__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about__heading {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px;
}

.about__heading span {
  font-weight: 700;
}

.about__text {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #ACACAC;
  font-family: "GothamPro";
}

.about__text:last-child {
  margin-bottom: 0;
}

.about__text span {
  font-weight: 700;
}

.specialty {
  background: -webkit-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(227.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.specialty__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.specialty__box {
  width: -webkit-calc(33% - 20px);
  width: calc(33% - 20px);
  background: -webkit-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(227.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-filter: drop-shadow(0px 4px 33px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 33px rgba(0, 0, 0, 0.25));
  padding: 1px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow: hidden;
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
}

.specialty__box-inner {
  background-color: #171B1F;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 10px;
          border-radius: 10px;
}

.specialty__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  height: 50px;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-border-radius: 10px 10px 0 0;
          border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
          box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
}

.specialty__list {
  padding: 40px;
}

.specialty__list-item {
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  font-family: "GothamPro";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ACACAC;
}

.specialty__list-item::before {
  content: '';
  margin-right: 15px;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
}

.specialty__list-item:last-child {
  margin-bottom: 0;
}

.backstage__top-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #242424;
}

.backstage__title {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.backstage__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.backstage__button {
  width: 30px;
  height: 30px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #4F4F4F;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.backstage__button svg path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.backstage__button:hover {
  background-color: #EC6608;
  -webkit-box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
          box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
}

.backstage__button:hover svg path {
  fill: #fff;
}

.backstage__button-prev {
  margin-right: 10px;
}

.backstage__container {
  overflow: hidden;
  position: relative;
}

.backstage__main-slider {
  overflow: hidden;
  width: -webkit-calc(100% - 245px);
  width: calc(100% - 245px);
  height: 100%;
  margin-right: 30px;
}

.backstage__main-slide {
  -webkit-border-radius: 30px;
          border-radius: 30px;
  background: -webkit-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(227.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  padding: 1px;
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
}

.backstage__main-image {
  padding-bottom: 56.25%;
  width: 100%;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
  -webkit-border-radius: 30px;
          border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.backstage__thumbs-slider {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: 215px;
  height: 100%;
  padding-right: 15px;
}

.backstage__thumbs-slider::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: -webkit-calc(100% - 15px);
  width: calc(100% - 15px);
  -webkit-box-shadow: 0px 0px 50px 50px #171b1f;
          box-shadow: 0px 0px 50px 50px #171b1f;
  z-index: 5;
}

.backstage__thumbs-slider .swiper-pagination-progressbar {
  top: 0;
  left: 100%;
  -webkit-transform: translateX(-2px);
      -ms-transform: translateX(-2px);
          transform: translateX(-2px);
  width: 2px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #2A2624;
}

.backstage__thumbs-slider .swiper-pagination-progressbar-fill {
  background-color: #EC6608;
  -webkit-border-radius: 10px;
          border-radius: 10px;
}

.backstage__thumbs-slide {
  -webkit-border-radius: 15px;
          border-radius: 15px;
  background: -webkit-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(227.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  padding: 1px;
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  cursor: pointer;
}

.backstage__thumbs-slide.swiper-slide-thumb-active {
  background: #EC6608;
}

.backstage__thumbs-image {
  height: 100%;
  padding-bottom: 56.25%;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
  -webkit-border-radius: 15px;
          border-radius: 15px;
}

.benefits {
  background: -webkit-linear-gradient(314.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(314.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(135.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.benefits__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.benefits__box {
  border: 1px solid #212223;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  width: 100%;
}

.benefits__box:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60%;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  margin-right: 25px;
}

.benefits__box-inner {
  padding: 30px;
}

.benefits__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  height: 50px;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-border-radius: 20px 20px 0 0;
          border-radius: 20px 20px 0 0;
  -webkit-box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
          box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
}

.benefits__item {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.3;
  color: #A7A7A7;
  font-family: "GothamPro";
}

.benefits__item:last-child {
  margin-bottom: 0;
}

.benefits__item-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 60px;
  min-width: 265px;
}

.benefits__item-data {
  color: #E2E2E2;
  font-family: "GothamPro";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.benefits__item-data._bold {
  font-weight: 700;
}

.benefits__item-data span {
  color: #EC6608;
}

.benefits__icon {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  border: 1px solid #242424;
}

.showreels {
  background: -webkit-linear-gradient(347deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(347deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(103deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.showreels__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.showreels .showreel {
  margin-top: 40px;
  display: block;
}

.showreels .showreel__top-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.showreels .showreel__button {
  width: 130px;
  height: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  -webkit-box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
          box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
  -webkit-border-radius: 10px;
          border-radius: 10px;
  font-weight: 500;
  font-size: 11px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 15px;
}

.showreels .showreel__button::before {
  content: '';
  margin-right: 7px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/copy.svg");
  -webkit-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.showreels .showreel__button span {
  font-size: 0;
}

.showreels .showreel__button.active {
  font-size: 0;
  -webkit-transition: font-size 0s;
  -o-transition: font-size 0s;
  transition: font-size 0s;
}

.showreels .showreel__button.active span {
  font-size: 11px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.showreels .showreel__button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.showreels .showreel__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #E1E1E1;
  font-weight: 500;
}

.showreels .showreel__title::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-right: 10px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
}

.showreels .showreel__preview {
  position: relative;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
  overflow: hidden;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  padding-bottom: 56.25%;
  width: 100%;
  background-color: #171B1F;
  cursor: pointer;
}

.showreels .showreel__preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111417;
  opacity: 0.6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.showreels .showreel__preview-wrapper {
  padding: 1px;
  position: relative;
  overflow: hidden;
  background: -webkit-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(227.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-border-radius: 12px;
          border-radius: 12px;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}

.showreels .showreel__preview-wrapper:hover {
  background-color: #EC6608;
}

.showreels .showreel__preview-wrapper:hover .showreel__icon::before {
  width: 0;
  height: 0;
}

.showreels .showreel__preview-wrapper:hover .showreel__icon svg path {
  fill: #E1E1E1;
}

.showreels .showreel__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  -webkit-box-shadow: 0px 6.70917px 16.7729px rgba(234, 86, 12, 0.3);
          box-shadow: 0px 6.70917px 16.7729px rgba(234, 86, 12, 0.3);
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  -webkit-border-radius: 0px 12px;
          border-radius: 0px 12px;
  position: absolute;
  right: 0;
  top: 0;
}

.showreels .showreel__category::before {
  content: '';
  width: 17px;
  height: 17px;
  display: inline-block;
  background-image: url("../img/icons/project-category.svg");
  -webkit-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 5px;
}

.showreels .showreel__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EC6608;
  width: 120px;
  height: 120px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.showreels .showreel__icon::before {
  content: '';
  background-color: #2E2F2D;
  width: -webkit-calc(100% - 4px);
  width: calc(100% - 4px);
  height: -webkit-calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.showreels .showreel__icon svg {
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
}

.showreels .showreel__icon svg path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.showreels .showreel__video {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.partnership {
  background: -webkit-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(130deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.partnership__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.partnership__image {
  margin-left: 70px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}

.partnership__heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.partnership__heading span {
  font-weight: 700;
  color: #EC6608;
}

.partnership__text {
  font-size: 18px;
  line-height: 1.6;
  color: #ACACAC;
  font-family: "GothamPro";
  margin-bottom: 10px;
}

.partnership__text:last-child {
  margin-bottom: 0;
}

.partnership__text span {
  font-weight: 500;
}

.clients {
  background: -webkit-linear-gradient(220deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(220deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(230deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.clients__top-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #242424;
}

.clients__title {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.clients__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.clients__button {
  width: 30px;
  height: 30px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #4F4F4F;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.clients__button svg path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.clients__button:hover {
  background-color: #EC6608;
  -webkit-box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
          box-shadow: 0px 8px 20px rgba(234, 86, 12, 0.3);
}

.clients__button:hover svg path {
  fill: #fff;
}

.clients__button-prev {
  margin-right: 10px;
}

.clients__slider {
  overflow: hidden;
}

.clients__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.clients__item {
  height: 140px;
  width: -webkit-calc(25% - 20px);
  width: calc(25% - 20px);
  -webkit-border-radius: 20px;
          border-radius: 20px;
  margin-top: 30px;
  background: -webkit-linear-gradient(220deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(220deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(230deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  padding: 1px;
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.clients__item:hover .clients__item-inner {
  background-color: #EC6608;
}

.clients__item-inner {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  background-color: #1C2023;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clients__item svg {
  max-width: -webkit-calc(100% - 40px);
  max-width: calc(100% - 40px);
  max-height: -webkit-calc(100% - 40px);
  max-height: calc(100% - 40px);
}

.clients__item svg path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.clients__item:hover svg path {
  fill: #fff;
}

.locations {
  background: -webkit-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(130deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.locations__title {
  margin-bottom: 0;
}

.locations__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.locations__item {
  width: -webkit-calc(50% - 15px);
  width: calc(50% - 15px);
  margin-top: 30px;
  padding: 1px;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  background: -webkit-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(320deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(130deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
}

.locations__item-inner {
  background: #171B1F;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: right center;
  padding: 30px;
}

.locations__item-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  font-family: "GothamPro";
  color: #919191;
}

.locations__item-data:last-child {
  margin-bottom: 0;
}

.locations__item-data span {
  color: #C3C3C3;
  font-weight: 700;
  margin-left: 6px;
}

.locations__item-data:hover {
  color: #919191;
}

.locations__item-data._large {
  font-size: 22px;
}

.locations__item-icon {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 25px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border: 1px solid #242424;
  -webkit-border-radius: 10px;
          border-radius: 10px;
}

.contacts {
  background: -webkit-linear-gradient(240deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(240deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(210deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.contacts__title {
  border: none;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.contacts__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.contacts__container-inner {
  -webkit-border-radius: 20px;
          border-radius: 20px;
  border: 1px solid #242424;
  padding: 25px;
  width: 365px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 30px;
}

.contacts__text {
  margin-bottom: 70px;
  font-size: 14px;
  max-width: 250px;
  line-height: 1.6;
  color: #ACACAC;
}

.contacts .footer__contacts {
  margin-bottom: 70px;
}

.contacts .footer__social {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}

.contacts .footer__social-item {
  margin-right: 0;
}

.contacts__form {
  width: 100%;
}

.contacts__form-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.contacts__form-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts__form-container .contacts__form-wrapper {
  width: 100%;
}

.contacts__form-container .contacts__form-wrapper._smaller {
  width: 40%;
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.contacts__form-heading {
  font-size: 16px;
  font-family: "GothamPro";
  margin-bottom: 15px;
  color: #ACACAC;
  line-height: 1;
}

.contacts__form-heading .star {
  color: #EC6608;
  font-size: 18px;
}

.contacts__form-label {
  display: block;
  position: relative;
  height: 50px;
  width: 100%;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
}

.contacts__form-label._focus .contacts__form-input {
  border-color: #EC6608;
}

.contacts__form-label._focus .contacts__form-icon path {
  fill: #EC6608;
}

.contacts__form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.contacts__form-icon path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.contacts__form-input {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  font-size: 14px;
  padding-left: 50px;
  padding-right: 25px;
  border: 1px solid transparent;
}

.contacts__form-textarea {
  width: 100%;
  height: 120px;
  padding: 18px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
  font-size: 14px;
  border: 1px solid transparent;
  resize: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.contacts__form-textarea:focus {
  border-color: #EC6608;
}

.contacts__form-error {
  position: absolute;
  top: 100%;
  color: #EC6608;
  font-size: 12px;
  margin-top: 3px;
}

.contacts__form-submit {
  width: 200px;
  height: 60px;
  font-size: 18px;
  font-weight: 700;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  margin-left: auto;
}

.contacts__popup {
  padding: 1px;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  -webkit-filter: drop-shadow(0px 4px 33px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 33px rgba(0, 0, 0, 0.25));
  background: -webkit-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(222.94deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(227.06deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  -webkit-animation: grad-anime 8s linear infinite;
          animation: grad-anime 8s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: -webkit-calc(100% - 40px);
  max-width: calc(100% - 40px);
  min-width: 280px;
}

.contacts__popup-inner {
  position: relative;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#171B1F), to(#171B1F));
  background: -webkit-linear-gradient(top, #171B1F 0%, #171B1F 100%);
  background: -o-linear-gradient(top, #171B1F 0%, #171B1F 100%);
  background: linear-gradient(180deg, #171B1F 0%, #171B1F 100%);
  width: 400px;
  height: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-top: 30px;
  max-width: 100%;
}

.contacts__popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 20, 23, 0.9);
  z-index: 20;
}

.contacts__popup-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contacts__popup-text {
  max-width: 150px;
  margin-bottom: 25px;
  font-family: "GothamPro";
  line-height: 1.4;
  color: #7B7E7F;
}

.contacts__popup-close {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-color: #1C2023;
  position: absolute;
  top: 20px;
  right: 20px;
}

.contacts__popup-close svg path {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.contacts__popup-close:hover svg path {
  fill: #EC6608;
}

.page-404 .header__buttons {
  display: none;
}

.not-found {
  margin-top: 40px;
  background-color: #171B1F;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  background: -webkit-linear-gradient(240deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: -o-linear-gradient(240deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
  background: linear-gradient(210deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
}

.not-found__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.not-found__title {
  font-size: 250px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.not-found__subtitle {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 600;
  color: #ACACAC;
}

.not-found__button {
  font-size: 18px;
  font-weight: 700;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#E63612), color-stop(99.98%, #EC6608));
  background: -webkit-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: -o-linear-gradient(bottom, #E63612 0%, #EC6608 99.98%);
  background: linear-gradient(0deg, #E63612 0%, #EC6608 99.98%);
  width: 280px;
  height: 60px;
}

.not-found__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(25, 29, 33, 0.8);
  font-size: 400px;
  font-weight: 600;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1700px) {
  .container {
    max-width: -webkit-calc(100% - 570px);
    max-width: calc(100% - 570px);
  }
  .section__container {
    padding: 30px;
  }
  .main {
    margin: 30px auto 0;
  }
  .projects .project {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
  .about__logo {
    margin-right: 40px;
  }
  .specialty__box {
    width: -webkit-calc(33% - 12px);
    width: calc(33% - 12px);
  }
  .specialty__list {
    padding: 30px;
  }
  .backstage__main-slider {
    width: -webkit-calc(100% - 205px);
    width: calc(100% - 205px);
  }
  .backstage__thumbs-slider {
    width: 190px;
  }
  .benefits__item {
    font-size: 13px;
  }
  .benefits__item-wrapper {
    margin-right: 25px;
  }
  .benefits__item-data._bold {
    font-size: 12px;
  }
  .clients__item {
    height: 120px;
  }
}

@media only screen and (max-width: 1500px) {
  .specialty__box {
    width: -webkit-calc(33% - 10px);
    width: calc(33% - 10px);
  }
  .specialty__list {
    padding: 20px;
  }
  .specialty__list-item {
    font-size: 14px;
  }
  .backstage__button {
    width: 20px;
    height: 20px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
  }
  .backstage__button svg {
    height: 10px;
  }
  .backstage__main-slider {
    width: -webkit-calc(100% - 175px);
    width: calc(100% - 175px);
  }
  .backstage__thumbs-slider {
    width: 160px;
  }
  .benefits__heading {
    height: 40px;
    font-size: 14px;
  }
  .benefits__box-inner {
    padding: 15px;
  }
  .benefits__icon {
    margin-right: 15px;
    width: 30px;
    height: 30px;
  }
  .benefits__icon img {
    width: 16px;
  }
  .benefits__item {
    font-size: 11px;
  }
  .benefits__item-wrapper {
    margin-right: 15px;
    min-width: 215px;
  }
  .benefits__item-data {
    font-size: 12px;
  }
  .benefits__item-data._bold {
    font-size: 10px;
  }
  .clients__item {
    height: 100px;
  }
  .contacts__container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contacts__container-inner {
    width: 340px;
    margin-right: 20px;
    padding: 20px;
  }
  .contacts__form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__form-container .contacts__form-wrapper._smaller {
    width: 100%;
    margin-right: 0;
  }
  .not-found__bg-text {
    font-size: 300px;
  }
}

@media only screen and (max-width: 1350px) {
  .body-inner {
    overflow: hidden;
  }
  .container {
    max-width: 100%;
  }
  .section__container {
    padding: 40px;
  }
  .section__title {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .header__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .main {
    margin: 0;
    max-width: 100%;
  }
  .nav {
    width: auto;
    position: static;
  }
  .nav__heading {
    display: none;
  }
  .nav__item::before {
    display: none;
  }
  .nav__inner {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    z-index: 10;
    padding: 90px 40px;
    background-color: #171B1F;
    width: 380px;
    height: -webkit-calc(100vh - 220px);
    height: calc(100vh - 220px);
    -webkit-border-radius: 20px;
            border-radius: 20px;
    border: 1px solid #EC6608;
    -webkit-transition: .8s;
    -o-transition: .8s;
    transition: .8s;
    overflow-y: auto;
  }
  .nav__inner-close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__inner.active {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-filter: drop-shadow(0px 4.36592px 36.0188px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0px 4.36592px 36.0188px rgba(0, 0, 0, 0.25));
  }
  .nav__dropdown {
    display: block;
  }
  .nav__button {
    display: none;
  }
  .aside {
    width: auto;
    position: static;
    padding: 0;
    background: none;
  }
  .aside__container {
    padding: 0;
    background: none;
  }
  .aside__container-inner {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
    z-index: 10;
    padding: 90px 40px;
    background-color: #171B1F;
    width: 380px;
    height: 100%;
    -webkit-border-radius: 20px;
            border-radius: 20px;
    border: 1px solid #EC6608;
    -webkit-transition: .8s;
    -o-transition: .8s;
    transition: .8s;
    overflow-y: auto;
  }
  .aside__container-inner.active {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-filter: drop-shadow(0px 4.36592px 36.0188px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0px 4.36592px 36.0188px rgba(0, 0, 0, 0.25));
  }
  .aside__container-close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .projects .project {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .specialty__heading {
    height: 40px;
    font-size: 14px;
  }
  .specialty__list {
    padding: 30px;
  }
  .backstage__top-line {
    padding-bottom: 10px;
  }
  .backstage__title {
    padding-bottom: 0;
  }
  .backstage__main-slider {
    width: -webkit-calc(100% - 245px);
    width: calc(100% - 245px);
  }
  .backstage__thumbs-slider {
    width: 230px;
  }
  .benefits__box-inner {
    padding: 20px;
  }
  .benefits__item-data._bold {
    font-size: 12px;
  }
  .showreels .showreel__title {
    font-size: 16px;
  }
  .showreels .showreel__icon {
    width: 90px;
    height: 90px;
  }
  .showreels .showreel__icon svg {
    width: 34px;
    height: 34px;
  }
  .clients__item {
    -webkit-border-radius: 15px;
            border-radius: 15px;
  }
  .clients__item-inner {
    -webkit-border-radius: 15px;
            border-radius: 15px;
  }
}

/*  Small Devices, Tablets */
@media only screen and (max-width: 992px) {
  ::-webkit-input-placeholder {
    font-size: 12px;
  }
  :-ms-input-placeholder {
    font-size: 12px;
  }
  ::-ms-input-placeholder {
    font-size: 12px;
  }
  ::placeholder {
    font-size: 12px;
  }
  .header__container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__container-inner {
    padding: 0 40px;
  }
  .header__notice {
    display: none;
  }
  .header__logo {
    margin-right: 40px;
  }
  .header__social {
    margin-left: auto;
  }
  .header__title {
    font-size: 16px;
  }
  .header__subtitle {
    font-size: 12px;
  }
  .header__buttons-item {
    font-size: 12px;
  }
  .footer__wrapper {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    text-align: left;
  }
  .footer__social {
    margin-bottom: 48px;
  }
  .footer__logo {
    width: 40px;
    margin-bottom: 0;
    margin-right: 30px;
  }
  .footer__copyrights {
    line-height: 1.2;
  }
  .projects .project {
    width: -webkit-calc(50% - 8px);
    width: calc(50% - 8px);
    margin-top: 30px;
  }
  .projects .project__title {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .projects .project__category {
    padding: 5px 10px;
    font-size: 8px;
  }
  .projects .project__category::before {
    width: 14px;
    height: 14px;
  }
  .projects .project__icon {
    width: 55px;
    height: 55px;
  }
  .projects .project__icon svg {
    width: 20px;
    height: 20px;
  }
  .about__heading {
    font-size: 14px;
  }
  .about__text {
    font-size: 14px;
  }
  .specialty__list {
    padding: 20px;
  }
  .backstage__main-slider {
    width: -webkit-calc(100% - 195px);
    width: calc(100% - 195px);
  }
  .backstage__thumbs-slider {
    width: 180px;
  }
  .locations__title {
    margin-bottom: 20px;
  }
  .locations__item {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    margin-top: 20px;
    -webkit-border-radius: 15px;
            border-radius: 15px;
  }
  .locations__item-inner {
    -webkit-border-radius: 15px;
            border-radius: 15px;
    background-position: center;
    padding: 35px;
  }
  .locations__item-data {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .locations__item-data span {
    margin-left: 5px;
  }
  .locations__item-data._large {
    font-size: 18px;
  }
  .locations__item-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
  .locations__item-icon svg {
    width: 20px;
    height: 20px;
  }
  .contacts__title {
    padding-bottom: 0;
  }
  .contacts .footer__social {
    margin-bottom: 0;
  }
  .contacts__form-heading {
    font-size: 14px;
  }
  .contacts__form-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .contacts__form-container .contacts__form-wrapper._smaller {
    width: 40%;
    margin-right: 20px;
  }
  .contacts__form-wrapper {
    margin-bottom: 25px;
  }
  .contacts__form-icon {
    width: 16px;
  }
  .contacts__form-label {
    height: 40px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
  }
  .contacts__form-input, .contacts__form-textarea {
    font-size: 12px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
  }
  .contacts__form-input {
    padding-left: 40px;
    padding-right: 15px;
  }
  .contacts__form-textarea {
    padding: 15px;
  }
  .contacts__form-submit {
    width: 170px;
    height: 50px;
    font-size: 14px;
  }
  .not-found__title {
    font-size: 200px;
  }
  .not-found__subtitle {
    margin-bottom: 50px;
  }
  .not-found__bg-text {
    font-size: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .section__container {
    padding: 20px;
  }
  .section__title {
    margin-bottom: 30px;
  }
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 0 1px 1px;
    background: -webkit-linear-gradient(30deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
    background: -o-linear-gradient(30deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
    background: linear-gradient(60deg, #EC600A 10.14%, rgba(0, 0, 0, 0) 90.38%);
    -webkit-border-radius: 0px 0px 20px 20px;
            border-radius: 0px 0px 20px 20px;
    -webkit-animation: grad-anime 8s linear infinite;
            animation: grad-anime 8s linear infinite;
    padding: 0 1px 1px;
  }
  .header__wrap {
    background: #171B1F;
    -webkit-border-radius: 0 0 20px 20px;
            border-radius: 0 0 20px 20px;
    padding: 20px;
  }
  .header__container {
    height: auto;
    padding: 0;
    background: none;
  }
  .header__container-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
    background: none;
  }
  .header__wrapper {
    display: none;
  }
  .header__inner-wrapper {
    display: block;
  }
  .header__logo {
    margin-right: 30px;
  }
  .header__title {
    font-size: 14px;
  }
  .header__social {
    margin-top: 20px;
    width: 100%;
    position: relative;
  }
  .header__social::before {
    content: '';
    width: 100%;
    height: -webkit-calc(100% + 2px);
    height: calc(100% + 2px);
    background: -webkit-radial-gradient(50% 70% at 50% 50%, #EC6608 0%, rgba(36, 36, 36, 0) 100%);
    background: -o-radial-gradient(50% 70% at 50% 50%, #EC6608 0%, rgba(36, 36, 36, 0) 100%);
    background: radial-gradient(50% 70% at 50% 50%, #EC6608 0%, rgba(36, 36, 36, 0) 100%);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header__social-container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
    background-color: #171B1F;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .header__social-item svg path {
    fill: #EC6608;
  }
  .header__social-item::before {
    display: none;
  }
  .header__social-item:hover {
    -webkit-filter: none;
            filter: none;
  }
  .header__social-item:hover svg {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .header__social-item:hover svg path {
    fill: #EC6608;
  }
  .header__buttons {
    padding: 20px 0 0;
  }
  .header__buttons-benefits, .header__buttons-rating {
    display: none;
  }
  .footer__inner {
    padding: 20px 20px 0;
  }
  .footer__social {
    display: none;
  }
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__container-inner {
    width: 100%;
    background: -webkit-radial-gradient(50% 80% at 50% 50%, #EC6608 0%, rgba(36, 36, 36, 0) 100%);
    background: -o-radial-gradient(50% 80% at 50% 50%, #EC6608 0%, rgba(36, 36, 36, 0) 100%);
    background: radial-gradient(50% 80% at 50% 50%, #EC6608 0%, rgba(36, 36, 36, 0) 100%);
    margin-top: 30px;
    padding-top: 1px;
  }
  .footer__wrapper {
    padding: 30px 0;
    background-color: #171B1F;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .aside__container-close, .nav__inner-close {
    right: 20px;
    top: 20px;
  }
  .aside__container-inner, .nav__inner {
    width: 100%;
    position: fixed;
    right: auto;
    left: 0;
    top: 265px;
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
    height: -webkit-calc(100vh - 265px);
    height: calc(100vh - 265px);
    padding: 50px 20px;
    -webkit-border-radius: 20px 20px 0 0;
            border-radius: 20px 20px 0 0;
    border-bottom: none;
  }
  .aside__container-inner.active, .nav__inner.active {
    -webkit-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
            transform: translate(0, 0%);
    display: block;
  }
  .nav__item {
    margin-bottom: 15px;
  }
  .main {
    margin-top: 20px;
  }
  .projects .project {
    width: 100%;
  }
  .projects .project__icon {
    width: 46px;
    height: 46px;
  }
  .projects .project__icon::before {
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
    height: -webkit-calc(100% - 2px);
    height: calc(100% - 2px);
  }
  .projects .project__icon svg {
    width: 18px;
    height: 18px;
  }
  .about__heading {
    font-size: 14px;
  }
  .about__text {
    font-size: 14px;
  }
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__logo {
    margin-bottom: 40px;
    margin-right: 0;
  }
  .about__heading {
    margin-bottom: 30px;
  }
  .about__text {
    margin-bottom: 15px;
  }
  .specialty__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .specialty__box {
    width: 100%;
    margin-bottom: 20px;
  }
  .specialty__box:last-child {
    margin-bottom: 0;
  }
  .specialty__heading {
    font-size: 16px;
    height: 50px;
  }
  .specialty__list {
    padding: 40px;
  }
  .specialty__list-item {
    font-size: 16px;
  }
  .backstage__top-line {
    margin-bottom: 30px;
  }
  .backstage__title {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .backstage__main-slider {
    width: 100%;
  }
  .backstage__thumbs-slider {
    display: none;
  }
  .benefits__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefits__box {
    margin-bottom: 20px;
  }
  .benefits__box:last-child {
    margin-bottom: 0;
  }
  .benefits__box:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    font-size: 10px;
  }
  .benefits__box-inner {
    padding: 12px;
  }
  .benefits__heading {
    height: 50px;
    font-size: 16px;
  }
  .benefits__item {
    max-width: 480px;
    font-size: 12px;
  }
  .benefits__item-wrapper {
    min-width: auto;
    margin-right: 20px;
    font-size: 10px;
  }
  .benefits__item-data {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .benefits__item-data._bold {
    font-size: 10px;
  }
  .showreels .showreel__button {
    width: 95px;
    height: 25px;
    font-size: 10px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
  }
  .showreels .showreel__button::before {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }
  .showreels .showreel__button.active span {
    font-size: 10px;
  }
  .showreels .showreel__title {
    font-size: 12px;
  }
  .showreels .showreel__icon {
    width: 46px;
    height: 46px;
  }
  .showreels .showreel__icon:before {
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
    height: -webkit-calc(100% - 2px);
    height: calc(100% - 2px);
  }
  .showreels .showreel__icon svg {
    width: 18px;
    height: 18px;
  }
  .partnership__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .partnership__image {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
    margin-left: 0;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .partnership__heading {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .partnership__text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .clients__top-line {
    margin-bottom: 20px;
  }
  .clients__title {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .clients__item {
    -webkit-border-radius: 10px;
            border-radius: 10px;
    height: 90px;
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
    margin-top: 10px;
  }
  .clients__item-inner {
    -webkit-border-radius: 10px;
            border-radius: 10px;
  }
  .clients__item svg {
    max-width: -webkit-calc(100% - 30px);
    max-width: calc(100% - 30px);
    max-height: -webkit-calc(100% - 30px);
    max-height: calc(100% - 30px);
  }
  .locations__title {
    margin-bottom: 30px;
  }
  .locations__item {
    width: 100%;
    margin-top: 10px;
    -webkit-border-radius: 10px;
            border-radius: 10px;
  }
  .locations__item:first-child {
    margin-top: 0;
  }
  .locations__item-inner {
    -webkit-border-radius: 10px;
            border-radius: 10px;
    padding: 20px;
  }
  .locations__item-data {
    font-size: 14px;
  }
  .locations__item-data span {
    margin-left: 4px;
  }
  .locations__item-data._large {
    font-size: 16px;
  }
  .locations__item-icon {
    width: 30px;
    height: 30px;
  }
  .locations__item-icon svg {
    width: 15px;
    height: 15px;
  }
  .contacts__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__container-inner {
    width: 100%;
    padding: 0;
    border: none;
  }
  .contacts .footer__social, .contacts .footer__contacts {
    display: none;
  }
  .contacts__title {
    margin-bottom: 25px;
  }
  .contacts__text {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .contacts__form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__form-container .contacts__form-wrapper._smaller {
    margin-right: 0;
    width: 100%;
  }
  .contacts__form-textarea {
    height: 100px;
  }
  .contacts__form-submit {
    height: 50px;
    width: 100%;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    font-size: 16px;
  }
  .not-found__container {
    padding: 20px 0;
  }
  .not-found__title {
    font-size: 130px;
  }
  .not-found__subtitle {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .not-found__bg-text {
    font-size: 80px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  .header__social-container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__social-item {
    margin-right: 0;
    width: 35px;
    height: 35px;
  }
  .header__buttons-item {
    font-size: 12px;
  }
  .backstage__main-slide {
    -webkit-border-radius: 15px;
            border-radius: 15px;
  }
  .backstage__main-image {
    height: 180px;
    -webkit-border-radius: 15px;
            border-radius: 15px;
  }
  .backstage__thumbs-slide {
    -webkit-border-radius: 10px;
            border-radius: 10px;
  }
  .backstage__thumbs-image {
    -webkit-border-radius: 10px;
            border-radius: 10px;
  }
  .benefits__box:first-child .benefits__item {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 15px;
  }
}
