

/** main-header **/

.main-header{
  position: relative;
}

.main-header .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top{
  position: relative;
  background: #131615;
  padding: 9px 0px;
}

.header-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .option-block{
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .top-inner .support-box{
  position: relative;
  display: block;
  padding-left: 37px;
}

.header-top .top-inner .support-box .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 28px;
}

.header-top .top-inner .support-box a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
}

.header-top .top-inner .theme-btn.btn-one{
  padding: 0px 20px 2px 20px;
  border-radius: 6px;
}

.header-top .top-inner .theme-btn.btn-one:hover{
  color: var(--secondary-color) !important;
}

.header-top .top-inner .theme-btn.btn-one:before,
.header-top .top-inner .theme-btn.btn-one:after{
  background: #fff;
}

.header-top .top-inner .theme-btn.btn-two{
  padding: 0px 20px;
  border-radius: 6px;
}

.header-style-one .menu-area{
  position: relative;
  display: flex;
  align-items: center;
}

.header-style-one .main-menu .navigation > li > a{
  border: 1px solid var(--secondary-color);
  border-radius: 40px;
  padding: 2px 20px;
}

/* .header-style-one .header-lower .logo-box{
  padding: 20px 0px;
} */

.header-style-one .main-menu .navigation > li{
  margin: 0px 10px;
}

.header-bottom .bottom-inner{
  position: relative;
  display: block;
  background: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 7px 60px;
}

.header-bottom .bottom-inner .stock-list{
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  -moz-animation: scroll-left 1000s linear infinite;
  -webkit-animation: scroll-left 1000s linear infinite;
  animation: scroll-left 1000s linear infinite;
}

.header-bottom .bottom-inner .inner-box{
  position: relative;
  overflow: hidden;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-100%); }
}

.header-bottom .bottom-inner .stock-list li{
  position: relative;
  display: inline-block;
  margin-right: 60px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.header-bottom .bottom-inner .stock-list li:last-child{
  margin-right: 0px;
}

.header-bottom .bottom-inner .stock-list li span{
  position: relative;
  display: inline-block;
  color: #858585;
}

.header-bottom .bottom-inner .stock-list li span i{
  position: relative;
  display: inline-block;
  font-size: 6px;
  top: -2px;
}

.header-bottom .bottom-inner .stock-list li.upper span i{
  color: #21B948;
}

.header-bottom .bottom-inner .stock-list li.lower span i{
  color: #FB0007;
}

.main-header .search-btn .search-toggler{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--secondary-color);
  transition: all 500ms ease;
}

.main-header .search-btn .search-toggler:hover{

}

.header-style-one .sticky-header .logo-box{
  padding: 10px 0px;
}


/** main-menu **/

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  margin: 0px 19px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:16px;
  line-height:26px;
  padding: 30px 0px;
  font-weight:500;
  font-family: var(--title-font);
  opacity:1;
  color: var(--title-color);
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  
}

.header-style-one .main-menu .navigation > li > a:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  right: 0px;
  bottom: 0px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.header-style-one .main-menu .navigation > li.current > a:after,
.header-style-one .main-menu .navigation > li:hover > a:after{
  transform: scale(1,1);
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:230px;
  margin-top: 15px;
  padding: 15px 30px;
  z-index:100;
  display:none;
  background: #fff;
  opacity: 0;
  border-bottom: solid;
  border-width: 3px;
  visibility: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding: 5px 0px;
  line-height:24px;
  font-weight:500;
  font-size:16px;
  text-transform:capitalize;
  font-family: var(--title-font);
  color:var(--title-color);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > .megamenu li > a{
  padding-left: 0px;
}

.main-menu .navigation > li > .megamenu h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{
  letter-spacing: 1px;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:0px;
  top:6px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:500;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-left: 30px;
  width:230px;
  margin-top: 15px;
  padding: 15px 30px;
  z-index:100;
  display:none;
  background: #fff;
  opacity: 0;
  border-bottom: solid;
  border-width: 3px;
  visibility: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul:before{
  position: absolute;
  content: '';
  background: transparent;
  width: 30px;
  height: 100%;
  left: -30px;
  top: 0px;
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding: 5px 0px;
  line-height:24px;
  font-weight:500;
  font-size:16px;
  text-transform:capitalize;
  font-family: var(--title-font);
  color:var(--title-color);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  letter-spacing: 1px;
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  top: 0%; 
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--theme-color);
  display: none;
}

.mobile-menu .nav-logo img{
  max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:50px 25px;
  text-align:left;  
  padding-bottom: 100px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #141417;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #e2a904;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  /*text-transform: uppercase;*/
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  color: #ffffff;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}


/** header-style-two **/

.header-style-two{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.header-style-two .header-top{
  background: transparent;
}

.main-header .info-list{
  position: relative;
  display: flex;
  align-items: center;
}

.main-header .info-list li{
  position: relative;
  display: inline-block;
  margin-right: 30px;
  padding-left: 26px;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
}

.main-header .info-list li:last-child{
  margin: 0px !important;
}

.main-header .info-list li span{
  font-weight: 700;
}

.main-header .info-list li i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #fff;
}

.header-style-two .header-lower .outer-box{
  background: #fff;
  border-radius: 10px;
  padding-left: 10px;
}

.main-header .menu-right-content{
  position: relative;
  display: flex;
  align-items: center;
}

.header-style-two .header-lower .menu-right-content .btn-box .theme-btn{
  border-radius: 0px 10px 10px 0px;
  padding: 20px 40px;
}

.header-style-two .main-menu .navigation > li > a{
  padding-top: 22px;
  padding-bottom: 22px;
}

.header-style-two .header-top .top-inner .support-box .icon-box{
  color: #fff;
}


/** header-style-three **/

.header-style-three{
  position: relative;
}

.header-style-three .header-top{
  background: #fff;
}

.header-style-three .header-top .top-inner .support-box a{
  color: var(--title-color);
}

.header-style-three .language-picker__button:before{
  color: var(--title-color);
}

.header-style-three .info-list li{
  color: var(--title-color);
}

.header-style-three .info-list li i{
  color: var(--theme-color);
}

.header-style-three .outer-container{
  position: relative;
  max-width: 1500px;
  padding: 0px 15px;
  margin: 0 auto;
}

.header-style-three .header-lower .outer-box{
  background: #fff;
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.05);
  padding: 0px 10px 0px 20px;
  border-radius: 50px;
}

.header-style-three .header-lower .theme-btn.btn-one{
  border-radius: 50px;
}

.header-style-three .main-menu .navigation > li > a{
  padding-top: 22px;
  padding-bottom: 22px;
}


/** header-style-four **/

.header-style-four{
  position: absolute;
  top: 40px;
}

.header-style-four .header-lower .menu-area{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 10px;
  padding: 0px 40px;
}

.header-style-four .header-lower .main-menu .navigation > li > a{
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-style-four .main-menu .navigation > li > a{
  color: #727272;
}

.header-style-four .main-menu .navigation > li.current > a,
.header-style-four .main-menu .navigation > li:hover > a{
  color: #fff;
}

.header-style-four .search-btn .search-toggler{
  color: #fff;
}

.header-style-four .search-btn .search-toggler:hover{
  color: #E4753D;
}

.header-style-four .sticky-header{
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header-style-four .main-menu .navigation > li > ul, 
.header-style-four .main-menu .navigation > li > .megamenu,
.header-style-four .main-menu .navigation > li > ul > li > ul{
  background: #111;
  border-color: #E4753D !important;
}

.header-style-four .main-menu .navigation > li > ul > li > a, 
.header-style-four .main-menu .navigation > li > .megamenu li > a,
.header-style-four .main-menu .navigation > li > ul > li > ul > li > a{
  color: #fff;
}

.header-style-four .main-menu .navigation > li > ul > li > a:hover, 
.header-style-four .main-menu .navigation > li > .megamenu li > a:hover,
.header-style-four .main-menu .navigation > li > ul > li > ul > li > a:hover{
  color: #E4753D;
}

.header-style-five{
  background: #fff;
}


/** header-style-five **/

.header-style-five .header-top .top-inner .support-box .icon-box{
  color: #fff;
}


/** rtl-css **/

.rtl .header-bottom .bottom-inner{
  direction: ltr;
  text-align: right;
}

.rtl .language-picker{
  margin-right: 0px;
  margin-left: 40px;
}

.rtl .header-top .top-inner .theme-btn.btn-one{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .main-header .search-btn{
  margin-left: 0px;
  margin-right: 30px;
}

.rtl .main-header .info-list li{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .header-style-two .language-picker{
  margin-left: 0px;
  margin-right: 40px;
}

.rtl .header-style-two .header-lower .outer-box{
  padding-left: 0px;
  padding-right: 20px;
}

.rtl .header-style-two .header-lower .menu-right-content .btn-box .theme-btn {
  border-radius: 10px 0px 0px 10px;
}

.rtl .header-style-two .search-btn{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .header-style-three .search-btn{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .header-style-four .search-btn{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .header-style-five .search-btn{
  margin-right: 0px;
  margin-left: 30px;
}

/** responsive-css **/


@media only screen and (max-width: 1349px){



}

@media only screen and (max-width: 1200px){
  .banner-style-two .image-box{
    display: none;
  }

  .header-style-three .logo-box{
    padding: 15px 0px;
  }

  .header-style-four .header-lower .menu-area{
    padding: 0px;
    border: none;
    background: transparent;
  }

  .header-style-five .logo-box{
    padding: 15px 0px;
  }
}

@media only screen and (max-width: 991px){
  

}

@media only screen and (max-width: 767px){
  

  .header-style-two .header-top .top-inner,
  .header-style-three .header-top .top-inner,
  .header-style-five .header-top .top-inner{
    display: block;
  }

  .header-style-two .option-block,
  .header-style-two .info-list,
  .header-style-three .option-block,
  .header-style-three .info-list,
  .header-style-five .option-block,
  .header-style-five .info-list{
    justify-content: center;
  }

}

@media only screen and (max-width: 599px){
  .language-picker{
    display: none;
  }

  .header-style-two .btn-box,
  .header-style-three .btn-box{
    display: none;
  }

  .header-style-two .logo-box{
    padding: 15px 0px;
  }

  .header-style-two .info-list,
  .header-style-three .info-list,
  .header-style-five .info-list{
    display: block;
  }

  .header-style-five .menu-right-content{
    display: none;
  }
}

@media only screen and (max-width: 499px){
  .header-style-one .header-lower .logo-box img,
  .header-style-five .header-lower .logo-box img{
    width: 80%;
  }

  .header-top .top-inner{
    display: block;
    text-align: center;
  }

  .header-top .top-inner .support-box{
    display: inline-block;
    margin-bottom: 10px;
  }

  .search-popup .upper-box{
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-style-two .logo-box,
  .header-style-three .logo-box{
    max-width: 120px;
  }

  .header-style-four .menu-right-content{
    display: none;
  }

}



























/** banner-section **/

.banner-carousel .slide-item{
  position: relative;
  padding: 140px 110px;
  border-radius: 10px;
  overflow: hidden;
}

.banner-carousel .slide-item .content-box{
  position: relative;
  max-width: 600px;
  z-index: 5;
}
  
.banner-carousel .slide-item .bg-layer{
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
  
.banner-carousel .active .slide-item .bg-layer{
  -webkit-transform:scale(1.25);
  -ms-transform:scale(1.25);
  transform:scale(1.25);
}
  
.banner-carousel .content-box h2{
  font-size: 60px;
  line-height: 64px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 23px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
  
.banner-carousel .content-box p{
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 33px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
  
.banner-carousel .content-box .btn-box{
  position: relative;
  display: block;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-carousel .owl-dots{
  position: absolute;
  left: 0px;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.banner-carousel .owl-dots button span{
  display: none !important;
}

.banner-carousel .owl-dots button{
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.30);
  cursor: pointer;
  margin: 0px 5px;
  transition: all 500ms ease;
}

.banner-carousel .owl-dots button.active,
.banner-carousel .owl-dots button:hover{
  background: #fff;
  transform: scale(1.45);
}


/** banner-style-two **/

.banner-style-two{
  position: relative;
}

.banner-style-two .slide-item{
  padding: 322px 0px 280px 0px;
  border-radius: 0px;
}

.banner-style-two .slide-item:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;
  z-index: 1;
}

.banner-style-two .shape{
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
}

.banner-style-two .image-box{
  position: absolute;
  right: 230px;
  bottom: 0px;
  z-index: 1;
}

.banner-style-two .image-box .image-1{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .image-box .image-1{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-two .image-box .image-2{
  position: absolute;
  right: -42px;
  bottom: 290px;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .image-box .image-2{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-two .image-box .image-3{
  position: absolute;
  left: -175px;
  bottom: 130px;
  opacity: 0;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .image-box .image-3{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .theme-btn.btn-one:hover{
  color: var(--theme-color) !important;
}

.banner-carousel .theme-btn.btn-one:before,
.banner-carousel .theme-btn.btn-one:after{
  background: #fff;
}


/** banner-style-three **/

.banner-style-three{
  position: relative;
}

.content_block_five .content-box{
  position: relative;
  display: block;
}

.content_block_five .content-box h3{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  padding: 27px 85px 15px 40px;
}

.content_block_five .content-box .form-inner{
  position: relative;
  display: block;
  padding: 40px;
}

.content_block_five .content-box .shape{
  position: absolute;
  left: -80px;
  top: -60px;
  width: 710px;
  height: 764px;
  background-repeat: no-repeat;
  background-position: top center;
}

.content_block_five .content-box .form-inner .form-group{
  position: relative;
  display: block;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 12px 20px 9px 24px;
}

.content_block_five .content-box .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.content_block_five .content-box .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 0px;
}

.content_block_five .content-box .form-inner .form-group input[type='text'],
.content_block_five .content-box .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 35px;
  font-size: 20px;
  font-weight: 500;
  color: var(--title-color);
  opacity: 0.5;
}

.content_block_five .content-box .form-inner .theme-btn{
  width: 100%;
}

.content_block_five .content-box .shape-2{
  position: absolute;
  left: -87px;
  top: -32px;
  width: 725px;
  height: 691px;
  background-repeat: no-repeat;
  -webkit-animation: service_hexagon_2 35s infinite linear;
  -moz-animation: service_hexagon_2 35s infinite linear;
  -o-animation: service_hexagon_2 35s infinite linear;
  animation: service_hexagon_2 35s infinite linear;
}

.content_block_six .content-box{
  position: relative;
  display: block;
}

.content_block_six .content-box h2{
  font-size: 60px;
  line-height: 64px;
  font-weight: 700;
  margin-bottom: 21px;
}

.content_block_six .content-box h2 span{
  display: block;
}

.content_block_six .content-box p{
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 31px;
}

.content_block_six .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
}

.content_block_six .content-box .btn-box .theme-btn.btn-two{
  border-color: var(--secondary-color);
  color: var(--title-color) !important;
}

.content_block_six .content-box .btn-box .theme-btn.btn-two:hover{
  color: #fff !important;
}

.banner-style-three .pattern-layer .pattern-1{
  position: absolute;
  top: 200px;
  right: 26px;
  width: 187px;
  height: 178px;
  background-repeat: no-repeat;
}

.banner-style-three .pattern-layer .pattern-2{
  position: absolute;
  top: 117px;
  right: 400px;
  width: 140px;
  height: 160px;
  background-repeat: no-repeat;
}

.banner-style-three .pattern-layer .pattern-3{
  position: absolute;
  right: 0px;
  bottom: 177px;
  width: 255px;
  height: 288px;
  background-repeat: no-repeat;
}


/** banner-style-four **/

.banner-style-four{
  position: relative;
}

.banner-style-four .image-box{
  position: relative;
  display: block;
  margin-left: 125px;
}

.banner-style-four .image-box img{
  width: 100%;
}

.banner-style-four .sub-title{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-family: var(--text-font);
  font-weight: 600;
  padding: 4px 21px 2px 21px;
  border-radius: 40px;
  text-transform: uppercase;
  z-index: 1;
}

.banner-style-four .sub-title:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.05;
}

.banner-style-four .sub-title:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.2;
  border: solid;
  border-width: 1px;
}

.banner-style-four .content-box h2{
  color: #fff;
}

.banner-style-four .content-box p{
  color: #fff;
}

.banner-style-four .content_block_six .content-box .btn-box .theme-btn.btn-two{
  color: #fff !important;
}

.banner-style-four .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1375px;
  background-repeat: no-repeat;
  background-position: top center;
  opacity: 0.8;
}

.banner-style-four .shape .shape-1{
  position: absolute;
  left: 0px;
  bottom: 88px;
  width: 151px;
  height: 178px;
  background-repeat: no-repeat;
}

.banner-style-four .shape .shape-2{
  position: absolute;
  top: 240px;
  right: 0px;
  width: 263px;
  height: 288px;
  background-repeat: no-repeat;
}


/** banner-style-five **/

.banner-style-five{
  position: relative;
}

.banner-style-five .banner-carousel .slide-item{
  padding: 125px 0px 182px 0px;
}

.banner-style-five .inner-container{
  max-width: 1320px;
  padding: 0px 15px;
  margin: 0 auto;
}

.banner-style-five .banner-carousel .image-box .image{
  position: relative;
  display: block;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-style-five .banner-carousel .active .image-box .image{
  position: relative;
  z-index: 5;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-five .banner-carousel .slide-item .shape{
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: 43px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

.banner-style-five .banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0.5;
}

.banner-style-five .banner-carousel .content-box .btn-box{
  display: flex;
  align-items: center;
}



/** rtl-css **/

.rtl .banner-carousel .slide-item .content-box{
  text-align: right;
}

.rtl .content_block_five .content-box h3{
  text-align: left;
}

.rtl .content_block_six .content-box .btn-box .theme-btn.btn-one{
  margin-right: 0px;
  margin-left: 15px;
}

.rtl .banner-style-four .image-box{
  margin-left: 0px;
  margin-right: 125px;
}


/** responsive-css **/

@media only screen and (max-width: 1600px){

}

@media only screen and (max-width: 1200px){
  .content_block_five .content-box{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 20px 70px 10px rgba(0, 0, 0, 0.1);
  }

  .content_block_five .content-box .shape,
  .content_block_five .content-box .shape-2{
    display: none;
  }
}

@media only screen and (max-width: 991px){
  .content_block_five .content-box,
  .content_block_six .content-box{
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .banner-style-four .image-box{
    margin-left: 0px;
  }

  .rtl .banner-style-four .image-box{
    margin-right: 0px;
  }

  .banner-style-four .shape{
    display: none;
  }

  .banner-style-five .banner-carousel .image-box{
    margin-left: 0px;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px){
  .banner-carousel .content-box h2{
    font-size: 42px;
    line-height: 50px;
  }

  .banner-carousel .slide-item{
    padding: 100px 30px;
  }

  .banner-style-two .slide-item{
    padding: 200px 0px 150px 0px;
  }

  .banner-style-two .shape{
    background-size: cover;
    background-position: center;
  }

  .banner-style-three{
    padding: 70px 0px;
  }

  .content_block_six .content-box h2{
    font-size: 40px;
    line-height: 50px;
  }

  .banner-style-five .banner-carousel .slide-item{
    padding: 90px 0px 110px 0px;
  }
}

@media only screen and (max-width: 599px){
  .content_block_five .content-box .form-inner{
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 499px){
  .banner-carousel .slide-item{
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .banner-style-two .slide-item{
    padding: 250px 0px 150px 0px;
  }

  .content_block_six .content-box .btn-box,
  .banner-style-five .banner-carousel .content-box .btn-box{
    display: block;
  }

  .content_block_six .content-box .btn-box .theme-btn.btn-one,
  .banner-style-five .banner-carousel .content-box .btn-box .theme-btn.btn-one{
    margin: 0px 0px 15px 0px !important;
  }
  
}












































/** clients-section **/

.clients-section{
  position: relative;
}

.clients-section .clients-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clients-section .clients-list li{
  position: relative;
  display: inline-block;
}

.clients-section .clients-list li img{
  position: relative;
  display: inline-block;
  filter: grayscale(100%);
  transition: all 500ms ease;
}

.clients-section .clients-list li img:hover{
  filter: grayscale(0%);
}


/** clients-style-two **/

.clients-style-two{
  position: relative;
}

.clients-style-two .inner-container{
  position: relative;
  display: block;
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 10px;
  padding: 50px;
  z-index: 1;
}

.clients-style-two .inner-container .clients-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clients-style-two .inner-container .clients-list li{
  position: relative;
  display: inline-block;
}

.clients-style-two .inner-container .clients-list li img{
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.clients-style-two .inner-container .clients-list li img:hover{
  transform: scale(1.1);
}


/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px){
  .clients-section .clients-list{
    display: block;
    text-align: center;
  }

  .clients-section .clients-list li{
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .clients-section .clients-list li:last-child{
    margin-right: 0px;
  }

  .rtl .clients-section .clients-list li{
    margin-right: 0px;
    margin-left: 30px;
  }

  .rtl .clients-section .clients-list li:last-child{
    margin-left: 0px;
  }

  .clients-section{
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 991px){
  .clients-style-two .inner-container .clients-list{
    display: block;
  }

  .clients-style-two .inner-container .clients-list li{
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .clients-style-two .inner-container .clients-list li:last-child{
    margin-right: 0px;
  }

  .rtl .clients-style-two .inner-container .clients-list li{
    margin-right: 0px;
    margin-left: 30px;
  }

  .rtl .clients-style-two .inner-container .clients-list li:last-child{
    margin-left: 0px;
  }

  .clients-style-two .inner-container{
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px){

}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){
  .clients-section .clients-list li{
    display: block;
    margin: 0px 0px 30px 0px !important;
  }

  .clients-style-two .inner-container .clients-list li{
    display: block;
    margin: 0px 0px 30px 0px !important;
    text-align: center;
  }
}












































/** account-section **/

.account-section{
  position: relative;
  background: #F7F7F7;
  border-radius: 40px;
  overflow: hidden;
}

.account-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.account-block-one{
  margin-top: 28px;
}

.account-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 51px 30px 30px 30px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.account-block-one .inner-box:hover{
  box-shadow: 0px 10px 80px 10px rgba(0, 0, 0, 0.15);
}

.account-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 30px;
  top: -28px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

.account-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  z-index: -1;
  transition: all 500ms ease;
}

.account-block-one .inner-box:hover .icon-box:before{
  height: 100%;
}

.account-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 11px;
}

.account-block-one .inner-box h3 a{
  color: var(--title-color);
}

.account-block-one .inner-box h3 a:hover{

}


/** account-style-two **/

.account-style-two{
  position: relative;
  background: #191919;
}

.account-block-two{
  position: relative;
  margin-top: 30px;
}

.account-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 50px 30px 30px 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.account-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scaleX(0);
  transform-origin: center;
  z-index: -1;
  border-radius: 10px;
  transition: all 500ms ease;
}

.account-block-two .inner-box:hover:before{
  transform: scaleX(1);
}

.account-block-two .inner-box .icon-box{
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -32px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 36px;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
}

.account-block-two .inner-box:hover .icon-box{
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
}

.account-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.account-block-two .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.account-block-two .inner-box h3 a:hover{
  text-decoration: underline;
}

.account-block-two .inner-box:hover h3 a,
.account-block-two .inner-box:hover p{
  color: #fff;
}

.account-block-two .inner-box p{
  margin-bottom: 18px;
  transition: all 500ms ease;
}

.account-block-two .inner-box:hover .btn-box .theme-btn{
  background: #fff;
  color: var(--theme-color) !important;
}

.account-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}

.account-style-two .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}


/** account-style-three **/

.account-style-three{
  position: relative;
}

.content_block_eight .content-box{
  position: relative;
  display: block;
}

.content_block_eight .content-box .text-box p{
  font-size: 18px;
  line-height: 28px;
  max-width: 520px;
  margin-bottom: 30px;
}

.content_block_eight .content-box .text-box .list-style-one li:before{
  border-radius: 50%;
  background-color: rgba(34, 130, 58, 0.20);
}

.account-style-two.account-page .account-block-two .inner-box{
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.account-style-two.account-page .account-block-two .inner-box p{
  margin-bottom: 0px;
}

.feature-account .inner-container{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.feature-account .inner-container .single-item{
  position: relative;
  float: left;
  width: 20%;
}

.feature-account .single-item{
  position: relative;
  display: block;
  padding: 46px 25px 40px 30px;
  border-right: 1px solid #e5e5e5;
  min-height: 385px;
}

.feature-account .single-item:last-child{
  border-right: none;
}

.feature-account .single-item .icon-box{
  position: relative;
  display: inline-block;
  font-size: 46px;
  line-height: 46px;
  margin-bottom: 23px;
}

.feature-account .single-item h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.feature-account .single-item h4 a{
  display: inline-block;
  color: var(--title-color);
}

.feature-account .single-item h4 a:hover{

}

.feature-account .single-item .list-style-one li{
  margin-bottom: 13px;
}

.feature-account .single-item .list-style-one li:last-child{
  margin-bottom: 0px;
}

.feature-account .single-item .list-style-one li:before{
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: transparent;
  border: solid;
  border-width: 1px;
  border-radius: 50%;
  font-size: 10px;
}

.feature-account .inner-container .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** rtl-css **/

.rtl .account-block-one .inner-box .icon-box{
  left: inherit;
  right: 30px;
}

.rtl .content_block_eight .content-box{
  margin-left: 0px;
  margin-right: 60px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .account-block.pt_75{
    padding-top: 0px;
  }

  .content_block_eight .content-box{
    margin-left: 0px;
  }

  .rtl .content_block_eight .content-box{
    margin-right: 0px;
  }

  .content_block_eight .content-box.mr_60{
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .feature-account .inner-container .single-item{
    width: 50%;
  }
}

@media only screen and (max-width: 767px){
  .account-section{
    padding: 70px 0px 40px 0px;
  }

  .account-style-two{
    padding: 110px 0px 80px 0px;
  }

  .account-style-three{
    padding: 70px 0px;
  }

  .account-style-two.clear-bg{
    padding: 50px 0px 40px 0px;
  }

  .feature-account{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px){
  .feature-account .inner-container .single-item{
    width: 100%;
    border: none !important;
  }
}

@media only screen and (max-width: 499px){

}

















/** about-section **/

.about-section{
  position: relative;
}

.content_block_one .content-box{
  position: relative;
  display: block;
}

.content_block_one .content-box .accordion-box .accordion{
  position: relative;
  border-bottom: 1px solid #E5E5E5;
}

.content_block_one .content-box .accordion-box .accordion:last-child{
  border-bottom: none;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn{
  position: relative;
  padding: 10px 30px 10px 70px;
  cursor: pointer;
  margin: 40px 0px;
}

.content_block_one .content-box .accordion-box .accordion:first-child .acc-btn{
  margin-top: 0px;
}

.content_block_one .content-box .accordion-box .accordion:last-child .acc-btn{
  margin-bottom: 0px;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  box-shadow: 0px 4px 25px 2px rgba(241, 242, 245, 1);
  text-align: center;
  border-radius: 50%;
  font-size: 7px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn.active{
  margin-bottom: 0px;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn.active .icon-box{
  color: #fff;
  transform: rotate(180deg);
  box-shadow: none;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn h3{
  font-size: 24px;
  line-height: 30px;
}

.content_block_one .content-box .accordion-box .accordion .acc-content{
  position: relative;
  padding: 15px 30px 40px 70px;
}


.video_block_one .video-inner{
  position: relative;
  width: 100%;
  padding: 218px 0px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.video_block_one .video-box .video-content{
  position: relative;
  display: inline-block;
  width: 148px;
  height: 148px;
  background: rgba(255, 255, 255, 0.50);
  border-radius: 50%;
  text-align: center;
}

.video_block_one .video-box .video-content a{
  position: absolute;
  display: inline-block;
  left: 32px;
  top: 32px;
  width: 82px;
  height: 82px;
  line-height: 88px;
  background: #fff;
  font-size: 30px;
  border-radius: 50%;
}

.video_block_one .video-content .curve-text{
  position: absolute;
  left: 74px;
  top: 7px;
  width: 148px;
  height: 148px;
}

.video_block_one .video-content .curve-text span{
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.video_block_one .video-box{
  position: relative;
  display: block;
}


/** about-style-two **/

.about-style-two{
  position: relative;
}

.about-style-two .tabs-box{
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}

.about-style-two .tabs-box:before{
  position: absolute;
  content: '';
  background: #191919;
  width: 70%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.about-style-two .tab-btns{
  position: relative;
  padding: 60px 0px 60px 60px;
  z-index: 2;
}

.about-style-two .tab-btns li{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  border-radius: 80px;
  padding: 25px 40px;
  padding-right: 100px;
  cursor: pointer;
  transition: all 500ms ease;
}

.about-style-two .tab-btns li.active-btn,
.about-style-two .tab-btns li:hover{

}

.about-style-two .tab-btns li i{
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--title-color);
  opacity: 0;
  transition: all 500ms ease;
}

.about-style-two .tab-btns li.active-btn i,
.about-style-two .tab-btns li:hover i{
  opacity: 1;
}

.about-style-two .tabs-content{
  position: relative;
  padding: 45px 50px 50px 0px;
  z-index: 1;
}

.about-style-two .tabs-content:before{
  position: absolute;
  content: '';
  background: #F7F7F7;
  border-radius: 40px;
  width: calc(100% + 87px);
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: -1;
}

.about-style-two .content-box{
  position: relative;
  display: block;
}

.about-style-two .content-box h2{
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 19px;
}

.about-style-two .content-box p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}


/** about-style-three **/

.about-style-three{
  position: relative;
}

.content_block_seven .content-box{
  position: relative;
  display: block;
}

.content_block_seven .content-box .accordion-box .accordion{
  position: relative;
  border: 1px solid #E5E5E5;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.content_block_seven .content-box .accordion-box .accordion:last-child{
  margin-bottom: 0px;
}

.content_block_seven .content-box .accordion-box .accordion.active-block{
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn{
  position: relative;
  padding: 24px 60px 24px 30px;
  cursor: pointer;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn h3{
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn .icon-box{
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 7px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content{
  padding: 0px 30px 30px 30px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content p{
  font-size: 18px;
  line-height: 28px;
  font-weight: 460px;
  margin-bottom: 24px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--title-font);
  font-weight: 500;
  border-bottom: solid;
  border-width: 1px;
}

.about-style-three .video_block_one .video-box .video-content{
  position: absolute;
  left: -70px;
  top: 15px;
}

.about-style-three .video_block_one .video-box img{
  width: 100%;
}


.about-style-two.dark-section{
  background: #191919;
}

.about-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}

.about-style-two .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}

.about-style-two.dark-section .tabs-box:before{
  background: #fff;
}

.about-style-two.dark-section .tab-btns li{
  color: var(--title-color);
}

.about-style-two.dark-section .tab-btns li.active-btn, 
.about-style-two.dark-section .tab-btns li:hover{
  color: #fff;
}

.about-style-two.dark-section .tab-btns li i{
  color: #fff;
  background: var(--secondary-color);
}


/** rtl-css **/

.rtl .content_block_one .content-box{
  margin-right: 0px;
  margin-left: 80px;
}

.rtl .video_block_one .video-box{
  margin-left: 0px;
  margin-right: 70px;
}

.rtl .content_block_one .content-box .accordion-box .accordion .acc-btn,
.rtl .content_block_one .content-box .accordion-box .accordion .acc-content{
  padding-left: 30px;
  padding-right: 70px;
}

.rtl .content_block_one .content-box .accordion-box .accordion .acc-btn .icon-box{
  left: inherit;
  right: 0px;
}

.rtl .about-style-two .tabs-box{
  direction: ltr;
  text-align: right;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .content_block_one .content-box{
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .rtl .content_block_one .content-box{
    margin-left: 0px;
  }

  .video_block_one .video-box{
    margin-left: 0px;
  }

  .rtl .video_block_one .video-box{
    margin-right: 0px;
  }

  .about-style-two .tabs-box:before{
    display: none;
  }

  .about-style-two .tab-btns{
    padding: 60px;
    margin-bottom: 30px;
    background: #191919;
    border-radius: 40px;
  }

  .about-style-two .tabs-content{
    padding-left: 50px;
  }

  .about-style-two .tabs-content:before{
    width: 100%;
  }

  .about-style-three .video_block_one .video-box .video-content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }

  .content_block_seven .content-box{
    margin-bottom: 30px;
  }

  .about-style-two.dark-section .tab-btns{
    background: #fff;
  }
}

@media only screen and (max-width: 767px){
  .about-section{
    padding: 70px 0px;
  }

  .about-style-two{
    padding: 0px 0px 70px 0px;
  }

  .about-style-three{
    padding: 70px 0px;
  }

  .about-style-two.dark-section{
    padding: 110px 0px;
  }
}

@media only screen and (max-width: 599px){
  .video_block_one .video-inner{
    padding: 150px 0px;
  }

  .about-style-two .tab-btns,
  .about-style-two .tabs-content{
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 499px){
  .about-style-two .tab-btns li{
    padding-left: 30px;
    padding-right: 30px;
    font-size: 20px;
  }

  .about-style-two .tab-btns li i{
    display: none;
  }
}












































/** funfact-section **/

.funfact-section{
  position: relative;
}

.funfact-section .inner-container{
  position: relative;
  display: block;
  overflow: hidden;
  background: #F5FFF9;
  border: 1px solid #BDE7C3;
  border-radius: 10px;
  overflow: hidden;
}

.funfact-block-one .inner-box{
  position: relative;
  display: block;
  padding: 47px 20px 60px 50px;
}

.funfact-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #BDE7C3;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.funfact-block:last-child .funfact-block-one .inner-box:before{
  display: none;
}

.funfact-block-one .inner-box .count-outer{
  position: relative;
  display: inline-block;
  font-size: 64px;
  line-height: 70px;
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: 9px;
}

.funfact-block-one .inner-box .count-outer .text{
  position: relative;
  display: inline-block;
  font-size: 24px;
  margin-left: 10px;
  top: -6px;
}

.funfact-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
}


/** funfact-style-two **/

.funfact-style-two{
  position: relative;
}

.funfact-block-two{
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.funfact-block-two .shape{
  position: absolute;
  left: 0px;
  top: 15px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.funfact-block-two .inner-box{
  position: relative;
  display: block;
  border: 1px solid #E7E7E7;
  border-radius: 10px;
  padding: 30px 30px;
  background: #fff;
  transition: all 500ms ease;
}

.funfact-block-two .inner-box:hover{
  
}

.funfact-block-two .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 52px;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 0px;
  font-weight: 500;
  text-transform: uppercase;
}

.funfact-block-two .inner-box p{
  font-size: 20px;
  line-height: 30px;
  color: var(--title-color);
}

.dark_home .funfact-block-two{
  padding-bottom: 0px;
}

.dark_home .funfact-block-two .inner-box{
  border: none;
  background: transparent;
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .funfact-block-two .inner-box .count-outer{
  color: #fff;
}

.dark_home .funfact-block-two .inner-box p{
  color: #fff;
}


/** rtl-css **/

.rtl .funfact-block-one .inner-box:before{
  right: inherit;
  left: -15px;
}

.rtl .funfact-block-one .inner-box .count-outer .text{
  margin-left: 0px;
  margin-right: 10px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .funfact-block-one .inner-box:before{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .funfact-block-one .inner-box{
    padding-left: 30px;
  }

  .funfact-block-one .inner-box{
    padding-bottom: 0px;
  }

  .funfact-section .inner-container{
    padding-bottom: 60px;
  }

  .funfact-style-two{
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){

}












































/** trading-section **/

.trading-section{
  position: relative;
}

.trading-section .inner-container{
  position: relative;
  display: block;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  overflow: hidden;
}

.trading-section .inner-container .trading-block-one{
  position: relative;
  float: left;
  width: 20%;
}

.trading-block-one .inner-box{
  position: relative;
  display: block;
  padding: 29px 30px 40px 30px;
  overflow: hidden;
  border-right: 1px solid #E5E5E5;
  transition: all 500ms ease;
}

.trading-section .inner-container .trading-block-one:last-child .inner-box{
  border-right: none;
}

.trading-block-one .inner-box:hover{
  background: rgba(43, 255, 128, 0.03);
}

.trading-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  left: 0px;
  top: -1px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.trading-block-one .inner-box:hover:before{
  transform: scale(1,1);
}

.trading-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}

.trading-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.trading-block-one .inner-box h3 a:hover{

}

.trading-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 120px;
  opacity: 0;
  top: 15px;
  transition: all 500ms ease;
}

.trading-block-one .inner-box:hover p{
  top: 0px;
  opacity: 1;
}

.trading-block-one .inner-box .theme-btn{
  width: 100%;
  top: 15px;
  opacity: 0;
}

.trading-block-one .inner-box:hover .theme-btn{
  top: 0px;
  opacity: 1;
}

.trading-block-one .inner-box .image-box{
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.trading-block-one .inner-box:hover .image-box{
  filter: blur(5px);
}


/** trading-style-two **/

.trading-style-two{
  position: relative;
  background: #191919;
}

.project-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.project-tab .p-tabs-content {
  position: relative;
  display: block;
}

.project-tab .p-tab.active-tab .trading-block-two {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.project-tab .p-tab .trading-block-two {
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}

.trading-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 12px 24px 24px 24px;
  z-index: 1;
}

.trading-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.03);
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.trading-block-two .inner-box:hover:before{
  height: 100%;
  top: 0px;
}

.trading-block-two .inner-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 17px;
}

.trading-block-two .inner-box .flag{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.trading-block-two .inner-box .flag li{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
  margin: 0px -5px;
}

.trading-block-two .inner-box .text-list{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.trading-block-two .inner-box .text-list li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.trading-block-two .inner-box .text-list li:last-child{
  margin-bottom: 0px;
}

.trading-block-two .inner-box .text-list li h6{
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.trading-block-two .inner-box .text-list li span{
  font-size: 16px;
  line-height: 26px;
  font-family: var(--text-font);
}

.trading-block-two .inner-box .btn-box a{
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 500;
  padding: 2px 15px;
  text-align: center;
  border: solid;
  border-width: 1px;
  border-radius: 10px;
}

.trading-block-two .inner-box .btn-box a:hover{
  color: #fff;
}

.project-tab .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #303030;
  border-radius: 10px;
  padding: 5px;
}

.project-tab .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  padding: 11px 49px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.project-tab .tab-btns li.active-btn,
.project-tab .tab-btns li:hover{

}

.trading-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.trading-style-two .owl-dots{
  margin-top: 20px;
}


/** trading-style-three **/

.trading-style-three{
  position: relative;
  background: #F7F7F7;
}

.trading-style-three .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.trading-style-three .trading-list{
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  -moz-animation: scroll-left 1000s linear infinite;
  -webkit-animation: scroll-left 1000s linear infinite;
  animation: scroll-left 1000s linear infinite;
}

.trading-style-three .trading-list li{
  position: relative;
  display: inline-block;
  width: 300px;
  margin-right: 10px;
}

.trading-style-three .trading-list li:last-child{
  margin: 0px !important;
}

.trading-block-three{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 60px;
  padding: 10px;
}

.trading-block-three .inner-box{
  position: relative;
  padding-left: 55px;
  padding-right: 80px;
}

.trading-block-three .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}

.lower .trading-block-three .inner-box .icon-box{
  color: #F41112;
}

.trading-block-three .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
}

.lower .trading-block-three .inner-box .icon-box:before{
  background: #F41112;
}

.trading-block-three .inner-box h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.trading-block-three .inner-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--title-color);
}

.trading-block-three .inner-box .theme-btn{
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 50px;
  padding: 5px 13px;
}


/** trading-style-four **/

.trading-style-four{
  position: relative;
}

.trading-style-four .tabs-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.trading-style-four .tabs-content{
  position: relative;
  padding: 54px 100px 40px 80px;
}

.trading-style-four .image-box{
  position: relative;
  display: block;
}

.trading-style-four .image-box img{
  width: 100%;
}

.trading-style-four .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  padding: 23px 30px;
  cursor: pointer;
  transition: all 500ms ease;
}

.trading-style-four .tab-btns li:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 2px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.trading-style-four .tab-btns li:last-child:before{
  display: none;
}

.trading-style-four .tab-btns li:after{
  position: absolute;
  content: '';
  background: #114B1F;
  width: 2px;
  height: 30px;
  top: 50%;
  right: 0px;
  margin-top: -15px;
}

.trading-style-four .tab-btns li:last-child:after{
  display: none;
}

.trading-style-four .tab-btns li .icon-box{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 4px;
  transition: all 500ms ease;
}

.trading-style-four .tab-btns li h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  transition: all 500ms ease;
}

.trading-style-four .tab-btns li.active-btn,
.trading-style-four .tab-btns li:hover{
  background: #fff;
}

.trading-style-four .tab-btns li.active-btn .icon-box,
.trading-style-four .tab-btns li:hover .icon-box,
.trading-style-four .tab-btns li.active-btn h4,
.trading-style-four .tab-btns li:hover h4{

}

.content_block_three .content-box{
  position: relative;
  display: block;
}

.content_block_three .content-box h2{
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.content_block_three .content-box p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}

.content_block_three .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
}

.content_block_three .content-box .btn-box .theme-btn.btn-two{
  color: var(--theme-color) !important;
  padding: 9px 35px;
}

.content_block_three .content-box .btn-box .theme-btn.btn-two:hover{
  color: #fff !important;
}


/** trading-style-five **/

.trading-style-five{
  position: relative;
}

.trading-style-five .inner-container{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
}

.trading-style-five .table-outer{
  position: relative;
  overflow-x: auto;
  width: 100%;
}

.trading-style-five .table-outer .trading-table{
  min-width: 1210px;
  width: 100%;
}

.trading-style-five .tabs-content{
  position: relative;
  padding: 30px 40px;
}

.trading-style-five .tab-btns{
  position: relative;
  display: block;
  border-bottom: 1px solid #E5E5E5;
  padding: 0px 40px;
}

.trading-style-five .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 30px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  cursor: pointer;
  padding: 15px 12px;
  margin-right: 70px;
}

.trading-style-five .tab-btns li:last-child{
  margin-right: 0px;
}

.trading-style-five .tab-btns li:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0px;
  bottom: -1px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.trading-style-five .tab-btns li.active-btn:before,
.trading-style-five .tab-btns li:hover:before{
  transform: scale(1,1);
}

.trading-style-five .tab-btns li.active-btn,
.trading-style-five .tab-btns li:hover{

}

.trading-style-five .table-outer thead td{
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
}

.trading-style-five .table-outer tbody td{
  font-size: 16px;
  line-height: 20px;
  color: var(--title-color);
  padding: 16px 0px;
  font-weight: 500;
  text-transform: uppercase;
}

.trading-style-five .table-outer tbody td .single-item{
  position: relative;
  display: flex;
  align-items: center;
}

.trading-style-five .table-outer tbody td .single-item img{
  margin-right: 8px;
}

.trading-style-five .table-outer tr td:last-child{
  text-align: right;
}

.trading-style-five .table-outer tr td{
  padding-left: 50px;
}

.trading-style-five .table-outer tr td:first-child{
  padding-left: 0px;
}

.trading-style-five .table-outer tr td.upper{
  color: #2BAC62;
}

.trading-style-five .table-outer tr td.lower{
  color: #FF5C5C;
}

.trading-style-five .inner-container .lower-content{
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px 30px 30px 40px;
}

.trading-style-five .inner-container .lower-content p{
  color: var(--title-color);
}

.trading-style-five .inner-container .lower-content p a{
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: var(--title-color);
  text-decoration: underline;
}

.trading-style-five .inner-container .lower-content p a:hover{

}

.dark_home .trading-style-three{
  background: transparent;
}

.dark_home .trading-block-three{
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.dark_home .trading-block-three .inner-box h6,
.dark_home .trading-block-three .inner-box span{
  color: #fff;
}

.dark_home .trading-block-three .inner-box .theme-btn{
  border-radius: 4px;
}

.dark_home .project-tab .tab-btns{
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.dark_home .trading-block-two .inner-box{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .trading-block-two .inner-box h5,
.dark_home .trading-block-two .inner-box .text-list li h6,
.dark_home .trading-block-two .inner-box .text-list li span{
  color: #fff;
}

.dark_home .trading-style-two{
  background: transparent;
}

.trading-style-two .shape .shape-1{
  position: absolute;
  left: 0px;
  bottom: 150px;
  width: 162px;
  height: 288px;
  background-repeat: no-repeat;
}

.trading-style-two .shape .shape-2{
  position: absolute;
  right: 0px;
  bottom: 160px;
  width: 137px;
  height: 178px;
  background-repeat: no-repeat;
}

.dark_home .trading-style-four .tabs-box{
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(72, 72, 72, 1.0);
}

.dark_home .trading-style-four .tab-btns li.active-btn, 
.dark_home .trading-style-four .tab-btns li:hover{
  background: transparent;
}

.dark_home .trading-style-four .tab-btns li:before{
  background: #000;
}

.dark_home .trading-style-four .tab-btns li:after{
  display: none;
}

.dark_home .content_block_three .content-box h2{
  color: #fff;
}

.dark_home .content_block_three .content-box p{
  color: rgba(255, 255, 255, 0.80);
}

.dark_home .content_block_three .content-box .btn-box .theme-btn.btn-two{
  color: var(--theme-color-2) !important;
}

.dark_home .content_block_three .content-box .btn-box .theme-btn.btn-two:hover{
  color: #fff !important;
}

.trading-style-three.alternat-2 .trading-block-three{
  border-radius: 10px;
}

.trading-style-three.alternat-2 .trading-block-three .inner-box .theme-btn{
  border-radius: 4px;
}

.trading-style-three.alternat-2{
  background: transparent;
}


/** trading-style-six **/

.trading-style-six{
  position: relative;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:5px;
  overflow: hidden;
  border-radius: 30px;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:5px;
  background: #D9002A;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box .bar-inner:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 4px;
  height: 100%;
  top: 0px;
  right: -2px;
}

.trading-style-six .tabs-content{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.trading-style-six .table-outer{
  position: relative;
  overflow-x: auto;
  width: 100%;
}

.trading-style-six .table-outer .table-content{
  min-width: 1290px;
  width: 100%;
}

.trading-style-six .table-outer .table-content li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #E5E5E5;
}

.trading-style-six .table-outer .table-content li:last-child{
  border-bottom: none;
}

.trading-style-six .table-outer .table-content li.table-title p{
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.trading-style-six .table-outer .table-content li.table-data .single-item{
  position: relative;
  display: block;
  padding: 0px 0px 0px 44px;
}

.trading-style-six .table-outer .table-content li.table-data .single-item .flag{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.trading-style-six .table-outer .table-content li.table-data .single-item .flag img{
  width: 100%;
  border-radius: 50%;
}

.trading-style-six .table-outer .table-content li.table-data .single-item h6{
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.trading-style-six .table-outer .table-content li.table-data .single-item span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box{
  position: relative;
  display: block;
  width: 330px;
  padding: 0px 40px;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box{
  position: absolute;
  left: 0px;
  top: -8px;
  width: 100%;
  height: 100%;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span{
  position: absolute;
  top: 0px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span.sellers{
  color: #D9002A;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span.buyers{
  right: 0px;
}

.trading-style-six .table-outer .table-content li.table-data .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--title-font);
  font-weight: 500;
  border: solid;
  border-width: 1px;
  border-radius: 5px;
  padding: 3px 15px;
}

.trading-style-six .table-outer .table-content li.table-data .btn-box a:hover{
  color: #fff !important;
}

.trading-style-six .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #303030;
  border-radius: 10px;
  padding: 5px;
}

.trading-style-six .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  padding: 11px 49px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.trading-style-six .tab-btns li.active-btn,
.trading-style-six .tab-btns li:hover{

}


.trading-style-six.light-section{
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
}

.trading-style-six.light-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
}

.trading-style-six.light-section .tab-btns{
  background: #fff;
}

.trading-style-six.light-section .tab-btns li{
  color: var(--title-color);
}

.trading-style-six.light-section .tab-btns li.active-btn, 
.trading-style-six.light-section .tab-btns li:hover{
  color: #fff;
}


/** rtl-css **/

.rtl .trading-style-three{
  direction: ltr;
  text-align: right;
}

.rtl .trading-style-four .image-box{
  margin-left: 0px;
  margin-right: 70px;
}

.rtl .content_block_three .content-box{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .trading-style-four .tab-btns li{
  float: right;
}

.rtl .trading-style-four .tab-btns li:before{
  right: inherit;
  left: 0px;
}

.rtl .trading-style-four .tab-btns li:after{
  right: inherit;
  left: 0px;
}

.rtl .content_block_three .content-box .btn-box .theme-btn.btn-one{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .trading-style-five .tab-btns li{
  margin-right: 0px;
  margin-left: 70px;
}

.rtl .trading-style-five .tab-btns li:last-child{
  margin-left: 0px;
}

.rtl .trading-style-five .table-outer tbody td .single-item img{
  margin-right: 0px;
  margin-left: 8px;
}

.rtl .trading-style-five .table-outer tr td:last-child{
  text-align: left;
}

.rtl .trading-style-five .table-outer tr td{
  padding-left: 0px;
  padding-right: 50px;
}

.rtl .trading-style-five .table-outer tr td:first-child{
  padding-right: 0px;
}

.rtl .trading-style-five .inner-container .lower-content .btn-box{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .trading-style-six .table-outer .table-content li.table-data .single-item{
  padding-left: 0px;
  padding-right: 44px;
}

.rtl .trading-style-six .table-outer .table-content li.table-data .single-item .flag{
  left: inherit;
  right: 0px;
}

.rtl .trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span.buyers{
  right: inherit;
  left: 0px;
}

.rtl .progress-box .bar-inner:before{
  right: inherit;
  left: -2px;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){
  .trading-section .inner-container .trading-block-one{
    width: 33.333%;
  }

  .project-tab .tab-btns,
  .trading-style-six .tab-btns{
    display: block;
  }
}

@media only screen and (max-width: 991px){
  .trading-section .inner-container .trading-block-one{
    width: 50%;
  }

  .content_block_three .content-box{
    margin: 0px 0px 30px 0px !important;
  }

  .trading-style-four .image-box{
    margin: 0px !important;
  }

  .trading-style-two .shape{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .trading-section .inner-container .trading-block-one{
    width: 100%;
  }

  .trading-section .inner-container .trading-block-one .inner-box{
    border-right: none;
  }

  .trading-style-two .owl-dots{
    display: none;
  }

  .trading-style-two{
    padding: 70px 0px 40px 0px;
  }

  .trading-style-four .tab-btns li{
    width: 50%;
  }

  .trading-style-four .tab-btns li:before,
  .trading-style-four .tab-btns li:after{
    display: none;
  }

  .trading-style-four{
    padding: 70px 0px;
  }

  .trading-style-five{
    padding-bottom: 70px;
  }

  .trading-style-five .tab-btns li{
    margin-right: 30px;
  }

  .trading-style-five .tab-btns li:last-child{
    margin-right: 0px;
  }

  .rtl .trading-style-five .tab-btns li{
    margin-left: 30px;
  }

  .rtl .trading-style-five .tab-btns li:last-child{
    margin-left: 0px;
  }

  .trading-style-four.pt_0{
    padding-top: 0px;
  }

  .trading-style-four.pt_0{
    padding-top: 0px;
  }

  .trading-style-six{
    padding-bottom: 70px;
  }

  .trading-style-six.pt_100{
    padding-top: 70px;
  }
}

@media only screen and (max-width: 599px){
  .trading-style-four .tab-btns li{
    width: 100%;
  }

  .trading-style-four .tabs-content{
    padding-left: 30px;
    padding-right: 30px;
  }

  .trading-style-five .inner-container .lower-content{
    display: block;
  }

  .trading-style-five .inner-container .lower-content .btn-box{
    margin: 0px 0px 20px 0px !important;
  }
}

@media only screen and (max-width: 499px){
  .content_block_three .content-box .btn-box{
    display: block;
  }

  .content_block_three .content-box .btn-box .theme-btn.btn-one{
    margin: 0px 0px 20px 0px !important;
  }

  .trading-style-five .tab-btns{
    padding: 0px 30px;
  }

  .trading-style-five .tab-btns li{
    margin-right: 10px;
  }

  .trading-style-five .tab-btns li:last-child{
    margin-right: 0px;
  }

  .rtl .trading-style-five .tab-btns li{
    margin-right: 0px;
    margin-left: 10px;
  }

  .rtl .trading-style-five .tab-btns li:last-child{
    margin-left: 0px;
  }

  .trading-style-six .tab-btns li{
    width: 100%;
  }
}












































/** process-section **/

.process-section{
  position: relative;
}

.process-section .inner-container{
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}

.process-block-one .inner-box{
  position: relative;
  display: block;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 26px 50px 42px 72px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
}

.process-block-one .inner-box:hover{

}

.process-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scaleX(0);
  transform-origin: center;
  z-index: -1;
  border-radius: 10px;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover:before{
  transform: scaleX(1);
}

.process-block-one .inner-box .count-text{
  position: absolute;
  display: inline-block;
  left: 24px;
  top: 32px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  color: var(--title-color);
  text-align: center;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover .count-text{
  border-color: #fff;
  background: #fff;
}

.process-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: all 500ms ease;
}

.process-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover h3,
.process-block-one .inner-box:hover p{
  color: #fff;
}

.process-block-one .inner-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover .shape{
  opacity: 1;
}

.process-section .image-box .image{
  border-radius: 10px;
}

.process-section .image-box .image img{
  width: 100%;
  border-radius: 10px;
}

.dark_home .process-block-one .inner-box{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: none;
}

.dark_home .process-block-one .inner-box .count-text{
  border-radius: 10px;
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: none;
  color: #fff;
}

.dark_home .process-block-one .inner-box:hover .count-text{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.dark_home .process-block-one .inner-box h3{
  color: #fff;
}

.dark_home .process-block-one .inner-box p{
  color: rgba(255, 255, 255, 0.80);
}

.dark_home .process-block-one:last-child .inner-box{
  margin-bottom: 0px;
}

.image_block_one .image-box{
  position: relative;
  display: block;
}

.image_block_one .image-box .image-2{
  border-radius: 10px;
}

.image_block_one .image-box .image-2 img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.10);
}

.image_block_one .image-box .content-one{
  position: absolute;
  left: 0px;
  top: 122px;
  width: 207px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 22px 22px 15px 22px;
  overflow: hidden;
}

.image_block_one .image-box .content-one .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
}

.image_block_one .image-box .content-one span{
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 32px;
}

.image_block_one .image-box .content-one h3{
  font-size: 21px;
  line-height: 31px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
}

.image_block_one .image-box .content-one p{
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.process-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: -200px;
  width: 1026px;
  height: 1750px;
  background-repeat: no-repeat;
  opacity: 0.8;
}


/** process-style-two **/

.process-style-two{
  position: relative;
}

.process-style-two .image_block_one .image-box .content-one{
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.10);
}

.process-style-two .image_block_one .image-box .content-one h3{
  color: var(--title-color);
}

.process-style-two .image_block_one .image-box .content-one p{
  color: var(--title-color);
}


/** rtl-css **/

.rtl .process-block-one .inner-box{
  padding-left: 50px;
  padding-right: 72px;
}

.rtl .process-block-one .inner-box .count-text{
  left: inherit;
  right: 24px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .process-section .inner-container{
    padding-bottom: 100px;
  }

  .image_block_one .image-box{
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px){
  .process-section .inner-container{
    padding: 70px 0px;
  }

  .process-section.pt_100.pb_100{
    padding: 70px 0px;
  }

  .process-style-two{
    padding: 50px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px){
  .process-section .image-box .image{
    position: relative;
    bottom: 0px;
    margin: 30px 0px;
  }

  .image_block_one .image-box .content-one{
    position: relative;
    top: 0px;
    width: 100%;
  }

  .image_block_one .image-box{
    padding: 0px;
  }

  .image_block_one .image-box .image-1{
    max-width: 312px;
    margin: 0 auto;
  }

  .image_block_one .image-box .image-2{
    position: relative;
    bottom: 0px;
    margin: 30px 0px;
  }
}

@media only screen and (max-width: 499px){

}

/*additional csss*/
@media process-section











































/** award-section **/

.award-section{
  position: relative;
}

.award-section .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.award-section .award-table {
  min-width: 1290px;
  width: 100%;
}

.award-section .award-table tr{
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0px;
  justify-content: space-between;
}

.award-section .award-table tr td{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
}

.award-section .award-table tr td h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.award-section .award-table tr td h3 a{
  display: inline-block;
  color: var(--title-color);
}

.award-section .award-table tr td h3 a:hover{

}

.award-section .award-table tr td span{
  color: #6A6A6A;
}


/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .award-section{
    padding: 70px 0px;
  }

  .award-section.pt_70{
    padding-top: 40px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){

}












































/** apps-section **/

.apps-section{
  position: relative;
  margin-bottom: 50px;
}

.apps-section .inner-container{
  position: relative;
  display: block;
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 120px 80px;
  z-index: 1;
}

.apps-section .image-layer{
  position: absolute;
  right: 80px;
  bottom: 0px;
}

.apps-section .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.content_block_two .content-box{
  position: relative;
  display: block;
  max-width: 520px;
}

.content_block_two .content-box p{
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.80);
}

.content_block_two .content-box .sec-title h2{
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 14px;
}

.content_block_two .content-box .download-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.content_block_two .content-box .download-list li:last-child{
  margin: 0px !important;
}

.content_block_two .content-box .download-list li a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 60px;
  line-height: 60px;
  background: #383838;
  border-radius: 10px;
  font-size: 30px;
  color: #fff;
}

.content_block_two .content-box .download-list li a:hover{

}

.content_block_two .content-box .download-list li:nth-child(2) a{
  background: #fff;
}

.content_block_two .content-box .download-list li:nth-child(3) a{
  background: #90C300;
}

.content_block_two .content-box .download-list li:nth-child(4) a{
  background: #E72C2C;
}


/** apps-style-two **/

.apps-style-two{
  position: relative;
}

.content_block_four .content-box{
  position: relative;
  display: block;
}

.content_block_four .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
}

.content_block_four .content-box .btn-box a{
  position: relative;
  display: inline-block;
  width: 200px;
  background: #fff;
  padding: 11px 20px 11px 55px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin-right: 20px;
  border-radius: 10px;
}

.content_block_four .content-box .btn-box a:hover{
  background: #FFB31F;
}

.content_block_four .content-box .btn-box a img{
  position: absolute;
  left: 15px;
  top: 9px;
}

.content_block_four .content-box .btn-box a:last-child{
  margin-right: 0px;
}

.content_block_four .content-box .btn-box a span{
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.content_block_four .content-box .sec-title p{
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.content_block_four .content-box .sec-title h2{
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 14px;
}

.content_block_four .content-box .sec-title .sub-title{
  color: #fff;
}

.content_block_four .content-box .sec-title .sub-title:before{
  background: #fff;
}

.content_block_four .content-box .sec-title .sub-title:after{
  border-color: #fff !important;
}

.apps-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.apps-style-two .image-layer{
  position: absolute;
  right: 365px;
  bottom: 0px;
}

.dark_home .apps-section .inner-container{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.apps-section .pattern-layer{
  position: absolute;
  right: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 800px;
  height: 1770px;
  background-repeat: no-repeat;
  opacity: 0.7;
}


.apps-section.alternat-2{
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
}

.apps-section.alternat-2 .image-layer{
  right: 315px;
}


/** rtl-css **/

.rtl .apps-section .inner-container .image-layer{
  right: inherit;
  left: 80px;
}

.rtl .content_block_two .content-box .download-list li{
  float: right;
  margin-right: 0px;
  margin-left: 15px;
}

.rtl .content_block_four .content-box .btn-box a{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .apps-section.alternat-2 .image-layer{
  right: inherit;
  left: 315px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .apps-section .inner-container .image-layer img{
    width: 50%;
    float: right;
  }

  .apps-style-two .image-layer{
    display: none;
  }
}

@media only screen and (max-width: 991px){
  .content_block_four .content-box{
    margin-left: 0px;
    margin-top: 30px;
  }

  .apps-section .image-layer{
    display: none;
  }
}

@media only screen and (max-width: 767px){

  .apps-section .inner-container{
    padding: 70px 30px 55px 30px;
  }

  .content_block_two .content-box .download-list li{
    margin-bottom: 15px;
  }

  .apps-style-two,
  .apps-section.alternat-2{
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){
  .content_block_four .content-box .btn-box{
    display: block;
  }

  .content_block_four .content-box .btn-box a{
    margin: 0px 0px 20px 0px !important;
  }

  .content_block_four .content-box .btn-box a:last-child{
    margin: 0px !important;
  }
}












































/** news-section **/

.news-section{
  position: relative;
}

.news-block-one{
  position: relative;
  display: block;
  background: #F7F7F7;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.news-block-one:hover{
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  padding: 32px 40px 35px 40px;
  border-bottom: 1px solid #E5E5E5;
}

.news-block-one .inner-box .post-date{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.news-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 14px;
}

.news-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box h3 a:hover{

}

.news-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 24px;
}

.news-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  border-bottom: 1px solid var(--secondary-color);
}

.news-block-one .inner-box .link a:hover{

}

.news-block-one .author-box{
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 40px;
}

.news-block-one .author-box .author-thumb{
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.news-block-one .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.news-block-one .author-box span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
}


/** news-style-two **/

.news-style-two{
  position: relative;
}

.news-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.news-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.news-block-two .inner-box .image-box img{
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.news-block-two .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-two .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-two .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 30px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #E5E5E5;
}

.news-block-two .inner-box .lower-content .category{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--title-color);
  background: #E7EBEE;
  border-radius: 30px;
  text-align: center;
  padding: 4px 15px;
  margin-bottom: 19px;
}

.news-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.news-block-two .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-two .inner-box .lower-content h3 a:hover{

}

.news-block-two .inner-box .lower-content p{
  margin-bottom: 20px;
}

.news-block-two .inner-box .lower-content .author-box{
  position: relative;
  display: flex;
  align-items: center;
}

.news-block-two .inner-box .lower-content .author-box .author-thumb{
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

.news-block-two .inner-box .lower-content .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.news-block-two .inner-box .lower-content .author-box span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.dark_home .news-block-one{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .news-block-one .inner-box h3 a{
  color: #fff;
}

.dark_home .news-block-one .inner-box p{
  color: rgba(255, 255, 255, 0.80);
}

.dark_home .news-block-one .inner-box .link a{
  color: #fff;
  border-color: #fff;
}

.dark_home .news-block-one .inner-box{
  border-color: rgba(255, 255, 255, 0.10);
}

.dark_home .news-block-one .author-box span{
  color: #fff;
}

.dark_home .news-section .pattern-layer{
  position: absolute;
  right: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 800px;
  height: 1770px;
  background-repeat: no-repeat;
  opacity: 0.8;
}


.sidebar-page-container .news-block-two .inner-box{
  margin-bottom: 50px;
}

.news-block-two .inner-box h2{
  position: relative;
  display: block;
  font-size: 42px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.news-block-two .inner-box h2 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-two .inner-box h2 a:hover{

}

.news-block-two .inner-box .lower-content .author-box .category{
  margin-bottom: 0px;
  margin-right: 30px;
}


/** rtl-css **/

.rtl .news-block-one .author-box .author-thumb{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .news-block-two .inner-box .lower-content .author-box .author-thumb{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .news-block-two .inner-box .lower-content .author-box .category{
  margin-right: 0px;
  margin-left: 30px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .news-section,
  .news-style-two{
    padding: 70px 0px 40px 0px;
  }

  .news-section.pt_0{
    padding-top: 0px;
  }

  .sidebar-page-container{
    padding: 65px 0px 70px 0px;
  }
}

@media only screen and (max-width: 599px){
  .news-block-two .inner-box h2{
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 499px){
  .news-block-one .inner-box,
  .news-block-one .author-box{
    padding-left: 30px;
    padding-right: 30px;
  }
}












































/** subscribe-section **/

.subscribe-section{
  position: relative;
}
.new-sub-sec {
  text-align: center;
  margin-top: 20px;
}
.new-sub-sec p {
  color: black;
  margin-top: 10px;
  font-size: 18px;
}

.subscribe-section .bg-color{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  background: #F7F7F7;
}

.subscribe-section .inner-container{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 45px 60px;
}

.subscribe-section h2{
  font-size: 36px;
  line-height: 44px;
  color: #000000 !important;
  font-weight: 500;
}

.subscribe-section .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
  padding-right: 167px;
}

.subscribe-section .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  color: var(--text-color);
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.subscribe-section .form-inner .form-group button[type='submit']{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 157px;
  background: var(--secondary-color);
  padding-left: 20px;
  padding-right: 20px;
}

.subscribe-section .form-inner .form-group button[type='submit']:before,
.subscribe-section .form-inner .form-group button[type='submit']:after{
  background: #fff;
}

.subscribe-section .form-inner .form-group button i{
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
}

.subscribe-section .form-inner .form-group button[type='submit']:hover{
  color: var(--theme-color) !important;
}

.subscribe-section .inner-container .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
}

.dark_home .subscribe-section .inner-container{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .subscribe-section .form-inner .form-group button[type='submit']{
  background: var(--theme-color-2);
}

.dark_home .subscribe-section .form-inner .form-group button[type='submit']:hover{
  color: var(--theme-color-2) !important;
}


/** rtl-css **/

.rtl .subscribe-section .form-inner .form-group button i{
  margin-left: 0px;
  margin-right: 8px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .subscribe-section h2{
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px){

}

@media only screen and (max-width: 599px){
  .subscribe-section .inner-container{
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 499px){
  .subscribe-section .form-inner .form-group{
    padding-right: 0px;
  }

  .subscribe-section .form-inner .form-group button[type='submit']{
    position: relative;
    width: 100%;
    margin-top: 15px;
  }
}












































/** main-footer **/

.main-footer{
  position: relative;
  background: #F7F7F7;
}

.main-footer .widget-title{
  position: relative;
  display: block;
}

.main-footer .widget-title h3{
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.main-footer .links-widget .links-list li a:hover{

}

.main-footer .logo-widget .widget-content{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 40px;
  padding-bottom: 30px;
}

.main-footer .logo-widget .widget-content p{
  font-size: 18px;
  line-height: 30px;
  color: var(--title-color);
  margin-bottom: 23px;
}

.main-footer .logo-widget .widget-content .scanner-box{
  position: relative;
  display: block;
  background: rgba(247, 247, 247, 1);
  border-radius: 10px;
  padding: 33px 15px;
}

.main-footer .download-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.main-footer .download-list li:last-child{
  margin: 0px !important;
}

.main-footer .download-list li a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 50px;
  line-height: 60px;
  background: #383838;
  border-radius: 10px;
  font-size: 30px;
  color: #fff;
}

.main-footer .download-list li a:hover{

}

.main-footer .download-list li:nth-child(2) a{
  background: #fff;
  border: 1px solid #E5E5E5;
}

.main-footer .download-list li:nth-child(3) a{
  background: #90C300;
}

.main-footer .footer-lower{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}

.main-footer .footer-card{
  position: relative;
}

.main-footer .footer-card li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.main-footer .footer-card li:last-child{
  margin: 0px !important;
}

.main-footer .footer-card li h4{
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}

.main-footer .footer-card li a{
  position: relative;
  display: inline-block;
}

.main-footer .widget-section{
  border-bottom: 1px solid #E5E5E5;
}

.footer-bottom{
  position: relative;
  padding: 18px 0px;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .bottom-inner p 
{ text-align: center !important; margin: 0 auto !important; display: block; 
} 

.footer-bottom .bottom-inner p{
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.footer-bottom .bottom-inner p a{
  display: inline-block;
  font-weight: 600;
}

.footer-bottom .bottom-inner p a:hover{
  text-decoration: underline;
}

.main-footer .social-links{
  position: relative;
  display: flex;
  align-items: center;
}

.main-footer .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.main-footer .social-links li:last-child{
  margin: 0px !important;
}

.main-footer .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 48px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--title-color);
}

.main-footer .social-links li a:hover{
  color: #fff;
}

.dark_home .main-footer{
  background: transparent;
}

.dark_home .main-footer .widget-title h3{
  color: #fff;
}

.dark_home .main-footer .links-widget .links-list li a{
  color: #fff;
}

.dark_home .main-footer .logo-widget .widget-content,
.dark_home .main-footer .logo-widget .widget-content .scanner-box{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 0px;
}

.dark_home .main-footer .logo-widget .widget-content p{
  color: #fff;
}

.dark_home .main-footer .footer-card li h4{
  color: #fff;
}

.dark_home .main-footer .widget-section{
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.dark_home .footer-bottom .bottom-inner p{
  color: rgba(255, 255, 255, 0.80);
}

.main-footer .social-links li h5{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.dark_home .main-footer .social-links li h5{
  color: #fff;
}


/** rtl-css **/

.rtl .main-footer .download-list li,
.rtl .main-footer .footer-card li{
  margin-right: 0px;
  margin-left: 10px;
  float: right;
}

.rtl .main-footer .logo-widget{
  margin-left: 0px;
  margin-right: 80px;
}

.rtl .main-footer .social-links li{
  margin-right: 0px;
  margin-left: 10px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .main-footer .logo-widget{
    margin-left: 0px;
  }

  .rtl .main-footer .logo-widget{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 991px){
  .footer-widget{
    margin: 0px 0px 30px 0px !important;
  }

  .main-footer .footer-lower{
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .main-footer .widget-section{
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 767px){
  .main-footer .footer-lower{
    display: block;
  }

  .main-footer .footer-card{
    margin-top: 20px;
  }

  .footer-bottom .bottom-inner{
    display: block;
    text-align: center;
  }

  .main-footer .social-links{
    justify-content: center;
    margin-top: 15px;
  }

  .main-footer .footer-card li{
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){
  .main-footer .logo-widget .widget-content{
    padding-left: 30px;
    padding-right: 30px;
  }
}







































































/** about-section **/

.about-section{
  position: relative;
}

.content_block_one .content-box{
  position: relative;
  display: block;
}

.content_block_one .content-box .accordion-box .accordion{
  position: relative;
  border-bottom: 1px solid #E5E5E5;
}

.content_block_one .content-box .accordion-box .accordion:last-child{
  border-bottom: none;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn{
  position: relative;
  padding: 10px 30px 10px 70px;
  cursor: pointer;
  margin: 40px 0px;
}

.content_block_one .content-box .accordion-box .accordion:first-child .acc-btn{
  margin-top: 0px;
}

.content_block_one .content-box .accordion-box .accordion:last-child .acc-btn{
  margin-bottom: 0px;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  box-shadow: 0px 4px 25px 2px rgba(241, 242, 245, 1);
  text-align: center;
  border-radius: 50%;
  font-size: 7px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn.active{
  margin-bottom: 0px;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn.active .icon-box{
  color: #fff;
  transform: rotate(180deg);
  box-shadow: none;
}

.content_block_one .content-box .accordion-box .accordion .acc-btn h3{
  font-size: 24px;
  line-height: 30px;
}

.content_block_one .content-box .accordion-box .accordion .acc-content{
  position: relative;
  padding: 15px 30px 40px 70px;
}


.video_block_one .video-inner{
  position: relative;
  width: 100%;
  padding: 218px 0px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.video_block_one .video-box .video-content{
  position: relative;
  display: inline-block;
  width: 148px;
  height: 148px;
  background: rgba(255, 255, 255, 0.50);
  border-radius: 50%;
  text-align: center;
}

.video_block_one .video-box .video-content a{
  position: absolute;
  display: inline-block;
  left: 32px;
  top: 32px;
  width: 82px;
  height: 82px;
  line-height: 88px;
  background: #fff;
  font-size: 30px;
  border-radius: 50%;
}

.video_block_one .video-content .curve-text{
  position: absolute;
  left: 74px;
  top: 7px;
  width: 148px;
  height: 148px;
}

.video_block_one .video-content .curve-text span{
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.video_block_one .video-box{
  position: relative;
  display: block;
}


/** about-style-two **/

.about-style-two{
  position: relative;
}

.about-style-two .tabs-box{
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}

.about-style-two .tabs-box:before{
  position: absolute;
  content: '';
  background: #191919;
  width: 70%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.about-style-two .tab-btns{
  position: relative;
  padding: 60px 0px 60px 60px;
  z-index: 2;
}

.about-style-two .tab-btns li{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  border-radius: 80px;
  padding: 25px 40px;
  padding-right: 100px;
  cursor: pointer;
  transition: all 500ms ease;
}

.about-style-two .tab-btns li.active-btn,
.about-style-two .tab-btns li:hover{

}

.about-style-two .tab-btns li i{
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--title-color);
  opacity: 0;
  transition: all 500ms ease;
}

.about-style-two .tab-btns li.active-btn i,
.about-style-two .tab-btns li:hover i{
  opacity: 1;
}

.about-style-two .tabs-content{
  position: relative;
  padding: 45px 50px 50px 0px;
  z-index: 1;
}

.about-style-two .tabs-content:before{
  position: absolute;
  content: '';
  background: #F7F7F7;
  border-radius: 40px;
  width: calc(100% + 87px);
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: -1;
}

.about-style-two .content-box{
  position: relative;
  display: block;
}

.about-style-two .content-box h2{
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 19px;
}

.about-style-two .content-box p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}


/** about-style-three **/

.about-style-three{
  position: relative;
}

.content_block_seven .content-box{
  position: relative;
  display: block;
}

.content_block_seven .content-box .accordion-box .accordion{
  position: relative;
  border: 1px solid #E5E5E5;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.content_block_seven .content-box .accordion-box .accordion:last-child{
  margin-bottom: 0px;
}

.content_block_seven .content-box .accordion-box .accordion.active-block{
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn{
  position: relative;
  padding: 24px 60px 24px 30px;
  cursor: pointer;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn h3{
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn .icon-box{
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 7px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content{
  padding: 0px 30px 30px 30px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content p{
  font-size: 18px;
  line-height: 28px;
  font-weight: 460px;
  margin-bottom: 24px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--title-font);
  font-weight: 500;
  border-bottom: solid;
  border-width: 1px;
}

.about-style-three .video_block_one .video-box .video-content{
  position: absolute;
  left: -70px;
  top: 15px;
}

.about-style-three .video_block_one .video-box img{
  width: 100%;
}


.about-style-two.dark-section{
  background: #191919;
}

.about-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}

.about-style-two .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}

.about-style-two.dark-section .tabs-box:before{
  background: #fff;
}

.about-style-two.dark-section .tab-btns li{
  color: var(--title-color);
}

.about-style-two.dark-section .tab-btns li.active-btn, 
.about-style-two.dark-section .tab-btns li:hover{
  color: #fff;
}

.about-style-two.dark-section .tab-btns li i{
  color: #fff;
  background: var(--secondary-color);
}


/** rtl-css **/

.rtl .content_block_one .content-box{
  margin-right: 0px;
  margin-left: 80px;
}

.rtl .video_block_one .video-box{
  margin-left: 0px;
  margin-right: 70px;
}

.rtl .content_block_one .content-box .accordion-box .accordion .acc-btn,
.rtl .content_block_one .content-box .accordion-box .accordion .acc-content{
  padding-left: 30px;
  padding-right: 70px;
}

.rtl .content_block_one .content-box .accordion-box .accordion .acc-btn .icon-box{
  left: inherit;
  right: 0px;
}

.rtl .about-style-two .tabs-box{
  direction: ltr;
  text-align: right;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .content_block_one .content-box{
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .rtl .content_block_one .content-box{
    margin-left: 0px;
  }

  .video_block_one .video-box{
    margin-left: 0px;
  }

  .rtl .video_block_one .video-box{
    margin-right: 0px;
  }

  .about-style-two .tabs-box:before{
    display: none;
  }

  .about-style-two .tab-btns{
    padding: 60px;
    margin-bottom: 30px;
    background: #191919;
    border-radius: 40px;
  }

  .about-style-two .tabs-content{
    padding-left: 50px;
  }

  .about-style-two .tabs-content:before{
    width: 100%;
  }

  .about-style-three .video_block_one .video-box .video-content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }

  .content_block_seven .content-box{
    margin-bottom: 30px;
  }

  .about-style-two.dark-section .tab-btns{
    background: #fff;
  }
}

@media only screen and (max-width: 767px){
  .about-section{
    padding: 70px 0px;
  }

  .about-style-two{
    padding: 0px 0px 70px 0px;
  }

  .about-style-three{
    padding: 70px 0px;
  }

  .about-style-two.dark-section{
    padding: 110px 0px;
  }
}

@media only screen and (max-width: 599px){
  .video_block_one .video-inner{
    padding: 150px 0px;
  }

  .about-style-two .tab-btns,
  .about-style-two .tabs-content{
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 499px){
  .about-style-two .tab-btns li{
    padding-left: 30px;
    padding-right: 30px;
    font-size: 20px;
  }

  .about-style-two .tab-btns li i{
    display: none;
  }
}












































/** funfact-section **/

.funfact-section{
  position: relative;
}

.funfact-section .inner-container{
  position: relative;
  display: block;
  overflow: hidden;
  background: #F5FFF9;
  border: 1px solid #BDE7C3;
  border-radius: 10px;
  overflow: hidden;
}

.funfact-block-one .inner-box{
  position: relative;
  display: block;
  padding: 47px 20px 60px 50px;
}

.funfact-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #BDE7C3;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.funfact-block:last-child .funfact-block-one .inner-box:before{
  display: none;
}

.funfact-block-one .inner-box .count-outer{
  position: relative;
  display: inline-block;
  font-size: 64px;
  line-height: 70px;
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: 9px;
}

.funfact-block-one .inner-box .count-outer .text{
  position: relative;
  display: inline-block;
  font-size: 24px;
  margin-left: 10px;
  top: -6px;
}

.funfact-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
}


/** funfact-style-two **/

.funfact-style-two{
  position: relative;
}

.funfact-block-two{
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.funfact-block-two .shape{
  position: absolute;
  left: 0px;
  top: 15px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.funfact-block-two .inner-box{
  position: relative;
  display: block;
  border: 1px solid #E7E7E7;
  border-radius: 10px;
  padding: 30px 30px;
  background: #fff;
  transition: all 500ms ease;
}

.funfact-block-two .inner-box:hover{
  
}

.funfact-block-two .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 52px;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 0px;
  font-weight: 500;
  text-transform: uppercase;
}

.funfact-block-two .inner-box p{
  font-size: 20px;
  line-height: 30px;
  color: var(--title-color);
}

.dark_home .funfact-block-two{
  padding-bottom: 0px;
}

.dark_home .funfact-block-two .inner-box{
  border: none;
  background: transparent;
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .funfact-block-two .inner-box .count-outer{
  color: #fff;
}

.dark_home .funfact-block-two .inner-box p{
  color: #fff;
}


/** rtl-css **/

.rtl .funfact-block-one .inner-box:before{
  right: inherit;
  left: -15px;
}

.rtl .funfact-block-one .inner-box .count-outer .text{
  margin-left: 0px;
  margin-right: 10px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .funfact-block-one .inner-box:before{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .funfact-block-one .inner-box{
    padding-left: 30px;
  }

  .funfact-block-one .inner-box{
    padding-bottom: 0px;
  }

  .funfact-section .inner-container{
    padding-bottom: 60px;
  }

  .funfact-style-two{
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){

}












































/** trading-section **/

.trading-section{
  position: relative;
}

.trading-section .inner-container{
  position: relative;
  display: block;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  overflow: hidden;
}

.trading-section .inner-container .trading-block-one{
  position: relative;
  float: left;
  width: 20%;
}

.trading-block-one .inner-box{
  position: relative;
  display: block;
  padding: 29px 30px 40px 30px;
  overflow: hidden;
  border-right: 1px solid #E5E5E5;
  transition: all 500ms ease;
}

.trading-section .inner-container .trading-block-one:last-child .inner-box{
  border-right: none;
}

.trading-block-one .inner-box:hover{
  background: rgba(43, 255, 128, 0.03);
}

.trading-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  left: 0px;
  top: -1px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.trading-block-one .inner-box:hover:before{
  transform: scale(1,1);
}

.trading-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}

.trading-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.trading-block-one .inner-box h3 a:hover{

}

.trading-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 120px;
  opacity: 0;
  top: 15px;
  transition: all 500ms ease;
}

.trading-block-one .inner-box:hover p{
  top: 0px;
  opacity: 1;
}

.trading-block-one .inner-box .theme-btn{
  width: 100%;
  top: 15px;
  opacity: 0;
}

.trading-block-one .inner-box:hover .theme-btn{
  top: 0px;
  opacity: 1;
}

.trading-block-one .inner-box .image-box{
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.trading-block-one .inner-box:hover .image-box{
  filter: blur(5px);
}


/** trading-style-two **/

.trading-style-two{
  position: relative;
  background: #191919;
}

.project-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.project-tab .p-tabs-content {
  position: relative;
  display: block;
}

.project-tab .p-tab.active-tab .trading-block-two {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.project-tab .p-tab .trading-block-two {
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}

.trading-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 12px 24px 24px 24px;
  z-index: 1;
}

.trading-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.03);
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.trading-block-two .inner-box:hover:before{
  height: 100%;
  top: 0px;
}

.trading-block-two .inner-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 17px;
}

.trading-block-two .inner-box .flag{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.trading-block-two .inner-box .flag li{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
  margin: 0px -5px;
}

.trading-block-two .inner-box .text-list{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.trading-block-two .inner-box .text-list li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.trading-block-two .inner-box .text-list li:last-child{
  margin-bottom: 0px;
}

.trading-block-two .inner-box .text-list li h6{
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.trading-block-two .inner-box .text-list li span{
  font-size: 16px;
  line-height: 26px;
  font-family: var(--text-font);
}

.trading-block-two .inner-box .btn-box a{
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 500;
  padding: 2px 15px;
  text-align: center;
  border: solid;
  border-width: 1px;
  border-radius: 10px;
}

.trading-block-two .inner-box .btn-box a:hover{
  color: #fff;
}

.project-tab .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #303030;
  border-radius: 10px;
  padding: 5px;
}

.project-tab .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  padding: 11px 49px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.project-tab .tab-btns li.active-btn,
.project-tab .tab-btns li:hover{

}

.trading-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.trading-style-two .owl-dots{
  margin-top: 20px;
}


/** trading-style-three **/

.trading-style-three{
  position: relative;
  background: #F7F7F7;
}

.trading-style-three .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.trading-style-three .trading-list{
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  -moz-animation: scroll-left 1000s linear infinite;
  -webkit-animation: scroll-left 1000s linear infinite;
  animation: scroll-left 1000s linear infinite;
}

.trading-style-three .trading-list li{
  position: relative;
  display: inline-block;
  width: 300px;
  margin-right: 10px;
}

.trading-style-three .trading-list li:last-child{
  margin: 0px !important;
}

.trading-block-three{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 60px;
  padding: 10px;
}

.trading-block-three .inner-box{
  position: relative;
  padding-left: 55px;
  padding-right: 80px;
}

.trading-block-three .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}

.lower .trading-block-three .inner-box .icon-box{
  color: #F41112;
}

.trading-block-three .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
}

.lower .trading-block-three .inner-box .icon-box:before{
  background: #F41112;
}

.trading-block-three .inner-box h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.trading-block-three .inner-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--title-color);
}

.trading-block-three .inner-box .theme-btn{
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 50px;
  padding: 5px 13px;
}


/** trading-style-four **/

.trading-style-four{
  position: relative;
}

.trading-style-four .tabs-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.trading-style-four .tabs-content{
  position: relative;
  padding: 54px 100px 40px 80px;
}

.trading-style-four .image-box{
  position: relative;
  display: block;
}

.trading-style-four .image-box img{
  width: 100%;
}

.trading-style-four .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  padding: 23px 30px;
  cursor: pointer;
  transition: all 500ms ease;
}

.trading-style-four .tab-btns li:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 2px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.trading-style-four .tab-btns li:last-child:before{
  display: none;
}

.trading-style-four .tab-btns li:after{
  position: absolute;
  content: '';
  background: #114B1F;
  width: 2px;
  height: 30px;
  top: 50%;
  right: 0px;
  margin-top: -15px;
}

.trading-style-four .tab-btns li:last-child:after{
  display: none;
}

.trading-style-four .tab-btns li .icon-box{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 4px;
  transition: all 500ms ease;
}

.trading-style-four .tab-btns li h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  transition: all 500ms ease;
}

.trading-style-four .tab-btns li.active-btn,
.trading-style-four .tab-btns li:hover{
  background: #fff;
}

.trading-style-four .tab-btns li.active-btn .icon-box,
.trading-style-four .tab-btns li:hover .icon-box,
.trading-style-four .tab-btns li.active-btn h4,
.trading-style-four .tab-btns li:hover h4{

}

.content_block_three .content-box{
  position: relative;
  display: block;
}

.content_block_three .content-box h2{
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.content_block_three .content-box p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}

.content_block_three .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
}

.content_block_three .content-box .btn-box .theme-btn.btn-two{
  color: var(--theme-color) !important;
  padding: 9px 35px;
}

.content_block_three .content-box .btn-box .theme-btn.btn-two:hover{
  color: #fff !important;
}


/** trading-style-five **/

.trading-style-five{
  position: relative;
}

.trading-style-five .inner-container{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
}

.trading-style-five .table-outer{
  position: relative;
  overflow-x: auto;
  width: 100%;
}

.trading-style-five .table-outer .trading-table{
  min-width: 1210px;
  width: 100%;
}

.trading-style-five .tabs-content{
  position: relative;
  padding: 30px 40px;
}

.trading-style-five .tab-btns{
  position: relative;
  display: block;
  border-bottom: 1px solid #E5E5E5;
  padding: 0px 40px;
}

.trading-style-five .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 30px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  cursor: pointer;
  padding: 15px 12px;
  margin-right: 70px;
}

.trading-style-five .tab-btns li:last-child{
  margin-right: 0px;
}

.trading-style-five .tab-btns li:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0px;
  bottom: -1px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.trading-style-five .tab-btns li.active-btn:before,
.trading-style-five .tab-btns li:hover:before{
  transform: scale(1,1);
}

.trading-style-five .tab-btns li.active-btn,
.trading-style-five .tab-btns li:hover{

}

.trading-style-five .table-outer thead td{
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
}

.trading-style-five .table-outer tbody td{
  font-size: 16px;
  line-height: 20px;
  color: var(--title-color);
  padding: 16px 0px;
  font-weight: 500;
  text-transform: uppercase;
}

.trading-style-five .table-outer tbody td .single-item{
  position: relative;
  display: flex;
  align-items: center;
}

.trading-style-five .table-outer tbody td .single-item img{
  margin-right: 8px;
}

.trading-style-five .table-outer tr td:last-child{
  text-align: right;
}

.trading-style-five .table-outer tr td{
  padding-left: 50px;
}

.trading-style-five .table-outer tr td:first-child{
  padding-left: 0px;
}

.trading-style-five .table-outer tr td.upper{
  color: #2BAC62;
}

.trading-style-five .table-outer tr td.lower{
  color: #FF5C5C;
}

.trading-style-five .inner-container .lower-content{
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px 30px 30px 40px;
}

.trading-style-five .inner-container .lower-content p{
  color: var(--title-color);
}

.trading-style-five .inner-container .lower-content p a{
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: var(--title-color);
  text-decoration: underline;
}

.trading-style-five .inner-container .lower-content p a:hover{

}

.dark_home .trading-style-three{
  background: transparent;
}

.dark_home .trading-block-three{
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.dark_home .trading-block-three .inner-box h6,
.dark_home .trading-block-three .inner-box span{
  color: #fff;
}

.dark_home .trading-block-three .inner-box .theme-btn{
  border-radius: 4px;
}

.dark_home .project-tab .tab-btns{
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.dark_home .trading-block-two .inner-box{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .trading-block-two .inner-box h5,
.dark_home .trading-block-two .inner-box .text-list li h6,
.dark_home .trading-block-two .inner-box .text-list li span{
  color: #fff;
}

.dark_home .trading-style-two{
  background: transparent;
}

.trading-style-two .shape .shape-1{
  position: absolute;
  left: 0px;
  bottom: 150px;
  width: 162px;
  height: 288px;
  background-repeat: no-repeat;
}

.trading-style-two .shape .shape-2{
  position: absolute;
  right: 0px;
  bottom: 160px;
  width: 137px;
  height: 178px;
  background-repeat: no-repeat;
}

.dark_home .trading-style-four .tabs-box{
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(72, 72, 72, 1.0);
}

.dark_home .trading-style-four .tab-btns li.active-btn, 
.dark_home .trading-style-four .tab-btns li:hover{
  background: transparent;
}

.dark_home .trading-style-four .tab-btns li:before{
  background: #000;
}

.dark_home .trading-style-four .tab-btns li:after{
  display: none;
}

.dark_home .content_block_three .content-box h2{
  color: #fff;
}

.dark_home .content_block_three .content-box p{
  color: rgba(255, 255, 255, 0.80);
}

.dark_home .content_block_three .content-box .btn-box .theme-btn.btn-two{
  color: var(--theme-color-2) !important;
}

.dark_home .content_block_three .content-box .btn-box .theme-btn.btn-two:hover{
  color: #fff !important;
}

.trading-style-three.alternat-2 .trading-block-three{
  border-radius: 10px;
}

.trading-style-three.alternat-2 .trading-block-three .inner-box .theme-btn{
  border-radius: 4px;
}

.trading-style-three.alternat-2{
  background: transparent;
}


/** trading-style-six **/

.trading-style-six{
  position: relative;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:5px;
  overflow: hidden;
  border-radius: 30px;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:5px;
  background: #D9002A;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box .bar-inner:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 4px;
  height: 100%;
  top: 0px;
  right: -2px;
}

.trading-style-six .tabs-content{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.trading-style-six .table-outer{
  position: relative;
  overflow-x: auto;
  width: 100%;
}

.trading-style-six .table-outer .table-content{
  min-width: 1290px;
  width: 100%;
}

.trading-style-six .table-outer .table-content li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #E5E5E5;
}

.trading-style-six .table-outer .table-content li:last-child{
  border-bottom: none;
}

.trading-style-six .table-outer .table-content li.table-title p{
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.trading-style-six .table-outer .table-content li.table-data .single-item{
  position: relative;
  display: block;
  padding: 0px 0px 0px 44px;
}

.trading-style-six .table-outer .table-content li.table-data .single-item .flag{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.trading-style-six .table-outer .table-content li.table-data .single-item .flag img{
  width: 100%;
  border-radius: 50%;
}

.trading-style-six .table-outer .table-content li.table-data .single-item h6{
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.trading-style-six .table-outer .table-content li.table-data .single-item span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box{
  position: relative;
  display: block;
  width: 330px;
  padding: 0px 40px;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box{
  position: absolute;
  left: 0px;
  top: -8px;
  width: 100%;
  height: 100%;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span{
  position: absolute;
  top: 0px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span.sellers{
  color: #D9002A;
}

.trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span.buyers{
  right: 0px;
}

.trading-style-six .table-outer .table-content li.table-data .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--title-font);
  font-weight: 500;
  border: solid;
  border-width: 1px;
  border-radius: 5px;
  padding: 3px 15px;
}

.trading-style-six .table-outer .table-content li.table-data .btn-box a:hover{
  color: #fff !important;
}

.trading-style-six .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #303030;
  border-radius: 10px;
  padding: 5px;
}

.trading-style-six .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  padding: 11px 49px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.trading-style-six .tab-btns li.active-btn,
.trading-style-six .tab-btns li:hover{

}


.trading-style-six.light-section{
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
}

.trading-style-six.light-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
}

.trading-style-six.light-section .tab-btns{
  background: #fff;
}

.trading-style-six.light-section .tab-btns li{
  color: var(--title-color);
}

.trading-style-six.light-section .tab-btns li.active-btn, 
.trading-style-six.light-section .tab-btns li:hover{
  color: #fff;
}


/** rtl-css **/

.rtl .trading-style-three{
  direction: ltr;
  text-align: right;
}

.rtl .trading-style-four .image-box{
  margin-left: 0px;
  margin-right: 70px;
}

.rtl .content_block_three .content-box{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .trading-style-four .tab-btns li{
  float: right;
}

.rtl .trading-style-four .tab-btns li:before{
  right: inherit;
  left: 0px;
}

.rtl .trading-style-four .tab-btns li:after{
  right: inherit;
  left: 0px;
}

.rtl .content_block_three .content-box .btn-box .theme-btn.btn-one{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .trading-style-five .tab-btns li{
  margin-right: 0px;
  margin-left: 70px;
}

.rtl .trading-style-five .tab-btns li:last-child{
  margin-left: 0px;
}

.rtl .trading-style-five .table-outer tbody td .single-item img{
  margin-right: 0px;
  margin-left: 8px;
}

.rtl .trading-style-five .table-outer tr td:last-child{
  text-align: left;
}

.rtl .trading-style-five .table-outer tr td{
  padding-left: 0px;
  padding-right: 50px;
}

.rtl .trading-style-five .table-outer tr td:first-child{
  padding-right: 0px;
}

.rtl .trading-style-five .inner-container .lower-content .btn-box{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .trading-style-six .table-outer .table-content li.table-data .single-item{
  padding-left: 0px;
  padding-right: 44px;
}

.rtl .trading-style-six .table-outer .table-content li.table-data .single-item .flag{
  left: inherit;
  right: 0px;
}

.rtl .trading-style-six .table-outer .table-content li.table-data .progress-box .text-box span.buyers{
  right: inherit;
  left: 0px;
}

.rtl .progress-box .bar-inner:before{
  right: inherit;
  left: -2px;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){
  .trading-section .inner-container .trading-block-one{
    width: 33.333%;
  }

  .project-tab .tab-btns,
  .trading-style-six .tab-btns{
    display: block;
  }
}

@media only screen and (max-width: 991px){
  .trading-section .inner-container .trading-block-one{
    width: 50%;
  }

  .content_block_three .content-box{
    margin: 0px 0px 30px 0px !important;
  }

  .trading-style-four .image-box{
    margin: 0px !important;
  }

  .trading-style-two .shape{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .trading-section .inner-container .trading-block-one{
    width: 100%;
  }

  .trading-section .inner-container .trading-block-one .inner-box{
    border-right: none;
  }

  .trading-style-two .owl-dots{
    display: none;
  }

  .trading-style-two{
    padding: 70px 0px 40px 0px;
  }

  .trading-style-four .tab-btns li{
    width: 50%;
  }

  .trading-style-four .tab-btns li:before,
  .trading-style-four .tab-btns li:after{
    display: none;
  }

  .trading-style-four{
    padding: 70px 0px;
  }

  .trading-style-five{
    padding-bottom: 70px;
  }

  .trading-style-five .tab-btns li{
    margin-right: 30px;
  }

  .trading-style-five .tab-btns li:last-child{
    margin-right: 0px;
  }

  .rtl .trading-style-five .tab-btns li{
    margin-left: 30px;
  }

  .rtl .trading-style-five .tab-btns li:last-child{
    margin-left: 0px;
  }

  .trading-style-four.pt_0{
    padding-top: 0px;
  }

  .trading-style-four.pt_0{
    padding-top: 0px;
  }

  .trading-style-six{
    padding-bottom: 70px;
  }

  .trading-style-six.pt_100{
    padding-top: 70px;
  }
}

@media only screen and (max-width: 599px){
  .trading-style-four .tab-btns li{
    width: 100%;
  }

  .trading-style-four .tabs-content{
    padding-left: 30px;
    padding-right: 30px;
  }

  .trading-style-five .inner-container .lower-content{
    display: block;
  }

  .trading-style-five .inner-container .lower-content .btn-box{
    margin: 0px 0px 20px 0px !important;
  }
}

@media only screen and (max-width: 499px){
  .content_block_three .content-box .btn-box{
    display: block;
  }

  .content_block_three .content-box .btn-box .theme-btn.btn-one{
    margin: 0px 0px 20px 0px !important;
  }

  .trading-style-five .tab-btns{
    padding: 0px 30px;
  }

  .trading-style-five .tab-btns li{
    margin-right: 10px;
  }

  .trading-style-five .tab-btns li:last-child{
    margin-right: 0px;
  }

  .rtl .trading-style-five .tab-btns li{
    margin-right: 0px;
    margin-left: 10px;
  }

  .rtl .trading-style-five .tab-btns li:last-child{
    margin-left: 0px;
  }

  .trading-style-six .tab-btns li{
    width: 100%;
  }
}












































/** process-section **/

.process-section{
  position: relative;
}

.process-section .inner-container{
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}

.process-block-one .inner-box{
  position: relative;
  display: block;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 26px 50px 42px 72px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
}

.process-block-one .inner-box:hover{

}

.process-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scaleX(0);
  transform-origin: center;
  z-index: -1;
  border-radius: 10px;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover:before{
  transform: scaleX(1);
}

.process-block-one .inner-box .count-text{
  position: absolute;
  display: inline-block;
  left: 24px;
  top: 32px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  color: var(--title-color);
  text-align: center;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover .count-text{
  border-color: #fff;
  background: #fff;
}

.process-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: all 500ms ease;
}

.process-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover h3,
.process-block-one .inner-box:hover p{
  color: #fff;
}

.process-block-one .inner-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover .shape{
  opacity: 1;
}

.process-section .image-box .image{
  border-radius: 10px;
}

.process-section .image-box .image img{
  width: 100%;
  border-radius: 10px;
}

.dark_home .process-block-one .inner-box{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: none;
}

.dark_home .process-block-one .inner-box .count-text{
  border-radius: 10px;
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: none;
  color: #fff;
}

.dark_home .process-block-one .inner-box:hover .count-text{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.dark_home .process-block-one .inner-box h3{
  color: #fff;
}

.dark_home .process-block-one .inner-box p{
  color: rgba(255, 255, 255, 0.80);
}

.dark_home .process-block-one:last-child .inner-box{
  margin-bottom: 0px;
}

.image_block_one .image-box{
  position: relative;
  display: block;
}

.image_block_one .image-box .image-2{
  border-radius: 10px;
}

.image_block_one .image-box .image-2 img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.10);
}

.image_block_one .image-box .content-one{
  position: absolute;
  left: 0px;
  top: 122px;
  width: 207px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 22px 22px 15px 22px;
  overflow: hidden;
}

.image_block_one .image-box .content-one .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
}

.image_block_one .image-box .content-one span{
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 32px;
}

.image_block_one .image-box .content-one h3{
  font-size: 21px;
  line-height: 31px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
}

.image_block_one .image-box .content-one p{
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.process-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: -200px;
  width: 1026px;
  height: 1750px;
  background-repeat: no-repeat;
  opacity: 0.8;
}


/** process-style-two **/

.process-style-two{
  position: relative;
}

.process-style-two .image_block_one .image-box .content-one{
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.10);
}

.process-style-two .image_block_one .image-box .content-one h3{
  color: var(--title-color);
}

.process-style-two .image_block_one .image-box .content-one p{
  color: var(--title-color);
}


/** rtl-css **/

.rtl .process-block-one .inner-box{
  padding-left: 50px;
  padding-right: 72px;
}

.rtl .process-block-one .inner-box .count-text{
  left: inherit;
  right: 24px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .process-section .inner-container{
    padding-bottom: 100px;
  }

  .image_block_one .image-box{
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px){
  .process-section .inner-container{
    padding: 70px 0px;
  }

  .process-section.pt_100.pb_100{
    padding: 70px 0px;
  }

  .process-style-two{
    padding: 50px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px){
  .process-section .image-box .image{
    position: relative;
    bottom: 0px;
    margin: 30px 0px;
  }

  .image_block_one .image-box .content-one{
    position: relative;
    top: 0px;
    width: 100%;
  }

  .image_block_one .image-box{
    padding: 0px;
  }

  .image_block_one .image-box .image-1{
    max-width: 312px;
    margin: 0 auto;
  }

  .image_block_one .image-box .image-2{
    position: relative;
    bottom: 0px;
    margin: 30px 0px;
  }
}

@media only screen and (max-width: 499px){

}

/*additional csss*/
@media process-section











































/** award-section **/

.award-section{
  position: relative;
}

.award-section .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.award-section .award-table {
  min-width: 1290px;
  width: 100%;
}

.award-section .award-table tr{
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0px;
  justify-content: space-between;
}

.award-section .award-table tr td{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
}

.award-section .award-table tr td h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.award-section .award-table tr td h3 a{
  display: inline-block;
  color: var(--title-color);
}

.award-section .award-table tr td h3 a:hover{

}

.award-section .award-table tr td span{
  color: #6A6A6A;
}


/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .award-section{
    padding: 70px 0px;
  }

  .award-section.pt_70{
    padding-top: 40px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){

}












































/** apps-section **/

.apps-section{
  position: relative;
  margin-bottom: 50px;
}

.apps-section .inner-container{
  position: relative;
  display: block;
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 120px 80px;
  z-index: 1;
}

.apps-section .image-layer{
  position: absolute;
  right: 80px;
  bottom: 0px;
}

.apps-section .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.content_block_two .content-box{
  position: relative;
  display: block;
  max-width: 520px;
}

.content_block_two .content-box p{
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.80);
}

.content_block_two .content-box .sec-title h2{
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 14px;
}

.content_block_two .content-box .download-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.content_block_two .content-box .download-list li:last-child{
  margin: 0px !important;
}

.content_block_two .content-box .download-list li a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 60px;
  line-height: 60px;
  background: #383838;
  border-radius: 10px;
  font-size: 30px;
  color: #fff;
}

.content_block_two .content-box .download-list li a:hover{

}

.content_block_two .content-box .download-list li:nth-child(2) a{
  background: #fff;
}

.content_block_two .content-box .download-list li:nth-child(3) a{
  background: #90C300;
}

.content_block_two .content-box .download-list li:nth-child(4) a{
  background: #E72C2C;
}


/** apps-style-two **/

.apps-style-two{
  position: relative;
}

.content_block_four .content-box{
  position: relative;
  display: block;
}

.content_block_four .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
}

.content_block_four .content-box .btn-box a{
  position: relative;
  display: inline-block;
  width: 200px;
  background: #fff;
  padding: 11px 20px 11px 55px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin-right: 20px;
  border-radius: 10px;
}

.content_block_four .content-box .btn-box a:hover{
  background: #FFB31F;
}

.content_block_four .content-box .btn-box a img{
  position: absolute;
  left: 15px;
  top: 9px;
}

.content_block_four .content-box .btn-box a:last-child{
  margin-right: 0px;
}

.content_block_four .content-box .btn-box a span{
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.content_block_four .content-box .sec-title p{
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.content_block_four .content-box .sec-title h2{
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 14px;
}

.content_block_four .content-box .sec-title .sub-title{
  color: #fff;
}

.content_block_four .content-box .sec-title .sub-title:before{
  background: #fff;
}

.content_block_four .content-box .sec-title .sub-title:after{
  border-color: #fff !important;
}

.apps-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.apps-style-two .image-layer{
  position: absolute;
  right: 365px;
  bottom: 0px;
}

.dark_home .apps-section .inner-container{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.apps-section .pattern-layer{
  position: absolute;
  right: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 800px;
  height: 1770px;
  background-repeat: no-repeat;
  opacity: 0.7;
}


.apps-section.alternat-2{
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
}

.apps-section.alternat-2 .image-layer{
  right: 315px;
}


/** rtl-css **/

.rtl .apps-section .inner-container .image-layer{
  right: inherit;
  left: 80px;
}

.rtl .content_block_two .content-box .download-list li{
  float: right;
  margin-right: 0px;
  margin-left: 15px;
}

.rtl .content_block_four .content-box .btn-box a{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .apps-section.alternat-2 .image-layer{
  right: inherit;
  left: 315px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .apps-section .inner-container .image-layer img{
    width: 50%;
    float: right;
  }

  .apps-style-two .image-layer{
    display: none;
  }
}

@media only screen and (max-width: 991px){
  .content_block_four .content-box{
    margin-left: 0px;
    margin-top: 30px;
  }

  .apps-section .image-layer{
    display: none;
  }
}

@media only screen and (max-width: 767px){

  .apps-section .inner-container{
    padding: 70px 30px 55px 30px;
  }

  .content_block_two .content-box .download-list li{
    margin-bottom: 15px;
  }

  .apps-style-two,
  .apps-section.alternat-2{
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){
  .content_block_four .content-box .btn-box{
    display: block;
  }

  .content_block_four .content-box .btn-box a{
    margin: 0px 0px 20px 0px !important;
  }

  .content_block_four .content-box .btn-box a:last-child{
    margin: 0px !important;
  }
}












































/** news-section **/

.news-section{
  position: relative;
}

.news-block-one{
  position: relative;
  display: block;
  background: #F7F7F7;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.news-block-one:hover{
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  padding: 32px 40px 35px 40px;
  border-bottom: 1px solid #E5E5E5;
}

.news-block-one .inner-box .post-date{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.news-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 14px;
}

.news-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box h3 a:hover{

}

.news-block-one .inner-box p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 24px;
}

.news-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  border-bottom: 1px solid var(--secondary-color);
}

.news-block-one .inner-box .link a:hover{

}

.news-block-one .author-box{
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 40px;
}

.news-block-one .author-box .author-thumb{
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.news-block-one .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.news-block-one .author-box span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
}


/** news-style-two **/

.news-style-two{
  position: relative;
}

.news-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.news-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.news-block-two .inner-box .image-box img{
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.news-block-two .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-two .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-two .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 30px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #E5E5E5;
}

.news-block-two .inner-box .lower-content .category{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--title-color);
  background: #E7EBEE;
  border-radius: 30px;
  text-align: center;
  padding: 4px 15px;
  margin-bottom: 19px;
}

.news-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.news-block-two .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-two .inner-box .lower-content h3 a:hover{

}

.news-block-two .inner-box .lower-content p{
  margin-bottom: 20px;
}

.news-block-two .inner-box .lower-content .author-box{
  position: relative;
  display: flex;
  align-items: center;
}

.news-block-two .inner-box .lower-content .author-box .author-thumb{
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

.news-block-two .inner-box .lower-content .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.news-block-two .inner-box .lower-content .author-box span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.dark_home .news-block-one{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .news-block-one .inner-box h3 a{
  color: #fff;
}

.dark_home .news-block-one .inner-box p{
  color: rgba(255, 255, 255, 0.80);
}

.dark_home .news-block-one .inner-box .link a{
  color: #fff;
  border-color: #fff;
}

.dark_home .news-block-one .inner-box{
  border-color: rgba(255, 255, 255, 0.10);
}

.dark_home .news-block-one .author-box span{
  color: #fff;
}

.dark_home .news-section .pattern-layer{
  position: absolute;
  right: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 800px;
  height: 1770px;
  background-repeat: no-repeat;
  opacity: 0.8;
}


.sidebar-page-container .news-block-two .inner-box{
  margin-bottom: 50px;
}

.news-block-two .inner-box h2{
  position: relative;
  display: block;
  font-size: 42px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.news-block-two .inner-box h2 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-two .inner-box h2 a:hover{

}

.news-block-two .inner-box .lower-content .author-box .category{
  margin-bottom: 0px;
  margin-right: 30px;
}


/** rtl-css **/

.rtl .news-block-one .author-box .author-thumb{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .news-block-two .inner-box .lower-content .author-box .author-thumb{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .news-block-two .inner-box .lower-content .author-box .category{
  margin-right: 0px;
  margin-left: 30px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .news-section,
  .news-style-two{
    padding: 70px 0px 40px 0px;
  }

  .news-section.pt_0{
    padding-top: 0px;
  }

  .sidebar-page-container{
    padding: 65px 0px 70px 0px;
  }
}

@media only screen and (max-width: 599px){
  .news-block-two .inner-box h2{
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 499px){
  .news-block-one .inner-box,
  .news-block-one .author-box{
    padding-left: 30px;
    padding-right: 30px;
  }
}












































/** subscribe-section **/

.subscribe-section{
  position: relative;
}
.new-sub-sec {
  text-align: center;
  margin-top: 20px;
}
.new-sub-sec p {
  color: black;
  margin-top: 10px;
  font-size: 18px;
}

.subscribe-section .bg-color{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  background: #F7F7F7;
}

.subscribe-section .inner-container{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 45px 60px;
}

.subscribe-section h2{
  font-size: 36px;
  line-height: 44px;
  color: #000000 !important;
  font-weight: 500;
}

.subscribe-section .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
  padding-right: 167px;
}

.subscribe-section .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  color: var(--text-color);
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.subscribe-section .form-inner .form-group button[type='submit']{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 157px;
  background: var(--secondary-color);
  padding-left: 20px;
  padding-right: 20px;
}

.subscribe-section .form-inner .form-group button[type='submit']:before,
.subscribe-section .form-inner .form-group button[type='submit']:after{
  background: #fff;
}

.subscribe-section .form-inner .form-group button i{
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
}

.subscribe-section .form-inner .form-group button[type='submit']:hover{
  color: var(--theme-color) !important;
}

.subscribe-section .inner-container .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
}

.dark_home .subscribe-section .inner-container{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .subscribe-section .form-inner .form-group button[type='submit']{
  background: var(--theme-color-2);
}

.dark_home .subscribe-section .form-inner .form-group button[type='submit']:hover{
  color: var(--theme-color-2) !important;
}


/** rtl-css **/

.rtl .subscribe-section .form-inner .form-group button i{
  margin-left: 0px;
  margin-right: 8px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .subscribe-section h2{
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px){

}

@media only screen and (max-width: 599px){
  .subscribe-section .inner-container{
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 499px){
  .subscribe-section .form-inner .form-group{
    padding-right: 0px;
  }

  .subscribe-section .form-inner .form-group button[type='submit']{
    position: relative;
    width: 100%;
    margin-top: 15px;
  }
}












































/** main-footer **/

.main-footer{
  position: relative;
  background: #F7F7F7;
}

.main-footer .widget-title{
  position: relative;
  display: block;
}

.main-footer .widget-title h3{
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.main-footer .links-widget .links-list li a:hover{

}

.main-footer .logo-widget .widget-content{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 40px;
  padding-bottom: 30px;
}

.main-footer .logo-widget .widget-content p{
  font-size: 18px;
  line-height: 30px;
  color: var(--title-color);
  margin-bottom: 23px;
}

.main-footer .logo-widget .widget-content .scanner-box{
  position: relative;
  display: block;
  background: rgba(247, 247, 247, 1);
  border-radius: 10px;
  padding: 33px 15px;
}

.main-footer .download-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.main-footer .download-list li:last-child{
  margin: 0px !important;
}

.main-footer .download-list li a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 50px;
  line-height: 60px;
  background: #383838;
  border-radius: 10px;
  font-size: 30px;
  color: #fff;
}

.main-footer .download-list li a:hover{

}

.main-footer .download-list li:nth-child(2) a{
  background: #fff;
  border: 1px solid #E5E5E5;
}

.main-footer .download-list li:nth-child(3) a{
  background: #90C300;
}

.main-footer .footer-lower{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}

.main-footer .footer-card{
  position: relative;
}

.main-footer .footer-card li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.main-footer .footer-card li:last-child{
  margin: 0px !important;
}

.main-footer .footer-card li h4{
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}

.main-footer .footer-card li a{
  position: relative;
  display: inline-block;
}

.main-footer .widget-section{
  border-bottom: 1px solid #E5E5E5;
}

.footer-bottom{
  position: relative;
  padding: 18px 0px;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .bottom-inner p 
{ text-align: center !important; margin: 0 auto !important; display: block; 
} 

.footer-bottom .bottom-inner p{
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.footer-bottom .bottom-inner p a{
  display: inline-block;
  font-weight: 600;
}

.footer-bottom .bottom-inner p a:hover{
  text-decoration: underline;
}

.main-footer .social-links{
  position: relative;
  display: flex;
  align-items: center;
}

.main-footer .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.main-footer .social-links li:last-child{
  margin: 0px !important;
}

.main-footer .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 48px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--title-color);
}

.main-footer .social-links li a:hover{
  color: #fff;
}

.dark_home .main-footer{
  background: transparent;
}

.dark_home .main-footer .widget-title h3{
  color: #fff;
}

.dark_home .main-footer .links-widget .links-list li a{
  color: #fff;
}

.dark_home .main-footer .logo-widget .widget-content,
.dark_home .main-footer .logo-widget .widget-content .scanner-box{
  background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 0px;
}

.dark_home .main-footer .logo-widget .widget-content p{
  color: #fff;
}

.dark_home .main-footer .footer-card li h4{
  color: #fff;
}

.dark_home .main-footer .widget-section{
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.dark_home .footer-bottom .bottom-inner p{
  color: rgba(255, 255, 255, 0.80);
}

.main-footer .social-links li h5{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.dark_home .main-footer .social-links li h5{
  color: #fff;
}


/** rtl-css **/

.rtl .main-footer .download-list li,
.rtl .main-footer .footer-card li{
  margin-right: 0px;
  margin-left: 10px;
  float: right;
}

.rtl .main-footer .logo-widget{
  margin-left: 0px;
  margin-right: 80px;
}

.rtl .main-footer .social-links li{
  margin-right: 0px;
  margin-left: 10px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .main-footer .logo-widget{
    margin-left: 0px;
  }

  .rtl .main-footer .logo-widget{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 991px){
  .footer-widget{
    margin: 0px 0px 30px 0px !important;
  }

  .main-footer .footer-lower{
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .main-footer .widget-section{
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 767px){
  .main-footer .footer-lower{
    display: block;
  }

  .main-footer .footer-card{
    margin-top: 20px;
  }

  .footer-bottom .bottom-inner{
    display: block;
    text-align: center;
  }

  .main-footer .social-links{
    justify-content: center;
    margin-top: 15px;
  }

  .main-footer .footer-card li{
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){
  .main-footer .logo-widget .widget-content{
    padding-left: 30px;
    padding-right: 30px;
  }
}
