* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

:root {
  --theme-color: #d90000;
  --secondary-color: #131615;
  --theme-color-2: #e4753d;
  --text-color: #666666;
  --text-white: #fff;
  --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: 10px 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: #0a3a61;
  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.3);
}

.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);
}

/* 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;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.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 20px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0s;
  border: 1px solid var(--theme-color);
}

.theme-btn:hover {
  background: var(--secondary-color);
  color: #fff !important;
}

.theme-btn.btn-one {
}

.theme-btn.btn-two {
  background: #fcdc04;
  border: 1px solid #000000;
  padding: 10px 20px;
  color: #000 !important;
}

.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.4);
  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;
  -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: 42px;
  line-height: 53px;
  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.1);
  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 Container */
.language-picker-container {
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

/* Picker Button */
.language-picker__button {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
}

.language-picker__button:hover {
  background: #f7f7f7;
  border-color: #bbb;
}

.language-picker__button .flag {
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin-right: 8px;
}

.language-picker__button .label {
  color: #333;
  margin-right: 6px;
}

.language-picker__button .arrow {
  font-size: 12px;
  color: #666;
}

/* Dropdown Styling */
.language-picker__dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

/* Show Dropdown */
.language-picker.open .language-picker__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Language Item */
.language-picker__dropdown .language-item {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-picker__dropdown .language-item .flag {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

/* Hover Effect */
.language-picker__dropdown .language-item:hover {
  background: #f0f4ff;
  color: #0078ff;
  font-weight: 600;
}

/* Active Language */
.language-picker__dropdown .language-item.active {
  background: #e8f1ff;
  color: #0078ff;
  font-weight: 600;
}

.nice-select {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color);
  font-family: var(--text-font);
  padding-right: 14px;
}

.nice-select:before {
  position: absolute;
  content: "\e914";
  font-family: "icomoon";
  font-size: 7px;
  top: 0px;
  right: 25px;
}

.nice-select .list {
  min-width: 100px;
}

.nice-select .list li {
  color: var(--text-color);
}

.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.1);
  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.1);
  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.5);
  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.8);
  -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.3);
  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;
}

/*=============================== new css =================================*/
figure.logo-box img {
  width: 150px;
  background-color: white;
  padding: 4px;
  border-radius: 8px;
}
.about-style-two.dark-section figure.image-box img {
  height: 20rem;
  margin: 10px auto;
  display: block;
}

.about-style-two .menu-right-content {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.about-style-two .menu-right-content .btn-box a {
  min-width: 160px;
  border: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-style-two.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../images/resource/platform-bg-1.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.about-style-two.dark-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
}
figure.footer-logo img {
  height: 5rem;
}
.footer-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ======================================loader============================== */
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}
#loading-center {
  position: relative;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.preloader {
  position: relative;
  background: url("https://www.xelansmarkets.com/assets/images/logo/logo.png")
    no-repeat center;
  background-size: 90px;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader::after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  transform: translateX(-50px);
  border-top: 2px solid #0c1387;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/** 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.5);
  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;
  margin-bottom: 1rem;
}

.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 25px 50px 0px;
  z-index: 1;
}

.about-style-two .tabs-content:before {
  position: absolute;
  content: "";
  background: #f7f7f7;
  border-radius: 40px;
  width: calc(100% + 87px);
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: -1;
}

.about-style-two .content-box {
  position: relative;
  display: block;
}

.about-style-two .content-box h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 19px;
}

.about-style-two .content-box p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}

/** about-style-three **/

.about-style-three {
  position: relative;
}

.content_block_seven .content-box {
  position: relative;
  display: block;
}

.content_block_seven .content-box .accordion-box .accordion {
  position: relative;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.content_block_seven .content-box .accordion-box .accordion:last-child {
  margin-bottom: 0px;
}

.content_block_seven .content-box .accordion-box .accordion.active-block {
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn {
  position: relative;
  padding: 24px 60px 24px 30px;
  cursor: pointer;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.content_block_seven .content-box .accordion-box .accordion .acc-btn .icon-box {
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 7px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content {
  padding: 0px 30px 30px 30px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 460px;
  margin-bottom: 24px;
}

.content_block_seven .content-box .accordion-box .accordion .acc-content a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--title-font);
  font-weight: 500;
  border-bottom: solid;
  border-width: 1px;
}

.about-style-three .video_block_one .video-box .video-content {
  position: absolute;
  left: -70px;
  top: 15px;
}

.about-style-three .video_block_one .video-box img {
  width: 100%;
}

.about-style-two.dark-section {
  background: #052744;
}

.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);
}

/** account-section **/

.account-section {
  position: relative;
  background: #f7f7f7;
  border-radius: 40px;
  overflow: hidden;
}

.account-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.account-block-one {
  margin-top: 28px;
}

.account-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 51px 30px 30px 30px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.account-block-one .inner-box:hover {
  box-shadow: 0px 10px 80px 10px rgba(0, 0, 0, 0.15);
}

.account-block-one .inner-box .icon-box {
  position: absolute;
  display: inline-block;
  left: 30px;
  top: -28px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

.account-block-one .inner-box .icon-box:before {
  position: absolute;
  content: "";
  background: var(--secondary-color);
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  z-index: -1;
  transition: all 500ms ease;
}

.account-block-one .inner-box:hover .icon-box:before {
  height: 100%;
}

.account-block-one .inner-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 11px;
}

.account-block-one .inner-box h3 a {
  color: var(--title-color);
}

.account-block-one .inner-box h3 a:hover {
}

/** account-style-two **/

.account-style-two {
  position: relative;
  background: #191919;
}

.account-block-two {
  position: relative;
  margin-top: 30px;
}

.account-block-two .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 50px 15px 30px 15px;
  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: 50px;
  text-align: center;
  font-size: 36px;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
}
.account-block-two .inner-box .icon-box img {
  height: 50px;
  padding: 5px;
}

.account-block-two .inner-box:hover .icon-box {
  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: 0px;
  transition: all 500ms ease;
  min-height: 80px;
}

.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.2);
}

.account-style-two.account-page .account-block-two .inner-box {
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.account-style-two.account-page .account-block-two .inner-box p {
  margin-bottom: 0px;
}

.feature-account .inner-container {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.feature-account .inner-container .single-item {
  position: relative;
  float: left;
  width: 20%;
}

.feature-account .single-item {
  position: relative;
  display: block;
  padding: 46px 25px 40px 30px;
  border-right: 1px solid #e5e5e5;
  min-height: 385px;
}

.feature-account .single-item:last-child {
  border-right: none;
}

.feature-account .single-item .icon-box {
  position: relative;
  display: inline-block;
  font-size: 46px;
  line-height: 46px;
  margin-bottom: 23px;
}

.feature-account .single-item h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.feature-account .single-item h4 a {
  display: inline-block;
  color: var(--title-color);
}

.feature-account .single-item .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;
}

/** apps-section **/

.apps-section {
  position: relative;
}

.apps-section .inner-container {
  position: relative;
  display: block;
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 120px 80px;
  z-index: 1;
}

.apps-section .image-layer {
  position: absolute;
  right: 80px;
  bottom: 0px;
}

.apps-section .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.content_block_two .content-box {
  position: relative;
  display: block;
  max-width: 520px;
}

.content_block_two .content-box p {
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.content_block_two .content-box .sec-title h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 14px;
}

.content_block_two .content-box .download-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.content_block_two .content-box .download-list li:last-child {
  margin: 0px !important;
}

.content_block_two .content-box .download-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 60px;
  line-height: 60px;
  background: #383838;
  border-radius: 10px;
  font-size: 30px;
  color: #fff;
}

.content_block_two .content-box .download-list li:nth-child(2) a {
  background: #fff;
}

.content_block_two .content-box .download-list li:nth-child(3) a {
  background: #90c300;
}

.content_block_two .content-box .download-list li:nth-child(4) a {
  background: #e72c2c;
}

/** apps-style-two **/

.apps-style-two {
  position: relative;
  background-color: #052744;
}

.content_block_four .content-box {
  position: relative;
  display: block;
}

.content_block_four .content-box .btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.content_block_four .content-box .btn-box a {
  position: relative;
  display: inline-block;
  width: 200px;
  background: #fff;
  padding: 11px 20px 11px 55px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin-right: 20px;
  border-radius: 10px;
}

.content_block_four .content-box .btn-box a:hover {
  background: #ffb31f;
}

.content_block_four .content-box .btn-box a img {
  position: absolute;
  left: 15px;
  top: 9px;
}

.content_block_four .content-box .btn-box a:last-child {
  margin-right: 0px;
}

.content_block_four .content-box .btn-box a span {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.content_block_four .content-box .sec-title p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.content_block_four .content-box .sec-title h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 14px;
}

.content_block_four .content-box .sec-title .sub-title {
  color: #fff;
}

.content_block_four .content-box .sec-title .sub-title:before {
  background: #fff;
}

.content_block_four .content-box .sec-title .sub-title:after {
  border-color: #fff !important;
}

.apps-style-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
}

.apps-style-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../images/resource/backgroud-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.apps-style-two .image-layer {
  position: absolute;
  right: 365px;
  bottom: 0px;
}

.dark_home .apps-section .inner-container {
  background: linear-gradient(
    110.34deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.apps-section .pattern-layer {
  position: absolute;
  right: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 800px;
  height: 1770px;
  background-repeat: no-repeat;
  opacity: 0.7;
}

.apps-section.alternat-2 {
  background: linear-gradient(98.54deg, #191919 0%, #525252 100%);
}

.apps-section.alternat-2 .image-layer {
  right: 315px;
}

/** award-section **/

.award-section {
  position: relative;
}

.award-section .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.award-section .award-table {
  min-width: 1290px;
  width: 100%;
}

.award-section .award-table tr {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0px;
  justify-content: space-between;
}

.award-section .award-table tr td {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
}

.award-section .award-table tr td h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.award-section .award-table tr td h3 a {
  display: inline-block;
  color: var(--title-color);
}

.award-section .award-table tr td span {
  color: #6a6a6a;
}

/** rtl-css **/

/** banner-section **/

.banner-carousel .slide-item {
  position: relative;
  padding: 140px 110px;
  border-radius: 10px;
  overflow: hidden;
}

.banner-carousel .slide-item .content-box {
  position: relative;
  max-width: 600px;
  z-index: 5;
}

.banner-carousel .slide-item .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}

.banner-carousel .active .slide-item .bg-layer {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.banner-carousel .content-box h2 {
  font-size: 60px;
  line-height: 64px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 23px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 33px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box p {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-carousel .content-box .btn-box {
  position: relative;
  display: block;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-carousel .owl-dots {
  position: absolute;
  left: 0px;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.banner-carousel .owl-dots button span {
  display: none !important;
}

.banner-carousel .owl-dots button {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  margin: 0px 5px;
  transition: all 500ms ease;
}

.banner-carousel .owl-dots button.active,
.banner-carousel .owl-dots button:hover {
  background: #fff;
  transform: scale(1.45);
}

/** banner-style-two **/

.banner-style-two {
  position: relative;
}

.banner-style-two .slide-item {
  padding: 322px 0px 280px 0px;
  border-radius: 0px;
}

.banner-style-two .slide-item:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;
  z-index: 1;
}

.banner-style-two .shape {
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
}

.banner-style-two .image-box {
  position: absolute;
  right: 230px;
  bottom: 0px;
  z-index: 1;
}

.banner-style-two .image-box .image-1 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .image-box .image-1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-two .image-box .image-2 {
  position: absolute;
  right: -42px;
  bottom: 290px;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .image-box .image-2 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-two .image-box .image-3 {
  position: absolute;
  left: -175px;
  bottom: 130px;
  opacity: 0;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .image-box .image-3 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .theme-btn.btn-one:hover {
  color: var(--theme-color) !important;
}

.banner-carousel .theme-btn.btn-one:before,
.banner-carousel .theme-btn.btn-one:after {
  background: #fff;
}

/** banner-style-three **/

.banner-style-three {
  position: relative;
}

.content_block_five .content-box {
  position: relative;
  display: block;
}

.content_block_five .content-box h3 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  padding: 27px 85px 15px 40px;
}

.content_block_five .content-box .form-inner {
  position: relative;
  display: block;
  padding: 40px;
}

.content_block_five .content-box .shape {
  position: absolute;
  left: -80px;
  top: -60px;
  width: 710px;
  height: 764px;
  background-repeat: no-repeat;
  background-position: top center;
}

.content_block_five .content-box .form-inner .form-group {
  position: relative;
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 12px 20px 9px 24px;
}

.content_block_five .content-box .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.content_block_five .content-box .form-inner .form-group label {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 0px;
}

.content_block_five .content-box .form-inner .form-group input[type="text"],
.content_block_five .content-box .form-inner .form-group input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 35px;
  font-size: 20px;
  font-weight: 500;
  color: var(--title-color);
  opacity: 0.5;
}

.content_block_five .content-box .form-inner .theme-btn {
  width: 100%;
}

.content_block_five .content-box .shape-2 {
  position: absolute;
  left: -87px;
  top: -32px;
  width: 725px;
  height: 691px;
  background-repeat: no-repeat;
  -webkit-animation: service_hexagon_2 35s infinite linear;
  -moz-animation: service_hexagon_2 35s infinite linear;
  -o-animation: service_hexagon_2 35s infinite linear;
  animation: service_hexagon_2 35s infinite linear;
}

.content_block_six .content-box {
  position: relative;
  display: block;
}

.content_block_six .content-box h2 {
  font-size: 60px;
  line-height: 64px;
  font-weight: 700;
  margin-bottom: 21px;
}

.content_block_six .content-box h2 span {
  display: block;
}

.content_block_six .content-box p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 31px;
}

.content_block_six .content-box .btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.content_block_six .content-box .btn-box .theme-btn.btn-two {
  border-color: var(--secondary-color);
  color: var(--title-color) !important;
}

.content_block_six .content-box .btn-box .theme-btn.btn-two:hover {
  color: #fff !important;
}

.banner-style-three .pattern-layer .pattern-1 {
  position: absolute;
  top: 200px;
  right: 26px;
  width: 187px;
  height: 178px;
  background-repeat: no-repeat;
}

.banner-style-three .pattern-layer .pattern-2 {
  position: absolute;
  top: 117px;
  right: 400px;
  width: 140px;
  height: 160px;
  background-repeat: no-repeat;
}

.banner-style-three .pattern-layer .pattern-3 {
  position: absolute;
  right: 0px;
  bottom: 177px;
  width: 255px;
  height: 288px;
  background-repeat: no-repeat;
}

/** banner-style-four **/

.banner-style-four {
  position: relative;
}

.banner-style-four .image-box {
  position: relative;
  display: block;
  margin-left: 125px;
}

.banner-style-four .image-box img {
  width: 100%;
}

.banner-style-four .sub-title {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-family: var(--text-font);
  font-weight: 600;
  padding: 4px 21px 2px 21px;
  border-radius: 40px;
  text-transform: uppercase;
  z-index: 1;
}

.banner-style-four .sub-title:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.05;
}

.banner-style-four .sub-title:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.2;
  border: solid;
  border-width: 1px;
}

.banner-style-four .content-box h2 {
  color: #fff;
}

.banner-style-four .content-box p {
  color: #fff;
}

.banner-style-four .content_block_six .content-box .btn-box .theme-btn.btn-two {
  color: #fff !important;
}

.banner-style-four .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1375px;
  background-repeat: no-repeat;
  background-position: top center;
  opacity: 0.8;
}

.banner-style-four .shape .shape-1 {
  position: absolute;
  left: 0px;
  bottom: 88px;
  width: 151px;
  height: 178px;
  background-repeat: no-repeat;
}

.banner-style-four .shape .shape-2 {
  position: absolute;
  top: 240px;
  right: 0px;
  width: 263px;
  height: 288px;
  background-repeat: no-repeat;
}

/** banner-style-five **/

.banner-style-five {
  position: relative;
}

.banner-style-five .banner-carousel .slide-item {
  padding: 125px 0px 182px 0px;
}

.banner-style-five .inner-container {
  max-width: 1320px;
  padding: 0px 15px;
  margin: 0 auto;
}

.banner-style-five .banner-carousel .image-box .image {
  position: relative;
  display: block;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-five .banner-carousel .active .image-box .image {
  position: relative;
  z-index: 5;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-five .banner-carousel .slide-item .shape {
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: 43px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

.banner-style-five .banner-carousel .slide-item:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0.5;
}

.banner-style-five .banner-carousel .content-box .btn-box {
  display: flex;
  align-items: center;
}

/** experience-section **/

.experience-section {
  position: relative;
}

.experience-section .inner-container {
  position: relative;
  background: #101215;
  border-radius: 10px;
  padding: 80px 80px;
  overflow: hidden;
}

.experience-section .inner-container .shape {
  position: absolute;
  right: -30px;
  bottom: 0px;
  width: 562px;
  height: 418px;
  background-repeat: no-repeat;
  -webkit-animation: service_hexagon_2 35s infinite linear;
  -moz-animation: service_hexagon_2 35s infinite linear;
  -o-animation: service_hexagon_2 35s infinite linear;
  animation: service_hexagon_2 35s infinite linear;
}

.experience-section .content-box {
  position: relative;
  display: block;
  max-width: 385px;
}

.experience-section .content-box .sec-title h2 {
  font-size: 40px;
  line-height: 46px;
}

.experience-section .content-box .text-box p {
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.experience-section .content-box .text-box .theme-btn:hover {
  color: var(--theme-color) !important;
}

.experience-section .content-box .text-box .theme-btn:before,
.experience-section .content-box .text-box .theme-btn:after {
  background: #fff;
}

.experience-section .inner-box .single-item {
  position: relative;
  display: block;
  padding-left: 20px;
  border-left: solid;
  border-width: 2px;
}

.experience-section .inner-box .single-item h2 {
  font-size: 36px;
  line-height: 45px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

.experience-section .inner-box .single-item p {
  font-size: 18px;
  line-height: 33px;
  color: #fff;
  font-weight: 500;
}

.dark_home .experience-section .inner-container {
  background: linear-gradient(
    110.34deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.dark_home .experience-section .content-box .text-box .theme-btn:hover {
  color: var(--theme-color-2) !important;
}

/** experience-style-two **/

.experience-style-two {
  position: relative;
  padding: 5rem 0;
}

.experience-style-two .inner-container {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
}

.experience-style-two .text-box {
  position: relative;
  display: block;
}

.experience-style-two .text-box p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}

.experience-style-two .sec-title h2 {
  font-size: 30px;
  line-height: 36px;
}

.experience-style-two .lower-box .single-item {
  position: relative;
  display: block;
  padding-left: 20px;
  border-left: solid;
  border-width: 2px;
}

.experience-style-two .lower-box .single-item h2 {
  font-size: 28px;
  line-height: 45px;
  font-weight: 500;
  margin-bottom: 10px;
}

.experience-style-two .lower-box .single-item p {
  font-size: 18px;
  line-height: 33px;
  font-weight: 500;
}

.experience-style-two .shape {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0.05;
  -webkit-animation: service_hexagon_2 60s infinite linear;
  -moz-animation: service_hexagon_2 60s infinite linear;
  -o-animation: service_hexagon_2 60s infinite linear;
  animation: service_hexagon_2 60s infinite linear;
}

/** main-footer **/

.main-footer {
  position: relative;
  background: #f7f7f7;
}

.main-footer .widget-title {
  position: relative;
  display: block;
}

.main-footer .widget-title h3 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}

.main-footer .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.main-footer .links-widget .links-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.main-footer .logo-widget .widget-content {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 40px;
  padding-bottom: 30px;
}

.main-footer .logo-widget .widget-content p {
  font-size: 18px;
  line-height: 30px;
  color: var(--title-color);
  margin-bottom: 23px;
}

.main-footer .logo-widget .widget-content .scanner-box {
  position: relative;
  display: block;
  background: rgba(247, 247, 247, 1);
  border-radius: 10px;
  padding: 33px 15px;
}

.main-footer .download-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.main-footer .download-list li:last-child {
  margin: 0px !important;
}

.main-footer .download-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 50px;
  line-height: 60px;
  background: #383838;
  border-radius: 10px;
  font-size: 30px;
  color: #fff;
}

.main-footer .download-list li a:hover {
}

.main-footer .download-list li:nth-child(2) a {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.main-footer .download-list li:nth-child(3) a {
  background: #90c300;
}

.main-footer .footer-lower {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}

.main-footer .footer-card {
  position: relative;
}

.main-footer .footer-card li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.main-footer .footer-card li:last-child {
  margin: 0px !important;
}

.main-footer .footer-card li h4 {
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}

.main-footer .footer-card li a {
  position: relative;
  display: inline-block;
}

.main-footer .widget-section {
  border-bottom: 1px solid #e5e5e5;
}

.footer-bottom {
  position: relative;
  padding: 10px 0px;
  background-color: black;
}

.footer-bottom .bottom-inner p {
  font-size: 16px;
  line-height: 26px;
  color: white;
  text-align: center;
}

.footer-bottom .bottom-inner p a {
  display: inline-block;
  font-weight: 600;
}

.footer-bottom .bottom-inner p a:hover {
  text-decoration: underline;
}

.main-footer .social-links {
  position: relative;
  display: flex;
  align-items: center;
}

.main-footer .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.main-footer .social-links li:last-child {
  margin: 0px !important;
}

.main-footer .social-links li a {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 45px;
  background: #c9ab0a;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-white);
}

.main-footer .social-links li a:hover {
  color: #fff;
}

.dark_home .main-footer {
  background: transparent;
}

.dark_home .main-footer .widget-title h3 {
  color: #fff;
}

.dark_home .main-footer .links-widget .links-list li a {
  color: #fff;
}

.dark_home .main-footer .logo-widget .widget-content,
.dark_home .main-footer .logo-widget .widget-content .scanner-box {
  background: linear-gradient(
    110.34deg,
    rgba(255, 255, 255, 0.175) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 0px;
}

.dark_home .main-footer .logo-widget .widget-content p {
  color: #fff;
}

.dark_home .main-footer .footer-card li h4 {
  color: #fff;
}

.dark_home .main-footer .widget-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark_home .footer-bottom .bottom-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.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;
}
/** main-header **/

.main-header {
  position: relative;
}

.main-header .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top {
  position: relative;
  background: #131615;
  padding: 9px 0px;
}

.header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .option-block {
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .top-inner .support-box {
  position: relative;
  display: block;
  padding-left: 37px;
}

.header-top .top-inner .support-box .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 28px;
}

.header-top .top-inner .support-box a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
}

.header-top .top-inner .theme-btn.btn-one {
  padding: 0px 20px 2px 20px;
  border-radius: 6px;
}

.header-top .top-inner .theme-btn.btn-one:hover {
  color: var(--secondary-color) !important;
}

.header-top .top-inner .theme-btn.btn-one:before,
.header-top .top-inner .theme-btn.btn-one:after {
  background: #fff;
}

.header-top .top-inner .theme-btn.btn-two {
  padding: 0px 20px;
  border-radius: 6px;
}

.header-style-one .menu-area {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style-one .main-menu .navigation > li > a {
  border: 1px solid var(--secondary-color);
  border-radius: 40px;
  padding: 2px 20px;
}

.header-style-one .header-lower .logo-box {
  padding: 20px 0px;
}

.header-style-one .main-menu .navigation > li {
  margin: 0px 10px;
}

.header-bottom .bottom-inner {
  position: relative;
  display: block;
  background: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 7px 60px;
}

.header-bottom .bottom-inner .stock-list {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  -moz-animation: scroll-left 1000s linear infinite;
  -webkit-animation: scroll-left 1000s linear infinite;
  animation: scroll-left 1000s linear infinite;
}

.header-bottom .bottom-inner .inner-box {
  position: relative;
  overflow: hidden;
}

@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(0%);
  }
  100% {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}

.header-bottom .bottom-inner .stock-list li {
  position: relative;
  display: inline-block;
  margin-right: 60px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.header-bottom .bottom-inner .stock-list li:last-child {
  margin-right: 0px;
}

.header-bottom .bottom-inner .stock-list li span {
  position: relative;
  display: inline-block;
  color: #858585;
}

.header-bottom .bottom-inner .stock-list li span i {
  position: relative;
  display: inline-block;
  font-size: 6px;
  top: -2px;
}

.header-bottom .bottom-inner .stock-list li.upper span i {
  color: #21b948;
}

.header-bottom .bottom-inner .stock-list li.lower span i {
  color: #fb0007;
}

.main-header .search-btn .search-toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--secondary-color);
  transition: all 500ms ease;
}

.main-header .search-btn .search-toggler:hover {
}

.header-style-one .sticky-header .logo-box {
  padding: 10px 0px;
}

/** main-menu **/

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  margin: 0px;
}

.main-menu .navigation > li {
  position: inherit;
  float: left;
  z-index: 2;
  margin: 0px 19px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li:last-child {
  margin-right: 0px !important;
}

.main-menu .navigation > li:first-child {
  margin-left: 0px !important;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  padding: 30px 0px;
  font-weight: 500;
  font-family: var(--title-font);
  opacity: 1;
  color: white;
  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.1);
  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.1);
  border-radius: 10px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 30px;
  height: 100%;
  left: -30px;
  top: 0px;
}

.main-menu .navigation > li > ul > li > ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 0px;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  font-family: var(--title-font);
  color: var(--title-color);
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
  letter-spacing: 1px;
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--theme-color);
  display: none;
}

.mobile-menu .nav-logo img {
  max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
  margin-bottom: 0px;
}

/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu {
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
  margin-bottom: 10px;
}

/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 50px 25px;
  text-align: left;
}

.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.7;
  visibility: visible;
  right: 100%;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #141417;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
  color: black;
}

.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.1);
  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.8);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.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;
  gap: 20px;
}

.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.1);
}

.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: #000000;
  position: fixed; /* ✅ Make header fixed */
  top: 0; /* ✅ Stick to the very top */
  left: 0;
  right: 0;
  z-index: 9999; /* ✅ Keep it above all other elements */
  width: 100%; /* ✅ Full width */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* ✅ Optional: adds a soft shadow */
  transition: all 0.3s ease-in-out; /* ✅ Smooth transition on scroll */
}

/** header-style-five **/

.header-style-five .header-top .top-inner .support-box .icon-box {
  color: #fff;
}

/** platform-section **/

.platform-section {
  position: relative;
  background: #191919;
}

.platform-section .content-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 51px 60px 50px 60px;
  overflow: hidden;
}

.platform-section .content-box h2 {
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.platform-section .content-box p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 55px;
}

.platform-section .content-box .image-box {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.platform-section .tab-btns {
  position: relative;
  display: block;
  transform: rotate(-90deg);
  top: 61px;
  z-index: 1;
}

.platform-section .tab-btns li {
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 40px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  background: #fff;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 43.5px 30px;
  min-width: 477px;
}

.platform-section .tab-btns li:last-child {
  margin-bottom: 0px;
}

.platform-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.1;
}

.dark_home .platform-section {
  background: transparent;
}

.dark_home .platform-section .content-box {
  background: linear-gradient(
    110.34deg,
    rgba(255, 255, 255, 0.175) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.dark_home .platform-section .content-box h2 {
  color: #fff;
}

.dark_home .platform-section .content-box p {
  color: rgba(255, 255, 255, 0.8);
}

.dark_home .platform-section .tab-btns li {
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.175) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.platform-section.alternat-2 {
  background: transparent;
}

.platform-section.alternat-2 .content-box {
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.platform-section.alternat-2 .tab-btns li {
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

/** 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 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.8);
}

.dark_home .process-block-one:last-child .inner-box {
  margin-bottom: 0px;
}

.image_block_one .image-box {
  position: relative;
  display: block;
}

.image_block_one .image-box .image-2 {
  border-radius: 10px;
}

.image_block_one .image-box .image-2 img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
}

.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.1);
  border-radius: 10px;
  padding: 22px 22px 15px 22px;
  overflow: hidden;
}

.image_block_one .image-box .content-one .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
}

.image_block_one .image-box .content-one span {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 32px;
}

.image_block_one .image-box .content-one h3 {
  font-size: 21px;
  line-height: 31px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
}

.image_block_one .image-box .content-one p {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.process-section .pattern-layer {
  position: absolute;
  left: 0px;
  bottom: -200px;
  width: 1026px;
  height: 1750px;
  background-repeat: no-repeat;
  opacity: 0.8;
}

/** process-style-two **/

.process-style-two {
  position: relative;
}

.process-style-two .image_block_one .image-box .content-one {
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
}

.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);
}

/** subscribe-section **/

.subscribe-section {
  position: relative;
}

.subscribe-section .bg-color {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  background: #f7f7f7;
}

.subscribe-section .inner-container {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 45px 60px;
}

.subscribe-section h2 {
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  font-weight: 500;
}

.subscribe-section .form-inner .form-group {
  position: relative;
  margin-bottom: 0px;
  padding-right: 167px;
}

.subscribe-section .form-inner .form-group input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  color: var(--text-color);
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.subscribe-section .form-inner .form-group button[type="submit"] {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 157px;
  background: var(--secondary-color);
  padding-left: 20px;
  padding-right: 20px;
}

.subscribe-section .form-inner .form-group button[type="submit"]:before,
.subscribe-section .form-inner .form-group button[type="submit"]:after {
  background: #fff;
}

.subscribe-section .form-inner .form-group button i {
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
}

.subscribe-section .form-inner .form-group button[type="submit"]:hover {
  color: var(--theme-color) !important;
}

.subscribe-section .inner-container .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
}

.dark_home .subscribe-section .inner-container {
  background: linear-gradient(
    110.34deg,
    rgba(255, 255, 255, 0.175) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.dark_home .subscribe-section .form-inner .form-group button[type="submit"] {
  background: var(--theme-color-2);
}

.dark_home
  .subscribe-section
  .form-inner
  .form-group
  button[type="submit"]:hover {
  color: var(--theme-color-2) !important;
}

.testimonial-section {
  position: relative;
}

.testimonial-section .testimonial-content {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.testimonial-section .testimonial-content h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  margin-bottom: 28px;
}

.testimonial-section .testimonial-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.testimonial-section .testimonial-content h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.testimonial-section .testimonial-content .designation {
  position: relative;
  display: block;
}

.testimonial-section .dots-style-one .owl-dots button {
  background: #d9d9d9;
}

.testimonial-section .dots-style-one .owl-dots button.active,
.testimonial-section .dots-style-one .owl-dots button:hover {
}

.testimonial-section .dots-style-one .owl-dots {
  margin-top: 40px;
}

.testimonial-section .inner-container {
  position: relative;
}

.testimonial-section .inner-container .thumb-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.testimonial-section .inner-container .thumb-box .thumb {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
}

.testimonial-section .inner-container .thumb-box .thumb img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-section .inner-container .thumb-box .thumb-1 {
  left: 105px;
  top: 0px;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.testimonial-section .inner-container .thumb-box .thumb-2 {
  left: 0px;
  top: 135px;
  -webkit-animation: zoom-fade 2s infinite linear;
  animation: zoom-fade 2s infinite linear;
}

.testimonial-section .inner-container .thumb-box .thumb-3 {
  left: 50px;
  bottom: -10px;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.testimonial-section .inner-container .thumb-box .thumb-4 {
  left: 210px;
  top: 200px;
  -webkit-animation: zoom-fade 2s infinite linear;
  animation: zoom-fade 2s infinite linear;
}

.testimonial-section .inner-container .thumb-box .thumb-5 {
  top: 0px;
  right: 85px;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.testimonial-section .inner-container .thumb-box .thumb-6 {
  top: 120px;
  right: 0px;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.testimonial-section .inner-container .thumb-box .thumb-7 {
  bottom: 0px;
  right: 12px;
  -webkit-animation: zoom-fade 3s infinite linear;
  animation: zoom-fade 3s infinite linear;
}

.testimonial-section .inner-container .thumb-box .thumb-8 {
  bottom: 10px;
  right: 170px;
  -webkit-animation: zoom-fade 3s infinite linear;
  animation: zoom-fade 3s infinite linear;
}

/** testimonial-style-two **/

.testimonial-style-two {
  position: relative;
  background-color: #000000;
}

.testimonial-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-bottom: 20px;
  min-height: 315px;
}

.testimonial-block-one .inner-box .clients-logo {
  position: relative;
  display: block;
  min-height: 38px;
  margin-bottom: 16px;
}

.testimonial-block-one .inner-box .rating {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  margin-top: 10px;
}

.testimonial-block-one .inner-box .rating li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #ffc844;
  margin-right: 7px;
}

.testimonial-block-one .inner-box .rating li:last-child {
  margin: 0px !important;
}

.testimonial-block-one .inner-box p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  font-style: italic;
}

.testimonial-block-one .inner-box .author-box {
  position: relative;
  display: block;
  padding: 4px 0px 4px 0px;
}

.testimonial-block-one .inner-box .author-box .author-thumb {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: 0px;
  top: 0px;
}

.testimonial-block-one .inner-box .author-box .author-thumb img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.testimonial-block-one .inner-box .author-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

/** trading-section **/

.trading-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
}
.trading-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/resource/account-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.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;
  background: #000000;
}

.trading-section .inner-container .trading-block-one:last-child .inner-box {
  border-right: none;
}

.trading-block-one .inner-box:hover {
  background: rgb(2 26 46);
}

.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;
  color: white;
}

.trading-block-one .inner-box h3 a {
  display: inline-block;
  color: white;
}

.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;
  color: white;
}

.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: 0;
  left: 0;
  bottom: 0px;
  transition: all 500ms ease;
}

.trading-block-one .inner-box .image-box img {
  height: 12rem;
  width: 85%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.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;
}

.upper .trading-block-three .inner-box .icon-box {
  color: #22823a;
}

.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;
}

.upper .trading-block-three .inner-box .icon-box:before {
  background: green;
}

.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.1);
}

.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.1);
}

.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);
}

.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.8);
}

.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;
  background-color: #22823a;
}

.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: 700px;
  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;
  color: #22823a;
}

.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;
}

@media (min-width: 768px) {
  .language-picker-container.language-mobile {
    display: none;
  }
}

/** 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;
  }
  .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;
  }
  .trading-style-six .tab-btns li {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section .inner-container .thumb-box {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section {
    padding: 70px 0px;
  }
  .testimonial-section .dots-style-one .owl-dots {
    display: none;
  }
  .testimonial-style-two {
    padding: 70px 0px 40px 0px;
  }
  .testimonial-style-two.pt_0 {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .subscribe-section h2 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 599px) {
  .subscribe-section .inner-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 499px) {
  .subscribe-section .form-inner .form-group {
    padding-right: 0px;
  }
  .subscribe-section .form-inner .form-group button[type="submit"] {
    position: relative;
    width: 100%;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .process-section .inner-container {
    padding-bottom: 100px;
  }
  .image_block_one .image-box {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .process-section .inner-container {
    padding: 70px 0px;
  }
  .process-section.pt_100.pb_100 {
    padding: 70px 0px;
  }
  .process-style-two {
    padding: 50px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px) {
  .process-section .image-box .image {
    position: relative;
    bottom: 0px;
    margin: 30px 0px;
  }
  .image_block_one .image-box .content-one {
    position: relative;
    top: 0px;
    width: 100%;
  }
  .image_block_one .image-box {
    padding: 0px;
  }
  .image_block_one .image-box .image-1 {
    max-width: 312px;
    margin: 0 auto;
  }
  .image_block_one .image-box .image-2 {
    position: relative;
    bottom: 0px;
    margin: 30px 0px;
  }
}
@media only screen and (max-width: 1200px) {
  .platform-section .tab-btns {
    top: 0px;
    transform: rotate(0deg);
    margin-top: 30px;
  }

  .platform-section .tab-btns li {
    min-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .platform-section .content-box .image-box {
    display: none;
  }

  .platform-section {
    padding: 70px 0px;
  }

  .platform-section.pt_0 {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 599px) {
  .platform-section .content-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@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: 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 .btn-box {
    display: none;
  }
}

@media only screen and (max-width: 499px) {
  .header-style-one .header-lower .logo-box img,
  .header-style-five .header-lower .logo-box img {
    width: 55%;
  }
  .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;
  }
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .main-footer .logo-widget {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-widget {
    margin: 0px 0px 30px 0px !important;
  }
  .main-footer .footer-lower {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .main-footer .widget-section {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .main-footer .footer-lower {
    display: block;
  }
  .main-footer .footer-card {
    margin-top: 20px;
  }
  .footer-bottom .bottom-inner {
    display: block;
    text-align: center;
  }
  .main-footer .social-links {
    justify-content: center;
    margin-top: 15px;
  }
  .main-footer .footer-card li {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 499px) {
  .main-footer .logo-widget .widget-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.footer-content p {
  font-size: 14px;
}

@media only screen and (max-width: 991px) {
  .experience-section .content-box {
    margin-bottom: 30px;
  }
  .experience-section .inner-container .shape {
    display: none;
  }
  .experience-style-two .sec-title {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .experience-style-two .lower-box .single-item {
    margin-bottom: 30px;
  }
  .experience-style-two .inner-container {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .experience-section .inner-container {
    padding: 70px 30px 35px 30px;
  }
  .experience-section .inner-box .single-item {
    margin-bottom: 30px;
  }
  .experience-style-two .inner-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .content_block_five .content-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 20px 70px 10px rgba(0, 0, 0, 0.1);
  }
  .content_block_five .content-box .shape,
  .content_block_five .content-box .shape-2 {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .content_block_five .content-box,
  .content_block_six .content-box {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .banner-style-four .image-box {
    margin-left: 0px;
  }
  .banner-style-four .shape {
    display: none;
  }
  .banner-style-five .banner-carousel .image-box {
    margin-left: 0px;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .header-style-five .logo-box {
    padding: 0;
  }

  .language-picker-container.language-mobile {
    display: block;
  }

  .banner-carousel .content-box h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .banner-carousel .slide-item {
    padding: 100px 30px;
  }
  .banner-style-two .slide-item {
    padding: 150px 0px 50px 0px;
  }
  .banner-style-two .shape {
    background-size: cover;
    background-position: center;
  }
  .banner-style-three {
    padding: 70px 0px;
  }
  .content_block_six .content-box h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .banner-style-five .banner-carousel .slide-item {
    padding: 90px 0px 110px 0px;
  }
}

@media only screen and (max-width: 599px) {
  .content_block_five .content-box .form-inner {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 499px) {
  .banner-carousel .slide-item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .banner-style-two .slide-item {
    padding: 150px 0px 50px 0px;
  }
  .content_block_six .content-box .btn-box,
  .banner-style-five .banner-carousel .content-box .btn-box {
    display: block;
  }
  .content_block_six .content-box .btn-box .theme-btn.btn-one,
  .banner-style-five .banner-carousel .content-box .btn-box .theme-btn.btn-one {
    margin: 0px 0px 15px 0px !important;
  }
}

@media only screen and (max-width: 767px) {
  .award-section {
    padding: 70px 0px;
  }
  .award-section.pt_70 {
    padding-top: 40px;
  }
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .apps-section .inner-container .image-layer img {
    width: 50%;
    float: right;
  }
  .apps-style-two .image-layer {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .trading-block-one.last {
    display: none;
  }

  .trading-style-six .tab-btns li {
    font-size: 15px;
    line-height: 28px;
    padding: 8px 25px;
  }

  .image-column .image-box {
    max-width: 400px;
    margin: 20px auto;
  }

  .banner-style-two .slide-item {
    padding: 170px 0px 70px 0px;
  }

  .banner-carousel .content-box h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .mobile-menu {
    width: 450px;
  }
}

@media only screen and (max-width: 991px) {
  .content_block_four .content-box {
    margin-left: 0px;
    margin-top: 30px;
  }
  .apps-section .image-layer {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .apps-section .inner-container {
    padding: 70px 30px 55px 30px;
  }
  .content_block_two .content-box .download-list li {
    margin-bottom: 15px;
  }
  .apps-style-two,
  .apps-section.alternat-2 {
    padding: 70px 0px;
  }
}
@media only screen and (max-width: 499px) {
  .content_block_four .content-box .btn-box {
    display: block;
  }
  .content_block_four .content-box .btn-box a {
    margin: 0px 0px 20px 0px !important;
  }
  .content_block_four .content-box .btn-box a:last-child {
    margin: 0px !important;
  }
}

@media only screen and (max-width: 991px) {
  .account-block.pt_75 {
    padding-top: 0px;
  }
  .content_block_eight .content-box {
    margin-left: 0px;
  }
  .content_block_eight .content-box.mr_60 {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .feature-account .inner-container .single-item {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .account-section {
    padding: 70px 0px 40px 0px;
  }
  .account-style-two {
    padding: 110px 0px 80px 0px;
  }
  .account-style-three {
    padding: 70px 0px;
  }
  .account-style-two.clear-bg {
    padding: 50px 0px 40px 0px;
  }
  .feature-account {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px) {
  .feature-account .inner-container .single-item {
    width: 100%;
    border: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .content_block_one .content-box {
    margin-right: 0px;
    margin-bottom: 40px;
  }
  .video_block_one .video-box {
    margin-left: 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;
  }
}
