@font-face {
  font-family: 'gotham-black';
  src: url('../fonts/gotham-black.eot');
  src: url('../fonts/gotham-black.eot?iefix') format('eot'), url('../fonts/gotham-black.ttf') format('truetype'), url('../fonts/gotham-black.otf') format('otf'), url('../fonts/gotham-black.svg') format('svg'), url('../fonts/gotham-black.woff') format('woff'), url('../fonts/gotham-black.woff2') format('woff2')
}
html, body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
}
section {
  position: relative;
  overflow: hidden;
}
a {
  color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #000;
}
a, a:hover, a:active, a:focus, button:focus {
  outline: 0;
  border: 0;
  text-decoration: none;
}
p {
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {

  /* font-weight: 700; */

  /* text-transform: uppercase; */
  padding: 0;
  margin: 0;
}
input, textarea {
  outline: none;
}
label {
  font-weight: 300;
}
header {
  position: absolute;
  z-index: 9999;
  width: 100%;  /*padding: 15px 0;*/
}
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  height: 50px;
  padding: 35px 0;
  width: 100%;
}
header .top-nav.top-nav-home .menu li a {
  color: #c3c3c3;
}
header .top-nav.top-nav-home .menu li a:hover {
  color: #2c4190;
}
header .top-nav.top-nav-home .menu li a.active {
  color: #2c4190;
}
header .top-nav .menu li a {
  width: 100%;
  color: #6a6a6a;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'GothamBook';
}
header .top-nav .menu li a:hover {
  color: #fff;
}
/* header .top-nav .menu li a.active {
  color: #fff;
} comment by avenues 11/08/2019 */
.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header.fixed {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);
}
header.fixed .top-nav .menu li a {
  color: #c3c3c3;
}
header.fixed .top-nav .menu li a:hover {
  color: #2c4190;
}
header.fixed .top-nav .menu li a.active {
  color: #2c4190;
}
.menu > li {
  margin: 0 1rem;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-toggle {
  display: none;
}
.menu-button, .menu-button::before, .menu-button::after {
  display: block;
  background-color: #6f7eb6;
  position: absolute;
  height: 4px;
  width: 25px;
  transition: transform 50ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  cursor: pointer;
}
.menu-button::before {
  content: '';
  margin-top: -8px;
}
.menu-button::after {
  content: '';
  margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
@media (max-width:767px) {
	.aboutlink ,.howlink ,.faqlink{color: #2c4190!important;
	}
  .top-nav {
    background: #22347a;
    padding: 15px;
  }
  .logo {
    margin-left: 60px;
  }
  .menu-button-container {
    display: flex;
    position: absolute;
  }
  .menu {
    position: absolute;
    top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #eaeaea;
    height: 45px;
    padding: 15px 20px;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: left;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #fff;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  .menu > li:nth-child(4) {
    display: none;
  }
  header .bg-warning {
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    text-align: inherit !important;
    background: transparent !important;
    border: none !important;
  }
  header a.bg-warning:focus, header a.bg-warning:hover, header button.bg-warning:focus, header button.bg-warning:hover {
    background: transparent !important;
  }
  header .top-nav.top-nav-home .menu li a.active {
    color: #2c4190;
  }
  header .top-nav .menu li a {
    color: #2c4190;
  }
  header .top-nav .menu li a.active {
    color: #2c4190;
  }
  header .top-nav .menu li a:hover {
    color: #22347a;
  }
  header.fixed .top-nav .menu li a {
    color: #22347a;
  }
}
header .bg-warning {
  border-radius: 50px;
  padding: 7px 20px;
  width: 100px;
  text-align: center;
  color: #2c4190 !important;
  font-size: 10px !important;
  border: 1px #ffd93f solid;
}
header .top-nav.top-nav-home a.bg-warning:focus, header .top-nav.top-nav-home a.bg-warning:hover {
  border: 1px #2c4190 solid;
  background: transparent !important;
  color: #2c4190 !important;
}
header .top-nav a.bg-warning:focus, header .top-nav a.bg-warning:hover {
  border: 1px #ffffff solid;
  background: transparent !important;
  color: #fff !important;
}
header.fixed .top-nav a.bg-warning:focus, header.fixed .top-nav a.bg-warning:hover {
  border: 1px #2c4190 solid;
  background: transparent !important;
  color: #2c4190 !important;
}
.offer-div {
  position: relative;
}
.offer-btn span {

  /* Safari */
  -webkit-transform: rotate(-90deg);/* Firefox */
  -moz-transform: rotate(-90deg);/* IE */
  -ms-transform: rotate(-90deg);/* Opera */
  -o-transform: rotate(-90deg);
  display: block;
}
.show-offer-mob {
  display: none;
}
.contact-mob {
  display: none;
}
.offer-scrool .offer-section {
  padding: 0;
}
.offer-scrool {
  max-height: -webkit-fill-available;
  overflow: auto;
  height: 290px;
}
.offer-scrool::-webkit-scrollbar {
  width: 0px;
  background-color: transparent;
}
.show-offer h3 {
  padding-bottom: 8px;
}
.overflow {
  overflow: hidden;
}
.show-offer {
  position: fixed;
  right: -370px;
  z-index: 99999;
  top: 190px;
  max-width: 370px;
  height: 345px;
  background: #ffffff;
  padding: 15px;
  transition: all 0.5s linear;
}
.show-offer.open {
  right: 0;
  transition: all 0.5s linear;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.video-btn {
  cursor: pointer;
  height: 50px;
  background: #2c4190;
  width: 40px;
  border-radius: 10px 0 0 10px;
  padding: 14px 12px;
  position: fixed;
  right: 0;
  top: 308px;
  z-index: 99;
}
.show-offer .offer-btn {
  cursor: pointer;
  height: 98px;
  background: #2c4190;
  width: 40px;
  border-radius: 10px 0 0 10px;
  text-align: center;
  padding: 45px 0;
  font-size: 18px;
  color: #fff;
  font-family: 'GothamLight';
  font-weight: 600;
  position: absolute;
  left: -40px;
}
.call-section .contact-btn {
  cursor: pointer;    /* height: 50px; */
  background: #2c4190;
  width: 42px;
  border-radius: 10px 0 0 10px;
  padding: 13px 12px;
  position: absolute;    /* left: 0px; */
  z-index: 101;
}
.call-section {
  position: fixed;
  right: 0px;
  z-index: 999;
  top: 361px;
  width: 42px;
  max-width: 370px;
  height: 300px;   /* background: #ffffff;*/
  padding: 0;
  transition: all 0.5s linear;
}

/*.call-section.open {
right: 0;
transition: all 0.5s linear;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}*/
.close-icon {
  position: absolute;
  z-index: 999;
  cursor: pointer;
  transition: all 0.25s linear;
  right: 10px;
  top: 5px;
}
.close-icon img {
  width: 15px;
  float: right;
}
.circel-section {
  display: block;
}
.choose-mob {
  display: none;
}
.modal.fade.video-model .modal-dialog {
  transform: translate(0, 20%) !important;
  -ms-transform: translate(0, 20%) !important;
  -webkit-transform: translate(0, 20%) !important;
}
.modal.fade.video-model .modal-dialog iframe {
  width: 100%;
  height: 315px;
  margin-top: 15px;
}
.modal.fade.video-model .modal-dialog .close {
  position: absolute;
  right: 10px;
  font-size: 25px;
  width: 20px;
  z-index: 9999;
}
.banner {
  background-image: url(../images/about-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 23px;
  background-position: center;
}
.money-transfer {
  background-image: url(../images/money-transfer_back.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  float: left;  /*height: 695px;*/
  padding: 90px 0;
}
.bannerback h2 {
  font-size: 30px;
  line-height: 1.2;
  text-align: left;
  color: rgb(255, 255, 255);
  font-family: 'GothamMedium';
}
.bannerback .sub-title {
  font-family: 'GothamLight';
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 3.333;
  text-align: left;
}
.bannerback {
  width: 100%;  /*margin-top: 25%;*/
  padding: 120px 0;
}
.banner .bannerback .text-box {
  margin-top: 80px;
}
.animation-section .img-box {
  display: block;
}
.animation-section .mobile-img {
  display: none;
}
.bannerback .user-login a {
  background: #ffb606 none repeat scroll 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #002147;
  display: inline-block;
  font-weight: 600;
  margin-left: 5px;
  padding: 8px 25px;
}
.img-box img {
  width: 100%;
}
.money-transfer h3.title-text, .testimonials h3.title-text {
  font-family: 'GothamLight';
  font-size: 36px;
  color: rgb(44, 65, 144);
  line-height: 1.167;
  text-align: center;
  padding-bottom: 15px;
}
.money-transfer p.sub-p-text, .testimonials p.sub-p-text {
  font-family: 'GothamBook';
  font-size: 14px;
  color: rgb(106, 106, 106);
  line-height: 1.714;
  text-align: center;
  padding-bottom: 20px;
}
.sub-p-text {
  font-family: 'GothamLight';
}
.money-transfer p.sub-p-text.p-custom {
  padding-top: 20px;
  padding-left: 240px;
  padding-right: 240px;
  margin-bottom: 40px;
}

/*.about-money .transfer-offered {position: relative;}*/
.about-money .offered-icon {
  background: #d2e7fd;
  max-width: 190px;
  height: 190px;
  border-radius: 50%;
  margin: 20px auto 0;
}
.about-money .offered-icon img {
  transition: transform 1s;
}
.about-money .offered-icon.time-saving img {
  margin-left: 25px;
  margin-top: 25px;
  display: inline-block;
}
.about-money .offered-icon:hover img {
  transform: translate(0, -10px);
}
.offered-info {
  margin-top: 30px;
  text-align: center;
}
.offered-info h4 {
  font-size: 24px;
  color: rgb(44, 65, 144);
  line-height: 1.2;
  margin-bottom: 5px;
  font-family: 'GothamBook';
}
.about-dcb-bank {
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  float: left;
  padding: 98px 0;    /* background: #e8f3ff; */
}
.about-dcb-bank:before {
  content: '';
  bottom: 0;
  left: 0;
  background: url(../images/about-bank.png) left bottom no-repeat;
  position: absolute;
  display: block;
  width: 1073px;
  height: 450px;
}
.about-dcb-bank h3.title-text {
  font-size: 36px;
  color: rgb(44, 65, 144);
  line-height: 1.167;
  text-align: left;
  margin-bottom: 40px;
  font-family: 'GothamLight';
}
.btn {
  color: rgb(44, 65, 144);
  height: 60px;
  width: 200px;
}
.how-it-banner {
  background: url(../images/how-it-work.jpg) no-repeat;
  background-size: cover;
  padding: 30px 0;
}
.how-it-banner .bannerback {
  margin: 0;
  text-align: center;
  color: #fff;
  padding: 0;
}
.how-it-banner .bannerback .it-work {
  padding: 90px 0 63px 0;
}
.terms.how-it-banner .bannerback .it-work {
  padding: 100px 0 55px 0;
}
.how-it-banner .bannerback h2 {
  text-align: center;
  font-size: 36px;
}
.how-it-banner .bannerback .sub-title {
  text-align: center;
  line-height: 30px;
}
.how-it-work {
  background-image: url(../images/hw-it-work.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  float: left;
  padding: 30px 0;
}
.btn-form {
  width: 165px;
  height: 40px;  /*width: max-content;*/
  border-radius: 50px;
  text-align: center;
  margin-top: 12px;
  padding: 5px 0;
  cursor: pointer;
  display: block;
  font-family: 'GothamBook';
  font-size: 18px;
  color: #2c4190;
  border: 1px #ffd93f solid;
}
.how-it-work .btn-form {
  float: right;
}
a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover {
  background-color: transparent !important;
  border: 1px #fff solid;
  color: #fff;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0px auto;
}
.work-text {
  font-size: 30px;
  font-family: 'GothamLight';
  color: rgb(255, 255, 255);
  line-height: 1.2;
}
.get-to-know {
  color: rgb(255, 255, 255);
}
.modal_cust {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  right: 0;
  display: none;
}
.modal_cust .video-section {
  width: 100%;
  height: 400px;
  transform: translate(0, 50%) !important;
  -ms-transform: translate(0, 50%) !important;
  -webkit-transform: translate(0, 50%) !important;
}
.modal_cust .video-section iframe {
  width: 100%;
  height: 400px;
}
.modal_cust .video-section .close {
  position: absolute;
  right: -38px;
  font-size: 45px;
  color: #fff;
  top: -15px;
  font-weight: normal;
  opacity: 1;
}
.hidden {
  display: none !important;
}
.testimonials {
  background-image: url(../images/testimonial.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  float: left;
  padding: 68px 0 110px 0;
}
.testimonials .col-md-8 {
  padding-right: 0;
}

.testimonials .testimonials-slider .caption h3 {
  font-size: 18px;
  color: #3d3d3d;
  font-family: 'GothamMedium';
}
.testimonials p {
  padding: 10px 0 0 0;
}
.testimonials .testimonials-slider .item {
  margin: 8px;
}
.testimonials .testimonials-slider .caption p {
  font-family: 'GothamBook';
  color: #1c1c1c;
  font-size: 14px;
  opacity: 0.5;
}
.testimonials .testimonials-slider.owl-theme .owl-nav {
  position: relative;
  margin-left: 90px;
}
.testimonials .testimonials-slider.owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: 0;
}
.testimonials .testimonials-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  left: 40px;
}
.owl-theme .owl-nav [class*=owl-] {
  background: transparent;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}
.testimonials .testimonials-slider .thumbnail {
  position: relative;
  display: none;
}
.testimonials .testimonials-slider .video-icon {
  position: absolute;
  top: 105px;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  cursor: pointer;
}
.testimonials .testimonial-left {
  padding-left: 90px;
}

/* .testimonials .testimonials-slider .caption {
  text-align: center;
  background: #2d4191;
  border-radius: 12px;
  color: white;
   border-radius: 0 0 5px 5px; 
  -webkit-box-shadow: 0 4px 18px -5px rgb(0 0 0 / 22%);
  -moz-box-shadow: 0 4px 18px -5px rgba(0, 0, 0, 0.22);
  box-shadow: 0 4px 18px -5px rgb(0 0 0 / 22%);
  padding: 15px 15px;
  height: 225px;
} */

.testimonials .testimonials-slider .caption::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  color: white;
  /* background: aqua; */
  /* left: -115px; */
  position: relative;
  margin-bottom: 7px;
  background: url(../images/quote1.png);
  background-size: cover;
}

/*.testimonials .testimonial-left:hover img{transform: translate(0, -10px);transition: transform 1s;}*/
.footer {
  font-family: 'GothamBook';
  padding: 50px 0;
  background: #f5f5f5;
  width: 100%;
  float: left;
}
.footer h3 {
  font-size: 16px;
  padding-bottom: 10px;
  color: #6a6a6a;
  margin-bottom: 10px;
}
.footer ul {
  padding: 0;
  margin: 0;
}
.footer ul li {
  list-style: none;
}
.footer ul li a {
  color: #6a6a6a;
  text-decoration: none;
  line-height: 24px;
}
.footer ul li a:hover {
  color: #2c4190;
  text-decoration: none;
}
.footer .fa {
  color: #fff;
  background: #00aeef;
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 13px;
}
.footer .col-md-2 {
  margin: 16px;
}

/*copyright*/
.copyright {
  font-family: 'GothamBook';
  padding: 20px 0;
  font-size: 14px;
  background: #2c4190;
  width: 100%;
  float: left;
  text-align: center;
  color: #fff;
}

/**Home Css Start**/
.home-banner {
  background: url(../images/home-banner.jpg) no-repeat top center;    /*background-repeat: no-repeat;*/
  background-size: 100%;
  width: 100%;
  float: left;    /*height: 800px;*/
}
.home-section {
  position: relative;
  padding: 115px 0;
}
.home-section h1 {
  font-family: 'GothamMedium';
  text-align: center;
  padding: 70px 0;
  color: #4c67d1;
  font-size: 42px;
}
.home-section .home-tab {
  background-image: url(../images/home-transfer.png);
  background-repeat: no-repeat;
  background-size: 100%; /* comment by avenues 11/08/2019 */
  width: 100%;
  color: #fff;
  border-radius: 28px;
  min-height: 325px; /* comment by avenues 11/08/2019 */
  margin-top: 65px;
  background-size: cover; /* comment by avenues 11/08/2019 */
}
.home-section .home-tab .tab-pane {
  padding: 15px 30px;
}
.home-section .home-tab .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #fff;
  background-color: transparent;
  border: none;
  font-size: 18px;
}
.home-section .home-tab .nav-tabs .nav-link {
  font-family: 'GothamMedium';border: none; /* comment by avenues 11/08/2019 */
  font-size: 18px;
  color: #fff;
  background: #556dc9;
}
.home-section .home-tab .nav-tabs .nav-item.show {
  background: transparent;
}
.home-section .home-tab .nav-tabs {
  border-bottom: none;
}
.home-section .home-tab .total-value {
  background: #d0d9ff;
  border-radius: 50px;
  width: 200px;
  height: 85px;
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  margin: 0 auto;
  text-align: center;
  padding: 5px 0;
}
.home-section .home-tab .input-sec input {
  width: 50%;
  float: left;
  height: 50px;
  border: none;
  outline: none;
}
.home-section .home-tab .input-sec .first-input {
  width: 165px;
  background: #fff;
  float: left;
  border-radius: 25px 0 0 25px;
  padding-left: 25px;
}
.home-section .home-tab .input-sec .second-input {
  width: 165px;
  float: right;
  background: #fff;
  border-radius: 0 25px 25px 0;
  padding-left: 45px;
}
.home-section .home-tab .total-value p {
  font-family: 'GothamBook';
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #2c4190;
}
.home-section .home-tab .total-value h3 {
  font-size: 24px;
  color: #2c4190;
  font-family: 'GothamMedium';
}
.home-section .home-tab .input-sec {
  margin: 10px 0;
  font-family: 'GothamBook';
}
.home-section .home-tab .gst-sec {
  padding: 35px 0;
  font-family: 'GothamBook';
}
.home-section .home-tab .gst-sec .transfer-fees {
  width: 50%;
  float: left;
  /* text-align: right;  comment by avenues 11/08/2019 */
  /* padding-right: 50px; comment by avenues 11/08/2019 */
  /* margin-top: 3PX; comment by avenues 11/08/2019 */
}
.home-section .home-tab .gst-sec .applicable {
  width: 50%;
  float: right;
  text-align: left;
  padding-left: 50px;
  /* margin-top: 2PX; comment by avenues 11/08/2019 */
}
.home-section .home-tab .transfer {
  margin: 0 auto;
  color: #2c4190;
  font-size: 18px;
  padding: 5px;
  margin-bottom: 37px;
}
.home-section .home-tab .list-unstyled {
  height: 30px;
  width: 150px;
  border: 1px #000 solid;
}
.home-section .home-tab .btn-select {
  position: relative;
  padding: 0;
  width: 100px;
  border-radius: 0;
  margin-bottom: 0;
  height: 35px;
}
.home-section .home-tab .btn-select .btn-select-value {
  font-family: 'GothamMedium';
  padding: 6px 0;
  display: block;
  position: absolute;
  left: 0;
  right: 34px;
  width: 128px;
  text-align: left;
  font-size: 17px;
}
.home-section .home-tab .btn-select ul {
  display: none;
  background-color: white;
  color: black;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: none !important;
  position: absolute;
  left: -1px;
  right: -1px;
  top: 33px;
  z-index: 999;
  border-radius: 5px;
}
.home-section .home-tab .btn-select ul li {
  padding: 3px 6px;
  text-align: left;
}
.home-section .home-tab a.btn {
  border: none;
}
.home-section .home-tab .usd {
  float: right;
}
.home-section .home-tab .btn-select-value img {
  padding: 0 5px 3px 0;
}
#myTab a.active {
  background: #ccc;
}
#myTab #home-tab.active {
  background: transparent;
  border-radius: 28px 0 0 0;
}
#myTab #profile-tab.active {
  background: transparent;
  border-radius: 0 28px 0 0;
}
#home-tab {
  border-radius: 28px 0 0 0;
}
#profile-tab {
  border-radius: 0 28px 0 0;
}
.home-section .home-tab .btn-select .Thye-recevie.btn-select-value:after {
  content: '';
  width: 2px;
  height: 7px;
  background: white;
  display: block;
  position: absolute;
  right: 44px;
  top: 16px;
  -ms-transform: rotate(47deg);
  -webkit-transform: rotate(47deg);
  transform: rotate(47deg);
}
.home-section .home-tab .btn-select .Thye-recevie.btn-select-value:before {
  content: '';
  width: 2px;
  height: 7px;
  background: white;
  display: block;
  position: absolute;
  right: 48px;
  top: 16px;
  -ms-transform: rotate(-48deg);
  -webkit-transform: rotate(-48deg);
  transform: rotate(-48deg);
}
.home-section .home-tab .head {
  padding: 0 25px;
  font-family: 'GothamBook';
}
.home-section .home-tab .select-count {
  padding: 6px 25px;
}
.home-section .home-tab .head .text-right {
  padding-right: 38px;
}
.home-section .img-man {
  position: absolute;
  left: -190px;
  bottom: 8px;
}
.home-section .img-girl {
  position: absolute;
  right: -215px;
  top: 180px;
}
.home-section .btn-form {
  margin: 0 auto;
}
.transactions-no {
  padding: 48px 0;
}
.transactions-no h3 {
  font-family: 'GothamMedium';
  font-size: 17px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.transactions-no input {
  width: 100%;
  padding: 10px 25px;
  border-radius: 50px;
  outline: none;
  border: none;
}
.transactions-no .btn-form {
  width: 240px;
  margin-top: 15px;
}
.offer-section {
  padding: 30px 0;
  width: 100%;
}
.offer-section .col-md-12 {
  padding: 0;
}
.offer-section .offers-box {
  background: #ebeef7;
  padding: 10px 20px;
  border-radius: 15px;
  color: #3d55b2;
  margin-bottom: 10px;
}
.offer-section .offers-box .imgbox {
  display: inline-block;
}
.offer-section .offers-box .imgbox h3 {
  float: left;
  padding-right: 18px;
  font-size: 24px;
  font-family: 'GothamLight';
}
.offer-section .offers-box .imgbox img {
  width: 40px;
}
.offer-section .offers-box p {
  margin: 0;
  font-size: 14px;
  font-family: 'GothamBook';
}
.offer-section .owl-carousel.offer-slider.owl-theme.owl-loaded.owl-drag {
  margin-left: 110px;
}
.how-it-work.register-now {
  background-image: url(../images/register-img.jpg);
  padding: 30px 0;
}
.how-it-work.register-now .work-text {
  font-size: 28px;
  color: #000;
}
.how-it-work.register-now .bg-warning {
  background-color: #2c4190 !important;
  border: 1px #2c4190 solid;
}
.how-it-work.register-now .bg-warning:hover {
  background-color: transparent !important;
  color: #2c4190;
  border: 1px #2c4190 solid;
}
.how-it-work.register-now .btn-form {
  padding: 6px 0;
  color: #fff;
  font-size: 18px;
}
.why-choose {
  padding: 80px 0;
  width: 100%;
}
.why-choose h3.title-text {
  text-align: center;
  color: rgb(44, 65, 144);
  font-family: 'GothamLight';
  font-size: 36px;
}
.why-choose .circel-section {
  position: relative;
  height: 440px;
  margin-top: 90px;
}
.why-choose .circel {
  position: absolute;
  left: 0;
  right: 0;
  width: 620px;
  height: 330px;
  background-image: url(../images/why-chosose-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 50%;
  margin: 0 auto;
}
.why-choose .circel-section .circel .box-opi {
  opacity: 0;
}
.why-choose .circel-section .circel .div-pos {
  transition: 1s all;
  position: absolute;
  -moz-box-shadow: 0px 0px 49px 3px rgba(0, 0, 0, 0.41);
  cursor: pointer;
}
.why-choose .circel-section .circel .div-pos img {
  transform: scale(0.5);
}

/*.why-choose .circel-section .circel .div-pos:hover img{transform: translate(0, -10px);}*/
.why-choose .circel-section .circel .box1 {
  left: 90%;
  top: 14%;
}
.why-choose .circel-section .circel .box2 {
  left: 78%;
  top: 50%;
}
.why-choose .circel-section .circel .box3 {
  left: 56%;
  top: 65%;
}
.why-choose .circel-section .circel .box4 {
  left: 28%;
  top: 67%;
}
.why-choose .circel-section .circel .box5 {
  left: 8px;
  top: 50%;
}
.why-choose .circel-section .circel .box6 {
  left: -70px;
  top: 16%;
}
.why-choose .circel-section .circel .div-pos .icon-heading {
  width: 135px;
  font-size: 18px;
  position: absolute;
  line-height: 20px;
  opacity: 0.5;
  font-family: 'GothamBook';
}
.why-choose .circel-section .circel .box1 .icon-heading {
  left: 100px;
  top: 125px;
}
.why-choose .circel-section .circel .box2 .icon-heading {
  left: 110px;
  top: 120px;
}
.why-choose .circel-section .circel .box3 .icon-heading {
  left: 82px;
  top: 135px;
}
.why-choose .circel-section .circel .box4 .icon-heading {
  right: 62px;
  top: 130px;
}
.why-choose .circel-section .circel .box5 .icon-heading {
  right: 132px;
  top: 100px;
}
.why-choose .circel-section .circel .box6 .icon-heading {
  right: 150px;
  top: 75px;
}
.why-choose .circel-section .circel .box-opi {
  top: 39%;
  left: 41%;
}
.why-choose .circel-section .circel .Details {
  max-width: 200px;
  height: 145px;
  text-align: center;
  position: absolute;
  width: 200px;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
}
.why-choose .circel-section .circel .Details img {
  transform: scale(1);
}
.why-choose .circel-section .circel .Details .quick-value {
  font-size: 24px;
  color: #4c67d1;
  line-height: 20px;
  font-family: 'GothamBook';
}
.why-choose .btn-form {
  margin: 0 auto;
}
.why-choose .btn-form {
  border: none;
}
.why-choose .bg-warning {
  background-color: #2c4190 !important;
  color: #fff;
  font-size: 18px;
  width: 165px;
}
.why-choose .bg-warning:hover {
  background: transparent;
  color: #2c4190;
  border: 1px #2c4190 solid;
}
.money-transfer.trusted-partner {
  padding: 100px 0;
  height: auto;
}
.money-transfer.trusted-partner .transfer-offered {
  position: relative;
  text-align: center;
}
.money-transfer.trusted-partner .img-circel {
  background: #d2e7fd;
  max-width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 20px auto 0;
}
.money-transfer.trusted-partner .img-circel img {
  position: absolute;
  right: 20px;
  top: -10px;
  transition: transform 1s;
}
.money-transfer.trusted-partner .customers .img-circel img {
  right: 50px;
}
.money-transfer.trusted-partner .branches .img-circel img {
  right: 15px;
}
.money-transfer.trusted-partner .states .img-circel img {
  right: 90px;
}
.money-transfer.trusted-partner .img-circel:hover img {
  transform: translate(0, -10px);
}

/*.money-transfer.trusted-partner .transfer-offered:hover{transform: translate(0, -30px);transition: transform 1s;}*/
.money-transfer.trusted-partner .partner-value {
  position: absolute;
  left: 20px;
  bottom: 6px;
  width: 135px;
  color: #2c4190;
  font-family: 'GothamBook';
}
.money-transfer.trusted-partner .partner-value h1 {
  font-size: 36px;
  font-weight: bold;
  font-family: 'GothamMedium';
}
.money-transfer.trusted-partner .partner-value p {
  margin: 0;
  font-size: 24px;
}
.contact-us {
  width: 100%;
  padding: 90px 0;
}
.title-text {
  text-align: center;
  color: #2c4190;
}
.contact-us .title-text {
  margin-bottom: 20px;
  font-family: 'GothamLight';
  font-size: 36px;
  color: rgb(44, 65, 144);
  line-height: 1.167;
  text-align: center;
}
.contact-us .contact {
  background: white;
  width: 100%;
  -webkit-box-shadow: -1px 0px 26px -4px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: -1px 0px 26px -4px rgba(0, 0, 0, 0.58);
  box-shadow: 0 0px 25px -10px rgba(0, 0, 0, 0.58);
  border-radius: 10px;
}
.contact-us .contact .form-section {
  border-left: 1px #ccc solid;
  padding: 45px;
}
.contact-us .contact .form-section h3 {
  color: #6a6a6a;
  font-size: 18px;
  margin-bottom: 25px;
  font-family: 'GothamMedium';
}
.contact-us .contact .form-section .form-control {
  padding: 0 5px;
  font-size: 1rem;
  color: #777777;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #e9e9e9;
  font-family: 'GothamBook';
}
.contact-us .contact .form-section textarea {
  resize: none;
}
.contact-us .contact .form-section .bg-warning {
  background-color: #2c4190 !important;
  color: #fff;
  border: none;
  outline: none;
  width: 165px;
}
.contact-us .contact .form-section .bg-warning:hover {
  background-color: transparent !important;
  color: #2c4190;
  border: 1px #2c4190 solid;
}
.contact-us .contact .form-section .form-control:focus {
  box-shadow: none;
}
.contact-us .contact .form-section::placeholder {

  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #6a6a6a;
  opacity: 0.5; /* Firefox */
}
.contact-us .contact .form-section:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #6a6a6a;
}
.contact-us .contact .form-section::-ms-input-placeholder {

  /* Microsoft Edge */
  color: #6a6a6a;
}
.contact-us .contact .reach-us {
  padding: 45px;
  position: relative;
}
.contact-us .contact .reach-us .contact-main {
  position: absolute;
  bottom: -240px;
  left: 30px;
}
.contact-section.contact-us .reach-us .contact-main {
  position: absolute;
  bottom: -200px;
  left: 30px;
}
.contact-us .contact .reach-us .reach-icon {
  width: 33px;
  float: left;
}
.contact-us .contact .reach-us .reach-number {
  width: 200px;
  float: left;
  margin-left: 15px;
  color: #6a6a6a;
  margin-bottom: 40px;
  font-family: 'GothamBook';
}
.contact-us .contact .reach-us .reach-number p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.contact-us .contact .reach-us .reach-number h4 {
  font-size: 22px;
}
.contact-us .contact .reach-us .bg-warning {
  background-color: #2c4190 !important;
  color: #fff;
  width: 165px;
}
.contact-us .contact .reach-us .btn-form {
  border: none;
}
.contact-us .contact .reach-us .bg-warning:hover {
  background-color: transparent !important;
  color: #2c4190;
  border: 1px #2c4190 solid;
}

/**Home Css End**/

/*sprite img start*/
.img-box img.about-us-anim1, .img-box img.about-us-anim2 {
  width: 198px;
  height: 220px;
  float: right;
  top: 0px;
  position: absolute;
  left: 66%;
}
.about-us-tree {
  width: 198px;
  height: 220px;
}
.img-box img.about-us-anim2 {
  left: 15%;
  top: 105px;
}
.about-bannerscene {
  width: 310px;
  height: 145px;
  display: block;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 6%;
  background: url(../images/png-sequence.png);
  -webkit-animation: aboutbganimBg 5s steps(109) forwards infinite;
  animation: aboutbganimBg 5s steps(109) forwards infinite;
  left: 31%;
  z-index: 1;
}
@keyframes aboutbganimBg {
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: -15805px;
  }
}
.home-bannerscene {
  width: 1005px;
  height: 310px;
  display: block;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 45%;
  background: url(../images/homepage-banner-sprite-sheet.png);
  -webkit-animation: homebganimBg 5s steps(203) forwards infinite;
  animation: homebganimBg 5s steps(203) forwards infinite;
  left: 6%;
  z-index: 0;
}
@keyframes homebganimBg {
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: -62930px;
  }
}
.img-box img.about-us-tree {
  width: 75px;
  height: 163px;
  margin-top: 24%;
  margin-left: 0;
}
.line-arrow .arrow-r {
  width: 0;
  height: 0;
  margin: 2px auto;
  border: 7px solid transparent;
  border-right-color: #fff;
  display: block;
  position: absolute;
  opacity: 0;
}
.line-arrow .arrow-r.line-1 {
  top: 121px;
  transform: rotate(280deg);
  left: 4px;
}
.line-arrow .arrow-r.line-2 {
  top: 13px;
  transform: rotate(-27deg);
  left: 111px;
}
.line-arrow .arrow-r.line-3 {
  top: 74px;
  transform: rotate(1deg);
  left: 80%;
}
.line-arrow .arrow-r.arrow-r-on {
  opacity: 1;
}

/*sprite end start*/
@media (max-width:1024px) {
  header .menu-link {
    margin-left: -145px;
  }
}
@media (max-width:767px) {
  header .menu-link {
    margin-left: 0;
  }

  /*.ml-auto, .mx-auto {margin-left: 134px!important;}*/
  .navbar-collapse {
    background: #fff;
  }
  .keyPointersUL li {
    text-align: center;
  }
  #how-it-work-page .keyPointersUL li:nth-child(1), #how-it-work-page .keyPointersUL li:nth-child(2), #how-it-work-page .keyPointersUL li:nth-child(3), #how-it-work-page .keyPointersUL li:nth-child(4), #how-it-work-page .keyPointersUL li:nth-child(5), #how-it-work-page .keyPointersUL li:nth-child(6) {
    margin: 0;
    margin-bottom: 50px;
  }
  #how-it-work-page {
    height: auto;
  }
  #how-it-work-page .keyPointersUL li {
    margin-top: 0;
    text-align: center;
  }
  .leftPointsKey .wrapPointersRight, .rightPointsKey .wrapPointersLeft {
    margin: 0;
  }
  .rightPointsKey p, .wrapPointersRight h5, .rightPointsKey h5, .wrapPointersRight p {
    text-align: center;
  }
  .back-main {
    display: none;
  }
  header .top-nav.top-nav-home .menu li a {
    color: #22347a;
  }
  header .top-nav a.bg-warning:focus, header .top-nav a.bg-warning:hover {
    border: 1px #ffffff solid;
    background: transparent !important;
    color: #22347a !important;
  }
}
.path {
  stroke-dashoffset: 4000;
  stroke-dasharray: 4000;
}

/*faq page start*/
.faq-page {
  margin-top: -85px;
}
.faqs-tab {
  padding: 0;
  margin: 25px 0 40px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #e5e5e5;
}
.faqs-tab li {
  list-style: none;
  display: inline-block;
}
.faqs-tab li a {
  padding: 0 40px;
  color: #c3c3c3;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: none;
  font-family: 'GothamBook';
}
.faqs-tab li a.current {
  color: #2c4190;
  border-bottom: 1px solid #2c4190;
}
.faqs-content {
  display: none;
}
.faqs-content.current {
  display: inherit;
}
.faqs-list {
  padding: 0;
  margin-bottom: 100px;
}
.faqs-section .card {
  border: none;
  border-radius: .25rem;
  margin-bottom: 10px;
  box-shadow: 0px 1px 3px 0px rgba(204, 204, 204, 0.76);
}
.faqs-section .card-header {
  background-color: transparent;
  border-bottom: none;
}
#accordion .mb-0 a.collapsed {
  color: #484848;
}
.faqs-section .card-header h5 a {
  color: #2c4190;
}
.faqs-section {
  padding-bottom: 45px;
}
.faqs-section .card-header h5 a {
  padding: 10px 20px;
  float: left;
  width: 100%;
}
.faqs-section .card-header h5 a.collapsed {
  background: #f9f9f9;
  padding: 10px 20px;
  float: left;
  width: 100%;
}
.faqs-section .card-header {
  padding: 0;
}
.faqs-section .answer-body {
  font-family: 'GothamLight';
  font-size: 15px;
  color: #666;
}
.faqs-section .mb-0 > a {
  display: block;
  position: relative;
  font-size: 15px;
  font-family: 'GothamLight';
  font-weight: 600;
}
.faqs-section .mb-0 > a:after {
  content: "+"; /* fa-chevron-down */
  font-family: 'FontAwesome';
  position: absolute;
  right: 24px;
  font-size: 24px;
  top: 6px;
}
.faqs-section .mb-0 > a[aria-expanded="true"]:after {
  content: "-";
  font-size: 30px;
  position: absolute;
  top: -6px;
  right: 27px;
}

/*faq page end*/

/*register page Start*/
.register-banner.how-it-banner {
  padding: 30px 0 45px 0;
}
.register-page {
  margin-top: -80px;
}
.register-banner a.login {
  color: #fad940;
  cursor: pointer;
}
.register-box {
  margin-bottom: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 24px 1px rgba(204, 204, 204, 0.76);
}
.register-box .register-header {
  background: #ffd940;
  border-radius: 10px 10px 0 0;
  height: 92px;
  position: relative;
  z-index: 2;
}
.register-header .mobile-view ul {
  margin: 0 auto;
  padding: 0;
}
.register-header ul li {
  list-style: none;
  float: left;
  padding: 0 120px;
}
.register-box h3 {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #011251;
  padding-top: 28px;
  text-align: center;
  display: inline-block;
  font-family: 'GothamBook';
}
.register-box .steps {
  width: 48px;
  height: 48px;
  display: inline-block;
  border-radius: 100px;
  border: 1px solid #ffd940;
  background: #fff;
  font-size: 18px;
  color: #011251;
  font-weight: 600;
  text-align: center;
  line-height: 46px;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;    /*pointer-events: none;
    opacity: 0.7;*/
}
.next-btn {
  background: url(../images/next-arrow.png) no-repeat 0 0;
  width: 27px;
  height: 27px;
  float: right;
  text-indent: inherit;
  margin: 20px;
  text-decoration: none;
  position: absolute;
  z-index: 1;
  bottom: 6px;
  right: 46px;
}
.back-btn {
    background: url(../images/next-arrow.png) no-repeat 0 0;
    width: 27px;
    height: 27px;
    float: right;
    text-indent: inherit;
    margin: 20px;
    text-decoration: none;
    position: absolute;
    z-index: 1;
    bottom: 6px;
    right: 80px;
    transform: rotate(180deg);
}
.steps.step_active {
  background: #001250;
  color: #fff;
  pointer-events: auto;
  opacity: 1;
}
.register-box .register-label {
  position: relative;
  text-align: center;
}
.register-body {
  background: url(../images/registration-step-bg.png) no-repeat left top;
  background-size: cover;
  height: 525px;
  position: relative;
  border-radius: 0 0 10px 10px;
}
span.steps.prev_check {
  background: #001250;
  color: #fff;
  pointer-events: all; /* comment by avenues 11/08/2019 */
  opacity: 1;
}
span.steps:before {
  content: "";
  width: 0;
  height: 3px;
  background: #001250;
  display: block;
  position: absolute;
  left: 46px;
  top: 23px;
  transition: 1.5s all;
}
span.steps.prev_check:before {
  width: 332px;
}
.register-body .question {
  font-size: 18px;
  color: #011251;
  font-weight: 300;
  text-align: center;
  padding-top: 56px;
}
.register-body .proceed-btn {
  background: #2c4190;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  border: none;
  border-radius: 100px;
  display: block;
  padding: 8px 47px;
  text-align: center;
  margin: 25px auto 0 auto;
  cursor: pointer;
  outline: none;
}
.sc-bank-customer {
  max-width: 590px;
  float: left;
  position: absolute;
  padding-top: 100px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.sc-bank-customer p {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: 'GothamBook';
}
.register-body .proceed-btn:hover {
  background: #ffd940;
  color: #2c4190;
}
.register-page .register-body .existing {
  margin-right: 50px;
}
.register-page .register-body .existing, .register-page .register-body .non-existing {
  background: #fff;
  color: #011251;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 65.8px 4.2px rgba(0, 0, 0, 0.11);
  width: 270px;
  padding: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: 'GothamBook';
  float: left;
  cursor: pointer;
  margin-bottom: 60px;
  transition: padding 0.5s;
}
.register-page .register-body .acc-active.existing, .register-page .register-body .acc-active.non-existing {
  background: url(../images/existing-bg.png) no-repeat left top;
  color: #fff;
  background-size: cover;
}
.register-page .register-body .existing.click-active, .register-page .register-body .non-existing.click-active {
  padding: 11px 35px;
}
.step1a {
  clear: both;
  opacity: 1;
}
.step1a.opacity_0 {
  opacity: 0;
}
.register-body .form-input {
  border-radius: 100px;
  box-shadow: 0px 0px 7px 1px #eee;
  border: none; /* comment by avenues 11/08/2019 */
  /*margin: 0 10px 30px 12px;*/
  /* margin: 0 10px 0;  comment by avenues 11/08/2019 */
  padding: 0 18px;
  height: 45px;
  font-family: 'GothamBook';
  color: #011251;
  font-size: 14px;
  -webkit-appearance: none;
}
.register-body .step1a .form-input {
  margin: 0px;
}
.register-body .step1a .error-msg {
  margin-left: 12px;
}
.register-body .error-msg {
  margin-bottom: 10px;
  margin-left: 23px;
}
/*  09-08-2019 deepak .select-div:after {
  content: '';
  width: 2px;
  height: 7px;
  background: #868686;
  display: block;
  position: absolute;
  right: 26px;
  top: 20px;
  z-index: 999;
  -ms-transform: rotate(50deg);
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
} comment by avenues 11/08/2019 */
/* 09-08-2019 deepak .select-div:before {
  content: '';
  width: 2px;
  height: 7px;
  background: #868686;
  display: block;
  position: absolute;
  right: 30px;
  z-index: 9999;
  top: 20px;
  -ms-transform: rotate(-50deg);
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
} comment by avenues 11/08/2019 */
.register-body .form-input::placeholder, .personal-info textarea::placeholder {

  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #011251; /* Firefox */
}
.register-body .form-input:-ms-input-placeholder, .personal-info textarea::placeholder {

  /* Internet Explorer 10-11 */
  color: #011251;
}
.register-body .form-input::-ms-input-placeholder, .personal-info textarea::placeholder {

  /* Microsoft Edge */
  color: #011251;
}
.personal-info textarea {
  width: 100%;
  height: 78%;
  border: none;
  border-radius: 10px;
  resize: none;
  padding: 10px 18px;
  /* margin-left: 15px; comment by avenues 11/08/2019 */
  box-shadow: 0px 0px 7px 1px #eee;
  color: #011251;
  font-size: 14px;
  font-family: 'GothamBook';
}
.personal-info.sc-bank-customer {
  max-width: 100%;
  padding: 100px 80px;
}
.verification.step-3 {
  padding: 50px 80px;
  max-width: 100%;
}
.verification span {
  display: block;
  font-family: 'GothamBook';
  padding-top: 10px;
  text-align:left;
}
.verification-wapper {
  /* padding: 20px; */
  /* background: #fff; */
  /* border-radius: 10px; */
  /* background-color: rgb(255, 255, 255); */
  /* box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05); */
}
.verification-wapper h3 {
  margin-bottom: 30px;
  padding: 0;
}
.personal-info .btn {
  height: 44px;
  background: #fff;
  border: none !important;
  border-radius: 0 100px 100px 0;
}
.personal-info .date-pic {
  margin-right: 0;
  width: 100%;
  background: transparent;
  position: absolute;
  z-index: 999;
  left: 0;
  cursor: pointer;
  padding-left: 20px;
}
.verification .word-verification {
  padding: 23px 125px 0px 125px;
}
.verification .word-verification p {
  font-size: 14px;
  margin: 0;
  text-align: left;
  color: #011251;
  font-family: 'GothamBook';
  font-weight: 600;
}
.verification .word-verification .capcha-sec {
  width: 100%;
}
.verification .word-verification .capcha-sec .capcha {
  width: 130px;
  /* height: 30px;  comment by avenues 11/08/2019 */
  float: left;
  margin-top: 10px;
}
.verification .word-verification .capcha-sec .capcha img {width: 100%;} /* comment by avenues 11/08/2019 */
.verification .word-verification .capcha-sec .capcha-input {
  width: 165px;
  float: left;
}
.verification .word-verification .capcha-sec .capcha-input .form-input {
  margin: 0 15px;
  height: 45px;
  border: #CCC solid;
}
.verification .word-verification .seeing {
  width: 100%;
  float: left;
  text-align: left;
  font-family: 'GothamBook';
  font-size: 12px;
  padding-top: 10px;
  margin-bottom: 10px;
}
.verification .word-verification .seeing a {
  color: #3950a4;
}
.verification .btn-form {
  margin: 0 auto;
}
.verification .word-verification .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.verification .word-verification .form-group label {
  position: relative;
  cursor: pointer;
  padding-left: 20px;
  text-align: left;
  font-family: 'GothamBook';
  font-size: 12px;
  color: #6a6a6a;
}
.verification .word-verification .form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #001250;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 6px;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  left: -4px;
  top: 5px;
}
.verification .word-verification .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 2px;
  width: 5px;
  height: 9px;
  border: solid #001250;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.verification .bg-warning {
  background-color: #2c4190 !important;
  border: 1px #2c4190 solid;
  color: #fff;
}
.verification .bg-warning:hover, .verification .bg-warning:focus {
  border: 1px #2c4190 solid;
  color: #2c4190;
}
.calender {
  position: relative;
}
.personal-info .calender .icon {
  background: url(../images/calender.jpg) right 12px no-repeat #fff;
  position: absolute;
  top: 0px;
  /* right: -11px; comment by avenues 11/08/2019 */
  height: 45px;
  width: 100%;
  display: block;
  border-radius: 100px;
  box-shadow: 0px 0px 7px 1px #eee;
}
.faq-page.post-login-home .form-input {
  width: 100%;
}
.forget-captcha {
  padding-left: 18px;
}
.forget-captcha .captcha-text {
  font-family: 'GothamBook';
  color: #011251;
  font-size: 14px;
}
.forget-pass {
  padding: 38px 13px 24px 13px !important;
}
.forget-design {
  margin-top: 7px;
}
#forget-pass-popup .modal-content {
  border-radius: 10px;
  background: url(../images/forget-pass-popup.png) no-repeat 0 0;
  background-size: cover;
  border: none;
}
#forget-pass-popup .modal-dialog h2 {
  font-size: 14px;
  font-family: 'GothamBook';
  color: #878787;
  padding: 5px 21px 22px 21px;
  text-align: center;
  line-height: 22px;
}
#forget-pass-popup .modal-dialog {
  top: 45%;
  transform: translateY(-50%);
}
.forget-captcha .capcha-input.wow.fadeInUp.center {
  margin-top: 15px;
}
.sent-Successfull.close {
  margin-right: 10px;
  margin-top: 4px;
  text-align: right;
  font-size: 23px;
}

/*register page end*/

/*faqs page start*/
.search-box-wrap {
  margin: 20px 0;
  background: url(../images/input-bg.png) no-repeat 0 0;
  box-shadow: 0px 6px 24px 1px rgba(204, 204, 204, 0.76);
  border-radius: 10px;
  height: 120px;
  padding: 22px 35px;
}
.search-box-wrap .search-input {
  width: 70%;
  border: 0;
  outline: none;
  font-size: 30px;
  font-weight: 900;
  color: #2c4190;
  background: none;
  height: 57px;
  padding: 0 0;
  border-bottom: 1px #b0b0b0 solid;
  font-family: 'GothamMedium';
}
.search-box-wrap::placeholder {
  color: #d4d3d3;
}
.search-box-wrap .search-btn {
  background: #2c4190;
  font-family: 'GothamBook';
  font-size: 18px;
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 10px 56px;
  float: right;
  margin: 14px 50px 0 0;
}
.search-box-wrap .search-btn:hover {
  background: #5065b7;
  outline: none;
  cursor: pointer;
}

/*faqs page end*/

/*how-it-work-page Start*/
.how-it-work-page {
  background: #f3f9ff;
}
.how-it-work-page .you-register p {
  text-align: center;
  font-family: 'GothamLight';
  font-size: 18px;
  color: #2c4190;
  font-weight: 600;
  padding-bottom: 30px;
}
.how-it-work-page .you-register {
  padding: 85px 0 0 0;
}
.how-it-work-page .you-register .title-text {
  font-family: 'GothamBold';
  text-transform: uppercase;
  font-size: 48px;
}
.how-it-work-page .you-register .offered-icon {
  background: #d2e7fd;
  max-width: 190px;
  height: 190px;
  border-radius: 50%;
  margin: 20px auto 0;
}
.how-it-work-page .you-register .transfer-offered {
  position: relative;
  margin-bottom: 120px;
}
.how-it-work-page .you-register .offered-icon img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -30px;
  transition: transform 1s;
}
.how-it-work-page .you-register .offered-icon:hover img {
  transform: translate(0, -10px);
}
.how-it-work-page .you-register .transfer-offered .offered-info {
  margin-top: 30px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -43px;
  max-width: 240px;
  height: 77px;
}
.how-it-work-page .you-register .transfer-offered .offered-info h4 {
  font-size: 30px;
  font-family: 'GothamBold';
  line-height: 25px;
}
.how-it-work-page .you-register .transfer-offered .offered-info p {
  font-size: 18px;
  font-family: 'GothamBook';
  font-weight: normal;
  line-height: 20px;
}
.how-it-work-page .money-transfer {
  background-image: url(../images/me-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  float: left;
  padding: 90px 0;
}
.how-it-work-page .money-transfer .you-register h3.title-text {
  color: #987000;
  line-height: 20px;
}
.how-it-work-page .money-transfer .you-register p {
  color: #987000;
}
.how-it-work-page .money-transfer .you-register .offered-info h4 {
  color: #987000;
}
.how-it-work-page .money-transfer .you-register .offered-icon {
  background: #fff2ce;
}
.how-it-work-page .money-transfer .you-register .offered-icon img {
  top: -45px;
}
.how-it-work-page .money-transfer .you-register .offered-icon.send img {
  right: -90px;
}
.how-it-work-page .money-transfer .you-register .btn-form {
  margin: 0 auto;
  background-color: #2c4190 !important;
  color: #fff;
  border: 1px #2c4190 solid;
}
.how-it-work-page .money-transfer .you-register .btn-form:hover {
  margin: 0 auto;
  background-color: transparent !important;
  color: #2c4190;
  border: 1px #2c4190 solid;
}
.how-it-work-page .money-transfer .you-register h5 {
  text-align: center;
  font-family: 'GothamMedium';
  font-size: 24px;
  color: #2c4190;
  padding-bottom: 30px;
}

/*how-it-work-page end*/

/*Terms-page Start*/
.faqs-section.Terms-section {
  padding-top: 30px;
}
.faqs-section.Terms-section .answer-body {
  margin-bottom: 10px;
}
.faqs-section.Terms-section .answer-body h4 {
  color: rgb(44, 65, 144);
  font-family: 'GothamLight';
  font-size: 15px;
  padding-bottom: 10px;
}
.faqs-section.Terms-section .answer-body ol {
  padding-top: 10px;
}
.faqs-section.Terms-section .answer-body p.financial-heading {
  margin-bottom: 0;
  font-weight: 600;
}
.faqs-section.Terms-section .answer-body .ol-disc {
  list-style: disc;
}
.faqs-section.Terms-section .answer-body .contentlist .Provide {
  padding-top: 10px;
  padding-bottom: 10px;
}
.faqs-section.Terms-section .answer-body .contentlist {
  padding-bottom: 10px;
}
.faqs-section.Terms-section .answer-body a {
  color: #2c4190;
}

/*Terms-page end*/

/*Contact Start*/
.contact-section.contact-us {
  padding: 0;
  margin-top: -80px;
  padding-bottom: 100px;
}
.contact-section.contact-us .contact .form-section {
  padding: 45px 45px 15px 45px;
}
.login {
  color: #6a6a6a;
  padding-top: 15px;
  font-family: 'GothamBook';
  font-size: 14px;
}
.login a {
  color: #2c4190;
}

/*Contact end*/

/*Referral-Program Start*/
.referral-program .register-body {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 24px 1px rgba(204, 204, 204, 0.76);
  height: auto;
}
.referral-program .register-body p {
  font-family: 'GothamBook';
  font-size: 14px;
  color: rgb(106, 106, 106);
  line-height: 1.714;
  text-align: center;
  padding-bottom: 20px;
}
.referral-program h3.title-text {
  font-family: 'GothamLight';
  font-size: 36px;
  color: rgb(44, 65, 144);
  padding-bottom: 15px;
}
.referral-program {
  text-align: center;
  padding-bottom: 40px;
}
.Limitless-section {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 530px;
  margin-top: 40px;
}
.Limitless-section .limitless-text {
  text-align: left;
  padding: 0 25px;
}
.Limitless-section .limitless-text p {
  text-align: left;
}
.Limitless-section .easy.limitless-text p {
  text-align: right;
}
.Limitless-section .limitless-text h3 {
  color: #2c4190;
  padding-bottom: 10px;
  font-family: 'GothamMedium';
}
.easy.limitless-text {
  text-align: right;
}
.refer-friend input {
  background: transparent;
  border: none;
  border-bottom: 1px #fff solid;
  width: 100%;
  color: #fff;
  height: 35px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.refer-friend form {

  /*display: contents;*/    width: 100%;
}
.refer-friend input::placeholder {

  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 0.4; /* Firefox */
}
.refer-friend input:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #fff;
}
.refer-friend input::-ms-input-placeholder {

  /* Microsoft Edge */
  color: #fff;
}

/*Referral-Program End*/

/*Login page Start*/
.search-box-wrap.new-login-page {
  background: #f9f9f9 url(../images/registration-step-bg.png) no-repeat 0 0;
  background-size: cover;
  box-shadow: 0px 6px 24px 1px rgba(204, 204, 204, 0.76);
  height: auto;
  margin-bottom: 90px;
  margin-top: 0px;
  padding: 38px 13px 80px 13px;
}
.login-design li {
  list-style: none;
  display: inline-block;
}
.login-design li:first-child {
  float: left;
  text-decoration: underline;
  text-align: left;
  margin-left: -22px;
  margin-top: 8px;    /*left: 18px;
     position: absolute;
     top: 8px;*/
}
.login-design li:last-child {
  float: right;
}
.search-box-wrap.new-login-page::placeholder {
  color: #011251;
}
.search-box-wrap.new-login-page:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #011251;
}
.search-box-wrap.new-login-page::-ms-input-placeholder {

  /* Microsoft Edge */
  color: #011251;
}
.new-login-page .form-input {
  border-radius: 100px;
  box-shadow: 0px 0px 7px 1px #eee;
  border: none;
  margin: 8px 0px 5px 0px;
  padding: 0 18px;
  height: 45px;
  font-family: 'GothamBook';
  color: #011251;
  font-size: 14px;
  -webkit-appearance: none;
}
.how-it-banner .bannerback a.new-sign-up {
  color: #fad940;
  cursor: pointer;
}
.search-box-wrap .login-btn {
  background: #2c4190;
  font-family: 'GothamBook';
  font-size: 16px;
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 6px 35px;    /* text-align: center; */

  /* margin: 0 auto; */
  width: 120px;
  margin: 0px;
}
.how-it-banner .bannerback .sub-title.new-not-reg {
  margin-bottom: 0px;
}

/*Login page end*/

/* contach us popup start*/
.contact-popup {
  transition: 0.5s all;
  margin-left: 50px;
}
.contact-popup.active {
  margin-left: -200px;
}
.contact-mainicon {
  display: flex;
}
.contact-icon {
  cursor: pointer;
  height: 47px;
  background: #2c4190;
  width: 50px;
  border-radius: 10px;
  padding: 10px 15px;
  z-index: 99;
  margin-right: 17px;
}
.contact-popup-child {
  width: 286px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0.749px 5.749px 20px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0.749px 5.749px 20px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0.749px 5.749px 20px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  z-index: 999;
  margin-left: 50px;
  transition: 0.5s all;
}
.contact-popup-child.mobile-contact-popup {
  margin-left: 100%;
}
.contact-popup-child.popup-child-active {
  margin-left: -202px;
}
.popup-child-active.mobile-contact-popup {
  margin-left: 6%;
}
.contact-icon-popup span img {
  float: left;
  margin-right: 5px;
  margin-top: 3px;
}
.contact-icon-popup p {
  margin: 0;
  font-size: 14px;
  color: #666;
  font-family: "GothamBook";
}
.contact-icon-popup a {
  font-size: 14px;
  font-family: "GothamBook";
  color: rgb(44, 65, 144);
}

/* contach us popup end*/

/*friend popup start*/
#friendrefer .modal-dialog {
  top: 45%;
  transform: translateY(-50%)
}
#friendrefer .modal-dialog {
  max-width: 261px;
}
#friendrefer .modal-content {
  border-radius: 10px;
  background: url(../images/successful-transaction-bg-image.png) no-repeat 0 0;
  background-size: cover
}
#friendrefer .modal-content {
  border-radius: 10px;
  background: url(../images/successful-transaction-bg-image.png) no-repeat 0 0;
  background-size: cover
}
#friendrefer h2 {
  padding: 30px 14px;
  text-align: center;
  font-size: 16px;
  color: #000;
  padding: 10px;
  opacity: .7;
  font-family: 'GothamMedium';
  font-weight: 600;
}
#friendrefer .Successfully.close {
  position: absolute;
  top: 3px;
  font-size: 23px;
  right: 8px;
}
#friendrefer .modal-body {
  padding: 21px;
}

/*friend popup end*/
.error-msg {
  font-weight: 400;
  margin: 0;
  font-size: 12px;
  color: red;
  font-family: 'GothamLight';
  padding-left: 6px;
  width: 100%;
  text-align: left;
}
.register-body .calender .error-msg {
  margin-top: 48px;
}
.faq-page.post-login-home .error-msg {
  padding-left: 18px;
  padding-bottom: 6px;
}
.reff-code input {
  max-width: 100%;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 100px;
  box-shadow: 0px 0px 7px 1px #eee;
  border: none;
  font-family: 'GothamBook';
  color: #011251;
  font-size: 14px;
  -webkit-appearance: none;
}

/*.reff-code input:focus ~ .floating-label,
.reff-code input:not(:focus):valid ~ .floating-label{
top: 43px;
bottom: 10px;
left: 20px;
font-size: 11px;
opacity: 1;
}

.reff-code .inputText {
font-size: 14px;
width: 100%;
height: 35px;
border-radius: 50px;
border-color: red;
}

.reff-code .floating-label {
position: absolute;
pointer-events: none;
 left: 47px;
top: 72px;
transition: 0.2s ease all;
}*/
.verification-wapper .box {
  width: 100%;
  height: 145px;
  border: 2px #fff solid;
  padding: 12px;
}
.hear-about {
  width: 100%;
  height: 145px;
  border: 2px #CCC solid !important; /* comment by avenues 11/08/2019 */
  display: block;
  padding: 12px;
}
input.form-control.form-input.prm-code {
  margin: 0px;
  width: 100%;
}
.prm-code {
}
.prm-code.active {
  display: block;
}
input.form-control.form-input.prm-code {
  margin: 0px;
  width: 100%;
  display: block;
}
.personal-info.sc-bank-customer.step-2 .country-code {
	width: 30% !important;
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	border-radius: 100px;
	border: none;
	margin: 0 0 0px 0;
	box-shadow: 0px 0px 7px 1px #eee;
	background-color: #fff;
	padding: 12px 20px 12px 27px;
	font-family: 'GothamBook';
	-webkit-appearance: none;
	float: left;
	text-align: left;
	color: #011251;
	/* margin-left:12px;  comment by avenues 11/08/2019 */
	/* width: calc(30% - 12px) !important; comment by avenues 11/08/2019 */
}
.personal-info.sc-bank-customer.step-2 .country-code-number {
  width: 70% !important;
  padding-left: 10px !important;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
/* comment by avenues 11/08/2019 */

.cookiewrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}
.cookiewrap p{
  font-size: 14px;
  font-family: 'GothamBook';
  padding-left: 20px;
}
.cookie-opacity {
    opacity: 1 !important;
    padding: 32px 0%;
    background-color: #f2f2f2;
    color: #323232;
    margin-bottom: 0;
    border: none;
}
a#cookie-but {
    padding: 7px 30px 7px 30px;
    color: #fff;
    background-color: #2c4190;
    border-radius: 25px;
    font-size: 17px;
    border: 1px solid #2c4190;
    display: inline-block;
    text-align: center;
    font-family: 'GothamBook';
}
a#cookie-but:hover {
    background: transparent;
    border: 1px #2c4190 solid;
    color: #2c4190;
    outline: none;
}
  a#cookie-but {
    padding: 4px 15px;
    min-width: 100px;
}
a#cookie-but:focus {
    outline: none;
}

.cookie-opacity .cookie_btn {
    position: relative;
    top: -49px;
    right: 78px;
    color: inherit;
    opacity: 1.2;
}
button.cookie_btn {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}
.cookie_btn {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

/* .personal-info.sc-bank-customer.step-2 .country-code:after {
width: 1px;
background: #011251;
content: "";
height: 25%;
position: absolute;
top: 12px;
left: 98px;
} comment by avenues 11/08/2019 */

.gst-sec{
  margin-top: 5px;
}
/* comment by avenues 11/08/2019 */

#howitworks_pg .howlink {color:#fff;}
#faqs_pg .faqlink {color:#fff;}
#aboutus_pg .aboutlink{color:#fff;}

.register-page .select2-container--default .select2-selection--single {box-shadow:0px 0px 7px 1px #eee;background-color:#fff;text-align:left;}

.register-body {height:100%;min-height:545px;}

@media screen and (max-width:768px){
	#password_box + div {margin-bottom:25px;}
	.register-body {min-height:640px;}
}

.register-body .personal-info .row div[class^="col-"] {margin-bottom: 10px;}
.register-body .error-msg {margin-bottom: 10px;}
.register-body .calender .error-msg {margin-top: 0;}
.personal-info .date-pic {position: relative;}

#forgotPassword .forget-captcha {padding-left: 0;}

.privacy-link-color {
    color: #007bff;
  }

.privacy-link-color:hover {
  text-decoration: underline;
}
	
 #howitworks_pg header.fixed .howlink {
    color: #2c4190;
}
#faqs_pg header.fixed .faqlink {
    color: #2c4190;
}
#aboutus_pg header.fixed .aboutlink {
    color: #2c4190;
}

.testimonials .testimonials-slider .caption {
text-align: center;
background: #ffffff;
border: 1px solid #2d419169;
border-radius: 7px;
-webkit-box-shadow:none;
-moz-box-shadow:none;
box-shadow:none;
padding: 12px 15px;
height: 250px;
}
.video-btn {display:none;}
.contact-popup.active {margin-left: -135px;}
 @media screen and (max-width: 767px){
	.footer-sticky-mobile ul .mobile-contact-div {width:100%;}
	.video-btn-mb.only_video_click {display:none;}
	.contact-popup {margin:0 auto;}
	
.contact-mainicon {display: flex;justify-content: center;}
}

.contact-icon + .contact-icon + .contact-icon {display:none;}
.video-btn-mb {display:none;}


.verification-wapper .box-wrap{
  width: 100%;
  /* display: flex; */
  /* justify-self: auto; */
  /* flex-wrap: nowrap; */
  /* flex-direction: row; */
  /* align-content: flex-start; */
  }
  .verification-wapper .box {
      width: 100%;
      /* height: 145px; */
      border: 1px #eee solid;
      border-radius: 5px;
      padding: 12px;
          width: 32.5%;
      margin-right: 13px;
      display: inline-block;
      float: left;
          margin-bottom: 22px;
          height: 385px;
      max-height: 400px;
      position: relative;
  }
  span.box-step-indication{
    display: inline-block;
      position: absolute;
      top: -15px;
      font-family: 'GothamBold';
      left: 25px;
      background: #fff;
      padding: 5px 10px;
      border: 1px solid #eee;
      border-radius: 5px;
  }
  .box-img-wrap{
    width: 30%;
  }
  .verification-wapper .box:last-child {
      opacity: 0.7;
      margin-right: 0px;
  }
  .box-individual-icon{
    border: 1px transparent solid;
  }
  .box-individual-icon.active {
      border-radius: 50px;
      box-shadow: 0px 0px 7px 1px #eee;
      border: 1px #eee solid;
  }
  
  .verification-wapper .box.active {
    
      border-radius: 5px;
      padding: 12px;
      opacity: 1;
      background: #fff;
  }
  
  .box-individual-icon {
      margin-top: 10px;
      cursor: pointer;
      padding: 6px 7px;
      display: flex;
      justify-content: center;
      justify-items: center;
      align-items: center;
  }
  .box-individual-icon img {
      width: 25px;
      height: 25px;
      /* box-shadow: 0px 0px 7px 1px #eee; */
      box-shadow: 1px;
      display: inline-block;
  }
  .box-individual-icon p{
      font-size: 12px;
      text-align: center;
      width: 85%;
      text-align: left;
      font-weight: 500;
      margin-bottom: 0;
      padding-left: 3px;
      font-family: 'GothamBook';
      display: inline-block;
  }
  input.form-control.form-input.box-individual-icon.active{
  box-shadow: 0px 0px 7px 1px #e1dede;
  border: none;
  }
  input.form-control.form-input.box-individual-icon{
      cursor: auto;
  }
  .sc-bank-customer .register-term-condition{
      font-size: 14px;
      font-family: 'GothamBook';
      margin-bottom: 23px;
  }
  .sc-bank-customer .register-term-condition a{
      color: #2c4190;
  }
  
  .verification.step-3 {
    padding: 50px 30px;
    max-width: 100%;
}

.modal.fade {
  background: rgba(0, 0, 0, 0.5);
}

.modal-backdrop.fade {
  opacity: 0;
}

.dcb-blue-btn{
    padding: 6px 0;
    background-color: #2c4190;
    border: 1px #2c4190 solid;
    color: #fff;
    border-radius: 25px;
    font-size: 17px;
    display: inline-block;
    text-align: center;
    font-family: 'GothamBook';
    min-width: 100px;
    height: 40px;
    cursor: pointer;
}

.dcb-blue-btn:hover,.dcb-blue-btn:focus{
    background: transparent;
    border: 1px #2c4190 solid;
    color: #2c4190;
    outline: none;
  }
