@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
*{
    padding: 0;
    margin: 0;
}

:root{
    --color-primary-pressed: #123e63;
    --color-primary: #1b5e94;
    --color-dark-blue:#123e63;
    --color-primary-light: #f3f5fe;
    --color-divider: #e2e6f9;
    --color-success-hover-pressed: #1b5e94;
    --color-success: #1b5e94;
    --color-success-light: #f2fbf4;
    --color-notify: #ffa217;
    --color-notify-light: #fff6e8;
    --color-error: #f5281e;
    --color-error-light: #feeeed;
    --color-black: #0b0b16;
    --color-subscript: #828ca0;
    --color-subscript-10: rgba(130,140,160,0.1);
    --color-white: #fff;
    --color-transparent: transparent;
    --color-hint: #171720;
}
body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

p{
  font-size: 15px;
  line-height: 1.8em;
}

.bg-primary-1{
    background-color: var(--color-dark-blue);
}

.bg-dark-blue{
    background-color: var(--color-dark-blue);
}

.container{
     max-width: 1262px;
     margin: auto;
}
.btn{
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease-in-out;
    padding: 12px 25px;
}

.btn-primary{
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-primary:hover{
    background-color: var(--color-primary-pressed);
    border-color: var(--color-primary-pressed);
}
.btn-light{
    background-color:var(--color-primary-light)
}

.btn-1{
    color: var(--color-primary);
}


ul{
    padding: 0;
    margin: 0;
    position: relative;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Plus Jakarta Sans', sans-serif;
}

nav{
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
}
nav ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
nav ul li{
    list-style: none;
    display: inline-block;
    position: relative;
    
}
nav ul li a.main-nav-link{
    padding: 12px 20px;
    /*line-height: 24px;*/
    border-radius: 33px;
    color: #5a5a5a;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    margin-right: 15px;
    transition: .5s ease-in all;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 5px
}

nav ul li:hover a.main-nav-link{
    text-decoration: none;
    background-color: rgb(222, 222, 222);
    color: #0b0b16;
   
}


.dropdown-nav{
    width: 100%;
    background-color:var(--color-primary);
    position: absolute;
    left: 0px;
    right: 0;
    z-index: 1000;
    top:67px;
    display: none; 
    min-width: 230px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    /* border-top: 5px solid var(--color-divider); */
}
nav ul li:hover .dropdown-nav{
    display: block;
   
}

.dropdown-nav span{
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color:rgb(231, 218, 36);
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
}

.dropdown-nav-item{
    position: relative;
    display: block;
}
.dropdown-nav-item a{
    display: block;
    line-height: 2.1em;
    font-size: 13px;
    padding: 6px 0;
    text-decoration: none;
    color: var(--color-white);

}

.dropdown-nav-item a:hover{
    color:#b1b3b8;
}

.lang-convertor{
    position: absolute;
    top: 54px;
    left: 126px;
    background-color: #fff;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 10px;
    max-width: 195px;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    display: none;
}
.current{
    position: relative;
}
.current::before{
    content: '\f078';
    font-family: "FontAwesome";
    position: absolute;
    top:50%;
    left:20px;
    transform: translateY(-50%);
    color: #828ca0;
    font-size: 12px;
}
.current.up::before{
    content: '\f077';
    font-family: "FontAwesome";
    position: absolute;
    top:50%;
    left:20px;
    transform: translateY(-50%);
    color: #828ca0;
    font-size: 12px;
}
.d-grid{
  display: grid;
}


.lang-convertor a{
    text-decoration: none;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
  

}

.lang-convertor a span{
    font-size: 13px;
    color: var(--color-dark-blue);
    display: inline-block;
    padding-left: 10px;
}

.toggle-nav{
    position:absolute;
    top:0;
    right:10px;
    font-size: 24px;
    display: none;
}
.toggle-nav .fa-close{display: none;}




.py-20{
    padding: 20px 0;
}
.py-30{
    padding: 30px 0;
}

.py-40{
    padding: 40px 0;
}
.py-50{
    padding: 50px 0;
}
.py-60{
    padding: 60px 0;
}
.py-70{
    padding: 70px 0;
}
.py-80{
    padding: 80px 0;
}
.py-100{
    padding: 100px 0;
}
.py-120{
    padding: 120px 0;
}

.py-130{
    padding: 130px 0;
}

.py-150{
    padding: 150px 0;
}
.py-160{
    padding: 160px 0;
}
.py-170{
    padding: 170px 0;
}

.pt-70{
    padding-top: 70px;
}



/*banner css*/
.banner{
    padding: 0px 0 30px 0;
    
}
.banner-text-wrapper{
    color: #fff;
}

.banner-text-wrapper span{
    font-size: 20px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 500;
}

.banner-text-wrapper h1,
.banner-text-wrapper h1 span{
    max-width: unset;
    /* margin-bottom: 32px; */
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
}
.banner-text-wrapper h1 span{
    background-color: #ffffff;
    background-image: linear-gradient(90deg, #58b157, #11fff1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    
}
.banner-text-wrapper p{
    font-size: 18px;
    max-width: unset;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);

}

.banner-image{
    position: relative;
    /* top:-280px;*/
    /* left: 80px;  */
    /* animation: mymove 4s infinite alternate-reverse linear; */
}
@keyframes mymove {
    from {top: -280px;}
    to {top: -250px;}
  }

  .section-advantages .article{
    position: relative;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    /* max-width: 350px; */
    box-sizing: content-box;
  }



  .wy-us-wrapper{
    display: flex;
    justify-content: flex-start;
    padding-bottom: 30px;
    margin-top: 15px;
  }


  .wy-us-wrapper .wy-us-item{
    border: 1px solid #194f19;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 180px;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 15px 30px;
    margin-right: 20px;
    border-radius: 24px;
    margin-bottom: 15px;
  }

  .wy-us-wrapper .wy-us-item._large{
    width: 100%;

   
  }
  .__large-advantage img{

    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:50px;

  }
  .__large-advantage h3 span{
    font-size: 60px;
    font-weight: 700;
  }
  .__large-advantage h3{
    font-size: 18px;
  }


  .wy-us-wrapper .wy-us-item img{
    margin-bottom: 15px;
  }
  .wy-us-wrapper .wy-us-item h5{
    font-size: 18px;
  }


  /*section product*/
  .products-warpper{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin-top: 25px;
    color: #fff;
  }
  .products-warpper .product-items{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    min-width: 320px;
    border-radius: 14px;
    border: 1px solid rgb(255 185 0);
    margin-bottom: 15px;
    margin-right: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 37.6%, rgba(255, 255, 255, 0.2) 124.93%);

  }

  .products-warpper .product-items.__large{
    min-width: 590px;
  }

  .products-warpper .product-items .icon{
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
    width: 200px;
  }
  
  .products-warpper .product-items img{
    height: 80px;
  }

  .tradingview-widget-container{
    border:1px solid #d9ffd9;
    border-radius: 24px;
    background-color: #d9ffd9;
  }
  
  .large-text{
    font-size: 20px;
    line-height: 1.5em;
  }

  .large-text.b{
    font-weight: 500;
  }

  /*footer*/
  footer{
    display: block;
    padding: 30px 0 0 0;
    background-color: #f2f2f2;
  }

  footer .f-title{
    color: #505050;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
  
   
  }
  .f-about p{
    font-size: 13px;
    margin: 15px 0;
    color: rgb(77, 77, 77);
  }
  .f-links{
    display: flex;
    flex-direction: column;
    margin-top: 25px;

  }

  .f-links a{
    font-size: 13px;
    color: rgb(77, 77, 77);
    padding-bottom: 10px;
    text-decoration: none;
    
  }

  .f-links a:hover{
    color: var(--color-primary);
  }

  .f-address{
    display: block;
    margin-top: 25px;
    color:rgb(77, 77, 77);
  }
  .address-item{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 13px;
    margin-bottom: 8px;
    
  }
  .address-item span{
    display: inline-block;
    margin-left: 10px;
  }
  .address-item i{
    display: inline-block;
    padding-top: 3px;
    color: #38c038;
  }

  .title-2{
    font-size: 42px;
  }
  .title-2 span{
    font-weight: 300;
  }

  /*pricing*/
  .pricing-table{
    display: block;
    position: relative;
    width: 100%;
  }

  .table thead th{
    border: 0px;
    padding: 30px 0;
    font-size: 18px;
  }

  .table tr td{
    padding: 30px 0;
    font-size: 15px;
  }
  .table tr td span{
    font-size: 11px;
    color: #ddd;
    display: block;
    margin: 15px 0;
  }
  
 .table-title{
    font-size: 32px;
    align-items: center;
    font-weight: 300;
  }
  .table-title span{
    color: #d17601;
    font-weight: 700;
   
  }
  .pricing-table tr td i{
    font-size: 24px;
  }
  
.scroll-x{

    overflow-x: auto;
}

/*banner*/

#banner{
  position: relative;
  display: block;
  box-sizing: border-box;
  background:var(--color-dark-blue) center center no-repeat;
  background-size:cover; 
  background-position:fixed;
}

#banner h1{
  font-size: 46px;
  line-height: 1.6em;
  color:#fff;
}

#banner span{
  font-size: 14px;
  font-weight: 600;
  color: var(--color-subscript);
  text-transform: uppercase;
  padding-bottom: 20px;
  display: inline-block;
}

#banner p{
  font-size: 26px;
  color: #fff;
  font-weight: 600;
}
#banner-box{
  position: relative;
  display: block;
  color:var(--color-divider)
}
 video {
  object-fit: cover;
  width: 100vw;
  height: 77vh;
  position: relative;
  top: 0;
  left: 0;
}
#banner-box .brief{
  position: absolute; top:50%; left: 50%; z-index: 1000; transform: translate(-50%,-50%);
}
#banner-box .brief h1{

  font-size: 11em;
 
}

@media (max-width: 768px) {
    #banner-box .brief h1{

  font-size: 5em;
 
}

}
.bredcrum a{
  color: #fff;
  font-size: 12px;
  
}

.bredcrum a i{
  display: inline-block;
  padding: 0 7px;
  color: #fff;
}

.bredcrum a.active{
  color: #d17601;
  font-weight: 700;
}

.headeng-title{
  display: block;
  font-weight: 700;
  line-height: 1.7em;
}

.headeng-title.large{

  font-size: 46px;
}

.headeng-title.medium{

  font-size: 32px;
  
}

.headeng-title.small{
  font-size: 24px;
}

.headeng-title span{
  font-weight: 300;
  color: red;
}

.table-currency{
  font-size: 13px;
  width: 100%;
  margin: auto;
}
.table-currency thead {
  background-color: rgb(219, 219, 219);
}

.table-currency td,.table-currency th{
  padding: 10px;
  border: 1px solid rgb(219, 219, 219);
}

.advantages{
  display: flex;
  box-sizing: border-box;
  position: relative;
  flex-direction: row;
  /* box-shadow: 0 0 30px rgb(204, 204, 204); */
  padding:15px;
  border-radius: 15px;
  background-color: #104670;
  /* background-image: linear-gradient(90deg, #149812, #046703); */
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  min-height: 168px;
  border: 1px solid #165686;
}

.advantages img{
 margin-right: 10px;
}


.advantages h2{
  font-size: 18px;
  color: rgb(196 138 39);
  padding: 10px 0 0 0;
}
.advantages p{
  font-size: 14px;
  color: #fff;
}

/*pricing*/
.price-table{
  display: block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 15px ;
  border-radius: 7px;
  margin: 0 10px;
}
.price-table.active{
  background-color: rgb(213, 213, 213);
  transform: scale(1.2);
  /* margin-right: -17px; */
  z-index: 100;
}
.price-table span{
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 5px; */
}
.price-table span .tags{

  background-color: rgb(240, 240, 240);
  color: rgb(72, 72, 72);
  padding: 1px 10px;
  border-radius: 3px;
  
}

.price-table .heading h3{
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 5px;
}

.price-table .heading h5{
  font-size: 16px;
  padding-top: 10px;
  color: rgb(125, 125, 125);
}

.price-table ul{
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
}

.price-table ul li{
  display: flex;
justify-content: flex-start;
align-items: flex-start;
padding: 13px 0;
}
.price-table ul li i{
  display: inline-block;
  margin-right: 15px;
  color: #4ea980;
}

.price-table ul li.not-allowed i{
  color: rgb(201, 200, 200);
}

.price-table ul li span s{
  color: rgb(201, 200, 200);
}
.price-table.active ul li span s{
  color: rgb(137, 137, 137);
}


.ib-steps{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
 

}

.ib-steps .ib-single{

  background-color: rgb(255, 255, 255);
  display: flex;
  margin-right: 15px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
  border-radius: 15px;
}

.ib-steps .ib-single .ib-number{
  font-size: 100px;
  display: inline-block;
  margin-right: 15px;
  font-weight: 700;
  color: rgb(209 118 1);
}

.ib-steps .ib-single .ib-text{
  font-size:28px;
  color: rgb(24, 24, 24);
}

#join-us{
  overflow: hidden;
  display: block;
}
#join-us::before{
  content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    right: -100%;
    background: url(/assets/images/bg-dot.webp) repeat;
    z-index: -1;
}

.single-about-progress{
  margin-bottom: 15px;
  position: relative;
  background-color: rgb(239, 239, 239);
  padding: 15px;
  border-radius: 15px;
}
.single-about-progress .ab-numbur h3{

  font-size: 70px;
  color: rgb(211, 121, 3);
  position: relative;
  font-weight: 700;

}

.single-about-progress .ab-text span{
  font-size: 24px;
  color: rgb(0, 0, 0);
}

.vision-wrapper{
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
}

.vision-wrapper .single-vision{
  position: relative;
  background-color: rgb(235, 235, 235);
  padding: 20px 30px;
  margin-bottom: 15px;
  border-top-right-radius: 15px;
}

.vision-wrapper .single-vision h3{
  font-size: 24px;
  font-weight: 700;
  color: #d17601;
 
}
.vision-wrapper .single-vision::before{
  content: '';
  position: absolute;
  left: -30px;
  top:5px;
width: 0;
height: 0;
border-top: 20px solid transparent;
border-right: 40px solid rgb(184, 184, 184);
border-bottom: 20px solid transparent;
z-index: -1;
transform: rotate(-18deg);
}

.swiper-button-next, .swiper-button-prev{
  color: #fff;
  position: absolute;
  top: 55%;
  transform: translateY(-45%);
}

#download-platform{
  background-color: var(--color-dark-blue);
}

.social-links a img{
  margin-right: 5px;

}

.risk_wrapper{
  position: relative;
  margin-top: -40px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 70px 50px 30px 50px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 40px 30px -7px;
  margin-bottom: 70px;
  z-index: -1;
}

.risk_wrapper h2{
  font-size: 14px;
  color: gray;
  font-weight: 700;
  text-transform: uppercase;
}

.risk_wrapper ul li{
  font-size: 13px;
}

.f-bottom{
  display: flex;
  justify-content: space-between;
}
.f-bottom a{
  color: #707070;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.f-copyright{
  display: block;
  position: relative;
  margin: 5px 0 0 0;
}

.f-copyright p{
  font-size: 12px;
  color: #6b6b6b;
}

.f-list{
  position: relative;
  margin: 0 0px 0 25px;
  padding: 0;
}
.f-list li{
  font-size: 13px;
  line-height: 1.7em;
  padding-bottom: 15px;
  text-align: justify;
  list-style-type: square;
}


.media-wrapper {
  position: relative;
  display: block;
  /* height: 480px; */
  width: 100%;
  background: url(/assets/video/video-banner.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;


}

.media-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1c581ceb;
}

.media-wrapper a:hover {
  text-decoration: none;
}


.video-wrapper{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #e3e3e3;
  border-radius: 15px;
  overflow: hidden;
}
.video-wrapper:hover .vedio-block
{
  position: relative;
  overflow: hidden;
}
.video-wrapper .vedio-block::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #000000b2;
}

.video-wrapper:hover .vedio-block img{
 transform: scale(1.5);
 transition: .6s ease-in-out all
}
.video-wrapper .vedio-block{
  position: relative;
  display: block;
}
.video-wrapper .content-block{
  position: relative;
}
.video-wrapper .content-block h2{
 font-size: 24px;
 color: #333;
 padding: 40px 15px;
 font-weight: 800;
}
.video-wrapper .content-block h2 span{
  font-weight: 100;
}


.play-btn {
  width: 80px;
  height: 80px;
  background: radial-gradient(rgba(4, 196, 78, 0.8) 60%, rgba(255, 255, 255, 1) 62%);
  border-radius: 50%;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  /* margin: 100px auto; */
  box-shadow: 0px 0px 25px 3px rgba(4, 196, 78, 0.8);
  z-index: 100;
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -25%;
  left: -25%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
      opacity: 1;
      box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }

  100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0;
      box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
      opacity: 1;
      box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }

  100% {
      -webkit-transform: scale(1, 1);
      transform: scale(1);
      opacity: 0;
      box-shadow: none;

  }
}