:root {
  --main-dark-color: #194f83;
  --warm-color: #ff7e1a;
  --lighter-color: #26ace2;
  --gray-color: #7f827a;
  --text-color: #222222dc;
  --text-gray-color: #b6b6b6;
  --border-color: #d9d9d9;
}

/*Fonts*/
@font-face {
  font-family: 'ewheel';
  src: url('../fonts/ewheel.eot');
  src: url('../fonts/ewheel.eot') format('embedded-opentype'),
    url('../fonts/ewheel.ttf') format('truetype'),
    url('../fonts/ewheel.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'ewheel';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: '\e900';
}

.icon-linkedin:before {
  content: '\e901';
}

.icon-telegram:before {
  content: '\e902';
}

.icon-email:before {
  content: '\e903';
  color: #194f83;
}

.icon-phone-call1:before {
  content: '\e904';
}

.icon-phone-call:before {
  content: '\e905';
  color: #194f83;
}

.icon-earth:before {
  content: '\e906';
  color: #194f83;
}

/* prevent vertical scroll bar glitch */
html {
  overflow-y: scroll;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: normal;
  text-align: left;
  position: relative;
  padding: 0;
  padding-top: 84px;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.bg-gradient {
  background: #fafafa;
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, #fafafa),
    color-stop(100%, #d5ebfa)
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fafafa),
    to(#d5ebfa)
  );
  background: linear-gradient(to right, #fafafa 0%, #d5ebfa 100%);
}

.page-one {
  padding-bottom: 80px;
}

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

.o-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.o-column {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box {
  margin-top: 100px;
}

.header-container {
  z-index: 2;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: white;
  min-height: 84px;
  z-index: 10;
}

.header__menu {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1em;
  margin-bottom: 0;
  /* padding: 30px 0; */
  font-weight: 510;
}

a {
  color: var(--text-gray-color);
  text-decoration: none;
}

.item {
  padding-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.item.active a {
  color: var(--main-dark-color);
}

.item-blue a {
  font-weight: 510;
  font-size: 1em;
  color: var(--main-dark-color);
  border: 2px solid var(--main-dark-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.item-logo a {
  max-width: 100px;
}

.logo {
  max-width: 320px;
  margin-top: 70px;
}

.description-text {
  direction: rtl;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  padding: 20px;
  line-height: 1.9em;
}

.o-btn {
  border: 2px solid var(--lighter-color);
  color: var(--lighter-color);
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 10px;
  margin: 45px 15px;
}

.o-btn:hover,
.o-btn--blue:focus {
  background: transparent;
  color: var(--main-dark-color);
  outline: 0;
}

.style-btn__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-style {
  border-color: var(--main-dark-color);
  color: #fff;
  -webkit-box-shadow: 0 0 20px 20px var(--main-dark-color) inset,
    0 0 0 0 var(--main-dark-color);
  box-shadow: 0 0 20px 20px var(--main-dark-color) inset,
    0 0 0 0 var(--main-dark-color);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  margin-bottom: 0;
  margin-top: 0;
}

.btn-style:hover {
  -webkit-box-shadow: 0 0 10px 0 var(--main-dark-color) inset,
    0 0 10px 4px var(--main-dark-color);
  box-shadow: 0 0 10px 0 var(--main-dark-color) inset,
    0 0 10px 4px var(--main-dark-color);
}

.blockchain-video__container {
  position: relative;
}

.blockchain-video__container video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner-img {
  padding: 20px;
}

.h2-title {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.focuse__item {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.focuse__item .item-text {
  color: var(--text-color);
  font-size: 0.8em;
  text-align: center;
  margin-top: 9px;
}

.focuse {
  margin: auto;
}

.button {
  position: relative;
  color: #1670f0;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 510;
  padding: 10px 15px;
  /* // letter-spacing: 2px; */
  max-height: 50px;
  overflow: hidden;
}

.button:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.button__line:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#194f83),
    to(#1779ff)
  );
  background: linear-gradient(to right, #194f83, #1779ff);
  -webkit-animation: animate1 1.5s linear infinite;
  animation: animate1 1.5s linear infinite;
}

@-webkit-keyframes animate1 {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes animate1 {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.button__line:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#194f83),
    to(#1779ff)
  );
  background: linear-gradient(to bottom, #194f83, #1779ff);
  -webkit-animation: animate2 1.5s linear infinite;
  animation: animate2 1.5s linear infinite;
}

@-webkit-keyframes animate2 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes animate2 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.button__line:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#194f83),
    to(#1779ff)
  );
  background: linear-gradient(to left, #194f83, #1779ff);
  -webkit-animation: animate3 1.5s linear infinite;
  animation: animate3 1.5s linear infinite;
}

@-webkit-keyframes animate3 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animate3 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.button__line:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#194f83),
    to(#1779ff)
  );
  background: linear-gradient(to right, #194f83, #1779ff);
  -webkit-animation: animate4 1.5s linear infinite;
  animation: animate4 1.5s linear infinite;
}

@-webkit-keyframes animate4 {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes animate4 {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.header__button span {
  position: absolute;
  background-color: #194f83;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: npne;
  border-radius: 50%;
  -webkit-animation: ripples 1s linear infinite;
  animation: ripples 1s linear infinite;
}

@-webkit-keyframes ripples {
  0% {
    width: 0;
    height: 0;
    opacity: 0.2;
  }
  100% {
    width: 600px;
    height: 300px;
    opacity: 0.2;
  }
}

@keyframes ripples {
  0% {
    width: 0;
    height: 0;
    opacity: 0.2;
  }
  100% {
    width: 600px;
    height: 300px;
    opacity: 0.2;
  }
}

#title {
  height: 100%;
  width: 100%;
}

.coin {
  padding: 40px 0;
  text-align: center;
}

.z {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 500px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#fff),
    color-stop(40%, #fff),
    to(#d5ebfa)
  );
  background: linear-gradient(to left, #fff 0%, #fff 40%, #d5ebfa 100%);
}

.team {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#d5ebfa),
    color-stop(60%, #fff),
    to(#fff)
  );
  background: linear-gradient(to left, #d5ebfa 0%, #fff 60%, #fff 100%);
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.coin__text {
  color: #313436;
  font-size: 1em;
  margin-bottom: 45px;
  line-height: 1.8em;
}

.map {
  padding: 40px 0;
  text-align: center;
  margin-top: 40px;
}

.map__img {
  padding: 20px 0;
}

.team {
  background-repeat: no-repeat;
}

.team__img {
  border: 3px solid var(--lighter-color);
  border-radius: 50%;
  max-width: 180px;
  max-height: 180px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.team__img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.team__lable {
  color: var(--main-dark-color);
  font-size: 1em;
  text-align: center;
  padding: 20px 10p;
  margin-top: 12px;
}

.team__lable:hover {
  cursor: pointer;
}

.team__lable:hover .team__img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

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

.media-text {
  font-size: 0.8em;
  color: var(--text-gray-colorr);
  text-align: center;
  line-height: 5px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.media-text:hover {
  color: var(--text-color);
}

.media-text-title {
  font-size: 1em;
  color: var(--text-color);
  text-align: center;
  padding-top: 10px;
  font-weight: bold;
  margin-top: 5px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.media-text-title:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  color: var(--main-dark-color);
}

.media-text-title:hover .media-text {
  color: var(--text-color);
}

footer {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

footer ul {
  list-style: none;
}

.footer-logo {
  padding: 30px;
}

.logo-text {
  text-align: center;
  font-size: 1.3em;
  color: var(--gray-color);
  font-weight: bold;
}

.social-media {
  text-align: center;
  font-size: 1.5em;
}

.social-media a {
  padding-right: 8px;
  color: var(--main-dark-color);
}

.social-media a:hover {
  color: var(--warm-color);
}

.contact-us {
  padding: 15px 30px;
  line-height: 55px;
}

.contact-us li {
  font-size: 1em;
  color: var(--text-color);
}

.contact-us li i {
  font-size: 1.3em;
  margin-right: 5px;
}

.footer_title {
  color: var(--main-dark-color);
  text-decoration: underline;
  font-size: 1.18em;
  font-weight: bold;
}

.copy-right {
  background-color: var(--main-dark-color);
  color: white;
  font-size: 0.8em;
  text-align: center;
  padding: 5px;
}

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

.header-container {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.21);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.21);
}

#espritmenu * {
  color: var(--text-color) !important;
}

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

@media (max-width: 991.98px) {
  .box {
    margin-top: 60px;
  }
  .team {
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(#d5ebfa),
      color-stop(60%, #fff),
      to(#fff)
    );
    background: linear-gradient(to left, #d5ebfa 0%, #fff 60%, #fff 100%);
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .z {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #espritmenu ul {
    display: none;
  }
  .header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 84px !important;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#fafafa),
      to(#d5ebfa)
    ) !important;
    background: linear-gradient(to right, #fafafa 0%, #d5ebfa 100%) !important;
  }
  .blockchain-video__container {
    margin-bottom: 30px;
    min-height: 300px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .coin__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .z {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 500px;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#fff),
      color-stop(40%, #fff),
      to(#d5ebfa)
    );
    background: linear-gradient(to bottom, #fff 0%, #fff 40%, #d5ebfa 100%);
  }
}

@media (max-width: 767.98px) {
  .box {
    margin-top: 30px;
  }
  .team {
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(#d5ebfa),
      color-stop(60%, #fff),
      to(#fff)
    );
    background: linear-gradient(to left, #d5ebfa 0%, #fff 60%, #fff 100%);
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .z {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header__menu {
    padding: 0;
    display: none;
  }
  .r-top-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .r-top-order .box-content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: -80px;
  }
  .r-top-order .banner-img {
    width: 80%;
  }
}
/*# sourceMappingURL=style.css.map */
