@import url(../fonts/fonts.css);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html,
html a {
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input,
input:focus {
  border: 0;
  outline: 0;
}

button:focus {
  outline: 0;
}

:root {
  --scroll-top: 100px;
  --font-18: 18px;
  --font-20: 20px;
  --font-24: 24px;
  --font-32: 32px;
  --font-40: 40px;
  --font-48: 48px;
  --font-64: 64px;
  --font-76: 76px;
  --energy-line: linear-gradient(90deg, #F8BA74 0%, #D48588 100%);
}

@media (max-width: 992px) {
  :root {
    --font-32: calc(32px / 1.333333);
    --font-40: calc(32px / 1.25);
    --font-48: calc(48px / 1.333333);
    --font-76: 64px;
  }
}
@media (max-width: 768px) {
  :root {
    --font-20: 18px;
    --font-24: 20px;
    --font-32: 24px;
    --font-48: 36px;
    --font-64: 48px;
  }
}
@media (max-width: 550px) {
  :root {
    --font-18: 16px;
    --font-64: 36px;
    --font-76: 48px;
  }
}
/*------------------------Global------------------------*/
html,
body {
  position: relative;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #161819;
  background: #f9f9f9;
}

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

img {
  width: 100%;
  height: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  aspect-ratio: attr(width)/attr(height);
}

input,
button,
textarea {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

b {
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  padding: 0 80px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 4px;
  height: 48px;
  line-height: 48px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding: 0 32px;
  font-weight: 700;
}
.btn.btn-full {
  width: 100%;
  text-align: center;
}
.btn.btn-dark {
  background: #161819;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.title-head,
.title-section {
  text-transform: uppercase;
}

.title-head {
  font-weight: 500;
  font-size: 100px;
}

.title-section {
  font-weight: 600;
  font-size: var(--font-64);
}

.title-section-small {
  font-weight: 600;
  font-size: var(--font-48);
}

.title-line {
  position: relative;
}
.title-line span {
  background-color: #f9f9f9;
  padding-right: 60px;
  position: relative;
  z-index: 2;
}
.title-line:after {
  content: "";
  position: absolute;
  width: 200%;
  left: 0;
  bottom: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
  background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  opacity: 0.9;
  bottom: 7px !important;
}

.wrapper {
  padding-top: 92px;
}
.wrapper:after {
  content: "";
  position: absolute;
  width: 2608px;
  height: 1946px;
  left: 0;
  top: 0;
  background: url(../images/gradients/about-head.webp) no-repeat;
  z-index: -1;
}

section {
  position: relative;
}

.next-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.next-btn:after {
  content: "";
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(22, 24, 25, 0.5);
  margin-left: 20px;
  border-radius: 5px;
  background: url(../images/next-right-arrow.svg) no-repeat;
  background-position: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.next-btn:hover {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.next-btn:hover:after {
  border: 1px solid #161819;
  background-position: left calc(50% + 5px) center;
}

.swiper-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 3;
}
.swiper-head .swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-head .swiper-nav .nav-btn {
  position: static;
  width: 48px;
  height: 48px;
  background: #161819;
  border-radius: 5px;
  margin-top: 0;
  opacity: 1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.swiper-head .swiper-nav .nav-btn::after {
  font-size: inherit;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-prev {
  margin-left: 20px;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-prev::after {
  content: url(../images/slider/prev-arrow.svg);
  font-size: inherit;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-prev:hover::after {
  padding-right: 5px;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-prev.swiper-button-disabled::after {
  opacity: 0.3;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-next {
  margin-left: 20px;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-next::after {
  content: url(../images/slider/next-arrow.svg);
  font-size: inherit;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-next:hover::after {
  padding-left: 5px;
}
.swiper-head .swiper-nav .nav-btn.swiper-button-next.swiper-button-disabled::after {
  opacity: 0.3;
}

.tab-item {
  display: none;
}
.tab-item.active {
  display: block;
}

.litebox__image {
  width: auto;
}

.swiper-initialized {
  overflow: hidden;
}

.swiper-box {
  position: relative;
}
/*
.swiper-box:after {
  content: url(../images/about/history-shadow.png);
  position: absolute;
  right: -82px;
  top: -126px;
  z-index: 1;
}
*/
.swiper-toolbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  z-index: 2;
}
.swiper-toolbar .swiper-progressbar {
  position: relative;
  margin-right: 40px;
}
.swiper-toolbar .slide-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-toolbar .slide-counter .slide-active {
  font-weight: 600;
  margin-right: 4px;
}
.swiper-toolbar .slide-counter .slide-total {
  margin-left: 4px;
}

.swiper-pagination-progressbar {
  background: rgba(22, 24, 25, 0.1);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
  background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  opacity: 0.9;
}

/*------------------------Forms Control------------------------*/
.form-section {
  position: relative;
  -webkit-box-shadow: 0px 23px 30px -9px rgba(142, 137, 145, 0.07);
          box-shadow: 0px 23px 30px -9px rgba(142, 137, 145, 0.07);
  margin: 150px 30px;
  padding: 110px 0;
  z-index: 2;
}
.form-section.site-form {
  background: url(../images/services/gradients/site/form.webp) no-repeat;
  background-size: cover;
}
.form-section.blockchain-form {
  background: url(../images/services/gradients/blockchain/form.webp) no-repeat;
  background-size: cover;
}
.form-section.seo-form {
  background: url(../images/services/gradients/seo/form.webp) no-repeat;
  background-size: cover;
}
.form-section.energy-form {
  background: url(../images/services/gradients/energy/form.webp) no-repeat;
  background-size: cover;
}
.form-section.main-form {
  background: url(../images/main/gradients/form.webp) no-repeat;
  background-size: cover;
}
.form-section .title-section {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.form-section .form-wrapper {
  display: grid;
  grid-template-columns: minmax(320px, 527px) 1fr;
  grid-gap: 107px;
}
.form-section .form-wrapper .title-anotation {
  font-size: 16px;
  margin-top: 20px;
}
.form-section .form-wrapper .btn {
  margin-top: 60px;
}
.form-section .form-wrapper .policy {
  opacity: 0.5;
  margin-top: 20px;
  line-height: 1.5;
}
.form-section .form-wrapper .policy a {
  text-decoration: underline;
}

.form-group {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.form-group:last-child {
  margin-bottom: 20px;
}
.form-group .label {
  position: absolute;
  top: 28px;
  left: 20px;
  font-size: 20px;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
  color: rgba(22, 24, 25, 0.5);
}
.form-group input,
.form-group textarea,
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  border: 0;
  background: #fff;
  border-radius: 5px;
  padding: 43px 20px 12px;
  height: 85px;
  font-size: 20px;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.form-group input:not(:-moz-placeholder-shown) + .label, .form-group textarea:not(:-moz-placeholder-shown) + .label, .form-group select:not(:-moz-placeholder-shown) + .label {
  color: rgba(22, 24, 25, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.form-group input:not(:-ms-input-placeholder) + .label, .form-group textarea:not(:-ms-input-placeholder) + .label, .form-group select:not(:-ms-input-placeholder) + .label {
  color: rgba(22, 24, 25, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.form-group input:not(:placeholder-shown) + .label,
.form-group textarea:not(:placeholder-shown) + .label,
.form-group select:not(:placeholder-shown) + .label {
  color: rgba(22, 24, 25, 0.5);
  -webkit-transform: translate3d(0, -12px, 0) scale(0.75);
          transform: translate3d(0, -12px, 0) scale(0.75);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
}
.form-group input:focus + .label,
.form-group textarea:focus + .label,
.form-group select:focus + .label {
  color: rgba(22, 24, 25, 0.5);
  -webkit-transform: translate3d(0, -12px, 0) scale(0.75);
          transform: translate3d(0, -12px, 0) scale(0.75);
}
.form-group textarea {
  height: 185px;
  resize: none;
}
.form-group .select::before {
  content: url(../images/menu/arrow.svg);
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/*------------------------Navbar------------------------*/
.navbar {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: transparent;
  -webkit-transition: top 0.3s, background 0.3s;
  -o-transition: top 0.3s, background 0.3s;
  transition: top 0.3s, background 0.3s;
  z-index: 99;
}
.navbar:after {
  content: "";
  position: absolute;
  width: 200%;
  left: 30px;
  bottom: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
  background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  opacity: 0.9;
}
.navbar .nav-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  height: 92px;
  position: relative;
  z-index: 3;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .nav-info .logo {
  background: url(../images/menu/logo.svg);
  width: 180px;
  height: 40px;
}
.navbar .nav-info .burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 60px 0 32px;
  cursor: pointer;
  width: 35px;
  height: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar .nav-info .burger div {
  height: 2px;
  background: #161819;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .nav-info .burger .line1 {
  width: 35px;
}
.navbar .nav-info .burger .line2 {
  width: 28px;
}
.navbar .nav-info .burger .line3 {
  width: 19px;
}
.navbar .nav-info .burger:hover div {
  width: 35px;
}
.navbar .nav-info .burger.toggle .line1 {
  width: 35px;
  -webkit-transform: rotate(-45deg) translate(-6px, 5px);
      -ms-transform: rotate(-45deg) translate(-6px, 5px);
          transform: rotate(-45deg) translate(-6px, 5px);
}
.navbar .nav-info .burger.toggle .line2 {
  opacity: 0;
}
.navbar .nav-info .burger.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-6px, -5px);
      -ms-transform: rotate(45deg) translate(-6px, -5px);
          transform: rotate(45deg) translate(-6px, -5px);
}
.navbar .nav-info .left-side,
.navbar .nav-info .right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.navbar .nav-info .left-side li,
.navbar .nav-info .right-side li {
  margin-right: 40px;
}
.navbar .nav-info .left-side li:last-child,
.navbar .nav-info .right-side li:last-child {
  margin-right: 0;
}
.navbar .nav-info .left-side li a,
.navbar .nav-info .right-side li a {
  font-weight: 600;
}
.navbar .nav-info .right-side .discuss a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .nav-info .right-side .discuss a img {
  margin-left: 20px;
}
.navbar .nav-info .topmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar .nav-info .topmenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .nav-info .dropdown {
  position: relative;
}
.navbar .nav-info .dropdown .droplink {
  margin-right: 16px;
}
.navbar .nav-info .dropdown .droplink:after {
  content: url(../images/menu/arrow.svg);
  position: absolute;
  top: -2px;
  right: 0;
  padding-left: 8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .nav-info .dropdown .dropmenu {
  position: absolute;
  margin-top: 15px;
  top: 100%;
  left: -15px;
  padding: 30px 15px;
  background: #161819;
  -webkit-box-shadow: 0px 23px 30px -9px rgba(142, 137, 145, 0.07);
          box-shadow: 0px 23px 30px -9px rgba(142, 137, 145, 0.07);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .nav-info .dropdown .dropmenu li {
  margin-bottom: 20px;
  margin-right: 0;
}
.navbar .nav-info .dropdown .dropmenu li:last-child {
  margin-bottom: 0;
}
.navbar .nav-info .dropdown .dropmenu li a {
  color: #ffffff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.8;
  font-weight: 400;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .nav-info .dropdown .dropmenu li a:hover {
  opacity: 1;
}
.navbar .nav-info .dropdown.active .droplink:after {
  top: 2px;
  padding-right: 8px;
  padding-left: 0;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.navbar .nav-info .dropdown.active .dropmenu {
  opacity: 1;
  visibility: visible;
}
.navbar .close-menu {
  display: none;
}
.navbar .full-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: url(../images/footer/orange-gradient.webp) no-repeat;
  background-size: cover;
  color: #fff;
  padding: 140px 30px 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar .full-menu .menu-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.navbar .full-menu .menu-box .menu-items li {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.navbar .full-menu .menu-box .menu-items li:last-child {
  margin-bottom: 0;
}
.navbar .full-menu .menu-box .menu-items li a {
  font-size: var(--font-64);
  color: #ffffff;
}
.navbar .full-menu .menu-box .menu-items li a .target {
  vertical-align: super;
  margin-left: 20px;
}
.navbar .full-menu .menu-box .menu-items li .fm-dropmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
.navbar .full-menu .menu-box .menu-items li .fm-dropmenu li {
  margin: 0 25px 12px 0;
}
.navbar .full-menu .menu-box .menu-items li .fm-dropmenu li a {
  font-size: 14px;
  opacity: 0.8;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .full-menu .menu-box .menu-items li .fm-dropmenu li a:hover {
  opacity: 1;
}
.navbar .full-menu .menu-footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 93px;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
}
.navbar .full-menu .menu-footer:after {
  content: "";
  position: absolute;
  width: 200%;
  left: 0;
  bottom: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
  background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  opacity: 0.9;
  bottom: inherit;
  top: 0;
}
.navbar .full-menu .menu-footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .full-menu .menu-footer .social li {
  margin-right: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.navbar .full-menu .menu-footer .social li:last-child {
  margin-right: 0;
}
.navbar .full-menu .menu-footer .social li a {
  opacity: 0.5;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.navbar .full-menu .menu-footer .social li a:hover {
  opacity: 1;
}
.navbar .full-menu .menu-footer .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .full-menu .menu-footer .contacts li {
  font-size: 18px;
  margin-right: 60px;
}
.navbar .full-menu .menu-footer .contacts li:last-child {
  margin-right: 0;
}
.navbar .full-menu .menu-footer .m-f-discuss {
  height: 100%;
  background: #fff;
  padding: 0 53px;
  margin-right: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .full-menu .menu-footer .m-f-discuss img {
  margin-left: 16px;
}
.navbar.onscroll {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
.navbar.onscroll .nav-info {
  height: 80px;
}
.navbar.onscroll::after {
  height: 0;
}
.navbar.onscroll .topmenu {
  display: none;
}
.navbar.active:after {
  content: "";
  position: absolute;
  width: 200%;
  left: 30px;
  bottom: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
  background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  opacity: 0.9;
}
.navbar.active .nav-info {
  height: 80px;
}
.navbar.active .logo {
  background: url(../images/menu/logo-white.svg);
}
.navbar.active .burger,
.navbar.active .topmenu,
.navbar.active .right-side {
  display: none;
}
.navbar.active .left-side {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar.active .close-menu {
  display: block;
  cursor: pointer;
}
.navbar.active .full-menu {
  visibility: visible;
  opacity: 1;
}

/*------------------------Speedbar------------------------*/
.speedbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 30px;
}
.speedbar li {
  opacity: 0.75;
}
.speedbar li:not(:last-child):after {
  content: url(../images/speedbar-arrow.svg);
  position: relative;
  margin: 0 11px;
}

/*------------------------Footer---------------------- */
.footer {
  position: relative;
  background: url(../images/footer/orange-gradient.webp) no-repeat;
  background-size: cover;
  color: #fff;
}
.footer.site-service-footer {
  background: url(../images/services/gradients/site/footer.webp) no-repeat;
  background-size: cover;
}
.footer.blockchain-service-footer {
  background: url(../images/services/gradients/blockchain/footer.webp) no-repeat;
  background-size: cover;
}
.footer.seo-service-footer {
  background: url(../images/services/gradients/seo/footer.webp) no-repeat;
  background-size: cover;
}
.footer.energy-service-footer {
  background: url(../images/services/gradients/energy/footer.webp) no-repeat;
  background-size: cover;
}
.footer .footer-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  padding: 150px 0 90px;
}
.footer .footer-wrapper:after {
  content: "";
  position: absolute;
  width: 200%;
  left: 0;
  bottom: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
  background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
  opacity: 0.9;
}
.footer .footer-wrapper .footer-col.left-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .footer-wrapper .footer-col.left-col .discuss a {
  color: #fff;
  display: block;
  font-weight: 500;
  font-size: var(--font-76);
  text-transform: uppercase;
}
.footer .footer-wrapper .footer-col.left-col .discuss a img {
  vertical-align: top;
  margin: 24px 0 0 12px;
}
.footer .footer-wrapper .footer-col.left-col .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-wrapper .footer-col.left-col .social li {
  margin-right: 35px;
}
.footer .footer-wrapper .footer-col.left-col .social li a {
  opacity: 0.5;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.footer .footer-wrapper .footer-col.left-col .social li a:hover {
  opacity: 1;
}
.footer .footer-wrapper .footer-col .footer-title {
  font-size: var(--font-32);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.footer .footer-wrapper .footer-col .footer-info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.footer .footer-wrapper .footer-col .footer-info .item:last-child {
  margin-bottom: 0;
}
.footer .footer-wrapper .footer-col .footer-info .item .name {
  width: 85px;
  margin-right: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 14px 0;
}
.footer .footer-menu .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .footer-menu .menu-list li {
  margin: 6px 40px 6px 0;
}
.footer .footer-menu .menu-list li:last-child {
  margin-right: 0;
}
.footer .footer-menu .menu-list li a {
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.footer .footer-menu .menu-list li a:hover {
  opacity: 1;
}
.footer .footer-menu .menu-list li.dropdown {
  position: relative;
}
.footer .footer-menu .menu-list li.dropdown .droplink {
  margin-right: 16px;
  display: block;
}
.footer .footer-menu .menu-list li.dropdown .droplink:after {
  content: url(../images/menu/arrow-white.svg);
  position: absolute;
  top: -2px;
  right: 0;
  padding-left: 8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.footer .footer-menu .menu-list li.dropdown .dropmenu {
  position: absolute;
  margin-bottom: 6px;
  bottom: 100%;
  right: -10px;
  padding: 30px 15px;
  background: #161819;
  -webkit-box-shadow: 0px 23px 30px -9px rgba(142, 137, 145, 0.07);
          box-shadow: 0px 23px 30px -9px rgba(142, 137, 145, 0.07);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.footer .footer-menu .menu-list li.dropdown .dropmenu li {
  margin-bottom: 20px;
  margin-right: 0;
}
.footer .footer-menu .menu-list li.dropdown .dropmenu li:last-child {
  margin-bottom: 0;
}
.footer .footer-menu .menu-list li.dropdown .dropmenu li a {
  color: #ffffff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.8;
  font-weight: 400;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.footer .footer-menu .menu-list li.dropdown .dropmenu li a:hover {
  opacity: 1;
}
.footer .footer-menu .menu-list li.dropdown.active .droplink:after {
  top: 2px;
  padding-right: 8px;
  padding-left: 0;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.footer .footer-menu .menu-list li.dropdown.active .dropmenu {
  opacity: 1;
  visibility: visible;
}

/*------------------------Copyright------------------------*/
.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
  text-transform: uppercase;
  padding: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.copyright .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.copyright .info .logo {
  margin-right: 40px;
}
.copyright .design a {
  border-bottom: 1px solid rgba(22, 24, 25, 0.5);
}

/*------------------------Adaptive------------------------*/
@media (max-width: 1200px) {
  .navbar .full-menu .menu-footer .contacts li {
    margin-right: 25px;
  }

  .navbar .full-menu .menu-footer .m-f-discuss {
    padding: 0 23px;
  }

  .form-section .form-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
  }
}
@media (max-width: 992px) {
  navbar .full-menu {
    padding: 140px 15px 0;
  }

  .navbar .nav-info .topmenu {
    display: none;
  }

  .navbar .full-menu .menu-box {
    grid-template-columns: 1fr;
    grid-gap: 0;
    overflow-x: auto;
    margin-bottom: 140px;
  }
  .navbar .full-menu .menu-box::-webkit-scrollbar {
    width: 4px;
  }
  .navbar .full-menu .menu-box::-webkit-scrollbar-track {
    background: rgba(22, 24, 25, 0.1);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
  }
  .navbar .full-menu .menu-box::-webkit-scrollbar-thumb {
    background-color: #161819;
  }

  .navbar .full-menu .menu-box .menu-items li {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

  .navbar .full-menu .menu-box .menu-items li a {
    font-size: 44px;
  }

  .navbar .full-menu .menu-footer {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 30px 0;
    height: auto;
  }

  .navbar .full-menu .menu-footer .m-f-discuss {
    border-radius: 5px;
    position: absolute;
    top: -84px;
    width: 100%;
    height: 64px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .navbar .full-menu .menu-footer .social {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .navbar .full-menu .menu-footer .contacts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .navbar .full-menu .menu-footer .contacts .mail {
    font-size: 16px;
    width: 100%;
    text-transform: initial;
    margin-bottom: 10px;
  }

  .container {
    padding: 0 15px;
  }

  .footer .footer-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 61px 0;
  }

  .footer .footer-wrapper .footer-col.left-col {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 40px;
  }
  .footer .footer-wrapper .footer-col.left-col:after {
    content: "";
    position: absolute;
    width: 200%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
    background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
    background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
    opacity: 0.9;
  }

  .footer .footer-wrapper .footer-col.left-col .social {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer .footer-wrapper .footer-col.left-col .social li {
    margin-right: 0;
    margin-bottom: 32px;
  }

  .copyright {
    font-size: 12px;
  }

  .form-section {
    padding: 60px 0;
    margin: 150px 15px;
  }
}
@media (max-width: 768px) {
  .navbar .nav-info .logo {
    width: 45px;
  }

  .footer .footer-wrapper .footer-col.left-col {
    grid-column-end: 1;
    grid-template-columns: 1fr;
  }

  .footer .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer .footer-wrapper::after {
    height: 0;
  }

  .footer .footer-wrapper .footer-col {
    position: relative;
    padding-bottom: 30px;
  }
  .footer .footer-wrapper .footer-col:after {
    content: "";
    position: absolute;
    width: 200%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, color-stop(0.01%, #dc9192), color-stop(54.92%, #ad909d), color-stop(100.64%, #eec4a4));
    background: -o-linear-gradient(right, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
    background: linear-gradient(270deg, #dc9192 0.01%, #ad909d 54.92%, #eec4a4 100.64%);
    opacity: 0.9;
  }
  .footer .footer-wrapper .footer-col:last-child:after {
    height: 0;
  }

  .footer .footer-wrapper .footer-col.left-col .social {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 60px;
  }

  .footer .footer-wrapper .footer-col.left-col .social li {
    margin-right: 33px;
    margin-bottom: 0;
  }
}
@media (max-width: 550px) {
  .navbar .nav-info {
    padding: 0 10px;
  }

  .navbar:after {
    left: 10px;
  }

  .navbar .nav-info .right-side .discuss {
    display: none;
  }

  .navbar .nav-info .right-side li {
    margin-right: 20px;
  }

  .navbar .full-menu .menu-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .navbar .full-menu .menu-footer .social {
    margin-top: 30px;
  }

  .container {
    padding: 0 10px;
  }

  .footer .footer-menu {
    display: none;
  }

  .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 30px 10px;
  }

  .copyright .info {
    display: block;
  }

  .copyright .text {
    padding: 20px 0 10px;
  }

  .form-section {
    margin: 80px 0;
  }
  .form-section .form-wrapper {
    grid-template-columns: 1fr;
  }
}