/*
Theme Name: Orion Protocol
Author: MRZ Design
Author URI: www.mrz.design
Requires at least: 5.9
Tested up to: 5.9
Requires PHP: 5.6
Version: 1.0.0
*/

@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/GilroyMedium/font.woff2") format("woff2"),
    url("../fonts/GilroyMedium/font.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../fonts/GilroySemiBold/font.woff2") format("woff2"),
    url("../fonts/GilroySemiBold/font.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../fonts/GilroyExtraBold/font.woff2") format("woff2"),
    url("../fonts/GilroyExtraBold/font.woff") format("woff");
}

/* ==========================================================================
   General Styles
   ========================================================================== */

/* Color Palette */

:root {
  --color-solar-pink-3: #f930ed;
  --color-purple-star-3: #3b00bc;
  --color-galaxy-grey-3: #221e3f;
  --color-galaxy-grey-1: #6d6f96;
  --color-white: #ffffff;

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

  --color-messageError: #fe079c;
  --color-messageSuccess: #58db75;
  --color-fieldError: #eb5757;

  --font-title: "Gilroy-Extrabold", sans-serif;
  --font-semi: "Gilroy-SemiBold", sans-serif;
  --font-text: "Gilroy-Medium", sans-serif;
}

/* Body */

html,
body {
  padding: 0;
  margin: 0;
  font-family: var(--font-text);
  color: var(--color-galaxy-grey-3);
  background: var(--color-white);
}

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

/* Typography styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 3.8vw;
  line-height: 7vw;
  margin-bottom: 20px;
}

h1 strong,
h2 strong,
h3 strong {
  font-weight: 900;
  background: var(--gradient, linear-gradient(90deg, #f930ed 0%, #3b00bc 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 3.5vw;
  line-height: 5.5vw;
}

h3 {
  font-size: 3.3vw;
  line-height: 4.3vw;
}

h4 {
  font-size: 24px;
  line-height: 28px;
}

h5 {
  font-size: 18px;
  line-height: 20px;
}

a {
  font-size: 14px;
  line-height: 18px;
}

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

.paragraph--large {
  font-size: 32px;
  line-height: 32px;
  margin: 0px;
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 18px;
  line-height: 24px;
  font-style: italic;
  margin: 20px 0;
}

a {
  text-decoration: none;
  color: var(--color-galaxy-grey-3);
  transition: all 0.3s;
}

a:hover {
  color: var(--color-purple-star-3);
}

ul {
  padding: 0;
  margin: 0;
}

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

.text-font {
  font-family: var(--font-text);
}

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

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

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

.text-font-normal {
  font-weight: 400;
}

.text-font-italic {
  font-style: italic;
}

.text-font-bold {
  font-weight: 700;
}

.gray-color {
  background: var(--color-galaxy-grey-3);
}

/* Effects */

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

/* Color Codes */

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

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

.text-gradient {
  background: var(--gradient, linear-gradient(90deg, #f930ed 0%, #3b00bc 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-container {
  margin-top: 30px !important;
}

.btn-container .btn {
  margin-right: 10px;
}

.section-block {
  height: 100vh;
}

/***********************
        HEADER
***********************/

header {
  background: var(--color-white);
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

.nav {
  display: flex;
  justify-content: space-evenly;
}

.nav li {
  display: flex;
  list-style: none;
  padding: 10px 20px;
  text-transform: none;
  font-family: var(--font-semi);
  position: relative;
}

.nav li a{
	z-index:2;
}

.nav li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: var(--color-white);
  display: flex;
  list-style: none;
  font-family: var(--font-semi);
  position: absolute;
  top: 10px;
  left: calc(50% - 5px);
  transition: 0.2s all;
}

.nav li:hover::before {
  top: 0px;
  background-color: var(--color-solar-pink-3);
}

.sub-menu li::before {
  display: none;
}

.nav .cta {
  line-height: inherit !important;
  width: 120px;
  justify-content: center;
  color: var(--color-white);
}

.nav .cta::before {
  display: none;
}

.nav .cta a,
.nav .cta:hover a {
  color: var(--color-white);
}

.nav .cta::after {
  line-height: 18px;
}

.logo {
  width: 100%;
  max-width: 160px;
  padding: 10px;
}

.logo:hover {
  opacity: 0.9;
  transform: scale(0.95);
}

.logo img,
.logo-footer img {
  max-width: 150px;
  transition: 0.2s all;
}

.scrolled .logo img {
  transform: scale(0.8);
}

.sub-menu {
  box-shadow: 0px 4px 5px #00000017;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children ul {
  position: absolute;
  top: 50px;
  left: -50px;
  width: 200px;
  border-radius: 15px;
  max-height: 0;
  background: var(--color-white);
  overflow: hidden;
  transition: 0.4s;
}

.menu-item-has-children ul li {
  padding: 5px 5px 5px 15px;
  margin: 10px 0px;
  transition: 0.4s all;
}

.menu-item-has-children ul li::after {
  content: "\e902";
  font-family: "orion";
  color: var(--color-white);
  font-size: 12px;
  position: relative;
  display: block;
  margin-right: 20px;
  transition: 0.3s all;
}

.menu-item-has-children ul li:hover:after {
  margin-right: 10px;
  color: var(--color-solar-pink-3);
}

.menu-item-has-children ul li a {
  width: 100%;
  display: block;
}

.menu-item-has-children:after {
  content: "\e903";
  font-family: "orion";
  margin-left: 8px;
  position: relative;
  height: 10px;
  padding: 2px;
  font-size: 10px;
  top: 2px;
  transition: transform 0.4s;
  transform-origin: 50% 45%;
}

.menu-item-has-children:hover ul {
  max-height: 300px;
}

.menu-item-has-children:hover:after {
  transform: rotate(-180deg);
}

/***********************
       FOOTER
***********************/

.footer {
  padding: 40px 0;
  background: var(--color-galaxy-grey-3);
  color: var(--color-white);
  border-radius: 40px;
  transition: all 0.4s;
  margin-bottom: 30px;
}

.active-footer {
  transform: translateY(-110%);
  bottom: 40px;
}

.footer-contact div {
  margin: 0px 5px;
}

.footer p {
  line-height: 22px;
}

.footer .container a {
  color: var(--color-white);
  padding-left: 0px;
  transition: 0.2s all;
}

/* Footer Navigation Link Hover */

.footer li a {
  position: relative;
}

.footer-menu li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: transparent;
  display: flex;
  list-style: none;
  font-family: var(--font-semi);
  position: absolute;
  top: 0px;
  left: calc(50% - 5px);
  transition: 0.2s all;
}

.footer-menu li a:hover::before {
  top: -10px;
  background-color: var(--color-solar-pink-3);
}

.footer-area-one .wp-block-image {
  margin: 0px;
}

.footer-area-one img {
  transition: 0.2s all;
}

.footer-area-one img:hover {
  transform: scale(0.95);
}

.footer-area {
  width: 100%;
}

.footer-menu {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.footer-menu li {
  list-style: none;
  margin: 0px 5px;
}

/* Copyright Section */

.copyright {
  width: 90%;
  font-size: 12px;
  color: var(--color-white);
}

.copyright a {
  color: var(--color-white);
  font-size: 12px;
  margin-left: 3px;
}

.copyright a:hover {
  color: var(--color-solar-pink-3);
}

/* Footer Logo */

.footer .logo-footer {
  display: block;
  transition: 0.2s all;
}

.footer .logo-footer:hover {
  opacity: 0.9;
  transform: scale(0.95);
}

.footer-social a {
  font-size: 36px;
  margin-left: 15px;
}

/***********************
      BLOG ARTICLE
***********************/

.post h1 {
  margin: 20px 0px;
  font-size: 72px;
  line-height: 72px;
}

.post .container-full {
  background: var(--color-white);
  position: relative;
  z-index: 1;
  padding: 2% 0;
}

.post a {
  color: var(--color-purple-star-3);
	font-size:inherit;
}

.post a:hover {
  color: var(--color-solar-pink-3);
}

.post li {
  font-size: 16px;
  margin-bottom: 10px;
}

.post-feature {
  width: 100%;
  height: 50vh;
  max-width: 1100px;
  overflow: hidden;
  position: sticky;
  background: var(--color-galaxy-grey-3);
  text-align: center;
  margin: 100px auto 0px auto;
  border-radius: 40px;
}

.post-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post .container-small {
  margin-top: 0px;
}

.post .read-time {
  width: 150px;
  display: flex !important;
  justify-content: center;
}

.post .meta {
  display: flex;
}

.post-container {
  margin-top: 5%;
}

.post-container h1 a,
.post-container h2 a,
.post-container h3 a,
.post-container h4 a {
  font-size: inherit;
  font-weight: inherit;
}

.post-container em {
  font-size: 24px;
  line-height: 34px;
}

.meta-container {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-galaxy-grey-3);
}

.meta-container,
.meta-container li {
  font-size: 15px;
}

.meta-container .date {
  min-width: 100px;
}

.meta-container a {
  color: var(--color-galaxy-grey-3);
}

.category ul {
  display: flex;
}

.category ul li {
  list-style: none;
  margin-right: 10px;
}

.block {
  padding: 50px;
  min-height: 20vh;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.tags {
  color: var(--color-white);
  font-size: 12px;
  margin-left: 5px;
  padding: 5px 10px;
  display: flex;
  border-radius: 20px;
  background: var(--color-purple-star-3);
  align-items: center;
}

.tags:hover {
  background: var(--color-solar-pink-3);
  color: var(--color-white);
}

.post h2 {
  font-size: 28px;
  line-height: 30px;
  margin-top: 25px;
}

.post h3 {
  font-size: 24px;
  line-height: 32px;
  margin-top: 25px;
}

.post h4 {
  font-size: 20px;
  line-height: 22px;
  margin-top: 25px;
}

.pagination .screen-reader-text {
  display: none;
}

.blog .post-title {
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0;
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog .post-title a {
  letter-spacing: 0;
}

.blog .post-title a:hover {
  font-variant: var(--color-solar-pink-3);
}

.blog .article-item {
  margin-bottom: 5vh;
}

.blog-title h1 {
  font-size: 5vw;
  line-height: 5vw;
  text-align: center;
  padding: 10vh 0;
}

.post-excerpt p {
  margin: 5px 0px;
}

#wp_pagination {
  display: flex;
  justify-content: space-between;
  margin: 7vh auto 0 auto;
  text-align: center;
  max-width: 800px;
  align-items: center;
}

#wp_pagination a {
  width: 20px;
  height: 20px;
  margin: 0px 5px;
  border-radius: 10px;
}

#wp_pagination a:hover {
  background: var(--color-galaxy-grey-1);
  color: var(--color-white);
}

#wp_pagination .active {
  color: var(--color-white);
  background: var(--color-galaxy-grey-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */

/* Color Container */

.comments {
  width: 100%;
}

.comments label {
  font-weight: bold;
}

.comments form input,
.comments form textarea {
  background: #00000000;
  color: var(--color-black);
  font-size: 14px;
  border: 1px solid var(--color-galaxy-grey-3);
  margin-top: 10px;
  padding: 0px 10px;
}

.comments form input {
  height: 45px;
}
.comments form textarea {
  height: 100px;
  padding-top: 10px;
}

.comment {
  background: var(--color-white);
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--color-galaxy-grey-3);
}

.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.comment-author img {
  margin-right: 20px;
  border-radius: 50px;
}

.comment-author cite {
  font-style: normal;
  margin-right: 10px;
}

.comment-author cite a {
  font-size: 18px;
  font-weight: bold;
}

.comment-list {
  padding: 0;
}

.comment .odd {
  background-color: #f3f3f3;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email {
  display: flex;
  flex-direction: column;
}

.comment-form-author,
.comment-form-email {
  width: 48%;
  float: left;
}

.comment-form-author {
  margin-right: 4%;
}

.comment-respond {
  max-width: 800px;
  margin: 5vh auto;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  float: left;
}
.comment-form-cookies-consent input {
  height: 20px !important;
  margin-top: 4px !important;
  margin-right: 10px;
}

.form-submit .submit {
  width: 100%;
  display: inline-block;
  opacity: 1;
  height: 46px;
  padding: 0 40px;
  text-align: center;
  font-size: 16px;
  line-height: 46px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-title);
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--color-solar-pink-3);
  color: var(--color-black);
}

.form-submit .submit:hover {
  background: var(--color-purple-star-3);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

/* Color Container */

.nothing {
  height: inherit;
  padding: 20vh 0;
}

.nothing h1 {
  font-size: 10vh;
  margin: 0px 0px 30px 0px;
}

.nothing-img {
  max-width: 40vh;
}

.archive-title {
  font-size: 54px;
}

.archives .post-title {
  font-size: 32px;
  line-height: 110%;
}

/* ==========================================================================
   SEARCH
   ========================================================================== */

/* Search Form */

.search {
  max-width: 400px;
  margin: 30px auto;
  box-shadow: 0px 0px 10px #00000012;
}

.search form {
  display: flex;
}

/* Search Input */

.search input {
  background: var(--color-white);
  color: var(--color-galaxy-grey-3);
  font-size: 16px;
  font-family: var(--font-text);
}

.search form input[type="search"] {
  width: 70%;
}

/* Search Button */

.search form input[type="submit"] {
  width: 30%;
  font-weight: bold;
  background: var(--color-solar-pink-3);
  transition: all 0.3s;
}

.search form input[type="submit"]:hover {
  background: var(--color-purple-star-3);
}

#search-container .d-flex,
#search-container .d-flex input {
  width: 100%;
}

/* ==========================================================================
   ARCHIVE PAGE
   ========================================================================== */

/* Archive Item */

.archive-item {
  padding: 20px;
}

.post-thumbnail {
  margin-bottom: 10px;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.read-more {
  color: var(--color-solar-pink-3);
}

.pagination {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
}

.pagination a {
  color: var(--color-solar-pink-3);
  font-size: 16px;
  padding: 0px 4px;
}

.post-title a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.post-title a:hover {
  color: var(--color-solar-pink-3);
}

.read-time {
  background: var(--color-solar-pink-3);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--color-white);
}

.blog .read-time {
  position: absolute;
  margin-top: 10px;
  margin-left: 10px;
  z-index: 9;
}

.blog-meta {
  margin-bottom: 5px;
  align-items: center;
}

.blog-meta a {
  border-right: 1px solid var(--color-grey-1);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

/* Contact Form */

.wpcf7 {
  margin: 0px auto;
  width: 100%;
  color: var(--color-white);
}

/* Contact Label */

.wpcf7 label {
  display: block;
  font-size: 14px;
  color: var(--color-galaxy-grey-3);
}

.wpcf7 .d-flex label {
  width: 48%;
}

/* Contact Input */

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid var(--color-galaxy-grey-3);
  color: var(--color-white);
  font-size: 16px;
}

/* Contact Submit */

input[type="submit"] {
  display: inline-block;
  opacity: 1;
  margin-top: 30px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  padding: 0 40px;
  text-align: center;
  font-size: 16px;
  line-height: 46px;
  font-family: var(--font-title);
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 60px;
  overflow: hidden;
  transition: 0.4s all;
  border: 1px solid rgb(138, 26, 234);
  color: var(--color-white);
}

input[type="submit"]:after {
  content: "\e902";
  font-family: "orion";
  font-size: 12px;
  display: inline-block;
  position: relative;
  margin-left: 10px;
  transition: 0.4s all;
}

input[type="submit"]:hover {
  background: rgb(138, 26, 234);
  color: var(--color-white);
}

/* Contact Validation Alert */

.wpcf7-not-valid-tip {
  position: absolute;
  top: -40px;
  right: 0;
}

/* Contact Submit Error */

.wpcf7 form .wpcf7-response-output {
  margin: 0px 0px 50px 0px;
  padding: 10px;
  text-align: center;
  background: var(--color-messageError);
  border-radius: 5px;
  border: 0px;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: var(--color-black);
  background: var(--color-tiel-1);
}

.wpcf7-not-valid-tip {
  color: var(--color-solar-pink-3) !important;
}
/* Contact Loader */

.wpcf7-spinner {
  position: absolute;
  left: inherit;
  background-color: var(--color-solar-pink-3);
  opacity: 1;
  width: 600px;
  border-radius: 0px;
  margin-left: -600px;
  padding: 0;
  height: 46px;
  transition: all 0.5;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 13px;
  left: 280px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

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

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.accordion-container {
  width: 100%;
}

button.accordion {
  width: 100%;
  align-items: center;
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 20px;
  color: var(--color-black);
  cursor: pointer;
  background: var(--color-white);
  transition: background-color 0.2s linear;
}

button.accordion:after {
  content: "\e902";
  font-family: "orion";
  font-size: 18px;
  float: right;
  transition-duration: 0.2s;
  transition-property: transform;
}

button.accordion.is-open:after {
  transform: rotate(180deg);
}

button.accordion:hover,
button.accordion.is-open {
  background-color: #ddd;
}

.accordion-content {
  background-color: var(--color-white);
  border-left: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  padding: 0px 20px;
  max-height: 0;
  overflow: hidden;
  display: flex;
  transition: max-height 0.2s ease-in-out;
  align-items: center;
  border-bottom: 1px solid var(--color-galaxy-grey-3);
}

/* ==========================================================================
   AUTHOR PAGE
   ========================================================================== */

.author {
  text-transform: capitalize;
}

.author-profile-card {
  margin-top: 20px;
  border-bottom: 1px solid var(--color-galaxy-grey-1);
  padding: 30px 20px;
  text-align: center;
}

.author-profile-card a {
  color: var(--color-solar-pink-3);
  display: block;
  margin-bottom: 10px;
}

.author-profile-card a:hover {
  color: var(--color-purple-star-3);
}

.author-profile-card .author-photo img {
  border-radius: 100%;
}

.author-posts h3 a {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: bold;
}

.author-posts h3 a:hover {
  color: var(--color-purple-star-3);
}

/***********************
        HOMEPAGE
***********************/

/* Hero Section */

.hero .rotate-title span {
  font-weight: 900;
  background: var(--gradient, linear-gradient(90deg, #f930ed 0%, #3b00bc 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero video {
  max-width: 600px;
	clip-path: inset(1px 1px);
}

.rotate-title {
  display: inline;
  height: 6vw;
  margin: 0px;
}

.hero .rotate-title span,
.hero .rotate-title h2 {
  animation: heroTitle 7.5s linear infinite 0s;
  font-weight: 900;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
}
.hero .rotate-title span:nth-child(2),
.hero .rotate-title h2:nth-child(2) {
  animation-delay: 2.5s;
}
.hero .rotate-title span:nth-child(3),
.hero .rotate-title h2:nth-child(3) {
  animation-delay: 5s;
}

@keyframes heroTitle {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  25% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  42% {
    opacity: 0;
    -webkit-transform: translateY(0px);
  }
  45% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes topTofade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Second Section*/

.dex .rotate-title span,
.dex .rotate-title h3 {
  animation: topToBottom 10s linear infinite 0s;
  font-weight: 900;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  font-size: 4.4vw;
}
.dex .rotate-title span:nth-child(2),
.dex .rotate-title h3:nth-child(2) {
  animation-delay: 2.5s;
}
.dex .rotate-title span:nth-child(3),
.dex .rotate-title h3:nth-child(3) {
  animation-delay: 5s;
}

.dex .rotate-title span:nth-child(4),
.dex .rotate-title h3:nth-child(4) {
  animation-delay: 7.5s;
}

@keyframes topToBottom {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  25% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.dex-cex .dex-content {
  width: 50%;
}

.dex-cex img {
  transition: 0.3s all;
}

.dex-cex .first,
.dex-cex .last {
  width: 25%;
  cursor: pointer;
}

.dex-cex .first:hover img,
.dex-cex .last:hover img {
  transform: scale(0.95);
}

.dex-cex h5 {
  font-size: 32px;
  font-style: normal;
  text-transform: none;
  margin-bottom: 15px;
}

.dex-cex .paragraph--large {
  font-size: 22px;
  line-height: 28px;
}

/* Third Section*/

.mobile-vid {
  position: relative;
}

.mobile-vid::before {
  content: "";
  width: 100%;
  height: 30%;
  display: block;
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
}

.mobile-vid video {
  max-width: 650px;
clip-path: inset(1px 1px);	
}

/* Fourth Section*/

.cexy .container-full,
.dex .container-full {
  z-index: 2;
}

.cexy .video-block,
.dex .video-block {
  position: absolute;
  z-index: 1;
}

.cexy .rotate-title-container .rotate-title {
  height: 12vw;
  width: 60%;
  left: 20%;
}
.cexy .rotate-title-container .rotate-title div {
  animation: topToBottom 10s linear infinite 0s;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
width:100%;
}
.cexy .rotate-title div:nth-child(2) {
  animation-delay: 2.5s;
}
.cexy .rotate-title div:nth-child(3) {
  animation-delay: 5s;
}
.cexy .rotate-title div:nth-child(4) {
  animation-delay: 7.5s;
}

.rotate-title-container {
  width: 100%;
  margin-top: 3vh;
}

.rotate-title-container .rotate-title {
  text-align: center;
  display: inline-block;
  width: 100%;
  word-wrap: break-word;
  height: 9vw;
  position: relative;
}

.rotate-title-container h2 {
  font-size: 5.2vw;
  line-height: 5.2vw;
}

/* Fifth Section*/

.bridge .video-block {
  z-index: 1;
  position: absolute;
  max-width: 550px;
}

.bridge-swap{
	border: 1px solid #e0dee3;
    z-index: 2;
    max-width: 400px;
    border-radius: 20px;
}

.bridge .wp-block-image {
  max-width: 400px;
  margin-top: 50px;
  z-index: 2;
}

/* Sixth Section*/

.widget {
  height: 80vh;
  justify-content: center;
}

.widget .video-block {
  position: absolute;
  max-width: 600px;
  left: 5%;
}

.fake-sites {
  position: absolute;
  z-index: 1;
  height: 50vh;
  max-height: 500px;
  width: 50%;
}

.fake-sites img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  left: 0;
  top: 0;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#orion-widget {
  display: flex;
  justify-content: flex-end;
  z-index: 2;
  padding-top: 10vh;
}

/* Last Section*/

.referral-level {
  border: 1px solid #dfe0e4;
  text-align: center;
  justify-content: center;
  padding-bottom: 30px;
  border-radius: 30px;
}

.referral-level .wp-block-image {
  margin-bottom: 0px;
}

.referral-level p {
  margin: 0px;
}

.referral-level h5 {
  font-size: 26px;
  line-height: 26px;
}

.third .column-half:first-child {
  width: 40%;
}

.third .column-half:last-child {
  width: 55%;
}

/***********************
        TECHNOLOGY
***********************/

.tech-feature {
  align-items: center;
  border: 1px solid #dfe0e4;
  border-radius: 20px;
  cursor: pointer;
  padding: 50px 0px;
  transition: 0.3s all;
  position: relative;
}

.tech-feature .hoverLottie {
  margin-bottom: 30px;
}

.tech-feature h5 {
  font-size: 32px;
  text-transform: none;
}

.tech-feature:hover {
  box-shadow: 0px -15px 20px #7c829533;
}

.tech-feature .headline {
  transition: 0.3s all;
}

.tech-feature:hover .headline {
  color: var(--color-solar-pink-3);
}

.tech-feature::before {
  content: "";
  width: 100%;
  height: 20%;
  display: block;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  bottom: -1px;
}

.compare-cex {
  border: 1px solid #dfe0e4;
  border-radius: 30px;
  padding: 0px 0px 30px 0px;
  overflow: hidden;
}

.compare-title {
  background: var(--color-galaxy-grey-3);
  color: var(--color-white);
  text-align: center;
  font-size: 32px;
  padding: 20px 10px;
  text-transform: uppercase;
  font-family: var(--font-title);
}

.compare-cex .paragraph {
  margin-top: 0;
}

.compare-cex-inner {
  flex-direction: column;
  padding: 0px 30px;
  box-sizing: border-box;
}

.card-highlight {
  border-color: var(--color-solar-pink-3);
  box-shadow: 0px 0px 20px 0px rgba(254, 55, 175, 0.2);
  background: url("logo-mark.svg")
    no-repeat;
  background-position: -25% -8%;
}

.card-highlight .compare-title {
  background: var(--color-white);
  background: var(--gradient, linear-gradient(90deg, #f930ed 0%, #3b00bc 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-highlight .true-icon strong,
.card-highlight .false-icon strong {
  background: var(--gradient, linear-gradient(90deg, #f930ed 0%, #3b00bc 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.true-icon,
.false-icon {
  padding-left: 40px;
  position: relative;
}

.true-icon::before,
.false-icon::before {
  width: 24px;
  height: 24px;
  position: absolute;
  display: block;
  z-index: 2;
  left: 0;
  top: 2px;
  border-radius: 30px;
  text-align: center;
}

.true-icon::before {
  content: "\e91e";
  font-family: "orion";
  color: var(--color-solar-pink-3);
  font-size: 26px;
}

.false-icon::before {
  content: "\e91f";
  font-family: "orion";
  background: var(--color-purple-star-3);
  color: var(--color-white);
}

.card-label {
  background: #cbccd9;
  border: 2px solid var(--color-white);
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: -20px !important;
}

.card-div {
  position: relative;
  margin-top: 20px;
}

.card-div::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #cbccd9;
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
}

.grid-container {
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.grid-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #dfe0e4;
  border-bottom: 0px;
  border-radius: 20px 20px 0px 0px;
  padding: 20px 10px;
  min-height: 200px;
  background: var(--color-white);
  position: relative;
  cursor: pointer;
  transition: 0.3s all;
}

.grid-inner:hover {
  border-color: var(--color-solar-pink-3);
}

.grid-inner .hoverLottie {
  max-width: 70px;
  margin: 0px 0px 10px 0px;
}

.grid-inner p {
  width: 80%;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
}

.grid-inner strong {
  font-size: 16px;
  line-height: 20px;
}

.plus-icon::before,
.plus-icon::after {
  content: "\e904";
  font-family: "orion";
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: var(--color-solar-pink-3);
  position: absolute;
  display: block;
  z-index: 2;
}

.plus-icon::before {
  left: -21px;
  top: calc(50% - 20px);
}

.plus-icon::after {
  right: -21px;
  top: calc(50% - 20px);
}

.cross-chain {
  background: var(--color-white);
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin: -25px 0 0 0;
  padding: 0;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 100px;
  flex-direction: column;
  transition: 0.3s all;
  z-index: 2;
  position: relative;
  border: 1px solid #dfe0e4;
}

.cross-chain p {
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  margin: 0;
  transition: 0.3s all;
  color: var(--color-galaxy-grey-3);
}

.cross-chain a {
  width: 100%;
  height: 100%;
  position: absolute;
}

.minus-top {
  margin-top: -25px;
}

.cross-chain::before {
  content: "\e903";
  font-family: "orion";
  width: 40px;
  height: 40px;
  font-size: 40px;
  top: -8px;
  left: calc(50% - 20px);
  position: absolute;
  display: block;
  z-index: 2;
  color: var(--color-solar-pink-3);
  animation: slide-bottom 1s linear infinite;
}

@keyframes slide-bottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}

.tech-1 {
  animation: fade 1s ease 1 forwards 2.5s;
  opacity: 0;
}

.plus-1::before {
  animation: fade 1s ease 1 forwards 3s;
  opacity: 0;
  z-index: 2;
}
.tech-3 {
  animation: fade 1s ease 1 forwards 3.5s;
  opacity: 0;
  z-index: 3;
}
.plus-1::after {
  animation: fade 1s ease 1 forwards 4s;
  opacity: 0;
  z-index: 2;
}
.tech-5 {
  animation: fade 1s ease 1 forwards 4.5s;
  opacity: 0;
  z-index: 2;
}
.tech-6 {
  animation: fade 1s ease 1 forwards 5s;
  opacity: 0;
}
.plus-2::before {
  animation: fade 1s ease 1 forwards 5.5s;
  opacity: 0;
}
.tech-8 {
  animation: fade 1s ease 1 forwards 6s;
  opacity: 0;
  z-index: 3;
}
.plus-2::after {
  animation: fade 1s ease 1 forwards 6.5s;
  opacity: 0;
}
.tech-10 {
  animation: fade 1s ease 1 forwards 7s;
  opacity: 0;
  z-index: 2;
}
.tech-11 {
  animation: fade 1s ease 1 forwards 7.5s;
  opacity: 0;
  z-index: 3;
}

@keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
}

/***********************
        PRODUCTS
***********************/

.feature-product {
  margin-top: 0;
  padding-top: 0;
}

.feature-product img {
  max-width: 450px;
  transition: 0.3s all;
}

.feature-product:hover img {
  transform: scale(0.95);
}

.feature-product .btn {
  margin-top: -50px;
  z-index: 2;
}

.user-highlight {
  border-radius: 30px;
  box-shadow: 0px -15px 20px #7c829533;
  width: 90%;
  margin-top: 20px;
}

.product-partner .column-third:nth-child(1),
.product-partner .column-third:nth-child(2) {
  width: 25%;
}

.product-partner .column-third:nth-child(3) {
  width: 40%;
  height: 320px;
}

.product-partner .column-third:nth-child(3) .column-full {
  height: 320px;
  padding: 0;
  margin: 0px;
}

.product-partner .column-third:nth-child(3) .fake-sites {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.product-users img {
  max-width: 400px;
  width: 100%;
}

.product-highlight {
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}

.product-highlight lottie-player {
  width: 15% !important;
}

.product-highlight strong {
  transition: 0.3s all;
}

.product-highlight:hover strong {
  color: var(--color-solar-pink-3);
}

.product-highlight p {
  width: 80%;
}

.partner-logos {
  max-width: 1200px;
  border-radius: 30px;
  align-items: center;
  margin-top: 30px;
}

.partner-logos .wp-block-image {
  margin: 0px;
}
.partner-logos .column-forth {
  background: var(--color-white);
  border-radius: 10px;
  transition: 0.3s all;
}

.partner-logos .column-forth:hover {
  box-shadow: 0px 0px 10px #7c829533;
  transform: scale(0.95);
}

.partner-logos img {
  width: 100%;
}

.partner-logos-first {
  width: 25% !important;
  justify-content: center;
}

.partner-logos-last {
  width: 75% !important;
  background: #f7f7f7;
}

.make-trade {
  padding: 10vh;
  border-radius: 30px;
  box-shadow: 0px 0px 11px 0px rgba(109, 111, 150, 0.15);
  background: url("logo-mark.svg")
    no-repeat;
  background-position: -20% 50%;
  background-size: 30%;
  box-sizing: border-box;
}

.referral-tier {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #dfe0e4;
  transition: 0.3s all;
  position: relative;
  cursor: pointer;
}

.referral-tier:hover {
  box-shadow: 0px -15px 20px #7c829533;
}

.referral-tier::before {
  content: "";
  width: 100%;
  height: 20%;
  display: block;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  bottom: -1px;
}

.referral-tier h5 {
  font-family: var(--font-semi);
  text-transform: none;
  font-size: 28px;
  line-height: 120%;
  width: 60%;
}

.referral-tier lottie-player {
  margin-bottom: 20px;
}

/* Testimonial */

.testimonial-container {
  width: 90%;
  border-radius: 30px;
  box-shadow: 0px -15px 20px #7c829533;
  padding: 30px 0px;
  position: relative;
  z-index: 2;
}

.testimonial-container::before,
.testimonial-container::after {
  font-family: "orion";
  font-size: 100px;
  color: var(--color-solar-pink-3);
  display: block;
  position: absolute;
}

.testimonial-container::before {
  content: "\e905";
  top: -50px;
  left: -50px;
  z-index: 1;
}

.testimonial-container::after {
  content: "\e906";
  bottom: -50px;
  right: -50px;
  z-index: 3;
}

.testimonial-block {
  padding: 50px;
}

.testimonial-block h4 {
  font-size: 42px;
}

.testimonial-block a {
  color: var(--color-purple-star-3);
  font-size: 18px;
}

.testimonial-block blockquote p {
  font-size: 32px;
  line-height: 150%;
  max-width: 1000px;
}

.testimonial-container .slick-arrow::before {
  color: var(--color-purple-star-3);
}

#chat-icon {
  background: #ffffff !important;
}

.ready-trade {
  height: inherit;
  padding: 5vh 0;
}

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

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

.onepage-pagination li a:before {
  border-radius: 10px;
  width: 5px;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.123);
}
.onepage-pagination li a.active:before {
  background-color: var(--color-solar-pink-3);
  width: 5px;
  height: 5px;
  border: none;
  left: inherit;
  margin-top: 0;
}

#tokenlist {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  align-items: center;
}

#tokenlist div {
  display: flex;
  margin: 5px 0px 5px 0px;
}

.seventh {
  height: 80vh;
}

.home-pag {
  min-height: 100px;
  position: fixed;
  right: 30px;
  top: calc(50% - 100px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-pag li {
  list-style: none;
  margin-bottom: 10px;
  width: 16px;
  height: 16px;
}

.home-pag li a {
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
}

.home-pag li a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.85);
  display: block;
  border-radius: 4px;
}

.home-pag .active::before {
  background: var(--color-solar-pink-3);
}

.home-pag li .active {
  border: 1px solid var(--color-galaxy-grey-3);
}

/***********************
     TICKERS
***********************/

.ticker {
  background-color: var(--color-galaxy-grey-3);
  color: var(--color-white);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.banner1 {
  display: inline-block;
  animation: ticker1 80s -80s linear infinite;
  width: 4000px;
}

.banner2 {
  display: inline-block;
  animation: ticker2 80s -40s linear infinite;
  width: 4000px;
}

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

@keyframes ticker2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

#tickers-1,
#tickers-2 {
  display: flex;
  justify-content: space-evenly;
}

.prices {
  align-items: center;
  left: 0 !important;
  padding: 10vh 0px;
}

.asset{
	margin-right:5px;
}

.pair div{
	font-family: var(--font-text);
    letter-spacing: 1px;
}

.price-feed,
.price-change {
  display: flex;
  align-content: center;
}

.price-change--down {
  color: red;
}

.price-change--up {
  color: green;
}
.price-change--down::before,
.price-change--up::before {
  content: "\e903";
  font-family: "orion";
  font-size: 12px;
  line-height: 12px;
  height: 16px;
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.price-change--up::before {
  transform: rotate(180deg);
  margin-top: 0px;
}

.pair {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.show-mobile {
  display: none !important;
}

.terminal-ui{
	max-width: 1024px;
}

.dex video, .terminal-ui video{
	width: 100%;
    height: 100%;
	clip-path: inset(2px 2px);
	border-radius: 20px;
}

.post-password-form::before{
	content:url('../../wp-content/uploads/2023/10/lock.html');
	width:100px;
	height:100px;
	display:block;
}

.post-password-form{
    max-width: 600px;
    width: 80%;
    text-align: center;
    margin: 20vh auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#pwbox-3378{
	border: 1px solid #221e3f;
    border-radius: 10px;
    height: inherit;
    padding: 10px 20px!important;
    margin-bottom: 20px;
	color:#221e3f;
}

.post-password-form input[type="submit"]{
	margin: 0px;
    height: inherit;
    background: #f92fed;
    border: none;
    border-radius: 10px;
    font-weight: 300!important;
    font-family: 'Gilroy-Medium';
}

.calc-hero{
	height:inherit;
	padding:10vh 0;
}

.post-container ul, .post-container ol{
	padding-left:20px;
	margin-top: 10px;
}

::marker{
	color:var(--color-solar-pink-3);
	font-size:inherit;
}

.post .container-small{
	margin-top:7vh;
}


