@import url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@500&family=Rubik:wght@500&family=Teko&family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Afacad&family=Kanit:wght@300;500&family=Lato:ital,wght@0,400;1,400;1,700&family=Nunito:wght@500&family=Poppins:wght@500&family=Rubik:wght@500&family=Sometype+Mono:wght@500&family=Teko&family=Young+Serif&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    
}
body{
    width: 100% !important;
    overflow-x: hidden !important;
   
    background-color: var(--main1);
}
html{
    scroll-behavior: smooth !important; 
}
:root{
    --main1: #2F2F2F;
    /* --main1: black; */
    --main2: #0060ce;
    --main3: #73E162;
    --main4: #EEEEEE;
}

::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
   
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #000000ab; 
    border-radius: 10px;
  }
  
 
.resnav{
    display: none;
}
.sidebar{
    display: none;
    text-wrap: nowrap;
}
.nav_items{
    display: flex;
    justify-content: space-evenly;
}
.metatrader{
    background-attachment: fixed !important;
    position: relative;
}
.metatrader::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.74);
}
.metatrader img{
    position: relative;
    z-index: 10;
}
.metatrader h1{
    position: relative;
    z-index: 10;
}
.metatrader p{
    position: relative;
    z-index: 10;
    font-weight: 700;
    font-size: 20px;
}
.nav_items a{
    color: var(--main4);
    text-decoration: none;
    padding-top: 5% !important;
    text-transform: uppercase;
}
.nav_items span{
    color: var(--main4);
    text-decoration: none;
    padding-top: 5% !important;
}
.reg
{
    width: 140px;
    height: 30px;
    border-radius: 5px;
    border: none;
    color: white;
    transition: all 0.2s ease-in-out;
    margin-top: -10%;
    font-weight: 700;
}
.login{
    background-color: var(--main2);
}
.register{
    background-color: #CE0A08;
    color: white;
}
.drop{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    width: 180px;
    padding: 2% !important;
    margin-top: 50%;
    background-color: var(--main1);
    color: var(--main4);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.drop div{
    padding: 7% !important;
}
.drop div a{
    color: var(--main4);
    font-size: 18px;
    padding-top: 5%;
  
}
.hide{
    visibility: hidden;
}
.show{
    visibility: visible;
}

.topnav{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10000;
    text-transform: uppercase;

}
.circ{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 20rem;
    height: 14rem;
    opacity: 0.4;
    filter: blur(35px);
    transform: rotate(-45deg);
    z-index: -1;
    border-radius: 50%;
    background-color: #0060ce;
    margin-top: 25%;
    margin-left: 60%;
}
.start{
    background: url(../images/hero.png);
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 2% 0%;
    background-attachment: fixed;
}
.heroImg{
    margin-top: 35%;
}
.start h1{
    font-size: 70px;
    padding-top: 30%;
    font-weight: 700;
    color: var(--main4);
    text-shadow: rgba(0, 0, 0, 0.164) 2px 2px;
}
.start p{
    color: var(--main4);
}
.hr1{
    width: 200px;
    background: var(--main2);
    height: 2px;
    color: #0060ce;
    opacity: 0.6;
    border-radius: 5px;
   
}
.hr2{
    width: 125px;
    background: var(--main2);
    height: 2px;
    color: #0060ce;
    opacity: 0.6;
    border-radius: 5px;
}
.getstarted{
    padding: 2% 4%;
    border: none;
    color: var(--main4);
    background: var(--main2);
    font-size: 20px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}
.getstarted:hover{
    background-color: #0060ce;
}
.why{
    background-color: black;
}
.why ul{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.why ul li{
    margin-top: 5%;
}
.whycard{
    width: 100%;
    display: flex;
}
.whycard div:nth-child(1){
    width: 30%;
    text-align: center;
    justify-content: center;
}
.whycard div:nth-child(2){
    width: 70%;
    text-align: start;
}
.whycard div img{
    width: 50%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.whycard div img:hover{
    transform: scale(1.05);
}
.whycard h2{
    color: var(--main2);
    text-shadow: rgba(0, 0, 0, 0.164) 2px 2px;
}
.whycard p{
    color: var(--main4);
}
.whytitle{
    color: var(--main4) !important;
    font-size: 50px;
    font-weight: 700;
}
.scrolled{
   /* From https://css.glass */
/* From https://css.glass */
background: black;

}
.topnav div{
    padding-top: 0.3%;
}
.reviews{
    padding: 5% 0%;
}
.reviewcard{
    background-color: white;
    width: 100%;
    padding: 5%;
    border-radius: 15px !important;
    color: black;
    height: 100%;
    user-select: none;
    
}
.reviewcard h5{
    font-size: 18px !important;
    color: black;
    padding-top: 10%;
    user-select: none;
}
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
   
    border-radius: 15px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .reviewtitle{
    color: var(--main4);
    padding-bottom: 2%;
  }
  .marketCard{
    background-color: var(--main2);
    margin-bottom: 5%;
    border-radius: 10px;
    padding: 5%;
    min-height: 30vh;
    color: var(--main4);
    cursor: pointer;
    opacity: 0.5;
    text-align: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
  }
  .marketCard:hover{
    opacity: 1;
  }
  .marketCard img {
    width: 35%;
}
  .forex{
    background-color:#1a1a1a;
   
  }
  .marketstitle{
    color: var(--main4);
  }
  .friend h1{
    padding-top: 25%;
    color: var(--main2);
    }
    .friend p{
        color: var(--main4);
    }
.metatrader h1{
    color: var(--main2);
    padding-top: 15%;
}
.metatrader p{
    color: var(--main4);
}
.footer{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: black;
    color: white;
    position: sticky !important;
    margin-top: auto;
}
.we h1{
    color: var(--main4);
    text-shadow: rgba(0, 0, 0, 0.521) 2px 2px;
}
.we p{
    color: var(--main4);
}
.sponsor h1{
    color: var(--main4);
    font-size: 50px;
    text-shadow: rgba(0, 0, 0, 0.404) 2px 2px;
}
.sponsor h2{
    color: var(--main2);
    padding-top: 5%;
    font-size: 40px;
    text-shadow: rgba(0, 0, 0, 0.404) 2px 2px;
}
.sponsor span{
    color: var(--main4);
}
.devices{
    justify-content: space-between;
    margin-left: -7%;
    gap: 2% !important;
    width: 80%;
}
.device span{
    color: var(--main3);
}
.device h1{
    color: var(--main4);
}
.device p{
    color: var(--main4);
}

.devices img{
    width: 50%;
    background: #1b1b1b;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    cursor: pointer;
}
.devices p{
    padding-top: 5%;
}
.devices div{
    text-align: center;
    color: var(--main4);
}
.pros{
    background-image: url(../images/platform/back.svg);
    background-size: cover;
    background-attachment: fixed;
}
.pros h1{
    color: var(--main2);
    font-size: 45px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.315) 2px 2px;
}
.pros p{
    color: white;
    font-weight: 700;
}
.coins{
    position: absolute;
    top: 0;
    right: 0;
    animation-name: float;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes float{
    0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
      100% {
        transform: translateY(0);
      }
}
.pips {
    background-color: #1a1a1a;
    color: white;
    font-weight: 700;
  }
  
  .pips div {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
   
  }
  
  .pip:hover {
    background-color: #5a5959;
  }
.ecn{
   background-attachment: fixed !important;
}
.ecn h1{
    color: var(--main2);
    margin-top: 15%;
    font-weight: 700;
}
.ecn p{
    color: var(--main4);
    font-weight: 700;
    padding-bottom: 15%;
}
.adder{
    width: 90%;
    margin: 0 auto;
    padding: 2%;
   
    background-image: url(/assets/images/devices.jpg);
    border-radius: 15px;
    text-align: center;
    color: var(--main4);
    position: relative;
}
.adder::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.2;
}
.adder h1{
    font-weight: 700;
    position: relative;
    font-size: 70px;
    z-index: 1;
}
.adder h2{
    font-weight: 700;
    font-size: 65px;
    position: relative;
    z-index: 1;
}
.adder button{
    background-color: var(--main2);
    border: none;
    padding: 2% 8%;
    font-size: 20px;
    z-index: 1;
    position: relative;
    color: var(--main4);
    border-radius: 5px;
    transition: all 0.1s ease-in-out;
   
}
.adder button:hover{
    background-color: #0060ce;
    transform: translateY(-5px);
}
.accordion{
    border: none !important;
}
.accordion-button{
    background: var(--main1) !important;
    color: var(--main4) !important;
}
.acc_services{
    text-align: center;
    
}
.acc_services h1{
    color: var(--main4);
    font-weight: 700;
}
.acc_services h2{
    color: var(--main4);
}
.acc_services p{
    color: var(--main4);
}
.app_card{
  
    border-radius: 10px;
    min-height: 40vh;
    width: 100%;
    margin: 0 auto;
    margin-top: 5%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: white;
   
    border-radius: 10px;
    border: 0.4px solid rgba( 255, 255, 255, 0.18 );
    text-align: start;
    border-radius: 10px;
    overflow: hidden;
}
.app_card_header{
    padding: 2%;
}
.app_card h2{
    color: var(--main2);
    font-weight: 700;
}
.app_card p{
    color: var(--main4);
    font-weight: 700;
}
.app_card:hover{
    transform: translateY(-5px) !important;
}
.app_card_header{
    display: none;
}
.app_card_main{
    height: 25vh;
    position: relative;
    background-size: cover;
    border-radius: 0px 0px 10px 10px;
    transition: all 0.2s ease-in-out;
}
.app_card_main:hover{
    transform: translateY(-2px);
}
.app_card_main h3{
    position: absolute !important;
    bottom: 0 !important;
    left: 0;
    margin-left: 2%;
    color: var(--main4);
}
.app_card_text{
    padding: 2%;
}
.app_card_text p{
    color: var(--main1);
    font-size: 14px;
}
.app_card_footer{
    padding: 0% 0% 2% 2%;
}
.step{
    padding: 5%;
    background: url(/assets/images/account/);
}
.step h1{
    color: var(--main2);
    font-weight: 700;
}
.step p{
    color: var(--main4);
    font-weight: 700;
}
.step1{
    padding-left: 10%;
}
.step img{
    width: 100%;
    border-radius: 10px !important;
}
.step5{
    background-color: white;
    margin-top: 2%;
    border-radius: 10px;
    height: 90%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    position: relative;
}
.step5 h2{
    color: var(--main1);
    font-weight: 700;
    padding-top: 5%;
}
.step5 p{
    color: var(--main1);
    font-weight: 700;
}
.step5 img{
    position: absolute;
    width: 38% !important;
    margin-top: -10%;
}
.stepborder{
    border-radius: 10px;
    padding: 5%;
}
.kaiser_account{
    background-image: url(/assets/images/account/kaiser.svg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.kaiser_card{
    background-color: #1f2024;
    width: 90%;
    margin: 0 auto;
    border-radius: 35px;
    padding: 5%;
    margin-bottom: 5%;
}
.kaiser_account h1{
    color: var(--main2);
    font-weight: 700;
}
.kaiser_account p{
    color: var(--main4);
    font-weight: 700;
}
.kaiser_second{
    width: 100%;
    background:url(/assets/images/account/back2.svg);
    height: 13vh;
    border-radius: 15px;
    background-size: cover;
    
}
.startcontact{
    background-position: end !important;
}
.startcontact h1{
    font-size: 60px !important;
}
.start p{
    font-weight: 600;
    font-size: 20px;
}
.contact_info{
    color: var(--main4);
    font-family: Arial, Helvetica, sans-serif;
}
.contact_info img{
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.contact_info img:hover{
    
}
.contact_info a{
    color: white;
    text-decoration: none;
}
.contact_form form input{
    width: 100%;
    padding: 2% 4%;
    border-radius: 5px;
    outline: none;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.contact_form form select{
    width: 100%;
    padding: 3% 4%;
    border-radius: 5px;
    outline: none;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.contact_form form label{
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: none;
    font-size: 0.875rem;
    padding-top: 5%;
    padding-left: 1%;
    font-weight: 700;   
    font-family: 'Roboto', sans-serif !important;
}
.contact_form form textarea{
    width: 100%;
    padding: 2% 4%;
    border-radius: 5px;
    outline: none;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.contact_form button{
    width: 100%;
    padding: 2% 4%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border: none;
    border-radius: 10px;
    background-color: var(--main2);
    color: var(--main4);
    font-size: 18px;
    margin-top: 5%;
    
}
.market_header{
    height: 90vh;
    padding-top: 10%;
    background-size: cover;
    background-attachment: fixed;
}
.market_header h1{
    color: var(--main4);
    font-size: 60px;
}
.market_header span{
    color: var(--main2);
    padding-bottom: 3%;
}
.market_header button{
    padding: 2% 3%;
    margin-top: 2%;
    border: solid var(--main2) 2px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0);
    color: var(--main2);
    font-size: 20px;
    transition: all 0.2s ease-in-out;
}
.market_header button:hover{
    background-color: var(--main2);
    color: var(--main4);
}
.featCard{
    width: 95%;
    margin:  0 auto;
    padding: 2%;
    min-height: 35vh;
    background-color: var(--main1);
    text-align: center;
    margin-top: 5%;
    cursor: pointer;
}
.featCard hr{
    margin:  0 auto;
}
.featCard h2{
    color: var(--main4);
    padding-top: 2%;
}
.what{
    position: relative;
}

.what h1{
    color: var(--main2);
    font-weight: 700;
}
.what p{
    color: var(--main4);
    font-weight: 700;
}
.trade h1{
    color: var(--main2);
    font-weight: 70;
    padding-top: 20%;
    width: 80%;
    font-weight: 700;
}
.trade p{
    color: var(--main4);
    font-weight: 700;
}
.credit h2{
    font-size: 60px;
    color: var(--main4);
    font-weight: 700;
    padding-top: 15%;

}
.layers{
    position: relative;
}
.layers img{
    position: absolute;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-name: float;
}
.layer1{
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 30%;
    z-index: 10;
    animation-duration: 3s;
}
.layer2{
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 25%;
    z-index: 11;
    animation-duration: 2.3s;
}
.layer3{
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 25%;
    z-index: 12;
    animation-duration: 4s;
}
.layer4{
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 25%;
    z-index: 13;
    animation-duration: 5s;
}
.langs{
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}
.lang1{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 2%;
    margin-left: 15%;
    transform: rotate(-5deg);
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.lang2{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 12%;
    margin-left: 15%;
    transform: rotate(1deg);
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.lang3{
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 15%;
    transform: rotate(5deg);
    margin-top: -1%;
    opacity: 0.8;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out;
}
.lang4{
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 15%;
    margin-top: 10%;
    opacity: 0.8;
    position: absolute;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.lang1:hover{
    opacity: 1;
    filter: drop-shadow(0 0 0.75rem rgb(32, 32, 32));
}
.lang2:hover{
    opacity: 1;
    filter: drop-shadow(0 0 0.75rem rgb(32, 32, 32));
}
.lang3:hover{
    opacity: 1;
    filter: drop-shadow(0 0 0.75rem rgb(32, 32, 32));
}
.lang4:hover{
    opacity: 1;
    filter: drop-shadow(0 0 0.75rem rgb(32, 32, 32));
}
.fold h1{
    color: var(--main4);
    font-size: 50px;
    padding-top: 5%;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.596) 2px 2px;
}
.fold p{
    color: var(--main4);
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.541) 2px 2px;
}
.roundLang{
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0) !important;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000000;
    border-radius: 50%;
    margin-bottom: 2%;
    margin-right: 2%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.roundLang img{
    width: 60%;
    margin: 0 auto;
    border-radius: 50%;
}
.language1{
     width: 60px;
    height: 60px;
    background-color: var(--main1);
    position: fixed;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    margin-bottom: 2%;
    margin-right: 2%;
}
.language2{
    width: 60px;
   height: 60px;
   background-color: var(--main1);
   position: fixed;
   bottom: 0;
   right: 0;
   border-radius: 50%;
   margin-bottom: 2%;
   margin-right: 2%;
}
.language3{
    width: 60px;
   height: 60px;
   background-color: var(--main1);
   position: fixed;
   bottom: 0;
   right: 0;
   border-radius: 50%;
   margin-bottom: 2%;
   margin-right: 2%;
}
.language4{
    width: 60px;
   height: 60px;
   background-color: var(--main1);
   position: fixed;
   bottom: 0;
   right: 0;
   border-radius: 50%;
   margin-bottom: 2%;
   margin-right: 2%;
}
.parl{
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.broker{
    width: 90%;
   
    padding: 5%;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 5%;
}
.broker img{
    width: 45%;
    padding: 5%;
    border: solid rgba(255, 255, 255, 0.712) 4px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.broker img:hover{
    background-color: #0060ce;
}
.broker h1{
    color: white;
    margin-bottom: 5%;
    font-weight: 700;
}
form h1{
    color: var(--main4) !important;
    font-weight: 700;
}
form label{
    text-align: start;
    color: var(--main4);
}
form button {
    margin-bottom: 10%;
}
.contactImg{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.contactImg img{
    width: 100%;
}
.marketsDiv{
    position: relative;
    background-attachment: fixed;
}
.marketsDiv::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.705);
    width: 100%;
    
    height: 100%;
}
.markets h1{
    color: white;
    z-index: 10;
    position: relative;
}
.marketCard{
    position: relative;
    z-index: 10;
}
.footer h5{
    font-size: 18px !important;
    color: rgb(197, 197, 197);
    font-weight: 900;
}
.footer ul li a{
    font-size: 16px !important;
    color: black;
}
.fold p{
    font-size: 20px;
}
.accordion-button::after{
    color: white !important;
}
/* Mobile Devices */
@media only screen and (max-width: 767px) {
    body{
        width: 100% !important;
        overflow-x: hidden;
    }
    .topnav{
        display: none;
    }
    .resnav{
        display: block;
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        z-index: 1111000;
    }
    .menu{
        position: relative;
        
    }
    .start{
        height: 100% !important;
        position: relative;
        width: 100%;
       
    }
    .start img{
        display: none;
    }
    .reviews{
        padding: 15% 0%;
    }
    .start::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(20, 20, 20, 0.384);
        width: 100%;
        height: 100%;
   
    }
    .start img{
        position: relative;
        z-index: 1000;
    }
    .start h1{
        position: relative;
        z-index: 1000;
    }
    .start button{
        position: relative;
        z-index: 1000;
    }
    .start p{
        font-weight: 700;
        font-size: 18px;
        z-index: 1000;
        position: relative;
    }
    .heroImg{
        margin-top: 0%;
    }
    .whytitle{
        font-size: 40px;
        text-align: start;
    }
    .sidebar{
        display: block;
        width: 70%;
        position: fixed;
        right: 0;
        top: 0;
        background-color: #2F2F2F;
       
        overflow-y: auto;
        transition: all 0.2s ease-in-out;
        margin-right: -70%;
        z-index: 10000;
        color: white !important;
        z-index: 1111100;
        height: 100% !important; 
    }
    .footer p{
        color: white;
        font-size: 13px;
    }
    .sidebar_header{
        height: 8vh;
        text-align: center;
    }
    .sidebar div{
        padding: 3%;
    }
    .sidebar_item{
        height: 10vh;
    }
    .menu{
        width: 60px;
        cursor: pointer;
    }
    .sidebar_item a{
        display: inline-block;
        color: white;
        text-decoration: none;
        font-weight: 600 ;
    }
    .fold p{
        font-weight: 900 !important;
    }
    .side{
        display: none;
    }
    .main{
        height: 100vh;
    }
    .why ul{
        width: 100% !important;
        display: flex;
        flex-direction: column;
        padding: 0%;
    }
    .why ul li img{
        width: 100%;
        padding-top: 5%;
    }
    .start{
        background-position: center;
        height: 85vh;
    }
    .whycard{
        display: flex;
        flex-direction: column;
    }
    .whycard div{
        width: 100% !important;
    }
    .resnone{
        display: none;
    }
    .start h1{
        font-size: 45px;
    }
    .start{
        height: 110vh;
    }
    .we div{
        text-align: center;
    }
    .sponsor h1 {
        color: var(--main4);
        font-size: 35px;
        text-shadow: rgba(0, 0, 0, 0.404) 2px 2px;
    }
    .sponsor div{
        text-align: center;
    }
    .accordion{
        width: 90%;
        margin: 0 auto;
    }
    .ecn img{
        width: 100% !important; 
    }
    .adder{
        padding: 10%;
    }
    .adder h1{
        font-size: 30px !important;
    }
    .adder h2{
        font-size: 25px !important;
    }
    .devices{
        justify-content: space-evenly !important;
        width: 100%;
        margin: 0 auto;
    }
    .start{
        background-attachment: fixed !important;
        background-position: center !important;
    }
    .pros{
        background-position: center;
    }
    .step{
        height: 100%;
    }
    .step img{
        width: 100% !important;
        position: relative !important;
        margin: 0 auto !important;
    }
    .startcontact{
        height: 85vh !important;
    }
    .contact_form .row{
        width: 95%;
        margin: 0 auto;
    }
    .contact_form input{
        border-radius: 5px !important; 
    }
    .contact_form textarea{
        border-radius: 5px !important; 
    }
    .market_header{
        height: 150vh !important;
        padding-top: 20%;
    }
    .trade img{
        width: 100%;
    }
    .credit img{
        width: 100%;
    }
    .credit h2{
        font-size: 40px;
    }
    .layers{
        display: none;
    }
    .langs img{
        position: relative !important;
        width: 100%;
        transform: rotate(0deg) !important;
        margin: 0 auto !important;
        margin-top: 5% !important;
    }
    .broker{
        width: 100%;
    }
    .market_header h1 {
        color: var(--main4);
        font-size: 50px;
    }
    .market_header{
        text-align: center;
    }
    .downbtn{
        margin-top: -15% !important;
    }
    form input{
        width: 100% !important;
    }
    form textarea{
        width: 100%;
    }
    .contact_form .row {
        width: 100% !important;
        margin: 0 auto;
    }
    .market_header {
        height: 160vh !important;
        padding-top: 20%;
    }
    .termsHeader{
        padding-top: 15%;
    }
    .privacyHeader{
        padding-top: 15%;
    }
    .startcontact h1{
        font-size: 35px !important;
    }
    .footer a{
        font-size: 12px !important;
    }
    .fold h1{
        padding: 0% 10%;
        text-align: start;
        font-size: 34px;
        padding-top: 5%;
    }
    .fold p{
        padding: 0% 10%;
        text-align: start;
        font-size: 14px;
    }
    .metatrader{
        margin-top: -1%;
        background-position: center !important;
    }
}

/* Tablet Devices */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .topnav{
        display: none;
    }
    .heroImg{
        display: none;
    }
    .resnav{
        display: block;
    }
    .reviewcard h5 {
        font-size: 14px !important;
        color: black;
        padding-top: 10%;
        user-select: none;
    }
    .reviewcard{
        width: 100%;
    }
    .reviewcard::nth-child(2){
        background-color: #0060ce;
    }
    .start{
        height: 100% !important;
        padding-bottom: 15% !important;
    }
    .why ul {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0 auto;
        padding-left: -3rem !important;
    }
   
    .sidebar{
        display: block;
        width: 50%;
        position: fixed;
        right: 0;
        top: 0;
        background-color: var(--main4);
        max-height: calc(120vh - 9rem);
        overflow-y: auto;
        transition: all 0.2s ease-in-out;
        margin-right: -50%;
    }
    .sidebar_header{
        height: 15vh;
        text-align: center;
    }
    .sidebar div{
        padding: 3%;
    }
    .featCard{
        min-height: 25vh;
        box-shadow: rgba(0, 0, 0, 0.486) 2px 2px;
    }
    .sidebar img:nth-child(1){
        width: 80% !important;
    }
    .sidebar_item{
        height: 10vh;
    }
    .menu{
        width: 30px !important;
        cursor: pointer;
    }
    .sidebar_item a{
        color: var(--main1);
        text-decoration: none;
        font-weight: 600;
    }
    .side{
        display: none;
    }
    .menu{
        margin-top: 35% !important;
    }
    .fold h1{
        font-size: 20px;
    }
    .fold p{
        font-size: 14px;
    }
    .fold img{
        padding-top:35%;
    }
    .friend img{
        padding-top: 45%;
    }
    .metatrader img{
        padding-top: 20%;
    }
    .resnav{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }
    .sidebar{
        z-index: 1000;
    }
    .start {
        height: 65vh;
    }
    .device img{
        padding-top: 20%;
    }
    .pros img{
        padding-top: 35%;
    }
    .coins{
        z-index: 10;
        margin-top: -15%;
    }
    .pip{
        padding-top: 5%;
    }
    .app_card_main {
        height: 13vh;
        position: relative;
        background-size: cover;
        border-radius: 0px 0px 10px 10px;
        transition: all 0.2s ease-in-out;
    }
    .app_card {
        border-radius: 10px;
        min-height: 29vh;
        width: 100%;
        margin: 0 auto;
        margin-top: 5%;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        background: rgba(255, 255, 255, 0.432);
        box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.384);
        backdrop-filter: blur( 10px );
        -webkit-backdrop-filter: blur( 4px );
        border-radius: 10px;
        border: 0.4px solid rgba( 255, 255, 255, 0.18 );
        text-align: start;
        border-radius: 10px;
        overflow: hidden;
    }
    .step p{
        font-size: 14px;
    }
    .step h1{
        font-size: 16px;
    }
    .step img{
        width: 100%;
        padding-top: 15%;
    }
    .step5 {
        background-color: white;
        margin-top: 2%;
        border-radius: 10px;
        height: 100%;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        position: relative;
    }
    .sponsor h1 {
        color: var(--main4);
        font-size: 34px;
        padding-top: 10% !important;
        text-shadow: rgba(0, 0, 0, 0.404) 2px 2px;
    }
    .sponsor h2 {
        color: var(--main2);
        padding-top: -5% !important;
        font-size: 42px;
        text-shadow: rgba(0, 0, 0, 0.404) 2px 2px;
    }
    .sponsor .col-md-4{
        padding: 0% !important;
    }
    .market_header {
        height: 60vh;
        padding-top: 10%;
        background-size: cover;
        background-attachment: fixed;
    }
    .featCard {
        width: 95%;
        margin: 0 auto;
        padding: 2%;
        background-color: var(--main1);
        text-align: center;
        margin-top: 1% !important;
        height: 17vh;
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
    }
    .what img{
        padding-top: 45% !important;
    }
    .layer4{
        width: 100% !important;
        padding-top: 25%;
        z-index: 97;
    }
    .layer3{
        width: 60% !important;
        padding-top: 25%;
        z-index: 98;
    }
    .layer2{
        width: 45% !important;
        padding-top: 25%;
        z-index: 99;
    }
    .layer1{
        width: 40% !important;
        padding-top: 15%;
        z-index: 100;
    }
    .langs img{
        position: relative !important;
        transform: rotate(0deg) !important;
        margin: 0 auto !important;
        margin-top: 5% !important;
        width: 90% !important;
    }
    .langs .col-md-12{
        display: grid;
        grid-template-columns: 1fr 1fr;
        
    }
    .marketCard{
        min-height: 15vh !important;
        
    }
    .marketCard h1{
        font-size: 20px;
        padding-top: 15%;
    }
    .coinsDivv{
       display: none;
    }
    .ecn{
        background-size: cover !important;
        background-position: start;
        background-repeat: no-repeat;
    }
    .app_card_main {
        height: 19vh;
        position: relative;
        background-size: cover;
        border-radius: 0px 0px 10px 10px;
        transition: all 0.2s ease-in-out;
    }
    .moneyDiv{
        display: none;
    }
}
  
/* Laptop Devices */
@media only screen and (min-width: 1024px) {
    .start h1{
        font-size: 40px;
    }
    .fold p{
        font-size: 16px;
    }
    .reviewcard h5 { 
        font-size: 16px !important; 
    }
}