:root {
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #4f4f4f;

  --color-twitter: #1ea9f9;
  --color-telegram: #0a8dd8;
  --color-youtube: #ff0000;
  --color-instagram: linear-gradient(90deg, #4503ff 0%, #bd00ff 100%);

  --color-messageError: #ffc4c4;
  --color-messageSuccess: #00fff5;
  --color-fieldError: #eb5757;

  --font-title: "roc-grotesk", sans-serif;
  --font-text: "Roboto", sans-serif;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--font-text);
  letter-spacing: 0;
  color: var(--color-black);
  background: var(--color-white);
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 500;
}

h1 {
  font-size: 54px;
  line-height: 54px;
}

h2 {
  font-size: 64px;
  line-height: 64px;
}

h3 {
  font-size: 42px;
  line-height: 44px;
}

h4 {
  font-size: 24px;
  line-height: 34px;
}
.underlined {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.underlined span {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 24px;
  width: 100%;
  background: linear-gradient(90deg, #4503ff 0%, #bd00ff 100%);
  z-index: -1;
  /*animation-name: scale-up-hor-left;*/
  /*animation-duration: 4s;*/
}

/*.scale-up-hor-left {*/
/*	animation: scale-up-hor-left 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;*/
/*}*/

/*@keyframes scale-up-hor-left {*/
/*  10% {*/
/*	transform: scaleX(0.1);*/
/*    transform-origin: 0% 0%;*/
/*  }*/
/*  100% {*/
/*    transform: scaleX(1);*/
/*    transform-origin: 0% 0%;*/
/*  }*/
/*}*/

p {
  font-size: 16px;
  line-height: 22px;
}

.large-text {
  font-size: 24px;
  line-height: 30px;
}

.text-large {
  font-size: 24px;
  line-height: 24px;
}

.text-small {
  font-size: 16px;
  line-height: 20px;
}

.text-upper {
  text-transform: uppercase;
}

.glow {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.main-font {
  font-family: var(--font-title);
}

.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul {
  padding: 0;
  margin: 0;
}

.p-relative {
  position: relative;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.show-mobile {
  display: none;
}
.d-none {
  display: none;
}

.f-align-center {
  align-items: center;
}

.f-justify-center {
  justify-content: center;
}

.f-align-start {
  align-items: flex-start;
}

.f-wrap {
  flex-wrap: wrap;
}

.f-dir-col {
  flex-direction: column;
}

.f-col {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}

.f-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-100 {
  width: 100%;
}

.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-0 {
  margin-left: 0;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-0 {
  margin-right: 0;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-100 {
  margin-right: 100px;
}

section {
  position: relative;
  overflow: hidden;
}

.container {
  margin: 0 auto;
  width: 80%;
  max-width: 90%;
  position: relative;
}

.container-wide {
  width: 90%;
  margin-left: 5%;
}

.container-small {
  width: 1200px;
}

.container-tiny {
  width: 700px;
}

.btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  padding: 15px 50px;
  color: var(--color-white);
  font-family: var(--font-title);
  z-index: 1;
}

.btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #4503ff 0%, #bd00ff 100%);
  transition: 0.25s ease-in-out;
  z-index: -1;
}
.btn:hover:after {
  height: 50%;
}

.btn img {
  position: relative;
  height: 18px;
  top: 3px;
  margin-left: 5px;
}

.btn-round {
  top: 14px;
  display: inline-block;
  border: 2px solid var(--color-grey);
  height: 40px;
  border-radius: 40px;
  line-height: 44px;
  padding: 0 25px;
  transition: all 0.4s;
  overflow: hidden;
  z-index: 1;
}
.btn-round:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(90deg, #4503ff 0%, #bd00ff 100%);
  left: -100%;
  transition: all 0.4s;
  opacity: 0;
  z-index: -1;
}
.btn-round:hover:after {
  left: 0;
  opacity: 1;
}

.btn-round:hover {
  opacity: 1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-white);
  padding: 10px 20px;
  background: none;
  color: var(--color-white);
  font-size: 18px;
  font-family: var(--font-title);
  outline: none;
  box-sizing: border-box;
}

textarea {
  margin-bottom: 10px;
}

input {
  height: 50px;
  margin-bottom: 20px;
}

textarea {
  height: 100px;
}

button[type="submit"] {
  width: 100%;
  border: none;
  background: linear-gradient(90deg, #4503ff 0%, #bd00ff 100%);
  cursor: pointer;
}

.form-message {
  height: 20px;
  margin-top: 15px;
}

.message-error {
  color: var(--color-messageError);
}

.message-success {
  color: var(--color-messageSuccess);
}

form .field.field-error {
  border-color: var(--color-fieldError);
}

form button .icon {
  display: none;
}

form.form-loading button .icon {
  display: inline-block;
}

form.form-loading button .text {
  display: none;
}

.loading {
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 99999;
}

.icon {
  border-radius: 40px;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
* html .clearfix {
  zoom: 1;
} /* IE6 */
*:first-child + html .clearfix {
  zoom: 1;
} /* IE7 */

/***********************
        HEADER
***********************/
header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
}

header .logo {
  float: left;
}

header .logo img {
  width: 180px;
}

header .nav {
  list-style: none;
  float: right;
  font-weight: 500;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

header .btn-round {
  top: 0 !important;
}

header .nav li {
  display: inline-block;
  margin-left: 35px;
  font-size: 16px;
  line-height: 20px;
}

header .nav img {
  height: 22px !important;
}

header .nav li a {
  color: var(--color-white);
}

header .nav li a {
  cursor: pointer;
  font-size: 18px;
  position: relative;
  white-space: nowrap;
}
.hvr-overline-reveal:before {
  background: linear-gradient(90deg, #4503ff 0%, #bd00ff 100%);
}
/*header .nav li a:not(.btn-round)::before,*/
/*header .nav li a:not(.btn-round)::after {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 1px;*/
/*    background: currentColor;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    pointer-events: none;*/
/*}*/

/*header .nav li a::before {*/
/*    content: '';*/
/*    transform-origin: 100% 50%;*/
/*    transform: scale3d(0, 1, 1);*/
/*    transition: transform 0.3s;*/
/*}*/

/*header .nav li a:hover::before {*/
/*    transform-origin: 0 50%;*/
/*    transform: scale3d(1, 1, 1);*/
/*}*/

.scroll-btn {
  position: fixed;
  bottom: 26px;
  left: 5%;
  height: 80px;
  width: 80px;
  border-radius: 80px;
  background: linear-gradient(90deg, #4503ff 0%, #bd00ff 100%);
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
  z-index: 9;
  text-align: center;
}
.scroll-btn.scroll-top {
  transform: rotate(180deg);
}
.scroll-btn img {
  position: relative;
  top: 24px;
}

.scroll-btn:hover {
  box-shadow: 0 0 24px #4314ff;
}

.nav-icon {
  display: none;
  width: 40px;
  height: 45px;
  position: absolute;
  right: 15px;
  top: 40px;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 9;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 0;
}

.nav-icon span:nth-child(2) {
  top: 12px;
}

.nav-icon span:nth-child(3) {
  top: 24px;
}

.nav-icon.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

.nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-icon.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

.gradient {
  display: inline-block;
  background: linear-gradient(to right, #4503ff, #bd00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/***********************
    SECTION HERO
***********************/

section.hero {
  display: flex;
  align-items: center;
  background: #000000;
}

section.hero h1 {
  text-shadow: 0 0 25px #000000;
}

.hero .hero-content {
  position: absolute;
  z-index: 1;
  width: 70%;
}

.hero-video {
  position: absolute;
  width: 100%;
}

.hero-video::before,
.hero-video::after {
  content: "";
  height: 100px;
  width: 100%;
  position: absolute;
  display: block;
}

.hero-video::before {
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.hero-video::after {
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

/***********************
    SECTION OFFER
***********************/

.offer-image {
  position: relative;
  left: -30vw;
  height: 50vw;
}

.offer ul li {
  list-style: none;
  margin-bottom: 50px;
}

.offer ul li h4 {
  position: relative;
}

.offer ul li h4 img {
  position: absolute;
  top: -30px;
  left: -50px;
  z-index: -1;
}

.offer ul li p {
  width: 90%;
  padding-left: 20px;
}

/***********************
  SECTION DIFFERENT
***********************/

.different {
  background: url("../images/difference-bg.png") no-repeat center;
  background-size: cover;
}
.different img {
  width: 100%;
}
.different p {
  width: 80%;
}

.outline-text {
  font-size: 200px;
  color: #04040400;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2e2e2e;
}

.top-text {
  position: absolute;
  left: 0;
  top: 0;
}

.bottom-text {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.different .w-50 {
  z-index: 1;
}

/***********************
   SECTION GRAPHICS
***********************/
.graphics img {
  max-width: 100%;
}

.graphics-item {
  background: #000000;
  width: 70%;
  height: 100vh;
}

/***********************
  SECTION INVESTMENTS
***********************/
.investments {
  background: url("../images/our-investments-bg.png") no-repeat center;
  background-size: cover;
}

.investments li {
  list-style: none;
  width: 14.2%;
  text-align: center;
  margin-bottom: 10px;
}
.investments li span {
  display: block;
}

.investments li img {
  width: 70%;
  max-width: 70px;
}

/***********************
    SECTION CONTACT
***********************/
.contact {
  position: relative;
  background: url("../images/footer-bg.png") center no-repeat;
  background-size: cover;
}

.contact .w-50 {
  z-index: 1;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 0;
}

.footer-logo {
  margin-left: 100px;
}

.footer-social {
  text-align: center;
}

.footer-social a {
  margin: 0 10px;
}

.footer-social a img {
  height: 26px;
}

.footer-copyright {
  text-align: right;
}

/***********************
     PAGINATION
***********************/

.onepage-pagination {
  display: none;
  transform: translate(-50%, -50%);
}
.onepage-pagination li a {
  height: 25px;
}

.onepage-pagination li a:before {
  border-radius: 0;
  width: 3px;
  height: 35px;
  background-color: green;
}
.onepage-pagination li a.active:before {
  width: 3px;
  height: 35px;
  background-color: red;
  border: none;
  left: inherit;
  margin-top: 0;
}
