body {
  font-family: "Inter", sans-serif;
  background: #0A0909;
  color: #fff;
}

/* custom scrollbar */
body::-webkit-scrollbar {
  width: 0.2rem;
  height: 0.2rem;
}

body::-webkit-scrollbar-track {
  background-color: #DEDEDE;
}

body::-webkit-scrollbar-thumb {
  background-color: #000000;
}

.header {
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.5px);
  -webkit-backdrop-filter: blur(11.5px);
  padding: 18px 15px 18px 25px;
}

@media screen and (min-width: 768px) {
  .header {
    padding: 18px 130px;
  }
}

.hero-b2b {
  background: url('img/bg-top-image.png');
}

.hero-about {
  background: url('img/hero-aboutus.png');
}

.hero-contact {
  background: url('img/hero-contact-mobile.png');
}

@media screen and (min-width: 768px) {
  .hero-contact {
    background: url('img/hero-contact-mobile.png');
  }
}

.hero-maria {
  background: url('img/hero-maria.png');
}

.hero-services {
  background: url('img/hero-services.png');
}

.hero-c2t {
  background: url('img/c2t/bg-c2t.png');
}

.hero-c2v {
  background: url('img/c2v/bg-c2v.png');
}

.hero-c2c {
  background: url('img/c2c/bg-c2c.png');
}

.hero-careers {
  background: url('img/careers/bg-careers.png');
}

.explore-section {
  background: url('img/banner-bg.png');
}

.access {
  top: -30px;
}

.spikes {
  background: url('img/spikes.png');
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: none;
  }
}

.animate-spin-reverse {
  animation: spin-reverse 2s linear infinite;
}

/* Menu */

.menu-action {
  letter-spacing: 0.535em;
  padding: 8px;
  cursor: pointer;
}

.menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1300;
  max-width: 100vw;
  /* opacity: 0; */
  transform: translateX( 110% );
  transition: transform 0.5s 0s ease;
}
.menu:before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(238, 238, 238, 0.05); */
  background: rgba(0,0,0, 0.35);
  backdrop-filter: blur(44px);
}
.menu.opened {
  opacity: 1;
  transform: translateX(0);
}
.menu .menu-header {
  width: 100%;
  height: 193px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px#838383;
}
.menu .logo {
  margin-left: 125px;
  background: url('img/logo.svg') no-repeat center center;
  background-size: 170px auto;
  width: 170px;
  height: 26px;
  display: inline-block;
  cursor: pointer;
}
.menu .menu-close {
  font-family: 'Inter';
  font-size: 30px;
  /* position: absolute;
  right: 30px;
  top: 30px; */
  margin-right: 140px;
  color: #fff;
  cursor: pointer;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.menu .logo {
  margin-left: 124px;
  background: url('img/logo.svg') no-repeat center center;
  background-size: 300px auto;
  width: 300px;
  height: 45px;
  display: inline-block;
  cursor: pointer;
}
.menu .menu-contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  flex-grow: 1;
}
.menu-contents .left {
  width: calc( 50% - 1px );
  height: 100%;
  border-right: solid 1px #838383;
}
.menu-contents .left .heading {
  height: 67.579%;
  padding: 111px 0 0 135px;
  box-sizing: border-box;
}
.left .heading h2 {
  display: block;
  width: 360px;
  color: #fff;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  margin-bottom: 18px;
}
.left .heading h2 span {
  display: block;
  color: #1853E0;
}
.left .heading .arr {
  width: 33px;
  height: 37px;
  background-repeat: no-repeat;
  background-image: url('img/arrow.svg');
  background-size: 33px auto;
  background-position: center center;
}

.left .links {
  display: flex;
  justify-content: space-between;
}
.left .links .links-left {
  padding-left: 135px;
}
.left .links .links-right {
  padding-right: 80px;
}
.left .links a {
  display: inline-block;
  margin: 0 15px;
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.left .links a:first-of-type {
  margin-left: 0;
}
.left .links .lang-switcher, .links-mobile .links-right .lang-switcher {
  display: inline-block;
  width: 40px;
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.left .links .lang-switcher .chevron, .links-mobile .links-right .lang-switcher .chevron {
  padding-left: 4px;
  display: inline-block;
}
.left .links .lang-switcher .chevron svg, .links-mobile .links-right .lang-switcher .chevron svg {
  width: 8px;
}



.menu-contents .right {
  width: 50%;
  height: 100%;
}
.menu-contents .right a {
  position: relative;
  display: block;
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  margin: 9px 0;
}
.menu-contents .right a>span {
  display: inline-block;
  transform: translateX(0);
  transition: 0.5s ease 0s;
}
.menu-contents .right a:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  background-repeat: no-repeat;
  background-image: url('img/arrow.svg');
  background-size: 22px auto;
  background-position: center center;
  width: 22px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.menu-contents .right a:hover:after {
  opacity: 1;
}
.menu-contents .right a:hover>span {
  transform: translateX(34px);
}

.menu-contents .right .section1 {
  padding: 30px 120px;
  width: 100%;
  height: 42.374%;
  border-bottom: solid 1px #838383;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  box-sizing: border-box;
}
.menu-contents .right .section2 {
  padding: 30px 120px;
  width: 100%;
  height: 25.205%;
  border-bottom: solid 1px #838383;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  box-sizing: border-box;
}
.menu-contents .right .section3 {
  padding: 30px 120px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
}
.links-mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  .menu {
    left: 0;
    bottom: 0;
  }
  .menu:before {
    width: 100vw;
    height: 100vh;
    -webkit-backdrop-filter: blur(14px);
  }
  .menu .menu-header {
    height: 77px;
  }
  .menu .logo {
    margin-left: 24px;
    background-size: 108px auto;
    width: 108px;
    height: 17px;
  }
  .menu .menu-close {
    margin-right: 6px;
    width: 48px;
    height: 48px;
  }

  .menu-contents .left .heading {
    padding: 24px 0 0 24px;
    height: 140px;
    border-bottom: solid 1px#838383;
  }
  .menu-contents .left {
    border-right: none;
  }
  .menu-contents .right {
    flex: 1;
  }
  .left .heading h2 {
    width: auto;
    margin: 0;
    font-size: 24px;
    line-height: normal;
  }
  .left .heading h2 span {
    display: block;
  }
  .left .links {
    display: none;
  }
  .menu-contents .right .section1,
  .menu-contents .right .section2,
  .menu-contents .right .section3 {
    padding: 6px 24px;
    height: auto;
  }
  .menu-contents .right .section3 {
    border-bottom: solid 1px #838383;
  }
  
  .menu-contents .right a {
    margin: 8px 0;
    font-size: 18px;
    line-height: normal;
  }
  
  .menu .menu-contents {
    flex-direction: column;
  }
  .menu .menu-contents .left {
    width: 100%;
    height: auto;
  }
  .menu .menu-contents .right {
    width: 100%;
    height: auto;
  }
  .menu .left .heading h2 {
    margin-bottom: 12px;
  }
  .left .heading .arr {
    width: 20px;
    height: 23px;
    background-size: 20px auto;
  }

  .links-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .links-mobile .links-left {
    border-bottom: solid 1px #838383;
  }
  .links-mobile .links-left, .links-mobile .links-right {
    width: 100%;
    padding: 10px 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  .links-mobile .links-left a, .links-mobile .links-right a {
    font-size: 14px;
    line-height: 24px;
  }
  .links-mobile .links-right .lang-switcher {
    font-size: 14px;
    line-height: 24px;
  }
}

.market-benchmark-second-image {
  margin-top: 140px;
  z-index: 10;
}

.market-benchmark-first-image {
  position: absolute;
  right: -130px;
}

.market-benchmark-average-price {
  margin-left: 26px;
}

.hero-market-data {
  background: url('img/market-data-hero.svg');
}

@media screen and (min-width: 1024px) {
  .market-benchmark-second-image {
    margin-left: -67px;
    margin-top: 110px;
  }
  .market-benchmark-first-image {
    position: static;
  }
}