/* CSS Loader styling here! */

/* Template CSS Big dot Loader */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #af7c03;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.8s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.8s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.8s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.8s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* Template CSS Big dot Loader */

.loader-back {
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
  position: fixed;
  left: 0;
  top: 0;
}

.display-loader {
  /* display: none; */
}
/* CSS Loader styling ABOVE here! */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  /* font-family: "Montserrat", sans-serif; */
}

button:focus {
  background-color: #b18111 !important;
}

.divider {
  height: 15px !important;
  width: 90px;
  background-color: #af7c03 !important;
  margin: auto;
}

.header,
.custom-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

#mask {
  width: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 21;
  left: 0;
  height: 500px;
  /* border: solid red */
}

.live_market_track {
  /* border: solid red; */
  overflow: hidden;
  height: 45px;
}



/* DropDown - Header Below */
.Dropdown-header {
  position: fixed;
  top: -100%;
  opacity: 0;
  z-index: 10;
  width: 100%;
  padding: 8px 15px;
  /* border: solid red; */
  box-shadow: 0px 2px 12px black;
  /* border-bottom: solid 1px #af7b032f; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background-color: #0a0908;
  transition: top .3s ease, opacity 1s ease;
}
/* DropDown - Header Above */



.header {
  position: absolute;
  top: 2px;
  /* left: 1%;
  right: 1%; */
  z-index: 10;
  width: 100%;
  padding: 5px 15px;
  /* border: solid red; */
  /* box-shadow: 0px 2px 8px rgb(36, 36, 36); */
  /* border-bottom: solid 1px #af7b0354; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: rgba(10, 10, 10, 0.158) */
}
@media (min-width: 992px) {
  .header,
  .Dropdown-header
   {    padding: 5px 40px !important;
  }
}




.logo {
  /* border: solid blue; */
  padding: 6px;
  cursor: pointer;
}

.logo img {
  /* border: solid green; */
  width: 90px;
  min-width: 30px;
}
@media (min-width: 922px) {
  .logo img {
    padding-top: 8px;
    margin-left: 3px;
    /* border: solid red; */
  }
}

.links {
  /* margin-left: 20px; */
}

.links li {
  display: inline-block;
  /* margin-left: 43px; */
}

.links a {
  display: block;
  color: #aaaaaa;
  padding: 5% 20px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.links a:hover {
  color: #ffffff;
  transition: color 0.3s ease;
}

/* MOBILE MENU OPENER */
.mobile_menu_btn button {
  border: none;
  color: black !important;
  font-weight: 600;
  padding: 9px 13px;
  margin-right: 5px;
  /* padding-top: 6px; */
  background-color: #f8c142;
  border-radius: 2px;
  text-transform: lowercase;
}

.mobile_menu_btn i {
  font-size: 20px;
  font-weight: 800;
}

/* MOBILE MENU REVEAL */
.mobile_menu_links ul {
  /* border: solid red !important; */
  width: 78%;
  text-align: center;
  padding: 30px 0;
  color: white;
  background-color: #0a0908 !important;
}

.mobile_menu_links li > h3 {
  color: #7a7a7a;
  font-size: 18px !important;
  font-weight: 600 !important;
  /* border: solid red !important; */
}

.mobile_menu_links li {
  margin: 10px 0;
}

.mobile_menu_links a {
  text-transform: capitalize;
  color: rgb(206, 203, 203) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
}

.mobile_menu_links a:hover {
  background-color: #161513;
}

.mobile_menu_links li > a > button {
  border: solid #af7c03;
  color: #af7c03;
  font-weight: 600;
  padding: 10px 60px;
  background: transparent;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 5px 0;
}

.hero-intro {
  margin-top: 40px;
  padding: 0 20px;
}
@media (max-width: 500px) {
  .hero-intro {
    margin-top: 10px;
    text-align: center !important;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@600;700;800&display=swap');

.hero-intro h1 {
  text-transform: uppercase;
  font-size: 54px;
  font-weight: 500;
  font-family: 'Roboto Slab', serif;
  color: #fdc239;
  /* border: solid red; */
}
@media (max-width: 500px) {
  .hero-intro h1 {
    font-size: 22px;
    font-weight: 700;
  }
}

.hero-intro p {
  /* border: solid red; */
  margin: 40px 0;
  font-size: 16px;
  text-transform: capitalize;
}

button {
  cursor: pointer;
}

.action-btn {
  /* border: solid red; */
  align-items: center;
}

.action-btn > .signup > button {
  border: 2px solid #ce9104;
  color: #ce9104;
  font-weight: 700;
  padding: 10px 20px;
  background: transparent;
  border-radius: 2px;
  text-transform: uppercase;
}

.links .login > button {
  border: none;
  color: black !important;
  font-weight: 600;
  padding: 10px 20px;
  background-color: #ce9104;
  border-radius: 1px;
  text-transform: uppercase;
}

.links .login > button:hover {
  background-color: #a87602;
  transition: all 0.3s ease-out;
}

.action-btn > .login > button {
  border: solid #ce9104;
  color: black;
  font-weight: 600;
  padding: 10px 8px;
  background-color: #ce9104;
  border-radius: 2px;
  text-transform: uppercase;
  margin: 10px 8px;
}

#banner .slides img {
  filter: brightness(20%);
  /* -webkit-mask-image:  rgba(0, 0, 0, 1);
    mask-image:  rgba(0, 0, 0, 1); */
}

#banner {
  /* border: solid red; */
  background-color: black;
  /* max-height: 600px; */
  height: 610px;
}

/* Slide Indicator */
.indicator-item {
  background-color: #272525 !important;
}

.active {
  background-color: #af7c03 !important;
}

/* SERVICES */
#services {
  text-align: left !important;
  background-color: #0a0908;
  color: white;
  /* border: solid red; */
  height: auto;
  padding-top: 70px;
  padding-bottom: 50px;
}

#services h2 {
  /* border: solid red; */
  width: fit-content;
  margin: auto;
  padding: 20px 0;
}


#services p {
  font-size: 16px;
  padding: 50px 1em;
  /* border: solid red; */
  width: fit-content;
  margin: auto;
  text-transform: lowercase;
  /* font-weight: 800; */
  color: #575551;
  font-family: "Noto sans Jp";
}

.services-tab {
  /* border: solid red; */
  /* background-color: #272221; */
  /* margin-left: 1.8% !important; */
  /* width: 75%; */
}
@media (max-width: 500px) {
  .services-tab {
    margin-left: 1.8% !important;
  }
}

.tab {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 10px;
  padding: 1em 2em;
  height: 150px;
  text-align: left;
  width: 100% !important;
  width: fit-content;
  border-radius: 2px;
  transition: all 0.4s ease-in;
  background-color: #16161681;
  border: 1px solid #42424231 !important;
}
@media (max-width: 500px) {
  .tab {
    border: none !important;
  }
}

.tab:hover {
  border: 2px solid #af7b0352 !important;
}

.tab img {
  /* border: solid red; */
  width: 40px;
  margin: 10px 0;
}
@media (max-width: 500px) {
  .tab img {
    width: 30px;
  }
}

.tab span {
  color: #575551;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 700;
}


#services .other-info .col > p:not(.bitcoin-bag) {
  border: solid rgba(43, 43, 43, 0.644) 1px !important;
  margin: 10px 0;
  margin-left: 40px;
  padding: 2em;
  background-color: #16161681;
  border-radius: 4px;
  box-shadow: 5px 5px 10px #0000;
}

.bitcoin-bag {
  /* border: solid red 1px; */
  margin-top: 5em;
  /* padding-right: 10px; */
}

.bitcoin-bag img {
  width: 240px;
  filter: brightness(60%)
}

/* ABOUT SECTION */
h2 {
  margin-top: 0 !important;
  /* border: solid red; */
  font-size: 26px !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  font-family: 'Roboto Slab', serif !important;
}

#about {
  padding: 35px 0;
  background: #0a0908;
  color: white;
  height: auto;
  text-align: left;
  /* border: solid; */
}


.about-header {
  /* top: 5px !important; */
  padding: 8px 20px !important;
  border-bottom: solid 1px rgba(192, 192, 192, 0.25);
  /* background: rgba(0, 0, 0, .4); */
  /* border: solid red; */
}

@media(min-width: 992px) {
  .about-header {
    padding: 8px 40px !important;
  }
}



.about-divider {
  width: 95%;
  margin: 20px auto;
  border-top: solid 1px rgb(56, 56, 56);
}

#about > .custom-container {
  margin-top: 380px;
  padding: 40px;
}

#about > .custom-container > .container p {
  /* border: solid red; */
  width: 400px;
  text-align: right;
}
@media (max-width: 600px) {
  #about > .custom-container > .container p {
    width: 100%;
  }
}


#about h2 {
  /* border: solid red; */
  color: #9e9e9e;
  width: fit-content;
  margin-bottom: 30px;
  font-size: 20px !important;
  font-weight: 700;
  /* padding: 20px 0; */
  text-transform: capitalize;
}
@media (max-width: 500px) {
  #about h2 {
    margin-right: 23px;
  }
}



.about-banner {
  /* margin-top: 94px; */
  height: 380px;
  width: 100%;
  border-bottom: solid rgb(59, 59, 59) 2px;
  display: flex;
  align-items: center;
  background-image: url("../img/bitcoin.jpg");
  background-size: 100%;
  background-position: 20% 73%;
  background-repeat: no-repeat;
  filter: brightness(75%);
}


.about-banner h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  transform: translateY(45px);
  text-shadow: 1px 1px 25px rgba(0, 0, 0, 0.726);
  /* font-family: "Montserrat", sans-serif !important; */
  font-family: 'Roboto Slab', serif !important;
}

.about-banner h2 {
  margin: 20px auto;
  color: #f8c142;
  font-weight: 600;
}


#about .about-header {
  /* border: solid #c28803 1px; */
  padding: 0 !important;
  font-size: 16px;
  /* text-transform: capitalize !important; */
  font-family: 'Poppins', sans-serif;
}

.about-header .links a {
  display: block;
  color: #cecece;
  padding: 5% 20px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  text-shadow: 1px 1px 18px rgba(0, 0, 0, 0.689);
}



#about p {
  line-height: 23px;
  font-size: 16px;
  /* font-weight: 400; */
  text-align: left !important;
  color: #757575;
  font-family: "Noto Sans JP", sans-serif;
}

#about button:hover {
  background-color: #af7c03;
  color: black;
}



/* EXPERTS */
#experts {
  padding-bottom: 50px;
  margin: 15px 0;
}

#experts .expert_header_divider {
  margin: 20px auto !important;
  height: 18px;
  /* border: solid red; */
}

#experts > .container {
  text-align: right;
}



@media (min-width: 992px) {
  #experts .row {
    /* border: solid green; */
    padding-right: 6%;
  }
  #experts .row .col {
    /* padding-left: 10%; */
  }
}
@media (max-width: 500px) {
  #experts .row {
    /* border: solid red; */
    padding-left: none !important;
  }
}



#experts h2 {
  /* border: solid red; */
  padding-top: 50px;
  width: fit-content;
  margin: 20px 0;
  padding: 35px 0;
  font-size: 30px !important;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
}



#experts h2::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 80px;
  background-color: #c28803;
  margin: 0 10px;
  transform: translate(-280px, 16px);
}
@media (max-width: 500px) {
  #experts  h2::after,
  #experts  h2::before {
    width: 13px;
  }
}




#experts .card {
  /* border-radius: 10px; */
  max-height: 300px;
  min-height: 300px;
  /* border: solid red; */
  background: #131313 !important;
}

#experts .card-image > img {
  /* border-radius: 10px; */
  max-height: 170px !important;
  object-fit: cover;
}

#experts .card-title {
  color: #ffff !important;
  font-weight: 600;
  font-size: 13px;
  /* border: solid red; */
  margin-bottom: 10px !important;
  padding: 5px 16px !important;
  border-radius: 0 20px 20px 0;
  background-color: rgba(0, 0, 0, 0.7);
}

#experts .divider {
  width: 35%;
  height: 2px !important;
  margin-top: -14px;
  margin-bottom: 0px !important;
  margin-right: 0 !important;
  color: black !important;
  background-color: #f5a628 !important;
  /* transform: translateY(-5px); */
}

#experts .custom-divider {
  height: 7px;
  width: 50%;
  margin: 20px auto;
  border-top: solid 5px#f5a628;
  border-radius: 200%;
}

#experts .card p {
  text-align: right;
  color: rgb(185, 184, 184);
  font-weight: 600;
  font-size: 14px !important;
  line-height: 13px;
  font-family: "Poppins", sans-serif;
}

#experts .card span {
  font-size: 12px;
  color: rgb(185, 184, 184);
}





/* CERTIFICATE OF INCORPORATION */
#certificate {
  text-align: center;
  padding: 20px 0;
}


#certificate h2 {
  /* border: solid red; */
  padding-top: 50px;
  width: fit-content;
  margin: 20px auto;
  padding: 35px 0;
  font-size: 30px !important;
  font-weight: 600;
  color: white;
  /* text-transform: capitalize; */
}



#certificate h2::before,
#certificate h2::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 35px;
  background-color: #c28803;
  margin: 0 10px;
  transform: translate(0, -9px);
}
@media (max-width: 500px) {
  #certificate  h2::after,
  #certificate  h2::before {
    width: 13px;
  }
}


#certificate img {
  border: solid #c28803 2px;
  padding: 5px;
  width: 100%;
  max-height: 300px;
}





/* HOW IT WORKS SECTION */
#how-it-works {
  height: auto;
  background-image: url("/img/Trading-Laptop.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}
@media (max-width: 600px) {
  #how-it-works {
    height: auto !important;
  }
}

.mask-container {
  text-align: center;
  padding: 10px 0;
  /* border: solid red; */
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.96);
}

.mask-container h2 {
  /* border: solid red; */
  padding-top: 50px;
  width: fit-content;
  margin-top: auto;
  margin: auto;
  padding: 20px 0;
  font-size: 25px !important;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
}

.steps {
  /* border: solid red; */
  margin-top: 10px;
  /* padding-left: 50px; */
  text-align: center;
}

.round {
  color: #0a0908;
  margin: 0px auto;
  /* border: solid red; */
  background-color: #af7c03;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* .round::after,
.round::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100px;
  background-color: #dadada;
  margin: 0 18px;
  position: relative;
  top: -6px;
}
@media (max-width: 500px) {
  .round::after,
  .round::before {
    width: 50px;
  }
} */




.round > div > .number {
  font-size: 30px;
  font-weight: 900;
}

.round > div > span {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

#how-it-works .col {
  margin: 35px 0;
}


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");



.investment-plans {
  color: white;
  margin-top: 60px;
  margin-top: -138px;
  margin-bottom: 50px;
}



.investment-plans h2::after,
.investment-plans h2::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100px;
  background-color: #af7c03;
  margin: 0 18px;
  position: relative;
  top: -6px;
}
@media (max-width: 500px) {
  .investment-plans h2::after,
  .investment-plans h2::before {
    width: 50px;
  }
}


.investment-plans p {
  padding: 30px 0;
  text-transform: capitalize;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

.custom-card {
  /* border: solid red; */
  display: flex;
  flex-direction: column-reverse;
  margin: 25px 5px;
  /* box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.74); */
  /* padding: 50px 0; */
}
@media (max-width: 500px) {
  .custom-card {
    max-width: 325px;
  }
}

.custom-card:hover {
  box-shadow: 2px 3px 0px rgba(0, 0, 0, 0.74);
}

.custom-card:hover .card-content p {
  color: #af7c03;
}



.card-header {
  color: black;
  /* border: solid green; */
  border-bottom: solid black 10px;
  padding: 10px 0;
  background-color: #af7c03;
  font-weight: 500;
  font-size: 18px;
  font-family: "Noto sans Jp", sans-serif;
  text-transform: capitalize;
}



.profit {
  font-size: 13px;
  padding: 3px 5px;
  margin: 0 6px;
  text-transform: capitalize;
  border-left: solid 3px #af7c03;
  /* margin-left: 10px !important; */
}




.card-content {
  /* border: solid rgba(43, 43, 43, 0.644) 1px !important; */
  padding: 25px 0;
  background: rgba(66, 66, 52, 0.233);
  transition: all .4s ease;
}

.card-content:hover {
  background: rgba(0, 0, 0, 0.2);
  border: 0;
}

.card-content p {
  margin-right: 3px !important;
  font-size: 65px;
  font-weight: 800;
  color: rgb(168, 152, 102);
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  padding: 5px 0 !important;
  font-family: "Open Sans", sans-serif;
  /* border: solid red; */
}


.card-content li {
  text-transform: capitalize;
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: 'Noto sans jp', sans-serif;
  /* font-weight: 600; */
}

.card-content button {
  border: none;
  color: black;
  font-weight: 600;
  margin: 18px 0;
  padding: 10px 55px;
  background-color: #af7c03;
  border-radius: 1px;
  text-transform: uppercase;
}


#profit {
  padding: 35px 0;
  background-color: #0a0908;
  color: #af7c03;
}



#profit > .container > h2 {
  /* border: solid red; */
  width: fit-content;
  margin: 25px auto;
  padding: 5px 0;
  font-size: 30px;
  font-weight: 800;
}

#profit .card {
  border-radius: 1px;
  background-color: black !important;
}

#profit .card:hover {
  background-color: black !important;
}

#profit .profit-calculator select {
  border : solid #af7c03 1px;
  background-color: transparent;
  color: #ce9105;
}

#profit .input-field span {
  color: rgb(255 229 181);
}

#profit input {
  padding-left: 7px;
  border: solid #af7c03 1px;
  color: #ce9105 !important;
}

#profit input::placeholder {
  color: #ce9105;
}

#profit .dropdown-content li>span {
  color: black !important;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
}

.profit-result {
  padding: 13px;
  font-size: 16px !important;
  font-weight: 700 !important;
  background-color: transparent !important;
  /* border: solid #af7c03 1px; */
}

/* VIDEO SECTION */
#video-section {
  padding: 55px 0;
  width: 100%;
  /* border: soplid #af7c03; */
  background-color: #0a0908;
}

#video-section .container {
  text-align: center;
}

iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  border: solid rgb(92, 92, 92) 2px;
}@media(max-width: 500px) {
  iframe {
    width: 100%;
  }
}

/* MARKET INFO HERE! */
#market-info {
  background-color: black;
  height: auto;
  background-image: url("/img/crypto-chart.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border: solid red; */
}

#market-info .container {
  padding: 55px 0;
  /* border: solid red; */
}

#market-info > .container > h2 {
  /* border: solid red; */
  padding-top: 50px;
  width: fit-content;
  margin: auto;
  padding: 20px 0;
  font-size: 30px;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
}

.crypto-calculator {
  margin: 40px 0;
}

/* TESTMONIAL SECTION */
#testimonial {
  background-color: #0a0908;
  /* height: fit-content; */
  padding: 10px;
  color: white;
  text-align: center;
}

#testimonial h2 {
  /* border: solid red; */
  padding-top: 50px;
  width: fit-content;
  margin: auto;
  padding: 35px 0;
  font-size: 25px !important;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
}

#testimonial .container {
  /* border: solid red; */
}

#testimonial .slides {
  background: black !important;
}

.person {
  /* border: solid red; */
  width: 390px;
  height: auto;
  color: white;
  text-align: center !important;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .person {
    /* margin-top: 80px; */
  }
}

.person p {
  color: #af7b03e0 !important;
  text-transform: capitalize;
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  /* border: solid red; */
  border-radius: 3%;
  background: #131313; /* af7c03 */
  padding: 15px;
  transform: translateX(-30px);
}
@media (max-width: 500px) {
  .person p {
    line-height: 30px !important;
    font-size: 22px !important;
    /* border: solid red; */
  }
}

.person img {
  margin: 5px;
  width: 200px !important;
  border-radius: 4%;
  object-fit: contain !important;
  object-position: 0px 30px !important;
  /* border: solid green; */
}

.img-container {
  margin-right: 10px;
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #af7c03;
  border-radius: 5%;
}

/* REFERRAL SECTION */
#referral {
  background:radial-gradient(rgb(17, 17, 17), black);
  padding: 40px 0;
  color: white;
  text-align: center;
  /* border-top: solid 1px rgb(22, 26, 36); */
}

#referral > .container {
  /* border: solid red; */
}

#referral h2 {
  padding-top: 20px;
  width: fit-content;
  margin: auto;
  padding: 20px 0;
  font-weight: 600;
  font-size: 23px !important;
  color: white;
  text-transform: capitalize;
}

#referral h2::after,
#referral h2::before {
  content: "";
  display: inline-block;
  height: 3px;
  width: 35px;
  background-color: #af7c03;
  margin: 0 10px;
}
@media (max-width: 500px) {
  #referral h2::after,
  #referral h2::before {
    width: 13px;
  }
}

#referral span {
  display: inline-block;
  color: rgb(150, 150, 150);
  width: 98% !important;
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto sans J ", sans-serif;
  text-transform: capitalize;
  /* border: solid red !important; */
  padding: 10px !important;
}

/* #referral span::after,
#referral span::before {
  content: "";
  display: inline-block;
  height: 3px;
  width: 23px;
  background-color: #af7c03;
  margin: 0 5px;
} */

.highlighted {
  font-size: 50px !important;
  font-weight: 900;
  color: #feb43c;
  line-height: 30px;
  margin: 1em;
}

#referral button {
  font-size: 13px;
  margin-top: -18px;
  border: none;
  font-weight: 700 !important;
  padding: 10px;
  border: solid 1px #e7a710;
  color: #e7a710 !important;
  background: transparent;
  border-radius: 2px;
  text-transform: uppercase;
}

#referral button:hover {
  background: #e7a710ab;
  color: #000 !important;
}


.call_to_action {
  /* border: solid grey; */
  margin: 20px;
}

.call_to_action p {
  text-transform: capitalize;
  font-size: 25px !important;
  font-weight: 800;
  font-family: "Noto sans Jp", sans-serif;
}

/* FOOTER SECTION */
#footer-section {
  background:radial-gradient(rgb(17, 17, 17), black);
  height: auto;
  padding: 40px 20px;
  color: white;
  border-top: solid 1px rgb(22, 26, 36);
  /* text-align: center; */
}
@media (max-width: 500px) {
  #footer-section {
    text-align: left !important;
  }
}

#footer-section .custom-container {
  /* border: solid red; */
}

#footer-section .col {
  /* border: solid red; */
  text-align: left;
  color: #7a7a7a;
}
@media (min-width: 992px) {
  #footer-section .col {
    margin-left: 70px;
    text-align: left;
  }
}

#footer-section h3,
#footer-section .footer-heading {
  padding-top: 50px;
  width: fit-content;
  margin: 50px auto;
  padding: 75px 0 !important;
  font-size: 16px;
  /* font-weight: 600; */
  color: #cfcfda;
  font-family: "Noto sans Jp", sans-serif;
  /* border: solid red; */
  text-transform: capitalize;
}
@media (max-width: 600px) {
  #footer-section .footer-heading {
    margin-left: 0;
  }
}

#footer-section p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

#footer-section i {
  margin-right: 20px;
  color: #e4a002;
}

.footer-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#footer-section p,
#footer-section a {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
  color: #949496;
  text-transform: uppercase;
}

#footer-section .divider {
  width: 100%;
  margin: 15px 0;
  height: 1px !important;
  background-color: grey !important;
}
@media (max-width: 500px) {
  #footer-section .divider {
    display: none;
  }
}

.crypto-logo {
  margin-right: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

#footer-section .crypto-coins img {
  width: 120px;
  display: block;
  margin: 28px 0;
  /* border: solid red !important; */
}

.copyright {
  color: #7e6f6f;
  font-size: 13px;
  font-weight: 500;
  padding-top: 10px;
  margin: 20px 0;
  text-transform: uppercase;
}
