/* this coding created by web developer/ Ahmed fawzy mohamed */
/* personal email: ahmedfawzyalhegazy2020@gmail.com */
/* whatsapp: +201094848584 */
/* website: https://orion-comp.com/ */
/* formal email: info@orion-comp.com */
/* linkedin account: https://www.linkedin.com/in/ahmed-fawzy-mohamed-48a771202 */

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --bg-blue: #13162e;
  --lightgold: #e2c68a;
  --gold: #99825d;
  --white: #ffffff;
  --black: #000;
  --gray: #2b2b2b;
  --lightwhite: #f5f3ef;
  --main-transition: 0.25s;
}
::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background-color: var(--gray);
}
::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover {
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: var(--lightwhite);
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
section {
  overflow: hidden;
}
.manibtn {
  background-color: var(--gold);
  color: var(--black);
  padding: 6px 12px;
  display: inline-block;
  border: 1px solid var(--black);
  font-size: 14px;
  transition: all 0.25s ease-in-out;
}
.manibtn:hover {
  background-color: var(--lightgreen);
  border-color: var(--lightgreen);
}
.loginbtn {
  background-color: var(--lightgold);
  border-radius: 5px 0px 0px 0px;
  position: relative;
  display: inline-block;
  color: #000;
  padding: 3px 5px;
  width: 75px;
  text-align: center;
  margin-right: 11px;
  transition: var(--main-transition);
}
.loginbtn:hover {
  transform: translate(10px, -10px);
}
.loginbtn::after {
  content: " ";
  display: block;
  border-top: 15px solid var(--lightgold);
  border-right: 15px solid transparent;
  border-bottom: 15.5px solid transparent;
  border-left: 15px solid var(--lightgold);
  position: absolute;
  right: -28px;
  bottom: 0px;
}
.signbtn {
  background-color: var(--gold);
  border-radius: 0px 0px 5px 0px;
  position: relative;
  display: inline-block;
  color: #000;
  padding: 3px 5px;
  width: 75px;
  text-align: center;
  margin-left: 11px;
  transition: var(--main-transition);
}
.signbtn:hover {
  transform: translate(10px, -10px);
}
.signbtn::after {
  content: " ";
  display: block;
  border-top: 15px solid transparent;
  border-right: 15px solid var(--gold);
  border-bottom: 16px solid var(--gold);
  border-left: 15px solid transparent;
  position: absolute;
  left: -28px;
  bottom: 0px;
}
.gruopbtns {
}
.graybtn {
  background-color: var(--gray);
  color: var(--white);
  padding: 8px 25px;
  border-radius: 15px 0px;
  display: inline-block;
  text-align: center;
  transition: var(--main-transition);
}
.goldbtn {
  background-color: var(--gold);
  color: var(--white);
  padding: 8px 25px;
  border-radius: 15px 0px;
  display: inline-block;
  text-align: center;
  transition: var(--main-transition);
}
.graybtn:hover,
.goldbtn:hover {
  border-radius: 0px 15px;
}
.arrowbtn {
  width: 30px;
  text-align: center;
  display: inline-block;
  transform: rotate(45deg);
}
.fullwidthbtn {
  padding: 30px 0px;
}
.fullwidthbtn a {
  width: 100%;
  text-align: center;
}
.h1 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
.h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--white);
}
.titlewparag {
  margin-bottom: 50px;
}
.titlewparag h2 {
  font-size: 60px;
  color: var(--gold);
}
.titlewparag p {
  font-size: 20px;
  color: var(--gold);
  width: 80%;
}
@media (max-width: 576px) {
  .titlewparag h2 {
    font-size: 36px;
  }
  .titlewparag p {
    font-size: 16px;
    width: 100%;
  }
  .h2 {
    font-size: 20px;
  }
  .loginbtn::after,
  .signbtn::after {
    display: none !important;
  }
  .loginbtn,
  .signbtn {
    margin: 0px !important;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .titlewparag h2 {
    font-size: 36px;
  }
  .titlewparag p {
    font-size: 16px;
    width: 100%;
  }
  .loginbtn::after,
  .signbtn::after {
    display: none !important;
  }
  .loginbtn,
  .signbtn {
    margin: 0px !important;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .loginbtn::after,
  .signbtn::after {
    display: none !important;
  }
  .loginbtn,
  .signbtn {
    margin: 0px !important;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* media query  */
@media (max-width: 320px) {
  .container {
    max-width: 300px !important;
  }
}
@media (min-width: 360px) {
  .container {
    max-width: 340px !important;
  }
}
@media (min-width: 410px) {
  .container {
    max-width: 390px !important;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}
@media (min-width: 769px) {
  .container {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px !important;
  }
}

/* for very lage screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1440px !important;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1560px !important;
  }
}

@media (min-width: 2000px) {
  .container {
    max-width: 1680px !important;
  }
}

@media (min-width: 2400px) {
  .container {
    max-width: 1920px !important;
  }
}

@media (min-width: 2800px) {
  .container {
    max-width: 2100px !important;
  }
}

@media (min-width: 3200px) {
  .container {
    max-width: 2300px !important;
  }
}
/* End @media */

/* End Global Rules */

/* Start header */
.header-ltr {
  direction: ltr;
  text-align: right;
}

.header-ltr .header-logo {
  flex-shrink: 0;
  margin-left: 10px;
}

header {
  background-color: var(--white);
  box-shadow: 0px 1px 1px #ddd;
  width: 100%;
}

header .container {
  padding: 0px 0px;
}

header .mainheadcoont {
  display: flex !important;
  justify-content: space-between;
  gap: 50px;
}

header .upheadbtns {
  gap: 20px;
}

header .deskmenu {
  gap: 100px;
}

header .deskmenu > ul {
  gap: 20px;
}

header .langswitch span {
  color: var(--gold);
}

header .headerlogo {
  font-size: 20px;
  font-weight: bold;
}

header .headerlogo img {
  height: 65px;
}

.header-link {
  position: relative;
  transition: color 0.3s;
  color: var(--green);
  font-size: 16px;
}

.header-link:hover {
  color: var(--gold);
}

.header-link::after {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--gold);
  width: 0;
  transition: 0.3s;
  margin-top: 4px;
}

.header-link:hover::after {
  width: 100%;
}

/* Mobile header actions */
.mobile-head-actions .mobile-login {
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  color: var(--green);
}

.mobile-head-actions .mobile-login:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: right 0.28s ease;
  overflow-y: auto;
  z-index: 999999999999999;
  outline: none;
}

.mobile-sidebar.active {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  display: none;
}

.overlay.active {
  display: block;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* تحسين لمسافات وروابط السايدبار */
.mobile-sidebar .nav-link {
  padding: 10px 8px;
  border-radius: 8px;
}

.mobile-sidebar .nav-link:hover {
  background: rgba(0, 0, 0, 0.04);
}
.mobile-sidebar .logo img {
  height: 50px;
}
/* Mobile - Small */
@media (max-width: 576px) {
  .header-ltr .header-logo img {
    height: 55px !important;
  }

  header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999999999;
  }

  header .mainheadcoont {
    gap: 10px;
  }

  /* عشان المحتوى ما يطلع تحت الهيدر */
  body {
    padding-top: 70px;
  }

  .mobile-sidebar {
    width: 300px;
    right: -300px;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 769px) {
  header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999999999;
  }

  body {
    padding-top: 85px;
  }

  .mobile-sidebar {
    width: 360px;
    right: -360px;
  }
}

@media (min-width: 770px) and (max-width: 992px) {
  header .mainheadcoont {
    gap: 30px;
  }

  header .deskmenu {
    gap: 30px;
  }

  header .mainheadcoont {
    display: flex !important;
    justify-content: space-between;
    gap: 100px;
  }
}

@media (min-width: 993px) and (max-width: 1199px) {
  header .mainheadcoont {
    gap: 10px;
  }

  header .mainheadcoont {
    display: flex !important;
    justify-content: center;
  }

  header .deskmenu {
    gap: 30px;
  }

  header .upheadbtns {
    gap: 5px;
  }

  .header-link {
    font-size: 14px;
  }

  header .headerlogo {
    font-size: 16px;
  }

  header .headerlogo img {
    height: 60px;
  }

  header .greenbtn,
  header .greentransbtn {
    font-size: 12px;
    padding: 7px 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  header .mainheadcoont {
    gap: 10px;
  }

  header .deskmenu {
    gap: 50px;
  }
}
/* End header */

/* Start h1sce */
.h1sce {
}
.h1sce .container {
  padding: 100px 0px;
}
.h1sce h1 {
}
.h1sce p {
  font-size: 24px;
  color: var(--gray);
  text-align: center;
}
/* End h1sce */

/* Start footer */
footer {
  padding: 50px 0px;
}
footer .container {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--lightgold);
}
footer .footlogo {
  height: 100%;
  width: 80%;
  background-color: var(--gold);
  text-align: center;
  border-radius: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(1.3);
}
footer .footlogo img {
  width: 250px;
  display: inline-block;
  margin-bottom: 20px;
}
footer .footlogo h5 {
  font-size: 16px;
}
footer .footlogo span {
  font-size: 13px;
}
footer h6 {
  font-weight: bold;
  margin-bottom: 15px;
}
footer .uplinks a {
  display: block;
  font-size: 13px;
  color: var(--black);
  padding: 2px 0px;
  transition: var(--main-transition);
}
footer .uplinks a:hover {
  text-decoration: underline;
}
footer .footsocial {
  text-align: right;
  margin-top: -30px;
}
footer .footsocial a {
  display: inline-block;
}
footer .footsocial a span {
  display: inline-block;
  width: 30px;
  text-align: center;
  color: var(--black);
  font-size: 20px;
}
@media (max-width: 576px) {
  footer h6 {
    margin-bottom: 5px;
  }
  footer .row > div {
    margin-bottom: 20px;
  }
  footer .footlogo {
    height: 180px;
    width: 100%;
    transform: scale(1.2);
    margin-bottom: 40px;
  }
  footer .footsocial {
    text-align: center;
    margin-top: 0px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  footer h6 {
    margin-bottom: 5px;
  }
  footer .row > div {
    margin-bottom: 20px;
  }
  footer .footlogo {
    height: 180px;
    width: 100%;
    transform: scale(1.12);
    margin-bottom: 40px;
    margin-top: -20px;
  }
  footer .footsocial {
    text-align: center;
    margin-top: 0px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  footer .row > div {
    margin-bottom: 20px;
  }
  footer .footlogo {
    height: 180px;
    width: 100%;
    transform: scale(1.12);
    margin-bottom: 40px;
    margin-top: -20px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  footer .footlogo img {
    width: 190px;
  }
}
/* End footer */

/* Start tradingview-widget */
.tradingview-widget-container {
  width: 100% !important;
  height: 580px !important;
}
/* End tradingview-widget */

/* Start homeintro */
.homeintro {
  height: calc(100vb - 81px);
  position: relative;
}
.homeintro > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeintro .maincont {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.homeintro h1 {
  font-size: 120px;
  color: var(--white);
}
.homeintro p {
  font-size: 28px;
  color: var(--white);
  text-align: center;
  width: 65%;
}
@media (max-width: 576px) {
  .homeintro .maincont {
    padding: 20px;
  }
  .homeintro h1 {
    font-size: 54px;
    text-align: center;
  }
  .homeintro p {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .homeintro h1 {
    font-size: 70px;
    text-align: center;
  }
  .homeintro p {
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .homeintro h1 {
    font-size: 80px;
    text-align: center;
  }
}
/* End homeintro */

/* Start advanctrad */
.advanctrad {
  background-color: var(--bg-blue);
}
.advanctrad .container {
  padding: 50px 0px;
  text-align: center;
}
.advanctrad video {
  width: 60%;
  margin: auto;
}
@media (max-width: 576px) {
  .advanctrad video {
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .advanctrad video {
    width: 100%;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .advanctrad video {
    width: 100%;
  }
}
/* End advanctrad */

/* Start powerslider */
.powerslider {
  position: relative;
  padding: 50px 50px;
  background-color: var(--bg-blue);
}
.explplatforms {
  background-color: #224944;
}
.deeperlook {
  background-color: #f2f9e6;
}
.owl-carousel {
  direction: ltr !important;
}
.deeperlook h2 {
  color: #224944;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: bold;
}
.powerslider .slidebox {
  text-align: center;
  padding: 10px 0px;
  width: 100%;
  position: relative;
}
.powerslider .slidetext {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  text-align: start;
  padding: 40px 20px 20px 20px;
  z-index: 99999999;
}
.powerslider .slidetext h5 {
  color: var(--gold);
}
.powerslider .slidetext p {
  color: var(--white);
  font-size: 20px;
}
.powerslider .slidebox img,
.powerslider .slidebox video {
  width: 400px;
  margin: auto;
  border-radius: 20px;
  transition: var(--main-transition);
}
.powerslider .pluslink {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: end;
  padding: 30px;
  z-index: 99999999;
}
.powerslider .pluslink span {
  color: var(--white);
  font-size: 30px;
  transition: var(--main-transition);
}
.powerslider .pluslink span:hover {
  opacity: 0.7;
}
.powerslider .slidebox:hover img {
  transform: scale(0.95);
}
.powerslider .owl-nav,
.powerslider .owl-dots {
  display: none;
}

@media (max-width: 576px) {
  .powerslider {
    padding: 50px 15px;
  }
}
/* End powerslider */

/* Start fingedge */
.fingedge {
  background-color: #f2f9e6;
}
.fingedge .container {
  padding: 50px 0px;
}
.fingedge .edgetitle {
  margin-bottom: 50px;
}
.fingedge h1 {
  font-size: 120px;
  color: #224944;
  color: var(--gold);
}
.fingedge h4 {
  color: #878e81;
}
.fingedge .row {
  margin-bottom: 50px;
}
.fingedge .edgeitem h5 {
  color: var(--gold);
  font-size: 16px;
  font-weight: bold;
}
.fingedge .edgeitem p {
  color: #878e81;
}
.fingedge .startwith {
}
.fingedge .startwith h3 {
  color: var(--gold);
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .fingedge h1 {
    font-size: 50px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .fingedge h1 {
    font-size: 70px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .fingedge h1 {
    font-size: 90px;
  }
}
/* End fingedge */

/* Start ratesimg */
.ratesimg {
  background-color: #224944;
}
.ratesimg .container {
  padding: 100px 0px;
  text-align: center;
}
.ratesimg img {
}
@media (max-width: 576px) {
  .ratesimg img {
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .ratesimg img {
    width: 100%;
  }
}
/* End ratesimg */

/* Start levelup */
.levelup {
  height: calc(100vb - 81px);
  position: relative;
}
.levelup > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.levelup .maincont {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.levelup h1 {
  font-size: 90px;
  color: var(--white);
  text-align: center;
}
.levelup h1 span {
  color: var(--gold);
}
.levelup p {
  font-size: 28px;
  color: var(--white);
}
@media (max-width: 576px) {
  .levelup .maincont {
    padding: 50px 15px;
    text-align: center;
  }
  .levelup h1 {
    font-size: 40px;
  }
  .levelup p {
    font-size: 18px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .levelup .maincont {
    padding: 50px 15px;
    text-align: center;
  }
  .levelup h1 {
    font-size: 60px;
  }
  .levelup p {
    font-size: 22px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .levelup h1 {
    font-size: 80px;
  }
  .levelup p {
    text-align: center;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End levelup */

/* Start buildtrade */
.buildtrade {
  background-color: #f2f9e6;
}
.buildtrade .container {
  padding: 50px 0px;
}
.buildtrade .bulidbox > img,
.buildtrade .bulidbox > video {
  width: 100%;
  border-radius: 15px 0px;
}
.buildtrade .buildtext {
  padding: 20px 0px 0px 0px;
}
.buildtrade .buildtext h4 {
  color: var(--gold);
}
.buildtrade .buildtext p {
  color: #878e81;
}
.buildtrade .buildtext a {
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .buildtrade .row > div:first-of-type {
    margin-bottom: 50px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .buildtrade .row > div:first-of-type {
    margin-bottom: 50px;
  }
}
/* End buildtrade */

/* Start leverage */
.leverage {
  background-color: var(--white);
}
.leverage .container {
  padding: 50px 0px;
}
.leverage .row > div {
}
.leverage .leveragebox {
  background-color: #f1f9e7;
  position: relative;
  padding: 20px;
}
.leverage .leveragebox::after {
  content: " ";
  display: block;
  border-top: 30px solid #fff;
  border-right: 30px solid #fff;
  border-bottom: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  right: 0px;
  top: 0px;
}
.leverage .leveragebox > div:nth-of-type(1) {
  margin-bottom: 150px;
}
.leverage .leveragebox h3 {
  color: var(--gold);
  font-size: 30px;
}
.leverage .leveragebox span {
  color: var(--gray);
}
.leverage .leveragebox .downdv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.leverage .leveragebox .bigspan {
  color: var(--gold);
  font-size: 70px;
  font-weight: bold;
}
@media (max-width: 576px) {
  .leverage .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .leverage .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .leverage .row > div {
    margin-bottom: 30px;
  }
}
/* End leverage */

/* Start threepart */
.threepart {
  background-color: #224944;
}
.threepart .container {
  padding: 50px 0px;
}
.threepart .row > div {
}
.threepart .threepartbox {
  background-color: #f1f9e7;
  position: relative;
  padding: 20px;
  border-radius: 20px 0px;
  overflow: hidden;
}
.threepart .threepartbox > div:nth-of-type(1) {
  margin-bottom: 180px;
}
.threepart .threepartbox h3 {
  color: var(--gold);
  font-size: 30px;
}
.threepart .threepartbox span {
  color: var(--gray);
}
.threepart .threepartbox .downdv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.threepart .threepartbox .bignum {
  color: var(--gold);
  font-size: 250px;
  font-weight: bold;
  position: absolute;
  right: -35px;
  bottom: -17px;
  display: inline-block;
  line-height: 0.8;
  font-family: monospace;
}
@media (max-width: 576px) {
  .threepart .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .threepart .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .threepart .row > div {
    padding: 0px 5px;
  }
}
/* End threepart */

/* Start fundway */
.fundway {
  background-color: var(--white);
}
.fundway .container {
  padding: 50px 0px;
}
.fundway .fundcont {
  text-align: center;
}
.fundway .fundcont h4 {
  color: var(--gold);
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 50px;
}
.fundway .fundcont img {
  height: 50px;
  display: inline-block;
  margin-bottom: 50px;
}
.fundway .fundcont p {
  color: var(--gray);
}
@media (max-width: 576px) {
  .fundway .fundcont img {
    height: auto;
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .fundway .fundcont img {
    height: auto;
    width: 100%;
  }
}
/* End fundway */

/* Start tradeaward */
.tradeaward {
  background-color: #224944;
}
.tradeaward .container {
  padding: 50px 0px;
}
.tradeaward .trawardcont {
  text-align: center;
}
.tradeaward .trawardcont h3 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 30px;
}
.tradeaward .trawardcont img {
  width: 80%;
  display: inline-block;
  margin: auto;
}
.tradeaward .trawardcont .parags {
  margin-top: 50px;
}
.tradeaward .trawardcont .parags p {
  margin-bottom: 0px;
  color: var(--white);
}
@media (max-width: 576px) {
  .tradeaward .trawardcont img {
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .tradeaward .trawardcont img {
    width: 100%;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .tradeaward .trawardcont img {
    width: 100%;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End tradeaward */

/* Start strtrading */
.strtrading {
  background: url(../img/starttrading-img.svg) center/cover no-repeat;
}
.strtrading .container {
  padding: 150px 0px;
}
.strtrading .strtradingcont {
  text-align: center;
}
.strtrading .strtradingcont h1 {
  color: var(--white);
  font-size: 120px;
}
.strtrading .strtradingcont p {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .strtrading .strtradingcont h1 {
    font-size: 36px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .strtrading .strtradingcont h1 {
    font-size: 40px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .strtrading .strtradingcont h1 {
    font-size: 70px;
  }
}
/* End strtrading */

/* Start whoweare */
.whoweare {
  background-color: var(--bg-blue);
}
.whoweare .container {
  padding: 50px 0px;
}
.whoweare ul li {
  color: #959595;
  box-shadow: 1px 1px 2px var(--gold), -1px -1px 2px var(--gold);
  border-radius: 10px;
  padding: 10px 20px 10px 70px;
  margin-bottom: 10px;
  position: relative;
}
.whoweare ul li span {
  display: block;
  transition: all 0.3s ease;
  width: 40px;
  text-align: center;
  background-color: var(--dark);
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.whoweare ul li strong {
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}
.whoweare p {
  color: var(--txtcolor);
  font-size: 16px;
}
.whoweare img {
  width: 100%;
  border-radius: 20px 0px;
}
@media (max-width: 576px) {
  .whoweare .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .whoweare .row > div {
    margin-bottom: 30px;
  }
}
/* End whoweare */

/* Start ychoose */
.ychoose {
  background-color: var(--bg-blue);
}
.ychoose .container {
  padding: 50px 0px;
}
.ychoose .titlewparag p {
  color: var(--white);
}
.ychoose .choosebox span {
  display: inline-block;
  margin-bottom: 20px;
}
.ychoose .choosebox img {
  width: 50px;
}
.ychoose .choosebox h4 {
  color: var(--gold);
  font-size: 18px;
}
.ychoose .choosebox p {
  color: #959595;
  font-size: 14px;
}
/* End ychoose */

/* Start experteam */
.experteam {
  background-color: var(--bg-blue);
}
.experteam .container {
  padding: 50px 0px;
}
.experteam .titlewparag p {
  color: var(--white);
}
.experteam .teambox {
  text-align: center;
}
.experteam .teambox span {
  display: inline-block;
  margin-bottom: 20px;
}
.experteam .teambox img {
  display: block;
  margin: auto;
  margin-bottom: 20px;
  width: 300px;
  border-radius: 20px 0px;
}
.experteam .teambox h4 {
  color: var(--gold);
  font-size: 18px;
}
.experteam .teambox h6 {
  font-size: 12px;
  color: var(--gold);
}
.experteam .teambox p {
  color: #959595;
  font-size: 14px;
}
@media (max-width: 576px) {
  .experteam .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .experteam .row > div {
    margin-bottom: 30px;
  }
  .experteam .teambox img {
    width: 100%;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .experteam .teambox img {
    width: 100%;
  }
}
/* End experteam */

/* Start nextstep */
.nextstep .container {
  padding: 150px 0px;
}
.nextstep .strtradingcont {
  text-align: center;
}
.nextstep .strtradingcont h1 {
  color: var(--gold);
  font-size: 120px;
}
.nextstep .strtradingcont p {
  color: var(--black);
  font-size: 20px;
  margin-bottom: 30px;
}
.nextstep .strtradingcont img {
  height: 150px;
  display: inline-block;
  line-height: 0.5;
}
@media (max-width: 576px) {
  .nextstep .strtradingcont h1 {
    font-size: 50px;
  }
  .nextstep .strtradingcont img {
    height: 80px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .nextstep .strtradingcont h1 {
    font-size: 70px;
  }
  .nextstep .strtradingcont img {
    height: 100px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .nextstep .strtradingcont h1 {
    font-size: 80px;
  }
  .nextstep .strtradingcont img {
    height: 100px;
  }
}
/* End nextstep */

/* Start contact */
.contact {
  background-color: var(--bg-blue);
}
.contact .container {
  padding: 50px 0px;
}
.contact .suppcards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.contact .suppcards > li {
  background-color: #f5f3ef;
  border: 2px solid #1f1f1f;
  border-radius: 20px 0px;
  padding: 60px 20px 20px 20px;
  height: 100%;
  display: inline-block;
  width: 300px;
  height: 200px;
  position: relative;
}
.contact .suppcards span {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 25px;
  border-radius: 50%;
  background-color: #13162e;
  color: var(--gold);
  margin-bottom: 20px;
  position: absolute;
  top: -5px;
  left: -8px;
}
.contact .suppcards h5 {
  color: var(--gold);
}
.contact .suppcards a {
  color: var(--bg-blue);
  text-decoration: underline;
}
.contact .suppcards p {
  color: var(--black);
  font-size: 12px;
}
.contact form > div {
  margin-bottom: 5px;
}
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 7px 12px;
  background-color: transparent;
  border: 1px solid var(--gold);
  border-radius: 5px 0px;
  color: var(--white);
}
.contact form input::placeholder,
.contact form textarea::placeholder {
  color: var(--gold);
}
.contact form input[type="submit"] {
  background-color: var(--gold);
  color: var(--white);
}
@media (max-width: 576px) {
  .contact .suppcards {
    flex-direction: column;
    margin-top: 30px;
  }
  .contact .suppcards > li {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .contact .suppcards {
    flex-direction: column;
    margin-top: 30px;
  }
  .contact .suppcards > li {
    margin-bottom: 30px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .contact .suppcards {
    margin-top: 30px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .contact .suppcards {
    flex-direction: column;
    margin-top: 30px;
  }
}
/* End contact */

/* Start acctypes */
.acctypes .container {
  padding: 50px 0px;
}
.acctypes .acctable > .row > div {
  padding: 20px 10px;
  border: 1px solid #3d3d3d;
}
.acctypes .acctable > .row > div:nth-of-type(2) {
  background-color: #d6d6d6;
}
.acctypes strong {
  color: #000000;
}
.acctypes .tablehead > div {
  border-radius: 30px 0px;
}
.acctypes .tablebody > div {
  color: #959595;
}
.acctypes .goldbtn {
  width: 100%;
}
@media (max-width: 576px) {
  .acctypes .acctable > .row {
    width: 1050px;
  }
  .acctypes .acctable {
    overflow-x: scroll;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .acctypes .acctable > .row {
    width: 1050px;
  }
  .acctypes .acctable {
    overflow-x: scroll;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .acctypes .acctable > .row {
    width: 1050px;
  }
  .acctypes .acctable {
    overflow-x: scroll;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .acctypes .acctable > .row {
    width: 1050px;
  }
  .acctypes .acctable {
    overflow-x: scroll;
  }
}
/* End acctypes */

/* Start accmangr */
.accmangr {
  background-color: var(--white);
}
.accmangr .container {
  padding: 50px 0px;
}
.accmangr .accmangrbox {
  background-color: #f1f9e7;
  position: relative;
  padding: 20px 40px 20px 20px;
}
.accmangr .accmangrbox::after {
  content: " ";
  display: block;
  border-top: 30px solid #fff;
  border-right: 30px solid #fff;
  border-bottom: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  right: 0px;
  top: 0px;
}
.accmangr .accmangrbox > div:nth-of-type(1) {
  margin-bottom: 150px;
}
.accmangr .accmangrbox h3 {
  color: var(--gold);
  font-size: 20px;
}
.accmangr .accmangrbox p {
  font-size: 14px;
}
.accmangr .accmangrbox .accmangenum {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 25px;
  font-weight: bold;
  z-index: 99999;
}
.accmangr .accmangrbox span {
  color: var(--gray);
}
.accmangr .accmangrbox .downdv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accmangr .accmangrbox .bigspan {
  color: var(--gold);
  font-size: 70px;
  font-weight: bold;
}
@media (max-width: 576px) {
  .accmangr .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .accmangr .row > div {
    margin-bottom: 30px;
  }
}
/* End accmangr */

/* Start mangrfeatues */
.mangrfeatues {
  background-color: var(--bg-blue);
}
.mangrfeatues .container {
  padding: 50px 0px;
}
.mangrfeatues img {
  width: 100%;
  border-radius: 30px 0px;
}
.mangrfeatues .row > div {
}
.mangrfeatues h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 30px;
}
.mangrfeatues ul li {
  gap: 20px;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.mangrfeatues ul li span {
  color: var(--gold);
  font-size: 25px;
  width: 30px;
}
@media (max-width: 576px) {
  .mangrfeatues .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .mangrfeatues .row > div {
    margin-bottom: 30px;
  }
}
/* End mangrfeatues */

/* Start  */
/* End  */

/* starting button-top */
#button-top {
  background-color: var(--gold);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  cursor: pointer;
  border: 1px solid var(--black);
  color: var(--black);
}

/*  End button-top */

/* @media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
} */

/* very lage screens */
/* @media (min-width: 1200px) and (max-width: 1399px) {
}

@media (min-width: 1400px) and (max-width: 1599px) {
}

@media (min-width: 1600px) and (max-width: 1799px) {
}

@media (min-width: 1800px) and (max-width: 1999px) {
}

@media (min-width: 2000px) and (max-width: 2399px) {
}

@media (min-width: 2400px) and (max-width: 2799px) {
}

@media (min-width: 2800px) and (max-width: 3199px) {
}

@media (min-width: 3200px) {
} */
/* very lage screens */
