body {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  font-size: 20px;
  cursor: url("images/mouse2.png"), auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kode Mono", monospace;
}
img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
}
iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}
code {
  padding: 3px 6px;
  background-color: #f1f1f1;
  color: orange;
  font-weight: bold;
  font-size: 13px;
  border: 1px solid #d5d5d5;
}

.flexed {
  display: flex;
}
.container {
  width: 95%;
  margin: 0 auto;
  max-width: 1600px;
}
section {
  padding: 80px 0;
}
@media (max-width: 800px) {
  section {
    padding: 30px 10px;
  }
}

header .navbar-brand {
  font-size: 24px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  margin: 0 0 0 15px;
}
header .xicon {
  border-radius: 50%;
}
header .xicon img {
  border-radius: 50%;
  width: 100%;
  height: 30px;
  width: 30px;
}

header .nav-link {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}

/**

HERO

**/

.hero {
  padding: 0;
  display: flex;
  align-items: stretch;
}
.hero-image {
  flex: 0 1 50%;
}
.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero .hero-content {
  margin-right: 10%;
  flex: 0 1 40%;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  margin: 0 35px 0 0;
  font-size: 80px;
  line-height: 1.15;
  color: #003d49;
  font-weight: bold;
  width: fit-content;
  display: inline;
  /*text-shadow: 4px 4px 2px rgba(0, 0, 0, 1);*/
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9,
    0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2),
    0 20px 20px rgba(0, 0, 0, 0.15);
}

/**

Counter

**/
#counter {
  background: rgba(251, 148, 63, 1);
  background: radial-gradient(
    circle,
    rgb(255 152 9 / 69%) 0%,
    rgb(255 189 40) 100%
  );
  font-size: 21px;
  padding: 10px;
  color: #fff;
  font-family: "Righteous", sans-serif;
  text-align: center;
}

#counter p {
  margin: 0;
}
#counter span {
  color: #03b92d;
  font-size: 25px;
}
#counter p span#dollar {
  width: 40px;
}
@media (max-width: 767px) {
  #counter {
    font-size: 16px;
  }
  #counter p span {
    width: 30px;
  }
}

/***

Intro

***/
#intro {
  text-align: center;
}
#intro h2 {
  text-align: center;
}
#intro h4 {
  margin-top: 20px;
}
#intro h4 a {
  color: #fff;
}
#intro h2 span {
  text-align: center;
  color: rgb(249, 162, 21);
  font-family: "Righteous", serif;
  display: block;
  text-transform: uppercase;
  font-size: 1.4em;
}
#intro .flexed {
  flex-wrap: wrap;
  justify-content: center;
}
#intro .flexed .item {
  flex: 0 1 28%;
  background: #f1f1f1;
  border: 2px solid rgba(0, 0, 0, 0.3);
  margin: 1.5%;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}
#intro .flexed .item h4 {
  margin: 10px 0 0;
  display: inline-block;
  font-size: 20px;
  font-family: "Righteous";
}
#intro .large-warning a {
  margin: 0;
  padding: 15px 25px;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  font-size: 24px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: pulse 2s infinite;
  background-color: green;
  text-decoration: none;
}
#intro .large-warning a:hover {
  background: darkgreen;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

#intro .flexed .item h4.green {
  color: green;
}
#intro .flexed .item h4.red {
  color: red;
}
#intro .flexed .item h4.warning {
  color: orange;
}
#intro .large-warning {
  display: inline-block;
  font-size: 1.6em;
  text-align: center;
  margin: 40px auto 0;
  max-width: 750px;
}
#intro .large-warning strong {
  font-size: 1.3em;
}
@media (max-width: 900px) {
  #intro .flexed .item {
    flex: 0 1 100%;
    padding: 15px;
  }
  #intro h2 span {
    font-size: 1em;
  }
}

/***

  Three Item 


  ***/
.three-items {
  background-image: url("images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
}
.three-items .flexed {
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.three-items .item {
  background: #fff;
  border-radius: 15px;
  padding: 20px 30px;
  flex: 0 1 23%;
  text-align: center;
}
.three-items .item h3 {
  font-size: 36px;
  margin: 0 0 20px;
}
.three-items .item p {
  font-size: 22px;
  margin: 0 0 20px;
}
@media (max-width: 1345px) {
  .three-items .item {
    flex: 0 1 48%;
    margin: 10px 0;
  }
}
@media (max-width: 1000px) {
  .three-items {
    padding: 50px 0;
  }
}
@media (max-width: 850px) {
  .three-items {
    padding: 50px 0;
  }
  .three-items .item {
    flex: 0 1 100%;
    margin: 10px 0;
  }
  .three-items .item h3 {
    font-size: 27px;
    margin: 0 0 7px;
  }
}

/*** TOP STRIPE ***/
.top-stripe {
  background: rgb(251, 148, 63);
  background: radial-gradient(
    circle,
    rgba(251, 148, 63, 1) 0%,
    rgba(252, 188, 28, 1) 100%
  );
  text-align: center;
  color: #000;
  padding: 8px 0;
}

@media (max-width: 992px) {
  .top-stripe {
    font-size: 12px;
  }
}
#copycontract {
  border: 0;
  background: transparent;
}

#professors .item {
  flex: 1;
  text-align: center;
}

/**

CENTRALIZED

**/
#centralized {
  background: #f1f1f1;
}
#centralized h2 {
  margin-bottom: 35px;
}
#centralized .flexed {
  justify-content: center;
  align-items: center;
}
#centralized .image {
  flex: 0 1 42%;
  margin-left: 3%;
}
#centralized .text {
  flex: 0 1 55%;
}
#centralized .image img {
  position: relative;
  max-width: 100%;
  height: auto;
}
#centralized .image img:before {
  content: "";
  height: calc(100% + 5px);
  width: calc(100% + 5px);
  border: 4px solid orange;
  position: absolute;
  z-index: 1;
  top: -15px;
  right: -15px;
}

#centralized .image img:after {
  content: "";
  height: 100%;
  width: 100%;
  border: 2px solid #70f1b4;
  position: absolute;
  top: -25px;
  right: -25px;
}

@media (max-width: 991px) {
  #centralized .flexed {
    flex-direction: column-reverse;
  }
  #centralized .image {
    flex: 0 1 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #centralized .image img {
    position: relative;
    max-width: 350px;
    height: auto;
  }
}

/**
PROFESSORS
**/
#professors img {
  max-width: 165px;
  height: auto;
}

@media (max-width: 715px) {
  #professors .flexed {
    display: block;
  }
  #professors .item {
    margin-bottom: 10px;
  }
  #professors img {
    max-width: 135px;
  }
}

/***

  NEWS


  ***/
section#news {
  background: #f1f1f1;
}
section#news .tiles {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 30px;
}
section#news .tile {
  color: #000;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex: 0 1 23%;
  margin-bottom: 40px;
  background-color: #fff;
  border: none;
  border-radius: 0.625rem;
  box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1),
    0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1),
    0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12),
    0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}
@media (max-width: 1199px) {
  section#news .tile {
    flex: 0 1 31%;
  }
}
@media (max-width: 767px) {
  section#news .tile {
    flex: 0 1 50%;
  }
}
section#news img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  margin-bottom: 20px;
}
section#news h4 {
  font-size: 25px;
}
section#news .tile .read-more {
  background: orange;
  padding: 10px 16px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin-top: auto;
  margin-bottom: 20px;
  align-self: flex-start;
}
section#news .tile h4,
section#news .tile p {
  margin-left: 20px;
  margin-right: 20px;
}
section#news .tile p {
  margin-top: 0;
  font-size: 16px;
}
section#news p.desc {
  display: none;
}

@media (max-width: 767px) {
  section#news .tile {
    flex: 0 1 48%;
  }
  section#news img {
    height: 100px;
  }
  section#news h4 {
    font-size: 16px;
  }
  section#news p {
    font-size: 14px;
  }
  section#news p.desc {
    display: none;
  }
}
#getnacho {
  padding-top: 0;
}
#getnacho .flexed {
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 900px) {
  #getnacho .flexed {
    display: block;
  }
}
#getnacho .steps {
  display: flex;
  justify-content: center;
}

#getnacho .step {
  border: 2px solid #f1f1f1;
  border-radius: 15px;
  padding: 20px;
  margin: 2%;
}
#getnacho .steps .step img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1150px) {
  #getnacho .steps {
    flex-wrap: wrap;
  }
  #getnacho .step {
    flex: 0 1 25%;
  }
}
@media (max-width: 767px) {
  #getnacho .step {
    flex: 0 1 46%;
  }
}
@media (max-width: 600px) {
  #getnacho .step {
    flex: 0 1 100%;
    margin: 5%;
  }
}

#getnacho .item {
  flex: 0 1 45%;
  margin: 25px 0;
  padding: 20px;
  border-radius: 15px;
  background: #f1f1f1;
  border: 1px solid #dadada;
  box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1),
    0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1),
    0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12),
    0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}

span.caddress {
  display: inline-block;
  background: #fff;
  border: 1px solid #dadada;
  padding: 3px 6px;
  font-size: 14px;
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 400px) {
  span.caddress {
    font-size: 12px;
  }
}

#whatsnext {
  background: #f1f1f1;
}
#whatsnext .image {
  margin-left: 4%;
  max-width: 450px;
}

#whatsnext .flexed {
  justify-content: center;
  align-items: center;
}

#expect .flexed {
  justify-content: center;
  align-items: center;
}

#expect .image {
  margin-right: 4%;
  max-width: 450px;
}

@media (max-width: 767px) {
  #expect .flexed,
  #whatsnext .flexed {
    display: block;
  }
  #expect .image,
  #whatsnext .image {
    margin-right: auto;
    margin-left: auto;
  }
}

.buttonG {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttonG a {
  margin: 5px;
  padding: 8px 16px;
  background: rgb(251, 148, 63);
  background: linear-gradient(
    90deg,
    rgba(251, 148, 63, 1) 0%,
    rgba(252, 188, 28, 1) 100%
  );
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 300ms;
  line-height: 1;
}
@media (max-width: 600px) {
  .buttonG a {
    font-size: 13px;
  }
}
.buttonG a.green {
  background: rgb(100 228 97);
  background: linear-gradient(90deg, rgb(25 188 112) 0%, rgb(100 228 97) 100%);
}
.buttonG a.blue {
  background: rgb(25 173 188);
  background: linear-gradient(90deg, rgb(25 173 188) 0%, rgb(97 152 228) 100%);
}
.buttonG a:hover {
  box-shadow: 0px 0px 10px rgb(252, 181, 28);
}
.buttonG a.green:hover {
  box-shadow: 0px 0px 10px rgb(25 188 112);
}
.buttonG a.blue:hover {
  box-shadow: 0px 0px 10px rgb(25 173 188);
}
.accordian-title {
  max-width: 750px;
  margin: 0 auto;
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Righteous";
  margin-bottom: 5px;
  color: gray;
}

.accordion .accordion-button {
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 0.8em;
  color: #fff;
}
.accordion-item {
  border-bottom-width: 3px;
}

#beginner-guide .accordion-button {
  background: rgb(251, 148, 63);
  background: linear-gradient(
    90deg,
    rgba(251, 148, 63, 1) 0%,
    rgba(252, 188, 28, 1) 100%
  );
}
#beginner-guide .accordion-item {
  border-color: orange;
}

#advanced-guide .accordion-button {
  background: rgb(100 228 97);
  background: linear-gradient(90deg, rgb(25 188 112) 0%, rgb(100 228 97) 100%);
}

#advanced-guide .accordion-item {
  border-color: rgb(54 197 128);
}

#faq .accordion-button {
  background: rgb(25 173 188);
  background: linear-gradient(90deg, rgb(25 173 188) 0%, rgb(97 152 228) 100%);
}
#faq .accordion-item {
  border-color: #24b4c4;
}

section#faqsex {
  background: #f1f1f1;
}

.centered {
  text-align: center;
}

.accordion-body {
  padding-top: 40px;
  padding-bottom: 30px;
}

.irows {
}
.irow {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solidrgb(162, 162, 162) 1;
}
.irow .num {
  flex: 0 1 5%;
  font-size: 25px;
}
.irow .title {
  flex: 0 1 35%;
  font-size: 20px;
}
.irow .message {
  flex: 0 1 50%;
  font-size: 15px;
}
/** Extras **/

.shimmer {
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#222),
    to(#222),
    color-stop(0.5, #fff)
  );
  background: -moz-gradient(
    linear,
    left top,
    right top,
    from(#222),
    to(#222),
    color-stop(0.5, #fff)
  );
  background: gradient(
    linear,
    left top,
    right top,
    from(#222),
    to(#222),
    color-stop(0.5, #fff)
  );
  -webkit-background-size: 125px 100%;
  -moz-background-size: 125px 100%;
  background-size: 125px 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-animation-name: shimmer;
  -moz-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #222;
}

@-moz-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

@-o-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

/**

FOOTER

**/

footer {
  background: #251728;
  color: #fff;
}
footer .xicon {
  margin-left: 15px;
  border-radius: 50%;
  max-width: 40px;
  max-height: 40px;
  display: inline-block;
}
footer .xicon img {
  border-radius: 50%;
  width: 100%;
}

/***

TRADING PAIRS

***/

nav.trading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  font-weight: bold;
  background: #251728;
  padding: 10px 0;
  margin: 0 0 25px;
}
@media (max-width: 650px) {
  nav.trading span {
    flex: 0 1 100%;
    font-size: 14px;
    text-align: center;
    margin-bottom: 4px;
  }
}
nav.trading a {
  font-size: 20px;
  padding: 5px 10px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 11px;
  text-decoration: none;
}
nav.trading a img {
  max-width: 50px;
  width: 100%;
  height: auto;
  padding-right: 5px;
}

/***

TESTIMONIALS


***/
.testimonials .card-title {
  font-family: "Righteous";
  font-size: 30px;
  color: Orange;
}
