/*============================================ 
======== Table of Css Content =========
# Typography
# Normalize 
# Global style
# Header Area
# Banner Area
# Section Area
# Footer Area

/* 
=========================
=========================
*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700;800;900&amp;display=swap");
@import url('../plugin/fonts/fontsStyle.css');
:root {
  --body-font: "Jost", sans-serif;
  --body-alt-font: 'Avenir LT Std 85 Heavy', sans-serif;
  --body-color: #ffffff;
  --para-color: #414BA3;
  --hover-color: #f59e0b;
}

.collapsing {
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  background-color: var(--body-color);
  font-size: 16px;
  line-height: 25px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

h1, h1 > a, h2, h2 > a, h3, h3 > a, h4, h4 > a, h5, h5 > a, h6, h6 > a {
  font-family: var(--body-alt-font);
  color: #000000;
  font-weight: 700;
  text-transform: initial;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover {
  color: var(--body-color);
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: none;
  color: #2c2c2c;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

input:focus, textarea:focus {
  outline: none;
  box-shadow: none;
}

button {
  border: none;
  cursor: pointer;
}

input, textarea {
  padding: 10px 25px;
  border: 1px solid #E2E2EA;
  color: #F59E0B;
  width: 100%;
  font-family: var(--body-font);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: none;
}

span {
  display: inline-block;
}

.table thead th, .table td, .table th {
  border: none;
}

.bg_img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_img {
  background-position: center;
  background-size: cover;
}
.bg-white{
  background-color: #fff;
}
.bg-grey{
  background-color: #f4f4f4;
}
.d-grid {
  display: grid !important;
}

.button-group {
  display: inline-flex;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}

.b-none {
  border: none !important;
}

iframe {
  border: 0;
  width: 100%;
}

.shadow-none {
  box-shadow: none;
}

h1, h1 > a {
  font-size: 56px;
  line-height: 71.2px;
}

h2, h2 > a {
  font-size: 47px;
  line-height: 58.4px;
}

h3, h3 > a {
  font-size: 36px;
  line-height: 51.6px;
}

h4, h4 > a {
  font-size: 32px;
  line-height: 38.4px;
}

h5, h5 > a {
  font-size: 20px;
  line-height: 28px;
}

h6, h6 > a {
  font-size: 18px;
  line-height: 21.6px;
}

table thead tr th {
  font-size: 16px;
  line-height: 21.6px;
}

a {
  display: inline-block;
  color: #F59E0B;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
}

p, span, li {
  margin: 0;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  color: #232323;
  line-height: 27px;
}

.section-header {
  margin-top: -15px;
  margin-bottom: 55px;
}

.title {
  /*text-transform: uppercase;*/
  margin-bottom: 20px;
}

.title span {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: #F59E0B;
}

.xxlr {
  font-size: 24px;
  line-height: 38.6px;
}

.xlr {
  font-size: 20px;
  line-height: 28px;
}

.lgr {
  font-size: 18px;
  line-height: 25.5px;
}

.mdr {
  font-size: 16px;
  line-height: 22.4px;
}

.smr {
  font-size: 14px;
  line-height: 19.6px;
}

.z-1 {
  z-index: 1;
}

.pt-120 {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .pt-120 {
    padding-top: 50px;
  }
}
.pb-120 {
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 50px;
  }
}
*::-webkit-scrollbar-track {
  background: #2c2c2c;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-thumb {
  background-color: #f59e0b;
}

.header-section.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #2c2c2c;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
}

.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #F59E0B;
  border-radius: 5px;
  color: #fff;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  z-index: 9;
  cursor: pointer;
  transition: all 1s;
  transform: translateY(100%);
}

.scrollToTop.active {
  bottom: 30px;
  transform: translateY(0%);
  color: var(--body-color);
}

.scrollToTop:hover {
  color: var(--body-color);
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99999999;
  overflow: visible;
  background: url(../images/preloader.gif) no-repeat center center;
  background-size: 6%;
  background-color: #FFF;
}

.icon-svg {
  position: relative;
}
.icon-svg img {
  opacity: 1;
  position: absolute;
}
.icon-svg svg {
  position: absolute;
  stroke-dashoffset: 1500;
  stroke-dasharray: 1500;
  transform: scale(1);
  transition: transform 0.3s, fill 0.5s;
  opacity: 0;
  visibility: hidden;
}
.icon-svg:hover svg {
  visibility: visible;
  opacity: 1;
  stroke-dashoffset: 0;
  fill: transparent;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s;
}
.icon-svg:hover img {
  opacity: 0;
  visibility: hidden;
}

.accordion-button:focus {
  box-shadow: none;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.select2 .select2-selection {
  padding: 0;
  height: initial;
  border: none;
  background-color: transparent;
}
.select2 .select2-selection__rendered {
  line-height: 150% !important;
}
.select2 .select2-selection {
  display: flex;
  align-items: center;
}
.select2 .select2-selection__arrow {
  width: 0 !important;
  height: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  top: initial !important;
}
.select2 .select2-selection__arrow b {
  display: none;
}
.select2 .select2-selection__arrow:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: rgb(255, 255, 255);
  position: absolute;
  border: none;
  right: 15px;
  transition: all 0.5s ease-in-out;
}
.select2.select2-container--open .select2-selection__arrow::after {
  transform: rotate(180deg);
}

.select2-results li:hover, .select2-results li.select2-results__option--highlighted, .select2-results li.select2-results__option--selected {
  background-color: #F59E0B !important;
  color: rgb(255, 255, 255) !important;
}

.select2-dropdown.select2-dropdown--below {
  width: 180px !important;
}

.select2-selection__rendered,
.select2-container--default {
  width: 55px !important;
  max-width: 55px !important;
  min-width: 55px !important;
}

.select2-selection__rendered {
  opacity: 0;
}

.skiptranslate {
  pointer-events: none;
  display: none !important;
}

/* btn */
.btn {    
  padding: 15px 40px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.10);
  border-radius: 26px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  overflow: hidden;
  /*text-transform: uppercase;*/
  cursor: pointer;  
}
.btn-theme {
  /*border: none;*/
  color: #fff;
  text-align: center;
  min-width: 160px;
  /*padding: 15px 15px;*/
  background-color: #F59E0B;
  /*box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.10);
  border-radius: 26px;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  overflow: hidden;*/
  /*text-transform: uppercase;*/
  /*cursor: pointer;*/
  display: inline-block;
  position: relative;
  z-index: 3;
  transition: 0.5s;
}

.btn-theme span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.btn-theme:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  position: absolute;
  opacity: 0;
  top: 14px;
  right: -20px;
  transition: 0.5s;
}

.btn-theme:hover {
  padding-right: 30px;
  padding-left: 8px;
  border-color: #F59E0B!important;
  background-color: #F59E0B!important;
}

.btn-theme:hover:after {
  opacity: 1;
  right: 15px;
}

.btn-primary{  
  border-color: #F59E0B;;
  background-color: #F59E0B;
}
.btn-primary:hover{
  border-color: #232323;;
  background-color: #232323;
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-section .navbar-toggler {
  padding-right: 0;
  display: none;
  border: none;
}
.header-section .navbar-toggler:focus {
  box-shadow: none;
}
.header-section .navbar-toggler i {
  color: var(--hover-color);
}
.header-section .navbar {
  padding: 10px 15px;
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  /*font-weight: bold;*/
  padding: 0 10px;
  color: var(--body-color);
  /*text-transform: uppercase;*/
  transition: 0.3s;
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: var(--hover-color);
  transition: 0.3s;
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
  color: var(--hover-color);
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border: none;
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
  margin-left: 5px;
  margin-right: -8px;
  vertical-align: -4px;
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  background-color: #F59E0B;
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  display: block;
  padding: 5px 15px;
  transition: 0.3s;
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:hover {
  background: #441FB1;
  transition: 0.3s;
  color: var(--body-color);
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.mega-menu {
  width: 620px;
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.mega-menu .dropdown {
  -moz-column-count: 3;
       column-count: 3;
}
/*.header-section .navbar .navbar-collapse .right-area {
  margin-left: 30px;
}*/
.header-section .navbar .navbar-collapse .right-area .nice-select {
  background-color: transparent;
  padding-left: 5px;
  border: none;
  height: 35px;
}
.header-section .navbar .navbar-collapse .right-area .nice-select::after {
  position: absolute;
  content: "";
  background-image: url(../images/down_arrow.png);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  right: 12px;
  transition: all ease 0.3s;
  border: none;
  transform: rotate(0deg);
}
.header-section .navbar .navbar-collapse .right-area .nice-select span {
  color: var(--body-color);
}
.header-section .navbar .navbar-collapse .right-area .btn-theme {
  margin-left: 15px;
}
.header-section .navbar .navbar-collapse .right-area .btn-theme.login {
  border: 1px solid #F59E0B;
  color: #F59E0B;
  box-shadow: transparent;
  background-color: transparent!important;
}
.header-section .nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #1F2340;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.header-section .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 150%;
}
.banner-section {
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 101%;
  background-color: #2c2c2c;
  padding: 200px 0 150px;
}
.banner-section.inner-banner {
  background-image: unset;
  padding: 0;
}
.banner-section.inner-banner .overlay {
  background-color: #131856;
  background-size: 100%, contain;
  background-position-y: bottom;
  padding: 200px 0 120px;
}

.banner-section .main-content h1 {
  /*text-transform: uppercase;*/
  color: var(--body-color);
}
.banner-section .main-content p {
  color: var(--body-color);
  font-family: var(--body-alt-font);
  padding: 20px 0 20px;
  /*width: 70%;
  font-weight: 700;*/
}
.banner-section .main-content .input-field {
  background: var(--body-color);
  border-radius: 50px;
  padding: 10px;
  width: 80%;
}
.banner-section .main-content .input-field .btn-theme {
  width: 220px;
}
.banner-section .main-content .input-field input {
  background: var(--body-color);
  border-radius: 30px;
  border: none;
  color: var(--para-color);
}
.banner-section .main-content .bottom-banner {
  margin-top: 50px;
}
.banner-section .main-content .bottom-banner .left {
  background: var(--body-color);
  width: 40px;
  height: 40px;
  margin-right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
.banner-section .main-content .bottom-banner .left::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.banner-section .main-content .bottom-banner .left .popupvideo {
  z-index: 1;
}
.banner-section .main-content .bottom-banner .right h5 {
  color: var(--body-color);
  margin-bottom: 0px;
}
.banner-section .main-content .bottom-banner .right .review h6 {
  display: inline-block;
  color: #F59E0B;
  margin-right: 10px;
}
.banner-section .main-content .bottom-banner .right .review i {
  font-size: 14px;
  color: #FEA800;
}
.banner-section .main-content .bottom-banner .right .review i.blank {
  color: #646BBC;
}
.banner-section .right-illu {
  position: relative;
}
/*.banner-section .right-illu img,*/
.banner-section .right-illu .about-img {
  position: absolute;
  right: -10%;
  bottom: -110px;
  width: 60%;
}
.banner-section .illu-item {
  position: relative;
}
.banner-section .illu-item img {
  position: absolute;
}
.banner-section .illu-item .item-1 {
  top: -165px;
  right: 40%;
}
.banner-section .illu-item .item-2 {
  top: -165px;
  right: -20%;
}
.banner-section .illu-item .item-3 {
  top: 430px;
  right: 0;
}
.banner-section .illu-item .item-4 {
  top: -135px;
  right: 5%;
}
.banner-section.inner-pages {
  background-image: unset;
  background-color: transparent;
  padding: 0;
}
.banner-section.inner-pages .top-area {
  margin-bottom: 25px;
  border-radius: 20px;
  background: var(--body-color);
}
.banner-section.inner-pages .overlay {
  background-color: #2c2c2c;
  background-image: url(../images/index5-overlay.png), url(../images/inner-page-banner.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 150px 0 100px;
  background-position-y: bottom, top;
}
.banner-section.inner-pages .overlay .banner-content {
  margin-bottom: 60px;
}
.banner-section.inner-pages h2 {
  margin-bottom: 0px;
  color: #ffffff;
}
.banner-section.inner-pages .breadcrumb-area {
  margin-top: 10px;
}
.banner-section.inner-pages .breadcrumb-area .breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--bs-white);
  margin-right: 40px;
}
.banner-section.inner-pages .breadcrumb-area .breadcrumb li a {
  color: var(--bs-white);
}
.banner-section.inner-pages .breadcrumb-area .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  background-image: url(../images/right-icon.png);
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  padding: 0;
  content: "";
  position: absolute;
  left: -28px;
}
.banner-section.inner-pages .banner-bottom-area {
  margin-top: -200px;
  text-align: center;
}
.banner-section.about-us .top-area img {
  margin-bottom: 20px;
  border-radius: 20px;
}
.banner-section.about-us .top-area h3 {
  /*text-transform: uppercase;*/
  margin-bottom: 20px;
}
.banner-section.about-us .top-area p {
  margin-bottom: 30px;
}
.banner-section.about-us .bottom-content .single-item {
  position: relative;
}
.banner-section.about-us .bottom-content .single-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #A69DC9;
  top: 0;
  left: calc(100% - 40px);
}
.banner-section.about-us .bottom-content .single-item.b-none::after {
  display: none;
}
.banner-section.about-us .bottom-content .single-item .text-area {
  margin-left: 30px;
}
.banner-section.about-us .bottom-content .single-item .text-area p {
  color: #4727EB;
}
.banner-section.our-team .top-area p {
  margin: 0 auto;
  width: 75%;
  margin-bottom: 30px;
}
.banner-section.team-details .banner-bottom-area .top-area {
  padding: 60px 40px;
  position: relative;
  margin-bottom: 0;
}
.banner-section.team-details .banner-bottom-area .top-area::after {
  position: absolute;
  content: "";
  width: 93%;
  height: 1px;
  bottom: 0;
  background: #D6DCFF;
}
.banner-section.team-details .banner-bottom-area .top-area .img-area {
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(100, 114, 150, 0.25);
  border-radius: 20px;
  text-align: center;
}
.banner-section.team-details .banner-bottom-area .top-area .img-area img {
  padding: 20px;
  min-width: 100%;
}
.banner-section.team-details .banner-bottom-area .text-area .name {
  margin-bottom: 35px;
}
.banner-section.team-details .banner-bottom-area .text-area .name h3, .banner-section.team-details .banner-bottom-area .text-area .name p {
  text-transform: uppercase;
}
.banner-section.team-details .banner-bottom-area .text-area .name p {
  color: #4727EB;
  font-weight: bold;
  margin-top: 20px;
}
.banner-section.team-details .banner-bottom-area .text-area .social a {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 8px 12px rgba(37, 60, 120, 0.1);
  border-radius: 80px;
  margin: 0 10px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section.team-details .banner-bottom-area .bottom-content {
  margin-bottom: -67px;
}
.banner-section.team-details .banner-bottom-area .bottom-content .single-text {
  text-align: start;
  margin-bottom: 60px;
}
.banner-section.team-details .banner-bottom-area .bottom-content .single-text h4 {
  text-transform: uppercase;
  margin-bottom: 30px;
}
.banner-section.careers .banner-bottom-area .top-area {
  margin-bottom: -7px;
}
.banner-section.careers .banner-bottom-area .top-area img {
  border-radius: 20px;
  margin-bottom: 43px;
}
.banner-section.careers .banner-bottom-area .top-area h2 {
  margin-bottom: 14px;
}
.banner-section.careers .banner-bottom-area .top-area a {
  margin-top: 55px;
}
.banner-section.open-positions {
  background-color: var(--body-color);
}
.banner-section.open-positions .banner-bottom-area .top-area {
  padding: 60px;
  margin-bottom: 50px;
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
}
.banner-section.open-positions .banner-bottom-area .top-area p {
  margin: 25px 0 55px;
}
.banner-section.open-positions .banner-bottom-area .top-area .time-area {
  border-top: 1px solid #D4D2EC;
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
}
.banner-section.open-positions .banner-bottom-area .top-area .time-area .date {
  border-left: 1px solid #B7BBE4;
  margin-left: 20px;
  padding-left: 20px;
}
.banner-section.open-positions .banner-bottom-area .bottom-area {
  margin-bottom: -60px;
}
.banner-section.open-positions .banner-bottom-area .bottom-area .single {
  margin-bottom: 55px;
}
.banner-section.open-positions .banner-bottom-area .bottom-area .single h3 {
  margin-bottom: 35px;
  text-transform: uppercase;
}
.banner-section.open-positions .banner-bottom-area .bottom-area .single ul li {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}
.banner-section.open-positions .banner-bottom-area .bottom-area .single ul li img {
  width: 30px;
  max-width: unset;
  margin-right: 20px;
}
.banner-section.help-center {
  background-color: var(--body-color);
}
.banner-section.help-center .banner-bottom-area .top-area {
  padding: 60px;
  margin-bottom: 0;
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
}
.banner-section.help-center .banner-bottom-area .top-area h2 {
  margin-bottom: 20px;
}
.banner-section.help-center .banner-bottom-area .top-area form {
  margin-top: 40px;
}
.banner-section.help-center .banner-bottom-area .top-area form .search {
  padding: 10px;
  background: #FAFBFF;
  border: 1px solid #D5E3FF;
  border-radius: 36px;
}
.banner-section.help-center .banner-bottom-area .top-area form .search input {
  background-color: transparent;
  border-color: transparent;
}
.banner-section.help-center.details .top-area {
  margin-bottom: 0;
}
.banner-section.help-center.details .top-area .icon {
  width: 200px;
  height: 200px;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 100px;
  margin: 0 auto;
}
.banner-section.help-center.details .top-area h2 {
  margin-bottom: 0;
  margin-top: 40px;
}
.banner-section.help-center.info .banner-bottom-area .top-area {
  margin-bottom: 0;
}
.banner-section.help-center.info .banner-bottom-area .top-area h2 {
  margin-bottom: 40px;
}
.banner-section.help-center.info .banner-bottom-area .top-area .profile-area .icon-area img {
  border-radius: 50%;
}
.banner-section.help-center.info .banner-bottom-area .top-area .profile-area .text-area {
  margin-left: 30px;
}
.banner-section.help-center.info .banner-bottom-area .top-area .profile-area .text-area h5 {
  text-transform: uppercase;
  margin-bottom: 15px;
}
.banner-section.help-center.info .banner-bottom-area .top-area .profile-area .text-area p {
  color: #4727EB;
}
.banner-section.privacy-policy .banner-content {
  position: relative;
}
.banner-section.privacy-policy .banner-content::after {
  content: "";
  position: absolute;
  width: 415px;
  height: 460px;
  background-image: url(../images/privacy-policy-banner.png);
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  z-index: 0;
}
.banner-section.privacy-policy .banner-bottom-area .cus-z {
  z-index: 0;
}
.banner-section.privacy-policy .banner-bottom-area .top-area {
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  padding: 60px 0;
  margin-bottom: 0;
}
.banner-section.privacy-policy .banner-bottom-area .top-area .icon-area {
  margin-bottom: 40px;
}
.banner-section.countries .top-area {
  padding: 60px 120px;
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  margin-bottom: 0;
}
.banner-section.countries .top-area h2 {
  margin-bottom: 20px;
}
.banner-section.countries .top-area .where-to {
  padding: 10px;
  background: #FAFBFF;
  border: 1px solid #D5E3FF;
  border-radius: 36px;
  width: 85%;
  margin: 0 auto;
  margin-top: 40px;
}
.banner-section.countries .top-area .where-to input {
  background: transparent;
  border-color: transparent;
}
.banner-section.fees .top-area {
  padding: 60px 0;
  margin-bottom: 0;
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
}
.banner-section.fees .top-area h2 {
  margin-bottom: 20px;
}
.banner-section.fees .select-area {
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-top: 60px;
}
.banner-section.fees .select-area .nice-select {
  background: #FAFBFF;
  border: 1px solid #D5E3FF;
  border-radius: 36px;
  width: 100%;
  margin: 0 10px;
  height: 60px;
  line-height: 55px;
}
.banner-section.fees .select-area .nice-select::after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  height: 12px;
  margin-top: -4px;
  right: 20px;
  top: 40%;
  width: 11px;
}
.banner-section.fees .select-area .nice-select .list {
  width: 100%;
}
.banner-section.contact .overlay {
  position: relative;
}
.banner-section.contact .overlay::after {
  content: "";
  position: absolute;
  width: 552px;
  height: 482px;
  background-image: url(../images/contact-us-illu.png);
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.banner-section.contact .cus-z {
  z-index: 2;
}
.banner-section.contact .cus-mar {
  margin-bottom: -30px;
}
.banner-section.contact .single-item {
  padding: 40px 30px;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 20px;
  margin-bottom: 30px;
}
.banner-section.contact .single-item .icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  width: 140px;
  height: 140px;
  background: #F5F5F5;
  border-radius: 70px;
  margin: 0 auto;
}
.banner-section.contact .single-item .icon-area ion-icon{
font-size: 22px;
}
.banner-section.contact .single-item h4 {
  margin: 30px 0 10px;
}
.banner-section.contact .single-item .top-area {
  margin-bottom: 30px;
}
.banner-section.contact .single-item .top-area p {
  position: relative;
  padding-bottom:15px;
  width: 85%;
  margin: 0 auto;
}
/*.banner-section.contact .single-item .top-area p::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #CBC2FF;
}*/
.banner-section.contact .single-item .bottom-area {
  margin-bottom: 10px;
}
.banner-section.contact .single-item .bottom-area .icon-bottom {
  padding: 10px;
  width: 50px;
  height: 50px;
  background: #F59E0B;
  margin-right: 20px;
  border-radius: 40px;
}
.banner-section.contact .single-item .bottom-area:last-child {
  margin-bottom: 0;
}
.banner-section.contact .single-item .bottom-area.offline {
  padding: 15px;
  background: #FCFDFF;
  border: 1px solid #EDECFF;
  border-radius: 20px;
}
.banner-section.contact .single-item .bottom-area.offline h6 {
  text-transform: uppercase;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
}
.banner-section.contact .single-item .bottom-area.offline p {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.banner-section.contact .single-item .bottom-area.offline p::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  left: -25px;
  background: #A2B3CB;
  border-radius: 8px;
}
.banner-section.blog .banner-bottom-area {
  margin-bottom: -24px;
}
.banner-section.blog .top-area {
  position: relative;
  padding: 60px 0;
}
.banner-section.blog .top-area::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 100%;
  left: -10%;
  top: 0;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.3);
  border-radius: 30px;
  z-index: 0;
}
.banner-section.blog .top-area .cus-z {
  z-index: 2;
}
.banner-section.blog .top-area .profile-area img {
  border-radius: 50%;
  margin-right: 20px;
}
.banner-section.blog .top-area .profile-area h5 {
  text-transform: uppercase;
}
.banner-section.blog .top-area h3 {
  text-transform: uppercase;
  margin: 20px 0 30px;
}
.banner-section.blog .top-area a {
  color: #F59E0B;
  display: flex;
  align-items: center;
  margin-top: 40px;
  text-transform: uppercase;
}
.banner-section.blog .top-area a img {
  margin-left: 5px;
}
.banner-section.blog .top-area .right-illu {
  border-radius: 50%;
}




.banner-section.blog-single-2 {
  margin-bottom: -60px;
}
.banner-section.blog-single-2 .overlay {
  background-image: unset;
  padding-bottom: 0;
}
.banner-section.blog-single-2 .overlay .main-content {
  padding-bottom: 65px;
}

.footer-section.inner {
  background: #FBFBFF;
  border-top: 1px solid #D9D8FF;
}
.footer-section.inner .overlay .footer-top {
  padding: 25px 0;
  border-bottom: 1px solid #B8CCFF;
}
.footer-section.inner .overlay .footer-top .app-market {
  position: relative;
}
.footer-section.inner .overlay .footer-top .app-market::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 80px;
  background: #B2B3BA;
  right: 50%;
  top: 0;
}
.footer-section.inner .overlay .footer-top .single .review-area {
  margin-top: 12px;
}
.footer-section.inner .overlay .footer-top .single .review-area ul {
  margin-bottom: 3px;
  margin-right: 10px;
}
.footer-section.inner .overlay .footer-top .single .review-area ul i {
  color: #F59E0B;
  font-size: 24px;
  font-size: 14px;
}
.footer-section.inner .overlay .footer-top .right-side h6 {
  text-transform: uppercase;
}
.footer-section.inner .overlay .footer-top .right-side .subscribe {
  border-radius: 35px;
  margin-top: 30px;
  padding: 5px;
  background: #F7FAFF;
  border: 1px solid #E2E2EA;
}
.footer-section.inner .overlay .footer-top .right-side .subscribe input {
  background: transparent;
  border: none;
}
.footer-section.inner .overlay .footer-top .right-side .subscribe button {
  text-transform: capitalize;
}
.footer-section.inner .overlay .wrapper {
  position: relative;
}
.footer-section.inner .overlay .wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  bottom: 22px;
}
.footer-section .overlay .wrapper {
  margin: -6px 0 -23px;
}
.footer-section .single-area h5 {
  /*text-transform: uppercase;*/
  margin-bottom: 30px;
}
.footer-section .single-area .items li {
  margin-bottom: 12px;
}
.footer-section .single-area .items li a {
  position: relative;
  color: #232323;
  display: flex;
  align-items: center;
  transition: ease 0.4s;
}
.footer-section .single-area .items li a::before {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-right.png);
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  left: 0;
  visibility: hidden;
}
.footer-section .single-area .items li a:hover {
  padding-left: 30px;
  transition: ease 0.4s;
  color: #F59E0B;
}
.footer-section .single-area .items li a:hover::before {
  left: 12px;
  transition: ease 0.4s;
  visibility: visible;
}
.footer-section .single-area p {
  margin-bottom: 30px;
}
.footer-section .single-area form .subscribe {
  background: #f8f8f8;
  border: 1px solid #E2E2EA;
  box-sizing: border-box;
  border-radius: 35px;
  margin-bottom: 30px;
}
.footer-section .single-area form .subscribe input {
  border-radius: 35px;
  border: none;
  background: #f8f8f8;
}
.footer-section .single-area form .subscribe button {
  padding: 20px;
  background: #F59E0B;
  border-radius: 50%;
  display: flex;
}
.footer-section .single-area form .subscribe:focus-within {
  border: 1px solid #F59E0B;
}
.footer-section .social a {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 3px 12px rgba(37, 60, 120, 0.1);
  border-radius: 80px;
  margin: 0 10px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-section .footer-bottom .main-content {
  border-top: 1px solid #e2e2e2;
  padding: 30px 0;
}
/*.footer-section .footer-bottom .main-content .left-area p {
  text-transform: uppercase;
}*/
.footer-section .footer-bottom .main-content .left-area p span {
  padding: 0 7px;
}
.footer-section .footer-bottom .main-content .left-area p a {
  color: #ff9900;
  font-size: inherit;
  line-height: inherit;
}
.footer-section .footer-bottom .main-content .right-area .nice-select {
  padding-right: 65px;
  /*text-transform: uppercase;*/
  display: flex;
  align-items: center;
  border: 1px solid rgba(146, 170, 255, 0.3);
  border-radius: 10px;
}
.footer-section .footer-bottom .main-content .right-area .nice-select .list {
  top: unset;
  bottom: 100%;
  width: 100%;
}
.footer-section .footer-bottom .main-content .right-area .nice-select::after {
  border-bottom: 2px solid #4A518A;
  border-right: 2px solid #4A518A;
  height: 15px;
  margin-top: -12px;
  right: 18px;
  top: 50%;
  width: 14px;
}
.features-section .wrapper {
  margin-bottom: -3px;
}
.features-section .single-item .icon {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  /*box-shadow: 0px 2px 24px 2px rgba(245, 245, 244, 1);*/
  border-radius: 65px;
  margin: 0 auto;
}
.features-section .single-item h5 {
  /*text-transform: uppercase;*/
  margin: 20px 0 10px;
}
.features-section .single-item p {
  margin: 0 5px;
}

.customers-section {
  position: relative;
  background-image: url(../images/customers-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-size:contain;
  background-position: center;
}
/*.customers-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  top: 60%;
  background-image: url(../images/cus-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-size:contain;
  z-index: 1;
}*/
.customers-section .overlay {
  position: relative;
  margin-bottom: 80px;
}
.customers-section .customers-area {
  position: relative;
}
.customers-section .customers-area .element {
  position: absolute;
  z-index: 1;
}
.customers-section .customers-area .element.po-1 {
  left: 18%;
  top: 1%;
}
.customers-section .customers-area .element.po-2 {
  left: 18%;
  top: 15%;
}
.customers-section .customers-area .element.po-3 {
  left: 8%;
  top: 30%;
}
.customers-section .customers-area .element.po-4 {
  right: 35%;
  top: 5%;
}
.customers-section .customers-area .element.po-5 {
  right: 13%;
  top: 20%;
}
.customers-section .customers-area .element.po-6 {
  right: -3%;
  top: 30%;
}
.customers-section .customers-area .element.po-7 {
  right: calc(22% - 30px);
}
.customers-section .customers-area .element .image-area p {
  position: relative;
  top: -14px;
  font-size: 18px;
  line-height: 25px;
  border-radius: 25px;
  padding: 10px 20px;
  opacity: 0;
  transition: ease 0.3s;
  color: #000000;
}
.customers-section .customers-area .element .image-area p::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 45px;
  left: 60px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.customers-section .customers-area .element .image-area p.item-1 {
  background: #F8CDBD;
}
.customers-section .customers-area .element .image-area p.item-1::before {
  border-top: 15px solid #F8CDBD;
}
.customers-section .customers-area .element .image-area p.item-2 {
  background: #6CCDD5;
}
.customers-section .customers-area .element .image-area p.item-2::before {
  border-top: 15px solid #6CCDD5;
}
.customers-section .customers-area .element .image-area p.item-3 {
  background: #8FBC87;
}
.customers-section .customers-area .element .image-area p.item-3::before {
  border-top: 15px solid #8FBC87;
}
.customers-section .customers-area .element .image-area p.item-4 {
  background: #EDBBBC;
}
.customers-section .customers-area .element .image-area p.item-4::before {
  border-top: 15px solid #EDBBBC;
}
.customers-section .customers-area .element .image-area p.item-5 {
  background: #D385C1;
}
.customers-section .customers-area .element .image-area p.item-5::before {
  border-top: 15px solid #D385C1;
}
.customers-section .customers-area .element .image-area p.item-6 {
  background: #8FD6EE;
}
.customers-section .customers-area .element .image-area p.item-6::before {
  border-top: 15px solid #8FD6EE;
}
.customers-section .customers-area .element .image-area p.item-7 {
  background: #F8CDBD;
}
.customers-section .customers-area .element .image-area p.item-7::before {
  border-top: 15px solid #F8CDBD;
}
.customers-section .customers-area .element .image-area img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.customers-section .customers-area .element .image-area img.item-1 {
  background: #6CCDD5;
}
.customers-section .customers-area .element .image-area img.item-2 {
  background: #8FBC87;
}
.customers-section .customers-area .element .image-area img.item-3 {
  background: #EDBBBC;
}
.customers-section .customers-area .element .image-area img.item-4 {
  background: #D385C1;
}
.customers-section .customers-area .element .image-area img.item-5 {
  background: #A893E1;
}
.customers-section .customers-area .element .image-area img.item-6 {
  background: #F4CD5D;
}
.customers-section .customers-area .element .image-area img.item-7 {
  background: #8FD6EE;
}
.customers-section .customers-area .element .image-area:hover p {
  opacity: 1;
  transition: ease 0.3s;
}
.customers-section .customers-area .circle {
  z-index: -7;
}
.customers-section .customers-area .circle img {
  opacity: 0.5;
}
.customers-section .testimonials-area {
  /*position: absolute;
  bottom: 55%;*/
  position: relative;
}
.customers-section .testimonials-area img {
  display: initial;
}
.customers-section .testimonials-area .total-item {
  position:relative;
  width: 100%;
  background: rgba(44, 44, 44, 0.8);  
  border-radius: 20px;
  margin-top: 60px;
  padding-bottom: 50px;
  z-index: 5;
}
.customers-section .testimonials-area .total-item .profile img {
  width: 100px;
  height: 100px;
  background: #FFF;
  border: 10px solid rgba(44, 44, 44, 0.8);
  box-sizing: border-box;
  border-radius: 65px;
}
.customers-section .testimonials-area .total-item .bottom-item {
  position: relative;
}
.customers-section .testimonials-area .total-item .bottom-item .quote {
  position: absolute;
  left: 0;
  top: 15px;
}
.customers-section .testimonials-area .total-item .bottom-item .review {
  margin: 20px 0 15px;
}
.customers-section .testimonials-area .total-item .bottom-item .review i {
  font-size: 24px;
  color: #FFC90A;
  margin: 0 -2px;
}
.customers-section .testimonials-area .total-item .bottom-item p {
  color: var(--body-color);
}
.customers-section .testimonials-area .total-item .bottom-item a {
  /*text-transform: uppercase;*/
  font-weight: bold;
  color: #F59E0B;
  margin: 10px 0 15px;
}
.customers-section .testimonials-area .total-item .bottom-item .country span {
  color: var(--body-color);
  /*text-transform: uppercase;*/
}
.customers-section .testimonials-area .total-item .wrapper {
  margin-top: -50px;
}
.customers-section .testimonials-area .total-item .testimonials-carousel .slick-list {
  overflow: initial;
}





.payment-solutions .payment-carousel .slick-list {
  margin: -10px 0;
}
.payment-solutions .payment-carousel .slick-arrow {
  position: absolute;
  outline: none;
  transition: all 0.5s;
  top: -20%;
  width: 60px;
  height: 60px;
  background: #F8F5FF;
  border-radius: 30px;
  margin: 0px 30px;
  z-index: 1;
}
.payment-solutions .payment-carousel .slick-arrow i {
  color: #000000;
  line-height: 3.5;
}
.payment-solutions .payment-carousel .slick-arrow:hover {
  background: #F59E0B;
}
.payment-solutions .payment-carousel .slick-arrow:hover i {
  color: var(--body-color);
}
.payment-solutions .payment-carousel .slick-next {
  right: calc(8% - 1px);
}
.payment-solutions .payment-carousel .slick-prev {
  right: calc(15% - 1px);
  z-index: 2;
}
.payment-solutions .single {
  margin: 10px 0;
}
.payment-solutions .single-item {
  padding: 60px 30px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(40, 30, 103, 0.1);
  border-radius: 10px;
  margin: 0px 15px;
}
.payment-solutions .single-item .icon {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  background: #F8F5FF;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-solutions .single-item h5 {
  /*text-transform: uppercase;*/
  margin: 40px 0 20px;
}

@keyframes stretch {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.5);
  }
}
.how-works {
  background: #FFF9EE;
}
.how-works.inner-how-works {
  background: transparent;
  position: relative;
}
.how-works.inner-how-works::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  top: 60%;
  background-image: url(../images/cus-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
.how-works.inner-how-works .single-item.second {
  position: relative;
}
.how-works.inner-how-works .single-item.second::after, .how-works.inner-how-works .single-item.second::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  width: 65px;
  height: 15px;
  top: calc(50% - 20px);
}
.how-works.inner-how-works .single-item.second::before {
  background-image: url(../images/arrow_01.png);
  left: -25px;
}
.how-works.inner-how-works .single-item.second::after {
  background-image: url(../images/arrow_02.png);
  right: -25px;
}
.how-works.inner-how-works .single-item .iconbg {
  margin-right: auto !important;
  margin: 0 auto;
  position: relative;
}
.how-works.inner-how-works .single-item .bottom-icon h5 {
  margin-top: 30px;
  text-transform: uppercase;
}
.how-works.inner-how-works .single-item .icon span {
  right: 0;
}
.how-works.inner-how-works .magnific-area {
  background: #441FB1;
  border-radius: 30px;
  position: relative;
  margin-top: 30px;
  z-index: 1;
}
.how-works.inner-how-works .magnific-area .bg-item {
  padding: 20px 0;
}
.how-works.inner-how-works .magnific-area .bg-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-works.inner-how-works .magnific-area .bg-area::before {
  position: absolute;
  content: "";
  background-image: url(../images/popup-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 82%;
  width: 67%;
  z-index: -1;
  animation: stretch 7s linear infinite;
}
.how-works.inner-how-works .magnific-area .popupvideo {
  position: absolute;
}





.how-works .left-area {
  position: relative;
}
/*.how-works .left-area img {
  position: absolute;
  left: -40%;
  max-width: 150%;
}*/
/*.how-works .wrapper {
  margin-bottom: -40px;
}*/
.how-works .single-item {
  margin-bottom: 20px;
}
.how-works .single-item .icon {
  position: relative;
}
.how-works .single-item .icon span {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 30px;
  top: 10px;
  background: #E0FFF9;
  border-radius: 20px;
  color: #F59E0B;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-works .single-item .icon span.second {
  background: #E5DBFF;
}
.how-works .single-item .icon span.third {
  background: #E2FFDD;
}
.how-works .single-item .icon .iconbg {
  width: 110px;
  height: 110px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(37, 60, 120, 0.1);
  border-radius: 80px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-works .single-item .icon .iconbg img{
  width: 64px;
}
.how-works .single-item .right h5 {
  /*text-transform: uppercase;*/
  margin-bottom: 10px;
}
.how-works.works {
  background: #FBFBFF;
}

.app-download.inner-app-download {
  background: #392396;
  position: relative;
}
.app-download.inner-app-download .right-area h2, .app-download.inner-app-download .right-area ul li {
  color: var(--body-color);
}
.app-download.inner-app-download .img-area {
  position: absolute;
  left: 8%;
  bottom: 0;
}
.app-download.inner-app-download .img-area img {
  max-width: 87%;
}
.app-download.inner-app-download .app-market {
  margin-top: 30px;
}

/*.app-download .left-area {
  position: relative;
  left: -45%;
}*/
/*.app-download .left-area img {
  max-width: unset;
}*/
.app-download .right-area .section-header {
  margin-bottom: 25px;
}
.app-download .right-area .feature li {
  display: flex;
  /*color: #F59E0B;*/
  margin-bottom: 15px;
}
.app-download .right-area .feature li .icon {
  width: 24px;
  height: 24px;
  border: 1px solid #B2B9D3;
  border-radius: 15px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-download .right-area .feature li .nice-select:active,
.app-download .right-area .feature li .nice-select.open,
.app-download .right-area .feature li .nice-select:focus {
  border: none;
}
.app-download .right-area .phone-number {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 50px;
  margin: 40px 0px;
}
.app-download .right-area .phone-number .nice-select {
  border: none;
  background-color: transparent;
  height: 34px;
  padding-left: 25px;
  width: 100px;
}
.app-download .right-area .phone-number .nice-select .current {
  position: relative;
}
.app-download .right-area .phone-number .nice-select .current::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: -24px;
  background-image: url(../images/flag-icon.png);
  background-repeat: no-repeat;
}
.app-download .right-area .phone-number .nice-select.nice-select::before {
  position: absolute;
  content: "";
  border-bottom: 1px solid #F59E0B;
  right: 0;
  width: 100%;
  bottom: 0;
}
.app-download .right-area .phone-number .nice-select.nice-select:after {
  border-bottom: 2px solid #F59E0B;
  border-right: 2px solid #F59E0B;
  height: 8px;
  right: 2px;
  width: 8px;
}
.app-download .right-area .phone-number input {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #8591BA;
  width: 70%;
  padding: 5px 10px 2px 0;
  margin: 0 20px;
}
.app-download .right-area .phone-number input:focus {
  border-bottom: 1px solid #F59E0B;
}
.app-download .right-area .app-market a {
  margin-right: 25px;
}




.faqs-section .overlay .wrapper {
  margin-bottom: -20px;
}
.faqs-section .overlay .right {
  margin-bottom: 57px;
}
.faqs-section .overlay .accordion .accordion-item {
  margin: 20px 0px;
  border: 0px;
}
.faqs-section .overlay .accordion .accordion-item.intro {
  background: #FDFEFF;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 20px 0px;
}
.faqs-section .overlay .accordion .accordion-item .accordion-collapse {
  border: none;
}
.faqs-section .overlay .accordion .accordion-item h6 {
  background: #FDFEFF;
  border: 1px solid #F2F2F2;
  border-radius: 10px;
}
.faqs-section .overlay .accordion .accordion-item h6 .accordion-button {
  border: none;
  padding: 15px 20px 15px 30px;
  background: transparent;
  /*text-transform: uppercase;*/
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.faqs-section .overlay .accordion .accordion-item h6 .accordion-button::before {
  content: "";
  position: absolute;
  right: 12px;
  width: 30px;
  height: 30px;
  background-color: #f6f6f6;
  border-radius: 24px;
}
.faqs-section .overlay .accordion .accordion-item h6 .accordion-button.collapsed::after {
  background-image: url(../images/plus.png);
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transition: all ease 0.3s;
}
.faqs-section .overlay .accordion .accordion-item h6 .accordion-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/minus.png);
  background-repeat: no-repeat;
  background-size: initial;
  height: 14px;
  width: 14px;
  right: 20px;
  transform: rotate(180deg);
  transition: all ease 0.3s;
}
.faqs-section .overlay .accordion .accordion-item h6 .accordion-button .head-area {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.faqs-section .overlay .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
}
.faqs-section.help-center {
  position: relative;
}
.faqs-section.help-center .section-header h2, .faqs-section.help-center .section-header p {
  color: var(--body-color);
}
.faqs-section.help-center::before {
  position: absolute;
  content: "";
  width: 100%;
  background: #392396;
  height: 60%;
  top: 0;
  z-index: -1;
}
.faqs-section.help-center .accordion {
  position: relative;
  padding-top: 40px;
}
.faqs-section.help-center .accordion::before {
  position: absolute;
  content: "";
  width: 140%;
  left: -20%;
  background: var(--body-color);
  border-radius: 20px;
  height: 80%;
  top: 0;
  z-index: -1;
}
.faqs-section.help-center-content .accordion {
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 10px;
  padding: 15px 0;
}
.faqs-section.help-center-content .accordion .accordion-item.intro {
  box-shadow: none;
}
.faqs-section.help-center-content .accordion .accordion-item h6 .accordion-button {
  padding: 10px;
}
.faqs-section.help-center-content .accordion .accordion-item h6 .accordion-button::before {
  content: "";
  position: absolute;
  right: 10px;
  width: 35px;
  height: 35px;
  background-color: #EBEBFF;
  border-radius: 24px;
}
.faqs-section.help-center-content .accordion .accordion-item h6 .accordion-button .icon {
  min-width: 60px;
  min-height: 60px;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 70px;
  margin-right: 20px;
}
.faqs-section.help-center-content .accordion .accordion-item h6 .accordion-button .head-area .smr {
  text-transform: capitalize;
  display: block;
  margin-top: 10px;
}
.faqs-section.help-center-content .accordion .accordion-item .accordion-body .nav-tabs {
  border: none;
  display: grid;
  background: var(--body-color);
  border-color: transparent;
}
.faqs-section.help-center-content .accordion .accordion-item .accordion-body .nav-tabs li .nav-link {
  background: var(--body-color);
  box-shadow: 0px 1px 0px rgba(128, 140, 255, 0.1);
  border: none;
  border: none;
  width: 100%;
  text-align: start;
  margin-bottom: 0;
  border-radius: 5px;
}
.faqs-section.help-center-content .accordion .accordion-item .accordion-body .nav-tabs li .nav-link.active {
  background: #F59E0B;
  color: var(--body-color);
}
.faqs-section.help-center-content .tab-content {
  margin-top: -14px;
}
.faqs-section.help-center-content .tab-content .body-content {
  margin-bottom: -20px;
}
.faqs-section.help-center-content .tab-content .body-content li {
  margin-bottom: 20px;
}
.faqs-section.help-center-content .tab-content .body-content li a {
  position: relative;
  color: #F59E0B;
  font-weight: bold;
  padding: 20px;
  display: flex;
  align-items: center;
  background: #FDFEFF;
  border: 1px solid #DDE5FF;
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 10px;
}
.faqs-section.help-center-content .tab-content .body-content li a::after {
  content: "";
  position: absolute;
  background-image: url(../images/index3-overlay.png), url(../images/right-icon-2.png);
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  right: 20px;
}
.faqs-section.help-center-content .tab-content .body-content li a::before {
  content: "";
  position: absolute;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #EBEBFF;
  border-radius: 30px;
}
.faqs-section.main .nav-tabs {
  border: none;
}
.faqs-section.main .nav-tabs .nav-link {
  padding: 10px 20px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(203, 202, 255, 0.25);
  border-radius: 26px;
  margin-left: 15px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
}
.faqs-section.main .nav-tabs .nav-link.active {
  background: #F59E0B;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
  color: var(--body-color);
  transition: all 0.3s;
}
.faqs-section.main .tab-content h4 {
  text-transform: uppercase;
  text-align: center;
  margin: 40px 0 20px;
}

.call-action {
  border-radius: 20px;
  width:60%;
  margin: 0 auto;
  background-color: #F59E0B;
}
.call-action .overlay .main-content {
  background-image: url(../images/call-action-circle.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.call-action .overlay .main-content .main {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.84) 0%, #F59E0B 100%);
  width: 100%;
  height: 100%;
}
.call-action .overlay .main-content .main .section-header {
  margin-top: -14px;
  margin-bottom: -7px;
}
.call-action .overlay .main-content .main .section-header .btn-theme {
  background: #232323;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
  min-width: 250px;
  color: #ffffff;
}
.call-action .overlay .main-content .main .section-header h3, .call-action .overlay .main-content .main .section-header p {
  color: var(--body-color);
}
.call-action .overlay .main-content .main .section-header p {
  margin: 0 1%;
  padding: 10px 0 30px;
}


.security-section .left-area ul li {
  display: flex;
  color: #F59E0B;
  margin-bottom: 15px;
}
.security-section .left-area ul li:last-child {
  margin-bottom: 0;
}
.security-section .left-area ul li .icon {
  width: 24px;
  height: 24px;
  border: 1px solid #B2B9D3;
  border-radius: 15px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatinit-section {
  background-image: url(../images/what-init-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}
.whatinit-section .section-header h3, .whatinit-section .section-header p {
  color: var(--body-color);
}
.whatinit-section .bottom-content {
  position: relative;
  z-index: 0;
  padding-top: 60px;
}
.whatinit-section .bottom-content::after {
  position: absolute;
  content: "";
  width: 110%;
  height: 100%;
  top: 0;
  background: var(--body-color);
  box-shadow: 0px 1px 24px rgba(183, 199, 255, 0.2);
  border-radius: 20px;
  z-index: -1;
  left: -5%;
}
.whatinit-section .bottom-content .cus-mar {
  margin-bottom: -40px;
}
.whatinit-section .bottom-content .single-item {
  margin-bottom: 40px;
}
.whatinit-section .bottom-area h5 {
  margin: 30px 0 20px;
}







@keyframes comunity {
  0% {
    transform: translateY(100%);
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 0.9;
  }
  99.99% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.comunity-section {
  position: relative;
}
.comunity-section::before {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #392396;
  height: 50%;
  top: 0;
  z-index: -1;
}
.comunity-section .comunity-wrapper {
  align-items: center;
  justify-content: center;
  min-height: 550px;
  position: relative;
  border-radius: 10px;
  background: var(--body-color);
  overflow: hidden;
  display: flex;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.05);
}
.comunity-section .comunity-wrapper .comunity-area {
  border-radius: 20px;
  background-color: var(--body-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: comunity 30s linear infinite;
}
.comunity-section .comunity-wrapper .comunity-area.three {
  top: 100%;
}
.comunity-section .comunity-wrapper .comunity-area.two {
  top: -100%;
}
.comunity-section .comunity-wrapper .comunity-area .comunity-item {
  position: absolute;
}
.comunity-section .comunity-wrapper .comunity-area .comunity-item img {
  width: 100%;
  border-radius: 50%;
}
.comunity-section .section-header h2, .comunity-section .section-header p {
  color: var(--body-color);
}
.comunity-section .comunity-item:nth-child(1) {
  width: 141px;
  height: 141px;
  opacity: 0.8;
  left: calc(50% + 255px);
  top: 350px;
}
.comunity-section .comunity-item:nth-child(2) {
  width: 63px;
  height: 63px;
  opacity: 0.4;
  left: calc(50% + 465px);
  top: 260px;
}
.comunity-section .comunity-item:nth-child(3) {
  width: 64px;
  height: 64px;
  opacity: 0.5;
  left: calc(50% + 53px);
  top: 340px;
}
.comunity-section .comunity-item:nth-child(4) {
  width: 42px;
  height: 42px;
  opacity: 0.5;
  left: calc(50% + 177px);
  top: 290px;
}
.comunity-section .comunity-item:nth-child(5) {
  width: 42px;
  height: 42px;
  opacity: 0.5;
  left: 5%;
  top: 290px;
}
.comunity-section .comunity-item:nth-child(6) {
  width: 42px;
  height: 42px;
  opacity: 0.5;
  left: calc(50% + 390px);
  top: 158px;
}
.comunity-section .comunity-item:nth-child(7) {
  width: 65px;
  height: 65px;
  opacity: 0.5;
  left: calc(50% + 460px);
  top: 70px;
}
.comunity-section .comunity-item:nth-child(8) {
  width: 65px;
  height: 65px;
  opacity: 0.3;
  right: calc(50% + 120px);
  top: 387px;
}
.comunity-section .comunity-item:nth-child(9) {
  width: 65px;
  height: 65px;
  opacity: 0.5;
  right: calc(50% + 345px);
  top: 362px;
}
.comunity-section .comunity-item:nth-child(10) {
  width: 105px;
  height: 105px;
  opacity: 0.5;
  right: calc(50% + 210px);
  top: 265px;
}
.comunity-section .comunity-item:nth-child(11) {
  width: 45px;
  height: 45px;
  opacity: 0.3;
  right: calc(50% + 87px);
  top: 278px;
}
.comunity-section .comunity-item:nth-child(12) {
  width: 68px;
  height: 68px;
  opacity: 0.2;
  left: calc(50% - 15px);
  top: 210px;
}
.comunity-section .comunity-item:nth-child(13) {
  width: 68px;
  height: 68px;
  opacity: 0.65;
  left: calc(50% + 170px);
  top: 90px;
}
.comunity-section .comunity-item:nth-child(14) {
  width: 68px;
  height: 68px;
  opacity: 0.65;
  left: 5%;
  top: 90px;
}
.comunity-section .comunity-item:nth-child(15) {
  width: 43px;
  height: 43px;
  opacity: 0.5;
  left: calc(50% + 65px);
  top: 70px;
}
.comunity-section .comunity-item:nth-child(16) {
  width: 49px;
  height: 49px;
  opacity: 0.4;
  right: calc(50% + 475px);
  top: 450px;
}
.comunity-section .comunity-item:nth-child(17) {
  width: 49px;
  height: 49px;
  opacity: 0.4;
  right: calc(50% + 390px);
  top: 256px;
}
.comunity-section .comunity-item:nth-child(18) {
  width: 45px;
  height: 45px;
  opacity: 0.5;
  right: calc(50% + 265px);
  top: 130px;
}
.comunity-section .comunity-item:nth-child(19) {
  width: 75px;
  height: 75px;
  opacity: 0.2;
  right: calc(50% + 213px);
  top: 133px;
}
.comunity-section .comunity-item:nth-child(20) {
  width: 110px;
  height: 110px;
  opacity: 0.3;
  right: calc(50% - 16px);
  top: 10px;
}
.comunity-section .comunity-item:nth-child(21) {
  width: 146px;
  height: 146px;
  opacity: 0.3;
  right: calc(50% + 375px);
  top: 86px;
}
.buy-sell .bottom-item {
  margin-bottom: -24px;
}
.buy-sell .single-item {
  margin-bottom: 20px;
}
.buy-sell .single-item .icon {
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(40, 61, 136, 0.1);
  border-radius: 60px;
  width: 90px;
  height: 90px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-sell .single-item h5 {
  text-transform: uppercase;
}

.buy-crypto {
  background-color: #392396;
}
.buy-crypto .section-header {
  margin-bottom: -7px;
}
.buy-crypto .section-header h2, .buy-crypto .section-header p {
  color: var(--body-color);
}
.buy-crypto .section-header .btn-theme {
  margin-top: 40px;
}

.business-commercial .img-area {
  left: -50%;
  position: relative;
}
.business-commercial .img-area img {
  max-width: unset;
}
.business-commercial .section {
  margin-bottom: -20px;
}
.business-commercial .section p {
  margin-bottom: 20px;
}





.pricing-section .payment-methods {
  border: 1px solid #D6D6FF;
  border-radius: 10px;
  padding: 30px;
}
.pricing-section .payment-methods .table thead {
  background-color: #F6F6FF;
}
.pricing-section .payment-methods .table thead span {
  text-transform: uppercase;
  color: #F59E0B;
  padding: 5px;
  font-weight: bold;
}
.pricing-section .payment-methods .table tbody tr {
  box-shadow: 0px 1px 0px rgba(200, 199, 255, 0.25);
}
.pricing-section .payment-methods .table tbody tr td {
  text-align: center;
}
.pricing-section .payment-methods .table tbody tr th, .pricing-section .payment-methods .table tbody tr td {
  font-weight: normal;
  color: #F59E0B;
  padding: 12px;
}
.pricing-section .payment-methods .btn-theme {
  width: 230px;
  margin-top: 40px;
}
.pricing-section .personal-approach {
  padding: 60px 30px;
  background: #F2FBFF;
  border: 1px solid #D6D6FF;
  border-radius: 20px;
}
.pricing-section .personal-approach p {
  padding: 30px 0 40px;
  width: 70%;
  margin: 0 auto;
}
.pricing-section .personal-approach a {
  width: 230px;
  background: transparent;
  color: #F59E0B;
  border: 1px solid #F59E0B;
  box-shadow: none;
}

.get-started-section {
  background: #2c2c2c;
}
.get-started-section .btn-theme {
  min-width: 190px;
  margin-top: 20px;
}
.get-started-section h2, .get-started-section p {
  color: var(--body-color);
}


.get-started-section.about-us {
  position: relative;
}
.get-started-section.about-us .section-header {
  margin-bottom: 0;
}
.get-started-section.about-us .section-header .btn-theme {
  min-width: 250px;
  margin-top: 30px;
  margin-bottom: -7px;
}
/*.get-started-section.about-us .img-area img {
  position: absolute;
  right: 0;
  bottom: 0;
}*/

.our-mission {
  position: relative;
}
.our-mission .section-header {
  margin-bottom: 0;
}
.our-mission .section-header .btn-theme {
  width: 250px;
  margin-top: 30px;
  margin-bottom: -7px;
}
/*.our-mission .img-area img {
  max-width: unset;
}*/

.start-earning .main-content {
  margin: -15px 0 -6px;
}
.start-earning .btn-theme {
  width: 210px;
  margin-top: 40px;
}

.benefits-section .top-wrapper {
  margin-bottom: -30px;
}
.benefits-section .single-item {
  padding: 60px 30px;
  border: 1px solid #C1D9FF;
  border-radius: 20px;
  margin-bottom: 30px;
}
.benefits-section .single-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: #F8F8FF;
  box-shadow: 0px 2px 12px rgba(77, 92, 231, 0.25);
  border-radius: 50px;
}
.benefits-section .single-item h6 {
  text-transform: uppercase;
  margin-top: 30px;
}

.pricing-plan{
  background-color: #FFF9EE;
}
.pricing-plan .wrapper {
  margin-bottom: -30px;
}
.pricing-plan .pricing-block {
  padding: 20px;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 20px;
  margin-bottom: 30px;
}
.pricing-plan .pricing-block h4 {
  /*text-transform: uppercase;*/
  margin-bottom:25px;
}
.pricing-plan .pricing-block .head-area {
  border-bottom: 1px solid #d3d3d3;
  margin: 30px 60px 40px;
  padding-bottom: 10px;
}
.pricing-plan .pricing-block ul {
  margin-top: 40px;
}
.pricing-plan .pricing-block ul li {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom:15px;
  margin-bottom:15px;
  /*color: #F59E0B;*/
}
.pricing-plan .price-box {
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  padding:15px 10px;
  border-radius: 20px;
  margin-top: 40px;
}
.pricing-plan .price-box p {
  color: #2c2c2c;
}
.pricing-plan .price-box h4 {
  /*text-transform: uppercase;*/
  margin: 5px 0;
}
.pricing-plan .price-box span {
  color: #2c2c2c;
}

.team-member .cus-mar {
  margin-bottom: -30px;
}
.team-member .cus-mar .single-item {
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(100, 114, 150, 0.25);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.team-member .cus-mar .single-item img {
  border-radius: 20px;
  padding: 15px;
  width: 100%;
}
.team-member .cus-mar .single-item .text-area {
  padding: 20px 0 30px;
}
.team-member .cus-mar .single-item .text-area a {
  display: block;
}
.team-member .cus-mar .single-item .text-area h6 {
  text-transform: uppercase;
  margin-bottom: 15px;
}

.awards-section .section-header {
  margin-top: -10px;
}
.awards-section .section-header h3 {
  text-transform: uppercase;
  margin-bottom: 30px;
}
.awards-section .cus-mar {
  margin-bottom: -20px;
}
.awards-section .single-item {
  background: #FFF9EE;
  padding: 20px;
  margin-bottom: 20px;
}
.awards-section .single-item .img-area {
  margin-right: 30px;
}
.awards-section .single-item .text-area h3 {
  color: #F59E0B;
}
.awards-section .single-item .text-area h5 {
  text-transform: uppercase;
  margin: 30px 0 20px;
}

.growing-team .overlay {
  background-color: #392396;
  background-image: url(../images/team-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.growing-team .section {
  margin: -10px 0 -6px;
}
.growing-team .section h3 {
  text-transform: uppercase;
  color: var(--body-color);
  margin-bottom: 55px;
}
.growing-team .section a {
  width: 240px;
  color: #F59E0B;
  background-color: #00FFFF;
}

.benefit-section {
  position: relative;
}
.benefit-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 75%;
  background-color: #392396;
  top: 0;
  z-index: -1;
}
.benefit-section .section-header h2, .benefit-section .section-header p {
  color: var(--body-color);
}
.benefit-section .top-wrapper {
  position: relative;
  padding-top: 60px;
  margin-bottom: -63px;
}
.benefit-section .top-wrapper::before {
  content: "";
  position: absolute;
  width: 110%;
  left: -5%;
  height: 100%;
  background-color: var(--body-color);
  border-radius: 10px;
  top: 0;
  z-index: -1;
}
.benefit-section .top-wrapper .single-item {
  margin-bottom: 60px;
}
.benefit-section .top-wrapper .single-item h6 {
  text-transform: uppercase;
  margin: 30px 0 20px;
}

.testimonials-careers .img-area {
  position: relative;
}
.testimonials-careers .img-area .title-area {
  position: absolute;
  bottom: 0;
  right: 15%;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(87, 50, 198, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
}
.testimonials-careers .img-area .title-area h5 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.testimonials-careers .img-area .title-area p {
  color: #4727EB;
}
.testimonials-careers .section h5 {
  color: #4727EB;
}
.testimonials-careers .section h4 {
  margin: 30px 0 20px;
}
.testimonials-careers .section a {
  margin-top: 35px;
  width: 190px;
}

.open-positions {
  background-color: #FFF9EE;
}
.open-positions .title-area {
  margin-top: -13px;
}
.open-positions .nav-tabs {
  border: none;
}
.open-positions .nav-tabs .nav-link {
  padding: 10px 20px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(203, 202, 255, 0.25);
  border-radius: 26px;
  margin-left: 15px;
  text-transform: uppercase;
  border: none;
  font-weight: 500;
}
.open-positions .nav-tabs .nav-link.active {
  background: #F59E0B;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
  color: var(--body-color);
  transition: all 0.3s;
}
.open-positions .tab-content {
  margin-top: 55px;
  margin-bottom: -30px;
}
.open-positions .tab-content .single-item {
  padding: 30px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(203, 202, 255, 0.25);
  border-radius: 10px;
  margin-bottom: 30px;
}
.open-positions .tab-content .single-item h5 {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.open-positions .tab-content .single-item .bottom-area {
  border-top: 1px solid #B7BBE4;
  padding-top: 30px;
  margin-top: 30px;
}
.open-positions .tab-content .single-item .bottom-area .left-bottom .date {
  border-left: 1px solid #B7BBE4;
  margin-left: 20px;
  padding-left: 20px;
}
.open-positions .tab-content .single-item .bottom-area .right-bottom a {
  background: transparent;
  color: #F59E0B;
  border: 1px solid #B49BFF;
  box-shadow: none;
  border-radius: 30px;
  padding: 10px 15px;
}

.send-resume .section-header {
  margin-bottom: -7px;
}
.send-resume .section-header p {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
}
.send-resume .modal-header button:focus {
  border: none;
  box-shadow: none;
}

.apply-now .main-content {
  background: #FFFFFF;
  box-shadow: 0px 4px 24px rgba(203, 202, 255, 0.25);
  border-radius: 30px;
  padding: 60px 30px;
}
.apply-now .main-content h2 {
  margin-bottom: 60px;
  margin-top: -13px;
}
.apply-now .main-content .form .top-area {
  margin-bottom: 5px;
}
.apply-now .main-content .form .single-input {
  border: 1px solid #ACB1C8;
  border-radius: 10px;
  margin-bottom: 30px;
}
.apply-now .main-content .form .input-control {
  position: relative;
  width: 100%;
  height: 3rem;
  margin-bottom: 0;
}
.apply-now .main-content .form .input-label {
  position: absolute;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: inherit;
  left: 1rem;
  top: 0.75rem;
  padding: 0 0.25rem;
  background: var(--body-color);
  transition: all 0.3s ease;
}
.apply-now .main-content .form .input-field {
  font-size: 18px;
  border: 1px solid transparent;
  color: #000000;
  font-weight: bold;
  background: transparent;
  transition: all 0.3s ease;
}
.apply-now .main-content .form .input-field::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}
.apply-now .main-content .form .input-field::placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}
.apply-now .main-content .form .input-field:focus + .input-label {
  font-size: 0.9rem;
  font-weight: 500;
  top: -0.75rem;
  left: 1rem;
  z-index: 5;
  color: #000000;
}
.apply-now .main-content .form .input-field:not(:-moz-placeholder-shown).input-field:not(:focus) + .input-label {
  font-size: 0.9rem;
  font-weight: 500;
  top: -0.75rem;
  left: 1rem;
  z-index: 5;
}
.apply-now .main-content .form .input-field:not(:placeholder-shown).input-field:not(:focus) + .input-label {
  font-size: 0.9rem;
  font-weight: 500;
  top: -0.75rem;
  left: 1rem;
  z-index: 5;
}
.apply-now .main-content .upload-req {
  margin-bottom: 40px;
}
.apply-now .main-content .upload-req label {
  display: block;
  cursor: pointer;
}
.apply-now .main-content .upload-req label span {
  color: #4727EB;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.apply-now .main-content .upload-req input {
  display: none;
}

.browse-by-category .top-wrapper {
  margin-bottom: -30px;
}
.browse-by-category .single-item {
  border: 1px solid #EAEEFF;
  padding: 60px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s;
}
.browse-by-category .single-item:hover {
  border: 1px solid #F59E0B;
  transition: all 0.3s;
}
.browse-by-category .single-item .icon {
  background: #FFFFFF;
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 70px;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}
.browse-by-category .single-item h5 {
  margin: 30px 0 20px;
  text-transform: uppercase;
}

.need-to-contact {
  background: #FFF9EE;
}
.need-to-contact .section-header {
  margin-bottom: -7px;
}
.need-to-contact .btn-theme {
  margin-top: 60px;
}
.privacy-content .top-wrapper {
  margin-top: -7px;
  margin-bottom: -7px;
}
.privacy-content .top-wrapper h3 {
  /*text-transform: uppercase;*/
  margin-bottom: 20px;
}
.privacy-content .top-wrapper h5 {  
  margin-bottom: 10px;
}
.privacy-content .top-wrapper p {
  margin-bottom: 20px;
}
.privacy-content .top-wrapper ul {
  margin-bottom: 20px;
}
.privacy-content .top-wrapper ul li {
  margin-bottom: 10px;
}
.privacy-content .safe-data {
  margin: 30px 0;
}
.privacy-content .safe-data ul {
  list-style-type: decimal;
  margin-left: 18px;
}
.privacy-content .safe-data ul li {
  padding-left: 5px;
}
.privacy-content .safe-data ul li::marker {
  font-weight: bold;
}
/*.privacy-content.terms .safe-data {
  margin-bottom: -23px;
}*/
.contact-form {
  background-image: url(../images/contact-form-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.contact-form .form-area {
  padding: 0px 30px;
  /*background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.3);
  border-radius: 20px;*/
}
.contact-form .form-area .single-input {
  /*padding: 20px;
  background: var(--body-color);
  border: 1px solid #9DA1AC;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 30px;*/
}
.contact-form .form-area .single-input .form-control{ 
  /*margin-bottom: 30px;*/
  border-radius:0px;
  border:none;
  background-color:#f9f9f9;
  border-bottom: 1px solid #e7e7e7
  
}
.contact-form .form-area .single-input:focus-within {
  border-bottom:1px solid #F59E0B;
}
.contact-form .form-area .single-input input {
  /*border: none;
  padding: 0;
  padding-right: 15px;*/
}
.contact-form .form-area .single-input textarea {
  /*padding: 0;
  border: none;*/
}
.contact-form .form-area .btn-theme {
  min-width: 190px;
}

.error-404 .section-header {
  margin-bottom: 0;
  margin-top: 44px;
}
.error-404 .section-header a {
  margin-top: 40px;
}


.latest-articles .section-header {
  margin-top: 0;
}
/*.latest-articles .section-header .title {
  margin-bottom: 0;
}*/
.latest-articles .nav-tabs {
  border: none;
}
.latest-articles .nav-tabs .nav-link {
  padding: 15px 25px;
  background: var(--body-color);
  box-shadow: 0px 4px 8px rgba(87, 50, 198, 0.1);
  border-radius: 26px;
  margin-left: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}
.latest-articles .nav-tabs .nav-link:hover, .latest-articles .nav-tabs .nav-link.active {
  background: #F59E0B;
  color: var(--body-color);
}
.latest-articles .tab-content .cus-mar {
  margin-bottom: -40px;
}
.latest-articles .tab-content .tab-pane .single-area {
  margin-bottom: 40px;
}
.latest-articles .tab-content .tab-pane .single-area .top-item img {
  width: 100%;
  border-radius: 20px;
}
.latest-articles .tab-content .tab-pane .single-area .bottom-item {
  padding: 25px 30px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(105, 119, 168, 0.1);
  border-radius: 20px;
  margin: 0 30px;
  transform: translateZ(0);
  margin-top: -65px;
}
.latest-articles .tab-content .tab-pane .single-area .bottom-item h5 {
  /*text-transform: uppercase;*/
  width: 99%;
  margin-bottom: 20px;
}
.latest-articles .tab-content .tab-pane .single-area .bottom-item .date-area {
  margin-top: 20px;
}
.latest-articles .tab-content .tab-pane .single-area .bottom-item a {
  color: #F59E0B;
  display: flex;
  align-items: center;
  /*text-transform: uppercase;*/
}
.latest-articles .tab-content .tab-pane .single-area .bottom-item a img {
  margin-left: 5px;
}
.latest-articles .pagination {
  padding: 5px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(105, 119, 168, 0.1);
  border-radius: 10px;
  margin: 0px 20px;
  margin-top: 60px;
  align-items: center;
  justify-content: center;
}
.latest-articles .pagination .page-dots {
  margin-right: 15px;
  font-size: 50px;
}
.latest-articles .pagination .page-item:first-child .page-link, .latest-articles .pagination .page-item:last-child .page-link {
  border-radius: 20px;
  height: 50px;
}
.latest-articles .pagination .page-item:first-child .page-link:hover, .latest-articles .pagination .page-item:last-child .page-link:hover {
  background: var(--body-color);
}
.latest-articles .pagination a {
  padding: 6px;
  width: 40px;
  height: 40px;
  background: var(--body-color);
  box-shadow: 0px 4px 12px rgba(105, 119, 168, 0.1);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  margin: 0 15px;
}
.latest-articles .pagination a:hover, .latest-articles .pagination a.active {
  color: var(--body-color);
  background: #F59E0B;
  box-shadow: 0px 4px 12px rgba(105, 119, 168, 0.1);
}
.latest-articles .pagination a:hover h5, .latest-articles .pagination a.active h5 {
  color: inherit;
}
.latest-articles .sidebar-area {
  margin-bottom: -40px;
}
.latest-articles .sidebar-area .single-side {
  padding: 30px;
  border: 1px solid #C2C9D6;
  border-radius: 20px;
  margin-bottom: 40px;
}
.latest-articles .sidebar-area .single-side .top-icon {
  text-align: center;
}
.latest-articles .sidebar-area .single-side h5 {
  margin: 20px 0 30px;
  text-transform: uppercase;
}
.latest-articles .sidebar-area .single-side form .input-area {
  border: 1px solid #9DA1AC;
  border-radius: 10px;
  padding-left: 15px;
  margin: 40px 0 20px;
}
.latest-articles .sidebar-area .single-side form .input-area input {
  border: none;
  border-radius: 10px;
  padding: 15px 25px;
  padding-left: 10px;
}
.latest-articles .sidebar-area .single-side form .btn-theme {
  width: 100%;
  border-radius: 10px;
}
.latest-articles .sidebar-area .single-side.search h5 {
  margin-top: 0;
}
.latest-articles .sidebar-area .single-side.search .btn-theme {
  box-shadow: none;
  border: 1px solid #C2C9D6;
  color: #F59E0B;
  background: transparent;
}
.latest-articles .sidebar-area .single-side.popular .single-popular {
  margin-bottom: 40px;
}
.latest-articles .sidebar-area .single-side.popular .single-popular:last-child {
  margin-bottom: 0;
}
.latest-articles .sidebar-area .single-side.popular .single-popular img {
  width: 100%;
}
.latest-articles .sidebar-area .single-side.popular h6 {
  text-transform: uppercase;
  border-bottom: 1px solid #C2C9D6;
  margin: 20px 0;
  padding-bottom: 20px;
}
.latest-articles .sidebar-area .single-side.popular p {
  text-transform: uppercase;
}
.latest-articles .sidebar-area .single-side.author {
  position: relative;
}
.latest-articles .sidebar-area .single-side.author::before {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  height: 75%;
  left: 0;
  z-index: -1;
  background: #F5F7FA;
  border-radius: 10px;
}
.latest-articles .sidebar-area .single-side.author .author-pro {
  margin-bottom: 20px;
}
.latest-articles .sidebar-area .single-side.author .author-pro img {
  border-radius: 50%;
}
.latest-articles .sidebar-area .single-side.author h5 {
  margin-bottom: 20px;
}
.latest-articles .sidebar-area .single-side.author .social {
  margin-top: 25px;
}
.latest-articles .sidebar-area .single-side.author .social a {
  margin-right: 0;
  margin: 0 10px;
}
.latest-articles.posts {
  background-color: #F9FDFF;
}
.latest-articles.posts .section-header {
  margin-top: -15px;
}
.latest-articles.posts .cus-mar {
  margin-bottom: -30px;
}
.latest-articles.posts .single-item {
  padding: 20px;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}
.latest-articles.posts .single-item .img-area img {
  border-radius: 10px;
  width: 100%;
}
.latest-articles.posts .single-item h5 {
  margin-bottom: 20px;
  margin-top: 30px;
  text-transform: uppercase;
}
.latest-articles.posts .single-item .date-view {
  text-transform: uppercase;
  border-bottom: 1px solid #C7C9DB;
  margin-bottom: 23px;
  padding-bottom: 25px;
  color: #F59E0B;
}
.latest-articles.posts .single-item .date-view .view {
  border-left: 1px solid #C7C9DB;
  margin-left: 30px;
  padding-left: 30px;
}
.latest-articles.posts .single-item .date-view .view img {
  margin-right: 10px;
}
.latest-articles.posts .single-item a {
  color: #F59E0B;
  width: 100%;
  text-transform: uppercase;
}
.latest-articles.trending {
  background: #F3FBFF;
}
.latest-articles.latest .cus-mar {
  margin-bottom: -30px;
}
.latest-articles.latest .single-item {
  padding: 20px 10px;
  box-shadow: 0px 4px 24px rgba(105, 119, 168, 0.3);
  border-radius: 20px;
}
.latest-articles.latest .single-item .img-area img {
  max-width: unset;
}
.latest-articles.latest .single-item .text-area {
  padding-right: 20px;
  padding-left: 30px;
}
.latest-articles.latest .single-item .text-area h5 {
  margin-top: 0;
}
.latest-articles.latest .sidebar-area {
  margin-bottom: -30px;
}
.latest-articles.latest .sidebar-area .input-area {
  background-color: var(--body-color);
}
.latest-articles.latest .sidebar-area .single-side {
  margin-bottom: 30px;
}
.latest-articles.latest .sidebar-area .single-side.follow h5 {
  margin-top: 0;
}
.latest-articles.latest .sidebar-area .single-side.follow .social a {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 8px 12px rgba(37, 60, 120, 0.1);
  border-radius: 80px;
  margin-right: 20px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest-articles.latest .sidebar-area .single-side.side-banner {
  padding: 60px 30px;
  background-color: #F59E0B;
}
.latest-articles.latest .sidebar-area .single-side.side-banner h5, .latest-articles.latest .sidebar-area .single-side.side-banner p {
  color: var(--body-color);
}
.latest-articles.latest .sidebar-area .single-side.side-banner h5 {
  margin-bottom: 20px;
  margin-top: -5px;
}
.latest-articles.latest .sidebar-area .single-side.side-banner .btn-theme {
  color: #F59E0B;
  margin-top: 35px;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(87, 50, 198, 0.2);
  border-radius: 10px;
  width: 100%;
}
.latest-articles.blog-single .sub-heading {
  margin: 40px 0;
  padding-top: 20px;
}
.latest-articles.blog-single .sub-heading span {
  text-transform: uppercase;
  margin: 0 20px;
}
.latest-articles.blog-single .sub-heading .crypto {
  color: var(--body-color);
  padding: 15px 30px;
  background: #F59E0B;
  box-shadow: 0px 4px 8px rgba(87, 50, 198, 0.1);
  border-radius: 26px;
}
.latest-articles.blog-single .section-header {
  margin-bottom: -4px;
}
.latest-articles.blog-single .section-header .title {
  margin-bottom: 30px;
}
.latest-articles.blog-single .main-content {
  /*border-top: 1px solid #C7C9DB;
  padding-top: 58px;
  margin-top: 60px;*/
}
.latest-articles.blog-single .main-content .single-content {
  margin-bottom: 40px;
}
.latest-articles.blog-single .main-content .single-content h4 {
  margin-top: 0px;
  margin-bottom: 20px;
}
.latest-articles.blog-single .main-content .single-content p {
    margin-bottom: 20px;
}
.latest-articles.blog-single .main-content .single-content p span {
  color: #6D41F0;
}
.latest-articles.blog-single .main-content .single-content ul {
  margin-top: 20px;
}
.latest-articles.blog-single .main-content .single-content ul li {
  margin-bottom: 10px;
}
.latest-articles.blog-single .main-content .single-content .img-block img {
  border-radius: 20px;
  margin-bottom: 25px;
  width: 100%;
}
.latest-articles.blog-single .main-content .quotation {
  border-left: 3px solid #F59E0B;
  padding-left: 50px;
  margin-bottom: 40px;
}
.latest-articles.blog-single .main-content .quotation p {
  width: 80%;
  padding: 25px 0;
  color: #F59E0B;
}
.latest-articles.blog-single .main-content .bottom-content {
  border-top: 1px solid #C7C9DB;
  border-bottom: 1px solid #C7C9DB;
  padding: 30px 0;
}
.latest-articles.blog-single .main-content .bottom-content .left-area span {
  padding: 15px 20px;
  background: #F5F7FA;
  border-radius: 10px;
  color: #F59E0B;
  margin-right: 15px;
}
.latest-articles.blog-single .main-content .bottom-content .social a {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 8px 12px rgba(37, 60, 120, 0.1);
  border-radius: 80px;
  margin-left: 20px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest-articles.blog-single .main-content .comment-area {
  padding-top: 70px;
}
.latest-articles.blog-single .main-content .comment-area h4 {
  margin-bottom: 30px;
}
.latest-articles.blog-single .main-content .comment-area .comment-single {
  padding: 30px;
  border: 1px solid #D3E1F7;
  border-radius: 20px;
  margin-bottom: 30px;
}
.latest-articles.blog-single .main-content .comment-area .comment-single.second {
  margin-left: 12%;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .avatar {
  margin-right: 30px;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .avatar img {
  max-width: unset;
  border-radius: 50%;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text {
  position: relative;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .reply-icon {
  position: absolute;
  right: 0;
  top: 0;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .reply-icon button {
  background-color: transparent;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .comnt-info .name-review {
  margin-bottom: 20px;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .comnt-info h6, .latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .comnt-info .lang {
  text-transform: uppercase;
  font-weight: 700;
  color: #F59E0B;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .comnt-info .lang {
  margin-left: 20px;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .comnt-info .lang img {
  margin-right: 5px;
}
.latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .comnt-info .date {
  margin-top: 20px;
}
.latest-articles.blog-single .main-content .leave-comment {
  padding: 30px;
  border: 1px solid #D3E1F7;
  border-radius: 20px;
  margin-bottom: 30px;
}
.latest-articles.blog-single .main-content .leave-comment h4 {
  margin-bottom: 30px;
}
.latest-articles.blog-single .main-content .leave-comment .single-input {
  padding: 20px;
  background: var(--body-color);
  border: 1px solid #9DA1AC;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 30px;
}
.latest-articles.blog-single .main-content .leave-comment .single-input input {
  border: none;
  padding: 0;
  padding-right: 15px;
}
.latest-articles.blog-single .main-content .leave-comment .single-input textarea {
  padding: 0;
  border: none;
}
.latest-articles.blog-single.second .section-header {
  margin-bottom: 33px;
}
.latest-articles.blog-single.second .section-header .title {
  width: 90%;
  margin: auto;
}
.latest-articles.blog-single.second .section-header .title-bottom .profile img {
  margin-right: 20px;
  border-radius: 50%;
}
.latest-articles.blog-single.second .section-header .title-bottom .profile h5 {
  text-transform: uppercase;
}
.latest-articles.blog-single.second .main-content {
  border: none;
  padding: 40px 30px 30px;
  background: var(--body-color);
  box-shadow: 0px 4px 24px rgba(171, 188, 248, 0.15);
  border-radius: 20px;
  margin-top: -100px;
  transform: translateZ(1px);
}

.log-reg {
  /*background-color: #392396;*/
  padding: 30px 0;
  padding-bottom: 0;  
  background-image: url(../images/inner-page-banner.png);
  background-repeat:no-repeat; 
  background-size:contain;
  background-position:bottom;
}
.log-reg .form-box {
  padding: 30px;
  background: #ffffff !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.10);
  border-radius: 20px;
}
.log-reg .form-box h4 {
  /*text-transform: uppercase;*/
  margin-bottom: 10px;
}
.log-reg .form-box .dont-acc {
  color: #F59E0B;
}
.log-reg .form-box .dont-acc a {
  color: #F59E0B;
}
.log-reg .form-box .nav-tabs {
  background: var(--body-color);
  border: 1px solid #9587C0;
  box-sizing: border-box;
  border-radius: 30px;
  display: inline-flex;
  margin: 35px 0 40px;
}
.log-reg .form-box .nav-tabs .nav-link {
  padding: 15px 30px;
  border-radius: 30px;
  text-transform: capitalize;
  border: none;
}
.log-reg .form-box .nav-tabs .nav-link.active {
  background: #F59E0B;
  color: var(--body-color);
}
.log-reg .single-input {
  /*padding: 15px 15px 15px 20px;
  background: #F9F9F9;
  box-shadow: 0px 1px 0px #D0D3E8;
  margin-bottom: 20px;
  border-bottom: 1px solid transparent;*/
}
.log-reg .single-input input {
  /*padding: 0;*/
  border: none;
  background: #f9f9f9;
  /*padding: 15px 15px 15px 20px;
    background: #F9F9F9;
    box-shadow: 0px 1px 0px #D0D3E8;*/
    /*margin-bottom: 20px;*/
    border-radius: 0px;
    border-bottom: 1px solid #e7e7e7;
}
.log-reg .single-input .form-floating>label{
  background: transparent;
}
.log-reg .single-input .showPass {
  cursor: pointer;
}
.log-reg .single-input input:focus-within {
  border-bottom: 1px solid #F59E0B;
}
.log-reg .btn-area {
  margin-top: 20px;
  margin-bottom: 30px;
}
.log-reg .btn-area .btn-theme {
  width: 100%;
  /*border-radius: 10px;*/
}
.log-reg .continue {
  position: relative;
}
.log-reg .continue::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #e3e3e3;
  top: 45%;
  left: 0;
}
.log-reg .continue p {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #F59E0B;
}
.log-reg .continue p::before {
  position: absolute;
  content: "";
  width: 110%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: -5%;
  z-index: -1;
}
.log-reg .login-with {
  margin: 15px 0 20px;
}
.log-reg .login-with a {
  padding: 15px 20px;
  border: 1px solid #D0D3E8;
  border-radius: 10px;
  width: 100%;
}
.log-reg .login-with a:first-child {
  margin-right: 15px;
}
.log-reg .login-with a:last-child {
  margin-left: 15px;
}
.log-reg .forget-pw a {
  color: #F59E0B;
}
.log-reg .remember-forgot {
  margin: 10px 0 40px;
}
.log-reg .img-area {
  direction: rtl;
}
.log-reg .img-area img {
  max-width: unset;
}
.log-reg .top-head-area {
  margin-bottom: 40px;
}
.log-reg .checkbox_wrapper {
  position: relative;
  width: 24px;
  margin-right: 10px;
}
.log-reg .checkbox_wrapper input[type=checkbox] {
  opacity: 0;
  position: absolute;
  height: 24px;
  width: 24px;
  top: 0;
  left: 0;
  z-index: 2;
}
.log-reg .checkbox_wrapper input[type=checkbox] + label {
  background-image: url(../images/check-4.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 24px;
  width: 24px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border: 1px solid #F59E0B;
  border-radius: 5px;
}
.log-reg .checkbox_wrapper input[type=checkbox]:checked + label {
  background-image: none;
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
  display: inline-block;
  border: 1px solid #F59E0B;
  border-radius: 5px;
}
.log-reg .nice-select {
  background: transparent;
  border: none;
  padding-left: 0;
  width: 100%;
  height: initial;
  line-height: 0;
}
.log-reg .nice-select .list {
  width: 100%;
}
.log-reg .nice-select::after {
  width: 11px;
  height: 11px;
  top: 45%;
}
.log-reg .privacy a {
  color: #F59E0B;
}
.log-reg.register .btn-area .btn-theme {
  text-transform: capitalize;
}
.log-reg.register .country-code .nice-select {
  width: 100px;
}
.log-reg.register .country-code .nice-select::after {
  width: 11px;
  height: 11px;
  top: 35%;
  right: 20px;
}
.log-reg.register.reg-2 h3 {
  text-transform: uppercase;
  color: var(--body-color);
}
.log-reg.register.reg-2 .single-item {
  margin-bottom: 30px;
}
.log-reg.register.reg-2 .single-item:last-child {
  margin-bottom: 0;
}
.log-reg.register.reg-2 .single-item .icon-area {
  border: 1px solid #5466C7;
  box-sizing: border-box;
  border-radius: 40px;
  padding: 10px;
}
.log-reg.register.reg-2 .single-item p {
  color: var(--body-color);
  margin-left: 20px;
  width: 75%;
}
.log-reg.forgot-pws {
  padding-bottom: 0;
}
.log-reg.forgot-pws .icon-area {
  margin-bottom: 40px;
}
.log-reg.forgot-pws .form-box form {
  margin-top: 40px;
}
.log-reg.forgot-pws .form-box form .btn-theme {
  text-transform: capitalize;
}
.log-reg.forgot-pws.two .img-area img {
  max-width: 100%;
}

#draggableDiv {
  top: 50%;
  bottom: 0;
  z-index: 99999;
  cursor: move;
}
#draggableDiv .draggable {
  background-color: #5ac4ff;
}
#draggableDiv .draggable i {
  color: #F5FAFF;
}
#draggableDiv button {
  background-color: #F59E0B;
  color: #F5FAFF;
  transition: all 0.5s ease-in-out;
}
#draggableDiv button:hover {
  background-color: #F5FAFF;
  color: #F59E0B;
}

@media (min-width: 1400px) {
  .customers-section .customers-area .element.po-6 {
    right: 3%;
    top: 35%;
  }
  .customers-section .customers-area .element.po-4 {
    right: 31%;
    top: 7%;
  }
  .customers-section .customers-area .element.po-7 {
    right: calc(24% - 30px);
  }
  .customers-section .customers-area .element.po-2 {
    left: 32%;
    top: 7%;
  }
  .customers-section .customers-area .element.po-1 {
    left: 21%;
  }
  .customers-section .customers-area .element.po-3 {
    left: 4%;
    top: 30%;
  }
  .customers-section .customers-area .element.po-5 {
    right: 18%;
    top: 20%;
  }

}
@media (max-width: 1399px) {
  .app-download.inner-app-download .img-area img {
    max-width: 95%;
  }





  .banner-section.about-us .bottom-content .single-item::after {
    left: calc(100% - 20px);
  }


}
@media (max-width: 1199px) {
  h1, h1 > a {
    font-size: 47px;
    line-height: 68.4px;
  }
  h2, h2 > a {
    font-size: 43px;
    line-height: 51.6px;
  }

  .payment-solutions .single-item {
    padding: 45px 10px;
  }
  /*.app-download .left-area img {
    max-width: 130%;
  }*/
  .header-section .navbar .navbar-collapse .right-area .btn-theme {
    width: 120px;
  }

  .app-download.inner-app-download .img-area {
    left: 0;
  }
  .app-download.inner-app-download .img-area img {
    max-width: 82%;
  }



  .business-commercial .img-area {
    left: 0;
  }
  .business-commercial .img-area img {
    width: 100%;
  }

  .pricing-plan .price-box {
    padding: 20px 0;
  }



  .banner-section.about-us .bottom-content {
    margin-bottom: -40px;
  }
  .banner-section.about-us .bottom-content .single-item {
    justify-content: center;
    margin-bottom: 40px;
  }
  .banner-section.about-us .bottom-content .single-item::after {
    display: none;
  }
  .get-started-section.about-us .img-area img,
  .our-vision .img-area img {
    /*width: 40%;*/
  }
  .banner-section.inner-pages .top-area {
    padding-top: 30px;
  }
  .banner-section.inner-pages.about-us .banner-bottom-area {
    margin-top: -130px;
  }
  .banner-section.inner-pages.about-us .overlay {
    padding: 150px 0 50px;
    background-size: 100%, 280%;
  }
  .growing-team .section h3 {
    margin-bottom: 30px;
  }
  .open-positions .nav-tabs .nav-link {
    margin-left: 0;
    margin-right: 15px;
    margin-top: 30px;
  }
  .faqs-section.help-center-content .tab-content .body-content li a {
    padding-right: 10%;
  }
  .need-to-contact .btn-theme {
    margin-top: 40px;
  }
  .banner-section.privacy-policy .banner-content::after {
    background-size: 90%;
    background-position: bottom;
  }
  .banner-section.contact .single-item .bottom-area.offline h6 {
    width: 100%;
  }
  .banner-section.contact .overlay::after {
    background-size: 80%;
    background-position: bottom;
  }
  .banner-section.inner-pages .overlay {
    background-size: 100%, 250%;
  }
  .latest-articles .nav-tabs .nav-link {
    margin-left: 0;
    margin-right: 15px;
  }


  .latest-articles .nav-tabs .nav-link {
    margin-top: 20px;
  }
  .preloader {
    background-size: 20%;
  }
}
@media (max-width: 991px) {
  h1, h1 > a {
    font-size: 42px;
    line-height: 58.4px;
  }
  h2, h2 > a {
    font-size: 43px;
    line-height: 51.6px;
  }
  h3, h3 > a {
    font-size: 32px;
    line-height: 38.4px;
  }
  h4, h4 > a {
    font-size: 24px;
    line-height: 28px;
  }
  h5, h5 > a {
    font-size: 18px;
    line-height: 22px;
  }
  h6, h6 > a, table thead tr th, a, p, span, li {
    font-size: 16px;
    line-height: 22px;
  }
  .section-header {
    margin-top: -8px;
    margin-bottom: 40px;
  }
  .title {
    margin-bottom: 20px;
  }
  .xxlr {
    font-size: 20px;
    line-height: 28px;
  }
  .xlr {
    font-size: 18px;
    line-height: 25.5px;
  }
  .lgr {
    font-size: 16px;
    line-height: 22.4px;
  }
  .mdr {
    font-size: 14px;
    line-height: 19.6px;
  }
  .header-section {
    background-color: #2c2c2c;
  }
  .header-section .navbar-toggler {
    display: inline-block;
  }
  .header-section .navbar .navbar-brand {
    margin-top: -5px;
    width: 35%;
  }
  .header-section .navbar .navbar-brand img {
    /*max-width: initial;*/
  }
  .header-section .navbar .navbar-collapse .navbar-nav {
    /*height: 200px;*/
    margin: 20px 0;
    overflow-y: auto;
    margin-bottom: 10px;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show {
    display: inline-block;
    margin-left: 130px;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    display: none;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item {
    padding: 8px 0;
  }
  .header-section .nav-item.dropdown .dropdown-menu {
    position: initial;
  }
  .header-section .navbar .navbar-collapse .right-area .lang {
    display: none !important;
  }
  .header-section .navbar .navbar-collapse .right-area {
    margin-left: 0;
  }
  .header-section .navbar .navbar-collapse .right-area .btn-theme {
    width: 110px;
  }
  .banner-section {
    padding: 160px 0 110px;
  }

  /*.banner-section .right-illu img,*/
  .banner-section .right-illu .about-img {
    /*right: -22%;
    bottom: -30px;
    width: 50%;*/
  }
  .features-section .wrapper {
    margin-bottom: -27px;
  }
  .features-section .single-item {
    margin-bottom: 30px;
  }
  .features-section .single-item .icon {
    width: 100px;
    height: 100px;
  }
  .features-section .single-item .icon img {
    width: 50%;
  }
  .features-section .single-item h5 {
    margin: 25px 0 14px;
  }
  .customers-section .customers-area .element.po-1 {
    left: 8%;
  }
  .customers-section .customers-area .element.po-2 {
    left: 26%;
    top: 3%;
  }
  .customers-section .customers-area .element.po-7 {
    right: calc(13% - 30px);
  }
  .customers-section .customers-area .element.po-4 {
    right: 28%;
    top: 2%;
  }
  .customers-section .customers-area .element.po-6 {
    right: -7%;
    top: 30%;
  }
  .customers-section .customers-area .element.po-5 {
    right: 8%;
    top: 20%;
  }
  .customers-section .customers-area .element.po-3 {
    left: 3%;
    top: 30%;
  }


  .payment-solutions .section-header {
    width: 65%;
  }
  .payment-solutions .payment-carousel .slick-next {
    right: 0;
  }
  .payment-solutions .payment-carousel .slick-prev {
    right: 10%;
  }
  .payment-solutions .payment-carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
  .payment-solutions .payment-carousel .slick-arrow i {
    line-height: 3.8;
    font-size: 14px;
  }
  .how-works .single-item .icon .iconbg {
    width: 110px;
    height: 110px;
  }
  .how-works .single-item .icon .iconbg img {
    width: 50%;
  }
  .how-works .single-item .icon span {
    right: 25px;
    top: 0;
  }
  .how-works .left-area img {
    /*left: -10%;
    max-width: 120%;*/
  }
  /*.app-download .left-area img {
    max-width: 100%;
    left: 42%;
    position: absolute;
  }*/
  .footer-section .single-area {
    margin-bottom: 30px;
  }
  .footer-section .single-area h5 {
    margin-bottom: 20px;
  }
  .footer-section .overlay .wrapper {
    margin: -6px 0 -28px;
  }
  .app-download.inner-app-download .img-area {
    display: none;
  }
  .security-section .img-area img {
    display: none;
  }
  .footer-section.inner .overlay .footer-top .right-side {
    margin-top: 40px;
  }
  .footer-section.inner .overlay .footer-top .right-side .subscribe {
    margin-top: 20px;
  }
  .footer-section.inner .overlay {
    background-size: 100% 8%;
  }
  .faqs-section .right-area {
    text-align: center;
  }
  .faqs-section .right-area img {
    width: 40%;
  }
  .buy-sell .left-img img {
    display: none;
  }
  .faqs-section .overlay .wrapper {
    margin-top: -20px;
  }
  .business-commercial .img-area {
    text-align: center;
    margin-bottom: 30px;
  }
  .business-commercial .img-area img {
    width: 60%;
  }

  .pricing-section .payment-methods {
    margin-bottom: 30px;
  }
  .start-earning .main-content .cus-order {
    order: 1;
  }
  .start-earning .main-content .img-area img {
    width: 60%;
  }
  .banner-section.inner-pages .overlay {
    padding: 120px 0 20px;
  }
    .banner-section.inner-pages.contact .overlay {
    padding: 120px 0 140px;
  }
  .banner-section.inner-pages .breadcrumb-item::before {
    background-size: 80%;
  }
  .banner-section.team-details .banner-bottom-area .text-area {
    margin-top: 40px;
  }
  .banner-section.open-positions .banner-bottom-area .bottom-area .single ul li img {
    width: 20px;
    margin-right: 10px;
  }
  .apply-now .main-content {
    padding: 40px 30px;
  }
  .faqs-section.help-center .accordion {
    padding-top: 20px;
  }
  .banner-section.privacy-policy .banner-content::after {
    display: none;
  }
  .privacy-content .top-wrapper p {
    margin-bottom: 20px;
  }
  .privacy-content .top-wrapper h4 {
    margin-bottom: 25px;
  }
  .privacy-content .safe-data {
    margin: 40px 0;
  }
  .banner-section.contact .overlay::after {
    display: none;
  }
  .banner-section.blog .top-area a {
    margin-top: 30px;
  }
  .banner-section.blog .top-area .right-illu {
    width: 40%;
  }
  .latest-articles .pagination {
    margin-top: 40px;
  }
  /*.latest-articles {
    margin-top: 23px;
  }*/
  .latest-articles .sidebar-area {
    margin-top: 60px;
  }
  .latest-articles .section-header {
    margin-bottom: 30px;
  }
  .latest-articles.latest .sidebar-area {
    margin-bottom: 0;
  }
  .latest-articles.latest .sidebar-area {
    margin-top: 20px;
  }
  .latest-articles.blog-single .sub-heading {
    padding-top: 0;
  }
  .latest-articles.blog-single .main-content .quotation {
    padding-left: 30px;
  }
  .latest-articles.latest .sidebar-area .single-side .top-icon img {
    width: 20%;
  }
  .banner-section.blog-single-2 .overlay .main-content {
    padding-bottom: 40px;
  }
  .log-reg .overlay .col-md-5 {
    display: none !important;
  }
  .log-reg.register.reg-2 .pt-120 {
    padding-top: 0;
  }
  .log-reg.register.reg-2 .left-area {
    margin-bottom: 40px;
  }
  /*.our-mission .img-area img {
    max-width: 100%;
  }*/
  .banner-section .illu-item {
    display: none;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.mega-menu {
    width: 0;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.mega-menu .dropdown {
    -moz-column-count: 1;
         column-count: 1;
  }
  .banner-section.inner-pages.reviews .overlay,
  .banner-section.inner-pages.blog-single-2 .overlay {
    padding-bottom: 0;
  }
  .footer-section.inner .overlay .wrapper::before {
    bottom: 27px;
  }
  .preloader {
    background-size: 20%;
  }
  .testimonials-careers .img-area {
    text-align: center;
  }
  .testimonials-careers .section {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  /*.banner-section .right-illu img,*/
  .banner-section .right-illu .about-img {
    /*display: none;*/
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
  }
  .banner-section .main-content .input-field {
    width: 90%;
  }
  .banner-section .main-content .input-field .btn-theme {
    width: 180px;
    font-size: 14px;
    line-height: 18px;
  }
  .banner-section {
    padding: 100px 0 70px;
    background-size: 225% 106%;
  }
  .customers-section .testimonials-area .total-item .bottom-item .quote {
    left: 5%;
  }
  .customers-section .testimonials-area .total-item .bottom-item {
    padding: 0 18px;
  }
  .customers-section::before {
    height: 125%;
  }
  .customers-section .testimonials-area .total-item .profile img {
    width: 100px;
    height: 100px;
    border: 5px solid 0.5732C6;
  }
  .customers-section .customers-area .element .image-area img {
    width: 40px;
    height: 40px;
  }
  .customers-section .testimonials-area .total-item .wrapper {
    margin-top: -45px;
  }
  .customers-section .testimonials-area .section-header,
  .customers-section .testimonials-area .section-header .title {
    margin-bottom: 0;
  }
  .whatinit-section {
    background-size: 190% 30%;
  }
  .customers-section .customers-area .element .image-area p::before {
    top: 28px;
    left: 45px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
  .customers-section .customers-area .element .image-area p {
    top: -20px;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 15px;
  }
  .about-section .left-area img,
  .how-works .left-area img,
  .app-download .left-area img,
  .about-section .left-area .about-img,
  .how-works .left-area .about-img,
  .app-download .left-area .about-img {
    /*display: none;*/
  }
  .faqs-section .overlay .right {
    margin-bottom: 30px;
  }
  .footer-section .main-content .cus-order {
    order: 1;
  }
  .footer-section .main-content .right-area {
    margin-bottom: 20px;
  }
  .how-works.inner-how-works .single-item.second::before,
  .how-works.inner-how-works .single-item.second::after {
    display: none;
  }
  .how-works.inner-how-works::before {
    top: 75%;
  }
  .how-works.inner-how-works .magnific-area .bg-area::before {
    height: 90%;
    width: 73%;
  }
  .call-action{
    width: 90%;
  }
  .get-started-section.about-us .img-area img,
    .our-vision .img-area img {
    /*display: none;*/
  }
  .banner-section.inner-pages .breadcrumb-item::before {
    background-size: 70%;
  }
  .banner-section.inner-pages .overlay {
    background-size: 100%, 200%;
  }
  .banner-section.team-details .banner-bottom-area .text-area .name-area {
    display: grid !important;
  }
  .banner-section.team-details .banner-bottom-area .text-area .name {
    margin-bottom: 25px;
  }
  .banner-section.team-details .banner-bottom-area .text-area .social {
    margin-bottom: 30px;
  }
  .banner-section.team-details .banner-bottom-area .text-area .social a {
    margin: 0;
    margin-right: 25px;
  }
  .banner-section.team-details .banner-bottom-area .bottom-content .single-text h4 {
    margin-bottom: 15px;
  }
  .banner-section.team-details .banner-bottom-area .bottom-content .single-text {
    margin-bottom: 40px;
  }
  .banner-section.team-details .banner-bottom-area .bottom-content {
    margin-bottom: -43px;
  }
  .benefit-section .top-wrapper {
    padding-top: 30px;
  }
  .browse-by-category .single-item .icon {
    width: 110px;
    height: 110px;
  }
  .browse-by-category .single-item .icon img {
    width: 60%;
  }
  .faqs-section .overlay .accordion .accordion-item h6 .accordion-button {
    padding: 15px 35px 15px 30px;
  }
  .browse-by-category .single-item {
    padding: 40px 20px;
  }
  .banner-section.help-center.details .top-area .icon {
    width: 150px;
    height: 150px;
  }
  .banner-section.help-center.details .top-area .icon img, .banner-section.help-center.details .top-area .icon svg {
    width: 90px;
  }
  .faqs-section.help-center-content .tab-content {
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .need-to-contact .btn-theme {
    margin-top: 35px;
  }
  .banner-section.help-center .banner-bottom-area .top-area {
    padding: 40px 15px;
  }
  .banner-section.privacy-policy .banner-bottom-area .top-area {
    padding: 40px 0;
  }
  .cookies img {
    width: 60%;
  }
  .banner-section.countries .top-area {
    padding: 40px 15px;
  }
  .banner-section.fees .select-area {
    display: grid;
    width: 80%;
    margin-top: 30px;
  }
  .banner-section.fees .select-area .nice-select {
    margin-bottom: 30px;
  }
  .banner-section.fees .select-area .nice-select:last-child {
    margin-bottom: 0;
  }
  .banner-section.fees .top-area {
    padding-bottom: 30px;
  }
  .banner-section.contact .single-item {
    padding-top: 0;
  }
  .contact-form .form-area .col-6 {
    width: 100%;
  }
  .contact-form .form-area .single-input textarea {
    height: 140px;
  }
  .banner-section.contact .single-item .icon-area {
    width: 100px;
    height: 100px;
  }
  .banner-section.contact .single-item .icon-area img {
    min-width: 160%;
  }
  .latest-articles .sidebar-area .single-side .top-icon img {
    width: 25%;
  }
  .banner-section.blog-single .banner-bottom-area {
    margin-top: -170px;
  }
  .banner-section.blog-single .overlay {
    padding: 150px 0 100px;
  }
  .latest-articles.blog-single.second .section-header .title-bottom .profile img {
    margin-right: 5px;
  }
  .latest-articles.blog-single-2 .sub-heading span {
    margin: 0;
  }
  .latest-articles.blog-single .main-content .bottom-content {
    display: grid !important;
  }
  .latest-articles.blog-single .main-content .bottom-content .right-area {
    margin-top: 30px;
  }
  .latest-articles.blog-single-2 .main-content .comment-area .comment-single .comnt-text .comnt-info .lang {
    display: none;
  }
  .latest-articles.blog-single-2.second .main-content {
    padding: 40px 15px 5px;
  }
  .latest-articles.blog-single-2 .main-content .comment-area {
    padding-top: 40px;
  }
  .latest-articles.blog-single .main-content .comment-area .comment-single {
    padding: 15px;
  }
  .latest-articles.blog-single-2 .sub-heading {
    margin: 30px 0;
  }
  .latest-articles.blog-single-2.second .section-header .title-bottom {
    display: grid !important;
    margin-top: 30px;
  }
  .log-reg.register.reg-2 .single-item {
    margin-bottom: 20px;
  }
  .log-reg.forgot-pws .icon-area {
    margin-bottom: 30px;
  }
  .log-reg.forgot-pws .icon-area img {
    width: 40%;
  }
  .comunity-section .comunity-wrapper {
    min-height: 350px;
  }
  .apply-now .main-content h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  h1, h1 > a {
    font-size: 40px;
    line-height: 46px;
  }
  h2, h2 > a {
    font-size: 30px;
    line-height: 36px;
  }
  h3, h3 > a {
    font-size: 24px;
    line-height: 28px;
  }
  h4, h4 > a {
    font-size: 22px;
    line-height: 26px;
  }
  h5, h5 > a {
    font-size: 16px;
    line-height: 20px;
  }
  h6, h6 > a {
    font-size: 15px;
    line-height: 19px;
  }
  a, p, span, li, .btn-theme, thead tr th, tbody tr th, tbody tr td, .lgr, input, label, textarea {
    font-size: 16px;
    line-height: 24px;
  }
  .section-header {
    margin-top: -5px;
    margin-bottom: 30px;
  }
  .title {
    margin-bottom: 15px;
  }
  .xxlr {
    font-size: 18px;
    line-height: 25.5px;
  }
  .xlr {
    font-size: 16px;
    line-height: 22.4px;
  }
  .banner-section .main-content .bottom-banner .left {
    margin-left: 15px;
  }
  .customers-section .testimonials-area .section-header .title {
    width: 60%;
    margin: 0 auto;
  }

  .customers-section::before {
    height: 85%;
  }
  .customers-section .customers-area .element.po-6 {
    right: 3%;
    top: 40%;
  }

  .payment-solutions .single-item .icon {
    width: 109px;
    height: 110px;
  }
  .payment-solutions .single-item .icon img {
    width: 60%;
  }
  .payment-solutions .section-header {
    width: 100%;
  }
  .payment-solutions .payment-carousel .slick-arrow {
    display: none !important;
  }
  .how-works.inner-how-works::before {
    top: 80%;
  }
  .whatinit-section .bottom-content {
    padding-top: 30px;
  }
  .buy-sell {
    margin-top: 22px;
  }
  .banner-section .main-content p {
    width: 100%;
  }
  .banner-section.inner-pages .breadcrumb-item::before {
    background-size: 65%;
  }

  .banner-section.inner-pages .top-area {
    margin-bottom: 0;
  }
  .banner-section.open-positions .banner-bottom-area .top-area p {
    margin: 20px 0 30px;
  }
  .banner-section.open-positions .banner-bottom-area .top-area {
    padding: 40px;
  }
  .banner-section.help-center .banner-bottom-area .top-area {
    padding: 40px 20px;
  }
  .latest-articles .pagination {
    margin: 0;
    margin-top: 30px;
  }
  .latest-articles .pagination a {
    width: 25px;
    height: 25px;
    margin: 0 10px;
  }
  .latest-articles .pagination .page-dots {
    margin-right: 5px;
    font-size: 25px;
  }
  .latest-articles .tab-content .tab-pane .single-area .bottom-item {
    padding: 25px 15px;
    margin: 0 10px;
  }
  .banner-section.blog .top-area .right-illu {
    display: none;
  }
  .banner-section.blog .top-area {
    padding-bottom: 30px;
  }
  .latest-articles .tab-content .tab-pane .single-area .bottom-item {
    margin-top: -60px;
  }
  .latest-articles.blog-single-2.second .main-content {
    margin-top: 0;
  }
  .log-reg.register.reg-2 .single-item p {
    margin-left: 15px;
  }
  .faqs-section.main .nav-tabs {
    margin-bottom: -15px;
  }
  .faqs-section.main .nav-tabs .nav-link {
    margin-left: 0;
    margin: 0 10px;
    margin-bottom: 15px;
  }
  .preloader {
    background-size: 20%;
  }
}
@media (max-width: 480px) {
  .banner-section {
    background-size: 320% 108%;
  }
  .banner-section .main-content .input-field {
    width: 100%;
    position: relative;
  }
  .banner-section .main-content .input-field input {
    padding: 10px 15px;
    font-size: 16px;
  }
  .banner-section .main-content .input-field .btn-theme {
    width: 140px;
    position: absolute;
    bottom: -60px;
    right: 0;
  }
  .banner-section .main-content .bottom-banner {
    margin-top: 45px;
  }
  /*.customers-section {
    margin-top: -28%;
  }*/
  .customers-section .overlay{
    margin-bottom: 0px;
  }
  .customers-section .testimonials-area .total-item .bottom-item .review i {
    font-size: 20px;
  }

  .customers-section .customers-area .circle img {
    opacity: 0;
  }
  .customers-section .customers-area .element {
    display: none;
  }
  .customers-section::before {
    height: 200%;
  }
  .how-works .single-item .icon .iconbg {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .how-works .single-item .icon .iconbg img {
    width: 48%;
  }
  .how-works .single-item .icon span {
    width: 30px;
    height: 30px;
    right: 18px;
  }
  .app-download .right-area .section-header {
    width: 87%;
  }
  .app-download .right-area .phone-number {
    position: relative;
  }
  .app-download .right-area .phone-number button {
    position: absolute;
    width: 140px;
    bottom: -60px;
    right: 0;
  }
  .app-download .right-area .phone-number {
    margin-bottom: 110px;
  }
  .app-download .right-area .phone-number input {
    font-size: 14px;
    width: 100%;
  }
  .app-download .right-area .app-market {
    display: flex;
    justify-content: space-between;
  }
  .app-download .right-area .app-market a {
    margin: 0;
  }
  .faqs-section .overlay .accordion .accordion-item h6 .accordion-button {
    padding: 15px 35px 15px 15px;
  }
  .faqs-section .overlay .accordion .accordion-item .accordion-body {
    padding: 20px 15px;
  }
  .footer-section .single-area form .subscribe input {
    font-size: 16px;
  }
  .footer-section .footer-bottom .main-content .left-area p {
    text-align: center;
  }
  .customers-section .testimonials-area .section-header .title {
    width: 100%;
  }
  .how-works.inner-how-works .magnific-area .bg-area::before {
    height: 100%;
    width: 83%;
  }
  .how-works.inner-how-works .magnific-area .bg-area::before {
    height: 145%;
    width: 130%;
  }
  .how-works.inner-how-works .magnific-area .bg-area {
    overflow: hidden;
  }
  .app-download .right-area .feature li .icon,
  .security-section .left-area ul li .icon {
    min-width: 24px;
  }
  .footer-section.inner .overlay {
    background-image: unset;
  }
  .buy-sell .single-item .icon {
    max-width: 70px;
    max-height: 70px;
    margin-right: 20px;
  }
  .buy-sell .single-item .icon img {
    width: 50%;
  }

  .business-commercial .img-area img {
    width: 85%;
  }

  .pricing-section .payment-methods {
    padding: 5px;
  }
  .pricing-section .payment-methods .btn-theme {
    margin-top: 20px;
  }
  .pricing-section .personal-approach {
    padding: 30px 0;
  }

  .footer-section.inner .overlay .footer-top .right-side .subscribe input {
    padding: 10px;
  }
  .start-earning .main-content .img-area img {
    display: none;
  }



  .banner-section.team-details .banner-bottom-area .top-area {
    padding: 0;
    padding-bottom: 30px;
  }
  .open-positions .tab-content .single-item .bottom-area {
    display: grid !important;
  }
  .open-positions .tab-content .single-item .bottom-area .right-bottom a {
    margin-top: 30px;
  }
  .benefit-section .top-wrapper .single-item {
    margin-bottom: 30px;
  }
  .benefit-section .top-wrapper .single-item img {
    width: 30%;
  }
  .benefit-section .top-wrapper .single-item h6 {
    margin: 15px 0 15px;
  }
  .banner-section.open-positions .banner-bottom-area .top-area {
    padding: 30px 10px;
  }
  .banner-section.open-positions .banner-bottom-area .bottom-area .single h3 {
    margin-bottom: 20px;
  }
  .apply-now .main-content {
    padding: 40px 15px;
  }
  .banner-section.help-center .banner-bottom-area .top-area form .search input {
    padding: 0 5px;
  }
  .banner-section.help-center .banner-bottom-area .top-area {
    padding: 40px 15px;
  }
  .faqs-section .overlay .accordion .accordion-item h6 .accordion-button {
    padding: 15px 50px 15px 15px;
  }
  .faqs-section.help-center-content .tab-content .body-content li a {
    padding-right: 16%;
  }
  .banner-section.help-center.details .top-area .icon img,
  .banner-section.help-center.details .top-area .icon svg {
    width: 70px;
  }
  .banner-section.help-center.details .top-area .icon {
    width: 120px;
    height: 120px;
  }
  .banner-section.help-center.details .banner-bottom-area {
    margin-top: -220px;
  }
  .banner-section.help-center.details .overlay .banner-content {
    margin-bottom: 0;
  }

  .banner-section.help-center.info .banner-bottom-area .top-area .profile-area .icon-area img {
    width: 100px;
  }
  .banner-section.help-center.info .banner-bottom-area .top-area .profile-area .text-area {
    margin-left: 20px;
  }
  .banner-section.privacy-policy .banner-bottom-area .top-area .icon-area img {
    width: 60%;
  }

  .banner-section.countries .top-area .where-to {
    width: 100%;
  }
  .banner-section.countries .top-area .where-to input {
    padding: 10px;
  }
  .banner-section.countries .top-area .where-to {
    margin-top: 25px;
  }


  .contact-form .form-area {
    padding: 40px 15px 30px;
  }


  .latest-articles .sidebar-area .single-side {
    padding: 15px;
  }


  .latest-articles.latest .single-item .img-area img {
    display: none;
  }
  .latest-articles.latest .single-item .text-area {
    padding-right: 15px;
    padding-left: 15px;
  }
  .latest-articles.blog-single .main-content .leave-comment .col-6 {
    width: 100%;
  }
  .latest-articles.blog-single .main-content .comment-area .comment-single.second {
    margin-left: 5%;
  }
  .latest-articles.blog-single .main-content .comment-area .comment-single {
    padding: 15px;
  }
  .latest-articles.blog-single .main-content .comment-area .comment-single .avatar {
    margin-right: 15px;
  }
  .latest-articles.blog-single .main-content .comment-area {
    padding-top: 40px;
  }
  /*.latest-articles.blog-single .main-content {
    padding-top: 40px;
    margin-top: 40px;
  }*/
  .banner-section.blog-single .banner-bottom-area {
    margin-top: -70px;
  }
  .banner-section.blog-single .overlay {
    padding: 150px 0 10px;
  }
  .latest-articles.blog-single .sub-heading {
    margin: 25px 0;
  }
  .latest-articles.blog-single .main-content .quotation {
    padding-left: 20px;
  }
  .latest-articles.blog-single .main-content .quotation p {
    width: 100%;
    padding: 15px 0;
  }
  .latest-articles.blog-single .main-content .leave-comment {
    padding: 20px 15px;
  }
  .latest-articles.blog-single .main-content .comment-area .comment-single .comnt-text .comnt-info .lang {
    display: none;
  }
  .log-reg .remember-forgot {
    display: grid !important;
  }
  .log-reg .forget-pw {
    margin-top: 20px;
  }
  .log-reg .form-box {
    padding: 30px 15px;
  }
  .comunity-section .comunity-wrapper {
    min-height: 250px;
  }
  .comunity-section::before {
    height: 65%;
  }

  .app-download .right-area .phone-number {
    margin-bottom: 60px;
    display: grid !important;
  }
  .app-download .right-area .phone-number form {
    display: grid !important;
  }
  .app-download .right-area .phone-number form input {
    padding: 10px 5px;
    margin: 0;
    margin-left: 30px;
  }
  .app-download .right-area .phone-number form .btn-area {
    margin-top: 15px;
  }
  .app-download .right-area .app-market {
    justify-content: left;
  }
  .app-download .right-area .app-market a {
    margin-right: 15px;
  }
  .testimonials-careers {
    margin-top: 30px;
  }
  .app-download .right-area .phone-number .nice-select .current::before {
    background-size: 80%;
  }
}
@media (max-width: 375px) {

  .footer-section.inner .overlay .footer-top .app-market::after {
    display: none;
  }
}

/* -----------------About-App-Section-Css-Start------------------ */

/* about us section wraper */
.about-app-section .about-img {
    display: flex;
    align-items: center;
    position: relative;
}

/* about us section images*/
.about-app-section .about-img img {
    max-width: 100%;
}

.about-app-section .about-img::before {
    content: "";
    position: absolute;
    left: 38%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: 100%;
    z-index: -1;
}

.about-app-section .about-img .screen-img {
      margin-left: -180px;
    margin-top: -110px;
  /*margin-left: -135px;
    margin-top: 110px;
    position: absolute;
    right: 0px;
    margin-right: 20%;
    top: 20%;*/
}
.about-app-section .about-img .frame-img{
    margin-left: -220px;
}
.about-app-section .about-img .check-img {
    /*margin-left: -135px;*/
    margin-top: 180px;
}

/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}

.about-app-section .about-img .screen-img img {
    animation-delay: 3s;
}
.about-app-section .about-img .check-img img {
    animation-delay: 6s;
}


/* optimized-features section wraper */
.optimized-features .about-img {
    display: flex;
    align-items: center;
    position: relative;
}

/* optimized-features section images*/
.optimized-features .about-img img {
    max-width: 100%;
}

.optimized-features .about-img::before {
    content: "";
    position: absolute;
    left: 38%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: 100%;
    z-index: -1;
}

.optimized-features .about-img .screen-img {
      margin-left: -150px;
    margin-top: 110px;
  /*margin-left: -135px;
    margin-top: 110px;
    position: absolute;
    right: 0px;
    margin-right: 20%;
    top: 20%;*/
}
.optimized-features .about-img .frame-img{
    margin-left: -150px;
}
.optimized-features .about-img .check-img {
    /*margin-left: -135px;*/
    margin-top: -40px;
}

/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}

.optimized-features .about-img .screen-img img {
    animation-delay: 3s;
}
.optimized-features .about-img .check-img img {
    animation-delay: 6s;
}


/* banner-app-section section wraper */
.banner-app-section .about-img {
    display: flex;
    align-items: center;
    position: relative;
}

/* banner-app-section section images*/
.banner-app-section .about-img img {
    max-width: 100%;
    z-index: 0;
}

.banner-app-section .about-img::before {
    content: "";
    position: absolute;
    left: 38%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: 100%;
    z-index: -1;
}

.banner-app-section .about-img .screen-img {
      margin-left: -290px;
    margin-top: -110px;
  /*margin-left: -135px;
    margin-top: 110px;
    position: absolute;
    right: 0px;
    margin-right: 20%;
    top: 20%;*/
}
.banner-app-section .about-img .frame-img{
    margin-left: -350px;
}
.banner-app-section .about-img .check-img {
    margin-left: 30px;
    margin-top: 175px;
    z-index: 1;
}

/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}

.banner-app-section .about-img .screen-img img {
    animation-delay: 3s;
    position: relative;
    
}
.banner-app-section .about-img .check-img img {
    animation-delay: 6s;
    position: relative;
    
}

@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}