/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";
:root {
  --color-light: #dae6ea;
  --color-red: #ec3b3b;
  --color-green: #0ea766;
  --color-night: #07153b;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Variable.ttf") format("truetype-variations");
  font-weight: 1 999;
}
:focus {
  outline: 0 !important;
}
::selection {
  background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}
a {
  color: var(--color-red);
  text-decoration: none !important;
}
a:hover {
  color: var(--color-light);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "General Sans", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
html {
  background: var(--color-night);
}
html,
body {
  min-height: 100%;
  min-height: 100vh;
  position: relative;
}
body {
  font-family: "General Sans", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  direction: ltr;
  background: var(--color-night);
  color: var(--color-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: justify;
}
.overlay-link {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.body-overlay {
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(10, 61, 42, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 100;
  cursor: pointer;
}
.body-overflow {
  overflow: hidden;
}
.btn,
.custom-file-input,
.custom-select,
.form-control {
  border-radius: 0;
  box-shadow: none !important;
}
.btn,
label,
th,
.form-label {
  font-family: "General Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
a > i:only-child,
button > i:only-child {
  line-height: inherit;
}
.row.v-gutters {
  row-gap: 30px;
}
.sm-gutters {
  margin-left: -5px;
  margin-right: -5px;
}
.row.sm-gutters.v-gutters {
  row-gap: 10px;
}
.sm-gutters > .col,
.sm-gutters > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.lg-gutters {
  margin-left: -30px;
  margin-right: -30px;
}
.row.lg-gutters.v-gutters {
  row-gap: 60px;
}
.lg-gutters > .col,
.lg-gutters > [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}
.modal-dialog {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.page-navigation {
  margin: 50px 0 0;
  text-align: center;
  background: rgb(242, 242, 242);
  padding: 40px;
}
.pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagination > li {
  padding: 0 10px;
}
.pagination > li > a,
.pagination > li > .page-link.current {
  color: rgba(51, 51, 51, 0.5);
  line-height: 1;
  text-align: center;
  font-weight: 700;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.pagination > li > a.page-link:hover,
.pagination > li > .page-link.current {
  color: rgb(51, 51, 51);
}
/*Custom*/
.section {
  position: relative;
  z-index: 1;
}
.section-wrapper {
  padding: 120px 0;
}
.section:first-of-type .section-wrapper {
  padding-top: 120px;
}
.section:last-of-type .section-wrapper {
  padding-bottom: 0;
}
.section:not(.section-covered) + .section .section-wrapper {
  padding-top: 0;
}
.section-divider,
.section-cover {
  position: relative;
}
.section-divider img,
.section-cover img,
.section-cover svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-header + .section-body,
.section-body + .section-footer,
.section-header + .section-footer {
  margin-top: 40px;
}
.section-header {
  text-align: center;
}
.section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-light);
  margin: 0;
}
.section-subtitle {
  font-size: 18px;
  font-weight: normal;
  color: var(--color-light);
  margin: 0;
  opacity: 0.8;
}
.section-title + .section-subtitle {
  margin-top: 12px;
}
.section-desc {
  font-size: 18px;
}
#page-body {
  padding: 120px 0 120px;
}
#header + #page-body {
  padding-top: 175px;
}
#page-footer {
  margin-top: auto;
  padding-bottom: 198px;
}
#page-footer + #footer {
  margin-top: 0;
}
#page-header {
  padding: 175px 0 0;
  background-color: #050e27;
  text-align: center;
}
.page-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 65px;
  color: var(--color-light);
  text-transform: uppercase;
}
.page-title > strong {
  font-weight: inherit;
  color: var(--color-red);
}
.page-desc {
  font-size: 20px;
  font-weight: normal;
  color: var(--color-light);
  opacity: 0.8;
  margin: 20px 0 0;
}
#page-header .section-divider {
  margin-top: 100px;
}
.subsection {
  padding: 40px 0;
}
.subsection-header + .subsection-body,
.subsection-body + .subsection-footer,
.subsection-header + .subsection-footer {
  margin-top: 20px;
}
.subsection-header {
  overflow: hidden;
}
.subsection-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--color-light);
  text-transform: uppercase;
  margin: 0;
}
.subsection-cover {
  position: relative;
}
.subsection-cover > img {
  width: 100%;
}
.tbutton {
  height: 40px;
  border-radius: 40px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tbutton-block {
  display: flex;
  width: 100%;
}
.tbutton-block + .tbutton-block {
  margin-top: 15px;
}
.tbutton-fill-primary {
  background: var(--color-red);
  color: #fff;
}
.tbutton-fill-primary:hover {
  background: var(--color-light);
  color: var(--color-red);
}
.tbutton-outline-primary {
  background: none;
  border-color: var(--color-red);
  color: var(--color-red);
}
.tbutton-outline-primary:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-light);
}
#header {
  padding: 44px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s;
}
#header.sticky {
  padding: 22px 0;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
#header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo > img {
  height: 24px;
}
.cta-toggle {
  padding: 0 20px;
  font-size: 14px;
  height: 35px;
  border-radius: 5px;
}
.section-hero {
  overflow: hidden;
}
.section-hero .section-title {
  font-size: 80px;
  font-weight: 500;
  line-height: 80px;
  color: var(--color-light);
}
.section-hero .section-title > strong {
  font-weight: inherit;
  position: relative;
  color: transparent;
  display: inline-flex;
}
.section-hero .section-title > strong::before {
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.section-hero .section-subtitle,
.section-hero .section-nav {
  margin-top: 40px;
}
.section-hero .section-wrapper {
  padding-bottom: 0;
}
.section-hero .section-footer {
  margin-top: 60px;
  position: relative;
}
.section-hero .section-footer::before {
  width: 100%;
  aspect-ratio: 1/1;
  opacity: 0.2;
  background: var(--color-red);
  filter: blur(500px);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  z-index: -2;
  content: "";
}
.section-hero .section-footer::after {
  width: 100vw;
  height: 100%;
  opacity: 1;
  background: linear-gradient(180deg, rgba(7, 21, 59, 0) 1%, #07153b 70%);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  content: "";
  z-index: 1;
}
.section-feature::before {
  width: 50%;
  max-height: 840px;
  aspect-ratio: 1/1;
  opacity: 0.2;
  background: var(--color-red);
  filter: blur(500px);
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.feature-accordion {
  counter-reset: feature;
}
.feature-accordion > div {
  counter-increment: feature;
}
.feature-card {
  padding: 32px;
  border-radius: 16px;
  opacity: 1;
  background: linear-gradient(33deg, #050e27 -9%, rgba(5, 14, 39, 0) 115%);
  border: 0.5px solid rgba(218, 230, 234, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.feature-card-body::before {
  content: counter(feature, decimal-leading-zero);
  font-size: 64px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-light);
  margin: 0 0 32px;
  opacity: 0.1;
  display: none;
}
.feature-card-header {
  margin-bottom: 80px;
}
.feature-card-icon {
  height: 64px;
}
.feature-card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-light);
  margin: 0;
}
.feature-card-title > strong {
  color: var(--color-red);
  font-weight: inherit;
}
.feature-card-desc {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: var(--color-light);
  opacity: 0.8;
  margin: 12px 0 0;
}
.tradingview-widget-container {
  background: linear-gradient(33deg, #050e27 -9%, rgba(5, 14, 39, 0) 115%);
  border-top: 0.5px solid rgba(218, 230, 234, 0.2);
  border-bottom: 0.5px solid rgba(218, 230, 234, 0.2);
}
.member-card {
  text-align: center;
}
.member-card-img {
  width: 120px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.member-card-body {
  margin-top: 20px;
}
.member-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-light);
  margin: 0;
}
.member-card-subtitle {
  font-family: General Sans Variable;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-light);
  opacity: 0.7;
  margin: 4px 0 0;
}
.section-about .section-inner {
  border-radius: 16px;
  opacity: 1;
  background: #050e27;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.section-about .section-inner::before {
  width: 50%;
  max-height: 688px;
  aspect-ratio: 1/1;
  opacity: 0.2;
  background: var(--color-red);
  filter: blur(500px);
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(35%, -20%);
}
.section-about .section-header {
  text-align: start;
}
.section-about .section-desc {
  text-align: justify;
}
.section-about .section-footer {
  padding: 65px 0 32px;
}
.section-about .money-symbol {
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  perspective: 1000px;
}
.money-symbol > li {
  width: 14%;
  animation: flip 3s infinite linear;
}
.money-symbol > li:nth-child(1) {
  animation-delay: 0;
}
.money-symbol > li:nth-child(2) {
  animation-delay: 0.3s;
}
.money-symbol > li:nth-child(3) {
  animation-delay: 0.7s;
}
.money-symbol > li:nth-child(4) {
  animation-delay: 0.5s;
}
.money-symbol > li:nth-child(5) {
  animation-delay: 0.4s;
}
.money-symbol > li > img {
  width: 100%;
}
@keyframes flip {
  100% {
    transform: rotatey(360deg);
  }
}
#footer {
  padding: 81px 0 40px;
  margin-top: auto;
}
.footer-inner {
  border-radius: 16px;
  opacity: 1;
  background: #050e27;
  padding: 40px;
}
.footer-logo > img {
  height: 32px;
}
.footer-desc {
  font-size: 16px;
  color: var(--color-light);
  opacity: 0.6;
  margin-top: 15px;
}
.social-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-nav > li:not(:last-child) {
  margin-right: 32px;
}
.social-nav > li > a > img {
  height: 32px;
  filter: brightness(0) invert(1);
}
.social-nav > li > a:hover > img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(84%) saturate(4223%)
    hue-rotate(339deg) brightness(94%) contrast(96%);
}
.footer-bottom {
  margin-top: 100px;
}
.copyright {
  font-size: 14px;
  color: var(--color-light);
  opacity: 0.6;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav > li:not(:last-child) {
  margin-right: 20px;
}
.footer-nav > li > a {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-light);
}
.footer-nav > li > a:hover {
  color: var(--color-red);
}
.footer-notice {
  padding: 20px 0 40px;
}
.footer-notice ul {
  font-size: 16px;
  font-weight: normal;
  color: var(--color-light);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-notice ul > li:not(:last-child)::after {
  content: "|";
  margin: 0 20px;
}
#form-contact {
  position: relative;
  z-index: 1;
}
#form-contact::before {
  width: 50vw;
  max-height: 892px;
  aspect-ratio: 1/1;
  opacity: 0.2;
  background: var(--color-red);
  filter: blur(500px);
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.contact-card-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-light);
}
.contact-card-body {
  margin-top: 20px;
}
.contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 20px;
  font-weight: normal;
  color: var(--color-light);
}
.contact-info a {
  color: var(--color-light);
}
.contact-info a:hover {
  color: #fff;
}
.contact-info > li:not(:last-child) {
  margin-bottom: 12px;
}
.contact-info > li > strong {
  opacity: 0.5;
  font-weight: normal;
  margin-right: 20px;
}
.accordion-list > div:not(:last-child) {
  margin-bottom: 12px;
}
.accordion-card {
  background: linear-gradient(75deg, #050e27 -4%, rgba(5, 14, 39, 0) 107%);
  border-radius: 16px;
  border: 0.5px solid rgba(218, 230, 234, 0.2);
}
.accordion-card:not(.active) .accordion-card-body {
  display: none;
}
.accordion-card-header {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-card .accordion-card-header::after {
  width: 44px;
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'%3E%3Cpolygon fill='%23DAE6EA' points='23.4,20.6 23.4,6.4 20.6,6.4 20.6,20.6 6.4,20.6 6.4,23.4 20.6,23.4 20.6,37.6 23.4,37.6 23.4,23.4 37.6,23.4 37.6,20.6 '/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
}
.accordion-card.active .accordion-card-header::after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'%3E%3Crect fill='%23DAE6EA' x='10.1' y='20.6' width='23.8' height='2.8'/%3E%3C/svg%3E%0A");
}
.accordion-card-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-light);
  margin: 0;
}
.accordion-card-body {
  font-size: 24px;
  color: var(--color-light);
  padding: 8px 32px 32px;
}
.form-group {
  margin: 0 0 20px;
}
.form-row > div:last-child > .form-group {
  margin: 0;
}
.form-action {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 32px;
}
.form-action > button:last-child {
  margin-left: auto;
}
.form-message {
  background: linear-gradient(33deg, #050e27 -9%, rgba(5, 14, 39, 0) 115%);
  border: 0.5px solid rgba(218, 230, 234, 0.2);
  border-radius: 5px;
  padding: 10px;
  margin-top: 32px;
  display: none;
}
.form-label {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-light);
  margin: 0 0 12px;
  display: inline-flex;
  align-items: start;
}
.form-label.required::after {
  content: "*";
  color: var(--color-red);
  line-height: 0.5;
  margin-left: 2px;
}
.custom-control-label {
  font-weight: normal;
}
.custom-file-label,
.form-control {
  color: #fff;
  font-size: 12px;
  min-height: 40px;
  background: transparent;
  border-radius: 5px;
  border: 0.5px solid var(--color-light);
  padding-left: 20px;
  padding-right: 20px;
}
.custom-file > input:focus + .custom-file-label,
.form-control:focus {
  border-color: var(--color-light);
  background: #050e27;
  color: #fff;
  box-shadow: none !important;
}
.custom-file-label {
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  cursor: pointer;
}
.custom-file-label::after {
  line-height: 1;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 0 5px 5px 0;
}
textarea.form-control {
  padding-top: 12px;
  padding-bottom: 12px;
}
form ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
form ol > li {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, .3);
}
#page-body p + table,
#page-body table + p {
  margin-top: 30px;
}
#page-body table {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-light);
}
#page-body table tr > th,
#page-body table tr > td {
  padding: 12px;
}
#page-body table tr > th {
  border-top: 1px solid rgba(218, 230, 234, 0.2);
  background: rgba(236, 59, 59, 0.1);
}
#page-body table tr > td,
#page-body table tr > th {
  border-bottom: 1px solid rgba(218, 230, 234, 0.2);
}
#page-body table > tbody:only-child > tr:nth-child(even) > td {
  background: rgba(236, 59, 59, 0.1);
}
.s {
  cursor: none !important;
}
.scursor {
  z-index: 1010;
  position: fixed;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-color: var(--color-red);
  opacity: 0.85;
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.25s, height 0.25s, 0.08s;
}
.cursor--zoom {
  width: 60px;
  height: 60px;
  transition: width 0.25s, height 0.25s;
}
.cursor-close {
  background-color: var(--color-night);
  transform: matrix(3, 0, 0, 3, 0, 0) !important;
  mix-blend-mode: difference;
}
.cursor-close::before,
.cursor-close::after {
  content: "";
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: cursorClose 0.6s 0.1s ease-in-out both;
}
.cursor-close::before {
  height: 100%;
  width: 1px;
}
.cursor-close::after {
  height: 1px;
  width: 100%;
}
.open .cursor {
  mix-blend-mode: lighten;
}
body.is-mobile .cursor,
.touch .cursor {
  display: none !important;
}
.cursor--active {
  animation: cursor-active 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}
.cursor--active.cursor--zoom {
  animation: cursor-active2 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}
@keyframes cursor-active {
  0% {
    box-shadow: 0 0 0 0 var(--color-light);
  }
  100% {
    box-shadow: 0 0 0 3rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursor-active2 {
  0% {
    box-shadow: 0 0 0 0 var(--color-light);
  }
  100% {
    box-shadow: 0 0 0 1rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursorClose {
  0% {
    transform: scale(0) rotate(90deg);
  }
  100% {
    transform: scale(0.45) rotate(45deg);
  }
}
/*Plugin*/
[data-target-type="copyright"] {
  display: none;
}
/*CMS*/
.entry-content {
  font-size: 16px;
}
.entry-content h6 {
  font-size: 16px;
}
.entry-content h5 {
  font-size: 18px;
}
.entry-content h4 {
  font-size: 20px;
}
.entry-content h3 {
  font-size: 28px;
  margin: 0 0 12px;
}
.entry-content p + h2 {
  margin-top: 40px;
}
.entry-content h2 {
  font-size: 32px;
  margin: 0 0 20px;
}
.entry-content p + h2 {
  margin-top: 80px;
}
.entry-content h1 {
  font-size: 43px;
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content iframe {
  border: none;
}
.entry-content img {
  max-width: 100%;
  margin: 0 0 1.5em 0;
  height: auto !important;
}
.entry-content video {
  width: 100%;
}
.entry-content iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
}
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.alignnone,
img.alignnone {
  /* not sure about this one */
}
.post-image-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}
.post-image-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
.post-image-caption p.post-image-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}
.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}
blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}
/*Responsive*/

@media (max-width: 767.98px) {
  body {
    font-size: 18px;
  }
  .section-subtitle {
    font-size: 18px;
  }
  .subsection-title {
    font-size: 24px;
  }
  .tbutton {
    height: 32px;
  }
  #header {
    padding: 16px 0;
  }
  #header.sticky {
    padding: 15px 0;
  }
  .logo > img {
    height: 19px;
  }
  #footer {
    text-align: center;
  }
  .footer-inner {
    padding: 20px;
  }
  .footer-logo {
    height: 30px;
  }
  .social-nav > li > a > img {
    height: 20px;
  }
  .footer-nav > li > a {
    font-size: 16px;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .footer-notice {
    padding: 20px 0;
  }
  .social-nav,
  .footer-nav {
    margin-top: 20px;
    justify-content: center;
  }
  .section-hero .section-footer::before {
    width: 150vw;
    bottom: 100%;
  }
  .section-hero .section-title {
    font-size: 38px;
    line-height: 38px;
  }
  .section-about .section-inner {
    padding: 32px;
  }
  .accordion-card-title {
    font-size: 20px;
    line-height: 27px;
  }
  .accordion-card .accordion-card-header::after {
    width: 32px;
    height: 32px;
  }
  .accordion-card-body {
    font-size: 18px;
    line-height: 28px;
  }
  .contact-card {
    margin-bottom: 30px;
  }
  .contact-card-title {
    font-size: 36px;
    line-height: 49px;
  }
  #page-body {
    padding: 60px 0;
  }
  #header + #page-body {
    padding-top: 125px;
  }
  #page-header {
    padding-top: 125px;
  }
  #page-header .section-divider {
    margin-top: 60px;
  }
  .page-title {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    max-width: 1430px;
    padding-left: 80px;
    padding-right: 80px;
  }
  .footer-top,
  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }
  .section-about .money-symbol {
    width: 66.0140955%;
  }
  .section-about .section-inner {
    padding: 80px;
  }
  .section-about .section-footer {
    padding: 65px 0 0;
  }
}

#mccoin-message{
    text-align:center;
        margin:20px auto 15px;
        font-size:22px;
        font-weight:700;
        line-height:1.4;
        letter-spacing:0.3px;
        max-width:900px;
        background: linear-gradient(90deg, #FF0000, #009A49, #FFFFFF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: fadeText 1.2s ease-in-out forwards;
}

