



* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


:root{
  --theme-color: #00bfff;
  --secondary-color: #131615;
  --theme-color-2: #E4753D;
  --text-color: #666666;
  --title-color: #111111;
  --text-font: "IBM Plex Sans", sans-serif;
  --title-font: "Ubuntu", sans-serif;
}





body {
  font-size:16px;
  color: var(--text-color);
  line-height:26px;
  font-weight:400;
  background:#ffffff;
  font-family: var(--text-font);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1680px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1320px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  margin: 0px;
  transition: all 500ms ease;
}


/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: var(--secondary-color);
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 20px;
  background: #fff;
  color: var(--theme-color);
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
  font-weight: 400;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before { animation-delay: 1.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before { animation-delay: 1.8s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #fff;
  border-top-color: rgba(255, 255, 255, 0.3); 
}




/** main-header **/

.main-header{
  position: relative;
}
.main-header .outer-box .logo-box img{
  width: 180px;
}
.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 11px;
  -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: 14px;
  line-height: 20px;
  padding: 30px 0px;
  font-weight: 600;
  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: 29px;
  line-height: 50px;
  cursor: pointer;
  background: var(--theme-color);
  display: none;
  border-radius: 5px;
}

.mobile-menu .nav-logo img{
  max-width: 200px;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 20px;
  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: 15px 20px;
  text-align:left;
  padding-bottom: 20px;
}

.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: #fff;
  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: 20px;
  top: 20px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  height: 40px;
  background: var(--theme-color);
  border-radius: 5px;
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgb(229 229 229);
}

.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: 13px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  position: relative;
  transition: all 500ms ease;
  z-index: 99999999;
}

.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: block;
  }
}

@media only screen and (max-width: 499px){
  .header-style-one .header-lower .logo-box img,
  .header-style-five .header-lower .logo-box img{
    width: 85%;
  }

  .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;
  }

}
































/* AnimaciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 30px; letter-spacing: 5px;}
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}
th, td img{
  
width: 30px;
  
padding-right: 4px;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.row{
  --bs-gutter-x: 30px;
}

/** button **/


.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--title-font);
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  padding: 10px 30px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
}

.theme-btn:hover{
  background: var(--secondary-color);
  color: #fff !important;
}

.theme-btn.btn-one{

width: max-content;
}

.theme-btn.btn-two{
  background: transparent;
  border: 1px solid #fff;
  padding: 9px 40px;
}

.theme-btn.btn-two:before,
.theme-btn.btn-two:after{

}

.theme-btn.btn-two:hover{
  
}

.theme-btn:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: left center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}

.theme-btn:after{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: right center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}

.theme-btn:hover:before,
.theme-btn:hover:after{
  transform: translateX(1);
  width: 50%;
}

.theme-btn span{
  position: relative;
  padding-right: 22px;
}

.theme-btn span:before{
  position: absolute;
  content: '\e901';
  font-family: 'icomoon';
  font-size: 14px;
  top: -3px;
  right: 0px;
  font-weight: 400;
}


.parallax-bg{
  position: absolute;
  left: 0px;
  top: -30%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** styled-pagination */

.pagination{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li{
  position: relative;
  display: inline-block;
  margin: 0px 5px;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-family: var(--title-font);
  color: var(--title-color);
  height: 44px;
  width: 44px;
  line-height: 44px;
  background: #ffffff;
  border: 1px solid #E5E5E5;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current{
  color: #fff;
}

.pagination li a.dot-link{
  position: relative;
  width: 8px;
  height: 8px;
  line-height: 8px;
  background: rgba(11, 3, 3, 0.40);
  border-radius: 50%;
  border: none;
}

.pagination li a.dot-link:hover,
.pagination li a.dot-link.current{
  
}

.pagination li a.dot-link:before{
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border: solid;
  border-width: 2px;
  opacity: 0;
  border-radius: 50%;
  left: -6px;
  top: -6px;
  transition: all 500ms ease;
}

.pagination li a.dot-link:hover:before,
.pagination li a.dot-link.current:before{
  opacity: 1;
}

.sec-pad{
  padding: 142px 0px 150px 0px;
}

.mr-0{
  margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgba(0,46,65,0.2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.scroll-to-top::after {
  position: absolute;
  content: "\e907";
  font-family: 'icomoon';
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2
  transform: rotate(-180deg);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

.scroll-to-top:hover::after {
  
}

.scroll-to-top:hover::before {
  opacity: 1
}

.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: var(--theme-color);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}



@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}



.sec-title{
  position: relative;
  display: block;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 700;
}

.sec-title.light h2{
  color: #fff;
}

.sec-title .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;
}

.sec-title .sub-title:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.05;
}

.sec-title .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;
}




/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/** language-switcher **/

.language-picker label{
  display: none;
}

.language-picker .nice-select{
  display: none;
}


.language-picker {
  position: relative;
  display: inline-block;
}

.language-picker__button .icon {
  display: none;
}

.language-picker__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 70px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  padding: 15px 15px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  text-align: left;
  transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__list{
  text-align: center;
}

.language-picker__list .language-picker__flag{
  padding: 0px !important;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  transition: opacity .2s, -webkit-transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.language-picker__item:hover {

}

.language-picker__button{
  position: relative;
  border: none !important;
  padding: 0px;
  padding-right: 4px;
}

.language-picker__button:before{
  position: absolute;
  content: '\e905';
  font-family: 'icomoon';
  font-size: 6px;
  top: 8px;
  right: 0px;
  color: #fff;
}

.language-picker__flag {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--title-font);
  font-weight: 400;
  color: var(--title-color);
  padding-left: 33px;
  text-transform: uppercase;
}

.language-picker__list .language-picker__flag{
  padding: 4px 0px 4px 33px;
}

.language-picker__list

.language-picker__flag.language-picker__label:after {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 10px;
  height: 6px;
  top: 6px;
  right: 0px;
  background-repeat: no-repeat;
}

.language-picker__flag.language-picker__label{
  padding-left: 26px;
  padding-right: 0px;
  padding-right: 16px;
}

.language-picker__flag em{
  font-style: normal;
}

.language-picker__flag::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 4px;
  left: 0px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.language-picker__flag.language-picker__label:before{
  top: -3px;
  left: 0px;
}

.language-picker__dropdown .language-picker__flag::before {
  margin-right: .5rem;
  margin-right: var(--space-xs);
  top: -1px;
}

.language-picker__flag--deutsch::before {
  background-image: url(../images/icons/flag-deutsch.png);
}

.language-picker__flag--english::before {
  background-image: url(../images/icons/flag-english.png);
}

.language-picker__flag--francais::before {
  background-image: url(../images/icons/flag-francais.png);
}

.language-picker__flag--italiano::before {
  background-image: url(../images/icons/flag-italiano.png);
}

.language-picker--hide-label .language-picker__button .icon {
  margin-left: 0
}

.language-picker--hide-label .language-picker__button em {
  display: none
}

.language-picker--hide-label .language-picker__button .language-picker__flag::before {
  margin-right: .25rem;
  margin-right: var(--space-xxxs)
}

.language-picker__flag.language-picker__label{
  padding-right: 7px;
}

.nice-select{
  position: relative;
  display: block;
  width: 100%;
  line-height: 23px;
  color: #000;
  font-family: var(--text-font);
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.nice-select:before{
  position: absolute;
  content: '\e914';
  font-family: 'icomoon';
  font-size: 7px;
  top: 10px;
  right: 15px;
}

.nice-select .list{
  min-width: 100%;
}

.nice-select .list li{
  color: #000000;
  font-weight: 600;
}

.nice-select .list{
  max-height: 160px;
  overflow-x: hidden;
  overflow-y: auto;
}


.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.owl-nav button{
  background: transparent;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}


/** rtl-switcher **/

.demo-rtl{
  position: fixed;
  top: 390px;
  left: 10px;
  z-index: 9999;
}

button.rtl{
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.demo-ltr{
  position: fixed;
  top: 390px;
  left: auto;
  right: 10px;
  z-index: 9999;
}

button.ltr {
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.boxed_wrapper.ltr .demo-rtl{
  display: block;
}

.boxed_wrapper.ltr .demo-ltr{
  display: none;
}

.boxed_wrapper.rtl .demo-rtl{
  display: none;
}

.boxed_wrapper.rtl .demo-ltr{
  display: block;
}

.nav-style-one .owl-nav button{
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 70px;
  height: 70px;
  line-height: 74px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 1;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav .owl-prev{
  margin-right: 10px;
}

.nav-style-one .owl-nav button:hover{
  background: transparent !important;
}

.nav-style-one .owl-nav button:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform-origin: top center;
  transform: scaleY(0);
  z-index: -1;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button:hover:before{
  transform: scaleY(1);
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.nice-select .option{
  padding-left: 15px;
  padding-right: 15px;
}

.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}

.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.50);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}

.border-animation.border-2 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

.border-animation.border-3 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}


.search-popup {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.80);
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.search-popup .popup-inner{
  width: 100%;
  height: 100%;
  background: #fff;
}

.search-popup .upper-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 70px;
}

.search-popup .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.search-popup .close-search {
  position: relative;
  font-size: 20px;
  color: var(--title-color);
  cursor: pointer;
  z-index: 5;
  transition: all 500ms ease;
}

.search-popup .close-search:hover {
  color: red;
}

.search-popup .search-form {
  position: relative;
  width: 100%;
  padding: 100px 0px 250px 0px;
}

.search-popup .search-form .form-group{
  position: relative;
  margin: 0px;
}

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 90px;
  padding: 20px 0px;
  background: #ffffff;
  line-height: 30px;
  font-size: 24px;
  color: #808080;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 0px;
  padding-right: 50px;
  border-bottom: 1px solid #e5e5e5;
}

.search-popup .search-form fieldset button[type="submit"] {
  position: absolute;
  top: 30px;
  right: 0px;
  font-size: 22px;
  color: #141417;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .search-form fieldset input[type="search"]:focus{
  border-color: #141417;
}

.search-popup .form-control:focus{
  box-shadow: none !important;
}

.banner-btn{
  background: #fff;
}

.banner-btn:hover,
.banner-btn:before,
.banner-btn:after{

}

.list-style-one li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  padding-left: 40px;
}

.list-style-one li:last-child{
  margin-bottom: 0px;
}

.list-style-one li:before{
  position: absolute;
  content: '\e91d';
  font-family: 'icomoon';
  font-size: 12px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 4px;
  left: 0px;
  top: 0px;
  color: #fff;
}


.slide-text{
  position: relative;
  display: block;
}

.slide-text .text-inner{
  position: relative;
  display: block;
  padding: 25px 0px;
  transform: rotate(-5deg);
}

.slide-text .text-inner:before{
  position: absolute;
  content: '';
  left: -50px;
  top: 0px;
  width: calc(100% + 100px);
  height: 100%;
}

.slide-text .text-inner .text-list{
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  -moz-animation: scroll-left 400s linear infinite;
  -webkit-animation: scroll-left 400s linear infinite;
  animation: scroll-left 400s linear infinite;
}

.slide-text .text-inner .text-list li{
  position: relative;
  display: inline-block;
  font-size: 32px;
  line-height: 40px;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-right: 280px;
}

.slide-text .text-inner .text-list li:last-child{
  margin: 0px;
}

@-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%); }
}

.slide-text .text-inner .text-list li:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 37px;
  height: 37px;
  top: 2px;
  right: -145px;
  background-repeat: no-repeat;
}


.image-hov-one{
  position: relative;
  display: block;
  overflow: hidden;
}

.image-hov-one::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.image-hov-one:hover::before {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.image-hov-two{
  position: relative;
  display: block;
  overflow: hidden;
}

.image-hov-two::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1000%;
  height: 0%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.image-hov-two:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}


.check-box input {
  display: none;
}

.check-box label {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  padding-left: 24px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}

.check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: transparent;
}

.check-box label:after {
  position: absolute;
  content: '\e91d';
  font-family: 'icomoon';
  left: 4px;
  top: 1px;
  opacity: 0;
  font-size: 8px;
  color: #fff;
}

.check-box input:checked + label:after {
  opacity: 1;
}

.check-box input:checked + label:before{

}


.dots-style-one .owl-dots span{
  display: none !important;
}

.dots-style-one .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;
}

.dots-style-one .owl-dots button.active,
.dots-style-one .owl-dots button:hover{
  background: #fff;
  transform: scale(1.45);
}




.select_wrap{
  position: relative;
  margin-bottom: 20px;
}

.select_wrap .default_option{
  position: relative;
}

.select_wrap .default_option li{
  position: relative;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 24px 24px;
  cursor: pointer;
}

.select_wrap .default_option:before{
  position: absolute;
  content: "\e905";
  font-family: 'icomoon';
  top: 30px;
  right: 24px;
  font-size: 10px;
  color: var(--title-color);
}

.select_wrap .select_ul{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 9;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: all 500ms ease;
}

.select_wrap.active .select_ul{
  transform: scaleY(1);
}

.select_wrap .select_ul li{
  padding: 10px 20px;
  cursor: pointer;
}

.select_wrap .select_ul li:first-child:hover{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select_wrap .select_ul li:hover{
  background: #fff4dd;
}

.select_wrap .option{
  display: flex;
  align-items: center;
}

.select_wrap .option p{
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: var(--title-color);
}

.select_wrap .option .icon{
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 12px;
}

.select_wrap .option .icon img{
  width: 100%;
  border-radius: 50%;
}

.dark_home{
  background: #000;
}

.boxed_wrapper.home_5{
  background: #F7F7F7;
}

.clear-bg{
  background: transparent !important;
}

  
/** 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: 17px;
}

.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);
  border-bottom: 1px solid #bcbcbc;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn{
  position: relative;
  padding: 15px 55px 14px 28px;
  cursor: pointer;
  background: var(--theme-color);
  color: #fff;
  margin-bottom: 10px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn h3{
  font-size: 21px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn .icon-box{
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 7px;
  color: #fff;
  transition: all 500ms ease;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content{
  padding: 0px 29px 10px 30px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content p{
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 10px;
}

.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;
  }
}

 
/** faq-section **/

.faq-section{
  position: relative;
  padding: 100px 0px 100px;
  background: #fff;
}

.faq-section .inner-box{
  position: relative;
  width: 100%;
  margin-top: 30px;
}

.faq-section .accordion-box .accordion{
  position: relative;
  margin-bottom: 30px;
}

.faq-section .accordion-box .accordion:last-child{
  margin-bottom: 0px;
}

.faq-section .accordion-box .accordion .acc-btn{
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding: 16px 50px 16px 30px;
  cursor: pointer;
}

.faq-section .accordion-box .accordion .acc-btn.active{

}

.faq-section .accordion-box .accordion .acc-btn h5{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: all 500ms ease;
}

.faq-section .accordion-box .accordion .acc-btn.active h5{
  color: #fff;
}

.faq-section .accordion-box .accordion .acc-btn .icon-box{
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 6px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.faq-section .accordion-box .accordion .acc-btn.active .icon-box{
  transform: rotate(180deg);
  color: #fff;
}

.faq-section .accordion-box .accordion .acc-content{
  position: relative;
  padding: 17px 50px 0px 30px;
}


/** 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){
  .faq-section{
    padding: 75px 0px 75px 0px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}

 
/** 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;
  text-align: center;
}
.image_block_one .images-1{
  position: relative;
  animation: circless 10s linear infinite;
  position: absolute;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@keyframes circless {
    100%{
        transform: translate(-50%, -50%) rotate(180deg);
    }
}
.image_block_one .images-2{position: relative;width: 80%;}
.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;
  padding: 100px 0px 100px;
}

.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: 75px 0px 75px 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;
    margin-bottom: 0;
  }

  .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){

}



/* table csss  */
 
    .table-container {
      overflow-x: auto;
      background: #fff;
      border-radius: 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      /* min-width: 800px; */
    }

    thead {
      background: var(--theme-color);
      color: #fff;
    }
  thead tr:hover {
      background: var(--theme-color); 
    }
    th, td {
      padding: 15px 14px;
      font-weight: 500;
      font-size: 15px;
      text-align: left;
      border: 1px solid #908c8c;
    }

    tr:hover {
      background-color: #efefefc2;
    }

    @media (max-width: 768px) {
      table {
        font-size: 14px;
      }

      th, td {
        padding: 10px 8px;
      }
    }

    @media (max-width: 500px) {
      th, td {
        padding: 8px 6px;
        font-size: 13px;
      }

      table {
        font-size: 12px;
      }
    }

    
/** 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: rgba(19, 47, 89, 0.05);
  padding: 100px 0px 100px;
}

.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;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.feature-account .inner-container .single-item{
  position: relative;
  float: left;
  width: 20%;
}

.feature-account .single-item{
  position: relative;
  display: block;
  padding: 43px 20px 40px 20px;
  border-right: 1px solid #e5e5e5;
}

.feature-account .single-item:last-child{
  border-right: none;
}

.feature-account .single-item .icon-box{
  position: relative;
  /* display: inline-block; */
  text-align: center;
  font-size: 45px;
  margin: auto;
  line-height: 46px;
  margin-bottom: 15px;
}

.feature-account .single-item h4{
  line-height: 30px;
  font-size: 22px;
  font-weight: 500;
  /* margin-bottom: 20px; */
  text-align: center;
}
.feature-account .single-item h4 span{
display: block;
}
.feature-account .single-item h4 .text-value {
    font-size: 18px;
    line-height: 33px;
    font-weight: 500; 
}
.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: 75px 0px 75px 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-right: none;
    border-bottom: 1px solid #cccaca;
  }
}

@media only screen and (max-width: 499px){

}


    .calculator {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      width: 100%;
    }

    .calculator h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    .form-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 20px;
    }

    .form-group > div {
      flex: 1 1 45%;
    }

    input, select {
      width: 100%;
      padding: 10px;
      font-size: 14px;
      border-radius: 6px;
      border: 1px solid #ccc;
      box-sizing: border-box;
      color: #000;
    }

    button {
      width: 100%;
      padding: 12px;
      background: var(--theme-color);
      color: #fff;
      border: none;
      border-radius: 52px;
      font-size: 16px;
      cursor: pointer;
      font-weight: 500;
    }

    .result {
      background-color: #f1f7ff;
      padding: 20px;
      border-radius: 8px;
      margin-top: 20px;
      font-size: 16px;
    }

    .result p {
      display: flex;
      justify-content: space-between;
      margin: 8px 0;
      font-weight: bold;
    }
 
/** 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: 635px;
  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: 40px;
  line-height: 55px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  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: 16px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 21px;
  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: 200px 0px 290px 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: 100px;
  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;
  width: 300px;
  bottom: 80px;
  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 **/

.apps-style-two .sec-title .sub-title{
background: #fff;
}
.feature-account {
  position: relative;
  padding: 100px 0px 100px;
}
.apps-style-two {
    position: relative;
    padding: 100px 0px 100px;
}
.calculator label {
    display: inline-block;
    color: #000;
    font-weight: 500; 
}


/* faqq start css  */
.tabs {
      /* max-width: 800px; */
      margin: auto;
      /* background: #fff; */
      border-radius: 8px;
      /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    }

    .tab-buttons {
      display: flex;
      gap: 7px;
      flex-wrap: wrap;
      /* border-bottom: 1px solid #ddd; */
    }

    .tab-buttons button {
      flex: 1;
      padding: 12px;
      cursor: pointer;
      background: #f9f9f9;
      border: none;
      outline: none;
      color: var(--text-color);
      font-weight: bold;
      transition: background 0.3s;
      border-bottom: 1px solid var(--text-color);
    }

    .tab-buttons button.active {
      background: var(--theme-color);
      color: #fff;
    }

    .tab-content {
      display: none;
      /* padding: 20px; */
    }

    .tab-content.active {
      display: block;
    }

    @media (max-width: 600px) {
      .tab-buttons button {
        flex: 100%;
      }
    }

    .inner-box .faq-ul li {
    list-style: circle;
     margin-left: 20px;
}


/* news css start  */


/** 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: 15px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #E5E5E5;
  background: #fff;
}

.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: 10px;
}

.news-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 5px;
}

.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: 12px;
}

.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;
  }
}


 .our-news{
  position: relative;
  padding: 100px 0px 100px;
  background: rgba(19, 47, 89, 0.05);
 }



 
/** contact-section **/

.contact-section{
  position: relative;
}

.contact-section .single-info{
  position: relative;
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: 70px auto;
  align-items: center;
  gap: 20px;
}

.contact-section .single-info .icon-box{
  /* position: absolute; */
  display: inline-block;
  left: 0px;
  top: 8px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-section .single-info h4{
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-section .single-info p{
  position: relative;
  display: block;
  /* max-width: 170px; */
}

.contact-section .single-info p a{
  display: inline-block;
  color: var(--text-color);
}

.contact-section .single-info p a:hover{

}
.contact-section .form-inner {
  /* background: rgba(19, 47, 89, 0.05); */
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 30px;
}
.contact-section .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.contact-section .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 5px;
}

.contact-section .form-inner .form-group label span{
  
}

.contact-section .form-inner .form-group input[type='text'],
.contact-section .form-inner .form-group input[type='email'],
.contact-section .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 50px;
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 20px;
  transition: all 500ms ease;
}

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus{

}

.contact-section .form-inner .form-group textarea{
  height: 100px;
  resize: none;
  border-radius: 20px;
}

.contact-section .form-inner .form-group .theme-btn{
  border-radius: 40px;
}

.contact-section .map-inner{
  position: relative;
  display: block;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-section .map-inner iframe{
  position: relative;
  width: 100%;
  height: 100%;
}


/** rtl-css **/

.rtl .contact-section .single-info{
  padding-left: 0px;
  padding-right: 95px;
}

.rtl .contact-section .single-info .icon-box{
  left: inherit;
  right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .contact-section{
    padding: 75px 0px 75px 0px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}


 
/** 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: 15px;
  line-height: 26px;
  color: var(--title-color);
  border: 1px solid #e5e5e5;
  padding: 8px 20px;
  border-radius: 100px;
  background: #fff;
}

.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;
}

.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;
  PADDING: 75PX 0PX 75PX;
}

.footer-bottom{
  position: relative;
  padding: 18px 0px;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom  p{
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.footer-bottom   p a{
  display: inline-block;
  font-weight: 600;
  color: var(--theme-color);
}

.footer-bottom  a:hover{
  text-decoration: underline;
}

.main-footer .social-links{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.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: #fff;
  background: var(--theme-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;
}
.main-footer .widget-content .links-list{

display: flex;

justify-content: space-between;

flex-wrap: wrap;

align-items: center;
}
.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: 75PX 0PX 30PX;
  }
}

@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: 20px;
  }
}
.page-title{
      background:#F7F7F7;
    PADDING: 75PX 0PX 75PX;
}
.Terms-Of-Service{
   PADDING: 100PX 0PX 90PX;
}
.terms-services {
    margin-top: 10px;
}

.terms-services li {
    display: flex;
    gap: 10px;
    justify-content: start;
}   
.copyright-a{
  color: #000;
}
.copyright-a:hover{
  text-decoration: none;
}
.main-mobile-menu{
      display: flex
;
    align-items: center;
    gap: 40px;
} 



/** 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%;
  }
}



 .withrow {
  display: flex;
  justify-self: center;
 }
.withrow span {
   margin-bottom: 18px;
   padding: 10px 18px;
   background: #fff;
   display: flex;
   align-items: center;
   gap: 15px;
   border-radius: 8px;
   font-size: 20px;
   width: max-content;
}
 .withrow img{
  width: 50px;
 }