/*** 

====================================================================
  Reset
====================================================================

 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


:root{
  --text-color: #6d7270;
  --title-color: #090f0d;
  /*--text-font: "SourceHanSansCN", sans-serif;*/

  /*--title-font: "SourceHanSansCN", sans-serif;*/
  --text-font:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --title-font:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


body {
  font-size:1rem;
  color:var(--text-color);
  line-height:1.625rem;
  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: 96.875rem;
  padding: 0px 0.9375rem;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:100%;
  padding:0px calc(140 / 1920 * 100vw);
  margin:0 auto;
}



.small-container{
  max-width:42.5rem;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 18.75rem;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 1rem;
  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;
}

/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  background: var(--theme-color);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 1.625rem;
  background: #fff;
  color: var(--theme-color);
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.25rem;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 1.875rem;
  top: 1.875rem;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 9.375rem;
  margin: 0 auto 2.8125rem auto;
  width: 9.375rem;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 0.9375rem;
  display: inline-block;
  position: relative;
  font-size: 4.375rem;
  line-height: 4.375rem;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.1); 
}

/* 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: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  font-family: var(--title-font);
  text-align: center;
  padding: 0.9375rem 2.0625rem;
  border-radius: 2.5rem;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn.btn-one{
  color: #fff;
  background: var(--theme-color);
}

.theme-btn.btn-one: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: 1.75rem;
}

.theme-btn span:before{
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 1.375rem;
  left: 0px;
  top: -0.3125rem;
  font-weight: 400;
}

.theme-btn.btn-two{
  color: var(--title-color);
  border: 2px solid var(--theme-color);
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.theme-btn.btn-two:hover{
  color: #fff;
  background: var(--theme-color);
}

.theme-btn.btn-two:before{
  background: var(--theme-color);
}

.theme-btn.btn-three{
  color: #fff;
  border: 2px solid #fff;
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.theme-btn.btn-three:hover{
  color: #fff;
  background: var(--theme-color);
}

.theme-btn.btn-three:before{
  background: var(--theme-color);
}




.row{
  --bs-gutter-x: 1.875rem;
}

.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: 1rem;
  font-weight: 600;
  height: 2.5rem;
  width: 3.75rem;
  line-height: 2.5rem;
  border: 1px solid #dbe5e2;
  font-family: var(--title-font);
  text-align: center;
  color: #6d7270;
  border-radius: 2.5rem;
  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: 1.625rem;
  color: var(--title-color);
  top: 3px;
}

.pagination li:first-child a,
.pagination li:last-child a{
  background: #6aa8e0;
  border-color: #6aa8e0;
}

.sec-pad{
  padding: 7.0625rem 0px 7.5rem 0px;
}

.mr-0{
  margin: 0px !important;
}

.scroll-top {
  width: 3.375rem;
  height: 4rem;
  line-height: 4.375rem;
  position: fixed;
  bottom: 105%;
  right: 3.125rem;
  font-size: 1.875rem;
  z-index: 99;
  color: #fff;
  background: var(--theme-color);
  text-align: center;
  border-radius: 2.5rem;
  cursor: pointer;
  transition: 1s ease;
  box-shadow: 0px 0px 0.9375rem 0px rgba(0, 0, 0, 0.10) !important;
}

.scroll-top.open {
  bottom: 1.875rem;
}



.sec-title{
  position: relative;
  display: block;
  margin-bottom: 3rem;
}

.sec-title h6{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem; 
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sec-title h2{
  color: var(--theme-color);
  position: relative;
  display: block;
  font-size: 3.125rem;
  line-height: 4rem;
}

.sec-title p{
  color: var(--theme-color);
  position: relative;
  display: block;
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 75rem;
  padding: 0 0.9375rem;
  margin: 0 auto;
  letter-spacing: -1px;
}

.sec-title.light h6,
.sec-title.light h2,
.sec-title.light p{
  color: #fff;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}


.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item{
  height: 100%;
}


/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/** header-top **/

.header-top .outer-container{
  position: relative;
  width: 100%;
  padding: 8px 5rem;
  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: 2.8125rem;
  margin-right: 3.75rem;
}

.header-top .left-column .login-box:before{
  position: absolute;
  content: '';
  background: #dbe5e2;
  width: 1px;
  height: 2.25rem;
  top: 7px;
  right: -1.875rem;
}

.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: 1rem;
  line-height: 1.625rem;
  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: 0.875rem;
  line-height: 1.5rem;
  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: 1.875rem;
}

.main-header .language-box .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 1.25rem;
  color: var(--title-color);
}

.main-header .language-box .nice-select{
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  padding: 0px;
  padding-right: 1.4375rem;
  text-transform: capitalize;
}

.main-header .language-box .nice-select .list{
  min-width: 3.75rem;
}

.main-header .language-box .nice-select:before{
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 1.25rem;
  top: 1px;
  right: 0px;
  color: #a6b3b0;
}

.header-top .text-box{
  position: relative;
  display: block;
  padding-left: 2.375rem;
}

.header-top .text-box .icon-box{
  position: absolute;
  left: 0px;
  top: 2px;
}

.header-top .text-box h6{
  font-size: 1rem;
  line-height: 1.625rem;
  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: 6.25rem;
  margin-right: 3.75rem;
}

.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: 1rem;
  line-height: 1.625rem;
  height: 1.625rem;
  font-family: var(--title-font);
  color: #a5b2af;
  font-weight: 600;
  padding-right: 1.5625rem;
}

.header-top .right-column .search-box .form-group button[type='submit']{
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 1.5rem;
  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: 2.25rem;
  top: -5px;
  right: -1.875rem;
}

.header-top .right-column .mail-box{
  position: relative;
  padding-left: 2.875rem;
}

.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: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
}

.header-top .right-column .mail-box h6{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.375rem;
  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 calc(140 / 1920 * 100vw);
}

.main-header .outer-box .logo-box{
  padding: 1.125rem 0px;
}

.main-header .outer-box .logo-box .logo a img{
  width: calc(462 / 1920 * 100vw)
}

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

.main-header .menu-right-content .link-box{
  position: relative;
  padding-left: 4.375rem;
}

.main-header .menu-right-content .link-box .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.75rem;
  background: #132720;
  text-align: center;
  border-radius: 1.875rem;
  font-size: 1.25rem;
  color: #fff;
}

.main-header .menu-right-content .link-box h6{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  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: 1.625rem;
}

.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: 1.25rem;
}

@media (max-width: 1500px){
  .main-header .outer-box,
  .auto-container{
    padding:0 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 1.3125rem;
  -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:1.125rem;
  line-height:1.875rem;
  padding: 1.5625rem 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: 1.5625rem;
}

.main-menu .navigation > li.dropdown > a:before{
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 1.25rem;
  top: 1.6875rem;
  right: 0px;
  color: var(--theme-color);
  font-weight: 400;
}

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

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:15rem;
  margin-top: 1.25rem;
  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 1.875rem;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  line-height:1.5rem;
  font-weight:400;
  font-size:1rem;
  font-family: var(--text-font);
  color:#6d7270;
  text-align: left;
  padding: 0.875rem 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: 1.875rem;
  top: 1.375rem;
  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: 1.25rem;
  line-height: 1.875rem;
  color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{
  color: var(--theme-color);
  padding-left: 1.25rem;
}

.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:1.25rem;
  top:0.75rem;
  color: #b9b7b6;
  display:block;
  line-height:1.5rem;
  font-size:1rem;
  font-weight:700;
  text-align:center;
  z-index:5;  
  transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown.current > a:after,
.main-menu .navigation > li > ul > li.dropdown > a:hover:after{

}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-top: 0.9375rem;
  margin-left: 10px;
  width:15rem;
  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 1.875rem;
  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:1.5rem;
  font-weight:400;
  font-size:1rem;
  font-family: var(--text-font);
  color:#6d7270;
  text-align: left;
  padding: 0.875rem 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: 1.25rem;
}

.main-menu .navigation > li > ul > li > ul > li > a:before{
  position: absolute;
  content: '^';
  left: 0px;
  color: var(--theme-color);
  font-size: 1.875rem;
  top: 1.375rem;
  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:1.25rem;
  top:0.75rem;
  display:block;
  line-height:1.5rem;
  font-size:1rem;
  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:-2rem;
  top:4.125rem;
  width:2.125rem;
  height:1.875rem;
  text-align:center;
  font-size:1.125rem;
  line-height:1.625rem;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

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

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

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 2.5rem;
  line-height: 3.125rem;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 1.875rem;
  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: 1.875rem 3.125rem;
  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: 2.5rem;
  line-height: 3.125rem;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 18.75rem;
  padding-right:1.875rem;
  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:3.125rem 1.5625rem;
  text-align:left;  
  padding-bottom: 6.25rem;
}

.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: 1.5625rem;
  top: 10px;
  line-height: 1.875rem;
  width: 1.5rem;
  text-align: center;
  font-size: 1rem;
  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: 1.5rem;
  padding: 10px 1.5625rem;
  font-size: 0.9375rem;
  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: 1rem;
  margin-left: 1.25rem;
  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:2rem;
  height:2rem;
  text-align:center;
  font-size:1rem;
  line-height:2rem;
  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 1.5625rem;
}

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

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

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

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

.mobile-menu .contact-info {
  position: relative;
  padding: 7.5rem 1.875rem 1.25rem 1.875rem;
}

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

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

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

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

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

.main-header .outer-box{
  position: relative;
}

.nice-select{
  position: relative;
  background: transparent;
  border: none;
  font-size: 0.9375rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px;
  color: #d4c0cd;
  padding-right: 1.3125rem;
  height: auto;
  line-height: 1.75rem;
}

.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: #6aa8e0;
}

.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: 10.8125rem 0px 11.25rem 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: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  color: var(--theme-color);
  text-transform: uppercase;
  margin-bottom: 0.6875rem;
  padding-left: 1.875rem;
  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(../image/icon-4.png);
  width: 1.25rem;
  height: 0.75rem;
  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: 4.5rem;
  line-height: 5.125rem;
  color: #fff;
  margin-bottom: 2.1875rem;
  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: 2.1875rem;
}

.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;
}

.banner-section .image-box .text-box{
  position: absolute;
  left: -8.4375rem;
  bottom: 3.75rem;
  max-width: 29.375rem;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 1.8125rem 2.5rem 1.75rem 2.1875rem;
  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);
}

.banner-carousel .curve-text{
  position: absolute;
  top: 8.125rem;
  right: -3.75rem;
  width: 7.5rem;
  height: 7.5rem;
  background: var(--theme-color);
  border-radius: 50%;
}

.banner-carousel .curve-text .curved-circle{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  width: 7.5rem;
}

.owl-carousel .owl-nav span{
  font-family: 'flaticon';
}

.banner-section .banner-carousel .owl-nav{
  position: absolute;
  top: 50%;
  right: 4.5rem;
  height: 12.875rem;
  margin-top: -6.4375rem;
  z-index: 1;
}

.banner-section .banner-carousel .owl-nav button{
  position: relative;
  display: block;
  font-size: 2rem;
  color: var(--title-color);
  cursor: pointer;
  margin: 0px 0px;
  transition: all 500ms ease;
}

.banner-section .banner-carousel .owl-nav button:hover{
 color: var(--theme-color);
}

.banner-section .banner-carousel .owl-nav button.owl-prev span{
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
}

.banner-section .banner-carousel .owl-nav button.owl-prev{
  padding-top: 3.125rem;
  margin-bottom: 2.625rem;
}

.banner-section .banner-carousel .owl-nav button.owl-prev:before{
  position: absolute;
  content: 'prev';
  font-family: var(--title-font);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(90deg);
  left: -3px;
  top: 0px;
}

.banner-section .banner-carousel .owl-nav button.owl-next span{
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
}

.banner-section .banner-carousel .owl-nav button.owl-next{
  padding-bottom: 2.75rem;
}

.banner-section .banner-carousel .owl-nav button.owl-next:before{
  position: absolute;
  content: 'next';
  font-family: var(--title-font);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(90deg);
  left: -3px;
  bottom: 0px;
}


.banner-section .banner-carousel .owl-dots{
  position: absolute;
  right: 5rem;
  bottom: 3.75rem;
  counter-reset: slides-num;
  min-height: 1.875rem;
  min-width: 3.1875rem;
}

.banner-section .banner-carousel .owl-dots::after {
  position: absolute;
  right: 0px;
  top: 5px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 1rem;
  color: #a5b2af;
  font-weight: 600;
  font-family: var(--title-font);
}

.banner-section .banner-carousel .owl-dots:before{
  position: absolute;
  content: '';
  right: 1.75rem;
  top: 1.125rem;
  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: 1.5rem;
  line-height: 1.875rem;
  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;
}


/** service-section **/

.service-section{
  position: relative;
  padding: 7.0625rem 0px 5.625rem 0px;
}

.service-block-one .inner-box{
  position: relative;
  display: block;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  padding: 2rem 2.4375rem 2.4375rem 2.4375rem;
  margin-bottom: 1.875rem;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover{
  transform: translateY(-30px);
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
}

.service-block-one .inner-box h6{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #a5b2af;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.5rem;
  line-height: 2.125rem;
  padding-bottom: 1.375rem;
  margin-bottom: 1.4375rem;
  border-bottom: 1px solid #dbe5e2;
  
}

.service-block-one .inner-box h3 a{
  min-height: 4.25rem;
  display: block;
  color: var(--title-color);
  /* 两行省略 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.service-block-one .inner-box h3 a:hover{
  color: var(--theme-color);
}

.service-block-one .inner-box p{
  display: block;
  margin-bottom: 2.0625rem;
}

.service-block-one .inner-box .image-box{
  position: relative;
}

.service-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.service-block-one .inner-box .image-box .image img{
  width: 100%;
  border-radius: 8px;
}


.service-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.1);
}

.service-block-one .inner-box .image-box .btn-box{
  position: absolute;
  left: 0px;
  bottom: 1.5625rem;
  z-index: 2;
  width: calc(100% - 80px);
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box .btn-box{
  left: 2.5rem;
}

.service-block-one .inner-box .image-box .btn-box .theme-btn{
  background: #fff;
  color: var(--title-color);
  padding-left: 0px;
  border-radius: 0px 2.5rem 2.5rem 0px;
}

.service-block-one .inner-box:hover .image-box .btn-box .theme-btn{
  border-radius: 2.5rem;
  padding-left: 2.0625rem;
  width: 100%;
}

.service-block-one .inner-box .image-box .btn-box .theme-btn:hover{
  color: #fff;
  background: var(--theme-color);
}

.service-block-one .inner-box .image-box .btn-box .theme-btn:before{
  background: var(--theme-color);
}

.service-section .image-inner img{
  position: relative;
  max-width: none;
  float: right;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
  border-radius: 10px;
  margin-bottom: 1.875rem;
  padding: 2.625rem 2.5rem 2.5625rem 2.4375rem;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-45deg, #132720, #187c59 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.65;
}

.service-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 4.375rem;
  height: 4.375rem;
  line-height: 4.375rem;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.service-block-two .inner-box h3{
  display: block;
  font-size: 1.5rem;
  line-height: 2.125rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.service-block-two .inner-box p{
  color: #fff;
  margin-bottom: 1.25rem;
}

.service-block-two .inner-box .theme-btn{
  background: #fff;
  color: var(--title-color);
}

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

.service-block-two .inner-box .theme-btn:before{
  background: var(--theme-color);
}

.bg-color-1{
  background-color: #6aa8e0;
}


/** funfact-section **/

.funfact-section{
  position: relative;
}

.funfact-section .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 10rem;
  background: #fff;
}

.funfact-section .sec-title{
  margin-bottom: 0px;
  padding: 2.6875rem 1.875rem 3rem 3.0625rem;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  background: #fff;
}

.funfact-section .inner-container{
  position: relative;
  margin: 0px 0.9375rem;
}

.funfact-section .single-column{
  padding: 0px;
}

.funfact-block-one .inner-box{
  position: relative;
  display: block;
  text-align: center;
  padding: 2.4375rem 1.875rem 2.0625rem 1.875rem;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  background: #fff;
}

.funfact-section .inner-container .funfact-block-one .inner-box{
  border-left: none;
}

.funfact-section .inner-container .single-column:nth-child(4) .funfact-block-one .inner-box{
  border-left: 1px solid #dbe5e2;
  border-top: none;
}

.funfact-section .inner-container .single-column:nth-child(5) .funfact-block-one .inner-box{
  border-top: none;
}

.funfact-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 1.3125rem;
}

.funfact-block-one .inner-box h2{
  display: block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1.1875rem;
  border-bottom: 1px solid #dbe5e2;
}

.funfact-block-one .inner-box h2 span{
  font-weight: 200;
}

.funfact-block-one .inner-box p{
  line-height: 1.5rem;
}

.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);
}

.chart-one.tabs-box .tab{
  transform:scale(1) translateY(0px);
  opacity: 0;
}

.chart-one.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
  opacity: 1;
}

.chart-one{
  position: relative;
  width: 100%;
  background: -webkit-linear-gradient(-45deg, #132720, #187c59 100%);
  border-radius: 10px;
  overflow: hidden;
  max-width: 36.5625rem;
}

.chart-one h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
  padding-top: 1.875rem;
  padding-left: 2.5rem;
}

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

.chart-one .content-box .graph-image{
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.chart-one .content-box .graph-image img{
  width: 100%;
}

.chart-one .tab-btn-box{
  position: absolute;
  left: 2.5rem;
  bottom: 2.0625rem;
}

.chart-one .content-box .text-box{
  position: relative;
  display: block;
  text-align: right;
  padding: 4.625rem 2.5rem 2.0625rem 0px;
}

.chart-one .tab-btn-box .tab-btns{
  position: relative;
  display: flex;
  z-index: 2;
}

.chart-one .tab-btn-box .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #a5b2af;
  cursor: pointer;
  transition: all 500ms ease;
  margin-right: 1.375rem;
}

.chart-one .tab-btn-box .tab-btns li:last-child{
  margin-right: 0px !important;
}

.chart-one .tab-btn-box .tab-btns li.active-btn{
  color: #fff;
}

.chart-one .tab-btn-box .tab-btns li:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: -10px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.chart-one .tab-btn-box .tab-btns li.active-btn:before{
  transform: scale(1,1);
}

.chart-one .content-box .text-box h3{
  display: block;
  font-size: 1.625rem;
  line-height: 2.25rem;
  color: #fff;
  margin-bottom: 3px;
}

.chart-one .content-box .text-box p{
  position: relative;
  display: inline-block;
  color: #fff;
  padding-left: 1.125rem;
}

.chart-one .content-box .text-box p i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 0.875rem;
  color: var(--theme-color);
}


/** about-section **/

.about-section{
  background: url(../picture/abg.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  padding: 7.5rem 0px;
}

.about-section .image-box{
  position: relative;
  display: block;
  padding-right: 2.875rem;
}

.about-section .image-box .image{
  position: relative;
  border-radius: 10px;
}

.about-section .image-box .image img{
  width: 100%;
  border-radius: 10px;
  transition: all 500ms ease;
}

.about-section .image-box .image-2{
  position: absolute;
  top: 10.9375rem;
  right: -0.875rem;
  overflow: hidden;
}

.about-section .image-box .image-2:hover img{
  transform: scale(1.02);
}

.about-section .content-box{
  position: relative;
  display: block;
  margin-left: 0;
}

.about-section .content-box .sec-title{
  margin-bottom: 0;
}

.about-section .content-box .sec-title h2{
  margin-bottom: 1.875rem;
  font-size: 3.125rem;
  color: #1e3c62;
}

.about-section .content-box .sec-title h6{
  padding-left: 0;
  font-size: 1.375rem;
  color: #1e3c62;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.about-section .content-box .sec-title h6::before{
  display: none;
}

.about-section .content-box .text-box{
  position: relative;
  display: block;
  margin-bottom: 2.0625rem;
}

.about-section .content-box .text-box p{
  color: #333;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.about-section .content-box .inner-box{
  position: relative;
  display: block;
  margin-bottom: 2.5rem;
}

.about-section .content-box .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 5px;
}

.about-section .content-box .inner-box ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}

.about-section .content-box .inner-box ul li{
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5625rem 0;
}

.about-section .content-box .inner-box ul li img{
  height: 3.125rem;
}

.about-section .content-box .inner-box ul li p{
  font-size: 1.25rem;
  color: #333;
  margin-top: 10px;
}

.list-style-one{
  position: relative;
  display: block;
}

.list-style-one li{
  position: relative;
  display: block;
  font-family: var(--title-font);
  color: #6d7270;
  font-weight: 500;
  padding-left: 2.1875rem;
  margin-bottom: 0.875rem;
}

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

.list-style-one li:before{
  position: absolute;
  content: "\f109";
  font-family: 'flaticon';
  font-size: 1.375rem;
  left: 0px;
  top: 1px;
  color: var(--theme-color);
}

.about-section .content-box .btn-box .theme-btn{
  border: 2px solid var(--theme-color);
  color: var(--title-color);
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.about-section .content-box .btn-box .theme-btn:hover{
  color: #fff;
  background: var(--theme-color);
}

.about-section .content-box .btn-box .theme-btn:before{
  background: var(--theme-color);
}

.bg-color-2{
  background: #344150;
}
.about-section .one-half-item-carousel .owl-nav,
.about-section .one-half-item-carousel .owl-dots{
  display: none;
}
.about-section .one-half-item-carousel .image img{
  border-radius: 0.9375rem;
}

/** whatwedo-section **/
.whatwedo-section{
  padding: 5.625rem 0;
  width: 100%;
}
.whatwedo-section .auto-container{
  position: static;
    max-width: calc(1497 / 1920 * 100vw);
    padding: 0;
    margin: 0 auto;
}
@media (max-width: 768px){
  .whatwedo-section .auto-container{
    padding: 0 15px;
    max-width: 100%;
  }
}
.whatwedo-top {
  margin-bottom: calc(10 / 1920 * 100vw);
  text-align: center;
}

.whatwedo-top img{
  transform: rotate(180deg);
  margin-left: calc(-200 / 1920 * 100vw);
  width: calc(1034 / 1920 * 100vw);
  margin-bottom: calc(-40 / 1920 * 100vw);
}

.whatwedo-top p{
  margin-top: calc(- 40 / 1920 * 100vw);
  margin-left: calc(-200 / 1920 * 100vw);
  font-size: calc(28 / 1920 * 100vw);
  font-weight: bold;
  color: var(--theme-color);
}

.quanquanimg{
  width: calc(685 / 1920 * 100vw)
}

.whatwedo-bottom {
  text-align: center;
}

.whatwedo-bottom img{
  transform: rotate(0);
  margin-left: calc(-200 / 1920 * 100vw);
  width: calc(1034 / 1920 * 100vw);
  margin-top: calc(-40 / 1920 * 100vw);
}

.whatwedo-bottom p{
  margin-bottom: calc(- 40 / 1920 * 100vw);
  font-size: calc(28 / 1920 * 100vw);
  font-weight: bold;
  color: var(--theme-color);
  margin-left: calc(-200 / 1920 * 100vw);
}

.whatwedo-midd{
  position: relative;
}
.whatwedo-midd img{
  width: calc(332 / 1920 * 100vw)
}

.whatwedo-midd-box{
  position: absolute;
  right: calc(-80 / 1920 * 100vw);
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.whatwedo-midd-box .item{
  flex: 0 0 calc(156 / 1920 * 100vw);
  width: calc(156 / 1920 * 100vw);
  height: calc(156 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50%;
}

.whatwedo-midd-box .item img{
  width: calc(55 / 1920 * 100vw);
  height: calc(55 / 1920 * 100vw);
}

.whatwedo-midd-box .item p{
  font-size: calc(18 / 1920 * 100vw);
  color: #fff;
  margin-top: calc(10 / 1920 * 100vw);
  line-height: normal;
}

@media (max-width: 767px){
  .whatwedo-midd-box{
    right: 0;
  }
  .whatwedo-midd-box .item{
    flex: 0 0 calc(80 / 767 * 100vw);
    width: calc(80 / 767 * 100vw);
    height: calc(80 / 767 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--theme-color);
    border-radius: 50%;
  }

  .whatwedo-midd-box .item img{
    width: calc(30 / 767 * 100vw);
    height: calc(30 / 767 * 100vw);
  }

  .whatwedo-midd-box .item p{
    font-size: calc(16 / 767 * 100vw);
    color: #fff;
    margin-top: calc(10 / 767 * 100vw);
    line-height: normal;
  }
}

/**  miles-section **/
.miles-section{
  background: url(../picture/mbg.jpg) top center no-repeat;
  background-size: cover;
  padding: 5.625rem 0;
}
.vision{
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14rem;
}
.vision span{
  flex: 0 0 calc(64 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(64 / 1920 * 100vw);
  height: calc(64 / 1920 * 100vw);
  background: var(--theme-color);
  border-radius: 50%;
  margin-right: auto;
}
.vision span img{
  display: block;
  width: 50%;
}
.vision .vision-box h3{
  color: var(--theme-color);
  font-size: 1.6rem;
}
.vision .vision-box p{
  color: var(--theme-color);
  font-size: 1.125rem;
  line-height: 1.125rem;
}
.miles-box{
  position: relative;
}
.miles-list{
  position: relative;
}
.miles-box__img{
  position: absolute;
  top: 10.99rem;
  width: 100%;
}
.miles-box__img img{
      display: block;
    margin: 0 auto;
  width: 108.1875rem;
    height: 27.0625rem;
}
@media(min-width: 1200px) and  (max-width: 1700px){
  .miles-box__img img{
    width: 100%;
  }
}
.seven-item-carousel{
  height: calc(800 / 1920 * 100%);
  padding-left: 0.9375rem;
}
.seven-item-carousel .owl-stage-outer{
  height: 100%;
}
.seven-item-carousel.owl-carousel .owl-stage{
  height: 100%;
}
.miles-list__item{
  position: relative;
  padding-left: 10px;
  margin-top: 3.75rem;
  margin-left: 10px;
  height: calc(400 / 1920 * 100%);
  min-width: 20rem;
}
.miles-list__item::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 100%;
  border-left: 1px #117cdb dashed;
}
.miles-list__item span.year{
  position: absolute;
  top: -3.125rem;
  left: -10px;
  font-size: 1.75rem;
  color: #333;
  font-weight: bold;
}
.miles-list__item span.year::after{
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  border-radius: 50%;
  border: 4px #117cdb solid;
  margin-top: 6px;
  background: #fff;
}
.miles-list__item h4{
  font-size: 1.25rem;
  color: #117cdb;
  font-weight: 600;
  margin: 1.25rem 0;
}
.miles-list__item p{
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
}
.miles-list__item.item1{
  margin-top: 37.5rem;
  padding-top: 1.25rem;
}
.miles-list__item.item1 img{
  height: 9.375rem;
}
.miles-list__item.item2{
  margin-top: 24rem;
  padding-bottom: 8rem;
}
.miles-list__item.item4{
  margin-top: 22rem;
  padding-bottom: 8.125rem;
}
.miles-list__item.item6{
  margin-top: 7.3rem;
  padding-bottom: 8.375rem;
}
.miles-list__item.item2::after,
.miles-list__item.item4::after,
.miles-list__item.item6::after{
  height: calc(100% - 60px);
}
.miles-list__item.item2 span.year,
.miles-list__item.item4 span.year,
.miles-list__item.item6 span.year{
  top: auto;
  bottom: 0
}
.miles-list__item.item2 span.year::after,
.miles-list__item.item4 span.year::after,
.miles-list__item.item6 span.year::after{
  display: none;
}
.miles-list__item.item2 span.year::before,
.miles-list__item.item4 span.year::before,
.miles-list__item.item6 span.year::before{
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  border-radius: 50%;
  border: 4px #117cdb solid;
  margin-bottom: 6px;
  background: #fff;
}

.miles-list__item.item3{
  margin-top: 34.64rem;
  padding-top: 3.25rem;
}
.miles-list__item.item3 img{
  height: 11.1875rem;
}
.miles-list__item.item5{
  padding-top: 1.25rem;
  margin-top: 30.1rem;
}
.miles-list__item.item5 img{
  height: 9.96875rem;
}
.miles-list__item.item6 img{
  height: 8.125rem;
}
.miles-list__item.item7{
  padding-top: 1.25rem;
  margin-top: 23.3rem;
}
.miles-list__item.item7 img{
  height: 8.58375rem;
}
.miles-list__item.itemover{
  margin-top: 5rem;
    padding-bottom: 6rem;
    margin-left: -2.5rem;
}
@media (max-width: 1200px){
  .miles-list__item.item1,
  .miles-list__item.item3,
  .miles-list__item.item5,
  .miles-list__item.item7{
    padding-top: 0;
    margin-top: calc(180 / 1500 * 100vw);
  }
  .miles-list__item.item2,
  .miles-list__item.item4,
  .miles-list__item.item6,
  .miles-list__item.item8{
    margin-top: calc(180 / 1500 * 100vw);
  }
  .miles-list__item.item2::after,
  .miles-list__item.item4::after,
  .miles-list__item.item6::after{
    height: calc(100% - 60px);
  }
  .miles-list__item.item2 span.year,
  .miles-list__item.item4 span.year,
  .miles-list__item.item6 span.year{
    top: -3.125rem;
    bottom: auto;
  }
  .miles-list__item.item2 span.year::after,
  .miles-list__item.item4 span.year::after,
  .miles-list__item.item6 span.year::after{
    display: block;
  }
  .miles-list__item.item2 span.year::before,
  .miles-list__item.item4 span.year::before,
  .miles-list__item.item6 span.year::before{
    display: none;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px #117cdb solid;
    margin-bottom: 6px;
    background: #fff;
  }
}
@media (max-width: 1100px){
  .miles-box__img{
    transform: translateY(93%);
  }
  .seven-item-carousel{
    padding-top: 80px;
  }
}
@media (max-width: 991px){
  .miles-box__img{
    transform: translateY(97%);
  }
  .seven-item-carousel{
    padding-top: 80px;
  }
}
@media (max-width: 768px){
  .miles-box__img{
    transform: translateY(108%);
  }
  .seven-item-carousel{
    padding-top: 80px;
  }
}
@media (max-width: 600px){
  .miles-box__img{
    transform: translateY(125%);
  }
  .seven-item-carousel{
    padding-top: 80px;
  }
}
@media (max-width: 480px){
  .whatwedo-top p{
    margin-top: 0;
    font-size: calc(24 / 480 * 100vw)
  }
  .whatwedo-bottom p{
    margin-bottom: 0;
    font-size: calc(24 / 480 * 100vw)
  }
  .vision .vision-box h3{
    font-size: calc(30 / 480 * 100vw)
  }
  .vision .vision-box p{
    font-size: calc(20 / 480 * 100vw)
  }
  .vision span{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc(60 / 480 * 100vw);
    width: calc(60 / 480 * 100vw);
    height: calc(60 / 480 * 100vw);
  }
  .vision span img{
    display: block;
    max-height: 50%;
  }
  .miles-box__img{
    transform: translateY(152%);
  }
  .seven-item-carousel{
    padding-top: 80px;
  }
}
/** working-section **/

.working-section{
  position: relative;
  padding: 7.0625rem 0px 5.625rem 0px;
}

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

.working-section .video-inner{
  position: relative;
  display: block;
  max-width: 39.375rem;
  width: 100%;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 3.75rem;
  padding: 4.625rem 2.8125rem 6.5rem 2.8125rem;
}

.working-section .video-inner .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
}

.working-section .video-inner .big-text{
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
  font-size: 6.875rem;
  line-height: 6.875rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
}

.working-section .video-inner h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}

.working-section .video-inner .video-btn{
  position: relative;
  display: block;
  text-align: center;
}

.working-section .video-inner .video-btn a{
  position: relative;
  display: inline-block;
  width: 4.875rem;
  height: 3.375rem;
  line-height: 3.625rem;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  color: #fff;
  background: var(--theme-color);
}

.working-block-one{
  position: relative;
  display: block;
  text-align: center;
  padding: 0.8125rem 1.25rem 0px 1.25rem;
  margin-bottom: 1.875rem;
}

.working-block-one:before{
  position: absolute;
  content: '';
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% - 40px);
}

.working-block-one .icon-box{
  position: absolute;
  left: 50%;
  top: -8.25rem;
  margin-left: -1.6875rem;
  width: 3.375rem;
  height: 3.375rem;
  line-height: 3.25rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.working-block:nth-child(2) .working-block-one .icon-box{
  top: -6.6875rem;
}

.working-block-one .icon-box:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.12);
  left: 1.5rem;
  top: 3.25rem;
  width: 2px;
  height: 4.875rem;
}

.working-block:nth-child(2) .working-block-one .icon-box:before{
  height: 3.3125rem;
}

.working-block:first-child .working-block-one .icon-box:after{
  position: absolute;
  content: '';
  border: 2px solid rgba(255, 255, 255, 0.12);
  left: 1.5rem;
  bottom: 3.25rem;
  width: 5.375rem;
  height: 4.9375rem;
  border-radius: 10px 0px 0px 0px;
  border-right: none;
  border-bottom: none;
}

.working-block:nth-child(2) .working-block-one .icon-box:after{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.12);
  left: 1.5rem;
  bottom: 3.25rem;
  width: 2px;
  height: 3.3125rem;
}

.working-block:last-child .working-block-one .icon-box:after{
  position: absolute;
  content: '';
  border: 2px solid rgba(255, 255, 255, 0.12);
  right: 1.5rem;
  bottom: 3.25rem;
  width: 5.375rem;
  height: 4.9375rem;
  border-radius: 0px 10px 0px 0px;
  border-left: none;
  border-bottom: none;
}

.working-block-one h6{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8125rem;
  color: var(--theme-color);
}

.working-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 2.125rem 1.875rem 2.0625rem 1.875rem;
}

.working-block-one .inner-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 10px;
}

.working-section .working-block:nth-child(2){
  margin-top: 6.25rem;
}

.tabs-box-2 .tab-2{
  position:relative;
  display:none;
}

.tabs-box-2 .tab-2.active-tab-2{
  display:block;  
}

.tabs-box-2 .tab-2{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box-2 .tab-2.active-tab-2{
  transform:scale(1) translateY(0px);
}


/** funding-section **/

.funding-section{
  position: relative;
  padding: 7.0625rem 0px 7.5rem 0px;
}

.funding-section .sec-title .icon-box{
  position: absolute;
  right: 0px;
  bottom: 6px;
  display: inline-block;
  width: 4.375rem;
  height: 4.375rem;
  line-height: 5.125rem;
  background: var(--theme-color);
  text-align: center;
  border-radius: 50%;
  font-size: 2.5rem;
  color: #fff;
}

.funding-section .sec-title .shape{
  position: absolute;
  right: 6.5625rem;
  bottom: 5px;
  width: 21.25rem;
  height: 3.125rem;
  background-repeat: no-repeat;
}

.funding-section .tab-btn-one .tab-btns li{
  position: relative;
  display: block;
  margin-bottom: 1.25rem;
}

.funding-section .tab-btn-one .tab-btns li:last-child{
  margin-bottom: 0px;
}

.funding-section .tab-btn-one .tab-btns li span{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: #a5b2af;
  font-weight: 500;
  background: #fff;
  border-radius: 2.5rem;
  cursor: pointer;
  padding: 7px 1.875rem;
  transition: all 500ms ease;
}

.funding-section .tab-btn-one .tab-btns li.active-btn span{
  color: #fff;
  background: var(--theme-color);
}

.funding-section .tab-btn-one{
  position: relative;
  padding-bottom: 12.875rem;
  margin-bottom: 2.125rem;
  border-bottom: 1px solid #c2d2cd;
}

.funding-section .payment-system h6{
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
}

.funding-section .payment-system p{
  margin-bottom: 1.5rem;
}

.funding-section .payment-system .card-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.funding-section .payment-system .card-list li:last-child{
  margin: 0px !important;
}

.funding-section .tab-btn-two{
  margin-bottom: 1.875rem;
}

.funding-section .tab-btn-two .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 1.875rem;
  padding-left: 2.1875rem;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: #6d7270;
  cursor: pointer;
  transition: all 500ms ease;
}

.funding-section .tab-btn-two .tab-btns li:last-child{
  margin: 0px !important;
}

.funding-section .tab-btn-two .tab-btns li.active-btn-2{
  color: var(--title-color);
}

.funding-section .tab-btn-two .tab-btns li:before{
  position: absolute;
  content: '';
  border: 1px solid #c2d2cd;
  width: 1.5625rem;
  height: 1.5625rem;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transition: all 500ms ease;
}

.funding-section .tab-btn-two .tab-btns li.active-btn-2:before{
  border-color: var(--theme-color);
}

.funding-section .tab-btn-two .tab-btns li:after{
  position: absolute;
  content: '';
  background: #c2d2cd;
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 50%;
  left: 7px;
  top: 7px;
  transition: all 500ms ease;
}

.funding-section .tab-btn-two .tab-btns li.active-btn-2:after{
  background: var(--theme-color);
}

.funding-section .tabs-content{
  position: relative;
  margin-left: 2.5rem;
}

.funding-section .content-box{
  position: relative;
  margin: 0px 0.9375rem;
}

.funding-section .content-box .inner-column,
.funding-section .content-box .trading-column{
  padding: 0px;
}

.funding-section .content-box .inner-box{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(-45deg, #132720 50%, #154534 100%);
  border-radius: 10px 0px 0px 10px;
  padding: 2.5rem 2.5rem 3.125rem 2.5rem;
  margin-right: -1.5rem;
}

.funding-section .content-box .inner-box .image-box{
  position: relative;
  display: block;
  margin-bottom: 0.8125rem;
}

.funding-section .content-box .inner-box .image-box img{
  width: 100%;
}

.funding-section .content-box .inner-box h2{
  position: relative;
  display: block;
  font-size: 3.375rem;
  line-height: 4rem;
  color: #fff;
  margin-bottom: 6px;
}

.funding-section .content-box .inner-box h2 span{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
}

.funding-section .content-box .inner-box p{
  color: #a5b2af;
  margin-bottom: 1.75rem;
}

.funding-section .content-box .inner-box .theme-btn{
  color: #fff;
  border: 2px solid var(--theme-color);
  padding: 0.8125rem 2.0625rem;
}

.funding-section .content-box .inner-box .theme-btn:hover{
  background: var(--theme-color);
}

.funding-section .content-box .inner-box .theme-btn:before{
  background: var(--theme-color);
}

.funding-section .content-box .trading-list{
  position: relative;
  display: block;
  margin-left: 1.5rem;
  border: 1px solid #c2d2cd;
  border-radius: 0px 10px 10px 0px;
  overflow: hidden;
}

.funding-section .content-box .trading-list li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 3.75rem;
  font-family: var(--title-font);
  color: #6d7270;
  background: #cedfda;
  padding-left: 3rem;
  margin-bottom: 5px;
}

.funding-section .content-box .trading-list li:last-child{
  margin-bottom: 0px;
}

.funding-section .content-box .trading-list li:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 1.8125rem;
  top: 1.625rem;
}

.funding-section .content-box .trading-list li span{
  float: right;
  width: 10rem;
  background: #d8e6e2;
  font-weight: 500;
  color: var(--title-color);
  padding-left: 1.875rem;
}

.funding-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 14.6875rem;
  width: 52.8125rem;
  height: 17.0625rem;
  background-repeat: no-repeat;
}


/** pairs-section **/

.pairs-section{
  position: relative;
}

.pairs-section .inner-container{
  position: relative;
  max-width: 35.625rem;
  width: 100%;
  margin: 0 auto;
}

.pairs-block-one{
  position: relative;
  display: block;
  background: #fff;
  padding: 1.625rem 1.875rem 1.4375rem 1.875rem;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
}

.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: 3.125rem;
}

.pairs-block-one .inner-box .left-column .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 5px;
  width: 1.875rem;
  height: 2.625rem;
  line-height: 2.875rem;
  font-size: 1.25rem;
  background: #6aa8e0;
  text-align: center;
  border-radius: 2.5rem;
  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: 0.875rem;
  line-height: 1.5rem;
  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: 1.25rem;
  color: #a5b2af;
  top: 2px;
}

.pairs-block-one .inner-box .left-column .currency{
  position: relative;
  display: block;
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

.pairs-block-one .inner-box .right-column{
  position: relative;
  display: flex;
  align-items: center;
}

.pairs-block-one .inner-box .right-column .text{
  margin-right: 2.5rem;
  text-align: right;
}

.pairs-block-one .inner-box .right-column .currency-rate{
  position: relative;
  display: block;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  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: 0.9375rem;
  line-height: 1.5rem;
}

.pairs-block-one .inner-box .right-column .theme-btn{
  border: 2px solid var(--theme-color);
  color: var(--title-color);
  padding: 7px 1.5rem;
}

.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: 2.5rem;
}

.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: 14.6875rem;
}

.pairs-section .image-layer .image-2{
  position: absolute;
  right: 0px;
  bottom: 16.875rem;
}


/** chooseus-section **/

.chooseus-section{
  position: relative;
}

.chooseus-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 3.125rem 1.5625rem 2.375rem 1.5625rem;
  text-align: center;
}

.chooseus-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 7.625rem;
  height: 7.625rem;
  line-height: 7.625rem;
  text-align: center;
  margin-bottom: 2.5rem;
  z-index: 1;
}

.chooseus-block-one .inner-box .icon-box .icon{
  position: relative;
  display: inline-block;
}

.chooseus-block-one .inner-box .icon-box .icon img{
  display: inline-block;
  max-width: 100%;
}

.chooseus-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 7.625rem;
  height: 7.625rem;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  transform: rotate(10deg);
}

.chooseus-block-one .inner-box .icon-box:after{
  position: absolute;
  content: '';
  border: 2px solid #6aa8e0;
  width: 7.625rem;
  height: 7.625rem;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  transform: rotate(-10deg);
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover .icon-box:after{
  z-index: -1;
  background: #6aa8e0;
}

.chooseus-block-one .inner-box h3{
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.375rem;
  line-height: 2rem;
  border-radius: 2.5rem;
  overflow: hidden;
  margin-bottom: 1.75rem;
  padding: 0.875rem 1.875rem;
  z-index: 1;
}

.chooseus-block-one .inner-box h3:before{
  position: absolute;
  content: '';
  background: linear-gradient(90deg, #6aa8e0 10%, #26c48c 50%, #6aa8e0 90%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.chooseus-block-one .inner-box h3:after{
  position: absolute;
  content: '';
  background: var(--theme-color );
  width: 100%;
  height: calc(100% - 2px);
  left: 0px;
  top: 1px;
  z-index: -1;
}

.chooseus-section .owl-dots{
  position: absolute;
  top: -5.375rem;
  right: 2.625rem;
}

.dots-style-one .owl-dots .owl-dot span{
  display: none;
}

.dots-style-one .owl-dots .owl-dot{
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  margin: 0px 0px;
  margin-right: 1.875rem;
  transition: all 500ms ease;
}

.dots-style-one .owl-dots .owl-dot:last-child{
  margin: 0px !important;
}

.dots-style-one .owl-dots .owl-dot.active,
.dots-style-one .owl-dots .owl-dot:hover{
  background: var(--theme-color) !important;
}

.chooseus-section .owl-nav{
  position: absolute;
  top: -5.25rem;
  right: -0.75rem;
  width: 12.125rem;
}

.chooseus-section .nav-style-one .owl-nav button{
  position: absolute;
  top: 0px;
}

.nav-style-one .owl-nav button{
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button:hover{
  color: var(--theme-color) !important;
}

.chooseus-section .owl-nav button.owl-prev{
  left: 0px;
}

.chooseus-section .owl-nav button.owl-next{
  right: 0px;
}


/** testimonial-section **/

.testimonial-section{
  position: relative;
  background: var(--theme-color);
  padding: 5.625rem 0;
}

.testimonial-section .upper-box{
  position: relative;
  overflow: hidden;
  padding: 1.1875rem 2.5rem;
}

.testimonial-section .upper-box .left-content{
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-section .upper-box .left-content h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  padding-left: 2.5rem;
  margin-right: 1.5625rem;
}

.testimonial-section .upper-box .left-content h3 img{
  position: absolute;
  left: 0px;
  top: 0px;
}

.testimonial-section .upper-box .left-content h6{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
}

.testimonial-section .upper-box .left-content h6 span{
  font-family: var(--text-font);
  color: #6d7270;
  font-weight: 400;
}

.testimonial-section .upper-box .right-content{
  position: relative;
  padding: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-section .upper-box .right-content:hover{
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.testimonial-section .upper-box .right-content h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
}

.testimonial-section .upper-box .right-content h5 i {
  margin-right: 0.75rem;
  font-size: 1.5rem;
}

.testimonial-section .upper-box .right-content h5 img{
  position: absolute;
  left: 0px;
  top: 0px;
}

.testimonial-section .upper-box .right-content .link{
  /*position: absolute;
  top: -6px;
  right: 0px;*/
}

.testimonial-section .upper-box .right-content .link a{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.875rem;
  background: #fff;
  text-align: center;
  font-size: 1.25rem;
  color: var(--title-color);
  border-radius: 2.5rem;
}

.testimonial-section .upper-box .right-content .link a:hover{
  color: #fff;
  background: var(--theme-color);
}


.testimonial-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  padding: 2rem 2.5rem 2.0625rem 2.5rem;
  box-shadow: 0px 1.875rem 1.875rem 0px rgba(0, 0, 0, 0.06);
}

.testimonial-block-one .inner-box .author-box{
  position: relative;
  display: block;
  padding-bottom: 1.1875rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid #dbe5e2;
}

.testimonial-block-one .inner-box .author-box .icon-box{
  position: absolute;
  top: -2.125rem;
  right: 4.6875rem;
  font-size: 7.8125rem;
  color: #6aa8e0;
}

.testimonial-block-one .inner-box .author-box .thumb-box{
  position: absolute;
  right: 0px;
  bottom: -1.6875rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

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

.testimonial-block-one .inner-box .author-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 1px;
}

.testimonial-block-one .inner-box .author-box .designation{
  position: relative;
  display: block;
  color: var(--theme-color);
}

.testimonial-block-one .inner-box .text-box h5{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 2.125rem;
  margin-bottom: 0.9375rem;
}

.testimonial-block-one .inner-box .text-box h5 img{
  position: absolute;
  top: -6px;
  right: 0px;
}

.testimonial-block-one .inner-box .text-box p{
  margin-bottom: 1.5rem;
}

.testimonial-block-one .inner-box .text-box .rating{
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-block-one .inner-box .text-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  margin-right: 5px;
  color: var(--theme-color);
}

.testimonial-block-one .inner-box .text-box .rating li:last-child{
  margin: 0px !important;
}

.testimonial-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.testimonial-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.testimonial-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.testimonial-section .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 3.5rem;
}

.testimonial-section .dots-style-one .owl-dots .owl-dot{
  background-color: #c6d5d0;
}

.testimonial-section .owl-nav{
  position: absolute;
  display: block;
  max-width: 12.125rem;
  width: 100%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  bottom: 1.5rem;
  z-index: 1;
}

.testimonial-section .owl-nav button{
  color: var(--title-color);
}

.testimonial-section .owl-nav button.owl-prev{
  position: absolute;
  left: 0px;
  top: 0px;
}

.testimonial-section .owl-nav button.owl-next{
  position: absolute;
  right: 0px;
  top: 0px;
}


/** featured-section **/

.featured-section{
  position: relative;
  background: #6aa8e0;
  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: 22.5rem;
  width: 100%;
  padding: 24.375rem 0px 6.875rem 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: 2.5rem 1.875rem;
  margin-bottom: 1.875rem;
}

.featured-block-one .inner-box .clients-logo{
  position: relative;
  display: block;
  margin-bottom: 1.125rem;
}

.featured-block-one .inner-box p{
  margin-bottom: 1.4375rem;
}

.featured-block-one .inner-box a{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.875rem;
  background: #6aa8e0;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  color: var(--title-color);
}

.featured-block-one .inner-box a:hover{
  background: var(--theme-color);
  color: #fff;
}

.featured-section .content-box{
  position: relative;
  max-height: 45.625rem;
}

.featured-section .content-box .right-content{
  padding-top: 1.875rem;
}

.bx-viewport{
  min-height: 45.625rem !important;
}


/** news-section **/

.news-section{
  position: relative;
  padding: 7.0625rem 0px 5.625rem 0px;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 0.9375rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 1.875rem;
}

.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: 1.125rem 10px 10px 10px;
}

.news-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  padding-bottom: 1.0625rem;
  margin-bottom: 1.1875rem;
  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: 1.1875rem;
}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  margin-right: 2.125rem;
  padding-left: 1.4375rem;
  font-size: 1rem;
  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: 0.875rem;
}

.news-block-one .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: #c2d2cd;
  width: 3px;
  height: 0.875rem;
  right: -1.125rem;
  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: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 0.875rem;
  border-radius: 1.875rem;
  color: var(--theme-color);
  border: 1px solid #dbe5e2;
}

.news-block-one .inner-box .lower-content .lower-box a{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.75rem;
  font-size: 1.25rem;
  color: var(--title-color);
  border: 1px solid #dbe5e2;
  text-align: center;
  border-radius: 2.5rem;
}

.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: 6.5rem;
}

.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: 35.625rem;
  margin-right: 3.125rem;
}

.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: 3.375rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2.5rem;
  font-size: 1rem;
  color: #a5b2af;
  padding: 10px 11.875rem 10px 1.875rem;
  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: 4.125rem;
  line-height: 5.3125rem;
  color: #fff;
}

.footer-top .footer-top-content .subscriber-box{
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 3.125rem;
}

.footer-top .footer-top-content .subscriber-box .thumb-box{
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-right: -0.75rem;
}

.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: 3.25rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 0.875rem;
  font-family: var(--title-font);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background: var(--theme-color);
  border: 2px solid #152e25;
  border-radius: 2.5rem;
  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: 1rem;
  line-height: 1.625rem;
  color: #fff;
}

.main-footer .widget-section{
  position: relative;
  padding: 4.6875rem 0px 5.9375rem 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: 1.75rem;
}

.main-footer p{
  color: #a5b2af;
}

.main-footer .logo-widget p{
  margin-bottom: 2.0625rem;
}

.main-footer .logo-widget .link-box{
  position: relative;
  display: block;
  padding-left: 4.1875rem;
}

.main-footer .logo-widget .link-box .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.875rem;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  background: var(--theme-color);
  border-radius: 2.5rem;
}

.main-footer .logo-widget .link-box h6{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-footer .logo-widget .link-box h6 a{
  position: relative;
  display: inline-block;
  color: #fff;
  padding-right: 1.625rem;
}

.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: 1.25rem;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 1.25rem;
}

.main-footer .widget-title h3{
  font-size: 1.375rem;
  line-height: 2rem;
  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: 1.75rem;
}

.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: 1.875rem;
  top: 10px;
  transition: all 500ms ease;
}

.main-footer .links-widget .links-list li a:hover:before{
  color: var(--theme-color);
}

.main-footer .contact-widget{
  
}

.contact-widget .social-links{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.contact-widget .social-links li{
  margin-right: 10px;
}

.contact-widget .social-links li:last-child{
  margin: 0px !important;
}

.contact-widget .social-links li a{
  position: relative;
  display: inline-block;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.75rem;
  background: #fff;
  text-align: center;
  font-size: 1.25rem;
  color: var(--title-color);
  border-radius: 2.5rem;
}

.contact-widget .social-links li a:hover{
  color: #fff;
  background: var(--theme-color);
}

.contact-widget .download-list li{
  position: relative;
  display: block;
  margin-bottom: 0.9375rem;
}

.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: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2.5rem;
  padding: 0.78125rem 2.375rem;
  border: 1px solid #fff;
}

.main-footer .contact-widget .download-list li.app-store a i{
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  margin-right: 9px;
  top: 5px;
}

.main-footer .contact-widget .download-list li.play-store a{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  border-radius: 2.5rem;
  padding: 0.9375rem 2.375rem;
  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: 1.4375rem 0px;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom .bottom-inner p a{
  color: var(--theme-color);
}

.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: 1.4375rem;
}

.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: 1.0625rem;
  right: -0.875rem;
  bottom: 1px;
  color: #a5b2af;
}

.footer-bottom .bottom-inner .footer-nav li:last-child:before{
  display: none;
}



/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/


/** header-style-two **/

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

.header-top-two{
  position: relative;
  width: 100%;
  padding: 9px 0px;
  background: var(--theme-color);
}

.header-top-two .text h6{
  font-size: 1rem;
  line-height: 1.625rem;
  color: #fff;
  font-weight: 500;
}

.header-top-two .text h6 a{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
  padding-left: 1.5625rem;
  color: #fff;
}

.header-top-two .text h6 a:hover{
  text-decoration: underline;
}

.header-top-two .text h6 a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 1.25rem;
}

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

.header-style-two .language-box .icon-box{
  color: var(--theme-color);
}

.header-style-two .language-box .nice-select{
  color: #fff;
}

.header-style-two .nice-select .option{
  color: var(--title-color);
}

.header-style-two .language-box .nice-select:before{
  color: #a39695;
}

.header-style-two .language-box{
  margin-right: 4.0625rem;
}

.header-style-two .language-box:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.15);
  height: 1.5625rem;
  width: 1px;
  top: 2px;
  right: -1.875rem;
  transform: rotate(30deg);
}

.header-style-two .menu-right-content .login-box{
  position: relative;
  padding-right: 4.375rem;
}

.header-style-two .menu-right-content .login-box .icon-box{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 3.4375rem;
  height: 2.8125rem;
  line-height: 2.8125rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
}

.header-style-two .menu-right-content .login-box h6{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 2.8125rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-style-two .menu-right-content .login-box h6 a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.header-style-two .menu-right-content .login-box h6 a:hover{
  color: var(--theme-color);
}

.bg-color-3 {
  background: -webkit-linear-gradient(-45deg, #1c0e0e 50%, #621a1a 100%);
}

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

.header-style-two .sticky-header{
  background: -webkit-linear-gradient(-45deg, #1c0e0e 50%, #621a1a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/** banner-style-two **/

.banner-style-two{
  position: relative;
  padding: 15rem 7.5rem 12.5rem 7.5rem;
}

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

.banner-style-two .inner-box{
  position: relative;
  display: flex;
  align-items: center;
}

.banner-style-two .inner-box .content-box{
  position: relative;
  max-width: 35rem;
  width: 100%;
}

.banner-style-two .content-box h6{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  padding-left: 1.875rem;
  color: var(--theme-color);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.banner-style-two .content-box h6:before{
  position: absolute;
  content: '';
  background-image: url(../image/icon-19.png);
  width: 1.25rem;
  height: 0.75rem;
  left: 0px;
  top: 7px;
  background-repeat: no-repeat;
}

.banner-style-two .content-box h2{
  font-size: 4.375rem;
  line-height: 5.125rem;
  color: #fff;
  margin-bottom: 4.5rem;
}

.banner-style-two .content-box h2 span{
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 0.875rem;
}

.banner-style-two .content-box h2 span:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(0deg, #f84949 50%, #1d0f0f 100%);
  width: 100%;
  height: 10px;
  left: 0px;
  bottom: 0px;
  border-radius: 10px;
}

.banner-style-two .content-box h5{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.125rem;
}

.banner-style-two .content-box .download-list{
  position: relative;
  display: flex;
  align-items: center;
}

.banner-style-two .content-box .download-list li{
  margin-right: 10px;
}

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

.banner-style-two .content-box .download-list li a{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.375rem;
  background: #fff;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  color: var(--title-color);
}

.banner-style-two .content-box .download-list li a img{
  position: relative;
  display: inline-block;
}

.banner-style-two .content-box .download-list li:first-child a{
  line-height: 2.75rem;
}

.banner-style-two .content-box .download-list li a:hover{
  color: #fff;
  background: var(--theme-color);
}

.banner-style-two .image-box{
  position: relative;
  display: block;
}

.banner-style-two .image-box .image{
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.banner-style-two .image-box .image img{
  width: 100%;
  border-radius: 50%;
}

.banner-style-two .image-box .image .logo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.banner-style-two .image-box .image-content{
  position: absolute;
  top: 3.75rem;
  right: -10rem;
  background: #fff;
  width: 20.625rem;
  border-radius: 10px;
  padding: 1.5rem 1.875rem 1.375rem 1.875rem;
}

.banner-style-two .image-box .image-content h6{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.banner-style-two .image-box .image-content h3{
  position: relative;
  display: block;
  font-size: 1.625rem;
  line-height: 2rem;
  color: var(--theme-color);
}

.banner-style-two .image-box .image-content p{
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--title-color);
  padding-left: 1.125rem;
}

.banner-style-two .image-box .image-content p i{
  position: absolute;
  left: 0px;
  top: 3px;
  color: #53b764;
  font-size: 1.125rem;
}

.banner-style-two .image-box .image-content .bar{
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
}

.banner-style-two .text-inner{
  position: absolute;
  right: 0px;
  bottom: 0px;
  text-align: right;
}

.banner-style-two .text-inner p{
  color: #e5dbd8;
  margin-bottom: 2.0625rem;
}

.banner-style-two .text-inner .theme-btn{
  background: #fff;
  color: var(--title-color);
}

.banner-style-two .text-inner .theme-btn:hover{
  color: #fff;
  background: var(--theme-color);
}

.banner-style-two .text-inner .theme-btn:before{
  background: var(--theme-color);
}

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


/** profit-calculator **/

.profit-calculator{
  position: relative;
  padding: 7.5rem 0px;
}

.profit-calculator .profit-inner{
  position: relative;
  display: block;
  padding: 3.75rem 0px 3.75rem 6.25rem;
}

.profit-calculator .profit-inner .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 2.125rem 2.5rem 2.5rem 2.5rem;
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.profit-calculator .profit-inner .inner-box h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.0625rem;
}

.profit-calculator .profit-inner .inner-box #accountSizeLabel,
.profit-calculator .profit-inner .inner-box #profitRateLabel{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: var(--title-font);
  font-weight: 600;
  color: #7d7373;
  background: #faf4f2;
  border-radius: 2.5rem;
  padding: 0.6875rem 2.625rem;
  margin-bottom: 1.5625rem;
}

.profit-calculator .profit-inner .inner-box .currency-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: #a59897;
  margin-top: 10px;
}

.profit-calculator .profit-inner .account-box{
  margin-bottom: 0.9375rem;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:10px;
  border: 1px solid #e7e1e1;
  border-radius: 1.5625rem;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  background: var(--theme-color);
  width:0px;
  height:10px;
  border-radius: 1.5625rem;
  top: -1px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box .bar .line{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.progress-box .bar .line span{
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #e7e1e1;
}

.progress-box .bar .line span.line-1{
  left: 40%;
}

.progress-box .bar .line span.line-2{
  left: 60%;
}

.progress-box .bar .line span.line-3{
  left: 80%;
}

.profit-calculator .profit-inner .profit-box .progress-box .bar-inner{
  height: 1rem;
  top: -4px;
}

.profit-calculator .profit-inner .profit-box .progress-box .bar-inner:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1rem;
  background-repeat: repeat-x;
  background-image: url(../image/line-1.png);
}

.profit-calculator .profit-inner .profit-box{
  margin-bottom: 1.25rem;
}

.profit-calculator .profit-inner .btn-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profit-calculator .profit-inner .btn-box h3{
  position: relative;
  display: inline-block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: #fff;
  background: #1c0e0e;
  border-radius: 2.5rem;
  padding: 7px 2.0625rem;
  text-align: center;
}

.profit-calculator .profit-inner .btn-box h3 span{
  font-size: 1rem;
  line-height: 1.25rem;
}

.profit-calculator .profit-inner .btn-box .theme-btn{
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}

.profit-calculator .profit-inner .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 29.375rem;
  height: 100%;
  border-radius: 15.625rem;
  background: -webkit-linear-gradient(-90deg, #f84949 0%, #faf4f2 100%);
}

.profit-calculator .profit-inner .big-text{
  position: absolute;
  left: 2.6875rem;
  top: 0px;
  height: 100%;
  text-align: center;
  font-size: 3.75rem;
  line-height: 4.375rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  writing-mode: vertical-lr;
}

.profit-calculator .content-box{
  position: relative;
  display: block;
  padding-left: 6.25rem;
}

.profit-calculator .content-box .text-box p{
  margin-bottom: 1.8125rem;
}

.profit-calculator .content-box .sec-title{
  margin-bottom: 1.9375rem;
}

.list-style-two li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 1.5625rem;
}

.list-style-two li:last-child{
  margin-bottom: 0px;
}

.list-style-two li:before{
  position: absolute;
  content: "\f117";
  font-family: 'flaticon';
  font-size: 1.125rem;
  left: 0px;
  top: 1px;
  color: var(--theme-color);
}

.bg-color-4{
  background: #faf4f2;
}



#accountSizeRange,
#profitRateRange{
  width: 100%;
  height: 10px;
}

#result{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-top: 10px;
}


.profit-inner input[type="range"] {
  -webkit-appearance: none;
  appearance: none; 
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 1.5625rem;
}


.profit-inner input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  background: #fff;
  border: 1px solid #e7e1e1;
  border-radius: 1.5625rem;
}


.profit-inner input[type="range"]::-moz-range-track {
  height: 10px;
  background: #fff;
  border: 1px solid #e7e1e1;
  border-radius: 1.5625rem;
}


.profit-inner input[type="range"]::-webkit-slider-thumb {
  position: relative;
  top: -1px;
  -webkit-appearance: none;
  appearance: none; 
  height: 0.6875rem;
  width: 0.6875rem;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
  box-shadow: -25.4375rem 0 0 25rem var(--theme-color);
}


.profit-inner input[type="range"]::-moz-range-thumb {
  position: relative;
  top: -1px;
  height: 0.6875rem;
  width: 0.6875rem;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  box-shadow: -25.4375rem 0 0 25rem var(--theme-color);
}


/** pricing-section **/

.pricing-section{
  position: relative;
  padding: 7.5rem 0px 5.625rem 0px;
}

.pricing-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 1.875rem;
}

.pricing-block-one .inner-box .currency-box{
  position: relative;
  padding: 0.75rem 1.5625rem;
  border-bottom: 1px solid #e7e1e1;
}

.pricing-block-one .inner-box .currency-box:before{
  position: absolute;
  content: '';
  left: 50%;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #e7e1e1;
}

.pricing-block-one .inner-box .currency-box:after{
  position: absolute;
  content: "\f118";
  font-family: 'flaticon';
  background: #fff;
  width: 2.25rem;
  height: 1.625rem;
  line-height: 1.625rem;
  font-size: 1.25rem;
  border: 1px solid #e7e1e1;
  color: #a8aaaf;
  border-radius: 1.25rem;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.pricing-block-one .inner-box .currency-box .list-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-block-one .inner-box .currency-box .list-item li{
  position: relative;
  display: inline-block;
  padding-left: 2.25rem;
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-block-one .inner-box .currency-box .list-item li img{
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 50%;
}

.pricing-block-one .inner-box .content-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e7e1e1;
  padding: 1.125rem 1.5625rem;
}

.pricing-block-one .inner-box .content-box .list-item li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--title-color);
}

.pricing-block-one .inner-box .content-box .list-item li span{
  float: right;
}

.pricing-block-one .inner-box .content-box .list-item li:last-child span{
  float: none;
}

.pricing-block-one .inner-box .content-box .list-item li .green{
  color: #51b662;
  font-size: 1.125rem;
  font-weight: 600;
}

.pricing-block-one .inner-box .content-box .list-item .vilote{
  color: #736ae2;
  font-size: 0.9375rem;
}

.pricing-block-one .inner-box .content-box .list-item .yellow{
  color: #fa8c1e;
  font-size: 0.9375rem;
}

.pricing-block-one .inner-box .content-box .list-item .red{
  font-size: 1.125rem;
  font-weight: 600;
  color: #ec404c;
}

.pricing-block-one .inner-box .content-box .list-item li a{
  position: absolute;
  top: 0.6875rem;
  right: 0px;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  text-align: center;
  padding: 2px 0.875rem;
  border-radius: 2.5rem;
  text-transform: uppercase;
  border: 2px solid var(--theme-color);
  z-index: 1;
}

.pricing-block-one .inner-box .content-box .list-item li a:hover{
  color: #fff;
  background: var(--theme-color);
}

.pricing-block-one .inner-box .graph-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 1.25rem;
  min-height: 4.5rem;
}

.pricing-section .sec-title{
  margin-bottom: 0px;
  margin-right: 5.3125rem;
}

.pricing-section .sec-title h2{
  margin-bottom: 0.9375rem;
}

.pricing-section .content-inner{
  position: relative;
  display: block;
  border-radius: 10px;
  padding: 2.6875rem 2.5rem;
  margin-bottom: 1.875rem;
}

.pricing-section .content-inner h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: #fff;
  margin-bottom: 1.375rem;
}

.pricing-section .content-inner .theme-btn{
  color: #fff;
}

.pricing-section .content-inner .list-item li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #a59897;
  padding-left: 1.6875rem;
  margin-bottom: 0.875rem;
}

.pricing-section .content-inner .list-item li:last-child{
  margin-bottom: 0px;
}

.pricing-section .content-inner .list-item li:before{
  position: absolute;
  content: "\f119";
  font-family: 'flaticon';
  font-size: 1.125rem;
  left: 0px;
  top: 2px;
  color: var(--theme-color);
}


/** funding-style-two **/

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

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

.funding-style-two .funding-table {
  min-width: 73.125rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.funding-style-two h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.375rem;
}

.funding-style-two .tab-btns{
  position: relative;
  max-width: 60.625rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.funding-style-two .tab-btns:before{
  position: absolute;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.875rem;
  width: 100%;
  height: 1rem;
  left: 0px;
  top: 0px;
}

.funding-style-two .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  width: 20%;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: #a59897;
  padding-top: 2rem;
  cursor: pointer;
  transition: all 500ms ease;
}

.funding-style-two .tab-btns li:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 1rem;
  left: 0px;
  top: 0px;
  background: var(--theme-color);
  border-radius: 1.875rem;
  transition: all 500ms ease;
}

.funding-style-two .tab-btns li.active-btn:before{
  width: 100%;
}

.funding-style-two .tab-btns li:after{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.12);
  width: 1px;
  height: 1rem;
  top: 0px;
  right: 0px;
  transition: all 500ms ease;
}

.funding-style-two .tab-btns li:last-child:after{
  display: none;
}

.funding-style-two .tab-btns li.active-btn:after{
  opacity: 0;
}

.funding-style-two .funding-table .title-header{
  position: relative;
  display: block;
  padding: 4px 1.875rem 4.25rem 0px;
}

.funding-style-two .funding-table .title-header .title{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: #a59897;
  font-weight: 500;
  transform: rotate(-20deg);
  margin-bottom: 9px;
}

.funding-style-two .funding-table .title-header .shape{
  position: relative;
  display: block;
  text-align: right;
}

.funding-style-two .funding-table .title-box{
  position: relative;
  display: block;
  background: #fff;
  text-align: center;
  padding: 1.4375rem 1.875rem 1.5rem 1.875rem;
}

.funding-style-two .funding-table th:nth-child(2) .title-box{
  border-top-left-radius: 10px;
}

.funding-style-two .funding-table th:nth-child(3) .title-box{
  background: var(--theme-color);
}

.funding-style-two .funding-table th:nth-child(4) .title-box{
  border-top-right-radius: 10px;
}

.funding-style-two .funding-table th:nth-child(3) .title-box .title{
  color: #fff;
}

.funding-style-two .funding-table th:nth-child(3) .title-box p{
  color: #f4e0e0;
  border-color: #ff7979;
}

.funding-style-two .funding-table th:nth-child(3) .title-box a{
  color: #fff;
}

.funding-style-two .funding-table .title-box .title{
  position: relative;
  display: block;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 0px;
}

.funding-style-two .funding-table .title-box p{
  position: relative;
  display: block;
  padding-bottom: 1.125rem;
  margin-bottom: 1.1875rem;
  border-bottom: 1px solid #e7e1e1;
}

.funding-style-two .funding-table .title-box a{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--title-color);
  text-transform: uppercase;
}

.funding-style-two .funding-table .title-box a span{
  position: relative;
  padding-left: 1.5rem;
}

.funding-style-two .funding-table .title-box a span:before{
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 1.25rem;
  left: 0px;
  top: -3px;
}

.funding-style-two .funding-table tr{
  margin-bottom: 5px;
}

.funding-style-two .funding-table tr:last-child{
  margin-bottom: 0px;
}

.funding-style-two .funding-table tr td{
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.875rem;
  border-right: none;
}

.funding-style-two .funding-table tr td:last-child{
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.funding-style-two .funding-table tr:last-child td:last-child{
  border-bottom-right-radius: 10px;
}

.funding-style-two .funding-table tr:last-child td:first-child{
  border-bottom-left-radius: 10px;
}

.funding-style-two .funding-table tr td h5{
  font-size: 1rem;
  line-height: 1.625rem;
  color: #a59897;
  font-weight: 500;
}

.funding-style-two .funding-table tr td:first-child{
  border: none;
  background: #2e2121;
  text-align: left;
}

.funding-style-two .funding-table tr td h6{
  font-size: 1rem;
  line-height: 1.625rem;
  color: #fff;
  font-weight: 400;
  padding-left: 1.125rem;
}

.funding-style-two .funding-table tr td h6:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 8px;
  height: 8px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

.funding-style-two .funding-table tr:first-child td:first-child{
  border-top-left-radius: 10px;
}


/** working-style-two **/

.working-style-two{
  position: relative;
  padding: 7.0625rem 0px 5.625rem 0px;
}

.working-style-two .sec-title .video-inner{
  position: absolute;
  right: 0px;
  bottom: 1.6875rem;
  padding-left: 5.875rem;
}

.working-style-two .sec-title .video-inner a{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: -5px;
  width: 4.875rem;
  height: 3.375rem;
  line-height: 3.5rem;
  text-align: center;
  border-radius: 3.125rem;
  border: 1px solid var(--theme-color);
  font-size: 1.25rem;
  color: var(--theme-color);
}

.working-style-two .sec-title .video-inner h5{
  display: block;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
}

.working-block-two .inner-box{
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 1.875rem;
}

.working-block-two .inner-box .text-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.06);
  padding: 1.75rem 1.25rem 1.8125rem 1.25rem;
}

.working-block:nth-child(odd) .working-block-two .inner-box .text-box{
  margin-bottom: 3.75rem;
}

.working-block-two .inner-box .text-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 10px;
}

.working-block-two .inner-box .decore{
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 2.125rem;
  border: 2px solid #1c0e0e;
  background: #faf4f2;
  border-radius: 1.875rem;
}

.working-block:nth-child(odd) .working-block-two .inner-box .decore{
  margin-bottom: 1.5625rem;
}

.working-block:nth-child(even) .working-block-two .inner-box .decore{
  margin-bottom: 3.75rem;
}

.working-block-two .inner-box .decore:before{
  position: absolute;
  content: '';
  height: 1.25rem;
  width: 0.875rem;
  background: var(--theme-color);
  border-radius: 1.25rem;
  left: 3px;
  top: 5px;
}

.working-block-two .inner-box h6{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #ede4e1;
  border-radius: 1.875rem;
  padding: 0.8125rem 1.5625rem;
}

.working-block-two .inner-box h6:before{
  position: absolute;
  content: '';
  background: #ede4e1;
  width: 1.125rem;
  height: 10px;
  left: 50%;
  transform: translate(-50%);
}

.working-block:nth-child(odd) .working-block-two .inner-box h6:before{
  top: -10px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.working-block:nth-child(even) .working-block-two .inner-box h6:before{
  bottom: -10px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.working-block:nth-child(odd) .working-block-two .inner-box h6{
  margin-bottom: 1.875rem;
}

.working-block:nth-child(even) .working-block-two .inner-box .icon-box{
  margin-bottom: 2.5rem;
}

.working-block:nth-child(even) .working-block-two .inner-box h6{
  margin-bottom: 1.5625rem;
}

.working-style-two .inner-container{
  position: relative;
}

.working-style-two .inner-container .shape{
  position: absolute;
  top: 9.375rem;
  width: 102.5rem;
  height: 6.25rem;
  background-repeat: no-repeat;
  background-position: center;
}
.working-style-two .inner-container .linetime{
  padding: 0 8.125rem;
}

/** offer-section **/

.offer-section{
  position: relative;
}

.offer-section .tab-btns{
  position: relative;
  display: block;
  margin-left: 0.9375rem;
}

.offer-section .tab-btns:before{
  position: absolute;
  content: '';
  background: #e7e1e1;
  width: 1px;
  height: calc(100% - 40px);
  left: 0px;
  top: 1.25rem;
}

.offer-section .tab-btns li{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: var(--title-font);
  color: #a59897;
  font-weight: 600;
  padding: 1rem 0px 1rem 2.1875rem;
  border-bottom: 1px solid #e7e1e1;
  cursor: pointer;
  transition: all 500ms ease;
}

.offer-section .tab-btns li:last-child{
  border-bottom: none;
}

.offer-section .tab-btns li.active-btn{
  color: var(--title-color);
}

.offer-section .tab-btns li:before{
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  text-align: center;
  border: 1px solid #e7e1e1;
  background: #ffffff;
  border-radius: 50%;
  left: -0.9375rem;
  top: 0.9375rem;
  font-size: 0.875rem;
  transition: all 500ms ease;
}

.offer-section .tab-btns li.active-btn:before{
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

.offer-section .tab-btn-box{
  margin-bottom: 4.625rem;
}

.offer-section .left-content{
  position: relative;
  margin-top: -1rem;
}

.offer-section .left-content .inner-box{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(-45deg, #1c0e0e 50%, #621a1a 100%);
  padding: 1.5rem 1.875rem 1.3125rem 1.875rem;
  border-radius: 10px;
}

.offer-section .left-content .inner-box h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
  padding-bottom: 0.75rem;
  margin-bottom: 1.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-section .left-content .inner-box p{
  position: relative;
  display: block;
  color: #a59897;
  line-height: 1.5rem;
  padding-left: 3.25rem;
  margin-bottom: 0.8125rem;
}

.offer-section .left-content .inner-box p img{
  position: absolute;
  left: 0px;
  top: 4px;
}

.offer-section .left-content .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: #fff;
}

.offer-section .left-content .inner-box h3 span{
  font-weight: 200;
}

.offer-section .content-box{
  position: relative;
  display: block;
  margin-right: -1.875rem;
}

.offer-section .content-box .text-box{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(0deg, #faf4f2 0%, #fff 100%);
  border: 1px solid #e7e1e1;
  border-radius: 10px;
  padding: 2.4375rem 2.8125rem 2.4375rem 2.625rem;
}

.offer-section .content-box .text-box h3{
  position: relative;
  display: block;
  font-size: 1.625rem;
  line-height: 2.125rem;
  margin-bottom: 0.9375rem;
}

.offer-section .content-box .text-box p{
  margin-bottom: 1.3125rem;
}

.offer-section .content-box .text-box a{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--title-color);
  text-transform: uppercase;
}

.offer-section .content-box .text-box a:hover{
  color: var(--theme-color);
}

.offer-section .content-box .text-box a span{
  position: relative;
  padding-left: 1.5rem;
}

.offer-section .content-box .text-box a span:before{
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 1.25rem;
  left: 0px;
  top: -3px;
}

.offer-section .content-box .image-box{
  position: relative;
  display: block;
  border-radius: 10px;
}

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

.offer-section .right-content{
  position: relative;
  display: block;
  border: 1px solid #e7e1e1;
  border-radius: 10px;
  padding: 1.1875rem;
  margin-left: -1px;
}

.offer-section .right-content .text-box{
  position: relative;
  display: block;
  background: var(--theme-color);
  border-radius: 10px;
  padding: 1.1875rem 1.5625rem 1.125rem 1.5625rem;
  margin-bottom: 1.25rem;
}

.offer-section .right-content .image-box{
  position: relative;
  display: block;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
}

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

.offer-section .right-content .text-box h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
}

.offer-section .right-content .text-box p{
  color: #f4e0e0;
}


/** platform-section **/

.platform-section{
  position: relative;
}

.platform-section .image-box{
  position: relative;
  display: block;
  margin-right: 4.375rem;
}

.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: -3.75rem;
  top: 4.0625rem;
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.10);
  padding: 0.75rem 1.1875rem;
}

.platform-section .image-box .text-1 h6{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  padding-left: 1.75rem;
}

.platform-section .image-box .text-1 h6:before{
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  font-size: 1.125rem;
  left: 0px;
  top: 0px;
  font-weight: 400;
  color: var(--theme-color);
}

.platform-section .image-box .text-2{
  position: absolute;
  right: -2.5rem;
  top: 14.6875rem;
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.10);
  padding: 0.75rem 1.1875rem;
}

.platform-section .image-box .text-2 h6{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  padding-left: 1.75rem;
}

.platform-section .image-box .text-2 h6:before{
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  font-size: 1.125rem;
  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: 2rem;
}

.platform-section .content-box .text-box p{
  color: #7d7373;
  margin-bottom: 2.1875rem;
}

.platform-section .content-box .list-style-three li{
  position: relative;
  display: inline-block;
}

.list-style-three li{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 0.875rem;
  padding-left: 1.25rem;
  padding-right: 1.5rem;
}

.list-style-three li span{
  position: absolute;
  font-size: 1rem;
  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: 0.875rem;
  left: 2px;
  top: 6px;
}

.platform-section .content-box .list-style-three{
  margin-bottom: 2.625rem;
}

.platform-section .bg-color{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 39.375rem;
  height: 100%;
  background: -webkit-linear-gradient(0deg, #fefcfb 0%, #fdcccd 100%);
}

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


/** chooseus-style-two **/

.chooseus-style-two{
  background: linear-gradient(65deg, #0b152d, #6aa8e0);
  position: relative;
  padding: 7.0625rem 0px 4rem 0px;
}

.chooseus-style-two .sec-title{
  margin-bottom: 6.3125rem;
}

.chooseus-style-two .left-column{
  position: relative;
  display: block;
  text-align: right;
}

.chooseus-block-two .inner-box{
  position: relative;
  display: block;
  margin-bottom: 6.6875rem;
}

.chooseus-style-two .left-column .chooseus-block-two .inner-box{
  padding-right: 5.9375rem;
}

.chooseus-style-two .right-column .chooseus-block-two .inner-box{
  padding-left: 5.9375rem;
}

.chooseus-block-two .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  top: 5px;
  width: 4.375rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
}

.chooseus-style-two .left-column .chooseus-block-two:first-child .inner-box .icon-box:before{
  position: absolute;
  content: '';
  left: 2.1875rem;
  bottom: 5rem;
  width: 14.6875rem;
  height: 3.625rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-radius: 10px 10px 0px 0px;
}

.chooseus-style-two .left-column .chooseus-block-two:last-child .inner-box .icon-box:before{
  position: absolute;
  content: '';
  left: 2.1875rem;
  top: 5rem;
  width: 14.6875rem;
  height: 3.625rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  border-radius: 0px 0px 10px 10px;
}

.chooseus-style-two .right-column .chooseus-block-two:first-child .inner-box .icon-box:before{
  position: absolute;
  content: '';
  right: 2.1875rem;
  bottom: 5rem;
  width: 14.6875rem;
  height: 3.625rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-radius: 10px 10px 0px 0px;
}

.chooseus-style-two .right-column .chooseus-block-two:last-child .inner-box .icon-box:before{
  position: absolute;
  content: '';
  right: 2.1875rem;
  top: 5rem;
  width: 14.6875rem;
  height: 3.625rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  border-radius: 0px 0px 10px 10px;
}

.chooseus-style-two .left-column .chooseus-block-two .inner-box .icon-box{
  right: 0px;
}

.chooseus-style-two .right-column .chooseus-block-two .inner-box .icon-box{
  left: 0px;
}

.chooseus-block-two .inner-box .icon-box .icon-bg{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.chooseus-block-two .inner-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #fff;
  margin-bottom: 0.6875rem;
}

.chooseus-block-two .inner-box p{
  color: #a59897;
}

.chooseus-style-two .logo-box{
  position: relative;
  display: block;
  margin: 0px 3rem;
  padding: 5.1875rem 5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  top: 5px;
}

.chooseus-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: center;
  animation: slide 60s linear infinite;
  -webkit-animation: slide 60s linear infinite;
  filter: grayscale(100%);
  opacity: 0.6;
}

@keyframes slide{
  from { background-position: 0 0; }
    to { background-position: 120rem 0; }
}

@-webkit-keyframes slide{
  from { background-position: 0 0; }
    to { background-position: 120rem 0; }
}


/** faq-section **/

.faq-section{
  position: relative;
}

.faq-section .image-box{
  position: relative;
  display: block;
  margin-right: 5.625rem;
}

.faq-section .image-box .image{
  position: relative;
  display: block;
  border-radius: 0px 0px 15.625rem 15.625rem;
  overflow: hidden;
}

.faq-section .image-box .image:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 100%;
  height: calc(100% - 125px);
  left: 0px;
  bottom: 0px;
  border-radius: 10px;
}

.faq-section .image-box .image img{
  position: relative;
  width: 100%;
}

.faq-section .image-box .text{
  position: absolute;
  left: -3.75rem;
  top: 11.6875rem;
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.10);
  padding: 0.75rem 1.1875rem;
}

.faq-section .image-box .text h6{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  padding-left: 1.75rem;
}

.faq-section .image-box .text h6:before{
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  font-size: 1.125rem;
  left: 0px;
  top: 0px;
  font-weight: 400;
  color: var(--theme-color);
}

.faq-section .image-box .icon-box{
  position: absolute;
  display: inline-block;
  width: 5.625rem;
  height: 4.375rem;
  line-height: 4.375rem;
  background: #faf4f2;
  text-align: center;
  border-radius: 3.125rem;
  right: -2.8125rem;
  top: 5.625rem;
}

.faq-section .image-box .curve-text{
  position: absolute;
  right: -1.25rem;
  bottom: 0px;
  width: 9.375rem;
  height: 9.375rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.10);
}

.faq-section .image-box .curve-text .curved-circle-2{
  position: absolute;
  left: 4.75rem;
  top: 1.0625rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  transform: rotate(165deg);
}

.faq-section .image-box .curve-text .link{
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%,-50%);
}

.faq-section .image-box .curve-text .link a{
  position: relative;
  display: inline-block;
  font-size: 2.25rem;
  color: var(--title-color);
}

.faq-section .image-box .curve-text .link a:hover{
  color: var(--theme-color);
}

.accordion-box .block .acc-content{
  display:none;
}

.accordion-box .block .acc-content.current{
  display:block;  
}

.faq-section .accordion-box .accordion{
  background: #fff;
  border: 1px solid #e7e1e1;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-section .accordion-box .accordion.active-block{
  border-color: transparent;
  background: #faf4f2;
}

.faq-section .accordion-box .accordion:last-child{
  margin-bottom: 0px;
}

.faq-section .accordion-box .accordion .acc-btn{
  position: relative;
  padding: 1.0625rem 1.5625rem 1.1875rem 1.5625rem;
  cursor: pointer;
  border-radius: 10px;
}

.faq-section .accordion-box .accordion .acc-btn.active{
  background: -webkit-linear-gradient(-45deg, #1c0e0e 0%, #621a1a 100%);
}

.faq-section .accordion-box .accordion .acc-btn h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-left: 1.75rem;
}

.faq-section .accordion-box .accordion .acc-btn.active h5{
  color: #fff;
}

.faq-section .accordion-box .accordion .acc-content{
  padding: 1.4375rem 1.5625rem 1.375rem 1.5625rem;
}

.faq-section .accordion-box .accordion .acc-btn h5:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 0.875rem;
  height: 1rem;
  left: 0px;
  top: 6px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 50% 100%, 0 75%, 0 25%);
}

.faq-section .accordion-box .accordion .acc-btn h5:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 10px;
  height: 0.75rem;
  left: 2px;
  top: 8px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 50% 100%, 0 75%, 0 25%);
}

.faq-section .accordion-box .accordion .acc-btn.active h5:after{
  opacity: 0;
}


/** awards-section **/

.awards-section{
  position: relative;
}

.awards-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.awards-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
}

.awards-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
}

.awards-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 8rem 2.5rem 2.0625rem 2.5rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
}

.awards-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(0deg, #1c0e0e 0%, #621a1a 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 5px;
  border-radius: 10px;
  z-index: -1;
}

.awards-block-one .inner-box .icon-box{
  position: absolute;
  left: 2.5rem;
  top: 0px;
  display: inline-block;
  width: 5.625rem;
  height: 6.25rem;
  line-height: 6.25rem;
  text-align: center;
  background: -webkit-linear-gradient(0deg, #1c0e0e 0%, #621a1a 100%);
  border-radius: 0px 0px 6.25rem 6.25rem;
}

.awards-block-one .inner-box .icon-box img{
  display: inline-block;
}

.awards-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  padding-bottom: 2.0625rem;
  margin-bottom: 0.8125rem;
}

.awards-block-one .inner-box h3:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 3.125rem;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.awards-block-one .inner-box p{
  position: relative;
  display: block;
  color: #7d7373;
}

.awards-block-one .inner-box .light-icon{
  position: absolute;
  right: 10px;
  bottom: 0px;
}

.awards-section .owl-dots{
  position: absolute;
  top: -5.375rem;
  right: 2.625rem;
}

.awards-section .owl-nav{
  position: absolute;
  top: -5.25rem;
  right: -0.75rem;
  width: 12.125rem;
}

.awards-section .nav-style-one .owl-nav button{
  position: absolute;
  top: 0px;
  color: var(--title-color);
}

.awards-section .owl-nav button.owl-prev{
  left: 0px;
}

.awards-section .owl-nav button.owl-next{
  right: 0px;
}

.awards-section .dots-style-one .owl-dots .owl-dot{
  background: #d6ccc9;
}


/** cta-section **/

.cta-section{
  position: relative;
  padding: 6.875rem 0px 7.5rem 0px;
}

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

.cta-section .content-box h2{
  display: block;
  font-size: 3.375rem;
  line-height: 3.875rem;
  color: #fff;
  margin-bottom: 0.9375rem;
}

.cta-section .content-box h3{
  position: relative;
  display: inline-block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 2.1875rem;
}

.cta-section .content-box h3:before{
  position: absolute;
  content: '';
  background-image: url(../image/shape-14.png);
  width: 3rem;
  height: 4.625rem;
  top: 3.1875rem;
  right: 4.4375rem;
  background-repeat: no-repeat;
}

.cta-section .content-box h3 a{
  display: inline-block;
  color: #fff;
  border-bottom: 1px dashed var(--theme-color);
}

.cta-section .content-box h3 a:hover{
  color: var(--theme-color);
}

.cta-section .content-box .lower-box{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cta-section .content-box .lower-box .theme-btn{
  color: #fff;
  border-color: #fff;
  margin-right: 1.25rem;
}

.cta-section .content-box .lower-box .theme-btn:hover{
  border-color: var(--theme-color);
}

.cta-section .content-box .lower-box .chat-box{
  position: relative;
  display: block;
  padding: 1.125rem 0px 2px 7.1875rem;
}

.cta-section .content-box .lower-box .chat-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
}

.cta-section .content-box .lower-box .chat-box button{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

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


/** footer-style-two **/

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

.footer-style-two .widget-section{
  position: relative;
  padding: 7.0625rem 0px 6.875rem 0px;
}

.footer-style-two .widget-section .pattern-layer{
  position: absolute;
  right: 5.3125rem;
  bottom: 0px;
  width: 62.875rem;
  height: 28.3125rem;
  background-repeat: no-repeat;
}

.footer-style-two .logo-widget{
  position: relative;
  display: block;
  margin-top: 7px;
}

.footer-style-two .logo-widget .footer-logo{
  position: relative;
  display: block;
  margin-bottom: 1.75rem;
}

.footer-style-two .logo-widget p{
  margin-bottom: 1.0625rem;
}

.footer-style-two .logo-widget h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
}

.footer-style-two .logo-widget .rating{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0.8125rem;
}

.footer-style-two .logo-widget .rating li{
  display: inline-block;
  width: 2.1875rem;
  height: 2.1875rem;
  line-height: 2.4375rem;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  background: #00b67a;
  border-radius: 10px;
  margin-right: 5px;
}

.footer-style-two .logo-widget .rating li:last-child{
  margin: 0px !important;
}

.footer-style-two .logo-widget h6{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin-bottom: 1.4375rem;
}

.footer-style-two .widget-title{
  position: relative;
  display: block;
  margin-bottom: 1.25rem;
}

.footer-style-two .widget-title h3{
  font-size: 1.375rem;
  line-height: 2rem;
}

.footer-style-two .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.footer-style-two .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  color: #7d7373;
  padding-left: 1.75rem;
}

.footer-style-two .links-widget .links-list li a:hover{
  color: var(--theme-color);
}

.footer-style-two .links-widget .links-list li a:before{
  position: absolute;
  content: '^';
  left: 0px;
  font-size: 1.875rem;
  top: 10px;
  color: #c1b5b4;
  transition: all 500ms ease;
}

.footer-style-two .links-widget .links-list li a:hover:before{
  color: var(--theme-color);
}

.footer-style-two .contact-widget p{
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.footer-style-two .contact-widget span{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: var(--title-color);
  margin-bottom: 1rem;
}

.footer-style-two .contact-widget h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.9375rem;
}

.footer-style-two .contact-widget h5 a{
  display: inline-block;
  color: var(--title-color);
}

.footer-style-two .contact-widget h5 a:hover{
  color: var(--theme-color);
}

.footer-style-two .contact-widget .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 1.5625rem;
}

.footer-style-two .contact-widget .social-links li:last-child{
  margin: 0px;
}

.footer-style-two .contact-widget .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  color: var(--title-color);
}

.footer-style-two .contact-widget .social-links li a:hover{
  color: var(--theme-color);
}

.footer-style-two .contact-widget .social-links{
  padding-top: 1.0625rem;
}

.footer-style-two .footer-bottom{
  background: var(--theme-color);
}

.footer-style-two .footer-bottom p,
.footer-style-two .footer-bottom a,
.footer-style-two .footer-bottom .bottom-inner .footer-nav li:before{
  color: #f4e0e0 !important;
}

.footer-style-two .footer-bottom a:hover{
  color: #fff !important;
}



/*** 

====================================================================
                        Home-Page-Three
====================================================================

***/

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

.header-style-three .header-lower{
  position: relative;
  padding: 0px 5rem;
}

.header-style-three .header-lower .outer-box{
  padding: 0px 0.8125rem 0px 1.875rem;
  background: -webkit-linear-gradient(0deg, #120c1a 50%, #7921f4 100%);
  border-radius: 3.125rem;
}

.header-style-three .main-menu .navigation > li > a{
  color: #fff;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}

.header-style-three .main-menu .navigation > li.current > a, 
.header-style-three .main-menu .navigation > li:hover > a {
  color: var(--theme-color);
}

.header-style-three .outer-box .main-column{
  position: relative;
  display: flex;
  align-items: center;
}

.header-style-three .outer-box .main-column .logo-box{
  margin-right: 6.25rem;
}

.header-style-three .outer-box .logo-box{
  padding: 0.9375rem 0px;
}

.header-style-three .menu-right-content .login-box{
  margin-right: 1.25rem;
}

.header-style-three .menu-right-content .login-box a{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 1.875rem 0.75rem 1.875rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.30);
}

.header-style-three .menu-right-content .login-box a i{
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  margin-right: 8px;
  top: 5px;
}

.header-style-three .menu-right-content .login-box a:hover{
  color: var(--theme-color);
  background: #fff;
  border-color: #fff;
}

.header-style-three .menu-right-content .support-box{
  position: relative;
  display: block;
  padding-left: 3.125rem;
}

.header-style-three .menu-right-content .support-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid #fff;
  border-radius: 50%;
}

.header-style-three .menu-right-content .support-box a{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: var(--title-color);
  font-weight: 600;
  background: #fff;
  padding: 0.75rem 1.875rem;
  border-radius: 2.5rem;
}

.header-style-three .menu-right-content .support-box a:hover{
  color: var(--theme-color);
}

.header-style-three .sticky-header{
  background: -webkit-linear-gradient(0deg, #120c1a 50%, #7921f4 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/** banner-style-three **/

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

.banner-style-three .slide-item{
  position: relative;
  padding: 16.5625rem 0px 39.375rem 0px;
}

.banner-style-three .slide-item:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(0deg, #391867 0%, #120c1a 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.85;
  z-index: 1;
}

.banner-style-three .slide-item:after{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(0deg, #391867 0%, #120c1a 100%);
  width: 100%;
  height: 30%;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}

.banner-style-three .content-box{
  position: relative;
  display: block;
}

.banner-style-three .content-box .icon-box{
  position: relative;
  display: block;
  margin-bottom: 2.0625rem;
}

.banner-style-three .content-box .icon-box img{
  display: inline-block;
}

.banner-style-three .content-box h6{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding-left: 5.625rem;
  padding-right: 5.625rem;
  margin-bottom: 0.75rem;
}

.banner-style-three .content-box h6:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.30);
  width: 4.375rem;
  height: 1px;
  left: 0px;
  top: 0.75rem;
}

.banner-style-three .content-box h6:after{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.30);
  width: 4.375rem;
  height: 1px;
  right: 0px;
  top: 0.75rem;
}

.banner-style-three .content-box h2{
  margin-bottom: 1.125rem;
}

.banner-style-three .content-box p{
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #fff;
  margin-bottom: 2.625rem;
}

.banner-carousel .content-box p{
  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 p{
  opacity: 1;
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-style-three .content-box .btn-box .theme-btn.btn-two{
  color: #fff;
}

.banner-style-three .content-box .btn-box .theme-btn.btn-two:hover{
  background: var(--theme-color);
}

.banner-style-three .content-box .btn-box .theme-btn.btn-two:before{
  background: var(--theme-color);
}

.banner-style-three .social-links{
  position: absolute;
  left: 5rem;
  top: 24.125rem;
  z-index: 1;
}

.banner-style-three .social-links li{
  position: relative;
  display: block;
  margin-bottom: 0.9375rem;
}

.banner-style-three .social-links li:last-child{
  margin-bottom: 0px;
}

.banner-style-three .social-links li a{
  position: relative;
  display: inline-block;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.75rem;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--title-color);
}

.banner-style-three .social-links li a:hover{
  background: transparent;
  color: #fff;
}

.banner-style-three .owl-nav{
  position: absolute;
  top: 23.75rem;
  right: 7.5rem;
  height: 12.875rem;
}

.banner-style-three .owl-nav button span{
  display: none;
}

.banner-style-three .owl-nav button.owl-prev{
  position: absolute;
  left: 0px;
  top: 0px;
}

.banner-style-three .owl-nav button.owl-prev:before{
  position: absolute;
  content: "\f112";
  font-family: 'flaticon';
  font-size: 3.125rem;
  color: #fff;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.banner-style-three .owl-nav button.owl-next{
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.banner-style-three .owl-nav button.owl-next:before{
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 3.125rem;
  color: #fff;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.banner-style-three .owl-nav button.owl-prev:hover:before,
.banner-style-three .owl-nav button.owl-next:hover:before{
  color: var(--theme-color);
}

.banner-style-three .owl-dots{
  position: absolute;
  top: 26.375rem;
  right: 5.625rem;
}

.banner-style-three .owl-dots span{
  display: none !important;
}

.banner-style-three .owl-dots .owl-dot{
  position: relative;
  display: block;
  height: 2.5rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0px;
  margin-bottom: 0.9375rem;
  cursor: pointer;
  transition: all 500ms ease;
}

.banner-style-three .owl-dots .owl-dot:last-child{
  margin: 0px;
}

.banner-style-three .owl-dots .owl-dot.active{
  background: var(--theme-color);
  width: 5px;
  border-radius: 10px;
  left: -2px;
}


/** funfact-style-two **/

.funfact-style-two{
  position: relative;
  width: 100%;
  margin-top: -34rem;
  z-index: 1;
  padding-bottom: 5.8125rem;
}

.funfact-style-two .title-text h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: #fff;
  margin-bottom: 1.875rem;
}

.funfact-style-two .pricing-content{
  position: relative;
  padding-left: 1.875rem;
  margin-right: -30rem;
  margin-bottom: 5rem;
}

.funfact-style-two .pricing-content .four-item-carousel{

}

.funfact-style-two .pairs-block-one{
  background: var(--theme-color);
  box-shadow: none;
}

.funfact-style-two .pairs-block-one .inner-box .left-column .icon-box{
  background: #fff;
}

.funfact-style-two .pairs-block-one .inner-box .left-column .list-item li{
  color: #fff;
}

.funfact-style-two .pairs-block-one .inner-box .right-column .currency-rate{
  color: #fff !important;
}

.funfact-style-two .pairs-block-one .inner-box .left-column .currency,
.funfact-style-two .pairs-block-one .inner-box .right-column .sell{
  color: #b7b1be;
}

.funfact-style-two .pairs-block-one .inner-box .right-column .theme-btn{
  border-color: #fff;
  color: #fff;
}

.funfact-style-two .funfact-block-one .inner-box{
  background: transparent;
  padding: 0px;
  border: none;
  border-radius: 0px;
}

.funfact-style-two .funfact-block-one .inner-box h2{
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.funfact-style-two .funfact-block-one .inner-box p{
  color: #b7b1be;
}


/** about-style-two **/

.about-style-two{
  position: relative;
  padding: 7.5rem 0px 7.5rem 0px;
}

.about-style-two .image-box{
  position: relative;
  display: block;
  margin-right: 10px;
  padding-top: 0;
}

.about-style-two .image-box:before{
  position: absolute;
  content: '';
  border: 2px dashed #e1dee5;
  border-radius: 50%;
  left: 6.5625rem;
  top: -1.5625rem;
  width: 32.1875rem;
  height: 32.1875rem;
}

.about-style-two .image-box .image{
  position: relative;
  display: block;
  border-radius: 10px;
}

.about-style-two .image-box .image img{
  width: 100%;
  height: 38.5rem;
  object-fit: cover;
  border-radius: 10px;
}

.about-style-two .image-box .image .owl-nav,
.about-style-two .image-box .image .owl-dots{
  display: none !important;
}

.about-style-two .image-box .experience-box{
  position: absolute;
  top: 0px;
  right: 5.625rem;
  width: 15rem;
  border-radius: 10px;
  padding: 1.875rem 1.875rem 1.4375rem 1.875rem;
  background: var(--theme-color);
  z-index: 100;
}

.about-style-two .image-box .experience-box .icon-box{
  position: relative;
  display: block;
  margin-bottom: 1.3125rem;
}

.about-style-two .image-box .experience-box h2{
  position: relative;
  display: block;
  font-size: 2.5rem;
  line-height: 3.125rem;
  color: #fff;
  margin-bottom: 8px;
}

.about-style-two .image-box .experience-box h2 span{
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 200;
}

.about-style-two .image-box .experience-box h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
}

.about-style-two .image-box .experience-box .shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 7.9375rem;
  height: 9.5625rem;
  background-repeat: no-repeat;
}

.about-style-two .image-box .image-content{
  position: absolute;
  right: 0px;
  bottom: 3.125rem;
  width: 20.625rem;
  background: #fff;
  width: 20.625rem;
  border-radius: 10px;
  padding: 1.5rem 1.875rem 1.375rem 1.875rem;
  box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.12);
}

.about-style-two .image-box .image-content h6{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.about-style-two .image-box .image-content h3{
  position: relative;
  display: block;
  font-size: 1.625rem;
  line-height: 2rem;
  color: var(--theme-color);
}

.about-style-two .image-box .image-content p{
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--title-color);
  padding-left: 1.125rem;
}

.about-style-two .image-box .image-content p i{
  position: absolute;
  left: 0px;
  top: 3px;
  color: #53b764;
  font-size: 1.125rem;
}

.about-style-two .image-box .image-content .bar{
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
}

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

.about-style-two .content-box .sec-title{
  margin-bottom: 1.9375rem;
}

.about-style-two .content-box .text-box p{
  font-size: 1.2rem;
  margin-bottom: 1.625rem;
}

.about-style-two .content-box .text-box .single-item{
  position: relative;
  display: block;
  padding-left: 5rem;
  margin-bottom: 2.6875rem;
}

.about-style-two .content-box .text-box .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: 8px;
}

.about-style-two .content-box .text-box .single-item h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 10px;
}

.about-style-two .content-box .text-box .single-item p{
  margin-bottom: 0px;
}

.bg-color-5{
  background: #f4f1f7;
}


/** pricing-style-two **/

.pricing-style-two{
  position: relative;
  padding: 7.0625rem 0px 5.625rem 0px;
}

.pricing-block-two{
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
}

.pricing-block-two .pricing-table{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 1.4375rem 2.5rem 2.5rem 2.5rem;
  margin-bottom: 1.875rem;
}

.pricing-block-two .pricing-table .table-header h3{
  font-size: 1.625rem;
  line-height: 2.25rem;
  margin-bottom: 4px;
}

.pricing-block-two .pricing-table .table-header p{
  margin-bottom: 1.4375rem;
}

.pricing-block-two .pricing-table .table-header h2{
  position: relative;
  display: block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: var(--theme-color);
  padding: 7px 0px;
  z-index: 1;
}

.pricing-block-two .pricing-table .table-header h2:before{
  position: absolute;
  content: '';
  background: #f4f1f7;
  width: calc(100% + 40px);
  height: 100%;
  top: 0px;
  right: 0px;
  border-radius: 0px 2.5rem 2.5rem 0px;
  z-index: -1;
}

.pricing-block-two .pricing-table .table-header h2 span{
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--title-color);
}

.pricing-block-two .pricing-table .table-content{
  position: relative;
  padding: 1.25rem 0px 1.25rem 0px;
}

.pricing-block-two .pricing-table .feature-list li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: #5f5c63;
  padding: 0.875rem 0px 0.8125rem 0px;
  border-bottom: 1px solid #e1dee5;
}

.pricing-block-two .pricing-table .feature-list li:last-child{
  border-bottom: none;
}

.pricing-block-two .pricing-table .feature-list li span{
  float: right;
  color: var(--title-color);
  font-weight: 500;
}

.pricing-block-two .pricing-table .table-footer{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.check-box input {
  display: none;
}

.check-box label {
  position: relative;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  padding-left: 1.75rem;
  display: inline-block;
  cursor: pointer;
}

.check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 4px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #e1dee5;
  background: transparent;
}

.check-box label:after {
  position: absolute;
  content: '';
  left: 6px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--theme-color);
  opacity: 0;
  transition: all 500ms ease;
}

.check-box input:checked + label:after {
  opacity: 1;
}

.pricing-block-two .pricing-table .table-footer a{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  padding: 1rem 0px 1.0625rem 2.3125rem;
  z-index: 1;
}

.pricing-block-two .pricing-table .table-footer a:before{
  position: absolute;
  content: '';
  background: #f4f1f7;
  width: calc(100% + 40px);
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 2.5rem 0px 0px 2.5rem;
  z-index: -1;
}

.pricing-block-two .pricing-table .table-footer a span{
  position: relative;
  padding-left: 1.5rem;
}

.pricing-block-two .pricing-table .table-footer a span:before{
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 1.25rem;
  left: 0px;
  top: -3px;
}

.pricing-block-two .pricing-table .table-footer a:hover{
  color: var(--theme-color);
}

.pricing-block-two .special-text{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 6px 0.9375rem 0.875rem 0.9375rem;
  text-align: center;
  background: var(--theme-color);
  border-radius: 10px 10px 0px 0px;
}

.pricing-block-two .special-text h6{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #fff;
  padding-left: 1.375rem;
}

.pricing-block-two .special-text h6:before{
  position: absolute;
  content: "\f11b";
  font-family: 'flaticon';
  font-size: 1.25rem;
  left: 0px;
  top: 1px;
}

.pricing-style-two .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.75rem;
}

.pricing-style-two .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  background: #e5e2e9;
  padding: 0.9375rem 1.875rem;
  border-radius: 2.5rem;
  cursor: pointer;
  transition: all 500ms ease;
}

.pricing-style-two .tab-btns li.active-btn{
  background: var(--theme-color) !important;
  color: #fff;
}

.bg-color-6{
  background: -webkit-linear-gradient(-45deg, #120c1a 50%, #7921f4 100%);
}

.cta-section.bg-color-6 .content-box h3:before{
  background-image: url(../image/shape-18.png);
}


/** news-style-two **/

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

.news-style-two .sec-title .theme-btn{
  position: absolute;
  right: 0px;
  bottom: 0.75rem;
}

.news-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.news-style-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.news-style-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.news-block-two{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 1.875rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
}

.news-block-two .inner-box{
  position: relative;
  display: block;
  padding-left: 13.75rem;
  min-height: 12.125rem;
  margin-bottom: 1.625rem;
}

.news-block-two .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 11.875rem;
  height: 11.875rem;
  border-radius: 10px;
}

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

.news-block-two .inner-box h6{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #f4f1f7;
  color: var(--theme-color);
  border-radius: 2.5rem;
  text-align: center;
  padding: 9px 1.25rem;
  margin-bottom: 1.4375rem;
}

.news-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 0.9375rem;
}

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

.news-block-two .inner-box h3 a:hover{
  color: var(--theme-color);
}

.news-block-two .lower-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-block-two .lower-content .post-info{
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 1.1875rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
}

.news-block-two .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #5f5c63;
  padding-left: 1.4375rem;
  margin-right: 2.125rem;
}

.news-block-two .lower-content .post-info li a{
  display: inline-block;
  color: #5f5c63;
}

.news-block-two .lower-content .post-info li a:hover{
  color: var(--theme-color);
}

.news-block-two .lower-content .post-info li:last-child{
  margin: 0px !important;
}

.news-block-two .lower-content .post-info li i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 0.875rem;
  color: #b9b3c0;
}

.news-block-two .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: #c2d2cd;
  width: 3px;
  height: 0.875rem;
  right: -1.0625rem;
  top: 6px;
  border-radius: 2px;
}

.news-block-two .lower-content .post-info li:last-child:before{
  display: none;
}

.news-block-two .lower-content .link a{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--title-color);
  text-align: center;
  border-radius: 2.5rem;
  border: 1px solid #e1dee5;
}

.news-block-two .lower-content .link a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.news-style-two .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 3.5rem;
}

.news-style-two .dots-style-one .owl-dots .owl-dot{
  background-color: #c6d5d0;
}

.news-style-two .owl-nav{
  position: absolute;
  display: block;
  max-width: 12.125rem;
  width: 100%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  bottom: 1.5rem;
  z-index: 1;
}

.news-style-two .owl-nav button{
  color: var(--title-color);
}

.news-style-two .owl-nav button.owl-prev{
  position: absolute;
  left: 0px;
  top: 0px;
}

.news-style-two .owl-nav button.owl-next{
  position: absolute;
  right: 0px;
  top: 0px;
}


/** chooseus-style-three **/

.chooseus-style-three{
  position: relative;
  background: -webkit-linear-gradient(-45deg, #152d4e 50%, #6ba8e0 200%);
}

.chooseus-style-three .single-item{
  position: relative;
  display: inline-block;
  margin-bottom: 3.75rem;
}

.chooseus-style-three .left-column .single-item{
  float: right;
}

.chooseus-style-three .left-column .single-item:nth-child(even){
  float: left;
}

.chooseus-style-three .single-item:last-child{
  margin-bottom: 0px;
}

.chooseus-style-three .single-item h5{
  position: relative;
  display: inline-block;
  font-size: 1.375rem;
  line-height: 1.75rem;
  color: #fff;
}

.chooseus-style-three .single-item h5 a{
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 1rem 1.25rem 1.125rem 4.375rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.5rem;
  width: 21.875rem;
}

.chooseus-style-three .single-item h5 a:hover{
  border-color: var(--theme-color);
  background: var(--theme-color);
}

.chooseus-style-three .single-item h5 a i{
  position: absolute;
  left: 9px;
  top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--title-color);
}

.chooseus-style-three .single-item h5 a i img{
  max-width: 50%;
  max-height: 50%;
  filter: blur(0) invert(1);
}

.chooseus-style-three .single-item h5 a:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.15);
  width: 3.0625rem;
  height: 1px;
  top: 50%;
  transition: all 500ms ease;
}

.chooseus-style-three .single-item h5 a:hover:before{
  background: var(--theme-color);
}

.chooseus-style-three .single-item p{
  margin-top: 1.25rem;
  color: #fff;
  padding-left: 4.375rem;
  font-size: 1.125rem;
}

.chooseus-style-three .left-column .single-item h5 a:before{
  right: -3.125rem;
}

.chooseus-style-three .right-column .single-item h5 a:before{
  left: -3.125rem;
}

.chooseus-style-three .left-column .single-item:nth-child(even) h5 a:before{
  right: -14.0625rem;
  width: 14rem;
}

.chooseus-style-three .image-box{
  position: relative;
  display: block;
  margin: 0px 1.25rem;
  overflow: hidden;
}

.chooseus-style-three .image-box .image{
  position: relative;
  display: block;
  border-radius: 1.875rem 1.875rem 0px 0px;
}

.chooseus-style-three .image-box .image img{
  width: 100%;
  border-radius: 1.875rem 1.875rem 0px 0px;
}

.chooseus-style-three .right-column .single-item:nth-child(even){
  float: right;
}

.chooseus-style-three .right-column .single-item:nth-child(even) h5 a:before{
  left: -14.0625rem;
  width: 14rem;
}

.chooseus-style-three .image-box .shape{
  position: absolute;
  left: 0px;
  bottom: 8.75rem;
  width: 18.125rem;
  height: 10.625rem;
  background-repeat: no-repeat;
}

.chooseus-style-three .image-box .big-text{
  position: absolute;
  left: 0px;
  bottom: 1.875rem;
  width: 100%;
  text-align: center;
  font-size: 4.5rem;
  line-height: 5.125rem;
  font-family: var(--title-font);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 1);
}

.chooseus-style-three .inner-container{
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 3.375rem;
}

.chooseus-style-three .lower-content h3{
  position: relative;
  display: block;
  font-size: 1.625rem;
  line-height: 2.25rem;
  color: #fff;
  margin-bottom: 0.875rem;
}

.chooseus-style-three .lower-content p{
  color: #b7b1be;
  margin-bottom: 2.0625rem;
}

.chooseus-style-three .lower-content .theme-btn{
  color: #fff;
}

.working-style-two.bg-color-5 .working-block-two .inner-box h6,
.working-style-two.bg-color-5 .working-block-two .inner-box h6:before{
  background: #e5e2e9;
}


/** testimonial-style-two **/

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

.testimonial-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.testimonial-block-two{
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.12);
}

.testimonial-block-two h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
  padding: 0.9375rem 1.875rem 0.9375rem 1.875rem;
  background: -webkit-linear-gradient(0deg, #120c1a 0%, #4c1e8d 100%);
}

.testimonial-block-two h5:before{
  position: absolute;
  content: '';
  left: 1.875rem;
  bottom: -1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #120c1a;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
}

.testimonial-block-two .inner-box{
  position: relative;
  padding: 2.8125rem 1.875rem 2.3125rem 1.875rem;
}

.testimonial-block-two .inner-box .author-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 5rem;
  margin-bottom: 1.25rem;
}

.testimonial-block-two .inner-box .author-box .thumb-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 3.8125rem;
  height: 3.75rem;
  border-radius: 50%;
}

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

.testimonial-block-two .inner-box .author-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 10px;
}

.testimonial-block-two .inner-box .author-box .designation{
  position: relative;
  display: block;
  color: var(--theme-color);
}

.testimonial-block-two .inner-box p{
  margin-bottom: 1.5625rem;
}

.testimonial-block-two .inner-box .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-block-two .inner-box .lower-box .text-box span{
  position: relative;
  display: block;
  color: var(--title-color);
  margin-bottom: 5px;
}

.testimonial-block-two .inner-box .lower-box .text-box h3{
  font-size: 1.375rem;
  line-height: 2rem;
  color: var(--theme-color);
}

.testimonial-block-two .inner-box .lower-box .rating{
  position: relative;
  display: inline-block;
  border: 1px solid #e1dee5;
  border-radius: 1.875rem;
  padding: 9px 0.8125rem 7px 0.8125rem;
}

.testimonial-block-two .inner-box .lower-box .rating h6{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-left: 1.5rem;
}

.testimonial-block-two .inner-box .lower-box .rating h6 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 1.125rem;
  color: #00b67a;
}

.testimonial-style-two .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 3.5rem;
}

.testimonial-style-two .dots-style-one .owl-dots .owl-dot{
  background-color: #c6d5d0;
}

.testimonial-style-two .owl-nav{
  position: absolute;
  display: block;
  max-width: 12.125rem;
  width: 100%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  bottom: 1.5rem;
  z-index: 1;
}

.testimonial-style-two .owl-nav button{
  color: var(--title-color);
}

.testimonial-style-two .owl-nav button.owl-prev{
  position: absolute;
  left: 0px;
  top: 0px;
}

.testimonial-style-two .owl-nav button.owl-next{
  position: absolute;
  right: 0px;
  top: 0px;
}

.header-style-three .main-menu .navigation > li.dropdown > a:before{
  top: 1.5rem;
}


/** clients-section **/

.clients-section{
  position: relative;
}

.clients-section .clients-list li{
  position: relative;
  display: block;
  float: left;
  width: 25%;
  text-align: center;
  border-right: 1px solid #d8d5df;
}

.clients-section .clients-list li:nth-child(4),
.clients-section .clients-list li:nth-child(8){
  border: none;
}

.clients-section .clients-list{
  position: relative;
}

.clients-section .clients-list:before{
  position: absolute;
  content: '';
  background: #d8d5df;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 50%;
}

.clients-section .clients-list li:nth-child(1),
.clients-section .clients-list li:nth-child(2),
.clients-section .clients-list li:nth-child(3),
.clients-section .clients-list li:nth-child(4){
  padding-bottom: 2.3125rem;
}

.clients-section .clients-list li:nth-child(5),
.clients-section .clients-list li:nth-child(6),
.clients-section .clients-list li:nth-child(7),
.clients-section .clients-list li:nth-child(8){
  padding-top: 2.5625rem;
}

.clients-section .clients-list li img{
  position: relative;
  display: inline-block;
  max-width: 100%;
  transition: all 500ms ease;
}

.clients-section .clients-list li img:hover{
  transform: scale(1.05);
}


/** footer-style-three **/

.main-footer.style-three{
  background: -webkit-linear-gradient(-45deg, #120c1a 50%, #7921f4 150%);
}

.main-footer.style-three p,
.main-footer.style-three a{
  color: #b7b1be;
}

.main-footer.style-three .logo-widget .single-item{
  position: relative;
  display: block;
  background: #251f2c;
  border-radius: 10px;
  padding: 1.25rem 1.25rem 1.875rem 2.8125rem;
  max-width: 21.25rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box{
  position: relative;
  padding-left: 9.1875rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 6.25rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box span{
  position: relative;
  display: block;
  text-align: center;
  width: 6.25rem;
  background: #fff;
  border-radius: 10px 10px 0px 0px;
  text-align: center;
  padding: 0.6875rem 1.25rem 1.75rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: var(--title-color);
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box span:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 2.8125rem;
  left: 0px;
  bottom: -2.8125rem;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.main-footer.style-three .logo-widget .single-item .inner-box p{
  color: #b7b1be;
  padding-top: 3px;
  padding-bottom: 0.875rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text{
  position: absolute;
  left: 0px;
  bottom: -1.0625rem;
  width: 100%;
  text-align: center;
  padding: 7px 0.9375rem;
  background: var(--theme-color);
  z-index: 1;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text h6{
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text:before,
.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text:after{
  position: absolute;
  content: '';
  background: #5215a7;
  width: 0.6875rem;
  height: 2.875rem;
  top: 0px;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text:before{
  left: -0.6875rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text:after{
  right: -0.6875rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text .decore-1{
  position: absolute;
  left: -1.625rem;
  top: 0px;
  width: 0.9375rem;
  height: 2.875rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text .decore-1:after{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 0.9375rem;
  height: 2.875rem;
  background: #5215a7;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 100% 50%, 0% 0%);
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text .decore-1:before{
  position: absolute;
  content: '';
  background: #5215a7;
  width: 1.1875rem;
  height: 0.6875rem;
  left: 1.625rem;
  bottom: 0px;
  clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text .decore-2{
  position: absolute;
  right: -1.625rem;
  top: 0px;
  width: 0.9375rem;
  height: 2.875rem;
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text .decore-2:after{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 0.9375rem;
  height: 2.875rem;
  background: #5215a7;
  clip-path: polygon(100% 0%, 0 49%, 100% 100%, 0 100%, 0% 50%, 0 0);
}

.main-footer.style-three .logo-widget .single-item .inner-box .badge-box .text .decore-2:before{
  position: absolute;
  content: '';
  background: #5215a7;
  width: 1.1875rem;
  height: 0.6875rem;
  right: 1.625rem;
  bottom: 0px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.main-footer.style-three .logo-widget{
  margin-right: 1.875rem;
}

.main-footer.style-three .logo-widget .owl-dots{
  position: absolute;
  right: 5.75rem;
  bottom: 1.4375rem;
}

.main-footer.style-three .dots-style-one .owl-dots .owl-dot{
  margin-right: 0.9375rem;
}

.main-footer.style-three .dots-style-one .owl-dots .owl-dot:last-child{
  margin-right: 0px;
}

.main-footer.style-three .links-widget .links-list li a{
  color: #b7b1be;
}

.main-footer.style-three .links-widget .links-list li a:hover,
.main-footer.style-three .links-widget .links-list li a:hover:before{
  color: var(--theme-color);
}

.main-footer.style-three .links-widget .links-list li a:before{
  color: #61596c;
}

.main-footer .customer-widget .widget-content{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(0deg, #4c1e8e 0%, #7921f5 100%);
  padding: 2.3125rem 2.5rem 2.0625rem 2.5rem;
  border-radius: 10px;
}

.main-footer .customer-widget .widget-content .widget-title{
  padding-left: 5.3125rem;
  margin-bottom: 1.0625rem;
} 

.main-footer .customer-widget .widget-content .widget-title .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

.main-footer .customer-widget .widget-content p{
  color: #b7b1be;
  margin-bottom: 1.4375rem;
}

.main-footer .customer-widget .widget-content .clients-list{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.875rem;
}

.main-footer .customer-widget .widget-content .clients-list li{
  position: relative;
  margin-right: -0.9375rem;
}

.main-footer .customer-widget .widget-content .clients-list li:last-child{
  margin-right: 0px;
  margin-left: 1.5625rem;
}

.main-footer .customer-widget .widget-content .clients-list li .image{
  position: relative;
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
}

.main-footer .customer-widget .widget-content .clients-list li .image img{
  width: 100%;
  border-radius: 50%;
}

.main-footer .customer-widget .widget-content .clients-list li span{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.5rem;
  background: var(--theme-color);
  border: 2px solid #fff;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: #fff;
}

.main-footer .customer-widget .widget-content .clients-list li h6{
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #fff;
}

.main-footer .customer-widget .widget-content .btn-box .theme-btn{
  width: 100%;
  border-color: #fff;
  color: #fff;
  margin-bottom: 0.9375rem;
}

.main-footer .customer-widget .widget-content .active-text{
  position: relative;
  display: block;
  text-align: center;
}

.main-footer .customer-widget .widget-content .active-text span{
  position: relative;
  display: inline-block;
  color: #b7b1be;
  padding-left: 1.25rem;
}

.main-footer .customer-widget .widget-content .active-text span:before{
  position: absolute;
  content: '';
  background: #51b662;
  width: 10px;
  height: 10px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

.main-footer.style-three .widget-section{
  padding: 7.0625rem 0px 7.5rem 0px;
}

.main-footer.style-three .bottom-inner .footer-nav li a{
  color: #b6adc2;
}

.main-footer.style-three .bottom-inner .footer-nav li a:hover{
  color: var(--theme-color);
}



/*** 

====================================================================
                        Home-Page-Four
====================================================================

***/


/** header-style-four **/

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

.header-upper{
  position: relative;
  width: 100%;
  padding-top: 1.875rem;
}

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

.header-upper .single-item{
  position: relative;
  display: block;
}

.header-upper .left-column .single-item{
  padding-left: 2.8125rem;
}

.header-upper .right-column .single-item{
  padding-right: 2.8125rem;
  text-align: right;
}

.header-upper .single-item .icon-box{
  position: absolute;
  top: 7px;
}

.header-upper .left-column .single-item .icon-box{
  left: 0px;
}

.header-upper .right-column .single-item .icon-box{
  right: 0px;
}

.header-upper .single-item h5{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
}

.header-upper .single-item h5 a{
  display: inline-block;
  color: var(--title-color);
}

.header-upper .single-item h5 a:hover{
  color: var(--theme-color);
}

.header-upper .single-item h5 span{
  color: #a49c98;
}

.header-upper .single-item h6{
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.header-upper .single-item h6 a{
  display: inline-block;
  color: var(--title-color);
}

.header-upper .single-item h6 a:hover{
  color: var(--theme-color);
}

.header-style-four .outer-box{
  padding: 0px;
}

.header-style-four .header-lower .outer-box{
  justify-content: center;
}

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

.header-style-four .header-lower .main-menu .navigation > li.dropdown > a:before{
  top: 0.9375rem;
}

.header-style-four .header-lower .menu-area{
  position: relative;
  padding: 0px 3.625rem;
}

.header-style-four .header-lower .menu-area .line-1{
  position: absolute;
  left: 0px;
  top: 1.5625rem;
  width: 9px;
  height: 9px;
  background: #ded4d0;
  border-radius: 50%;
}

.header-style-four .header-lower .menu-area .line-1:before{
  position: absolute;
  content: '';
  background: #ded4d0;
  width: 312.5rem;
  height: 1px;
  top: 4px;
  right: 0px;
}

.header-style-four .header-lower .menu-area .line-2{
  position: absolute;
  right: 0px;
  top: 1.5625rem;
  width: 9px;
  height: 9px;
  background: #ded4d0;
  border-radius: 50%;
}

.header-style-four .header-lower .menu-area .line-2:before{
  position: absolute;
  content: '';
  background: #ded4d0;
  width: 312.5rem;
  height: 1px;
  top: 4px;
  left: 0px;
}

.main-menu .navigation > li.current > a, 
.main-menu .navigation > li:hover > a{
  color: var(--theme-color);
}


/** banner-style-four **/

.banner-style-four{
  position: relative;
  padding: 15.625rem 0px 0px 0px;
  background: #f6ede9;
}

.banner-style-four .outer-container{
  position: relative;
  padding: 0px 7.5rem;
}

.banner-style-four .inner-box{
  position: relative;
  display: flex;
}

.banner-style-four .inner-box .content-box{
  position: relative;
  max-width: 40.625rem;
  width: 100%;
  z-index: 5;
}

.banner-style-four .content-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 4.875rem;
  height: 3.375rem;
  line-height: 3.625rem;
  font-size: 1.25rem;
  color: #160f0c;
  border: 1px solid #160f0c;
  border-radius: 2.5rem;
  text-align: center;
  margin-bottom: 1.8125rem;
}

.banner-style-four .content-box h2{
  position: relative;
  display: block;
  font-size: 3.75rem;
  line-height: 4.375rem;
  margin-bottom: 1.25rem;
}

.banner-style-four .content-box p{
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #6a6461;
  margin-bottom: 1.75rem;
}

.banner-style-four .content-box .list-style-two li{
  color: var(--title-color);
}

.banner-style-four .content-box .list-style-two{
  margin-bottom: 2.375rem;
}

.banner-style-four .inner-box .content-box .list-inner{
  position: relative;
}

.banner-style-four .inner-box .content-box .list-inner .shape{
  position: absolute;
  right: 10rem;
  bottom: 0px;
  width: 12.25rem;
  height: 3.375rem;
  background-repeat: no-repeat;
}

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

.banner-style-four .image-box .image-content{
  position: absolute;
  bottom: 10.3125rem;
  left: -12.5rem;
  background: #fff;
  width: 20.625rem;
  border-radius: 10px;
  padding: 1.5rem 1.875rem 1.375rem 1.875rem;
  z-index: 1;
  box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.12);
}

.banner-style-four .image-box .image-content h6{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.banner-style-four .image-box .image-content h3{
  position: relative;
  display: block;
  font-size: 1.625rem;
  line-height: 2rem;
  color: var(--theme-color);
}

.banner-style-four .image-box .image-content p{
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--title-color);
  padding-left: 1.125rem;
}

.banner-style-four .image-box .image-content p i{
  position: absolute;
  left: 0px;
  top: 3px;
  color: #53b764;
  font-size: 1.125rem;
}

.banner-style-four .image-box .image-content .bar{
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
}

.banner-style-four .image-box .market-comparison{
  position: absolute;
  top: 5rem;
  right: -5.9375rem;
  width: 11.875rem;
  border-radius: 10px;
  padding: 1.5rem 1.25rem 1.6875rem 1.25rem;
  text-align: center;
  background: -webkit-linear-gradient(-45deg, #160f0c 50%, #411f0f 100%);
  z-index: 1;
}

.banner-style-four .image-box .market-comparison h6{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.0625rem;
}

.banner-style-four .image-box .market-comparison .chart{
  position: relative;
  display: inline-block;
  margin-bottom: 1.1875rem;
}

.banner-style-four .image-box .market-comparison .list-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6875rem;
}

.banner-style-four .image-box .market-comparison .list-item li{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
  padding-left: 0.8125rem;
  margin-right: 0.9375rem;
}

.banner-style-four .image-box .market-comparison .list-item li:last-child{
  margin: 0px;
}

.banner-style-four .image-box .market-comparison .list-item li:before{
  position: absolute;
  content: '';
  background: #51b662;
  width: 8px;
  height: 8px;
  left: 0px;
  top: 6px;
  border-radius: 50%;
}

.banner-style-four .image-box .market-comparison .list-item li:last-child:before{
  background: #ec404c;
}

.banner-style-four .image-box .market-comparison h5{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}

.banner-style-four .image-box .market-comparison h3{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--theme-color);
}

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

.banner-style-four .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 35rem;
  width: 100%;
  height: 39.25rem;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  z-index: 1;
}

.banner-style-four .pattern-layer .pattern-2{
  position: absolute;
  top: 10.9375rem;
  right: 7.5rem;
  width: 20.3125rem;
  height: 22.4375rem;
  background-repeat: no-repeat;
}

.banner-style-four .lower-text{
  position: relative;
  display: block;
  z-index: 2;
}

.banner-style-four .lower-text h6{
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
}

.banner-style-four .lower-text h6 a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
  padding-left: 1.9375rem;
}

.banner-style-four .lower-text h6 a:hover{
  color: var(--theme-color);
}

.banner-style-four .lower-text h6 a i{
  position: absolute;
  left: 0px;
  top: -2px;
  color: var(--theme-color);
  font-size: 1.5rem;
}

.banner-style-four .rating-box{
  position: absolute;
  right: 17.8125rem;
  bottom: 8.75rem;
  width: 16.25rem;
  height: 16.25rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.banner-style-four .rating-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.banner-style-four .rating-box h3{
  display: block;
  font-size: 1.625rem;
  line-height: 2.25rem;
  margin-bottom: 9px;
}

.banner-style-four .rating-box h5{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1px;
}

.banner-style-four .rating-box h5 i{
  position: relative;
  margin: 0px 2.5px;
  color: #e0cbc2;
}

.banner-style-four .rating-box p{
  margin-bottom: 8px;
}

.banner-style-four .rating-box span{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-weight: 600;
  color: var(--theme-color);
}


/** clients-style-two **/

.clients-style-two{
  position: relative;
  z-index: 2;
}

.clients-style-two .sec-title{
  margin-bottom: 1.875rem;
}

.clients-style-two .inner-container{
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: -webkit-linear-gradient(90deg, #362d29 0%, #feede5 100%);
  padding: 3.125rem;
  border-top: 1px solid #fff;
  margin-bottom: -4.375rem;
}

.bg-color-7{
  background: #f5ece8;
}


/** offer-style-two **/

.offers-style-two{
  position: relative;
  padding: 0px 7.5rem;
  z-index: 1;
}

.offers-style-two .outer-container{
  position: relative;
  padding: 11.4375rem 0px 7.5rem 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: 2.5rem 1.25rem;
  text-align: center;
}

.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: 1.875rem;
  top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--theme-color);
  font-weight: 700;
}

.offers-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 4.375rem;
  height: 5.625rem;
  line-height: 5.625rem;
  text-align: center;
  border-radius: 2.5rem;
  background: -webkit-linear-gradient(0deg, #160f0c 0%, #411f0f 100%);
  margin-bottom: 1.75rem;
}

.offers-block-one .inner-box .icon-box img{
  display: inline-block;
}

.offers-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 0.9375rem;
}

.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: 1.4375rem;
}

.offers-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.75rem;
  background: #fff;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  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: -5.375rem;
  right: 2.625rem;
}

.offers-style-two .owl-nav{
  position: absolute;
  top: -5.25rem;
  right: -0.75rem;
  width: 12.125rem;
}

.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: 2.5rem;
}

.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;
}


/** about-style-three **/

.about-style-three{
  position: relative;
  padding: 7.125rem 0px 7.375rem 0px;
  background: -webkit-linear-gradient(0deg, #160f0c 75%, #411f0f 100%);
}

.about-style-three .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background: no-repeat;
  background-position: center;
  opacity: 0.20;
}

.about-style-three .inner-content{
  position: relative;
  margin-right: 6.25rem;
  padding-right: 15.625rem;
}

.about-style-three .funfact-block-one .inner-box{
  width: 13.75rem;
  border-radius: 12.5rem;
  padding-top: 3.0625rem;
  padding-bottom: 2.75rem;
}

.about-style-three .funfact-block-one:first-child .inner-box{
  margin-bottom: 1.875rem;
}

.about-style-three .funfact-block-one:last-child{
  position: absolute;
  top: 10rem;
  right: 0px;
}

.about-style-three .funfact-block-one:last-child .inner-box{
  background: #f5ece8;
}

.about-style-three .funfact-block-one .inner-box h2{
  border-bottom: 1px solid #ece6e4;
}

.about-style-three .funfact-block-one:last-child .inner-box h2{
  border-bottom: 1px solid #ded4d0;
}

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

.about-style-three .content-box .sec-title{
  margin-bottom: 1.9375rem;
}

.about-style-three .content-box .text-box{
  margin-bottom: 1.625rem;
}

.about-style-three .content-box .text-box p{
  color: #a49c98;
}

.about-style-three .content-box .inner-box .single-item{
  position: relative;
  display: block;
  padding-bottom: 2.0625rem;
  margin-bottom: 2.0625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-style-three .content-box .inner-box .single-item:last-child{
  padding: 0px;
  margin: 0px;
  border: none;
}

.about-style-three .content-box .inner-box .single-item .title-box{
  position: relative;
  display: block;
  padding-left: 3.9375rem;
}

.about-style-three .content-box .inner-box .single-item .title-box .icon-box{
  position: absolute;
  left: 0px;
  top: 7px;
}

.about-style-three .content-box .inner-box .single-item .title-box h3{
  font-size: 1.375rem;
  line-height: 2rem;
  color: #fff;
}

.about-style-three .content-box .inner-box .single-item p{
  color: #a49c98;
}

.about-style-three .content-box .inner-box .single-item .list-item{
  margin-top: 1.25rem;
}

.about-style-three .content-box .inner-box .single-item .list-item li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.875rem;
  padding-left: 2.1875rem;
}

.about-style-three .content-box .inner-box .single-item .list-item li:last-child{
  margin-bottom: 0px;
}

.about-style-three .content-box .inner-box .single-item .list-item li:before{
  position: absolute;
  content: "\f108";
  font-family: 'flaticon';
  left: 0px;
  top: 1px;
  font-size: 1.25rem;
  color: var(--theme-color);
}


/** payout-system **/

.payout-system{
  position: relative;
  padding: 7.5rem 0px 7.5rem 0px;
}

.payout-system .content-box{
  position: relative;
  display: block;
  margin-right: -10px;
}

.payout-system .content-box .inner-box{
  position: relative;
  display: block;
  border-radius: 10px;
  background: -webkit-linear-gradient(0deg, #f5ece8 0%, #ffffff 100%);
  margin-bottom: 2.0625rem;
  padding: 1.5625rem 1.875rem 1.4375rem 1.875rem;
}

.payout-system .content-box .inner-box .list-item li{
  position: relative;
  display: block;
  float: left;
  width: 50%;
  padding-left: 2.0625rem;
}

.payout-system .content-box .inner-box .list-item li .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 1.125rem;
  color: var(--theme-color);
}

.payout-system .content-box .inner-box .list-item li h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.payout-system .content-box .inner-box .list-item li:before{
  position: absolute;
  content: '';
  background: #e1d8d4;
  width: 1px;
  height: calc(100% - 12px);
  top: 5px;
  right: 1.875rem;
}

.payout-system .content-box .inner-box .list-item li:last-child:before{
  display: none;
}

.payout-system .content-box .text-box p{
  margin-bottom: 2.0625rem;
}

.payout-system .image-box{
  position: relative;
  display: block;
  padding-left: 6.25rem;
}

.payout-system .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  padding-right: 0.875rem;
  padding-left: 2.5rem;
  border-radius: 0px 0px 12.5rem 10.625rem;
}

.payout-system .image-box .image img{
  position: relative;
  width: 100%;
  border-radius: 0px 0px 12.5rem 11.25rem;
  z-index: 1;
}

.payout-system .image-box .image:before{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 40px);
  left: 0px;
  bottom: 0px;
  background: -webkit-linear-gradient(90deg, #ffffff 0%, var(--theme-color) 100%);
  border-radius: 15.625rem 15.625rem 15.625rem 17.5rem;
}

.payout-system .image-box .card-image{
  position: absolute;
  left: 0px;
  bottom: 4.375rem;
}


/** video-section **/

.video-section{
  position: relative;
  overflow: hidden;
  padding: 7.0625rem 0px 7.5rem 0px;
}

.video-section .video-content{
  position: relative;
  margin-right: 2.1875rem;
}

.video-section .video-inner{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding: 10.625rem 0px;
  border-radius: 1.5625rem;
}

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

.video-section .content-box .sec-title{
  margin-bottom: 1.9375rem;
}

.video-section .content-box .text-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 6px;
}

.video-section .content-box .text-box h6{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #a49c98;
  font-weight: 500;
  margin-bottom: 1rem;
}

.video-section .content-box .text-box p{
  margin-bottom: 2.0625rem;
}

.video-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
}


/** highlights-section **/

.highlights-section{
  position: relative;
  padding: 7.0625rem 0px 7.125rem 0px;
  background: -webkit-linear-gradient(-15deg, #160f0c 75%, #411f0f 100%);
}

.highlights-block-one .inner-box{
  position: relative;
  display: block;
  padding: 0px 1.25rem;
}

.highlights-section .highlights-block:first-child .highlights-block-one .inner-box,
.highlights-section .highlights-block:nth-child(2) .highlights-block-one .inner-box,
.highlights-section .highlights-block:nth-child(3) .highlights-block-one .inner-box{
  padding-bottom: 2.6875rem;
  margin-bottom: 2.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.highlights-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.12);
  width: 1px;
  height: 13.125rem;
  top: 3px;
  right: -0.9375rem;
}

.highlights-section .highlights-block:nth-child(3) .highlights-block-one .inner-box:before,
.highlights-section .highlights-block:nth-child(6) .highlights-block-one .inner-box:before{
  display: none;
}

.highlights-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 5.625rem;
  height: 5.625rem;
  line-height: 5.625rem;
  text-align: center;
  margin-bottom: 2.0625rem;
}

.highlights-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.08);
  width: 4.75rem;
  height: 6rem;
  left: 7px;
  top: 0px;
  border-radius: 6.25rem;
  transform: rotate(45deg);
}

.highlights-block-one .inner-box .icon-box:after{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.08);
  width: 4.75rem;
  height: 6rem;
  left: 7px;
  top: 0px;
  border-radius: 6.25rem;
  transform: rotate(-45deg);
}

.highlights-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 0.9375rem;
}

.highlights-block-one .inner-box h3 a{
  display: inline-block;
  color: #fff;
}

.highlights-block-one .inner-box h3 a:hover{
  color: var(--theme-color);
}

.highlights-block-one .inner-box p{
  color: #a49c98;
}

.footer-contact-area{
  position: relative;
  background: -webkit-linear-gradient(-30deg, #160f0c 75%, #411f0f 100%);
}

.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;
}


/** contact-section **/

.contact-section{
  position: relative;
  padding-top: 7.5rem;
}

.contact-section .form-inner{
  position: relative;
  display: block;
  background: #fff;
  padding: 2.6875rem 3.125rem 3.125rem 3.125rem;
  border-radius: 10px;
}

.contact-section .form-inner .sec-title h2{
  font-size: 2.5rem;
  line-height: 3.125rem;
}

.contact-section .form-inner .sec-title{
  margin-bottom: 1.6875rem;
}

.contact-section .form-inner .info-list{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.contact-section .form-inner .info-list li{
  margin-right: 10px;
}

.contact-section .form-inner .info-list li:last-child{
  margin: 0px;
}

.contact-section .form-inner .info-list li a{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: var(--title-color);
  background: #f5ece8;
  padding: 9px 1.25rem;
  border-radius: 2.5rem;
  text-align: center;
  z-index: 1;
}

.contact-section .form-inner .info-list li a:hover{
  color: #fff;
}

.contact-section .form-inner .info-list li a:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-30deg, #160f0c 75%, #411f0f 100%);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  z-index: -1;
  opacity: 0;
  transition: all 500ms ease;
}

.contact-section .form-inner .info-list li a:hover:before{
  opacity: 1;
}

.contact-section .form-inner .form-group{
  position: relative;
  margin-bottom: 1.1875rem;
}

.contact-section .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.contact-section .form-inner .form-group input[type='text'],
.contact-section .form-inner .form-group input[type='email'],
.contact-section .form-inner .form-group textarea,
.contact-section .form-inner .form-group .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 3.375rem;
  border-bottom: 1px solid #ece6e4;
  font-size: 1rem;
  color: #7d7373;
  transition: all 500ms ease;
}

.contact-section .form-inner .form-group .select-box{
  min-height: 3.375rem;
}

.contact-section .form-inner .form-group .nice-select{
  position: relative;
  line-height: 3.375rem;
  border-radius: 0px;
  text-transform: none;
}

.contact-section .form-inner .form-group .nice-select:before{
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 1.25rem;
  color: #a59d99;
  top: 3px;
  right: 0px;
}

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus{
  border-color: var(--theme-color);
}

.contact-section .form-inner .form-group textarea{
  height: 5.875rem;
  resize: none;
  padding-top: 0.875rem;
}

.contact-section .form-inner .message-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5ece8;
  padding-left: 2.0625rem;
  border-radius: 2.5rem;
  margin-top: 1.3125rem;
}

.contact-section .form-inner .message-btn .check-box label{
  font-weight: 400;
  color: #726e6d;
  font-family: var(--text-font);
  padding-left: 1.375rem;
}

.contact-section .form-inner .message-btn .check-box label:before{
  border-color: #d4cbc8;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 3px;
  top: 6px;
}

.contact-section .form-inner .message-btn .check-box label:after{
  width: 6px;
  height: 6px;
  top: 10px;
  left: 4px;
}

.contact-section .form-inner .message-btn .theme-btn{
  background: #fff;
}

.contact-section .form-inner .message-btn .theme-btn:hover{
  background: var(--theme-color);
}

.contact-section .content-box{
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 3.0625rem 2.4375rem 2.6875rem 2.4375rem;
}

.contact-section .content-box .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-section .content-box .icon-box{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 1.4375rem;
}

.contact-section .content-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-section .content-box p{
  position: relative;
  display: block;
  color: #a49c98;
  margin-bottom: 18.875rem;
}

.contact-section .content-box .theme-btn{
  width: 100%;
  margin-bottom: 1.1875rem;
  background: #fff;
  color: var(--title-color);
}

.contact-section .content-box .theme-btn:hover{
  color: #fff;
  background: var(--theme-color);
}

.contact-section .content-box .theme-btn:before{
  background: var(--theme-color);
}

.contact-section .content-box .active-text{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #a49c98;
  padding-left: 1.25rem;
}

.contact-section .content-box .active-text:before{
  position: absolute;
  content: '';
  background: #51b662;
  width: 10px;
  height: 10px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

.contact-section .content-box .special-text{
  position: absolute;
  top: 3.25rem;
  right: -3.75rem;
}

.contact-section .content-box h6{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  background: #fff;
  border-radius: 2.5rem;
  padding: 0.75rem 1.25rem 0.75rem 3.3125rem;
  transform: rotate(-10deg);
}

.contact-section .content-box h6 img{
  position: absolute;
  left: 1.25rem;
  top: 0.75rem;
}

.contact-section .content-box .special-text .shape{
  position: absolute;
  left: -3.125rem;
  top: -1.4375rem;
  width: 3.125rem;
  height: 3.9375rem;
  background-repeat: no-repeat;
}


/** footer-style-four **/

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

.footer-style-four .footer-top{
  padding: 7.125rem 0px 1.9375rem 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: 1.4375rem;
}

.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: 1.0625rem;
  right: -0.875rem;
  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: 4.375rem 0px 7.125rem 0px;
}

.footer-style-four .widget-title{
  position: relative;
  display: block;
  margin-bottom: 1rem;
}

.footer-style-four .widget-title h6{
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #a49c98;
}

.footer-style-four .newsletter-widget p{
  color: #fff;
  margin-bottom: 1.4375rem;
}

.footer-style-four .newsletter-widget form .form-group{
  position: relative;
  margin-bottom: 1.4375rem;
}

.footer-style-four .newsletter-widget form .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 3.375rem;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 2.5rem;
  font-size: 1rem;
  color: #726e6d;
  padding: 10px 3.75rem 10px 1.875rem;
  transition: all 400ms ease;
}

.footer-style-four .newsletter-widget form .form-group button[type='submit']{
  position: absolute;
  top: 5px;
  right: 5px;
  width: 3.75rem;
  height: 2.75rem;
  line-height: 3.125rem;
  background: #160f0c;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 2.5rem;
  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: 1.875rem;
}

.list-style-four li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #fff;
  padding-left: 1.875rem;
  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: 1rem;
  line-height: 1.625rem;
  color: #fff;
  padding-left: 1.875rem;
}

.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: 1rem;
  line-height: 1.625rem;
  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: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #fff;
}

.footer-style-four .footer-bottom .scroll-to-target{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 1.625rem;
  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: 1rem;
  font-weight: 400;
}


/*** 

====================================================================
                        Home-Page-Five
====================================================================

***/


/** 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 5rem;
}

.header-top-three .left-column h6{
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #fff;
  font-weight: 500;
  padding-left: 1.4375rem;
}

.header-top-three .left-column h6 i{
  position: absolute;
  left: 0px;
  top: 1px;
  font-weight: 400;
  color: var(--theme-color);
  font-size: 1.25rem;
}

.header-top-three .left-column h6 strong{
  font-size: 0.8125rem;
  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: 3.125rem;
}

.header-top-three .right-column .links-list li{
  margin-right: 2.5rem;
}

.header-top-three .right-column .links-list li:last-child{
  margin: 0px;
}

.header-top-three .right-column .links-list li a{
  font-size: 1rem;
  line-height: 1.625rem;
  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: 1.5625rem;
}

.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: 1.25rem;
  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 5rem;
}

.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: 1.375rem;
  color: #fff;
  cursor: pointer;
  margin-left: 5rem;
  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: 1.375rem;
  left: -2.5rem;
  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: 1.6875rem;
  padding-bottom: 1.6875rem;
  color: #fff;
}

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


/*** Search Popup ***/

.search-popup {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.80);
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.search-popup .popup-inner{
  width: 100%;
  background: -webkit-linear-gradient(0deg, #16120d 0%, #9d6c21 100%);
  height: 100%;
}

.search-popup .upper-box{
  position: relative;
  padding: 4.375rem 4.375rem;
  z-index: 99;
}

.search-popup .upper-box .logo-box{
  max-width: 11.375rem;
}

.search-popup .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.search-popup .upper-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-popup .close-search {
  position: relative;
  font-size: 1.5625rem;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.search-popup .close-search:hover {
  color: red;
}

.search-popup .search-form {
  position: relative;
  width: 100%;
  padding: 6.25rem 0px 15.625rem 0px;
}

.search-popup .search-form .form-group{
  position: relative;
  margin: 0px;
}

.search-popup .search-form input[type="search"] {
  position: relative;
  display: block;
  width: 100%;
  height: 3.75rem;
  padding: 1.25rem 1.875rem;
  background: rgba(255, 255, 255, 0.10);
  line-height: 1.875rem;
  font-size: 1.25rem;
  border: none;
  font-weight: 400;
  border-radius: 10px;
  padding-right: 3.125rem;
  color: #fff;
}

.search-popup .search-form button[type="submit"] {
  position: absolute;
  top: 1.3125rem;
  right: 1.875rem;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .form-control:focus{
  box-shadow: none !important;
}


/** banner-style-five **/

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

.banner-style-five .slide-item{
  position: relative;
  padding: 15.6875rem 0px 16.5625rem 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: 12.5rem;
  max-width: 53.125rem;
}

.banner-style-five .content-box h2{
  font-size: 5rem;
  line-height: 5.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.125rem;
}

.banner-style-five .content-box p{
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #e2d8c9;
  margin-bottom: 0px;
}

.banner-style-five .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 6.25rem;
  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: 8.4375rem;
  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: 4.0625rem;
  top: 0px;
}

.banner-style-five .owl-nav button.owl-prev:before{
  position: absolute;
  content: "\f10c";
  font-family: 'flaticon';
  font-size: 3.125rem;
  color: #fff;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.banner-style-five .owl-nav button.owl-next{
  position: absolute;
  right: 7.25rem;
  top: 0px;
}

.banner-style-five .owl-nav button.owl-next:before{
  position: absolute;
  content: "\f10d";
  font-family: 'flaticon';
  font-size: 3.125rem;
  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);
}


.banner-style-five .banner-carousel .owl-dots{
  position: absolute;
  left: 7.4375rem;
  top: 15.875rem;
  counter-reset: slides-num;
  min-height: 1.875rem;
  min-width: 3.1875rem;
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  right: 0px;
  text-align: left;
}

.banner-style-five .banner-carousel .owl-dots::after {
  position: absolute;
  left: 3.4375rem;
  top: 2.625rem;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 1.125rem;
  color: #a79f93;
  font-weight: 500;
}

.banner-style-five .banner-carousel .owl-dots:before{
  position: absolute;
  content: '';
  left: 3.125rem;
  top: 2.875rem;
  width: 1px;
  height: 0.9375rem;
  background: #a79f93;
  transform: rotate(15deg);
}

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

.banner-style-five .banner-carousel .owl-dots button{
  position: absolute;
  top: 0px;
  left: 0px;
  counter-increment: slides-num;
  font-size: 4.375rem;
  line-height: 4.375rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: #fff;
}

.banner-style-five .banner-carousel .owl-dots button.active:before{
  position: absolute;
  content: counter(slides-num);
}

.banner-style-five .banner-carousel .owl-dots button.active:after{
  position: absolute;
  content: '0';
  top: 0px;
  right: 0px;
}

.banner-style-five .curve-text{
  position: absolute;
  right: -7.0625rem;
  bottom: -3.6875rem;
  top: inherit;
  width: 9.375rem;
  height: 9.375rem;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
  background: transparent;
}

.banner-style-five .curve-text .curved-circle-2{
  position: absolute;
  left: 4.625rem;
  top: 10px;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transform: rotate(165deg);
  letter-spacing: 0.5px;
}

.banner-style-five .curve-text .link{
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%,-50%);
}

.banner-style-five .curve-text .link a{
  position: relative;
  display: inline-block;
  font-size: 2.25rem;
  color: #fff;
}

.banner-style-five .curve-text .link a:hover{
  color: var(--theme-color);
}


/** about-style-four **/

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

.about-style-four .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.25rem;
}

.about-style-four .inner-box .text-box{
  max-width: 42.8125rem;
}

.about-style-four .inner-box .award-box .badge{
  position: relative;
  display: block;
  margin-bottom: 0.875rem;
}

.about-style-four .inner-box .award-box span{
  position: relative;
  display: block;
  font-size: 1rem;
}

.about-style-four .inner-box .text-box p{
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 2.625rem;
}

.about-style-four .inner-box .text-box .signature{
  position: relative;
  display: block;
  margin-bottom: 1.1875rem;
}

.about-style-four .inner-box .text-box h5{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.about-style-four .inner-box .text-box h5 span{
  color: #a79f93;
}

.about-style-four .sec-title{
  margin-bottom: 2.375rem;
}

.about-style-four .links-box .links-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-style-four .links-box .links-list li{
  margin-right: 1.25rem;
}

.about-style-four .links-box .links-list li:last-child{
  margin-right: 0px;
}

.about-style-four .links-box .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--title-color);
  background: #f7f0e5;
  padding: 0.8125rem 1.875rem 0.875rem 3.75rem;
  border-radius: 2.5rem;
}

.about-style-four .links-box .links-list li a:hover{
  background: #fff;
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.10);
}

.about-style-four .links-box .links-list li a span{
  position: absolute;
  display: inline-block;
  left: 10px;
  top: 10px;
  width: 2.125rem;
  height: 2.125rem;
  line-height: 2.25rem;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 1.875rem;
  font-weight: 300;
  transition: all 400ms ease;
}

.about-style-four .links-box .links-list li a:hover span{
  background: var(--theme-color);
}


/** highlights-style-two **/

.highlights-style-two{
  position: relative;
  /*background: -webkit-linear-gradient(-45deg, #16120d 50%, #634618 100%);*/
  padding: 7.125rem 0px 5.625rem 0px;
}

.highlights-block-two .inner-box{
  position: relative;
  display: block;
  padding: 2.0625rem 1.875rem 2.0625rem 9.0625rem;
  border-radius: 10px;
  margin-bottom: 1.875rem;
}

.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: 6.9375rem;
  top: 3.125rem;
}

.highlights-block-two .inner-box h2{
  position: absolute;
  left: 2.5rem;
  top: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 2.25rem;
  line-height: 2.875rem;
  color: var(--theme-color);
  min-width: 3.125rem;
}

.highlights-block-two .inner-box h2:before{
  position: absolute;
  content: '';
  width: 0.6875rem;
  height: 0.6875rem;
  border: solid;
  border-width: 2px;
  border-color: var(--theme-color);
  border-radius: 50%;
  top: 2.5rem;
  right: -1.6875rem;
}

.highlights-block-two .inner-box h2:after{
  position: absolute;
  content: '';
  width: 0.6875rem;
  height: 0.6875rem;
  border: solid;
  border-width: 2px;
  border-color: var(--theme-color);
  border-radius: 50%;
  bottom: 2.5rem;
  right: -1.6875rem;
}

.highlights-block-two .inner-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  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: #f7f0e5;
}

.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;
}


/** offer-style-three **/

.offer-style-three{
  position: relative;
  padding: 7.5rem 0px 7rem 0px;
}

.offer-style-three .image-box{
  position: relative;
  display: block;
  margin-right: 1.875rem;
}

.offer-style-three .image-box .image{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.offer-style-three .image-box .image:before{
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.offer-style-three .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.offer-style-three .image-box .image img{
  width: 100%;
  border-radius: 10px;
}

.offer-style-three .content-box{
  position: relative;
  display: block;
  margin-top: -7px;
}

.offer-style-three .content-box .sec-title{
  margin-bottom: 2.8125rem;
}

.offer-style-three .content-box .accordion{
  position: relative;
  padding-left: 5rem;
  padding-bottom: 1.875rem;
}

.offer-style-three .content-box .accordion:before{
  position: absolute;
  content: '';
  background: #ece5d9;
  width: 1px;
  height: calc(100% - 0px);
  left: 1.6875rem;
  top: 10px;
  transition: all 500ms ease;
}

.offer-style-three .content-box .accordion:last-child:before{
  height: calc(100% - 20px);
}

.offer-style-three .content-box .accordion:last-child{
  padding-bottom: 0px;
}

.offer-style-three .content-box .accordion.active-block:before{
  background: var(--theme-color);
}

.offer-style-three .content-box .accordion .icon-box{
  position: absolute;
  left: 0px;
  top: 4px;
  display: inline-block;
  width: 3.375rem;
  height: 3.375rem;
  line-height: 4rem;
  text-align: center;
  font-size: 1.875rem;
  color: var(--title-color);
  background: #fff;
  border: 1px solid #ece5d9;
  border-radius: 50%;
  transition: all 500ms ease;
}

.offer-style-three .content-box .accordion.active-block .icon-box{
  background: var(--theme-color);
  border-color: var(--theme-color);
  transform: rotate(90deg);
}

.offer-style-three .content-box .accordion .acc-btn{
  position: relative;
  cursor: pointer;
}

.offer-style-three .content-box .accordion .acc-btn h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--theme-color);
  margin-bottom: 8px;
}

.offer-style-three .content-box .accordion .acc-btn h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
}

.offer-style-three .content-box .accordion .acc-content{
  position: relative;
  padding-top: 1.25rem;
}

.offer-style-three .content-box .accordion .acc-content p{
  margin-bottom: 1.4375rem;
}

.offer-style-three .content-box .accordion .acc-content .links-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.offer-style-three .content-box .accordion .acc-content .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  background: #f7f0e5;
  padding: 10px 1.25rem;
  border-radius: 2.5rem;
}

.offer-style-three .content-box .accordion .acc-content .links-list li a:hover{
  color: #fff;
  background: var(--theme-color);
}

.pricing-section.bg-color-8 .content-inner{
  background: -webkit-linear-gradient(-45deg, #16120d 50%, #473214 100%);
}

.bg-color-9 {
  background: -webkit-linear-gradient(-45deg, #16120d 50%, #513a16 100%);
}

.profit-calculator.home-5 .profit-inner .inner-box .text{
  background: #f7f0e5;
}

.profit-calculator.home-5 .profit-inner .profit-box .progress-box .bar-inner:before{
  background-image: url(../image/line-2.png);
}

.profit-calculator.home-5 .profit-inner .bg-layer{
  background: -webkit-linear-gradient(-90deg, #febd58 0%, #f7f0e5 100%);
}

.profit-calculator.home-5 .profit-inner .big-text{
  color: rgba(157, 108, 33, 0.20);
}


/** subscribe-section **/

.subscribe-section{
  position: relative;
  padding: 7.5rem 0px;
}

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

.subscribe-section .bg-layer:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-45deg, #16120d 50%, #513a16 100%);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.subscribe-section .content-box{
  position: relative;
  display: block;
  max-width: 35.625rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 2.625rem 3.125rem 3.125rem 3.125rem;
}

.subscribe-section .content-box .sec-title p{
  color: #a79f93;
  margin-top: 0.6875rem;
}

.subscribe-section .content-box .sec-title{
  margin-bottom: 2.0625rem;
}

.subscribe-section .content-box .form-inner .form-group{
  position: relative;
  margin: 0px;
}

.subscribe-section .content-box .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 3.375rem;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 1rem;
  color: #6b6965;
  padding: 0px 1.875rem;
  margin-bottom: 0.9375rem;
}

.subscribe-section .content-box .form-inner .form-group input:focus{
  border-color: var(--theme-color);
}

.subscribe-section .content-box .form-inner .check-box label{
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-family: var(--title-color);
  color: #a79f93;
  font-weight: 400;
}

.subscribe-section .content-box .form-inner .check-box label:before{
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.12);
}

.subscribe-section .content-box .form-inner .check-box{
  margin-bottom: 1.8125rem;
}


/** news-style-three **/

.news-style-three{
  position: relative;
  padding: 7.125rem 0px 5.625rem 0px;
}

.news-block-three .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem 1.875rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 1.875rem;
  transition: all 500ms ease;
}

.news-block-three .inner-box:hover{
  transform: translateY(-10px);
}

.news-block-three .inner-box h6{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #f7f0e5;
  border-radius: 2.5rem;
  padding: 9px 1rem;
  margin-bottom: 1.4375rem;
}

.news-block-three .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

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

.news-block-three .inner-box h3 a:hover{
  color: var(--theme-color);
}

.news-block-three .inner-box .post-info{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2.0625rem;
  padding-bottom: 2.125rem;
  border-bottom: 1px solid #ece5d9;
}

.news-block-three .inner-box .post-info li{
  position: relative;
  margin-right: 2.125rem;
  padding-left: 1.4375rem;
  font-size: 1rem;
  color: #6b6965;
}

.news-block-three .inner-box .post-info li:last-child{
  margin: 0px !important;
}

.news-block-three .inner-box .post-info li a{
  display: inline-block;
  color: #6b6965;
}

.news-block-three .inner-box .post-info li a:hover{
  color: var(--theme-color);
}

.news-block-three .inner-box .post-info li i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 0.875rem;
  color: #a9a196;
}

.news-block-three .inner-box .post-info li:before{
  position: absolute;
  content: '';
  background: #c2d2cd;
  width: 3px;
  height: 0.875rem;
  right: -1.125rem;
  top: 6px;
  border-radius: 2px;
}

.news-block-three .inner-box .post-info li:last-child:before{
  display: none;
}

.news-block-three .inner-box p{
  margin-bottom: 1.75rem;
}

.news-block-three .inner-box .lower-box{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news-block-three .inner-box .lower-box .link a{
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  line-height: 2.75rem;
  border: 1px solid #ece5d9;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--title-color);
}

.news-block-three .inner-box .lower-box .link a:hover{
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.news-block-three .inner-box .lower-box .post-info{
  padding: 0px;
  margin: 0px;
  border: none;
}


/** testimonial-style-three **/

.testimonial-style-three{
  position: relative;
  padding: 7.5rem 0px 7.5rem 0px;
}

.testimonial-style-three .image-box{
  position: relative;
  display: block;
  margin-right: 6.25rem;
  margin-left: -2.125rem;
}

.testimonial-style-three .image-box .image{
  position: relative;
  display: block;
}

.testimonial-style-three .image-box .image img{
  position: relative;
  width: 100%;
}

.testimonial-style-three .image-box .text{
  position: absolute;
  left: -3.75rem;
  top: 11.6875rem;
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.10);
  padding: 0.75rem 1.1875rem;
}

.testimonial-style-three .image-box .text h6{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  padding-left: 1.75rem;
}

.testimonial-style-three .image-box .text h6:before{
  position: absolute;
  content: "\f10f";
  font-family: 'flaticon';
  font-size: 1.125rem;
  left: 0px;
  top: 0px;
  font-weight: 400;
  color: #00b67a;
}

.testimonial-style-three .image-box .icon-box{
  position: absolute;
  display: inline-block;
  width: 5.625rem;
  height: 4.375rem;
  line-height: 4.375rem;
  background: #faf4f2;
  text-align: center;
  border-radius: 3.125rem;
  right: -2.8125rem;
  top: 8.4375rem;
}

.testimonial-style-three .image-box .curve-text{
  position: absolute;
  right: -1.25rem;
  bottom: 0px;
  width: 9.375rem;
  height: 9.375rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.10);
}

.testimonial-style-three .image-box .curve-text .curved-circle-2{
  position: absolute;
  left: 4.75rem;
  top: 1.0625rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  transform: rotate(165deg);
}

.testimonial-style-three .image-box .curve-text .link{
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%,-50%);
}

.testimonial-style-three .image-box .curve-text .link a{
  position: relative;
  display: inline-block;
  font-size: 2.25rem;
  color: var(--title-color);
}

.testimonial-style-three .image-box .curve-text .link a:hover{
  color: var(--theme-color);
}

.testimonial-style-three .testimonial-block-one .inner-box{
  background: transparent;
  border-radius: 0px;
  padding: 0px;
  border: none;
}

.testimonial-style-three .testimonial-block-one .inner-box .author-box h3{
  color: #fff;
}

.testimonial-style-three .testimonial-block-one .inner-box .author-box{
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-style-three .testimonial-block-one .inner-box .author-box .icon-box{
  color: var(--theme-color);
}

.testimonial-style-three .testimonial-block-one .inner-box .text-box h5{
  color: #fff;
}

.testimonial-style-three .testimonial-block-one .inner-box .text-box p{
  color: #a79f93;
  font-size: 1.125rem;
  font-weight: 500;
}

.testimonial-style-three .testimonial-block-one .inner-box .rating{
  position: relative;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.875rem;
  padding: 9px 0.8125rem 7px 0.8125rem;
  margin-top: 9px;
}

.testimonial-style-three .testimonial-block-one .inner-box .rating h6{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-left: 1.5rem;
  color: #fff;
}

.testimonial-style-three .testimonial-block-one .inner-box .rating h6 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 1.125rem;
  color: #00b67a;
}

.testimonial-style-three .sec-title{
  margin-bottom: 1.9375rem;
}


/** footer-style-five **/

.footer-style-five{
  position: relative;
  padding: 0px 5rem;
}

.footer-style-five .inner-container{
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 8.375rem 3.125rem 2.6875rem 3.125rem;
}

.footer-style-five .inner-container .scroll-to-target{
  position: absolute;
  display: inline-block;
  top: 3.125rem;
  right: 3.125rem;
  width: 4rem;
  height: 3.375rem;
  line-height: 4rem;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.875rem;
  color: var(--title-color);
  background: var(--theme-color);
}

.footer-style-five .inner-container .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 35.3125rem;
  height: 30.5625rem;
  background-repeat: no-repeat;
}

.footer-style-five .inner-container .pattern-layer .pattern-2{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 29.0625rem;
  height: 40.25rem;
  background-repeat: no-repeat;
}

.footer-style-five .upper-box .footer-logo{
  margin-bottom: 1.6875rem;
}

.footer-style-five .upper-box h2{
  display: block;
  font-size: 5.625rem;
  line-height: 6.25rem;
  margin-bottom: 6px;
}

.footer-style-five .upper-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 2.1875rem;
}

.footer-style-five .upper-box .info-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-style-five .upper-box .info-list li{
  position: relative;
  margin-right: 6.25rem;
}

.footer-style-five .upper-box .info-list li:before{
  position: absolute;
  content: '';
  background: #ece5d9;
  width: 1px;
  height: calc(100% - 15px);
  top: 7px;
  right: -3.125rem;
}

.footer-style-five .upper-box .info-list li:last-child:before{
  display: none;
}

.footer-style-five .upper-box .info-list li:last-child{
  margin: 0px;
}

.footer-style-five .upper-box .info-list li p{
  display: block;
  margin-bottom: 7px;
}

.footer-style-five .upper-box .info-list li h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.footer-style-five .upper-box .info-list li h5 a{
  display: inline-block;
  color: var(--title-color);
}

.footer-style-five .upper-box .info-list li h5 a:hover{
  color: var(--theme-color);
}

.footer-style-five .upper-box .social-links{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-style-five .upper-box .social-links li{
  margin-right: 10px;
}

.footer-style-five .upper-box .social-links li:last-child{
  margin: 0px;
}

.footer-style-five .upper-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.875rem;
  background: #f7f0e5;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.125rem;
  color: var(--title-color);
}

.footer-style-five .upper-box .social-links li a:hover{
  background: var(--theme-color);
}

.footer-style-five .upper-box{
  position: relative;
  display: block;
  margin-bottom: 1.6875rem;
}

.footer-style-five .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-style-five .lower-box .language-box{
  position: relative;
  display: inline-block;
  padding-left: 1.875rem;
  margin-bottom: 5px;
}

.footer-style-five .lower-box .language-box .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 1.25rem;
  color: var(--title-color);
}

.footer-style-five .lower-box .language-box .nice-select{
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  padding: 0px;
  padding-right: 1.4375rem;
  text-transform: capitalize;
}

.footer-style-five .lower-box .language-box .nice-select .list{
  min-width: 3.75rem;
  max-height: 9.375rem;
  overflow-y: scroll;
}

.footer-style-five .lower-box .language-box .nice-select:before{
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 1.25rem;
  top: 1px;
  right: 0px;
  color: #a6b3b0;
}

.footer-style-five .lower-box .footer-nav{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-five .lower-box .footer-nav li{
  position: relative;
  display: inline-block;
  margin-right: 1.4375rem;
}

.footer-style-five .lower-box .footer-nav li:last-child{
  margin: 0px !important;
}

.footer-style-five .lower-box .footer-nav li a{
  display: inline-block;
  color: #6b6965;
}

.footer-style-five .lower-box .footer-nav li a:hover{
  color: var(--theme-color);
}

.footer-style-five .lower-box .footer-nav li:before{
  position: absolute;
  content: '.';
  font-size: 1.0625rem;
  right: -0.875rem;
  bottom: 1px;
  color: #6b6965;
}

.footer-style-five .lower-box .footer-nav li:last-child:before{
  display: none;
}

.footer-style-five .lower-box .download-list{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-five .lower-box .download-list li{
  position: relative;
  display: block;
  margin-right: 1.25rem;
}

.footer-style-five .lower-box .download-list li:last-child{
  margin: 0px;
}

.footer-style-five .lower-box .download-list li.app-store a{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  border-radius: 2.5rem;
  padding: 0.78125rem 2.375rem;
  border: 1px solid var(--theme-color);
}

.footer-style-five .lower-box .download-list li.app-store a i{
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  margin-right: 9px;
  top: 5px;
}

.footer-style-five .lower-box .download-list li.play-store a{
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2.5rem;
  padding: 0.9375rem 2.375rem;
  background: #16120d;
}

.footer-style-five .lower-box .download-list li.play-store a img{
  position: relative;
  display: inline-block;
  margin-right: 9px;
}

.footer-style-five .footer-bottom{
  padding: 1.6875rem 0px;
}

.footer-style-five .footer-bottom p{
  color: #a79f93;
}

.footer-style-five .footer-bottom p a{
  color: var(--theme-color);
}

.footer-style-five .footer-bottom p a:hover{
  text-decoration: underline;
}



/*** 

====================================================================
                        Inner-Page
====================================================================

***/


/** page-title **/

.page-title{
  position: relative;
  padding: 15rem 0px 2.125rem 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, #639fdb 30%, var(--theme-color) 80%);
  opacity: 0.4;
}

.page-title h1{
  opacity: 0;
  position: relative;
  display: block;
  font-size: 3.375rem;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  margin-bottom: 8.125rem;
  font-weight: bold;
  text-transform: uppercase;
}

.page-title .bread-crumb{
  position: relative;
  display: block;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  padding-right: 1.625rem;
  margin-right: 5px;
}

.page-title .bread-crumb li:last-child{
  padding: 0px;
  margin: 0px;
}

.page-title .bread-crumb li a{
  display: inline-block;
  color: #fff;
}

.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: 1.25rem;
  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: -7.5rem;
  margin-right: -7.5rem;
  margin-top: 7.5rem;
}

.about-style-four .image-box img{
  width: 100%;
  border-radius: 10px;
}

.about-style-four.about-page .links-box .links-list li a{
  background: #6aa8e0;
}

.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: 7.5rem 0px 7.1875rem 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: #fff;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.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;
}


/** statements-section **/

.statements-section{
  position: relative;
  padding: 7.0625rem 0px 5rem 0px;
}

.statements-block-one .inner-box{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 12.5625rem 0.9375rem 1.375rem 0.9375rem;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 2.5rem;
}

.statements-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: #fff;
}

.statements-block-one .inner-box .shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 7.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.statements-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 3.125rem 1.875rem 2.6875rem 1.875rem;
  border-radius: 10px;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
}

.statements-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 1.4375rem;
}

.statements-block:nth-child(2) .statements-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 3.125rem;
  height: 1.25rem;
  left: 50%;
  margin-left: -1.5625rem;
  bottom: -1.25rem;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.statements-block:nth-child(3) .statements-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 3.125rem;
  height: 1.25rem;
  left: 50%;
  margin-left: -1.5625rem;
  top: -1.25rem;
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.statements-block-three .inner-box{
  position: relative;
  display: block;
  background: var(--theme-color);
  border-radius: 10px;
  padding: 3.125rem 1.875rem 1.875rem 1.875rem;
  margin-bottom: 2.5rem;
}

.statements-block-three .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 1.4375rem;
}

.statements-block-three .inner-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.statements-block-three .inner-box p{
  color: #fff;
  margin-bottom: 2.5625rem;
}

.statements-block-three .inner-box .list-item{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 1.8125rem 1.875rem;
}

.statements-block-three .inner-box .list-item li{
  position: relative;
  display: block;
  font-size: 1rem;
  color: #6d7270;
  padding-left: 1.625rem;
  text-align: left;
  margin-bottom: 10px;
}

.statements-block-three .inner-box .list-item li:last-child{
  margin-bottom: 0px;
}

.statements-block-three .inner-box .list-item li:before{
  position: absolute;
  content: '^';
  left: 0px;
  color: var(--theme-color);
  font-size: 1.875rem;
  top: 8px;
}


/** team-section **/

.team-section{
  position: relative;
  padding: 7.0625rem 0px 5.625rem 0px;
}

.team-section .sec-title .theme-btn{
  position: absolute;
  right: 0px;
  bottom: 0.75rem;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 1.875rem;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 10px;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.team-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 1.75rem;
}

.team-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 1.375rem;
  line-height: 1.4375rem;
  margin-bottom: 0.875rem;
}

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

.team-block-one .inner-box .lower-content h3 a:hover{
  color: var(--theme-color);
}

.team-block-one .inner-box .lower-content p{
  margin-bottom: 1.4375rem;
}

.team-block-one .inner-box .lower-content .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 2.5rem;
  padding: 1px 0.9375rem;
}

.team-block-one .inner-box .lower-content .social-links{
  position: relative;
  display: flex;
  align-items: center;
}

.team-block-one .inner-box .lower-content .social-links li{
  margin-right: 10px;
}

.team-block-one .inner-box .lower-content .social-links li:last-child{
  margin: 0px;
}

.team-block-one .inner-box .lower-content .social-links li a{
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 1.875rem;
  line-height: 1.875rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  font-size: 0.875rem;
  color: #a5b2af;
  text-align: center;
}

.team-block-one .inner-box .lower-content .social-links li a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.awards-section.bg-color-1 .awards-block-one .inner-box .icon-box{
  background: -webkit-linear-gradient(90deg, #176a4d 0%, #154b38 100%); 1
}

.awards-section.bg-color-1 .awards-block-one .inner-box:before {
  background: -webkit-linear-gradient(0deg, #132c23 0%, #187554 100%);
}

.awards-section.bg-color-1 .dots-style-one .owl-dots .owl-dot{
  background: #a5b2af;
}


/** history-section **/

.history-section{
  position: relative;
  padding: 7.5rem 0px;
}

.history-section .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.125rem;
}

.history-section .inner-box:last-child{
  margin-bottom: 0px;
}

.history-section .inner-box h2{
  position: relative;
  display: block;
  font-size: 3.75rem;
  line-height: 4.375rem;
  color: #6aa8e0;
  margin: 0px 6.25rem;
}

.history-section .inner-box .text-box{
  max-width: 23.125rem;
}

.text-right{
  text-align: right;
}

.history-section .inner-box .text-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 0.9375rem;
}

.history-section .inner-box .image-box{
  position: relative;
  display: inline-block;
}

.history-section .inner-box .image-box .image{
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.history-section .inner-box .image-box .image img{
  width: 100%;
  border-radius: 50%;
}

.history-section .inner-box .image-box .date{
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #dbe5e2;
  font-size: 1rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
}

.history-section .inner-box:nth-child(odd) .image-box .date{
  right: -2.5rem;
}

.history-section .inner-box:nth-child(even) .image-box .date{
  left: -2.5rem;
}

.history-section .inner-container{
  position: relative;
  padding: 3.875rem 0px;
}

.history-section .inner-container .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.team-page-section{
  position: relative;
  padding: 7.5rem 0px 3.75rem 0px;
}

.team-page-section .team-block-one .inner-box{
  margin-bottom: 3.75rem;
}

.faq-page-section{
  padding: 7.5rem 0px;
}

.faq-page-section .accordion-box .accordion{
  border-color: #dbe5e2;
}

.faq-page-section .accordion-box .accordion.active-block{
  background: #6aa8e0;
}

.faq-page-section .accordion-box .accordion .acc-btn.active {
  background: -webkit-linear-gradient(0deg, #132720 50%, #177252 100%);
}

.faq-page-section .content-box{
  position: relative;
  padding-left: 4.0625rem;
  margin-left: 0.9375rem;
  border-left: 1px solid #dbe5e2;
}

.faq-page-section .tab-btns{
  position: relative;
  display: block;
  margin-left: 0.9375rem;
}

.faq-page-section .tab-btns:before{
  position: absolute;
  content: '';
  background: #e7e1e1;
  width: 1px;
  height: calc(100% - 40px);
  left: 0px;
  top: 1.25rem;
}

.faq-page-section .tab-btns li{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: var(--title-font);
  color: #a5b2af;
  font-weight: 600;
  padding: 1rem 0px 1rem 2.1875rem;
  border-bottom: 1px solid #dbe5e2;
  cursor: pointer;
  transition: all 500ms ease;
}

.faq-page-section .tab-btns li:last-child{
  border-bottom: none;
}

.faq-page-section .tab-btns li.active-btn{
  color: var(--title-color);
}

.faq-page-section .tab-btns li:before{
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  text-align: center;
  border: 1px solid #dbe5e2;
  background: #ffffff;
  border-radius: 50%;
  left: -0.9375rem;
  top: 0.9375rem;
  font-size: 0.875rem;
  color: #c2d2cd;
  transition: all 500ms ease;
}

.faq-page-section .tab-btns li.active-btn:before{
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}


/** error-section **/

.error-section{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19.6875rem 0px 13.75rem 0px;
}

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

.error-section .bg-layer:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 80%);
  opacity: 0.6;
}

.error-section .scroll-text{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.error-section .scroll-text:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.12);
  width: 100%;
  height: 1px;
  left: 0px;
  top: 4.3125rem;
}

.error-section .scroll-text:after{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.12);
  width: 100%;
  height: 1px;
  left: 0px;
  bottom: 4.3125rem;
}

.error-section .scroll-text .text-box-one .text-inner,
.error-section .scroll-text .text-box-two .text-inner{
  position: absolute;
  width: max-content;
  padding: 1.3125rem 0px;
}

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

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

@-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%); }
}

.error-section .scroll-text .text-box-one .text-inner{
  right: 0px;
  top: 0px;
  -moz-animation: scroll-right 90s linear infinite;
  -webkit-animation: scroll-right 90s linear infinite;
  animation: scroll-right 90s linear infinite;
}

.error-section .scroll-text .text-box-two .text-inner{
  left: 0px;
  bottom: 0px;
  -moz-animation: scroll-left 90s linear infinite;
  -webkit-animation: scroll-left 90s linear infinite;
  animation: scroll-left 90s linear infinite;
}

.error-section .scroll-text h6{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0px 1.375rem;
}

.error-section .inner-box{
  position: relative;
  display: block;
  min-width: 48.125rem;
  width: 100%;
  margin: 0 auto;
}

.error-section .inner-box .error-title{
  position: relative;
  display: inline-block;
}

.error-section .inner-box .error-title h1{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18.75rem;
  line-height: 15.625rem;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color);
  margin-bottom: 2.0625rem;
}

.error-section .inner-box .error-title h1 span{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.875rem;
  height: 16.875rem;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: #fff;
  -webkit-text-stroke-color: #fff;
}

.error-section .inner-box .error-title h3{
  position: absolute;
  top: -4.625rem;
  right: 11.875rem;
  font-size: 1.875rem;
  line-height: 2.5rem;
  z-index: 1;
}

.error-section .inner-box .error-title h3:before{
  position: absolute;
  content: '';
  background-image: url(../image/shape-41.png);
  width: 8.75rem;
  height: 7.125rem;
  left: -1.5rem;
  top: -1.3125rem;
  background-repeat: no-repeat;
  z-index: -1;
}

.error-section .inner-box p{
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #a5b2af;
  margin-bottom: 2rem;
}

.error-section .inner-box .theme-btn{
  color: #fff;
}


/** account-section **/

.account-section{
  position: relative;
}

.account-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.account-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.account-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.account-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.875rem 1.5rem 1.875rem;
  overflow: hidden;
}

.account-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 3.75rem;
}

.account-block-one .inner-box h3:before{
  position: absolute;
  content: '';
  width: 6.25rem;
  height: 3px;
  left: 0px;
  bottom: 0px;
  background: -webkit-linear-gradient(0deg, var(--theme-color) 0%, #ffffff 100%);
}

.account-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 2.0625rem;
}

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

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

.account-block-one .inner-box p{
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.8125rem 1.875rem 0.8125rem 0px;
  margin-bottom: 1.4375rem;
  z-index: 1;
  min-height: 4.875rem;
}

.account-block-one .inner-box p:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: calc(100% + 30px);
  height: 100%;
  top: 0px;
  right: 0px;
  border-radius: 0px 2.5rem 2.5rem 0px;
  z-index: -1;
}

.account-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.account-block-one .inner-box .link a:hover{
  color: var(--theme-color);
}

.account-block-one .inner-box .link a span{
  position: relative;
  padding-left: 1.5625rem;
}

.account-block-one .inner-box .link a span:before{
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 1.375rem;
  left: 0px;
  top: -3px;
  font-weight: 400;
}

.account-block-one .inner-box .image-box{
  position: absolute;
  display: inline-block;
  right: -1.25rem;
  bottom: 2.6875rem;
  border-radius: 50%;
  max-width: 15rem;
  max-height: 15rem;
}

.account-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 50%;
}

.account-section .owl-dots{
  position: absolute;
  top: -5.375rem;
  right: 2.625rem;
}

.account-section .owl-nav{
  position: absolute;
  top: -5.25rem;
  right: -0.75rem;
  width: 12.125rem;
}

.account-section .nav-style-one .owl-nav button{
  position: absolute;
  top: 0px;
  color: var(--title-color);
}

.account-section .owl-nav button.owl-prev{
  left: 0px;
}

.account-section .owl-nav button.owl-next{
  right: 0px;
}

.account-section .dots-style-one .owl-dots .owl-dot{
  background: #c2d2cd;
}

.profit-calculator.alternat-2 .profit-inner .inner-box .text{
  background: #6aa8e0;
  color: #6d7270;
}

.profit-calculator.alternat-2 .profit-inner .bg-layer{
  background: -webkit-linear-gradient(-90deg, var(--theme-color) 0%, #e1edea 100%);
}

.working-style-two.alternat-2 .working-block-two .inner-box h6,
.working-style-two.alternat-2 .working-block-two .inner-box h6:before{
  background: #cedfda;
}

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

.funding-section .bg-layer:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 80%);
  opacity: 0.6;
}

.funding-section.alternat-2 .tabs-box-2{
  max-width: 51.875rem;
  margin: 0 auto;
}

.funding-section.alternat-2 .tab-btn-two .tab-btns li{
  color: #a5b2af;
}

.funding-section.alternat-2 .tab-btn-two .tab-btns li.active-btn-2{
  color: #fff;
}

.funding-section.alternat-2 .tab-btn-two .tab-btns li:before{
  border-color: rgba(255, 255, 255, 0.30);
}

.funding-section.alternat-2 .tab-btn-two .tab-btns li:after{
  background: rgba(255, 255, 255, 0.30);
}

.funding-section.alternat-2 .tab-btn-two .tab-btns li.active-btn-2:before{
  border-color: var(--theme-color);
}

.funding-section.alternat-2 .tab-btn-two .tab-btns li.active-btn-2:after{
  background: var(--theme-color);
}


/** account-details **/

.account-details{
  position: relative;
  padding: 7.5rem 0px 7.5rem 0px;
}

.account-details-content{
  position: relative;
  display: block;
}

.account-details-content .content-one h2{
  display: block;
  font-size: 2.5rem;
  line-height: 3.125rem;
  margin-bottom: 1.375rem;
}

.account-details-content .content-one p{
  margin-bottom: 2.6875rem;
}

.account-details-content .content-one .image-box{
  position: relative;
  display: block;
  border-radius: 10px;
}

.account-details-content .content-one .image-box img{
  width: 100%;
  border-radius: 10px;
}

.account-details-content .content-one{
  margin-bottom: 3.75rem;
}

.account-details-content .content-two .text-box{
  margin-bottom: 2.0625rem;
  margin-top: -7px;
}

.account-details-content .content-two .text-box h2{
  position: relative;
  display: block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
}

.account-details-content .content-two .single-item{
  position: relative;
  display: block;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  padding: 1rem 1.875rem 1.375rem 1.875rem;
  margin-bottom: 1.875rem;
  overflow: hidden;
}

.account-details-content .content-two .single-item h4{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: var(--theme-color);
  margin-bottom: 1.0625rem;
}

.account-details-content .content-two .single-item h3{
  position: relative;
  display: inline-block;
  font-size: 1.375rem;
  line-height: 2rem;
  padding: 10px 2.1875rem 8px 0px;
  margin-bottom: 1.4375rem;
  z-index: 1;
}

.account-details-content .content-two .single-item h3:before{
  position: absolute;
  content: '';
  background: #6aa8e0;
  width: calc(100% + 30px);
  height: 100%;
  left: -1.875rem;
  top: 0px;
  z-index: -1;
  border-radius: 0px 2.5rem 2.5rem 0px;
}

.account-details-content .content-two .single-item .overlay-content{
  position: absolute;
  left: 0px;
  top: 1.875rem;
  width: 100%;
  height: 100%;
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  z-index: 1;
  background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 150%);
  opacity: 0;
  transition: all 500ms ease;
}

.account-details-content .content-two .single-item:hover .overlay-content{
  top: 0px;
  opacity: 1;
}

.account-details-content .content-two .single-item .overlay-content h3{
  color: #fff;
}

.account-details-content .content-two .single-item .overlay-content h3:before{
  background: var(--theme-color);
}

.account-details-content .content-two .single-item .overlay-content p{
  color: #a5b2af;
}

.account-details-content .content-two .scroll-text{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2.5rem;
  background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 80%);
  padding: 1.625rem 2.5rem;
  margin-top: 1.25rem;
}

.account-details-content .content-two .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;
}

.account-details-content .content-two .scroll-text .text-list li{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  padding-left: 1.75rem;
  margin-right: 2.5rem;
}

.account-details-content .content-two .scroll-text .text-list li i{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 1.125rem;
  color: var(--theme-color);
}

.account-details-content .content-two .scroll-text .text-list li:last-child{
  margin: 0px;
}

.account-details-content .content-two{
  margin-bottom: 3.25rem;
}

.account-details-content .content-three .text-box{
  margin-bottom: 2.0625rem;
}

.account-details-content .content-three .text-box h2{
  font-size: 1.875rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
}

.account-details-content .content-three .tabs-box{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(-90deg, #6aa8e0 50%, #ffffff 100%);
  border-radius: 10px;
  padding: 2.5rem;
}

.account-details-content .content-three .tab-inner{
  position: relative;
  padding-left: 19.375rem;
}

.account-details-content .content-three .tab-btn-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 16.875rem;
}

.account-details-content .content-three .tab-btns{
  position: relative;
  display: block;
  margin-left: 0.9375rem;
}

.account-details-content .content-three .tab-btns:before{
  position: absolute;
  content: '';
  background: #e7e1e1;
  width: 1px;
  height: calc(100% - 40px);
  left: 0px;
  top: 1.25rem;
}

.account-details-content .content-three .tab-btns li{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: var(--title-font);
  color: #a5b2af;
  font-weight: 600;
  padding: 1rem 0px 1rem 2.1875rem;
  border-bottom: 1px solid #c2d2cd;
  cursor: pointer;
  transition: all 500ms ease;
}

.account-details-content .content-three .tab-btns li:last-child{
  border-bottom: none;
}

.account-details-content .content-three .tab-btns li.active-btn{
  color: var(--title-color);
}

.account-details-content .content-three .tab-btns li:before{
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon';
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  text-align: center;
  border: 1px solid #c2d2cd;
  background: #6aa8e0;
  border-radius: 50%;
  left: -0.9375rem;
  top: 0.9375rem;
  font-size: 0.875rem;
  color: #c2d2cd;
  transition: all 500ms ease;
}

.account-details-content .content-three .tab-btns li.active-btn:before{
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

.account-details-content .content-three .tabs-content .inner-box{
  position: relative;
  padding-top: 11.125rem;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.account-details-content .content-three .tabs-content .inner-box .text-box{
  position: relative;
  display: block;
  padding: 1.4375rem 1.875rem;
  z-index: 1;
  margin-bottom: 0px;
}

.account-details-content .content-three .tabs-content .inner-box .text-box:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 150%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.95;
  z-index: -1;
}

.account-details-content .content-three .tabs-content .inner-box .text-box p{
  color: #a5b2af;
  margin-bottom: 1rem;
}

.account-details-content .content-three .tabs-content .inner-box .text-box .list-item li{
  position: relative;
  display: block;
  color: #a5b2af;
  padding-left: 1.5625rem;
  margin-bottom: 0.6875rem;
}

.account-details-content .content-three .tabs-content .inner-box .text-box .list-item li:last-child{
  margin-bottom: 0px;
}

.account-details-content .content-three .tabs-content .inner-box .text-box .list-item li:before{
  position: absolute;
  content: '^';
  left: 0px;
  color: var(--theme-color);
  font-size: 1.875rem;
  top: 7px;
}

.account-details-content .content-three{
  margin-bottom: 0.75rem;
}

.account-details-content .content-four .text-box{
  margin-bottom: 2rem;
}

.account-details-content .content-four .text-box h2{
  font-size: 1.875rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
}

.account-details-content .content-four.faq-section{
  padding: 0px;
}

.account-details-content .content-four.faq-section .accordion-box .accordion .acc-btn.active{
  background: -webkit-linear-gradient(0deg, #132720 50%, #187c59 100%);
}

.account-details-content .content-four.faq-section .accordion-box .accordion .acc-btn span{
  position: absolute;
  top: 9px;
  right: 1.875rem;
  font-size: 2.25rem;
  line-height: 2.875rem;
  font-family: var(--title-font);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
}

.account-details-content .content-four.faq-section .accordion-box .accordion .acc-btn{
  padding-right: 5rem;
}

.account-details-content .content-four.faq-section .accordion-box .accordion.active-block{
  background: #6aa8e0;
  border-color: transparent;
}

.account-details-content .content-four.faq-section .accordion-box .accordion{
  border-color: #dbe5e2;
}

.account-sidebar{
  position: relative;
  display: block;
}

.account-sidebar .link-box a{
  width: 100%;
  margin-bottom: 3.125rem;
}

.default-sidebar .widget-title{
  position: relative;
  display: block;
  margin-bottom: 1.1875rem;
  padding-left: 1.125rem;
}

.default-sidebar .widget-title h3{
  color: #ffff;
  font-size: 1.375rem;
  line-height: 2rem;
}

.default-sidebar .widget-title:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 6px;
  height: 0.875rem;
  left: 0px;
  top: 9px;
  border-radius: 2px;
}

.default-sidebar .widget-title:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 2px;
  height: 1.125rem;
  left: 2px;
  top: 7px;
}

.account-sidebar .category-widget{
  position: relative;
  background: #6aa8e0;
  padding: 1.375rem 1.5625rem 1.875rem 1.5625rem;
  border-radius: 10px;
  margin-bottom: 3.125rem;
}

.account-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 0.9375rem;
}

.account-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.account-sidebar .category-widget .category-list li a{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  padding-right: 3.75rem;
}

.account-sidebar .category-widget .category-list li a span{
  position: relative;
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 2.5rem;
  padding: 0.75rem 1.5625rem 10px 1.5625rem;
  color: var(--title-color);
  transition: all 500ms ease;
}

.account-sidebar .category-widget .category-list li a:hover span,
.account-sidebar .category-widget .category-list li a.current span{
  color: #fff;
  background: var(--theme-color);
}

.account-sidebar .category-widget .category-list li a i{
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 0px;
  width: 3.75rem;
  height: 3.125rem;
  line-height: 3.75rem;
  background: #fff;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.875rem;
  color: var(--title-color);
  transition: all 500ms ease;
}

.account-sidebar .category-widget .category-list li a:hover i,
.account-sidebar .category-widget .category-list li a.current i{
  color: #fff;
  background: var(--theme-color);
}

.account-sidebar .download-widget{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 1.4375rem 1.5625rem 1.875rem 1.5625rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 3.125rem;
}

.account-sidebar .download-widget .download-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.account-sidebar .download-widget .download-list li:last-child{
  margin-bottom: 0px;
}

.account-sidebar .download-widget .download-list li button{
  position: relative;
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  padding: 10px 1.5625rem 0.75rem 1.5625rem;
  text-align: left;
}

.account-sidebar .download-widget .download-list li button i{
  position: absolute;
  top: 0.875rem;
  right: 1.375rem;
  font-size: 1.0625rem;
  color: #acb8b6;
  font-weight: 400;
  transition: all 500ms ease;
}

.account-sidebar .download-widget .download-list li button:hover i{
  color: var(--theme-color);
}

.account-sidebar .download-widget{
  margin-bottom: 3.125rem;
}

.default-sidebar .contact-widget{
  position: relative;
  display: block;
}

.default-sidebar .contact-widget .widget-content{
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 18.3125rem 1.5625rem 2.5rem 1.5625rem;
}

.default-sidebar .contact-widget .widget-content .shape-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 25.3125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.default-sidebar .contact-widget .widget-content .shape-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 24.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.default-sidebar .contact-widget .widget-content h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0.6875rem;
  color: #fff;
}

.default-sidebar .contact-widget .widget-content h3 span{
  color: var(--theme-color);
}

.default-sidebar .contact-widget .widget-content p{
  color: #a5b2af;
  margin-bottom: 2.0625rem;
}

.default-sidebar .contact-widget .widget-content .phone{
  position: relative;
  display: block;
  width: 100%;
  font-size: 1rem;
  color: var(--title-color);
  background: #fff;
  border-radius: 2.5rem;
  padding: 0.875rem 1.25rem 0.875rem 1.25rem;
  text-align: center;
  margin-bottom: 10px;
}

.default-sidebar .contact-widget .widget-content .phone:hover{
  color: var(--theme-color);
}

.default-sidebar .contact-widget .widget-content .phone span{
  position: relative;
  padding-left: 1.625rem;
}

.default-sidebar .contact-widget .widget-content .phone span:before{
  position: absolute;
  content: "\f11e";
  font-family: 'flaticon';
  font-size: 1rem;
  left: 0px;
  top: -3px;
  color: var(--theme-color);
}

.default-sidebar .contact-widget .widget-content .theme-btn{
  width: 100%;
  color: #fff;
}

.platform-section.trader-page-1{
  padding-bottom: 15rem;
}


/** download-section **/

.download-section{
  position: relative;
}

.download-section .inner-container{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 3.125rem 3.125rem rgba(0, 0, 0, 0.05);
  padding: 3.3125rem 1.875rem 3.75rem 1.875rem;
  margin-left: -3.75rem;
  margin-right: -3.75rem;
  margin-top: -7.5rem;
}

.download-section h2{
  display: block;
  font-size: 1.625rem;
  line-height: 2.25rem;
  margin-bottom: 2.1875rem;
}

.download-section .single-item{
  position: relative;
  display: block;
}

.download-section .single-item:before{
  position: absolute;
  content: '';
  background: #dbe5e2;
  width: 1px;
  height: calc(100% - 6px);
  bottom: 0px;
  right: -0.9375rem;
}

.download-section .single-column:last-child .single-item:before{
  display: none;
}

.download-section .single-item h6{
  display: block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-bottom: 7px;
}

.download-section .single-item h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 5px;
}

.download-section .single-item p{
  display: block;
  margin-bottom: 1.4375rem;
}

.download-section .single-item .download-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-section .single-item .download-list li{
  margin-right: 10px;
}

.download-section .single-item .download-list li:last-child{
  margin: 0px;
}

.download-section .single-item .download-list li a{
  position: relative;
  display: inline-block;
  width: 4.625rem;
  height: 3.375rem;
  line-height: 3.625rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--title-color);
}

.download-section .single-item .download-list li.play-store a{
  line-height: 3.125rem;
}

.download-section .single-item .download-list li a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.chooseus-style-three.trader-page-1{
  background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 100%);
}

.faq-section.alternat-2 .accordion-box .accordion .acc-btn.active{
  background: -webkit-linear-gradient(0deg, #132720 50%, #187c59 100%);
}

.faq-section.alternat-2 .accordion-box .accordion.active-block{
  background: #6aa8e0;
  border-color: transparent;
}

.faq-section.alternat-2 .accordion-box .accordion{
  border-color: #dbe5e2;
}


/** cta-style-two **/

.cta-style-two{
  position: relative;
  padding: 6.9375rem 0px 7.5rem 0px;
}

.cta-style-two .inner-box h2{
  display: block;
  font-size: 3.25rem;
  line-height: 3.875rem;
  margin-bottom: 0.875rem;
}

.cta-style-two .inner-box  p{
  margin-bottom: 2.0625rem;
}

.cta-style-two .inner-box .info-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6.25rem;
  max-width: 36.5625rem;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  padding: 0.8125rem 2.5rem;
}

.cta-style-two .inner-box .info-list li{
  position: relative;
  margin-right: 5rem;
}

.cta-style-two .inner-box .info-list li:before{
  position: absolute;
  content: '';
  background: #dbe5e2;
  width: 1px;
  height: calc(100% - 15px);
  top: 7px;
  right: -2.5rem;
}

.cta-style-two .inner-box .info-list li:last-child:before{
  display: none;
}

.cta-style-two .inner-box .info-list li:last-child{
  margin: 0px;
}

.cta-style-two .inner-box .info-list li span{
  position: relative;
  display: block;
  font-size: 1rem;
  margin-bottom: 7px;
}

.cta-style-two .inner-box .info-list li h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.cta-style-two .inner-box .info-list li h5 a{
  display: inline-block;
  color: var(--title-color);
}

.cta-style-two .inner-box .info-list li h5 a:hover{
  color: var(--theme-color);
}

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


/** course-section **/

.course-section{
  position: relative;
}

.course-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.course-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.course-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

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

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

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

.industry-tab .p-tab .course-block-one{
  position: relative;
  opacity: 0;
  top: 5px;
  -webkit-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.industry-tab .p-tab.active-tab .course-block-one {
  opacity: 1;
  top: 0px;
}

.course-block-one .inner-box{
  position: relative;
  display: block;
}

.course-block-one .inner-box .image-box{
  position: relative;
  display: inline-block;
  margin-bottom: 2.0625rem;
}

.course-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  border-radius: 0.9375rem;
}

.course-block-one .inner-box .image-box .image img{
  width: 100%;
  border-radius: 0.9375rem;
}

.course-block-one .inner-box .image-box a{
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.course-block-one .inner-box .text{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 2.5rem;
  padding: 0.6875rem 1.875rem 0.875rem 1.875rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 1.4375rem;
}

.course-block-one .inner-box .text p{
  position: relative;
  display: inline-block;
  color: #6d7270;
  padding-left: 1.375rem;
}

.course-block-one .inner-box .text p i{
  position: absolute;
  left: 0px;
  top: 4px;
  color: var(--theme-color);
  font-size: 0.9375rem;
}

.course-block-one .inner-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 0.9375rem;
}

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

.course-block-one .inner-box h3 a:hover{
  color: var(--theme-color);
}

.course-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.course-block-one .inner-box .link a:hover{
  color: var(--theme-color);
}

.course-block-one .inner-box .link a span{
  position: relative;
  padding-left: 1.5625rem;
}

.course-block-one .inner-box .link a span:before{
  position: absolute;
  content: "\f104";
  font-family: 'flaticon';
  font-size: 1.25rem;
  left: 0px;
  top: -3px;
  font-weight: 400;
}

.industry-tab .industry-tab-btns{
  position: relative;
  margin-bottom: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-tab .industry-tab-btns .p-tab-btn{
  position: relative;
  margin-right: 1.25rem;
}

.industry-tab .industry-tab-btns .p-tab-btn:last-child{
  margin: 0px;
}

.industry-tab .industry-tab-btns .p-tab-btn h6{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 600;
  padding-right: 3.75rem;
  cursor: pointer;
}

.industry-tab .industry-tab-btns .p-tab-btn.active-btn h6{
  color: #fff;
}

.industry-tab .industry-tab-btns .p-tab-btn h6 span{
  position: relative;
  display: block;
  padding: 0.6875rem 1.8125rem;
  border-radius: 2.5rem;
  border: 1px solid #dbe5e2;
}

.industry-tab .industry-tab-btns .p-tab-btn.active-btn h6 span,
.industry-tab .industry-tab-btns .p-tab-btn.active-btn h6 i{
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.industry-tab .industry-tab-btns .p-tab-btn h6 i{
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 0px;
  width: 3.75rem;
  height: 3.125rem;
  line-height: 3.5rem;
  font-size: 1.875rem;
  border-radius: 2.5rem;
  border: 1px solid #dbe5e2;
}

.industry-tab .industry-tab-btns .p-tab-btn h6 i:before{
  display: inline-block;
  transform: rotate(-90deg);
}

.industry-tab .industry-tab-btns .p-tab-btn.active-btn h6 i:before{
  transform: rotate(0deg);
}

.course-section .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 3.5rem;
}

.course-section .dots-style-one .owl-dots .owl-dot{
  background-color: #c6d5d0;
}

.course-section .owl-nav{
  position: absolute;
  display: block;
  max-width: 12.125rem;
  width: 100%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  bottom: 1.5rem;
  z-index: 1;
}

.course-section .owl-nav button{
  color: var(--title-color);
}

.course-section .owl-nav button.owl-prev{
  position: absolute;
  left: 0px;
  top: 0px;
}

.course-section .owl-nav button.owl-next{
  position: absolute;
  right: 0px;
  top: 0px;
}


/** lesson-section **/

.lesson-section{
  position: relative;
  padding: 7.125rem 0px 5.625rem 0px;
}

.lesson-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.875rem;
  padding: 1.5625rem 1.875rem;
}

.lesson-block-one .inner-box .image-box{
  position: absolute;
  left: 1.875rem;
  top: 1.875rem;
  border-radius: 5px;
}

.lesson-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 5px;
}

.lesson-block-one .inner-box .content-box{
  position: relative;
  padding-left: 10.625rem;
}

.lesson-block-one .inner-box .content-box .rating{
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  padding-left: 1.4375rem;
}

.lesson-block-one .inner-box .content-box .rating i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 1rem;
  font-weight: 400;
  color: #00b67a;
}

.lesson-block-one .inner-box .content-box h4{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  color: var(--theme-color);
  margin-bottom: 0.75rem;
}

.lesson-block-one .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

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

.lesson-block-one .inner-box .content-box h3 a:hover{
  color: var(--theme-color);
}

.lesson-block-one .inner-box .content-box .info-list li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 1rem;
  color: #6d7270;
  margin-right: 1.25rem;
  padding-left: 1.5rem;
}

.lesson-block-one .inner-box .content-box .info-list li:last-child{
  margin: 0px;
}

.lesson-block-one .inner-box .content-box .info-list li i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 0.875rem;
  color: var(--theme-color);
}


/** education-details **/

.education-details{
  position: relative;
  padding: 7.5rem 0px;
}

.education-details-content{
  position: relative;
  display: block;
}

.education-details-content .upper-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 2.6875rem 3.125rem 2.875rem 3.125rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 3.75rem;
}

.education-details-content .upper-box .info-list{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.education-details-content .upper-box .info-list li{
  position: relative;
  font-size: 1rem;
  color: #6d7270;
  margin-right: 1.25rem;
  padding-left: 1.5625rem;
}

.education-details-content .upper-box .info-list li:last-child{
  margin: 0px;
}

.education-details-content .upper-box .info-list li i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 0.9375rem;
  color: var(--theme-color);
}

.education-details-content .upper-box h2{
  display: block;
  font-size: 2.5rem;
  line-height: 3.125rem;
  margin-bottom: 0.9375rem;
}

.education-details-content .upper-box .lower-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.education-details-content .upper-box .lower-content .author-box{
  position: relative;
  padding: 0px 0px 0px 3.75rem;
}

.education-details-content .upper-box .lower-content .author-box .thumb-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 4px;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
}

.education-details-content .upper-box .lower-content .author-box h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1px;
}

.education-details-content .upper-box .lower-content .author-box .designation{
  position: relative;
  display: block;
}

.education-details-content .upper-box .lower-content .option-list{
  position: relative;
  display: flex;
  align-items: center;
}

.education-details-content .upper-box .lower-content .option-list li{
  position: relative;
  margin-right: 10px;
}

.education-details-content .upper-box .lower-content .option-list li:last-child{
  margin: 0px;
}

.education-details-content .upper-box .lower-content .option-list li a{
  position: relative;
  display: inline-block;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  font-size: 1.125rem;
  color: var(--title-color);
  border-radius: 2.5rem;
  border: 1px solid #dbe5e2;
}

.education-details-content .upper-box .lower-content .option-list li a:hover{
  color: var(--theme-color);
  background: var(--theme-color);
  color: #fff;
}


.education-details-content .tabs-box .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px;
  background: var(--theme-color);
  border-radius: 2.5rem;
  margin-bottom: 2.625rem;
}

.education-details-content .tabs-box .tab-btns li{
  position: relative;
  display: inline-block;
  width: 15.625rem;
  background: #fff;
  text-align: center;
  border-radius: 2.5rem;
  padding: 0.6875rem 0.9375rem;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.education-details-content .tabs-box .tab-btns li.active-btn{
  border-color: var(--theme-color);
}

.education-details-content .tabs-box .tab-btns li h5{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #6d7270;
  font-weight: 500;
  transition: all 500ms ease;
}

.education-details-content .tabs-box .tab-btns li.active-btn h5{
  color: var(--theme-color);
}

.education-details-content .tabs-box h3{
  display: block;
  font-size: 1.625rem;
  line-height: 2.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.education-details-content .course-content .text-box p{
  position: relative;
  display: block;
  padding-left: 1.625rem;
}

.education-details-content .course-content .text-box p i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 1rem;
  color: var(--theme-color);
}

.education-details-content .course-content .text-box{
  margin-bottom: 1.4375rem;
}

.education-details-content .course-content .download-list{
  position: relative;
  display: block;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  margin-bottom: 2.6875rem;
  overflow: hidden;
}

.education-details-content .course-content .download-list li{
  position: relative;
  display: block;
}

.education-details-content .course-content .download-list li:last-child button{
  border-bottom: none;
}

.education-details-content .course-content .download-list li button{
  position: relative;
  display: block;
  width: 100%;
  padding-left: 2.5rem;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: #6d7270;
  cursor: pointer;
  text-align: left;
  padding: 1.5625rem 4.375rem;
  border-bottom: 1px solid #dbe5e2;
  transition: all 500ms ease;
}

.education-details-content .course-content .download-list li button:hover{
  background: #6aa8e0;
}

.education-details-content .course-content .download-list li button i{
  position: absolute;
  left: 1.875rem;
  top: 1.6875rem;
  font-size: 1.5rem;
  color: #a5b2af;
  transition: all 500ms ease;
}

.education-details-content .course-content .download-list li button:hover i{
  color: var(--theme-color);
}

.education-details-content .course-content .download-list li button:hover{
  color: #1b1e31;
  font-weight: 700;
}

.education-details-content .course-content .download-list li button span{
  position: absolute;
  top: 1.5625rem;
  right: 1.6875rem;
  color: #6d7270;
  font-weight: 400;
  padding-right: 2.5rem;
}

.education-details-content .course-content .download-list li button span:before{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #a6b3b0;
  top: -1px;
  right: 0px;
  font-size: 1rem;
  transition: all 500ms ease;
}

.education-details-content .tabs-box .list-style-three{
  margin-bottom: 2.8125rem;
}

.education-details-content .tabs-box .list-style-three li{
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--text-font);
  color: #6e6e6e;
  font-weight: 400;
  margin-bottom: 10px;
}

.education-details-content .tabs-box .list-style-three li:last-child{
  margin-bottom: 0px;
}

.education-details-content .course-content .download-list li button:hover span:before{
  color: var(--theme-color);
}

.education-details-content .course-content .content-two p{
  margin-bottom: 1.5rem;
}

.education-details-content .content-two h3{
  margin-bottom: 1.0625rem;
}

.education-details-content .tabs-box h4{
  display: block;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.9375rem;
}

.education-details-content .tabs-box .list-style-one{
  margin-bottom: 2.6875rem;
}

.education-details-content .course-content .video-inner{
  position: relative;
  width: 100%;
  padding: 11.125rem 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  border-radius: 5px;
}

.education-details-content .review-content .single-comment-box{
  position: relative;
  display: block;
  padding-left: 6.25rem;
}

.education-details-content .review-content .single-comment-box .comment-thumb{
  position: absolute;
  left: 0px;
  top: 5px;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
}

.education-details-content .review-content .single-comment-box .comment-thumb img{
  width: 100%;
  border-radius: 50%;
}

.education-details-content .review-content .single-comment-box h4{
  position: relative;
  display: block;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.education-details-content .review-content .single-comment-box h4 span{
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 1rem;
  color: #6e6e6e;
}

.education-details-content .review-content .single-comment-box p{
  display: block;
  margin-bottom: 9px;
}

.education-details-content .review-content .single-comment-box .rating li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 1.125rem;
  color: var(--theme-color);
  margin-right: 5px;
}

.education-details-content .review-content .single-comment-box .rating li:last-child{
  margin: 0px !important;
}

.education-details-content .review-content .single-comment-box{
  margin-bottom: 1.4375rem;
}

.education-details-content .review-content .single-comment-box:last-child{
  margin-bottom: 0px;
}

.education-details-content .review-content .comment-box{
  margin-bottom: 2.0625rem;
}

.education-details-content .review-content .comment-form .text-box{
  margin-bottom: 2rem;
}

.education-details-content .review-content .comment-form form{
  position: relative;
  margin: 0px 5px;
}

.education-details-content .review-content .comment-form .text-box p span{
  color: var(--theme-color);
}

.education-details-content .tabs-box .review-content h3{
  margin-bottom: 1.5625rem;
}

.education-details-content .review-content .comment-form h3{
  margin-bottom: 3px;
}

.education-details-content .default-form .form-group{
  position: relative;
  margin-bottom: 1.25rem;
  padding: 0px 10px;
}

.education-details-content .default-form .form-group:last-child{
  margin-bottom: 0px;
}

.education-details-content .default-form .form-group input[type='text'],
.education-details-content .default-form .form-group input[type='email'],
.education-details-content .default-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 3.75rem;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  font-size: 1.0625rem;
  color: #6e6e6e;
  padding: 10px 1.25rem;
  transition: all 500ms ease;
}

.education-details-content .default-form .form-group textarea{
  display: block;
  height: 7.5rem;
  resize: none;
}

.education-details-content .default-form .form-group input:focus,
.education-details-content .default-form .form-group textarea:focus{
  border-color: var(--theme-color);
}

.education-details-content .default-form .check-box label:before{
  border-color: #e8e8e8;
  background: #f4f4f4;
}

.education-details-content .default-form .check-box{
  padding-bottom: 6px;
}

.education-details-content .accordion-inner h3{
  margin-bottom: 1.875rem;
}

.education-details-content .tabs-box .accordion .acc-btn h4{
  margin-bottom: 5px;
}

.education-details-content .faq-section{
  padding: 0px;
}

.education-details-content .faq-section .accordion-box .accordion .acc-btn.active {
  background: -webkit-linear-gradient(0deg, #132720 50%, #177252 100%);
}

.education-details-content .faq-section .accordion-box .accordion.active-block {
  background: #6aa8e0;
}

.education-sidebar{
  position: relative;
  display: block;
  margin-left: 1.875rem;
  border: 2px solid var(--theme-color);
  border-radius: 10px;
  padding: 1.875rem 1.75rem 2.375rem 1.75rem;
}

.education-sidebar .upper-box{
  margin-bottom: 1.25rem;
}

.education-sidebar .upper-box h3{
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.education-sidebar .upper-box h3 del{
  color: #a8a9b3;
  margin-left: 8px;
}

.education-sidebar .upper-box h5{
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #6e6e6e;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.education-sidebar .upper-box .rating li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 0.875rem;
  color: #767877;
  margin-right: 5px;
}

.education-sidebar .upper-box .rating li:last-child{
  margin: 0px !important;
}

.education-sidebar .upper-box .rating li i{
  position: relative;
  top: 2px;
  color: var(--theme-color);
  font-size: 1.125rem;
}

.education-sidebar .upper-box .rating li span{
  font-size: 1rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
}

.education-sidebar .upper-box .rating{
  margin-bottom: 8px;
}

.education-sidebar .info-list li{
  position: relative;
  display: block;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 0px;
  padding-left: 1.6875rem;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
}

.education-sidebar .info-list li:last-child{
  border-bottom: none;
}

.education-sidebar .info-list li i{
  position: absolute;
  left: 0px;
  top: 1.1875rem;
  font-size: 1.125rem;
  color: #b5b5be;
  font-weight: 400;
}

.education-sidebar .info-list li span{
  position: relative;
  float: right;
  font-size: 1rem;
  font-family: var(--text-font);
  color: #6d7270;
  font-weight: 400;
}

.education-sidebar .info-list{
  margin-bottom: 1.1875rem;
}

.education-sidebar .btn-box .theme-btn{
  width: 100%;
}

.education-sidebar .btn-box{
  margin-bottom: 2.125rem;
}

.education-sidebar h6{
  position: relative;
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin-bottom: 1.125rem;
}

.education-sidebar .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 3px;
}

.education-sidebar .social-links li a{
  position: relative;
  display: inline-block;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.875rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  color: #a8a9b3;
}

.education-sidebar .social-links li a:hover{
  color: #fff;
  border-color: var(--theme-color);
  background: var(--theme-color);
}

.blog-grid-one{
  position: relative;
  padding: 7.5rem 0px;
}

.blog-grid-one .pagination-wrapper{
  margin-top: 1.875rem;
}

.blog-grid-two{
  position: relative;
  padding: 7.5rem 0px;
}

.blog-grid-two .news-block-three .inner-box h6{
  background: #6aa8e0;
}

.blog-grid-two .news-block-three .inner-box .lower-box .link a:hover{
  color: #fff;
}

.blog-grid-two .pagination-wrapper{
  margin-top: 1.875rem;
}


/** sidebar-page-container **/

.sidebar-page-container{
  position: relative;
  padding: 7.5rem 0px;
}

.blog-list-content{
  position: relative;
  display: block;
}

.blog-list-content .news-block-one .inner-box .lower-content h3{
  font-size: 1.625rem;
  line-height: 2.25rem;
  padding-bottom: 1.3125rem;
  margin-bottom: 1.5rem;
}

.news-block-one .inner-box .lower-content p{
  margin-bottom: 1.8125rem;
}

.news-block-one .inner-box .lower-content .lower-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-list-content .news-block-one .inner-box{
  padding: 0.9375rem;
  margin-bottom: 3.125rem;
}

.blog-list-content .news-block-one .inner-box .lower-content{
  padding: 1.4375rem 0.9375rem 0.9375rem 0.9375rem;
}

.news-block-one .inner-box .lower-content .lower-inner .share-box a{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: #6d7270;
  font-weight: 500;
  padding-left: 1.5625rem;
}

.news-block-one .inner-box .lower-content .lower-inner .share-box a:hover{
  color: var(--theme-color);
}

.news-block-one .inner-box .lower-content .lower-inner .share-box a i{
  position: absolute;
  left: 0px;
  top: 4px;
  color: var(--title-color);
  font-weight: 400;
  font-size: 1.125rem;
}

.blog-list-content .pagination-wrapper{
  padding-top: 10px;
}

.blog-sidebar{
  position: relative;
  margin-left: 1.875rem;
}

.blog-sidebar .sidebar-widget{
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3.125rem;
}

.blog-sidebar .sidebar-widget .widget-title{
  background: linear-gradient(45deg, #0b152d, #6aa8e0);
  padding: 1.375rem 1.25rem 1.375rem 2.6875rem;
  margin-bottom: 0px;
}

.blog-sidebar .sidebar-widget .widget-title:before{
  left: 1.5625rem;
  top: 1.875rem;
}

.blog-sidebar .sidebar-widget .widget-title:after{
  left: 1.6875rem;
  top: 1.75rem;
}

.blog-sidebar .sidebar-widget .widget-content{
  position: relative;
  border: 1px solid #dbe5e2;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
  padding: 1.875rem 1.5625rem;
}

.blog-sidebar .search-widget .form-group{
  position: relative;
  margin-bottom: 0px;
}

.blog-sidebar .search-widget .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 3.375rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  padding: 10px 3.75rem 10px 1.5625rem;
  font-size: 1rem;
  color: #6e6e6e;
  transition: all 500ms ease;
}

.blog-sidebar .search-widget .form-group button[type='submit']{
  position: absolute;
  top: 5px;
  right: 5px;
  width: 4rem;
  height: 2.75rem;
  line-height: 2.75rem;
  background: #6aa8e0;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1.125rem;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.blog-sidebar .search-widget .form-group input:focus{
  border-color: var(--theme-color);
}

.blog-sidebar .search-widget .form-group input:focus + button,
.blog-sidebar .search-widget .form-group button:hover{
  color: #fff;
  background: var(--theme-color);
}

.blog-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  padding: 0.6875rem 0px 0.8125rem 0px;
  border-bottom: 1px solid #dbe5e2;
}

.blog-sidebar .category-widget .category-list li:last-child{
  border-bottom: none;
}

.blog-sidebar .category-widget .category-list li a{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  color: #6d7270;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-sidebar .category-widget .category-list li a:hover{
  color: var(--theme-color);
  padding-left: 9px;
  padding-right: 9px;
}

.blog-sidebar .category-widget .category-list li a:before{
  position: absolute;
  content: '[';
  left: 0px;
  top: 0px;
  color: var(--theme-color);
  opacity: 0;
  transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover:before{
  opacity: 1;
}

.blog-sidebar .category-widget .category-list li a:after{
  position: absolute;
  content: ']';
  right: 0px;
  top: 0px;
  color: var(--theme-color);
  opacity: 0;
  transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover:after{
  opacity: 1;
}

.blog-sidebar .category-widget .widget-content{
  padding: 0.6875rem 1.5625rem 10px 1.5625rem;
}

.blog-sidebar .post-widget .post{
  position: relative;
  display: block;
  padding-bottom: 1.5625rem;
  margin-bottom: 1.5rem;
  padding-left: 3.75rem;
  border-bottom: 1px solid #dbe5e2;
}

.blog-sidebar .post-widget .post:last-child{
  margin-bottom: 0px;
  border-bottom: none;
}

.blog-sidebar .post-widget .post .link{
  position: absolute;
  left: 0px;
  top: 6px;
}

.blog-sidebar .post-widget .post .link a{
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 1.875rem;
  line-height: 2.375rem;
  font-size: 1.5rem;
  color: var(--title-color);
  background: #6aa8e0;
  text-align: center;
  border-radius: 2.5rem;
}

.blog-sidebar .post-widget .post .link a:hover{
  color: #fff;
  background: var(--theme-color);
}

.blog-sidebar .post-widget .post h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 6px;
}

.blog-sidebar .post-widget .post h5 a{
  display: inline-block;
  color: var(--title-color);
}

.blog-sidebar .post-widget .post h5 a:hover{
  color: var(--theme-color);
}

.blog-sidebar .post-widget .post .post-date{
  position: relative;
  display: block;
  padding-left: 1.375rem;
}

.blog-sidebar .post-widget .post .post-date i{
  position: absolute;
  left: 0px;
  top: 2px;
  color: #a7b4b1;
}

.blog-sidebar .post-widget .widget-content{
  padding-top: 1.4375rem;
  padding-bottom: 0px;
}

.blog-sidebar .post-widget{
  margin-bottom: 2.8125rem;
}

.blog-sidebar .tags-widget .tags-list li{
  position: relative;
  margin-right: 5px;
  margin-bottom: 5px;
  float: left;
}

.blog-sidebar .tags-widget .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  color: #6d7270;
  background: #6aa8e0;
  border: 1px solid #6aa8e0;
  border-radius: 1.875rem;
  padding: 6px 0.875rem;
}

.blog-sidebar .tags-widget .tags-list li a:hover{
  background: #fff;
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.blog-sidebar .tags-widget{
  margin-bottom: 2.8125rem;
}

.blog-sidebar .tags-widget .widget-title{
  margin-bottom: 1.75rem;
}

.blog-list-two{
  padding: 7.5rem 0px;
}

.blog-list-two .news-block-two{
  margin-bottom: 1.875rem;
}

.blog-list-two .more-btn{
  margin-top: 1.875rem;
}

.blog-details-content{
  position: relative;
  display: block;
}

.blog-details-content .news-block-one .inner-box{
  padding: 0px;
  box-shadow: none;
  margin-bottom: 2.6875rem;
}

.blog-details-content .news-block-one .inner-box .lower-content h3{
  font-size: 2.25rem;
  line-height: 2.875rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.news-block-one .inner-box .lower-content .option-list{
  position: relative;
  display: flex;
  align-items: center;
}

.news-block-one .inner-box .lower-content .option-list li{
  margin-right: 10px;
}

.news-block-one .inner-box .lower-content .option-list li:last-child{
  margin: 0px;
}

.news-block-one .inner-box .lower-content .option-list li a{
  position: relative;
  display: inline-block;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.75rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content .option-list li a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.blog-details-content .news-block-one .inner-box .lower-content{
  padding: 0px;
  margin-bottom: 3.125rem;
}

.blog-details-content .news-block-one .inner-box .lower-content .post-info{
  margin-bottom: 1.5rem;
}

.blog-details-content .news-block-one .inner-box .image-box img{
  transform: scale(1) !important;
}

.blog-details-content .content-one{
  position: relative;
  display: block;
  margin-bottom: 3.25rem;
}

.blog-details-content p{
  margin-bottom: 1.375rem;
  color: #6d7270;
}

.blog-details-content p:last-child{
  margin-bottom: 0px;
}

.blog-details-content p span{
  color: var(--theme-color);
}

.blog-details-content blockquote{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 100%);
  padding: 2.0625rem 7.8125rem 2.3125rem 7.8125rem;
  border-radius: 10px;
  overflow: hidden;
  margin: 2.625rem 0px 0px 0px;
}

.blog-details-content blockquote .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-details-content blockquote .icon-box{
  position: absolute;
  left: 6px;
  top: -5px;
  font-size: 7.5rem;
  color: var(--theme-color);
}

.blog-details-content blockquote p{
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.blog-details-content blockquote h6{
  display: block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  color: #a5b2af;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-content .content-two{
  position: relative;
  display: block;
  margin-bottom: 1.875rem;
}

.blog-details-content .content-two h2{
  display: block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-details-content .content-two h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 1.1875rem;
  padding-left: 2.5rem;
  padding-top: 5px;
}

.blog-details-content .content-two h3:before{
  position: absolute;
  content: '';
  background-image: url(../image/icon-91.png);
  width: 1.5625rem;
  height: 1.375rem;
  left: 0px;
  top: 0.6875rem;
  background-repeat: no-repeat;
}

.blog-details-content .content-two .list-item{
  margin-left: 2.5rem;
}

.blog-details-content .content-two .list-item li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #6d7270;
  font-weight: 500;
  padding-left: 1.5625rem;
  margin-bottom: 10px;
}

.blog-details-content .content-two .list-item li:last-child{
  margin-bottom: 0px;
}

.blog-details-content .content-two .list-item li:before{
  position: absolute;
  content: '^';
  left: 0px;
  color: var(--theme-color);
  font-size: 1.875rem;
  top: 8px;
}

.blog-details-content .content-two{
  margin-bottom: 2.8125rem;
}

.blog-details-content .content-three h2{
  display: block;
  font-size: 1.875rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-details-content .content-three .list-item{
  margin-bottom: 3.3125rem;
}

.blog-details-content .content-three .list-item li{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #6d7270;
  margin-bottom: 1.4375rem;
  padding-left: 2.8125rem;
}

.blog-details-content .content-three .list-item li:last-child{
  margin-bottom: 0px;
}

.blog-details-content .content-three .list-item li:before{
  position: absolute;
  content: '';
  background-image: url(../image/icon-93.png);
  width: 1.875rem;
  height: 1.875rem;
  left: 0px;
  top: 5px;
  background-repeat: no-repeat;
}

.blog-details-content .content-three .list-item li h5{
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.blog-details-content .content-three .post-tags li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 5px;
}

.blog-details-content .content-three .post-tags li:last-child{
  margin: 0px;
}

.blog-details-content .content-three .post-tags li h6{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 2.5rem;
  font-weight: 500;
  color: var(--title-color);
  padding-left: 1.375rem;
}

.blog-details-content .content-three .post-tags li h6 img{
  position: absolute;
  left: 0px;
  top: 0.75rem;
}

.blog-details-content .content-three .post-tags li a{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #6d7270;
  background: #6aa8e0;
  padding: 7px 0.9375rem;
  border-radius: 1.875rem;
}

.blog-details-content .content-three .post-tags li a:hover{
  color: #fff;
  background: var(--theme-color);
}

.blog-details-content .content-three{
  margin-bottom: 3.75rem;
}

.blog-details-content .author-box{
  position: relative;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  padding: 2.0625rem 1.875rem 2.125rem 13.75rem;
  margin-bottom: 3.75rem;
}

.blog-details-content .author-box .thumb-box{
  position: absolute;
  display: inline-block;
  left: 2.4375rem;
  top: 2.4375rem;
  border-radius: 50%;
}

.blog-details-content .author-box .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .author-box h6{
  display: block;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-bottom: 2px;
}

.blog-details-content .author-box h3{
  position: relative;
  display: block;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 0.9375rem;
}

.blog-details-content .author-box p{
  margin-bottom: 1rem;
}

.blog-details-content .author-box .link a{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  padding-left: 1.5rem;
}

.blog-details-content .author-box .link a i{
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 1.25rem;
}

.blog-details-content .author-box .link a:hover{
  color: var(--theme-color);
}

.blog-details-content .author-box .social-links{
  position: absolute;
  top: 2.4375rem;
  right: 2.4375rem;
}

.blog-details-content .author-box .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.blog-details-content .author-box .social-links li:last-child{
  margin: 0px;
}

.blog-details-content .author-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 3.375rem;
  height: 2.5rem;
  line-height: 2.75rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: var(--title-color);
}

.blog-details-content .author-box .social-links li a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.blog-details-content .post-nav{
  position: relative;
  display: block;
  margin-bottom: 3.5625rem;
}

.blog-details-content .post-nav .post-nav-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog-details-content .post-nav .post-nav-btn:before{
  position: absolute;
  content: '';
  background: #dbe5e2;
  width: 1px;
  height: 3.75rem;
  left: 50%;
  top: 1.1875rem;
}

.blog-details-content .post-nav .single-btn h6{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #6aa8e0;
  padding: 7px 1.25rem;
  margin-bottom: 0.8125rem;
  border-radius: 2.5rem;
}

.blog-details-content .post-nav .single-btn h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.blog-details-content .post-nav .single-btn h5 a{
  display: inline-block;
  color: var(--title-color);
}

.blog-details-content .post-nav .single-btn h5 a:hover{
  color: var(--theme-color);
}

.blog-details-content .post-nav .btn-box a{
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  background: #fff;
  border-radius: 2.5rem;
  padding: 1.1875rem 0.9375rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.blog-details-content .post-nav .btn-box a:hover{
  color: var(--theme-color);
}

.blog-details-content .post-nav .btn-box a span{
  position: relative;
  display: inline-block;
  padding-left: 1.75rem;
}

.blog-details-content .post-nav .btn-box a span:before{
  position: absolute;
  content: '';
  background-image: url(../image/icon-94.png);
  width: 1.125rem;
  height: 1.125rem;
  left: 0px;
  top: 2px;
  background-repeat: no-repeat;
}

.blog-details-content .group-title{
  position: relative;
  display: block;
  margin-bottom: 1.625rem;
}

.blog-details-content .group-title h2{
  font-size: 1.875rem;
  line-height: 2.5rem;
}

.blog-details-content .comments-box .comment{
  position: relative;
  display: block;
  padding-left: 6.25rem;
  margin-bottom: 1.875rem;
}

.blog-details-content .comments-box .comment:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comments-box .comment .comment-thumb{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 5px;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
}

.blog-details-content .comments-box .comment .comment-thumb img{
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .comments-box .comment h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 0.6875rem;
}

.blog-details-content .comments-box .comment h5 span{
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 1rem;
  font-family: var(--text-font);
  color: #a5b2af;
  font-weight: 400;
}

.blog-details-content .comments-box .comment p{
  margin-bottom: 0.6875rem;
}

.blog-details-content .comments-box .comment .reply-btn{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  padding-left: 1.5625rem;
}

.blog-details-content .comments-box .comment .reply-btn i{
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 1.25rem;
}

.blog-details-content .comments-box .comment .reply-btn:hover{
  color: var(--theme-color);
}

.blog-details-content .comments-box{
  margin-bottom: 2.4375rem;
}

.blog-details-content .comments-form-area p{
  margin-top: 9px;
}

.blog-details-content .comments-form-area .form-group{
  position: relative;
  margin-bottom: 1.25rem;
}

.blog-details-content .comments-form-area .form-group:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comments-form-area .form-group input[type='text'],
.blog-details-content .comments-form-area .form-group input[type='email'],
.blog-details-content .comments-form-area .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 3.375rem;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  font-size: 1rem;
  color: #6d7270;
  padding: 10px 1.25rem;
  transition: all 500ms ease;
}

.blog-details-content .comments-form-area .form-group textarea{
  height: 7.5rem;
  resize: none;
  padding-top: 0.9375rem;
}

.blog-details-content .comments-form-area .form-group input:focus,
.blog-details-content .comments-form-area .form-group textarea:focus{
  border-color: var(--theme-color);
}

.blog-details-content .comments-form-area .form-group .check-box label{
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--text-font);
  font-weight: 400;
  color: #6d7270;
  padding-left: 1.4375rem;
}

.blog-details-content .comments-form-area .form-group .check-box label:before{
  width: 0.875rem;
  height: 0.875rem;
  border-color: #dbe5e2;
  background: #6aa8e0;
  top: 6px;
}

.blog-details-content .comments-form-area .form-group .check-box label:after{
  left: 4px;
  width: 6px;
  height: 6px;
}

.blog-details-content .comments-form-area .form-group .check-box{
  position: relative;
  margin: 8px 0px 1rem 0px;
}

.blog-details-content .comments-form-area .group-title{
  margin-bottom: 2.125rem;
}

.page-title .info-content{
  position: relative;
  padding: 3.375rem 0px 3.4375rem 0px;
}

.info-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 2.5rem 1.5625rem;
  border-radius: 10px;
  margin-bottom: 1.875rem;
}

.info-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 1.5625rem;
}

.info-block-one .inner-box h5{
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 5px;
}

.info-block-one .inner-box p{
  margin-bottom: 1.4375rem;
}

.info-block-one .inner-box .phone-box input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 3.375rem;
  border: 1px solid #dbe5e2;
  border-radius: 2.5rem;
  font-size: 1rem;
  color: #6e6e6e;
  padding: 10px 1.5625rem;
  transition: all 500ms ease;
}

.info-block-one .inner-box .phone-box input:focus{
  border-color: var(--theme-color);
}

.info-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 2.125rem 1.5625rem 2.375rem 1.5625rem;
  border-radius: 10px;
  margin-bottom: 1.875rem;
}

.info-block-two .inner-box h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.0625rem;
}

.info-block-two .inner-box .list-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5625rem;
}

.info-block-two .inner-box .list-item li{
  margin-right: 10px;
}

.info-block-two .inner-box .list-item li:last-child{
  margin: 0px;
}

.info-block-two .inner-box .list-item li a{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  color: var(--title-color);
  background: #6aa8e0;
  border-radius: 2.5rem;
  padding: 9px 1.25rem 9px 2.8125rem;
  text-align: left;
}

.info-block-two .inner-box .list-item li a i{
  position: absolute;
  left: 1.25rem;
  top: 0.75rem;
  color: var(--theme-color);
  font-size: 1.125rem;
}

.info-block-two .inner-box .list-item li:first-child a{
  color: #fff;
  background: var(--theme-color);
}

.info-block-two .inner-box h4{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}

.info-block-two .inner-box p{
  position: relative;
  display: block;
  margin-bottom: 1.125rem;
}

.info-block-two .inner-box p span{
  color: var(--title-color);
}

.info-block-two .inner-box h6{
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 1.75rem;
}

.info-block-two .inner-box h6 img{
  position: absolute;
  left: 0px;
  top: 2px;
}

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

.info-block-two .inner-box h6 a:hover{
  color: var(--theme-color);
}


/** contact-style-two **/

.contact-style-two{
  position: relative;
  padding: 7.125rem 0px 5.9375rem 0px;
}

.contact-style-two .title-inner{
  position: relative;
}

.contact-style-two .title-inner .special-text{
  position: absolute;
  top: 4.375rem;
  right: 0px;
}

.contact-style-two .title-inner .special-text h6{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
  background: #fff;
  border-radius: 2.5rem;
  padding: 0.75rem 1.25rem 0.75rem 3.3125rem;
  transform: rotate(-10deg);
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
}

.contact-style-two .title-inner .special-text h6 img{
  position: absolute;
  left: 1.25rem;
  top: 0.75rem;
}

.contact-style-two .title-inner .special-text .shape{
  position: absolute;
  left: -3.125rem;
  top: -1.4375rem;
  width: 3.125rem;
  height: 3.9375rem;
  background-repeat: no-repeat;
}

.contact-style-two .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 1.5625rem;
}

.contact-style-two .form-inner label{
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  margin-bottom: 0.9375rem;
  padding-left: 1.5rem;
}

.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: 3.375rem;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  font-size: 1rem;
  color: #a5b2af;
  padding: 10px 1.25rem;
  font-weight: 500;
  transition: all 500ms ease;
}

.contact-style-two .form-inner .form-group .select-box{
  min-height: 3.375rem;
}

.contact-style-two .form-inner .form-group .nice-select{
  position: relative;
  padding: 0px 1.25rem;
  line-height: 3.375rem;
  text-transform: capitalize;
}

.contact-style-two .form-inner .form-group .nice-select:before{
  position: absolute;
  content: "\f102";
  font-family: 'flaticon';
  font-size: 1.5rem;
  color: #a5b2af;
  top: -1px;
  right: 1rem;
}

.contact-style-two .form-inner .form-group input:focus{
  border-color: var(--theme-color);
}

.contact-style-two .sec-title p{
  margin-top: 0.75rem;
}

.contact-style-two .form-inner .message-box{
  position: relative;
  border: 1px solid #dbe5e2;
  border-radius: 10px;
  padding: 1.25rem 1.875rem 1.25rem 1.875rem;
}

.contact-style-two .form-inner .message-box textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 10.8125rem;
  font-size: 1rem;
  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: 34.375rem;
}

.google-map-section .map-inner iframe{
  position: relative;
  width: 100%;
  height: 34.375rem;
}

.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: 5rem;
  height: 5rem;
  line-height: 5.625rem;
  background: #132720;
  text-align: center;
  font-size: 3.125rem;
  border-radius: 50%;
  margin-bottom: 3.125rem;
  color: var(--theme-color);
}

.google-map-section .map-content .location-box{
  position: relative;
  display: block;
  width: 16.875rem;
  background: #fff;
  text-align: left;
  border-radius: 10px;
  padding: 1.5rem 1.875rem 1.4375rem 1.875rem;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.12);
}

.google-map-section .map-content .location-box h5{
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}

.whymmp-section{
  padding: calc(90 / 1920 * 100vw) 0;
  background:linear-gradient(to bottom, #f1f7ff 20%, #fff);
}

.whymmp-block{
  position: relative;
  background: #f7fafc;
  border-radius: 10px;
  padding: calc(15 / 1920 * 100vw);
  transition: all 500ms ease;
  box-shadow: rgba(0,0,0,0.05) 0 0 10px 0;
}

.whymmp-block .inner-box{
  position: relative;
  width: calc(100% - 80px);
}
.whymmp-block:hover{
  box-shadow: rgba(0,0,0,0.12) 0 0 3.125rem 0;
  transform: translateY(-10px);
}
.whymmp-block .inner-box h3{
  margin-top: 10px;
  font-size: calc(22 / 1920 * 100vw);
  color: var(--theme-color);
}
.whymmp-block .inner-box p{
  margin-top: calc(15 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
  color: #666;
  line-height: 1.5;
  min-height: calc(81 / 1920 * 100vw);
}

@media (max-width: 768px){
  .whymmp-block .inner-box h3{
    margin-top: 10px;
    font-size: calc(32 / 768 * 100vw);
    color: var(--theme-color);
  }
  .whymmp-block .inner-box p{
    margin-top: calc(15 / 768 * 100vw);
    font-size: calc(24 / 768 * 100vw);
    color: #666;
    line-height: 1.5;
    min-height: calc(81 / 768 * 100vw);
  }
}

.whymmp-block .image-box{
  background: var(--theme-color);
  width: calc(72 / 1920 * 100vw);
  height: calc(72 / 1920 * 100vw);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(15 / 1920 * 100vw);
}
@media (max-width: 768px){
  .whymmp-block .image-box{
    width: calc(72 / 768 * 100vw);
    height: calc(72 / 768 * 100vw);
  }
}
.whymmp-block .image-box img{
  max-width: 60%;
  max-height: 60%;
  display: block;
  margin: 0 auto;
}
.whymmp-section .single-item-carousel{
  height: 100%;
  border-radius: 0.9375rem;
  overflow: hidden;
}
.whymmp-section .single-item-carousel.owl-carousel .owl-stage-outer,
.whymmp-section .single-item-carousel.owl-carousel .owl-stage,
.whymmp-section .single-item-carousel.owl-carousel .owl-item,
.whymmp-section .single-item-carousel.owl-carousel .owl-item .item{
  height: 100%;
}
.whymmp-section .single-item-carousel.owl-carousel .owl-item .item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.whymmp-section .single-item-carousel .owl-nav{
  display: none;
}

.whymmp-section .single-item-carousel .owl-dots{
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}

.whymmp-section .single-item-carousel .owl-dots span{
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.whymmp-section .single-item-carousel .owl-dot.active span{
  background: rgba(255,255,255,1);
}

.counter-section {
  background: var(--theme-color);
  color: #fff;
  padding: 5.625rem 0;
}

.counter-block{
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 768px){
  .counter-block{
    justify-content: flex-start;
    margin-bottom: 25px;
    border: 0;
  }
}
.counter-box{
  margin-left: 0.9375rem;

}
.counter-box h3{
  color: #fff;
}

.counter-box p{
  color: #fff;
}

.capacity-section{
  width: 100%;
  background: #f7fafc;
  padding: calc(90 / 1920 * 100vw) 0;
}

.capacity-block{
  background: #fff;
  padding: calc(40 / 1920 * 100vw);
}
.capacity-title{
  color: var(--theme-color);
}
.capacity-subtitle{
  color: var(--theme-color);
  margin-bottom: calc(40 / 1920 * 100vw);
}

.capacity-item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.capacity-item .item {
  position: relative;
  box-shadow: rgba(0,0,0,0.05) 0 0 1.25rem 0;
  padding: 10px 0 10px 35px;
  border-radius: 10px;
}
.capacity-item .item:hover{
  box-shadow: rgba(0,0,0,0.1) 0 0 1.25rem 0;
}

.capacity-item .item::before{
  content: '';
  position: absolute;
  left: calc(20 / 1920 * 100vw);
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 4px;
  height: 50%;
  background: var(--theme-color);
}

.capacity-item.red-color .item::before{
  background: rgb(75.300000%, 22.400000%, 16.900000%);
}

.capacity-item.blue-color .item::before{
  background: rgb(16.100000%, 50.200000%, 72.500000%);
}

.capacity-item .item h5{
  color: #333333;
}

.capacity-item .item p{
  color: #666
}


.capacity-section .single-item-carousel .owl-nav{
  position: absolute;
  top: calc(50% - 20px);
  width: 100%;
}

.capacity-section .single-item-carousel .owl-nav .owl-prev,
.capacity-section .single-item-carousel .owl-nav .owl-next{
  position: absolute;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  background: var(--theme-color);
  border-radius: 50%;
  color: #fff;
}

.capacity-section .single-item-carousel .owl-nav .owl-prev{
  left: calc(- 20 / 1920 * 100vw);
}

.capacity-section .single-item-carousel .owl-nav .owl-next{
  right: calc(- 20 / 1920 * 100vw);
}

.capacity-section .single-item-carousel .owl-dots{
  display: none;
}

.py-90{
  padding: 5.625rem 0;
}

.capacity-block ul li{
  display: flex;
  align-items: center;
  font-size: calc(18 / 1920 * 100vw);
  color: #333;
}
@media (max-width: 768px){
  .capacity-block ul li{
    font-size: calc(18 / 768 * 100vw);
  }
}
.capacity-block ul li i{
  margin-top: 6px;
  margin-right: 5px;
}

.capacity-block .single-item-carousel.owl-carousel .owl-item .item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.9375rem;
  overflow: hidden;
}

.full-carousel.single-item-carousel{
  height: 100%;
  border-radius: 0.9375rem;
}
.full-carousel.single-item-carousel.owl-carousel .owl-stage-outer,
.full-carousel.single-item-carousel.owl-carousel .owl-stage,
.full-carousel.single-item-carousel.owl-carousel .owl-item,
.full-carousel.single-item-carousel.owl-carousel .owl-item .item{
  height: 100%;
}
.full-carousel.single-item-carousel.owl-carousel .owl-item .item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.9375rem;
  overflow: hidden;
}

.sustain-section{
  background: url(../picture/simg.jpg) top center no-repeat;
  background-size: cover;
  padding: calc(140 / 1920 * 100vw) 0;
}

.page-about-icon li{
  border: 1px #f5f5f5 solid;
  padding: calc(30 / 1920 * 100vw) 0;
}
.page-about-icon li p{
  margin-bottom: 0 !important;
  color: #000;
  margin-top: 10px;
  font-size: calc(18 / 1920 * 100vw);
}

.whymmycarousel .owl-dots,
.whymmycarousel .owl-nav{
  display: none;
}


.action-section{
  background: url(../picture/video-img.jpg) center center no-repeat;
  padding: 9.375rem 0;
}
.action-section .about_play{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  height: 6.25rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.10);
  font-size: 2.5rem;
  color: var(--theme-color);
}

.quality-section{
  background: var(--theme-color);
}

.quality-section .owl-nav{
  position: absolute;
  top: -5.25rem;
  right: -0.75rem;
  width: 12.125rem;
}

.quality-section .nav-style-one .owl-nav button{
  position: absolute;
  top: 0px;
}

.quality-section .owl-nav button.owl-prev{
  left: 0px;
}

.quality-section .owl-nav button.owl-next{
  right: 0px;
}

.quality-section .owl-dots{
  position: absolute;
  top: -5.375rem;
  right: 2.625rem;
}

.equipment-specs .spec-item {
  text-align: center;
  padding: 10px 0;
  background: var(--theme-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 2.5rem;
}

.equipment-specs .spec-item i{
  color: #fff;
}

.equipment-specs .spec-item:hover {
    background: var(--theme-color);
    border-color: #1e3a8a;
}

.equipment-specs .spec-item span {
    color: white;
}

.protab-btn-box .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.75rem;
}

.protab-btn-box .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  background: #e5e2e9;
  padding: 0.9375rem 1.875rem;
  border-radius: 2.5rem;
  cursor: pointer;
  margin: 0 5px;
  transition: all 500ms ease;
}

.protab-btn-box .tab-btns li a{
  color: #000;
}

.protab-btn-box .tab-btns li.active-btn,
.protab-btn-box .tab-btns li:hover{
  background: var(--theme-color) !important;
  color: #fff;
}

.protab-btn-box .tab-btns li.active-btn a,
.protab-btn-box .tab-btns li:hover a{
  color: #fff;
}



blockquote.product_text{
  position: relative;
  display: block;
  /* linear-gradient(45deg, #0b152d, #6aa8e0) */
  background: -webkit-linear-gradient(-45deg, #0b152d 50%, #6aa8e0 100%);
  padding: 2.0625rem 7.8125rem 2.3125rem 7.8125rem;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0px 3.125rem 0px;
}

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

blockquote.product_text .icon-box{
  position: absolute;
  left: 6px;
  top: -5px;
  font-size: 7.5rem;
  color: #fff;
}

blockquote.product_text p{
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

blockquote.product_text h6{
  display: block;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  color: #a5b2af;
  font-weight: 700;
  text-transform: uppercase;

}
@media(max-width: 768px){
  .capacity-item .item{
    padding: 10px 0 10px 15px;
  }
}













