/* ================= Table of Contents ==================

		1. Basic Styling
			1.1 Common Elements
			1.2 Button & Input
			1.3 Width Ranges
			1.4 PopUp Elements
				1.4.1 Overview
				1.4.2 Loading Effect
				1.4.3 Destination Countries
					1.4.3.1 Overview
					1.4.3.2 Countries List
		2. Header & Top Elements
			2.1 Overview
			2.2 Logo
			2.3 Social Links
			2.4 Login / Register
		3. Footer
		4. Home Page
			4.1 Landing Section
			4.2 Select your country
			4.3 Get the App Now
			4.4 Why Hello Paisa
			4.5 How it Works
			4.6 Meet Our Partners
			4.7 Contact Form
		5. Country Page 	
			5.1 Landing Section
			5.2 Payout Points & Methods
	*/
/* ====================================================

		1. Basic Styling

	==================================================== */

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);

.dinBlack {
  font-family: "din-black";
}

.dinRegular {
  font-family: "din-regular";
}

/* ================================================
			1.1 Common Elements
		================================================ */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* list-style: none; */
}

body {
  height: auto;
  overflow: auto;
  text-align: left;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  background: #fff;
}

.container {
  width: 1064px;
  margin: 0 auto;
  padding: 0 10px;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  outline: 0;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  color: #f3033a;
  text-transform: uppercase;
}

h1.withLine {
  color: #292f38;
  text-transform: uppercase;
  font-weight: 900;
  width: auto;
  display: inline-block;
  position: relative;
  padding-bottom: 40px;
}

h1.withLine:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -84px;
  content: "";
  height: 4px;
  width: 168px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background: #f3033a;
  background: -webkit-linear-gradient(left, #f3033a, #d9006d);
  background: -o-linear-gradient(left, #f3033a, #d9006d);
  background: -moz-linear-gradient(left, #f3033a, #d9006d);
  background: linear-gradient(left, #f3033a, #d9006d);
}

p {
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
}

h3 {
  font-size: 32px;
  line-height: 40px;
}

.transition {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

/* ================================================
			1.2 Button & Input
		================================================ */

button {
  border: none;
  outline: none;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  font-weight: 200;
  /* text-transform: uppercase; */
  padding: 0px 42px;
  color: #fff;
  cursor: pointer;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

button:hover {
  border-bottom: solid 3px rgba(0, 0, 0, 0.2);
}

button:focus {
  -webkit-text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.4);
  -moz-text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.4);
  -o-text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.4);
  text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.4);
  text-decoration: underline;
}

input,
select,
textarea {
  border: none;
  outline: none;
  resize: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: textarea;
  -webkit-rtl-ordering: logical;
  -webkit-user-select: text;
}

textarea::-ms-expand {
  display: none;
}

.ie textarea {
  margin-bottom: 48px;
}

input {
  padding-right: 10px;
  font-size: 32px;
  color: #292f38;
  line-height: 42px;
  height: 42px;
  font-weight: 600;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

::-webkit-input-placeholder {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

:-moz-placeholder {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

::-moz-placeholder {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

:-ms-input-placeholder {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* ================================================
			1.3 Width Ranges
		================================================ */

.col-1-2 {
  width: 50%;
  float: left;
}

.col-1-3 {
  width: 33.33%;
  float: left;
}

.verticalCover {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  display: table;
  z-index: 9;
}

.verticalOne {
  height: auto;
  width: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  display: table-cell;
  vertical-align: middle;
}
.popUpBg .verticalOne.alignCenter{
  height: 100vh !important;
  width: 100%;
display: flex !important;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.alignCenter {
  text-align: center;
}

.bgImageCenterCenter {
  background: url(../images/icons/no-image/logo-bg.png) no-repeat center center;
  background-position: center center;
}

.bgImageTopCenter {
  background: #292f38 url(../images/icons/no-image/logo-bg.png) no-repeat top
    center;
  background-position: top center;
}

.bgImageBottomCenter {
  background: #292f38 url(../images/icons/no-image/logo-bg.png) no-repeat bottom
    center;
  background-position: bottom center;
}

.bgImageCenterCenter,
.bgImageTopCenter,
.bgImageBottomCenter {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

.bgImageCenterCenter img,
.bgImageTopCenter img,
.bgImageBottomCenter img {
  width: 100%;
  height: auto;
  display: block;
}

.gradientBg {
  background: #d9006d;
  background: -webkit-linear-gradient(top, #f3033a, #d9006d);
  background: -o-linear-gradient(top, #f3033a, #d9006d);
  background: -moz-linear-gradient(top, #f3033a, #d9006d);
  background: linear-gradient(top, #f3033a, #d9006d);
}

/* ====== FlexSlider Settings ====== */

.flex-direction-nav a {
  display: block;
  width: 26px;
  height: 16px;
  cursor: pointer;
  z-index: 99;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  text-shadow: none;
  color: transparent;
  outline: none;
}

.flex-direction-nav a:hover {
}

.flex-direction-nav .flex-prev {
  left: -10px;
  background: url(../images/icons/prev.svg) no-repeat 50% 50%;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.flex-direction-nav .flex-next {
  right: -10px;
  background: url(../images/icons/next.svg) no-repeat 50% 50%;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* ================================================
			1.4 PopUp Elements
		================================================ */

/* ================================================
				1.4.1 Overview
			================================================ */

.popUpBg {
  background: rgba(41, 47, 56, 0.94);
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* ================================================
				1.4.2 Loading Effect
			================================================ */

#loader {
}

.loadingBox {
  height: 40px;
  width: 42px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 50%;
  margin-left: -21px;
}

.loadingBox ul {
  overflow: hidden;
  height: 40px;
  position: relative;
}

.loadingBox ul li {
  width: 6px;
  position: absolute;
  bottom: 0;
  height: 10px;
  border-right: solid 1px rgba(0, 0, 0, 0.11);
  border-top: solid 1px rgba(0, 0, 0, 0.11);
  transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-animation-name: loadingEffect;
  -moz-animation-name: loadingEffect;
  -o-animation-name: loadingEffect;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -o-animation-duration: 1s;
  -o-animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.loadingBox ul li:nth-child(1) {
  background: #e21c40;
  left: 0;
}

.loadingBox ul li:nth-child(2) {
  background: #86c546;
  left: 6px;
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loadingBox ul li:nth-child(3) {
  background: #fbaa25;
  left: 12px;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loadingBox ul li:nth-child(4) {
  background: #93958c;
  left: 18px;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loadingBox ul li:nth-child(5) {
  background: #2cace2;
  left: 24px;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loadingBox ul li:nth-child(6) {
  background: #682a7c;
  left: 30px;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loadingBox ul li:nth-child(7) {
  background: #ea118c;
  left: 36px;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loadingEffect {
  0% {
    height: 10px;
  }

  50% {
    height: 40px;
  }

  100% {
    height: 10px;
  }
}

@-moz-keyframes loadingEffect {
  0% {
    height: 10px;
  }

  50% {
    height: 40px;
  }

  100% {
    height: 10px;
  }
}

@-o-keyframes loadingEffect {
  0% {
    height: 10px;
  }

  50% {
    height: 40px;
  }

  100% {
    height: 10px;
  }
}

@keyframes loadingEffect {
  0% {
    height: 10px;
  }

  50% {
    height: 40px;
  }

  100% {
    height: 10px;
  }
}

/* ================================================
				1.4.3 Destination Countries
			================================================ */

/* ================================================
					1.4.3.1 Overview
				================================================ */

.fullWrapper {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.light-gray {
  color: rgba(36, 53, 69, 0.4);
}

.closeButton {
    display: flex;
  justify-content: center;
  height: 30px;
  width: 30px;
  background: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  top: -15px;
  right: -14px;
  z-index: 1111;
  cursor: pointer;
  -webkit-box-shadow: -1px 1px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 1px 0px rgba(0, 0, 0, 0.15);
  -o-box-shadow: -1px 1px 0px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 0px rgba(0, 0, 0, 0.15);
}

.closeButton img {
  height: 10px;
  width: 10px;
  display: block;
  margin-top: 10px;
}

/* ================================================
					1.4.3.2 Countries List
				================================================ */

.countrySelectBlock {
  background: #fff;
  max-width: 40%;
  width: 40%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.48);
  -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.48);
  padding-bottom: 10px;
  display: none;
}

.countrySelectBlock h4 {
  text-align: left;
  padding: 15px 20px;
  font-size: 14px;
  color: #292f38;
  font-weight: 200;
  border-bottom: solid 1px #cfcfcf;
}

.countrySelectBlock ul {
  height: 412px;
  overflow-y: scroll;
  padding: 0 0 60px 0;
  margin-bottom: 20px;
}

.countrySelectBlock ul li {
  padding: 10px 20px;
  display: block;
  border-bottom: solid 1px #f0f0f0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.countrySelectBlock ul li:hover {
  background: #f0f0f0;
}

.countrySelectBlock ul li img {
  float: left;
  width: 40px;
  height: auto;
  max-height: 27px;
}

.countrySelectBlock ul li p {
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: -o-calc(100% - 40px);
  width: calc(100% - 40px);
  float: left;
  padding-left: 10px;
  line-height: 25px;
  text-align: left;
  color: #7f8a95;
  font-size: 13px;
}

.countrySelectBlock ul li p span.block {
  color: #292f38;
  width: 100px;
  font-size: 15px;
  padding: 0 10px 0 0;
}

.countrySelectBlock ul li.active {
  background: #f8f8f8;
}

.popUpBurst {
  -webkit-animation: burst 0.35s linear;
  -moz-animation: burst 0.35s linear;
  -o-animation: burst 0.35s linear;
  animation: burst 0.35s linear;
}

@-webkit-keyframes burst {
  12% {
    -webkit-transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  0%,
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes burst {
  12% {
    -moz-transform: scale(0.9);
  }

  50% {
    -moz-transform: scale(1.1);
  }

  0%,
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes burst {
  12% {
    -o-transform: scale(0.9);
  }

  50% {
    -o-transform: scale(1.1);
  }

  0%,
  100% {
    -o-transform: scale(1);
  }
}

@-keyframes burst {
  12% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.1);
  }

  0%,
  100% {
    transform: scale(1);
  }
}

/* ====================================================

		2. Header & Top Elements 

	==================================================== */

/* ================================================
			2.1 Overview
		================================================ */
.top-header-home {
  background: #001d38;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  z-index: 55;
  padding: 0px 60px;
}

.top-header-home .social {
  display: flex;
  gap: 10px;
  justify-content: end;
  margin: 0;
}

.top-header-home .linked-soical-icon img {
  width: 18px;
}

header {
  overflow: hidden !important;
  position: unset;
  left: 0;
  width: 100%;
  z-index: 5;
  background: #fff;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.13);
}

header.fixed {
  position: fixed;
  top: 0;
}

header .logo,
header ul.social,
header ul.loginRegister {
  /* height: 54px; */
}

header ul.loginRegister {
  margin-bottom: 0px;
}

header .navbar-default {
  margin-bottom: 0px;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

header .navbar-default .container-fluid {
  padding-right: 60px;
  padding-left: 60px;
}

header .nav-div {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;  
}
header .nav-div ul{
list-style: none;
}
header .nav-div .navbar-header {
  width: 10%;
  position: relative;
  z-index: 5;
}

header .nav-div #slide-navbar-collapse {
  width: 65%;
  text-align: end;
  padding: 0px;
}

.nav-div-3 {
  width: 25%;
}

.nav-div-3 .loginRegister {
  display: flex;
  gap: 20px;
  justify-content: end;
}

.nav-div-3 .loginRegister li {
  margin: 0px;
}

.nav-links-main {
  display: inline-flex;
  gap: 30px;
  align-items: center;
}

.nav-links-main a:hover {
  text-decoration: none;
}

.nav-links {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 0px;
}

.nav-links li {
  position: relative;
}

.nav-links li a:hover {
  color: var(--Red, #e22042);
}

.nav-links li a.link-active::before {
  content: "";
  width: 89%;
  height: 4px;
  background: #e22042;
  display: block;
  position: absolute;
  left: 5px;
  bottom: -19px;
}

.nav-links a {
  color: var(--HP-blue-black, #001d38);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  padding-left: 15px;
  padding-right: 15px;
}

.nav-links .link-active {
  color: var(--Red, #e22042);
}

header .nav-div #slide-navbar-collapse .loginRegister {
  display: inline-flex;
  gap: 20px;
}

header .nav-div #slide-navbar-collapse .loginRegister li {
}

/* ================================================
			2.2 Logo
		================================================ */

header .logo {
  float: left;
  background: #fff;
  /* width: 150px; */
  /* padding: 0 0 0 30px; */
  overflow: visible;
}

header .logo.navbar-brand {
  margin-left: 0px !important;
  padding: 0px !important;
  display: flex;
  align-items: center;
}

header .logo img {
  width: 100%;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.nav-links a:focus {
  color: var(--Red, #e22042);
  text-decoration: unset;
}
.nav-links li a:focus::before {
  content: "";
  width: 89%;
  height: 4px;
  background: #e22042;
  display: block;
  position: absolute;
  left: 5px;
  bottom: -19px;
}

/* ================================================
			2.3 Social Links
		================================================ */

header ul.social {
  overflow: hidden;
  float: right;
}

header ul.social li {
  float: left;
  margin-right: 15px;
}

header ul.social li img {
  height: 24px;
  width: auto;
  margin-top: 15px;
  display: block;
  -webkit-filter: brightness(200%) grayscale(100%);
  -moz-filter: brightness(200%) grayscale(100%);
  -o-filter: brightness(200%) grayscale(100%);
  filter: brightness(200%) grayscale(100%);
}

header ul.social li img:hover {
  -webkit-filter: brightness(100%) grayscale(0%);
  -moz-filter: brightness(100%) grayscale(0%);
  -o-filter: brightness(100%) grayscale(0%);
  filter: brightness(100%) grayscale(0%);
}

.loadFbMessengerHeader {
  cursor: pointer;
}

#facebookContainerHeader {
  position: absolute;
  width: 280px;
  background: #fff;
  height: auto;
  right: 10px;
  top: 90px;
  text-align: center;
  padding: 10px 0;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  z-index: 9999;
  display: none;
}

/* ================================================
			2.4 Login / Register
		================================================ */
.loginRegister li a {
  padding: 8px 50px;
  border-radius: 4px;
}

.loginRegister li a span {
}

.loginRegister li.login a {
  background: var(--White, #fff);
  border: 1px solid #00203d;
  color: #001d38;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}

.signup a {
  border-radius: 4px;
  background: var(
    --red-grad,
    linear-gradient(270deg, #e22042 0%, #fe2b2b 101.99%)
  );
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}

/* ====================================================

		3. Footer

	==================================================== */

#footer {
  padding: 0px;
  text-align: center;
  background: var(--Blue-black, #001d38);
}

#footer .footer-inner {
  padding: 110px 0px;
  width: 75%;
  margin: auto;
}

#footer h5 {
  color: var(--HP-text--white, #fff);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

#footer h5 a:hover {
  color: #fff;
}

#footer h5,
#footer ul.info,
#footer ul.info li {
  display: inline-block;
  vertical-align: middle;
}

#footer h5,
#footer ul.info {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

#footer ul.info {
  /* text-align: right; */
  /* margin-top: 20px;
		margin-left: 80px; */
  display: flex;
  align-items: center;
  gap: 15px;
}

#footer ul.info li {
  margin: 0 2px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

#footer ul.info li img {
  height: 20px;
  width: auto;
}

#footer ul.info li:nth-child(1) {
  margin-right: 10px;
}

#footer ul.info li:nth-child(5) {
  margin-left: 10px;
}

#footer ul.info li:nth-child(1) img {
  height: 48px;
}

#footer ul.info li:nth-child(5) img {
  height: 22px;
}

.loadFbMessengerFooter {
  cursor: pointer;
}

#facebookContainerFooter {
  position: absolute;
  width: 280px;
  height: auto;
  right: 0px;
  top: -106px;
  text-align: center;

  z-index: 9999;
  display: none;
}

#facebookContainerFooter .fb-page.fb_iframe_widget {
  background: #fff;
  padding: 10px 10px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

/* ====================================================

		4. faq Page 

	==================================================== */

.w-90 {
  width: 90%;
  max-width: 90%;
}

.main-content-body p {
  margin-bottom: 5px;
}

.accordions-title h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.main-content-body {
  padding-bottom: 80px !important;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
}

.faq-heading-top {
  position: relative;
}

.faq-heading-top-inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading-top-inner::after {
  content: "";
  width: 15%;
  margin: auto;
  background: #e22042;
  height: 3px;
  position: absolute;
  left: 42%;
  bottom: -10px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.faq-heading-top h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: #001d38;
}

.faq-heading-top p {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #001d38;
}

.search-bar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.search-bar-inner img {
  position: absolute;
  left: 12px;
  z-index: 22;
}
.main-content-body .search-bar{
width: 60%;
}
.main-content-body ul, .main-content-body ol{
	padding-left: 25px;
}
.fw-bolder{
	font-weight: 500;
}
.main-content-body ul li, .main-content-body ol li, .main-content-body p{
font-size: 16px;
}
.main-content-body .search-bar input{
	border-radius: 5px !important;
	box-shadow: none !important; 
}
.search-bar-inner input {
  padding-left: 45px;
  height: 45px;
}

.search-bar-inner input::placeholder {
  color: #24354566;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/* Accordion custom */
.accordions .accordion-item {
  border: 1px solid #001d38 !important;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.accordions .accordion-button:focus {
  box-shadow: unset;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid #000;
  box-shadow: none;
}

.accordion-button {
  font-family: "Lato", sans-serif;
  background-color: #fff;
  font-weight: 600;
  font-size: 18px;
  color: #001d38 !important;
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.accordion-icon {
  margin-right: 0;
}
button:focus {
  text-decoration: none;
}
.accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #001d38;
}

.accordion-button::after {
  display: none;
}

.accordion-body {
  font-size: 14px;
  padding: 24px 5px;
  width: 100;
  padding-left: 40px;
  padding-right: 40px;
}

.accordion-body-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.accordion-content-right img {
  width: 250px;
}

.accordion-content-left h4 {
  font-family: "Lato", sans-serif;
  background-color: #fff;
  font-weight: 600;
  font-size: 16px;
  color: #001d38 !important;
  margin-bottom: 40px;
}

.accordion-content-left p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.accordion-body p, .accordion-body li {
  font-size: 16px;
}

.accordion-body p a,
.accordion-body {
  color: #000;
}

.accordion-body ol li ul {
  padding-left: 0px;
  list-style: none;
}

.accordion-body ol {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.accordion-body ol > li::marker {
  font-weight: bold;
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.accordion-header {
  margin: 0;
}
/* Search input */
.search-bar {
  max-width: 600px;
  margin: 0 auto 30px;
}

.no-search-result {
  display: none;
}
.accordion-button {
  height: unset;
  line-height: 20px;
  padding: 10px 30px;
  text-align: left;
}
.accordion-button:hover {
  border-bottom: none;
}
.accordion-button:not(.collapsed){
	border-bottom: 1px solid #ccc;
}
@media (max-width: 567px) {
  .accordion-body-content {
    flex-direction: column;
  }

  .accordion-content-right {
    text-align: center;
  }

  .accordion-content-left h4 {
    margin-bottom: 14px;
  }

  .accordion-content-right img {
    width: 218px;
    margin-top: 16px;
  }

  .main-content-body {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 977.5px) {
	.search-bar{
		width: 100%;
	}
  .w-90 {
    width: 96%;
    max-width: 96%;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .faq-heading-top h2 {
    font-size: 36px;
  }

  .faq-heading-top p {
    font-size: 16px;
  }

  .accordions-title h3 {
    font-size: 18px;
  }

  .accordion-button {
    font-size: 16px;
  }

  .accordion-body p {
    font-size: 14px;
  }

  .accordion-button {
    padding: 8px 15px;
    width: 100%;
    margin-left: unset;
    margin-right: unset;
	background: transparent;
  }

  .accordion-body {
    font-size: 14px;
    padding: 15px 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.accordions-title.no-keywords-found {
  opacity: 0;
  pointer-events: none;
}

.no-search-found-img {
  position: absolute;
  left: 0;
}

/* ====================================================

		4. Home Page 

	==================================================== */

/* ================================================
			4.1 Landing Section 
		================================================ */

.md-main-1 {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 10px;
  margin: 0;
}

#landingSection {
  padding: 80px 0px 150px 0px;
}

#landingSection:before {
  position: absolute;
  content: url(../images/send-cash-home/after-effect.svg);
  top: -68px;
  left: -60px;
  height: 120px;
  width: 400px;
  z-index: 4;
}

#landingSection:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 32px;
  width: 100%;
  background: #061932;
  z-index: 5;
}

#landingSection .wrapper {
  /* height: 900px; */
  position: relative;
}

#landingSection h1,
#landingSection h3 {
  text-align: center;
}

#landingSection h1 {
  color: #ffffff;
}

#landingSection h1.hpRed {
  color: var(--Red, #e22042);
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 128.906%;
  /* 51.563px */
}

#landingSection h3 {
  color: var(--HP-Remit-background, #f3f3f3);
  text-align: center;
  font-family: Roboto;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 128.906%;
  margin-top: 0px;
  margin-bottom: 50px;
}

#landingSection h3 span {
  color: #f70039;
}

#landingSection hr {
  height: 2px;
  width: 342px;
  background: #e9ebec;
  border: none;
  outline: none;
  margin: 0 auto;
  position: relative;
}

#landingSection hr:before,
#landingSection hr:after {
  position: absolute;
  content: "";
  top: 0;
  height: 2px;
  width: 2px;
  background: #95989a;
}

#landingSection hr:before {
  left: -1px;
}

#landingSection hr:after {
  right: -1px;
}

#landingSection hr:before,
#landingSection hr:after {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

.exchangeBox-main {
  background: #fff;
  width: 60%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.68);
  padding: 20px 20px 10px 20px;
  display: flex;
  flex-flow: column;
}

.exchangeBox {
  background: #fff;
  /* overflow: hidden; */
}

.exchangeBox {
  max-width: 100%;
  width: 100%;
}

.additionalInfo {
  /* max-width: 1064px; */
  max-width: 75%;
}

img.showError {
  position: absolute;
  bottom: -2px;
  left: 36px;
  height: 20px;
  width: auto;
  display: none;
  transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-animation-name: showErrorAnimation;
  -moz-animation-name: showErrorAnimation;
  -o-animation-name: showErrorAnimation;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-duration: 1.2s;
  -moz-animation-iteration-count: infinite;
  -o-animation-duration: 1.2s;
  -o-animation-iteration-count: infinite;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes showErrorAnimation {
  0% {
    bottom: -2px;
  }

  50% {
    bottom: 2px;
  }

  100% {
    bottom: -2px;
  }
}

@-moz-keyframes showErrorAnimation {
  0% {
    bottom: -2px;
  }

  50% {
    bottom: 2px;
  }

  100% {
    bottom: -2px;
  }
}

@-o-keyframes showErrorAnimation {
  0% {
    bottom: -2px;
  }

  50% {
    bottom: 2px;
  }

  100% {
    bottom: -2px;
  }
}

@keyframes showErrorAnimation {
  0% {
    bottom: -2px;
  }

  50% {
    bottom: 2px;
  }

  100% {
    bottom: -2px;
  }
}

#landingSection .exchangeBox .left {
  width: -webkit-calc(100% - 210px);
  width: -moz-calc(100% - 210px);
  width: -o-calc(100% - 210px);
  width: calc(100% - 210px);
  float: left;
  padding: 10px 0;
  border-radius: 8px 0px 0px 8px;
  border: 1px solid var(--HP-text--inactive, rgba(36, 53, 69, 0.4));
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0;
}

.exchangeBox button {
  width: 210px;
  float: right;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 25px;
  justify-content: space-around;
  text-transform: capitalize;
}

.send-now-text {
  color: var(--HP-text--white, #fff);
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 128.906%;
}

/* ====== Height of Entire Elements Start ====== */

#landingSection .exchangeBox .left,
.exchangeBox button {
  height: 116px;
}

#landingSection .exchangeBox .ipHold,
#landingSection .exchangeBox .countrySelector {
  height: 106px;
}

/* ====== Height of Entire Elements End ====== */

.exchangeBox button:hover {
  border-bottom: none;
}

#landingSection .exchangeBox .col-1-2:nth-child(1) {
  border-right: solid 1px #f0f0f0;
}

#landingSection .exchangeBox .ipHold,
#landingSection .exchangeBox .countrySelector {
  float: left;
  position: relative;
}

#landingSection .exchangeBox .ipHold {
  width: -webkit-calc(100% - 120px);
  width: -moz-calc(100% - 120px);
  width: -o-calc(100% - 120px);
  width: calc(100% - 120px);
  padding-left: 24px;
  position: relative;
}

#landingSection .exchangeBox .countrySelector {
  width: 120px;
  cursor: pointer;
}

#landingSection .exchangeBox .ipHold p {
  position: absolute;
  font-size: 18px;
  top: 4px;
  left: 24px;
  color: #d9d9d9;
  color: var(--HP-text--inactive, rgba(36, 53, 69, 0.4));
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.906%;
}

#landingSection .exchangeBox .ipHold table {
  width: -webkit-calc(100% - 24px);
  width: -moz-calc(100% - 24px);
  width: -o-calc(100% - 24px);
  width: calc(100% - 24px);
  float: left;
  margin-top: 10px;
}

#landingSection .exchangeBox .ipHold table span {
  color: #f70039;
  /* line-height: 60px; */
  padding-right: 12px;
}

#landingSection .exchangeBox .ipHold table input {
  width: 100%;
  /* height: 68px; */
  line-height: 68px;
}

#landingSection .exchangeBox .ipHold table span,
#landingSection .exchangeBox .ipHold table input {
  /* font-size: 60px;
	    font-weight: 600;
	    font-size: 40px; */
  /* color: var(--HP-blue-black, #001D38); */
  font-family: Roboto;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 128.906%;
  /* 30.938px */
}

#landingSection .exchangeBox .ipHold table input:disabled {
  color: #000 !important;
  -webkit-text-fill-color: #000000;
  -moz-text-fill-color: #000000;
  -o-text-fill-color: #000000;
  text-fill-color: #000000;
}

#landingSection .exchangeBox .countrySelector p {
  color: #7f8a95;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
}

#landingSection .exchangeBox .countrySelector img {
  height: 20px;
}

#landingSection .exchangeBox .countrySelector .flag {
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
  display: block;
  /* height: 36px; */
  overflow: hidden;
  display: flex;
  align-items: center;
}

#landingSection .flag-inner-img {
  display: inline-table;
  margin-right: 0px;
}

#landingSection .flag-inner-text {
  margin-left: 5px;
}

#landingSection .exchangeBox .countrySelector .flag img,
#landingSection .exchangeBox .countrySelector .flag span {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

#landingSection .exchangeBox .countrySelector .flag img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: solid 1px #dddddd;
  border-radius: 50%;
}

#landingSection .exchangeBox .countrySelector .flag span {
  line-height: 17px;
  padding-left: 4px;
  color: #7f8a95;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
}

.infoHolderBottom {
  max-width: 100%;
  margin-left: 0;
  width: 100%;
}

.additionalInfo .additionalInfo-a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.infoHolderBottom .additionalInfo {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  text-align: left;
}

#sendNow {
  border-radius: 0px 8px 8px 0px;
  background: var(--HP-secondary, #e4255e);
  justify-content: center;
}

.infoHolderBottom .additionalInfo img {
  height: 32px;
  margin-right: 10px;
}

.infoHolderBottom .additionalInfo img,
.infoHolderBottom .additionalInfo h4 {
  width: auto;
  display: inline-block;
  vertical-align: top;
}

.infoHolderBottom .additionalInfo h4 {
  color: #e60153;
  font-weight: 400;
  font-size: 20px;
  line-height: 43px;
}

.infoHolderBottom .__rates__ h5 div.cro-main,
.cro-2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cro-main {
  justify-content: space-between;
}

.cro-1 {
  margin-left: 0;
}

.cro-2 {
  margin-right: 0;
}

.cro span {
  color: #101f34;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cro span.red {
  /* font-weight: 500; */
}

.cro.cro-1 span {
  font-size: 18px;
  font-weight: 400;
  font-family: Roboto;
}

.cro.cro-1 span.red {
  font-weight: 700;
}

.infoHolderBottom .__rates__ h5 {
  /* line-height: 43px;
		font-size: 18px;
		font-weight: 400;
		color: #FFFFFF; */
  color: #101f34;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.infoHolderBottom .__rates__ h5 span.red {
  color: #f3033a;
}

.infoHolderBottom .__rates__ h5 img {
  /* height: 10px; */
  width: auto;
  display: inline-block;
  vertical-align: top;
  /* margin-top: 16px; */
}

.infoHolderBottom .appDL {
  text-align: center;
  display: inline-block;
  margin-top: 10px;
  min-height: 48px;
}

.infoHolderBottom .appDL p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
}

.infoHolderBottom .appDL .iconHolder img {
  height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: top;
}

/* ================================================
			4.2 Select your country
		================================================ */

/*#listOfDestinationCountries li:nth-child(5),*/
/*#listOfDestinationCountries li:nth-child(14),*/
/*#listOfDestinationCountries li:nth-child(51),*/
/*#countries .slides li:nth-child(5),*/
/*#countries .slides li:nth-child(14),*/
/*#countries .slides li:nth-child(15) {*/
/*	display: none;*/
/*}*/

#selectYourCountry {
  padding: 50px 0 0px 0;
}

#selectYourCountry h2,
#selectYourCountry p {
  text-align: center;
}

#selectYourCountry h2 {
  color: #001d38;
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 128.906%;
  /* 51.563px */
  text-transform: capitalize;
}

#selectYourCountry p {
  color: var(--Blue-black, #001d38);
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#countries {
  padding: 0 60px;
  margin-top: 40px;
  position: relative;
}

#countries ul.slides li .one {
  height: 174px;
  width: 174px;
  position: relative;
}

#countries ul.slides li .one .wrap {
  background: #ffffff;
  height: 126px;
  width: 126px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -63px;
  margin-top: -63px;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14);
}

#countries ul.slides li .one .wrap .__hold__ {
  height: 98px;
  width: 98px;
  margin-top: 14px;
  border-radius: 500px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14);
}

#countries ul.slides li .one .wrap,
#countries ul.slides li .one .wrap .__hold__ {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

#countries ul.slides li .one .wrap:hover {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -o-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}

/* ================================================
			4.3 Get the App Now
		================================================ */

#getTheAppNow {
  position: relative;
  overflow: hidden;
}

#getTheAppNow:before {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -171px;
  width: 100%;
  height: 342px;
  background: #f0f0f0;
}

#getTheAppNow .col_1_2 {
  width: 50%;
  float: left;
  height: 680px;
  position: relative;
}

#getTheAppNow .col_1_2:nth-child(1) {
  text-align: right;
  z-index: 11;
}

#getTheAppNow .col_1_2:nth-child(1) img {
  height: 680px;
  width: auto;
  display: inline-block;
}

#getTheAppNow h2 {
  color: var(--Blue-black, #001d38);
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 52px;
  /* 51.563px */
}

#getTheAppNow p {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: #001d38;
}

#getTheAppNow p span {
  color: #f70039;
}

#getTheAppNow .iconHolder img {
  height: 48px;
  width: auto;
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
}

/* ================================================
			4.4 Why Hello Paisa
		================================================ */

#whyHelloPaisa {
  background: #ffffff;
  padding: 0px 0px 92px 0;
  text-align: center;
}

#whyHelloPaisa .buttonHold button {
  color: var(--text-colors-text-white, #fff);
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#whyHelloPaisa p,
#meetOurPartners p {
  margin-top: 50px;
  /* max-width: 820px; */
  color: #292f38;
  font-size: 20px;
  line-height: 1.5;
}

#whyHelloPaisa .block {
  display: flex;
  overflow: hidden;
  margin-top: 90px;
  gap: 10px;
}

#whyHelloPaisa .block .col-1-3 {
  overflow: hidden;
  opacity: 1;
  display: flex;
  gap: 15px;
  align-items: center;
}

#whyHelloPaisa p {
  width: 80%;
  margin: auto;
  margin-top: 60px;
}

#whyHelloPaisa .block .col-1-3 .iconHolder img {
  height: 56px;
  width: auto;
  display: block;
}

#whyHelloPaisa .block .col-1-3 .textHolder {
  width: -webkit-calc(100% - 73px);
  width: -moz-calc(100% - 73px);
  width: -o-calc(100% - 73px);
  width: calc(100% - 73px);
  height: 73px;
  float: left;
  text-align: left;
  overflow: hidden;
}

#whyHelloPaisa .block .col-1-3 .textHolder h5 {
  text-transform: uppercase;
  color: #001d38;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-top: 0px;
}

#whyHelloPaisa .block .col-1-3 .textHolder p {
  color: #364660;
  font-size: 15px;
  line-height: 1.3;
  margin: 0;
}

#whyHelloPaisa .buttonHold {
  margin-top: 90px;
}

/* ================================================
			4.5 How it Works
		================================================ */

#howItWorks {
  position: relative;
  overflow: hidden;
}

#video4x3 {
  display: none;
}

#howItWorks video[poster] {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#howItWorks video {
  position: absolute;
  width: 100%;
  height: auto;
}

#howItWorks .verticalCover {
  z-index: 999;
}

#howItWorks .block {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

#howItWorks .block img {
  height: 110px;
  width: 110px;
  display: block;
  cursor: pointer;
  margin-bottom: 20px;
}

#howItWorks .block h1 {
  font-size: 60px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

#howItWorks .block p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 200;
}

#howItWorks .muteVideo {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 11;
  display: none;
}

/* ================================================
			4.6 Meet Our Partners
		================================================ */

#meetOurPartners {
  padding: 120px 0;
}

#meetOurPartners h1,
#whyHelloPaisa h1 {
  color: var(--Blue-black, #001d38);
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 128.906%;
}

#partners {
  margin-top: 80px;
  position: relative;
  margin-bottom: 80px;
  padding: 0 20px;
}

#partners ul li {
  text-align: center;
}

#partners ul li img {
  max-height: 86px;
  max-width: 100%;
  display: block;
}

/* ================================================
			4.7 Contact Form
		================================================ */

#btmElem {
  background: var(--HP-screen-background, #e9ebec);
}

#contactForm {
  position: relative;
  padding-top: 170px;
  /* padding-bottom: 185px; */
  /* height: 800px; */
}

#contactForm .container.d-flex {
  padding-bottom: 185px;
}

#contactForm .wpcf7-response-output {
  font-size: 20px;
  line-height: 20px;
  margin: 0px;
  font-family: Roboto;
  font-weight: 900;
  border: none;
  color: #e4255e;
  padding: 10px 0px;
}

#contactForm .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  font-weight: normal;
  display: block;
  padding-left: 10px;
  position: absolute;
}

#contactForm .wpcf7-spinner {
  left: -70px;
  top: 8px;
}

#contactForm .container.d-flex {
  align-items: center;
}

#contactForm .col-1-2:nth-child(1) {
  display: flex;
  /* align-items: start; */
  flex-wrap: wrap;
  flex-flow: column;
  justify-content: end;
  color: #fff;
  padding-right: 80px;
  gap: 20px;
  color: var(--HP-blue-black, #001d38);
  text-align: right;
  /* font-family: Roboto; */
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 128.906%;
  /* 51.563px */
}

#contactForm h2 {
  font-size: 50px;
  line-height: 60px;
  margin: 0px;
  text-align: end;
  font-family: Roboto;
  font-weight: 900;
}

#contactForm p {
  font-size: 18px;
  color: var(--HP-blue-black, #001d38);
  /* margin: 30px 0 10px 0; */
  font-weight: 400;
}

#contactForm .col-1-2:nth-child(2) p {
  margin: 0 0 10px 0;
}

p#callCentre {
  /* margin-top: 50px;
		margin-bottom: 40px; */
}

#contactForm h3 {
  font-size: 28px;
  line-height: 44px;
  font-weight: 600;
  margin: 0px;
  text-align: end;
  font-weight: 900;
}

.d-flex {
  display: flex;
}

#contactForm h3 a:hover {
  text-decoration: underline;
}

#mainForm table {
  width: 100%;
}

#mainForm table tr td {
  padding-bottom: 20px;
}

.sendMailButton-b {
  padding-bottom: 0px !important;
}

.countryListContactForm-2 {
  margin-left: 0px;
}

.home-social-contact {
  display: flex;
  flex-flow: column;
  gap: 12px;
}

#mainForm table tr td input,
#mainForm .countryListContactForm {
  background: #fff;
  font-size: 9px;
  font-weight: 400;
  color: #000;
  height: 48px;
  line-height: 40px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -o-border-radius: 24px;
  border-radius: 24px;
  padding: 0 24px;
  width: 100%;
  /* border: solid 1px #DDDDDD; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
  display: flex;
  align-items: center;
}

#mainForm table tr td input:focus {
  border: solid 1px rgba(346, 100, 97, 0.8);
}

#mainForm table tr td input.error {
  -webkit-animation: shake 0.5s linear;
  -moz-animation: shake 0.5s linear;
  -o-animation: shake 0.5s linear;
  animation: shake 0.5s linear;
}

/* ====== Error Shake Animation ====== */

@-webkit-keyframes shake {
  8%,
  41% {
    -webkit-transform: translateX(-10px);
  }

  25%,
  58% {
    -webkit-transform: translateX(10px);
  }

  75% {
    -webkit-transform: translateX(-5px);
  }

  92% {
    -webkit-transform: translateX(5px);
  }

  0%,
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes shake {
  8%,
  41% {
    -moz-transform: translateX(-10px);
  }

  25%,
  58% {
    -moz-transform: translateX(10px);
  }

  75% {
    -moz-transform: translateX(-5px);
  }

  92% {
    -moz-transform: translateX(5px);
  }

  0%,
  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes shake {
  8%,
  41% {
    -o-transform: translateX(-10px);
  }

  25%,
  58% {
    -o-transform: translateX(10px);
  }

  75% {
    -o-transform: translateX(-5px);
  }

  92% {
    -o-transform: translateX(5px);
  }

  0%,
  100% {
    -o-transform: translateX(0);
  }
}

@-keyframes shake {
  8%,
  41% {
    transform: translateX(-10px);
  }

  25%,
  58% {
    transform: translateX(10px);
  }

  75% {
    transform: translateX(-5px);
  }

  92% {
    transform: translateX(5px);
  }

  0%,
  100% {
    transform: translateX(0);
  }
}

/* ====== Error Shake Animation ====== */

.col-1-2-left a {
  margin-right: 0;
}

#mainForm table tr td button,
button#userManual {
  height: 48px;
  width: 250px;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  background: #e4255e;
}

#mainForm table tr td button {
  /* width: 175px; */
  margin-top: 20px;
}

button#userManual {
  /* margin-top: 42px; */
  text-transform: none;
}

#loaderImage {
  vertical-align: middle;
  display: none;
  vertical-align: top;
  margin-left: 2px;
}

#loaderImage img {
  height: 10px !important;
  width: 10px !important;
  display: inline-block !important;
  margin-bottom: 0 !important;
}

#errors {
  color: #ddd;
  font-size: 14px;
}

#mainForm .countryListContactForm {
  cursor: pointer;
  text-transform: uppercase;
  color: #7f8a95;
  position: relative;
}

#mainForm .countryListContactForm .iconHolder {
  position: absolute;
  right: 20px;
  top: 12px;
  height: 26px;
  padding-left: 15px;
  border-left: solid 1px #dddddd;
}

#mainForm .countryListContactForm .iconHolder img {
  height: 15px;
  width: auto;
}

#mainForm .countryListContactForm .iconHolder img {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
}

img.withBorder {
  border: solid 1px #dddddd !important;
}

img.smallIcon {
  height: 8px !important;
  margin-top: 9px !important;
}

#mainForm .countryListContactForm .iconHolder span {
  font-size: 11px;
  line-height: 24px;
  padding: 0 6px;
  display: inline-block;
  vertical-align: top;
  color: #7f8a95;
}

.mobileNumberHolder {
  position: relative;
}

.mobileNumberHolder:after {
  position: absolute;
  content: "MOBILE NUMBER [ +44 ]";
  left: 0;
  top: 17px;
  height: auto;
  width: 131px;
  border-right: solid 3px #f0f0f0;
  line-height: 15px;
  text-align: left;
  font-size: 9px;
  font-weight: 400;
  color: #7f8a95;
  padding-left: 24px;
}

input#mobileNumber {
  padding-left: 142px !important;
}

/* ====================================================

		5. Country Page 

	==================================================== */

/* ================================================
			5.1 Landing Section 
		================================================ */

#landingSection img.countryFlag {
  height: 704px;
  width: auto;
  position: absolute;
  top: 100px;
  left: 0;
}

/* ================================================
			5.2 Payout Points & Methods
		================================================ */

#pointsMethods {
  text-align: center;
  padding: 20px 0;
}

#pointsMethods h3 {
  position: relative;
  text-transform: uppercase;
  color: #f70039;
}

#pointsMethods h3:before,
#pointsMethods h3:after {
  position: absolute;
  content: "";
  top: 18px;
  height: 2px;
  background: #d9d9d9;
  width: -webkit-calc(50% - 200px);
  width: -moz-calc(50% - 200px);
  width: -o-calc(50% - 200px);
  width: calc(50% - 200px);
}

#pointsMethods h3:before {
  left: 0;
}

#pointsMethods h3:after {
  right: 0;
}

ul.__points__ li,
ul.__methods__ li {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

ul.__points__ {
  padding: 48px 0;
}

ul.__points__ li {
  margin: 4px;
}

ul.__points__ li img {
  height: 36px;
  width: auto;
  display: block;
}

ul.__methods__ {
  padding: 30px 0;
}

ul.__methods__ li {
  font-size: 20px;
  color: #a7a7a7;
  font-weight: 200;
  margin: 0 16px;
  position: relative;
}

ul.__methods__ li:after {
  position: absolute;
  content: "";
  height: 24px;
  width: 2px;
  background: #a7a7a7;
  top: 6px;
  right: -16px;
}

ul.__methods__ li:last-child:after {
  display: none;
}

.desktop-none {
  display: none;
}

/* ================================================
			New Header 08-09-2023 Arshad Ali
		================================================ */
/* 7. Meet our Partners start */
.container.gallery-container {
  background-color: #fff;
  color: #35373a;
  /* min-height: 100vh;
			padding: 30px 50px; */
}

.gallery-container p.page-description {
  text-align: center;
  margin: 25px auto;
  font-size: 18px;
  color: #999;
}

.tz-gallery {
  margin-top: 40px;
}

.tz-gallery .row.d-flex {
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-grow: 4;
  margin: auto;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
  padding: 2px;
}

.tz-gallery .lightbox img {
  border-radius: 0;
  position: relative;
}

.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  font-family: "Glyphicons Halflings";
  content: "\e003";
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
}

.tz-gallery-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 4;
  min-height: 130px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px !important;
}

.with-65 {
  width: 65% !important;
}

.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(46, 132, 206, 0.7);
  content: "";
  transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}

.baguetteBox-button {
  background-color: transparent !important;
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }
}

/* 7. Meet our Partners stop */

.ui-0-0 img {
  width: 70%;
  max-width: 70%;
}

#selectYourCountry {
  /*display:none !important;*/
}

.arrow-icon-popup {
  position: relative;
}

.arrow-icon-popup img {
  position: absolute;
  right: 20%;
  width: auto;
  height: 26px;
}

.arrow-icon-popup-2 img {
  top: -15px;
}

.arrow-icon-popup-1 img {
  top: -8px;
}

.exchangeBox-top {
  width: 100%;
}

.mf-c p input {
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  height: 48px;
  line-height: 40px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -o-border-radius: 24px;
  border-radius: 24px;
  padding: 0 24px;
  width: 100%;
  /* border: solid 1px #DDDDDD; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
  display: flex;
  align-items: center;
}

.mf-c p {
  margin-bottom: 20px !important;
}

.m-f-6 input {
  width: 250px;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  background: #e4255e;
  padding: 0px 42px;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
}

.m-f-6 input:hover {
  border-bottom: solid 3px rgba(0, 0, 0, 0.2);
}

.d-none{
   display: none;
}
.margin-right-0{
    margin-right:0;
}
.margin-left-0{
    margin-left:0;
}
.hellopaisa-global-logo{
    width: 20%;
    margin: 32px auto;
    background: #fff;
    padding: 20px;
    margin-bottom: 0;
    border-radius: 20px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.new-zero-text h3{
    font-size: 40px !important;
  line-height: 40px !important;
  margin-top: 32px !important;
}
.new-zero-text .zero-text-2{
    font-size: 36px !important;
    line-height: 40px;
}
.app-link-inner{
    background-repeat: no-repeat;
  background-position: left;
  background-size: inherit;
}
.app-link {
    /*background: #fff;*/
    margin-bottom: 30px;
}


.app-link-left-text {
    width: 70%;
	margin: auto;
}

.app-link-main {
    background-position: center;
    background-size: contain;
}
.app-link-inner-main{
   /*background: #ffffff78; */
}

.app-link-right-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 121%;
    letter-spacing: 0%;
    text-align: center;
    color:#fff;
    margin-bottom:15px;
}

.app-link-left-text h2 {
    font-family: Roboto;
    font-weight: 900;
    font-size: 32px;
    line-height: 129%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    margin: 0;
}
.app-link-right{
   
}

.app-link-inner {
    display: flex;
    width: 100%;
    margin: auto;
    padding: 30px;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    gap: 35px;
    padding-top: 0px;
}

.app-img {
    display: flex;
    gap: 16px;
	justify-content: center;
}

#landingSection .exchangeBox .ipHold table span,
#landingSection .exchangeBox .ipHold table input {
    font-size: 28px;
}

.call-center:hover .call-number {
    text-decoration: underline;
}

.call-center .call-number {
    margin-left: 5px;
}

.form-static-country-code-tel {
    width: 100%;
}

h3.whatsapp-con .mt-2 {
    margin-top: 10px;
}

#contactForm h3 {
    font-size: 30px;
    line-height: 38px;
}

.call-Center-main {
    margin: 0;
}

.form-static-country-code {
    display: flex;
    position: absolute;
    z-index: 2;
    left: 10px;
}

.country-code-number {
    font-size: 16px !important;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.m-f-3 {
    display: flex;
    align-items: center;
    position: relative;
}

.mf-c.m-f-3 p input {
    padding-left: 74px !important;
}

.m-f-3 .flag-container {
    width: 50px !important;
    background: transparent !important;
}

.zero-text-main {
    margin-bottom: 30px;
}

.zero-text-1 {
    line-height: 103.13px !important;
    font-size: 80px !important;
    margin-bottom: 0px !important;
}

.zero-text-2 {
    font-family: Roboto;
    font-size: 80px;
    font-weight: 300;
    line-height: 103.13px;
    text-align: center;
    color: #f3f3f3;
}

.exchangeBox-main {
    width: 64%;
	margin: auto;
}

#landingSection .exchangeBox .ipHold table span {
    padding-right: 6px;
}

.zim-info {
    padding-top: 10px;
    text-align: center;
}

.zim-info p {
    color: #292f38;
    font-size: 20px;
}

.zim-info p img {
    height: 48px;
    width: auto;
    display: inline-block;
    vertical-align: top;
    margin-top: -12px;
}

#contactForm .container.d-flex {
    align-items: center;
}

#contactForm .col-1-2:nth-child(1) {
    gap: 100px;
    padding-right: 48px;
}

#contactForm .home-social-contact {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin: 0px;
}

#contactForm h2 {
    font-size: 40px;
    line-height: 48px;
}

.footer-inner-1 {
    text-align: left;
    padding-right: 100px;
}

#contactForm .whatsapp-con span {
    margin: 0px;
}

.col-1-2-left a.whatsapp-con-inner {
    display: flex !important;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

#footer .footer-inner {
    width: 75%;
    margin: auto;
}

.privaci-and-policy {
    margin-right: 10px;
}

.m-f-5 textarea {
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    height: 200px;
    line-height: 40px;
    width: 100%;
    border-radius: 20px;
    padding: 11px 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
    display: flex;
    align-items: center;
}

#contactForm .wpcf7-not-valid-tip {
    width: 250px;
    bottom: -1px;
    display: flex;
}

@media only screen and (max-width: 1224px) {
    .app-link-inner{
        flex-flow: column;
        gap: 45px;
        background: none !important;
    }
    .app-link-left-text {
  width: 100%;
}
.app-link-right{
    margin-left: 0px;
    margin: auto;
}
.new-zero-text{
    margin-top:20px;
}
    .zim-info {
        padding-bottom: 40px;
    }

    .exchangeBox-main {
        width: 95% !important;
    }

    .zim-info p {
        font-size: 15px;
    }

    #footer .footer-inner {
        width: 100% !important;
        margin: auto;
    }

    .footer-inner-1 {
        padding-right: 20px;
    }

    .footer-inner-2 ul {
        margin: auto !important;
    }

    .footer-inner-2 {
        margin-left: 0px;
        margin-right: 0px;
    }

    #footer ul.info {
        display: flex;
        text-align: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 780px) {
	.hellopaisa-global-logo{
		width: 60% !important;
	}
	.nav-links li a:focus::before{
		bottom: 0;
	}
    .col-1-2-left a.whatsapp-con-inner {
        justify-content: center;
    }

    .exchangeBox-main {
        width: 95% !important;
    }

    .call-Center-main h3 a {
        display: flex;
        justify-content: end;
        text-align: center;
        flex-direction: column;
    }

    .call-Center-main h3 a span {
        margin: 0 !important;
    }

    h3.whatsapp-con a {
        width: 100%;
        justify-content: center;
    }

    #contactForm h3 {
        font-size: 20px !important;
        line-height: 28px !important;
        margin-bottom: 10px !important;
    }

    #contactForm .col-1-2:nth-child(1) {
        gap: 30px;
    }
    #contactForm .col-1-2:nth-child(1) {
        text-align: center;
        padding-right: 0 !important;
        width: 100%;
    }
    #contactForm .col-1-2{
        margin: auto;
    }
}

@media only screen and (max-width: 600px) {
    ul.info {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 10px;
    }

    ul.info li:first-child {
        grid-column: span 4;
    }

    ul.info li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

@media only screen and (max-width: 410px) and (min-width: 350px) {
    header .logo img {
        width: 96px !important;
    }
}

@media only screen and (max-width: 350px) and (min-width: 250px) {
    header .logo img {
        width: 92px !important;
    }

    .loginRegister li a {
        padding: 8px 11px;
    }
}

@media only screen and (max-width: 1050px) and (min-width: 768px) {
  .loginRegister li a {
    padding: 4px 15px !important;
  }
   header .nav-div #slide-navbar-collapse {
    width: 56% !important;
  }
  .nav-links a{
	padding-left: 5px !important;
  padding-right: 5px !important;
  }
  .nav-div-3 .loginRegister{
	gap: 9px;
  }
    header .nav-div .navbar-header {
    width: 17%;
  }
}
@media only screen and (max-width: 1250px) and (min-width: 1050px) {
	header .nav-div{
		z-index: 22;
  position: relative;
	}
	  .loginRegister li a {
    padding: 4px 15px !important;
  }
   header .nav-div #slide-navbar-collapse {
    width: 66% !important;
  }
 
  .nav-div-3 .loginRegister{
	gap: 9px;
  }
    header .nav-div .navbar-header {
    width: 17%;
  }
}

@media only screen and (max-width: 1225px) and (min-width: 900px) {
    .zero-text-main {
        margin-bottom: 30px;
    }

    .zero-text-1 {
        line-height: 80px !important;
        font-size: 60px !important;
        margin-bottom: 0px !important;
    }

    .zero-text-2 {
        font-family: Roboto;
        font-size: 60px !important;
        font-weight: 300;
        line-height: 80px !important;
        text-align: center;
        color: #f3f3f3;
    }
}

@media only screen and (max-width: 900px) {
    .zero-text-main {
        margin-bottom: 30px;
    }

    .zero-text-1 {
        line-height: 50px !important;
        font-size: 50px !important;
        margin-bottom: 0px !important;
    }

    .zero-text-2 {
        font-size: 38px !important;
        line-height: 50px;
        margin-bottom: 0px !important;
    }
}

@media only screen and (max-width: 767px) {
  /*.ui-0-0 img{*/
  /*    max-width: 100%;*/
  /*    width: auto;*/
  /*}*/
  header {
    z-index: 11;
  }

  .mobile-display-none {
    display: none !important;
  }

  .text-end {
    text-align: end;
  }

  .desktop-none {
    display: block;
  }

  header .navbar-default .container-fluid,
  .top-header-home {
    padding-right: 15px;
    padding-left: 15px;
  }

  header .navbar-default .container-fluid {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-links-main,
  .nav-links {
    display: block;
  }

  .top-header-home {
    z-index: unset;
  }

  header .nav-div #slide-navbar-collapse {
    text-align: left;
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }

  .nav-links a.cross-x {
    width: 30px;
    margin-right: 10px;
  }

  .nav-links li {
    border-bottom: 1px solid #ccc;
    width: 100%;
  }

  .nav-links li a.link-active::before {
    display: none;
  }

  header .nav-div .navbar-header {
    width: 40%;
  }

  header .nav-div {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  header .logo img {
    width: 120px !important;
    margin-top: 0px !important;
    height: auto !important;
  }

  header .navbar-default .navbar-toggle {
    margin: 0px;
    border: none;
    padding: 0px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: #000;
  }

  .loginRegister li a {
    padding: 8px 24px;
    border-radius: 4px;
  }

  header ul.loginRegister {
    height: unset !important;
    width: 100% !important;
  }

  .nav-div-3 {
    width: 60%;
  }

  .nav-div-3 .loginRegister {
    gap: 15px;
    align-items: center;
  }

  header .logo.navbar-brand {
    height: unset !important;
    padding-left: 20px !important;
  }

  .navbar-header.nav-div-1 {
    display: flex;
  }

  .loginRegister li a,
  .loginRegister li.login a {
    font-size: 14px;
  }

  #slide-navbar-collapse {
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 99;
    width: 280px;
    height: 100%;
    background-color: #fff;
    overflow: auto;
  }

  .menu-overlay {
    display: none;
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    filter: alpha(opacity=50);
    /* IE7 & 8 */
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
  }
}
