* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}


:root {
  --text-color: #6d7270;
  --title-color: #090f0d;
  --text-font: 'Instrument Sans', sans-serif;
  --title-font: 'Be Vietnam Pro', 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: 1550px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid {
  padding: 0px;
}

.auto-container {
  position: static;
  max-width: 1200px;
  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;
}

.owl-nav {
  display: none;
}

input,
button,
select,
textarea {
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 16px;
  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: #827e7d;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  margin: 0px;
  transition: all 500ms ease;
}

/* 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: 10px;
  }
}


/* .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: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/** button **/


.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  text-align: center;
  padding: 15px 33px;
  border-radius: 40px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn.btn-one {
  color: #fff;
  background: var(--theme-color);
}

.theme-btn.btn-two {
  color: var(--theme-color);
  background: #fff;
}

.theme-btn.btn-one:hover {
  background: #132720;
  color: #fff;
}

.theme-btn.btn-two:hover {
  background: #132720;
  color: #fff;
}

.theme-btn:before {
  position: absolute;
  content: '';
  background: #132720;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn:hover:before {
  transform: scale(1, 1);
}

.theme-btn span {
  position: relative;
  padding-left: 28px;
}

.theme-btn span:before {
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 22px;
  left: 0px;
  top: -3px;
  font-weight: 400;
}

.theme-btn.btn-two {
  color: var(--title-color);
  border: 2px solid var(--theme-color);
  padding-top: 13px;
  padding-bottom: 13px;
}

.theme-btn.btn-two:hover {
  color: #fff;
  background: var(--theme-color);
}

.theme-btn.btn-two:before {
  background: var(--theme-color);
}

.dashboard-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  line-height: 9px;
  font-weight: 700;
  font-family: var(--title-font);
  text-align: center;
  padding: 15px 33px;
  border-radius: 40px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}

.dashboard-btn.btn-three {
  color: #fff;
  background: var(--theme-color);
}

.dashboard-btn.btn-three:hover {
  background: #132720;
  color: #fff;
}

.dashboard-btn:before {
  position: absolute;
  content: '';
  background: #132720;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}

.dashboard-btn:hover:before {
  transform: scale(1, 1);
}

.dashboard-btn span {
  position: relative;
  padding-left: 28px;
}

.dashboard-btn span:before {
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 20px;
  left: 0px;
  top: 4px;
  font-weight: 400;
}

.row {
  --bs-gutter-x: 30px;
}

.pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.pagination li:last-child {
  margin: 0px !important;
}

.pagination li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  height: 40px;
  width: 60px;
  line-height: 40px;
  border: 1px solid #dbe5e2;
  font-family: var(--title-font);
  text-align: center;
  color: #6d7270;
  border-radius: 40px;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current {
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.pagination li a i {
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: var(--title-color);
  top: 3px;
}

.pagination li:first-child a,
.pagination li:last-child a {
  background: #e2edea;
  border-color: #e2edea;
}

.sec-pad {
  padding: 50px 0px 50px 0px;
}

.mr-0 {
  margin: 0px !important;
}

.scroll-top {
  width: 54px;
  height: 64px;
  line-height: 70px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 30px;
  z-index: 99;
  color: #fff;
  background: var(--theme-color);
  text-align: center;
  border-radius: 40px;
  cursor: pointer;
  transition: 1s ease;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10) !important;
}

.scroll-top.open {
  bottom: 30px;
}



.sec-title {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.sec-title h6 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 32px;
  margin-bottom: 12px;
}

.sec-title h6:before {
  position: absolute;
  content: "\f131";
  font-family: 'flaticon';
  font-size: 24px;
  left: 0px;
  top: -1px;
  color: var(--theme-color);
  font-weight: 400;
}

.sec-title h5 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #ffffff;
}

.sec-title h5:before {
  position: absolute;
  content: "\f131";
  font-family: 'flaticon';
  font-size: 24px;
  left: 0px;
  top: -1px;
  color: #ffffff;
  font-weight: 400;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 35px;
}

.sec-title.light h6,
.sec-title.light h2 {
  color: #fff;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}



/** main-header **/

.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/** header-top **/

.header-top .outer-container {
  position: relative;
  width: 100%;
  padding: 8px 80px;
  border-bottom: 1px solid #dbe5e2;
}

.header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .left-column {
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .left-column .login-box {
  position: relative;
  display: block;
  padding-left: 45px;
  margin-right: 60px;
}

.header-top .left-column .login-box:before {
  position: absolute;
  content: '';
  background: #dbe5e2;
  width: 1px;
  height: 36px;
  top: 7px;
  right: -30px;
}

.header-top .left-column .login-box .icon-box {
  position: absolute;
  left: 0px;
  top: 7px;
}

.header-top .left-column .login-box h5 {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.header-top .left-column .login-box h5 a {
  display: inline-block;
  color: var(--title-color);
}

.header-top .left-column .login-box h5 a:hover {
  color: var(--theme-color);
}

.header-top .left-column .login-box h5 span {
  color: #a5b2af;
}

.header-top .left-column .login-box h6 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.header-top .left-column .login-box h6 a {
  display: inline-block;
  color: var(--title-color);
}

.header-top .left-column .login-box h6 a:hover {
  color: var(--theme-color);
}

.main-header .language-box {
  position: relative;
  padding-left: 30px;
}

.main-header .language-box .icon-box {
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: var(--title-color);
}

.main-header .language-box .nice-select {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  padding: 0px;
  padding-right: 23px;
  text-transform: capitalize;
}

.main-header .language-box .nice-select .list {
  min-width: 60px;
}

.main-header .language-box .nice-select:before {
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 20px;
  top: 1px;
  right: 0px;
  color: #a6b3b0;
}

.header-top .text-box {
  position: relative;
  display: block;
  padding-left: 38px;
}

.header-top .text-box .icon-box {
  position: absolute;
  left: 0px;
  top: 2px;
}

.header-top .text-box h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.header-top .text-box h6 span {
  font-weight: 600;
}

.header-top .right-column {
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .right-column .search-box {
  position: relative;
  width: 100px;
  margin-right: 60px;
}

.header-top .right-column .search-box .form-group {
  position: relative;
  margin: 0px;
}

.header-top .right-column .search-box .form-group input[type='search'] {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  height: 26px;
  font-family: var(--title-font);
  color: #a5b2af;
  font-weight: 600;
  padding-right: 25px;
}

.header-top .right-column .search-box .form-group button[type='submit'] {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.header-top .right-column .search-box .form-group input:focus+button,
.header-top .right-column .search-box .form-group button:hover {
  color: var(--theme-color);
}

.header-top .right-column .search-box:before {
  position: absolute;
  content: '';
  background: #dbe5e2;
  width: 1px;
  height: 36px;
  top: -5px;
  right: -30px;
}

.header-top .right-column .mail-box {
  position: relative;
  padding-left: 46px;
}

.header-top .right-column .mail-box .icon-box {
  position: absolute;
  left: 0px;
  top: 7px;
}

.header-top .right-column .mail-box h5 {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.header-top .right-column .mail-box h6 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.header-top .right-column .mail-box h6 a {
  position: relative;
  display: inline-block;
  color: var(--title-color);
}

.header-top .right-column .mail-box h6 a:hover {
  color: var(--theme-color);
}

.main-header .header-lower {
  position: relative;
}

.main-header .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 80px;
}

.main-header .outer-box .logo-box {
  padding: 18px 0px;
}

.main-header .menu-right-content {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header .menu-right-content .link-box {
  position: relative;
  padding-left: 70px;
}

.main-header .menu-right-content .link-box .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 54px;
  height: 40px;
  line-height: 44px;
  background: #132720;
  text-align: center;
  border-radius: 30px;
  font-size: 20px;
  color: #fff;
}

.main-header .menu-right-content .link-box h6 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-header .menu-right-content .link-box h6 a {
  position: relative;
  display: inline-block;
  color: var(--title-color);
  padding-right: 26px;
}

.main-header .menu-right-content .link-box h6 a:hover {
  color: var(--theme-color);
}

.main-header .menu-right-content .link-box h6 a i {
  position: absolute;
  right: 0px;
  bottom: -3px;
  color: var(--theme-color);
  font-size: 20px;
}



/** main-menu **/

.main-menu {
  float: left;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  margin: 0px;
}

.main-menu .navigation>li {
  position: inherit;
  float: left;
  margin: 0px 21px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
  margin-left: 0px !important;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  padding: 25px 0px;
  font-weight: 600;
  font-family: var(--title-font);
  opacity: 1;
  color: var(--title-color);
  z-index: 1;
  text-transform: capitalize;
  -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.dropdown>a {
  padding-right: 25px;
}

.main-menu .navigation>li.dropdown>a:before {
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 20px;
  top: 27px;
  right: 0px;
  color: var(--theme-color);
  font-weight: 400;
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 240px;
  margin-top: 20px;
  z-index: 100;
  background: #fff;
  display: none;
  opacity: 0;
  padding: 10px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  visibility: hidden;
  border-radius: 8px;
  border-top: 5px solid var(--theme-color);
  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:before,
.main-menu .navigation>li>.megamenu:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 10px;
  left: 0px;
  top: -10px;
  background: transparent;
}

.main-menu .navigation>li>.megamenu {
  background: #212226;
}

.main-menu .navigation>li>.megamenu a {
  display: inline-block !important;
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
  padding: 0px 30px;
}

.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>.megamenu li>a {
  position: relative;
  display: block;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--text-font);
  color: #6d7270;
  text-align: left;
  padding: 14px 0px;
  text-transform: capitalize;
  transition: all 500ms ease;
  border-bottom: 1px solid #dbe5e2;
  -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:last-child a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>a:before {
  position: absolute;
  content: '^';
  left: 0px;
  color: var(--theme-color);
  font-size: 30px;
  top: 22px;
  opacity: 0;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a:hover:before {
  opacity: 1;
}

.main-menu .navigation>li>.megamenu li>a {
  padding-left: 0px;
  padding-right: 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 {
  color: var(--theme-color);
  padding-left: 20px;
}

.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 6 Free';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  color: #b9b7b6;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  margin-top: 15px;
  margin-left: 10px;
  width: 240px;
  z-index: 100;
  display: none;
  border-radius: 8px;
  padding: 10px 0px;
  border-top: 5px solid var(--theme-color);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  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: '';
  left: -10px;
  top: 0px;
  width: 10px;
  height: 100%;
}

.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%;
  padding: 0px 30px;
  padding-right: 0px;
}

.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;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--text-font);
  color: #6d7270;
  text-align: left;
  padding: 14px 0px;
  border-bottom: 1px solid #dbe5e2;
  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 {
  color: var(--theme-color);
  padding-left: 20px;
}

.main-menu .navigation>li>ul>li>ul>li>a:before {
  position: absolute;
  content: '^';
  left: 0px;
  color: var(--theme-color);
  font-size: 30px;
  top: 22px;
  opacity: 0;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover:before {
  opacity: 1;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.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.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;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #1c1c1c;
  -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.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #0a0807;
  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: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
  display: none;
}

.mobile-menu .social-links {
  position: relative;
  padding: 0px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

div#mCSB_1_container {
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 30px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
  color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0px;
}

.main-header .outer-box {
  position: relative;
}

.nice-select {
  position: relative;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px;
  color: #d4c0cd;
  padding-right: 21px;
  height: auto;
  line-height: 28px;
}

.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);
}

.special-text {
  font-family: 'Carattere', cursive;
}



/** banner-section **/

.banner-section {
  position: relative;
  background: #e2edea;
  /* height: 500px; */
}

.banner-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: calc(50% + 350px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-carousel .slide-item {
  position: relative;
}

.banner-section .content-box {
  padding: 173px 0px 180px 0px;
}

.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 .content-box {
  position: relative;
  width: 100%;
  z-index: 5;
}

.banner-carousel .content-box h6 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: var(--theme-color);
  text-transform: uppercase;
  margin-bottom: 11px;
  /* padding-left: 30px; */
  opacity: 0;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -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 .content-box h6:before {
  position: absolute;
  content: '';
  /* background-image: url(../images/icons/icon-4.png); */
  width: 20px;
  height: 12px;
  left: 0px;
  top: 7px;
  background-repeat: no-repeat;
}

.banner-carousel .active .content-box h6 {
  opacity: 1;
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box h2 {
  position: relative;
  display: block;
  font-size: 32px;
  margin-top: 40px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 35px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -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-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box .btn-box {
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -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-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box .btn-box .theme-btn:hover {
  background: #fff;
  color: var(--title-color);
}

.banner-carousel .content-box .btn-box .theme-btn:hover:before {
  background: #fff;
}

.banner-section .image-box {
  position: relative;
  display: block;
  margin-left: 35px;
}

.banner-section .image-box .image {
  position: relative;
  display: block;
  border-radius: 0px 0px 10px 10px;
}

.banner-section .image-box .image img {
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  /* height: 500px; */

}

.banner-section .image-box .text-box {
  position: absolute;
  left: -135px;
  bottom: 60px;
  max-width: 470px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 29px 40px 28px 35px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -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-section .active .image-box .text-box {
  opacity: 1;
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.owl-carousel .owl-nav span {
  font-family: 'flaticon';
}

.banner-section .banner-carousel .owl-dots {
  position: absolute;
  right: 80px;
  bottom: 60px;
  counter-reset: slides-num;
  min-height: 30px;
  min-width: 51px;
}

.banner-section .banner-carousel .owl-dots::after {
  position: absolute;
  right: 0px;
  top: 5px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 16px;
  color: #a5b2af;
  font-weight: 600;
  font-family: var(--title-font);
}

.banner-section .banner-carousel .owl-dots:before {
  position: absolute;
  content: '';
  right: 28px;
  top: 18px;
  width: 5px;
  height: 2px;
  background: #a5b2af;
}

.banner-section .banner-carousel .owl-dots button span {
  display: none !important;
}

.banner-section .banner-carousel .owl-dots button {
  position: absolute;
  top: 0px;
  left: 0px;
  counter-increment: slides-num;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
}

.banner-section .banner-carousel .owl-dots button.active:before {
  position: absolute;
  content: counter(slides-num);
}

.banner-section .banner-carousel .owl-dots button.active:after {
  position: absolute;
  content: '0';
  top: 0px;
  right: 0px;
}

/** funding-section **/

.funding-section {
  position: relative;
  padding: 60px 0px 60px 0px;
}

.funding-section .sec-title .icon-box {
  position: absolute;
  right: 0px;
  bottom: 6px;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 82px;
  background: var(--theme-color);
  text-align: center;
  border-radius: 50%;
  font-size: 40px;
  color: #fff;
}

.funding-section .sec-title .shape {
  position: absolute;
  right: 105px;
  bottom: 5px;
  width: 340px;
  height: 50px;
  background-repeat: no-repeat;
}

/** pairs-section **/

.pairs-section {
  position: relative;
}

.pairs-section .inner-container {
  position: relative;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

.pairs-block-one {
  position: relative;
  display: block;
  background: #ffffffbf;
  /* background: #a3a3a370; */
  padding: 26px 30px 23px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
  border-top: 5px solid #e11631;
}

.pairs-block-one .inner-box {
  position: relative;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
}

.pairs-block-one .inner-box .left-column {
  position: relative;
  display: block;
  padding-left: 50px;
}

.pairs-block-one .inner-box .left-column .icon-box {
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 5px;
  width: 30px;
  height: 42px;
  line-height: 46px;
  font-size: 20px;
  background: #e2edea;
  text-align: center;
  border-radius: 40px;
  color: #54b764;
}

.pairs-block-one.red-block .inner-box .left-column .icon-box {
  color: red;
}

.pairs-block-one .inner-box .left-column .list-item {
  margin-bottom: 3px;
}

.pairs-block-one .inner-box .left-column .list-item li {
  position: relative;
  display: inline-block;
  float: left;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 10px;
}

.pairs-block-one .inner-box .left-column .list-item li:last-child {
  margin: 0px !important;
}

.pairs-block-one .inner-box .left-column .list-item li i {
  position: relative;
  font-size: 20px;
  color: #a5b2af;
  top: 2px;
}

.pairs-block-one .inner-box .left-column .currency {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
}

.pairs-block-one .inner-box .right-column {
  position: relative;
  display: flex;
  align-items: center;
}

.pairs-block-one .inner-box .right-column .text {
  margin-right: 40px;
  text-align: right;
}

.pairs-block-one .inner-box .right-column .currency-rate {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0px;
  color: var(--theme-color);
  margin-bottom: 7px;
}

.pairs-block-one.red-block .inner-box .right-column .currency-rate {
  color: red;
}

.pairs-block-one .inner-box .right-column .sell {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
}

.pairs-block-one .inner-box .right-column .theme-btn {
  border: 2px solid var(--theme-color);
  color: var(--title-color);
  padding: 7px 24px;
}

.pairs-block-one .inner-box .right-column .theme-btn:hover {
  color: #fff;
  background: var(--theme-color);
}

.pairs-block-one .inner-box .right-column .theme-btn:before {
  background: var(--theme-color);
}

.pairs-section .more-btn {
  padding-top: 40px;
}

.pairs-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation: service_hexagon_2 15s infinite linear;
  -moz-animation: service_hexagon_2 15s infinite linear;
  -o-animation: service_hexagon_2 15s infinite linear;
  animation: service_hexagon_2 15s infinite linear;
}

.pairs-section .image-layer .image-1 {
  position: absolute;
  left: 0px;
  bottom: 235px;
}

.pairs-section .image-layer .image-2 {
  position: absolute;
  right: 0px;
  bottom: 270px;
}

/** news-section **/

.news-section {
  position: relative;
  padding: 60px 0px 60px 0px;
}

.news-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 30px;
  height: 500px;
}

.news-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.news-block-one .inner-box .image-box img {
  width: 100%;
  border-radius: 10px;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.news-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding: 18px 10px 10px 10px;
}

.news-block-one .inner-box .lower-content h3 {
  display: block;
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 17px;
  margin-bottom: 19px;
  border-bottom: 1px solid #dbe5e2;
}

.news-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content h3 a:hover {
  color: var(--theme-color);
}

.news-block-one .inner-box .lower-content .post-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}

.news-block-one .inner-box .lower-content .post-info li {
  position: relative;
  margin-right: 34px;
  padding-left: 23px;
  font-size: 16px;
  color: #6d7270;
}

.news-block-one .inner-box .lower-content .post-info li:last-child {
  margin: 0px !important;
}

.news-block-one .inner-box .lower-content .post-info li a {
  display: inline-block;
  color: #6d7270;
}

.news-block-one .inner-box .lower-content .post-info li a:hover {
  color: var(--theme-color);
}

.news-block-one .inner-box .lower-content .post-info li i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 14px;
}

.news-block-one .inner-box .lower-content .post-info li:before {
  position: absolute;
  content: '';
  background: #c2d2cd;
  width: 3px;
  height: 14px;
  right: -18px;
  top: 6px;
  border-radius: 2px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child:before {
  display: none;
}

.news-block-one .inner-box .lower-content .lower-box {
  position: relative;
  display: flex;
  align-items: center;
}

.news-block-one .inner-box .lower-content .lower-box h6 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  color: var(--theme-color);
  border: 1px solid #dbe5e2;
}

.news-block-one .inner-box .lower-content .lower-box a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 40px;
  line-height: 44px;
  font-size: 20px;
  color: var(--title-color);
  border: 1px solid #dbe5e2;
  text-align: center;
  border-radius: 40px;
}

.news-block-one .inner-box .lower-content .lower-box a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
}

/** main-footer **/

.main-footer {
  position: relative;
}

.main-footer .footer-top {
  padding-top: 104px;
}

.main-footer .footer-top .form-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-top .footer-top-content .form-inner form {
  position: relative;
  float: left;
  width: 570px;
  margin-right: 50px;
}

.footer-top .footer-top-content .form-inner .form-group {
  position: relative;
  margin-bottom: 0px;
}

.footer-top .footer-top-content .form-inner .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  font-size: 16px;
  color: #a5b2af;
  padding: 10px 190px 10px 30px;
  transition: all 500ms ease;
}

.footer-top .footer-top-content .form-inner .form-group button[type=submit] {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #fff !important;
}

.footer-top .footer-top-content .form-inner .form-group input:focus {
  border-color: var(--theme-color);
}

.footer-top .footer-top-content .form-inner .form-group button[type=submit]:before {
  display: none;
}

.footer-top .footer-top-content h2 {
  position: relative;
  font-size: 66px;
  line-height: 85px;
  color: #fff;
}

.footer-top .footer-top-content .subscriber-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.footer-top .footer-top-content .subscriber-box .thumb-box {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-right: -12px;
}

.footer-top .footer-top-content .subscriber-box .thumb-box img {
  width: 100%;
  border-radius: 50%;
}

.footer-top .footer-top-content .subscriber-box span {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background: var(--theme-color);
  border: 2px solid #152e25;
  border-radius: 40px;
  text-align: center;
  margin-right: 10px;
}

.footer-top .footer-top-content .lower-box {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-top .footer-top-content .subscriber-box h6 {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.main-footer .widget-section {
  position: relative;
  padding: 75px 0px 95px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.main-footer .logo-widget {
  position: relative;
  margin-top: 8px;
}

.main-footer .logo-widget .footer-logo {
  position: relative;
  margin-bottom: 28px;
}

.main-footer p {
  color: #a5b2af;
}

.main-footer .logo-widget p {
  margin-bottom: 33px;
}

.main-footer .logo-widget .link-box {
  position: relative;
  display: block;
  padding-left: 67px;
}

.main-footer .logo-widget .link-box .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 54px;
  height: 40px;
  line-height: 46px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: var(--theme-color);
  border-radius: 40px;
}

.main-footer .logo-widget .link-box h6 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-footer .logo-widget .link-box h6 a {
  position: relative;
  display: inline-block;
  color: #fff;
  padding-right: 26px;
}

.main-footer .logo-widget .link-box h6 a:hover {
  color: var(--theme-color);
}

.main-footer .logo-widget .link-box h6 a i {
  position: absolute;
  right: 0px;
  bottom: -3px;
  font-size: 20px;
}

.main-footer .widget-title {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.main-footer .widget-title h3 {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}

.main-footer .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.main-footer .links-widget .links-list li a {
  position: relative;
  display: inline-block;
  color: #a5b2af;
  padding-left: 28px;
}

.main-footer .links-widget .links-list li a:hover {
  color: #fff;
}

.main-footer .links-widget .links-list li a:before {
  position: absolute;
  content: '^';
  left: 0px;
  color: #46665b;
  font-size: 30px;
  top: 10px;
  transition: all 500ms ease;
}

.main-footer .links-widget .links-list li a:hover:before {
  color: var(--theme-color);
}

.main-footer .contact-widget {
  text-align: right;
}

.main-footer .contact-widget .social-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 50px;
}

.main-footer .contact-widget .social-links li {
  margin-right: 10px;
}

.main-footer .contact-widget .social-links li:last-child {
  margin: 0px !important;
}

.main-footer .contact-widget .social-links li a {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 40px;
  line-height: 44px;
  background: #fff;
  text-align: center;
  font-size: 20px;
  color: var(--title-color);
  border-radius: 40px;
}

.main-footer .contact-widget .social-links li a:hover {
  color: #fff;
  background: var(--theme-color);
}

.main-footer .contact-widget .download-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.main-footer .contact-widget .download-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .contact-widget .download-list li.app-store a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: 40px;
  padding: 12.5px 38px;
  border: 1px solid #fff;
}

.main-footer .contact-widget .download-list li.app-store a i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  margin-right: 9px;
  top: 5px;
}

.main-footer .contact-widget .download-list li.play-store a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  border-radius: 40px;
  padding: 15px 38px;
  background: #fff;
}

.main-footer .contact-widget .download-list li.play-store a img {
  position: relative;
  display: inline-block;
  margin-right: 9px;
}

.footer-bottom {
  position: relative;
  width: 100%;
  padding: 23px 0px;
}

.footer-bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .bottom-inner p a {
  color: #e11631;
}

.footer-bottom .bottom-inner p a:hover {
  text-decoration: underline;
}

.footer-bottom .bottom-inner .footer-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-bottom .bottom-inner .footer-nav li {
  position: relative;
  display: inline-block;
  margin-right: 23px;
}

.footer-bottom .bottom-inner .footer-nav li:last-child {
  margin: 0px !important;
}

.footer-bottom .bottom-inner .footer-nav li a {
  display: inline-block;
  color: #a5b2af;
}

.footer-bottom .bottom-inner .footer-nav li a:hover {
  color: var(--theme-color);
}

.footer-bottom .bottom-inner .footer-nav li:before {
  position: absolute;
  content: '.';
  font-size: 17px;
  right: -14px;
  bottom: 1px;
  color: #a5b2af;
}

.footer-bottom .bottom-inner .footer-nav li:last-child:before {
  display: none;
}

/** platform-section **/

.platform-section {
  position: relative;
}

.platform-section .image-box {
  position: relative;
  display: block;
  margin-right: 70px;
}

.platform-section .image-box .image {
  position: relative;
  display: block;
}

.platform-section .image-box .image img {
  width: 100%;
}

.platform-section .image-box .text-1 {
  position: absolute;
  left: -60px;
  top: 65px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  padding: 12px 19px;
}

.platform-section .image-box .text-1 h6 {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 28px;
}

.platform-section .image-box .text-1 h6:before {
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  font-size: 18px;
  left: 0px;
  top: 0px;
  font-weight: 400;
  color: var(--theme-color);
}

.platform-section .image-box .text-2 {
  position: absolute;
  right: -40px;
  top: 235px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  padding: 12px 19px;
}

.platform-section .image-box .text-2 h6 {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 28px;
}

.platform-section .image-box .text-2 h6:before {
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  font-size: 18px;
  left: 0px;
  top: 0px;
  font-weight: 400;
  color: var(--theme-color);
}

.platform-section .content-box {
  position: relative;
  display: block;
}

.platform-section .content-box .sec-title {
  margin-bottom: 32px;
}

.platform-section .content-box .text-box p {
  color: #7d7373;
  margin-bottom: 35px;
}

.platform-section .content-box .list-style-three li {
  position: relative;
  display: inline-block;
}

.list-style-three li {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 14px;
  padding-left: 20px;
  padding-right: 24px;
}

.list-style-three li span {
  position: absolute;
  font-size: 16px;
  top: -10px;
  right: 0px;
  color: var(--theme-color);
}

.list-style-three li:last-child {
  margin-bottom: 0px;
}

.list-style-three li:before {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 6px;
  height: 8px;
  left: 0px;
  top: 9px;
}

.list-style-three li:after {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 2px;
  height: 14px;
  left: 2px;
  top: 6px;
}

.platform-section .content-box .list-style-three {
  margin-bottom: 42px;
}

.platform-section .bg-color {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 630px;
  height: 100%;
  background: -webkit-linear-gradient(0deg, #fefcfb 0%, #fdcccd 100%);
}

.platform-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 630px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/** about-style-two **/

.about-style-two {
  position: relative;
  padding: 60px 0px 60px 0px;
}

/** offer-style-two **/

.offers-style-two {
  position: relative;
  padding: 0px 120px;
  z-index: 1;
}

.offers-style-two .outer-container {
  position: relative;
  padding: 183px 0px 120px 0px;
  background: -webkit-linear-gradient(-45deg, #160f0c 50%, #411f0f 100%);
  border-radius: 10px;
}

.offers-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #c5c5c5;
  margin-bottom: 15px;
}

.offers-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;
}

.offers-block-one .inner-box h5 {
  position: absolute;
  left: 30px;
  top: 10px;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color);
  font-weight: 700;
}

.offers-block-one .inner-box .icon-box {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 40px;
  background: -webkit-linear-gradient(0deg, #160f0c 0%, #411f0f 100%);
  margin-bottom: 28px;
}

.offers-block-one .inner-box .icon-box img {
  display: inline-block;
}

.offers-block-one .inner-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 15px;
}

.offers-block-one .inner-box h3 a {
  display: inline-block;
  color: var(--title-color);
}

.offers-block-one .inner-box h3 a:hover {
  color: var(--theme-color);
}

.offers-block-one .inner-box p {
  margin-bottom: 23px;
}

.offers-block-one .inner-box .link a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 40px;
  line-height: 44px;
  background: #fff;
  text-align: center;
  border-radius: 40px;
  font-size: 20px;
  color: var(--title-color);
}

.offers-block-one .inner-box .link a:hover {
  color: #fff;
  background: var(--theme-color);
}

.offers-style-two .owl-dots {
  position: absolute;
  top: -86px;
  right: 42px;
}

.offers-style-two .owl-nav {
  position: absolute;
  top: -84px;
  right: -12px;
  width: 194px;
}

.offers-style-two .nav-style-one .owl-nav button {
  position: absolute;
  top: 0px;
}

.offers-style-two .owl-nav button.owl-prev {
  left: 0px;
}

.offers-style-two .owl-nav button.owl-next {
  right: 0px;
}

.offers-style-two .owl-dots .owl-dot {
  background: rgba(255, 255, 255, 0.25);
}

.offers-style-two .owl-item:nth-child(even) {
  margin-top: 40px;
}

.pricing-style-two.bg-color-7 .tab-btns li {
  background: #e9ded9;
}

.pricing-style-two.bg-color-7 .pricing-block-two .pricing-table .table-header h2:before,
.pricing-style-two.bg-color-7 .pricing-block-two .pricing-table .table-footer a:before {
  background: #f5ece8;
}

/*******feature section********/
.featured-section {
  position: relative;
  background: #eef0f6;
  overflow: hidden;
}

.featured-section .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: calc(50% - 105px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.featured-section .sec-title {
  max-width: 360px;
  width: 100%;
  padding: 390px 0px 110px 0px;
  margin-bottom: 0px;
}

.featured-section .bg-layer:before {
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.80) 100%);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.featured-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 40px 30px;
  margin-bottom: 30px;
}

.featured-block-one .inner-box .clients-logo {
  position: relative;
  display: block;
  margin-bottom: 18px;
  width: 60px;
  height: 60px;
}

.featured-block-one .inner-box p {
  margin-bottom: 23px;
}

.featured-block-one .inner-box a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 40px;
  line-height: 46px;
  background: #0006ff;
  text-align: center;
  border-radius: 40px;
  font-size: 20px;
  color: #ffffff;
}

.featured-block-one .inner-box a:hover {
  background: var(--theme-color);
  color: #fff;
}

.featured-section .content-box {
  position: relative;
  max-height: 730px;
}

.featured-section .content-box .right-content {
  padding-top: 30px;
}

.bx-viewport {
  min-height: 730px !important;
}

.footer-contact-area {
  position: relative;
  background: #16243d;
}

.footer-contact-area .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/** footer-style-four **/

.footer-style-four {
  position: relative;
}

.footer-style-four .footer-top {
  padding: 114px 0px 31px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-style-four .footer-top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-style-four .footer-top-inner .footer-top-info {
  position: relative;
  text-align: right;
}

.footer-style-four .footer-top-inner .footer-top-info p {
  color: #fff;
  margin-bottom: 8px;
}

.footer-style-four .footer-top-inner .footer-top-info p a {
  display: inline-block;
  color: var(--theme-color);
}

.footer-style-four .footer-top-inner .footer-top-info p a:hover {
  text-decoration: underline;
}

.footer-style-four .footer-top-inner .footer-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-four .footer-top-inner .footer-nav li {
  position: relative;
  display: inline-block;
  margin-right: 23px;
}

.footer-style-four .footer-top-inner .footer-nav li:last-child {
  margin: 0px !important;
}

.footer-style-four .footer-top-inner .footer-nav li a {
  display: inline-block;
  color: #fff;
}

.footer-style-four .footer-top-inner .footer-nav li a:hover {
  color: var(--theme-color);
}

.footer-style-four .footer-top-inner .footer-nav li:before {
  position: absolute;
  content: '.';
  font-size: 17px;
  right: -14px;
  bottom: 1px;
  color: #fff;
}

.footer-style-four .footer-top-inner .footer-nav li:last-child:before {
  display: none;
}

.footer-style-four .widget-section {
  position: relative;
  padding: 70px 0px 114px 0px;
}

.footer-style-four .widget-title {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.footer-style-four .widget-title h6 {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #a49c98;
}

.footer-style-four .newsletter-widget p {
  color: #fff;
  margin-bottom: 23px;
}

.footer-style-four .newsletter-widget form .form-group {
  position: relative;
  margin-bottom: 23px;
}

.footer-style-four .newsletter-widget form .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 40px;
  font-size: 16px;
  color: #726e6d;
  padding: 10px 60px 10px 30px;
  transition: all 400ms ease;
}

.footer-style-four .newsletter-widget form .form-group button[type='submit'] {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 44px;
  line-height: 50px;
  background: #160f0c;
  text-align: center;
  font-size: 24px;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.footer-style-four .newsletter-widget form .form-group input:focus {
  border-color: var(--theme-color);
}

.footer-style-four .newsletter-widget form .form-group input:focus+button,
.footer-style-four .newsletter-widget form .form-group button:hover {
  background: var(--theme-color);
}

.footer-style-four .newsletter-widget {
  margin-right: 30px;
}

.list-style-four li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-style-four li:last-child {
  margin-bottom: 0px;
}

.list-style-four li:before {
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  left: 0px;
  top: 0px;
  color: var(--theme-color);
}

.footer-style-four .social-widget .social-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.footer-style-four .social-widget .social-list li:last-child {
  margin-bottom: 0px;
}

.footer-style-four .social-widget .social-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  padding-left: 30px;
}

.footer-style-four .social-widget .social-list li a i {
  position: absolute;
  left: 0px;
  top: 5px;
}

.footer-style-four .social-widget .social-list li a:hover {
  color: var(--theme-color);
}

.footer-style-four .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.footer-style-four .links-widget .links-list li:last-child {
  margin-bottom: 0px;
}

.footer-style-four .links-widget .links-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.footer-style-four .links-widget .links-list li a:hover {
  color: var(--theme-color);
}

.footer-style-four .footer-bottom {
  background: rgba(255, 255, 255, 0.05);
}

.footer-style-four .footer-bottom .footer-card {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-four .footer-bottom .footer-card li {
  margin-right: 10px;
}

.footer-style-four .footer-bottom .footer-card li:last-child {
  margin: 0px;
}

.footer-style-four .footer-bottom .footer-card li h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #fff;
}

.footer-style-four .footer-bottom .scroll-to-target {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 26px;
  transition: all 500ms ease;
}

.footer-style-four .footer-bottom .scroll-to-target:hover {
  color: var(--theme-color);
}

.footer-style-four .footer-bottom .scroll-to-target i {
  position: absolute;
  top: 2px;
  right: 0px;
  font-size: 16px;
  font-weight: 400;
}




/** header-style-five **/

.header-style-five {
  position: relative;
}

.header-top-three {
  position: relative;
  width: 100%;
  background: -webkit-linear-gradient(0deg, #16120d 0%, #9d6c21 100%);
  padding: 9px 0px;
}

.header-top-three .outer-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 80px;
}

.header-top-three .left-column h6 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  font-weight: 500;
  padding-left: 23px;
}

.header-top-three .left-column h6 i {
  position: absolute;
  left: 0px;
  top: 1px;
  font-weight: 400;
  color: var(--theme-color);
  font-size: 20px;
}

.header-top-three .left-column h6 strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-right: 10px;
}

.header-top-three .left-column h6 span {
  display: inline-block;
  color: var(--theme-color);
  border-bottom: 1px dotted var(--theme-color);
}

.header-top-three .right-column {
  position: relative;
  display: flex;
  align-items: center;
}

.header-top-three .right-column .links-list {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 50px;
}

.header-top-three .right-column .links-list li {
  margin-right: 40px;
}

.header-top-three .right-column .links-list li:last-child {
  margin: 0px;
}

.header-top-three .right-column .links-list li a {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.header-top-three .right-column .links-list li a:hover {
  text-decoration: underline;
}

.header-top-three .right-column .social-links {
  position: relative;
  display: flex;
  align-items: center;
  top: 2px;
}

.header-top-three .right-column .social-links li {
  margin-right: 25px;
}

.header-top-three .right-column .social-links li:last-child {
  margin: 0px;
}

.header-top-three .right-column .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #fff;
}

.header-style-five .header-lower {
  position: relative;
}

.header-style-five .header-lower .outer-container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  background: rgba(254, 189, 88, 0.15);
}

.header-style-five .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px 80px;
}

.header-style-five .menu-area {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style-five .menu-area .search-box-outer {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  margin-left: 80px;
  transition: all 500ms ease;
}

.header-style-five .menu-area .search-box-outer:hover {
  color: var(--theme-color);
}

.header-style-five .menu-area .search-box-outer:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.25);
  width: 1px;
  height: 22px;
  left: -40px;
  top: 0px;
}

.header-style-five .menu-right-content .link-box .icon-box {
  background: var(--theme-color);
  color: #16120d;
}

.header-style-five .menu-right-content .link-box h6 a {
  color: #fff;
}

.header-style-five .menu-right-content .link-box h6 a i {
  color: #fff;
  transition: all 500ms ease;
}

.header-style-five .menu-right-content .link-box h6 a:hover i {
  color: var(--theme-color);
}

.header-style-five .main-menu .navigation>li>a {
  padding-top: 27px;
  padding-bottom: 27px;
  color: #fff;
}

.header-style-five .sticky-header {
  background: #1a150e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/** banner-style-five **/

.banner-style-five {
  position: relative;
  overflow: hidden;
}

.banner-style-five .slide-item {
  position: relative;
  padding: 251px 0px 265px 0px;
}

.banner-style-five .slide-item:before {
  position: absolute;
  content: '';
  /* background: -webkit-linear-gradient(90deg, rgba(22, 18, 13, 0.95) 15%, rgba(22, 18, 13, 0.0) 100%); */
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.banner-style-five .slide-item:after {
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-90deg, rgba(22, 18, 13, 0.95) 15%, rgba(22, 18, 13, 0.0) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.banner-style-five .content-box {
  position: relative;
  display: block;
  margin-left: 200px;
  max-width: 850px;
}

.banner-style-five .content-box h2 {
  font-size: 50px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.banner-style-five .content-box p {
  font-size: 18px;
  line-height: 28px;
  color: #e2d8c9;
  margin-bottom: 0px;
}

.banner-style-five .pattern-layer .pattern-1 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  z-index: 2;
}

.banner-style-five .pattern-layer .pattern-2 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 135px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  z-index: 2;
}

.banner-style-five .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 100%;
}

.banner-style-five .owl-nav button span {
  display: none;
}

.banner-style-five .owl-nav button.owl-prev {
  position: absolute;
  left: 65px;
  top: 0px;
}

.banner-style-five .owl-nav button.owl-prev:before {
  position: absolute;
  content: "\f10c";
  font-family: 'flaticon';
  font-size: 50px;
  color: #fff;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.banner-style-five .owl-nav button.owl-next {
  position: absolute;
  right: 116px;
  top: 0px;
}

.banner-style-five .owl-nav button.owl-next:before {
  position: absolute;
  content: "\f10d";
  font-family: 'flaticon';
  font-size: 50px;
  color: #fff;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.banner-style-five .owl-nav button.owl-prev:hover:before,
.banner-style-five .owl-nav button.owl-next:hover:before {
  color: var(--theme-color);
}

/** highlights-style-two **/

.highlights-style-two {
  position: relative;
  background: -webkit-linear-gradient(-45deg, #16120d 50%, #634618 100%);
  padding: 114px 0px 90px 0px;
}

.highlights-block-two .inner-box {
  position: relative;
  display: block;
  padding: 33px 30px 33px 145px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.highlights-block-two .inner-box:before {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  opacity: 0.08;
}

.highlights-block-two .inner-box:after {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 1px;
  height: calc(100% - 100px);
  left: 111px;
  top: 50px;
}

.highlights-block-two .inner-box h2 {
  position: absolute;
  left: 40px;
  top: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 36px;
  line-height: 46px;
  color: var(--theme-color);
  min-width: 50px;
}

.highlights-block-two .inner-box h2:before {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  border: solid;
  border-width: 2px;
  border-color: var(--theme-color);
  border-radius: 50%;
  top: 40px;
  right: -27px;
}

.highlights-block-two .inner-box h2:after {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  border: solid;
  border-width: 2px;
  border-color: var(--theme-color);
  border-radius: 50%;
  bottom: 40px;
  right: -27px;
}

.highlights-block-two .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 10px;
}

.highlights-block-two .inner-box h3 a {
  display: inline-block;
  color: #fff;
}

.highlights-block-two .inner-box h3 a:hover {
  color: var(--theme-color);
}

.highlights-block-two .inner-box p {
  color: #a79f93;
}

.highlights-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-color-8 {
  background: #eef0f6;
}

.funding-section.home-5 .tab-btn-one .tab-btns li span {
  color: #a79f93;
}

.funding-section.home-5 .tab-btn-one .tab-btns li.active-btn span {
  color: var(--title-color);
}

.funding-section.home-5 .tab-btn-two .tab-btns li {
  color: #6b6965;
}

.funding-section.home-5 .tab-btn-two .tab-btns li:before {
  border-color: #d3ccc1;
}

.funding-section.home-5 .tab-btn-two .tab-btns li:after {
  background: #d3ccc1;
}

.funding-section.home-5 .tab-btn-two .tab-btns li.active-btn-2 {
  color: var(--title-color);
}

.funding-section.home-5 .tab-btn-two .tab-btns li.active-btn-2:before {
  border-color: var(--theme-color);
}

.funding-section.home-5 .tab-btn-two .tab-btns li.active-btn-2:after {
  background: var(--theme-color);
}

.funding-section.home-5 .sec-title .icon-box {
  color: var(--title-color);
}

.funding-section.home-5 .content-box .inner-box {
  background: -webkit-linear-gradient(-45deg, #16120d 50%, #473214 100%);
}

.funding-section.home-5 .content-box .trading-list li {
  background: #e2d8c9;
  color: #6b6965;
}

.funding-section.home-5 .content-box .trading-list li span {
  background: #eae1d3;
}

.funding-section.home-5 .content-box .trading-list li:before {
  background: #bbb09e;
}

/** subscribe-section **/

.subscribe-section {
  position: relative;
  padding: 0px 0px;
}

.tracking-three__inner {
  position: relative;
  display: block;
  text-align: center;
  background-image: -moz-linear-gradient(0deg, rgb(25, 28, 30) 0%, rgb(255, 73, 74) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(25, 28, 30) 0%, rgb(153 193 255) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(25, 28, 30) 0%, rgb(255, 73, 74) 100%);
  border-radius: 10px;
  padding: 92px 0 100px;
  z-index: 1;
}

.tracking-three__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.3;
  z-index: -1;
}

.tracking-three__shape-1 {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.tracking-three__title-box {
  position: relative;
  display: block;
  margin-bottom: 39px;
}

.tracking-three__sub-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tracking-three__title {
  font-size: 36px;
  color: #ffffff;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
}

.tracking-three__form-box {
  position: relative;
  display: block;
  max-width: 715px;
  width: 100%;
  margin: 0 auto 0;
}

.tracking-three__form {
  position: relative;
  display: block;
}

.tracking-three__input-box {
  position: relative;
  display: block;
}

.tracking-three__input-box input[type=text] {
  height: 65px;
  width: 100%;
  background-color: #ffffff;
  outline: none;
  font-size: 15px;
  color: #797979;
  font-weight: 400;
  border: none;
  border-radius: 10px;
  padding-right: 70px;
  padding-left: 20px;
}

.tracking-three__btn {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  padding: 17px 50px 17px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.thm-btn-two {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: #0006ff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 17px 40px 17px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.tracking-three__btn {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  padding: 10px 47px 10px;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}

/** page-title **/

.page-title {
  position: relative;
  padding: 170px 0px 34px 0px;
}

.page-title .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title .bg-layer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: -webkit-linear-gradient(-45deg, #132720 50%, #7c6c18 80%);
  opacity: 0.7;
}

.page-title h1 {
  position: relative;
  display: block;
  font-size: 34px;
  line-height: 44px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.page-title .bread-crumb {
  position: relative;
  display: block;
}

.page-title .bread-crumb li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #a5b2af;
  padding-right: 26px;
  margin-right: 5px;
}

.page-title .bread-crumb li:last-child {
  padding: 0px;
  margin: 0px;
}

.page-title .bread-crumb li a {
  display: inline-block;
  color: #a5b2af;
}

.page-title .bread-crumb li a:hover {
  color: var(--theme-color);
}

.page-title .bread-crumb li span {
  color: #fff;
}

.page-title .bread-crumb li:before {
  position: absolute;
  content: "\f10d";
  font-family: 'flaticon';
  font-size: 20px;
  top: 1px;
  right: 0px;
}

.page-title .bread-crumb li:last-child:before {
  display: none;
}

.about-style-four .image-box {
  position: relative;
  display: block;
  border-radius: 10px;
  margin-left: -120px;
  margin-right: -120px;
  margin-top: 120px;
}

.about-style-four .image-box img {
  width: 100%;
  border-radius: 10px;
}

.about-style-four.about-page .links-box .links-list li a {
  background: #e2edea;
}

.about-style-four.about-page .links-box .links-list li a:hover {
  background: #fff;
}

.about-style-four.about-page .links-box .links-list li a:hover span {
  color: #fff;
}

.about-style-four.about-page {
  padding-bottom: 0px;
}


/** funfact-style-three **/

.funfact-style-three {
  position: relative;
  padding: 120px 0px 115px 0px;
}

.funfact-style-three .funfact-block-one .inner-box {
  background: transparent;
  padding: 0px;
  border-radius: 0px;
  border: none;
}

.funfact-style-three .funfact-block-one .inner-box h2 {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.funfact-style-three .funfact-block-one .inner-box p {
  color: #a5b2af;
}

.funfact-style-three .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/** contact-style-two **/

.contact-style-two {
  position: relative;
  padding: 114px 0px 95px 0px;
}

.contact-style-two .title-inner {
  position: relative;
}

.contact-style-two .title-inner .special-text {
  position: absolute;
  top: 70px;
  right: 0px;
}

.contact-style-two .title-inner .special-text h6 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  background: #fff;
  border-radius: 40px;
  padding: 12px 20px 12px 53px;
  transform: rotate(-10deg);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
}

.contact-style-two .title-inner .special-text h6 img {
  position: absolute;
  left: 20px;
  top: 12px;
}

.contact-style-two .title-inner .special-text .shape {
  position: absolute;
  left: -50px;
  top: -23px;
  width: 50px;
  height: 63px;
  background-repeat: no-repeat;
}

.contact-style-two .form-inner .form-group {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.contact-style-two .form-inner label {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  margin-bottom: 15px;
  padding-left: 24px;
}

.contact-style-two .form-inner label i {
  position: absolute;
  left: 0px;
  top: 4px;
  color: var(--theme-color);
}

.contact-style-two .form-inner label span {
  color: #a5b2af;
}

.contact-style-two .form-inner .form-group input[type='text'],
.contact-style-two .form-inner .form-group input[type='email'],
.contact-style-two .form-inner .form-group .nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  font-size: 16px;
  color: #a5b2af;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 500ms ease;
}

.contact-style-two .form-inner .form-group .select-box {
  min-height: 54px;
}

.contact-style-two .form-inner .form-group .nice-select {
  position: relative;
  padding: 0px 20px;
  line-height: 54px;
  text-transform: capitalize;
}

.contact-style-two .form-inner .form-group .nice-select:before {
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 24px;
  color: #a5b2af;
  top: -1px;
  right: 16px;
}

.contact-style-two .form-inner .form-group input:focus {
  border-color: var(--theme-color);
}

.contact-style-two .sec-title p {
  margin-top: 12px;
}

.contact-style-two .form-inner .message-box {
  position: relative;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  padding: 20px 30px 20px 30px;
}

.contact-style-two .form-inner .message-box textarea {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  color: #a5b2af;
  font-weight: 500;
  resize: none;
}

.contact-style-two .form-inner .message-box .theme-btn {
  width: 100%;
}


/** google-map-section **/

.google-map-section {
  position: relative;
}

.google-map-section .map-inner {
  position: relative;
  height: 550px;
}

.google-map-section .map-inner iframe {
  position: relative;
  width: 100%;
  height: 550px;
}

.google-map-section .map-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.google-map-section .map-content .icon-box {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 90px;
  background: #132720;
  text-align: center;
  font-size: 50px;
  border-radius: 50%;
  margin-bottom: 50px;
  color: var(--theme-color);
}

.google-map-section .map-content .location-box {
  position: relative;
  display: block;
  width: 270px;
  background: #fff;
  text-align: left;
  border-radius: 10px;
  padding: 24px 30px 23px 30px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
}

.google-map-section .map-content .location-box h5 {
  display: block;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}

/*********login css**********/
.login-box {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 30px 12px 30px;
  border-radius: 40px;
  border: 1px solid #e11631;
  background: #e11631;
}

.login-section {
  position: relative;
  margin-top: 50px;
}

.login-section img {
  border-radius: 12px;
  height: auto;
  width: 100%;
}

.login-section-from {
  position: relative;
  margin-top: 50px;
  padding: 40px;
  background: #fff;
  box-shadow: 4px 5px 5px 0px rgba(237, 237, 237, 1);
  position: relative;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
}

.login-section-from::before {
  position: absolute;
  width: 124px;
  height: 121px;
  left: 0;
  top: 0;
  background-image: url(../images/shape/dots.png);
  content: "";
}

.form-label {
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 500;
  float: left;
}

.outer-box {
  background: -webkit-linear-gradient(0deg, #ffffff 100%, #008eff 100%);
  border-bottom: 1px solid #ededed;
  -webkit-box-shadow: 0px 6px 5px 0px rgba(199, 199, 199, 1);
  -moz-box-shadow: 0px 6px 5px 0px rgba(199, 199, 199, 1);
  box-shadow: 0px 6px 5px 0px rgba(199, 199, 199, 1);
}

/*****dashboard css*******/
.dashboard-image {
  background: url(../images/banner/d-1.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}

.logout-box {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 30px 12px 30px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: #ffffff;
}

.dashboard-content {
  padding: 80px 30px 30px 50px;
  text-align: center;
}

.dashboard-bottom {
  padding-top: 50px;
  padding-bottom: 50px;
}

.dashboard-sectionmax {
  background: url(../images/banner/card.webp) no-repeat;
  background-position: center;
  background-size: cover;
}

.dashboard-content h2 {
  color: #ffffff;
  font-size: 20px;
}

.dashboard-userdetails {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  border-top: 5px solid #ff5528;
  padding: 10px;
  margin-top: 15px;
}

.dashboard-from {
  color: #636363;
  font-size: 16px;
  font-weight: 600;
}

.dashboard-title {
  color: #0006ff;
}

.dashboard-table {
  position: relative;
  display: block;
  background: #fff;
  padding: 26px 30px 23px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.12);
  border: 1px solid #cacaca;
}

.table-status-a {
  color: #008000;
  font-weight: 600;
}

.table-status-r {
  color: #dc0000;
  font-weight: 600;
}

.dashboard-subtitle {
  text-decoration: underline;
  margin-bottom: 30px;
  color: #2196f3;
}

.subtitle {
  color: #008000;
  margin-top: 10px;
}

tr {
  font-size: 14px;
}

td {
  font-size: 13px;
  color: #6b6b6b;
}

th {
  font-size: 14px;
}

.addfund-details {
  position: relative;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
}

.addfund-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 19px;
  text-align: justify;
}

.addfund-subtitle {
  font-size: 11px;
  word-break: break-all;
  float: right;
  line-height: 19px;
  text-align: justify;
}

/*******refferal link css**********/
.separator {
  display: flex;
  align-items: center;
}

.separator .line {
  height: 1px;
  flex: 1;
  background-color: #000000;
}

.separator h2 {
  padding: 0 2rem;
}

.refferal-social {
  font-size: 25px;
}

.separator p {
  color: #000000;
  margin-top: 8px;
  padding: 10px;
}

/******copycss********/
.list-view {
  padding: 12px;
  box-shadow: 0px 8px 15px 0px rgba(24, 25, 27, 0.05);
  background: #ffffff;
  border-radius: 8px;
}

.list-view li {
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 22px;
  font-weight: 600;
  color: #717171;
}

@media(max-width:575px) {
  .list-view h4 {
    font-size: 15px;
  }
}

@media(max-width:1024px) {
  .list-view li {
    font-size: 17px;
  }
}

@media(max-width:575px) {
  .list-view li {
    font-size: 12px;
  }
}

.list-view li:not(:last-child) {
  border-bottom: 1px solid #ededed;
  margin-bottom: 8px;
}

.list-view li p {
  color: #1e1e1e;
  font-weight: 600;
  word-break: break-all;
  margin-left: 45px;
  font-size: 11px;
}

.text-copy-btn {
  font-size: 9px;
  color: #fff;
  padding: 5px;
  background: #0006ff;
  border-radius: 5px;
  margin-left: 5px;
}

/********our service css****/
.feature-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover {
  transform: translateY(-10px);
}

.feature-two__img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.feature-two__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 10px;
  background-color: #015fc94d;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: 1;
}

.feature-two__single:hover .feature-two__img:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.feature-two__img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__img img {
  transform: scale(1.05);
}

.feature-two__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  margin-right: 70px;
  margin-top: -55px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

.feature-two__content-inner {
  position: relative;
  display: flex;
  align-items: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.feature-two__content-inner:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #0006ff;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: translateX(-100%);
  transition: all 700ms ease;
  z-index: -1;
}

.feature-two__single:hover .feature-two__content-inner:before {
  transform: translateX(0);
}

.feature-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 84px;
  width: 100%;
  min-height: 100px;
  justify-content: center;
  background-color: #0006ff;
  border-bottom-left-radius: 10px;
}

.feature-two__icon span {
  font-size: 40px;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.feature-two__text-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

.feature-two__text-box:before {
  position: absolute;
  content: "";
  top: 1px;
  bottom: -2px;
  left: 0;
  width: 2px;
  background-color: #ffffff1a;
  transform: scaleY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__text-box:before {
  transform: scaleY(1);
  transition-delay: 700ms;
}

.feature-two__text {
  font-size: 20px;
  font-weight: 700;
  color: #16243d;
  letter-spacing: -0.02em;
  line-height: 25px;
  transition: all 700ms ease;
}

.feature-two__text a {
  color: #16243d;
  transition: all 700ms ease;
}

.feature-two__single:hover .feature-two__text a {
  color: #ffffff;
}

.scroll-text {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 40px;
  background: #0006ff;
  padding: 26px 40px;
  margin-top: 20px;
}

.scroll-text .text-list {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  -moz-animation: scroll-left 90s linear infinite;
  -webkit-animation: scroll-left 90s linear infinite;
  animation: scroll-left 90s linear infinite;
}

.scroll-text .text-list li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  padding-left: 28px;
  margin-right: 40px;
}

.scroll-text .text-list li i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 18px;
  color: #ffffff;
}

@-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%);
  }
}

@-moz-keyframes scroll-right {
  0% {
    -moz-transform: translateX(0%);
  }

  100% {
    -moz-transform: translateX(100%);
  }
}

@-webkit-keyframes scroll-right {
  0% {
    -webkit-transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(100%);
  }
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.about-two__left {
  position: relative;
  display: block;
}

.about-two__left .section-title {
  margin-bottom: 39px;
}

.about-two__text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.02em;
}

.about-two__points {
  position: relative;
  display: block;
  margin-top: 36px;
  margin-bottom: 42px;
}

.about-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li+li {
  margin-top: 8px;
}

.about-two__points li .icon {
  height: 16px;
  width: 16px;
  background-color: #e11631;
  font-size: 10px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__points li .text {
  margin-left: 20px;
}

.about-two__points li .text p {
  font-size: 18px;
  color: #16243d;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-two__middle {
  position: relative;
  display: block;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
  border-radius: 20px;
  height: 500px;
}

.about-two__awards-box {
  position: absolute;
  bottom: 45px;
  left: -150px;
  background-color: rgb(255, 255, 255);
  box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  padding: 15px;
  z-index: 1;
}

.about-two__awards-box:before {
  position: absolute;
  bottom: -46px;
  left: 70px;
  content: "";
  background-image: url(../images/shape/about-two-awards-shape-1.webp);
  background-repeat: no-repeat;
  width: 73px;
  height: 46px;
  z-index: -1;
}

.about-two__awards-inner {
  position: relative;
  display: block;
  background-color: #16243d;
  border: 4px solid #0006ff;
  border-radius: 20px;
  padding-top: 17px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 40px;
  overflow: hidden;
}

.about-two__awards-shape-2 {
  position: absolute;
  top: -36px;
  right: -38px;
}

.about-two__awards-shape-2 img {
  width: auto;
}

.about-two__awards-year {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.02em;
}

.about-two__awards-content {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.02em;
}

.about-two__dots {
  position: absolute;
  bottom: 225px;
  left: -80px;
  z-index: -1;
}

.about-two__dots img {
  width: auto;
  opacity: 0.2;
}

/**********coverage css*************/
.rs-service-2 {
  background-image: url(../images/background/services_bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 1200px;
}

.rs-service-2 {
  padding: 60px 0px 60px 0px;
}

.rs-service-2__item {
  border-radius: 4px;
  overflow: hidden;
  margin: 50px 10px 0;
}

.rs-service-2__item .rs-thumb {
  position: relative;
  z-index: 10;
}

.rs-service-2__item .rs-thumb img {
  width: 100%;
}

.rs-service-2__item .rs-thumb::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -1px;
  background: #ffffff;
  width: 100%;
  height: 50px;
  -webkit-clip-path: polygon(0% 100%, 24% 28%, 48% 77%, 74% 24%, 100% 100%);
  clip-path: polygon(0% 100%, 24% 28%, 48% 77%, 74% 24%, 100% 100%);
}

.rs-service-2__item .rs-content {
  padding: 15px 20px 40px 38px;
  margin: 0px;
  border-style: solid;
  border-width: 0px 2px 2px 2px;
  border-color: #01264414;
  border-radius: 0px 0px 4px 4px;
  transition: all ease 0.3s;
  position: relative;
  z-index: 10;
}

.rs-service-2__item .rs-content .rs-icon {
  transition: all linear 0.3s;
  display: inline-block;
}

.rs-service-2__item .rs-content .title {
  color: #0C2543;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin: 16px 0 13px;
}

.rs-service-2__item .rs-content p {
  font-size: 16px;
}

.rs-service-2__item .rs-content>a {
  height: 60px;
  width: 60px;
  border: 1px solid #008eff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  right: 50px;
  top: -30px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  background: #ffffff;
  color: #008eff;
}

/*--------------------------------------------------------------
# why choose us css
--------------------------------------------------------------*/
.rs-why-choose-2 {
  background-color: #0C2543;
  overflow: hidden;
  background-image: url(../images/shape/Profit.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}

.rs-why-choose-2 {
  padding: 60px 0px 60px 0px;
}

.rs-why-choose-2 .section-title-2 .title {
  color: #ffffff;
  padding-right: 30px;
}

.rs-why-choose-2 .section-title-2 p {
  color: #FFFFFFB8;
  padding-right: 50px;
  padding-top: 26px;
}

.rs-why-choose-2__content .rs-why-choose-icon-box span {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
  margin-left: 15px;
}

.skillbar {
  position: relative;
  display: inline-block;
  margin: 15px 0;
  width: 100%;
  background: #243B55;
  height: 6px;
  border-radius: 10px;
  width: 95%;
}

.skillbar .skillbar-bar {
  height: 6px;
  width: 0px;
  background: #008eff;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  top: -13px;
}

.skillbar span {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  position: absolute;
  right: -65px;
  top: 50%;
  transform: translateY(-50%);
}

.rs-why-choose-2__chart {
  margin-left: 60px;
  margin-top: 160px;
  display: flex;
  gap: 0px;
}

.rs-why-choose-2__content .rs-why-choose-icon-box {
  display: flex;
  align-items: center;
  margin-top: 37px;
  margin-bottom: 10px;
}

.rs-why-choose-2__content .rs-why-choose-icon-box img {
  max-width: 25px;
}

.rs-why-choose-2__chart .chart-item {
  transform: rotate(-90deg);
  min-width: 360px;
  margin-right: -240px;
}

.rs-why-choose-2__chart .chart-item .skillbar {
  height: 85px;
  border-radius: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background: transparent;
}

.rs-why-choose-2__chart .chart-item .skillbar .skillbar-bar {
  height: 85px;
  top: 0;
  border-radius: 0;
}

.skillbar .skillbar-bar {
  height: 6px;
  width: 0px;
  background: #008eff;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  top: -13px;
}

.skillbar span {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  position: absolute;
  right: -65px;
  top: 50%;
  transform: translateY(-50%);
}

.rs-why-choose-2__chart .chart-item .skillbar span {
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  right: -40px;
  color: #FFFFFFF7;
  font-size: 16px;
  font-weight: 500;
}

.rs-why-choose-2__titles {
  position: absolute;
  left: 230px;
  bottom: 15px;
  display: flex;
  align-items: center;
}

.rs-why-choose-2__titles span {
  display: inline-block;
  color: #ffffff;
  white-space: nowrap;
}

.ml-30 {
  margin-left: 80px;
}

.ml-55 {
  margin-left: 60px;
}

/************dashboard testimonial css*************/
.testimonial-one {
  position: relative;
  display: block;
  background-color: #f2f5f9;
  padding: 60px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-one-shape-2 {
  position: absolute;
  top: -40px;
  right: 0;
  mix-blend-mode: luminosity;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.testimonial-one-shape-2 img {
  width: auto;
  mix-blend-mode: luminosity;
  opacity: 0.15;
}

.testimonial-one-shape-3 {
  position: absolute;
  bottom: -90px;
  left: 0;
  mix-blend-mode: luminosity;
}

.testimonial-one-shape-3 img {
  width: auto;
  mix-blend-mode: luminosity;
  opacity: 0.15;
}

.feature-eight__single {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 1px solid #dadada;
  border-radius: 20px;
  box-shadow: 26px 23px 30px 0px rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
  text-align: center;
}

.feature-eight__single:hover {
  border-color: #0006ff;
}

.feature-eight__single__title {
  font-size: 18px;
  font-weight: 700;
  margin: 25px 20px 16px;
}

.feature-eight__single:hover .feature-eight__single__title {
  color: #ffffff;
}

.feature-eight__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.feature-eight__single:hover .feature-eight__single__text {
  color: #f4f4f4;
}

.feature-eight__single__text {
  line-height: 24px;
  font-weight: 600;
  margin: 0 30px 21px;
  transition: all 300ms ease;
}

.feature-eight__single__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #ffffff;
  background-color: #0006ff;
  border-radius: 50%;
  font-size: 25px;
  margin: 0 auto -34px;
  position: relative;
  color: #ffffff;
  z-index: 1;
  transition: all 0.4s ease;
}

.feature-eight__single:hover .feature-eight__single__icon {
  background-color: #0006ff;
}

.feature-eight__single:hover .feature-eight__single__icon span {
  transform: scale(0.9);
}

.feature-eight__single__icon span {
  display: inline-block;
  transition: all 0.5s ease;
  transform: scale(1);
}

.feature-eight__single__image {
  position: relative;
  margin: 0 -2px -2px;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}

.feature-eight__single__image img {
  width: 100%;
  height: 150px;
}

.feature-eight__single:hover::after {
  opacity: 1;
  height: 100%;
}

.feature-eight__single::after {
  background-color: #0006ff;
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
  right: 0;
  content: "";
  transition: all 700ms ease;
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
}

.item_dashboard img {
  width: 100%;
  height: 180px;
}

.instagram-section {
  padding: 0px 0px 10px 0px;
}

/*** 

====================================================================
omega Section Two
====================================================================

***/
.bg-pattern-11 {
  background-image: url(../images/background/pattern-11.jpg);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.omega-section-two .bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 540px;
  width: 540px;
  background-image: url(../images/shape/d-shape.webp);
  -webkit-animation: fa-spin 60s infinite linear;
  animation: fa-spin 60s infinite linear;
  opacity: 0.2;
  background-repeat: no-repeat;
}

.omega-section-two .image-column .image-box {
  position: relative;
  /* min-height: 450px; */
  text-align: right;
}

.omega-section-two .image-column .image-box .image {
  position: absolute;
}

.omega-section-two .image-column .image-box .image img {
  border-radius: 50%;
  border: 8px solid #fff;
}

.omega-section-two {
  padding: 60px 0px 60px 0px;
}