.main-ani-box .ani-box {
  z-index: 0;
  position: absolute;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #007bff;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #141414;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
.logo a h4 {
    margin-bottom: 0;
    line-height: 1.9;
    color: white;
    font-weight: 500;
}
#header.header-scrolled {
  height: 60px;
  padding: 10px 0;
  background-color: rgb(0 0 0 / 92%);
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }
}

#header .logo{
    float:left;
}
@media (min-width:0px) and (max-width:767px){
    #header .logo{
        text-align:center;
        float:none;
    }
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    width: 150px;
}


.dropdown-menu {
  padding: 0.7rem 0rem;
  padding-bottom: 0 !important;
  font-size: 0.875rem;
  line-height: 22px;
  color: #5c5776;
  border: none;
  box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
  border-radius: 3px;
}

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(-10px, 40px, 0px) !important;
  transition: all 0.3s ease-in;
}
.main-nav .after-log #dropdownUser {
  padding: 0;
}
.main-nav .after-log ul .dropdown-item {
  color: #141414;
}
.dropdown > .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  transform: translate3d(-10px, 50px, 0px) !important;
}
@media screen and (max-width: 600px) {
  .dropdown-menu {
    transform: translate3d(20px, 40px, 0px) !important;
    width: 85%;
  }
  .dropdown > .dropdown-menu.show {
    transform: translate3d(20px, 60px, 0px) !important;
  }
  .mobile-nav .after-log ul .dropdown-item {
    color: #141414;
  }
}
/*--------------------------------------------------------------
# Three box Section
--------------------------------------------------------------*/


.three-box {
    margin-top: -100px;
}
.three-box .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 40px 10px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgb(68 88 144 / 10%);
    transition: all 0.3s ease-in-out;
}
/*.three-box .icon-box:hover {
    transform: translateY(-5px);
}*/
.three-box .icon {
    position: absolute;
    left: -8px;
    top: calc(50% - 30px);
}
.three-box .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}
.three-box .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
.three-box .icon-box:hover .title a {
    color: #49b5e7;
}
.three-box .title a {
    color: #111;
}
.three-box .description {
    font-size: 14px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color: #007bff;
  text-decoration: none;
}
.main-nav .getstarted:hover {
    background: #007bff;
    color: #ffffff;
    transition: .3s ease-in-out;
}
.main-nav .getstarted {
    background: #ffffff;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #007bff;
    transition: .3s ease-in-out;
}
.main-nav .getstarted.mrg-lft {
    margin-left: 5px;
}
.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color: #007bff;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
.main-nav .signup-drop.show {
    padding: 5px 0;
}
.main-nav .signup-drop.show li a {
    color: #1b4fc3;
    padding: 5px 10px;
}
/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgb(6 12 18 / 80%);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}
.mobile-nav li.active a {
  color: #fda500;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  display: none;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #ffffff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.jpg") center bottom no-repeat;
  background-size: cover;
  padding: 120px 0 120px 0;
}
#intro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(right, #1445b38f, #1414148f) !important;
  background-image: -o-linear-gradient(to right, #1445b38f, #1414148f) !important;
  background-image: linear-gradient(to right, #1445b38f, #1414148f) !important;
}

@media (max-width: 991px) {
  #intro {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

/* #intro .intro-img {
  width: 50%;
  float: right;
} */

/* @media (max-width: 991px) {
  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
} */

/* #intro .intro-info {
  width: 50%;
  float: left;
} */

/* @media (max-width: 991px) {
  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
} */

/* @media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
} */

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}
/* .animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(-225deg, #ffffff 0%,  rgb(253 165 0) 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
} */
#intro .intro-info h2 span {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
  }
  .intro-info div {
      text-align: center;
  }
}

#intro .intro-info .btn-get-started, #intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #fda500;
  border: 2px solid #fda500;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #1d1d1d;
  background: #1d1d1d;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

/*--------------------------------------------------------------
# Intro Mobile Form Section
--------------------------------------------------------------*/

/* .main-mob-frme-img {
  position: relative;
  height: 90vh;
}
.main-mob-frme-img .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.tab-frme-img-box {
  border-top: 60px solid #000;
  border-bottom: 80px solid #000;
  border-left: 20px solid #000;
  border-right: 20px solid #000;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 5px 10px 5px #00000066;
  position: relative;
  height: 100%;
  width: 100%;
}
.tab-frme-img-box #arw-cont {
  position: absolute;
  right: -130px;
  filter: brightness(0.1);
}
.tab-frme-img-box .camera-o {
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  text-align: center;
  width: 20px;
  height: 20px;
  background: #f1f1f1;
  border-radius: 50%;
  border: 2px solid #606060;
  z-index: 999;
  margin: 0 auto;
}
.tab-frme-img-box .menu-btn
{
  position: absolute;
  bottom: -57px;
  left: 0;
  right: 0;
  text-align: center;
  width: 80px;
  height: 35px;
  background: #f1f1f1;
  border-radius: 50px;
  border: 2px solid #606060;
  z-index: 999;
  margin: 0 auto;
}
.main-tab-html-box {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  background: #1D1D1D;
  height: 100%;
}
.main-odc-cate-box {
  position: relative;
  height: 90%;
  overflow-y: scroll;
  margin-top: 30px;
  padding: 0 15px 60px;
  padding-top: 10px;
}
.main-odc-cate-box::-webkit-scrollbar {
  width: 5px;
  border-radius: 20px;
}
.main-odc-cate-box::-webkit-scrollbar-thumb {
  background: #fda500;
  background-image: -webkit-linear-gradient(left,#fda500,#fda500);
  outline: 1px solid #fda500;
  border-radius: 20px;
}
.main-odc-cate-box::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
  border-radius: 20px;
}
.req-title-frm {
  text-align: center;
  padding: 15px 10px;
  border-bottom: 1px solid #fda500;
}
.req-title-frm h3 {
  margin-bottom: 0;
  color: white;
}
.req-frm-fld label {
  color: white;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
}
.req-frm-fld input, .req-frm-fld select, .req-frm-fld textarea {
  background: #000;
  border: 0;
  border-radius: 0;
  color: #fda500;
}
.req-frm-fld input, .req-frm-fld select {
  height: 50px;
}
.req-frm-fld textarea {
padding: 15px 15px;
}
.frm-fld-msg small {
  color: #fff;
}
.frm-fld-title h4 {
  color: #fff;
}
.req-frm-fld small {
    color: #fff;
}
.req-frm-fld-btn {
  text-align: center;
}
.btn-send {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background: #fda500;
  border: 2px solid #fda500;
  color: #fff;
}
.btn-send:hover {
  border-color: #141313;
    background: #141313;
    color: #fff;
} */

/* hero-2nd frm */
.hero-frm .form-tab .currency-form::-webkit-scrollbar {
  width: 5px;
  border-radius: 20px;
}
.hero-frm .form-tab .currency-form::-webkit-scrollbar-thumb {
  background: #007bff;
  background-image: -webkit-linear-gradient(left,#007bff,#007bff);
  outline: 1px solid #007bff0;
  border-radius: 20px;
}
.hero-frm .form-tab .currency-form::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
  border-radius: 20px;
}
.frm-fld-title h4 {
  color: #141414;
  font-size: 20px;
  padding-left: 15px;
}
.btn-send {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}
.btn-send:hover {
  border-color: #141313;
    background: #141313;
    color: #fff;
}
:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}
.form-control:focus {
  border-color: #fda500;
  box-shadow: 0 0 0 0.1px rgb(253 165 0 / 69%);
}
.hero-frm {
  position: relative;
  /*animation: up-down 2s ease-in-out infinite alternate-reverse both;*/
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-frm .form-tab {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 00px;
  /* overflow-y: scroll;
  height: 75vh; */
}
.hero-frm .form-tab .nav-tabs {
  border-bottom: none;
  /*position: fixed;*/
    top: 0;
    z-index: 99;
    width: 100%;
}
.hero-frm .form-tab .nav-tabs li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.hero-frm .form-tab .nav-tabs a.active {
  background-color: #fff;
  border-color: transparent;
  color: #007bff;
}

.hero-frm .form-tab .nav-tabs a {
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #dadada;
  background-color: #f0f0f0;
  color: #2f2f35;
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 10px;
  text-transform: capitalize;
  webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.hero-frm .form-tab .currency-form {
  padding-top: 25px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 00px;
  overflow-y: scroll;
  height: 65vh;
}
.hero-frm .currency-form {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 40px 10px rgb(0 0 0 / 10%);
  /* cursor: pointer; */
  padding: 40px 22px;
  position: relative;
  z-index: 1;
}
.hero-frm .form-tab .form-field {
  border: 1px solid #dadada;
  border-radius: 5px;
}

.hero-frm .form-field {
  position: relative;
  margin-bottom: 20px;
}
.hero-frm .form-field input, .hero-frm .form-field select {
  height: 50px;
  border-color: #fda50000;
}
.hero-frm .form-field textarea
{
  border-color: #fda50000;
}
.hero-frm .form-tab .form-field label {
  background-color: #f0f0f0;
  border-bottom: 1px solid #dadada;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #141414;
  margin-bottom: 0;
  padding: 7px 15px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.hero-frm .form-tab .form-field .join-field {
  border: none;
}
.hero-frm .form-field .join-field {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #dadada;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero-frm .form-field .join-field input, .form-field .join-field select {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  max-width: 70%;
}
.hero-frm .form-field input {
  /* border: none; */
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 10px 15px;
  width: 100%;
}
.form-field small {
  padding-left: 15px;
  display: block;
}
.hero-frm .currency-form .form-field .curr-select {
  border: none;
  border-left: 1px solid #dadada;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-radius: 0;
  padding: 0;
  padding-left: 20px;
}
.hero-frm .form-field .join-field .curr-select {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  max-width: 30%;
}
.hero-frm .form-field .curr-select {
  border: 1px solid #dadada;
  border-radius: 5px;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  position: relative;
  padding: 10px 15px;
}
.hero-frm .form-field .curr-select span, .form-field .curr-select a {
  color: #2f2f35;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
}
.hero-frm .form-field .curr-select img {
  display: inline-block;
  max-width: 25px;
  height: 25px;
  margin-right: 10px;
  vertical-align: top;
}
.hero-frm .form-field .curr-select ul {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
  display: none;
  padding: 10px 20px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  list-style: none;
}
.hero-frm .form-field .curr-select ul li:first-child {
  margin-bottom: 10px;
}
.hero-frm .form-field .curr-select span, .form-field .curr-select a {
  color: #2f2f35;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
}
.hero-frm .currency-text {
  /* -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  position: relative;
  padding-left: 50px;
  min-height: 51px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.hero-frm .currency-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/ellips2.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.hero-frm .currency-text span {
  font-size: 14px;
}
.hero-frm .currency-text span:first-child {
  margin-right: 20px;
}
.hero-frm .currency-text span:last-child {
  margin-left: 20px;
}
.hero-frm .currency-text strong {
  font-weight: 600;
}
.hero-frm .currency-text strong img {
  width: 30px;
  margin-right: 5px;
}
.hero-frm .currency-text span:last-child img {
  width: 30px;
}
.secnd-req-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.secnd-req-flex .btn-send {
  flex: 1 auto;
  border-radius: 4px;
}
.secnd-req-flex .btn-send:first-child {
  margin-right: 2px;
}
.secnd-req-flex .btn-send:last-child {
  margin-left: 2px;
  background: #141414;
  border: 2px solid #141414;
}
.secnd-req-flex .btn-send:hover:last-child {
  background: #007bff;
  border: 2px solid #007bff;
}
.hero-frm .currency-text .ex-sapn2 span {
  margin: 0;
}
/*--------------------------------------------------------------
# New Services Sections
--------------------------------------------------------------*/
#services {
  padding: 60px 0 40px 0;
  /* box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1); */
  background-image: url(../img/shape-3.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.tagline.bar {
  padding-left: 70px;
}
.tagline {
  color: #017cff;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.tagline.bar:after {
  background-color: #017cff;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 2px;
  width: 50px;
}
#services .content-box h2 {
  font-weight: 500;
}
.content-box h2, .content-box-fluid h2 {
  margin-bottom: 20px;
}
.content-box p, .content-box-fluid p {
  margin-bottom: 28px;
}
.overview .iconBox {
  margin-bottom: 30px;
  height: 270px;
}
.boxed-shadow {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 30px 0px rgb(0 0 0 / 11%);
  box-shadow: 0px 5px 30px 0px rgb(0 0 0 / 11%);
  padding: 30px 30px;
}
.iconBox {
  position: relative;
}
.iconBox .img-icon {
  width: 60px;
  margin-bottom: 20px;
  position: relative;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.iconBox h5 {
  color: #2f2f35;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.iconBox h5 a {
  color: #1445b3;
}
.iconBox p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Request Money
--------------------------------------------------------------*/

.request-money {
  background: #fff;
  position: relative;
  background: url(../img/req-bg.jpg) center bottom no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.request-money:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #000000ad;
  width: 100%;
  height: 100%;
}
.request-money .content-box h2 {
  color: #017cff;
  font-size: 36px;
  font-weight: 500;
}
.request-money .content-box p {
  color: #fff;
}
.req-form {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 40px 10px rgb(0 0 0 / 10%);
  /* cursor: pointer; */
  padding: 40px 22px;
  position: relative;
  z-index: 1;
}
.req-form h4 {
  color: #017cff;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}
.form-field {
  position: relative;
  margin-bottom: 20px;
}
.form-field label {
  color: #3c3c3c;
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}
.form-field input, .form-field select
{
  height: 50px;
  border-color: #007bff;
}
.form-field textarea
{
  border-color: #007bff;
}
.form-field .frm-fld-msg small {
  color: #000;
}
.accept-terms {
  text-align: center;
  display: block;
}
.accept-terms a {
  color: #007bff;
}
.req-btn-box {
  text-align: center;
}
.form-request {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: 0.5s;
}
.form-request:hover {
  background: #1d1d1d;
  border: 2px solid #1d1d1d;
  color: #fff;
}


/*--------------------------------------------------------------
# Download app
--------------------------------------------------------------*/
.app {
  overflow: hidden;
  position: relative;
    padding: 100px 0;
}
.bg-offwhite {
  background-color: #ffffff;
}
.app-dwnd .content-box h2 {
  font-weight: 500;
  color: #007bff;
}
.btn-app {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: 0.5s;
}
.btn-app:hover {
  background: #1d1d1d;
  border: 2px solid #1d1d1d;
  color: #fff;
}

.imgBox {
  text-align: center;
}
.imgBox img.aniimg {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  transform: translateX(0%) translateY(0%);
    animation: AuxRotating 40s linear infinite;
    max-width: none !important;
    will-change: transform;
    -webkit-animation: AuxRotating 50s infinite linear;
}
@-webkit-keyframes AuxRotating {
  from {
          -webkit-transform: rotate(0deg);
  }
  to {
          -webkit-transform: rotate(360deg);
  }
}
@keyframes AuxRotating {
from {
  transform:  translateX(0%) translateY(0%) rotate(0deg);
}
to {
  transform:  translateX(0%) translateY(0%) rotate(360deg);
}
}
.imgBox img.animob {
  position: relative;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ffffff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/

#about {
  background: #fff;
  padding: 60px 0 10px;
  position: relative;
}

.main-ani-box .ani-box.one-ani {
  top: -2px;
  left: -1px;
}
.ani-box.one-ani img {
  width: 150px;
  opacity: 0.3;
}
/* #about:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/abt-vac.png);
  background-size: 30% 70%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.5;
} */
#about .about-extra img {
  border-radius: 10px;
  box-shadow: 0 2px 10px #0000006b;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #007bff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

.view-more {
    background: #1b4fc3;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 4px;
    color: #fff;
    transition: .3s ease-in-out;
}
.view-more:hover {
    background: #3f3d56;
    color: #fff;
    transition: .3s ease-in-out;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/



#services .box {
  padding: 30px;
  height: 160px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#why-us {
  padding: 60px 0;
  background: #004a99;
}

#why-us .section-header h3, #why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

@media (max-width: 991px) {
  #why-us .card {
    margin: 0;
  }
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}


/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/

.htw-container {
    align-items: center;
}
#howitwork {
    background: #f9f9f9;
    padding: 60px 0;
    position: relative;
}
.main-ani-box .ani-box.two-ani {
  top: 150px;
  right: 20px;
}
.ani-box.two-ani img {
  width: 200px;
  opacity: 0.3;
}

.hiw-img img {
  border-radius: 10px;
  box-shadow: 0 2px 10px #0000006b;
}
#howitwork .htw-container .icon-box {
    background: #f9f9f9;
    background-size: cover;
    padding: 0 0 30px 0;
    display: flex;
    align-items: center;
}
#howitwork .htw-container .icon-box:hover .icon {
    background: #007bff;
    border: 2px solid #007bff;
}
#howitwork .htw-container .icon-box .icon {
        float: left;
    background: #454b69;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #454b69;
    transition: all 0.3s ease-in-out;
    color: white;
    font-weight: 800;
    font-size: 22px;
}

#howitwork .htw-container .icon-box .description {
    margin-left: 20px;
    line-height: 24px;
    font-size: 15px;
    font-weight: 600;
}
#howitwork .htw-container p:last-child {
    margin-bottom: 0;
}

#howitwork .video-box {
  position: relative;
}
#howitwork .video-box img {
  padding-top: 15px;
  padding-bottom: 15px;
}
#howitwork .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#68A4C4 50%, rgba(104, 164, 196, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

#howitwork .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(104, 164, 196, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#howitwork .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#howitwork .play-btn:hover::after {
  border-left: 15px solid #68A4C4;
  transform: scale(20);
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (max-width: 767px) {

.htw-container .order-lg-2 {
    margin-bottom: 20px;
}
#howitwork .htw-container .icon-box {
    padding: 0 0 0px 0;
    margin-bottom: 10px;
}
#howitwork .htw-container .icon-box .icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}
#howitwork .htw-container .icon-box .description {
    line-height: 18px;
}
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

#clients {
  padding: 60px 0;
  /* box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1); */
}

#clients .clients-wrap {
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Send Money Intro
--------------------------------------------------------------*/

#inner-inro {
    width: 100%;
    height: 500px;
    position: relative;
    background: url(../img/sendmoney-bg.jpg) center bottom no-repeat;
    background-size: cover;
    background-position: left;
    padding: 200px 0 120px 0;
    position: relative;
}
#inner-inro:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000006b;
}
.inner-intro-info {
    text-align: center;
}
.inner-intro-info h2 {
    color: white;
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 10px;
}
.inner-intro-info h2 span {
    font-weight: 600;
    color: #efa00c;
}
.inner-intro-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 500;
}
.btn-theme-w {
    background: #007bff;
    padding: 8px 20px;
    display: inline-block;
    border: 1px solid #007bff;
    border-radius: 5px;
    color: white;
    transition: .3s ease-in-out;
}
.btn-theme-w:hover {
    background: #26262c;
    border: 1px solid #26262c;
    color: #fff;
    transition: .3s ease-in-out;
}


/*--------------------------------------------------------------
# Sendding Money section
--------------------------------------------------------------*/

#sending-money {
    padding: 60px 0;
    background: #ecf5ff;
}
#sending-money .section-header h3, #sending-money .section-header p {
    color: #283d50;
}
#sending-money .card {
    background: #00458f;
    border-color: #00458f;
    border-radius: 10px;
    margin: 0 15px;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s ease-in-out;
    height: 100%;
}
#sending-money .card:hover {
    background: #003b7a;
    border-color: #003b7a;
}
#sending-money .card i {
    font-size: 48px;
    padding-top: 15px;
    color: #bfddfe;
}
#sending-money .card .no-count {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #bfddfe;
    color: #283d50;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto;
}
#sending-money .card h5 {
    font-size: 22px;
    font-weight: 600;
}
#sending-money .card p {
    font-size: 15px;
    color: #d8eafe;
}

#sending-app {
    background: #fff;
    padding: 60px 0;
}
#sending-app .sideimg {
    border-radius: 0 0 100%;
    box-shadow: 1px 8px 20px 0px #0000007d;
    transition: .3s ease-in-out;
    height: 500px;
    width: 100%;
    object-fit: cover;
}
#sending-app h3 {
    color: #283d50;
    font-size: 36px;
    font-weight: 500;
}
#sending-app .sideimg2 {
    border-radius: 100% 0 0;
    box-shadow: 1px 8px 20px 0px #0000007d;
    transition: .3s ease-in-out;
    height: 500px;
    width: 100%;
    object-fit: cover;
}




@media (max-width: 767px) {

#sending-app .sideimg, #sending-app .sideimg2 {
    border-radius: 0;
    height: auto;
}


}


/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

#about-inro {
    width: 100%;
    height: 400px;
    position: relative;
    background: url(../img/about.jpg) center bottom no-repeat;
    background-size: cover;
    background-position: left;
    padding: 200px 0 120px 0;
}
#about-inro:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000006b;
}
#about-inro .inner-intro-info {
    text-align: center;
}
#about-inro .inner-intro-info h2 {
    color: white;
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 10px;
}

#our-mission {
    padding: 60px 0;
    background: #ffffff;
}

/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
#contctus {
  padding: 60px 0;
  background: #f9f9f9;
  position: relative;
}
#contct-inro {
    width: 100%;
    height: 400px;
    position: relative;
    background: url(../img/contact-us.jpg) center bottom no-repeat;
    background-size: cover;
    background-position: left;
    padding: 200px 0 120px 0;
}
.main-ani-box .ani-box.three-ani {
  top: 100px;
  right: 50px;
}
.ani-box.three-ani img {
  width: 350px;
  opacity: 1;
}
#contct-inro:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000006b;
}
#contct-inro .inner-intro-info {
    text-align: center;
}
#contct-inro .inner-intro-info h2 {
    color: white;
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 10px;
}

#contctus .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgb(214 215 216 / 30%);
    padding: 20px 0 30px 0;
    background: #fff;
}
#contctus .info-box i {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #007bff;
    border-radius: 50%;
    border: 2px dotted #007bff;
    margin: 0 auto;
}
#contctus .info-box h3 {
    font-size: 20px;
    color: #283d50;
    font-weight: 500;
    margin: 10px 0;
}
#contctus .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}



#contctus .php-email-form input:focus, #contctus .php-email-form textarea:focus {
    border-color: #106eea;
}

#contctus .php-email-form input {
    padding: 10px 15px;
}
#contctus .php-email-form input, #contctus .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-color: #007bff;
}
#contctus .php-email-form input:focus, #contctus .php-email-form textarea:focus {
    border-color: #106eea;
}
#contctus .php-email-form textarea {
    padding: 12px 15px;
}
#contctus .php-email-form input, #contctus .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}
#contctus .php-email-form button[type="submit"]:hover {
    background: #3b8af2;
}
#contctus .php-email-form button[type="submit"] {
    background: #106eea;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}
#contctus .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
#contctus .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
#contctus .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.txtarea-limt {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  margin-top: 8px;
  color: #757575;
}


/*Modal Signup
--------------------------------*/


#signup .sign-m-header {
    padding-bottom: 0;
}
#signup .nav-tabs .nav-item {
    border: 0px solid #ddd;
    border-bottom: 0;
}
#signup .nav-tabs .nav-link.active {
    background: #1445b3;
    color: white;
}
#signup .nav-tabs .nav-link {
    background: #fff;
    color: #1445b3;
    border-bottom: 0 solid #0000;
    border-top: 1px solid #1445b3;
    border-left: 1px solid;
    border-right: 1px solid;
    border-radius: 0;
}
.sign-m-body {
    background: #eaeaea;
}
.mdl-frm {
    padding: 15px 0 0;
}
.mdl-frm label {
    font-weight: 600;
}
.fld-box {
    display: flex;
    background: white;
}
.fld-box .input-group-text {
    border: 0;
    border-radius: 0;
    background: #1445b3;
    color: white;
    width: 38px;
    height: 38px;
    justify-content: center;
}
.fld-box input, .fld-box select {
    border-radius: 0;
}
.btn-sign {
    background: #1445b3;
    color: white;
    border-radius: 0;
    padding: 8px 30px;
    width: 50%;
}
.sign-btn-box {
    text-align: center;
}
.btn-sign:hover {
    transition: .3s ease-in-out;
    background: #3f3d56;
    color: white;
}
.frgt-box {
    text-align: center;
    margin-top: 15px;
}


/*--------------------------------------------------------------
# Image Upload CSS
--------------------------------------------------------------*/

.bg-gry {
    background: #fff;
}
.btn-upd {
    color: #212529;
    background-color: #eeeeee;
    border-color: #eeeeee;
}
#upload, #upload2 {
    opacity: 0;
}

#upload-label, #upload-label2 {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 13px;
    width: 280px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


.image-area {
    border: 2px dashed rgb(51 51 51 / 70%);
    padding: 1rem;
    position: relative;
}

.image-area::before {
    content: 'Uploaded image result';
    color: #6c757d;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    z-index: 1;
}

.image-area img {
    z-index: 2;
    position: relative;
}

/*=====Image Upload CSS End=====*/

.chck-box input {
    margin-left: 0;
    position: relative;
    margin-right: 10px;
}
#signup {
    z-index: 99999;
}

/*--------------------------------------------------------------
# Modal Cookies Popup
--------------------------------------------------------------*/

#cookieModal {
    padding-right: 0 !important;
    z-index: 9999;
}
#cookieModal .modal-dialog {
    margin-top: 0rem;
    max-width: 100%;
}

@media (max-width: 767px) {
.notice {
    display: block !important;
}
.cookie-text {
    margin-bottom: 10px;
}
}



.sec-forgot {
    /*height: 100vh;*/
    position: relative;
    background: url(../img/forgt-bg.jpg) center bottom no-repeat;
    background-size: cover;
    padding: 200px 0 120px 0;
}
.sec-forgot:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000085;
    left: 0;
    top: 0;
}
.fogt-box {
    background: white;
    padding: 20px;
}
.head-forgt {
    text-align: center;
}
.head-forgt h4 {
    font-weight: 500;
    margin-bottom: 5px;
}
.fogt-box label {
    font-weight: 600;
}
.btn-rest-box {
    text-align: center;
}
.btn-restpwd {
    background: #1445b3;
    color: white;
    width: 100%;
    transition: .3s ease-in-out;
}
.btn-restpwd:hover {
    background: #3f3d56;
    color: white;
    transition: .3s ease-in-out;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #020202;
  padding: 0 0 15px 0;
  color: #eee;
  font-size: 14px;
}
.foter-logo h1 {
    font-weight: 500;
}

#footer .footer-top {
  background: #141414;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #1a1918;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #007bff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 15px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
  display: inline-block;
}

#footer .credits a {
  color: #007bff;
}

#footer .credits a:hover {
  color: #f1f7ff;
}
.app-links {
    margin-bottom: 20px;
    display: flex;
}
.app-links a:first-child {
  margin-right: 5px;
}

/*--------------------------------------------------------------
# FCA Approved
--------------------------------------------------------------*/
#sec-fca-verify {
  padding: 10px 0;
  background: #1445b3;
  border-radius: 50px 50px 0px 0px;
}
.fca_verified {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fca-img img {
  width: 100px;
}
.fca-img p {
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 22px;
  color: white;
  font-family: 'Montserrat';
}


/* Animation Keyfream */

.rutate-ani
{
  transform: translateX(0%) translateY(0%);
  animation: AuxRotating 40s linear infinite;
  will-change: transform;
  -webkit-animation: AuxRotating 10s infinite linear;
}
@-webkit-keyframes AuxRotating {
  from {
          -webkit-transform: rotate(0deg);
  }
  to {
          -webkit-transform: rotate(360deg);
  }
}
@keyframes AuxRotating {
  from {
    transform:  translateX(0%) translateY(0%) rotate(0deg);
  }
  to {
    transform:  translateX(0%) translateY(0%) rotate(360deg);
  }
}


/* Media Query */

@media (max-width: 767px) {
  .hero-frm .form-field .curr-select img {
    display: none;
  }
  .secnd-req-flex {
    display: block;
}
.secnd-req-flex .btn-send {
  width: 100%;
}
.secnd-req-flex .btn-send:first-child {
  margin-right: 0;
  margin-bottom: 5px;
}
.secnd-req-flex .btn-send:last-child {
  margin-left:0;
}
.btn-app {
  padding: 10px 20px;
}
}





