/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2866ce;
}

a:hover {
  color: #1e53ad;
  text-decoration: none;
}


.form-control {
  border-radius: 0;
  border: 1px solid #dedede;
}

p {
  font-size: 13px;
}

.owl-dots {
  display: none;
}

.owl-dots:focus {
  outline: none;
}

/* S4 28|NOV|2020 start */
#footer .footer-top .footer-newsletter form input[type="button"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #f3a747;
  color: #000;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.forgot-padding a {
	float: right;
}

/* End S4 28|NOV|2020 start */


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

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

.punchline {
  color: #2866ce;
  white-space: nowrap;
  font-style: italic;
  font-size: 16px;
  line-height: 20px;
  margin: 1em 0em 1em 3em;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 90px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #486dc5;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3c5fb3;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.scrolled #header {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .mobile-nav-toggle {
  top: 27px;
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 35px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #265ab3;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #010e23;

}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

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

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0b2341;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #f3a747;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

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

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

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

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #f3a747;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #ef6445;
  color: #fff;
}

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

.mobile-nav-toggle i {
  color: #0b2341;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #0b2341;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f3a747;
  text-decoration: none;
}

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

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

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

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

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

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(4, 12, 21, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


/* Button Animation*/

.round {
  position: absolute;
  left: 48.6%;
  bottom: 9%;
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transform: rotate(180deg);
}

#ctaBtn{
  width:100%; 
  cursor: pointer; 
  position: absolute;
  top: -3px;
  transform: rotate(270deg);
}

#ctaBtn .arrow {
  left: 30%;
}

.arrow {
  position: absolute; 
  bottom: 0;  
  margin-left:0px; 
  width: 32px;
  height: 32px;
  background-size: contain;
  top: -15px;
}
.segunda{margin-left: 8px;}

@keyframes bounceAlpha {
  0% {opacity: 1; transform: translateX(0px) scale(1);}
  25%{opacity: 0; transform:translateX(10px) scale(0.9);}
  26%{opacity: 0; transform:translateX(-10px) scale(0.9);}
  55% {opacity: 1; transform: translateX(0px) scale(1);}

/* 0% {opacity: 1; transform: translateY(0px) scale(1);}
25%{opacity: 0; transform:translateY(10px) scale(0.9);}
26%{opacity: 0; transform:translateY(-10px) scale(0.9);}
55% {opacity: 1; transform: translateY(0px) scale(1);} */
}

.bounceAlpha {
  animation-name: bounceAlpha;
  animation-duration:1.4s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
}

.arrow.primera.bounceAlpha {
  animation-name: bounceAlpha;
  animation-duration:1.4s;
  animation-delay:0.2s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
}

.round .arrow{
  animation-name: bounceAlpha;
  animation-duration:1.4s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
}
.round .arrow.primera{
  animation-name: bounceAlpha;
  animation-duration:1.4s;
  animation-delay:0.2s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
}

section#hero {
  padding: 0;
}

#hero {
  width: 100%;
  height: 100vh;
  background-color:#eee;
  overflow: hidden;
  position: relative;
}
.signup-form,
.forgot-form {
  display: none;
}

.signup-form,
.forgot-form,
.login-form {
  width: 80%;
  margin-left: 3em;
}

.signup-form .form-control,
.forgot-form .form-control,
.login-form .form-control {
  border-radius: 0;
  border: 2px solid #bbb;
  height: 50px;
}

.signup-form .form-control:focus,
.forgot-form .form-control:focus,
.login-form .form-control:focus {  
  outline: none;
  box-shadow: 0 0 black;
}

.signup-form form,
.forgot-form form,
.login-form form {
  width: 70%;
}

#hero .signup-form p.simple-text,
#hero .forgot-form p.simple-text,
#hero .login-form p.simple-text {
  font-size: 17px;
  color: #111;
  width: 80%;
  margin: 1em 0;
}

#hero .signup-form .form-group p.simple-text,
#hero .forgot-form .form-group p.simple-text,
#hero .login-form .form-group p.simple-text {
  font-size: 13px;
  width: 100%;
  color: #999;
}

.banner-img {
  height: 100%;
  width: 100%;
  padding-top: 10%;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  /* background-color: rgba(4, 12, 21, 0.5); */
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #486dc5;
  margin: 0;
  margin-top: 1em;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #486dc5;
  margin-top: 10px;
  font-size: 1.2em;
}

@media (min-width: 1440px) {
  .banner-img {
    padding-top: 5%;
  }

  .round {
    left: 49.2%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
  display: none;
}

.carousel-indicators {
  display: none;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #f3a747;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #f3a747;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #e49128;
}

.btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #000;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #f3a747;
  margin-top: 15px;
}

.btn:hover {
  background: #e49128;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(243 167 71 / 40%);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-title {
  padding-bottom: 10px;
  text-align: center;
}

.section-title h2 {
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0 0 2.5em 0;
  text-transform: capitalize;
  color: #0f2f57;
  font-family: "Poppins", sans-serif;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  color: #486dc5;
}

.section-title-description {
  padding-bottom: 20px;
}

.section-title-description p {
  width: 41%;
  text-align: center;
  color: #010e23;
  margin: 0 auto;
  font-size: 18px;
  line-height: 23px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about,
.testimonials  {
    background-color: #e4e4e4;
}

.about .icon-box {
  text-align: center;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
}

.about .icon-box img {
  width: 50%;
}


.about .icon-box:hover img {
  filter: brightness(400%);
}

.about .icon-box .icon {
  margin: 0 auto;
  width: 104px;
  height: 104px;
  background: #fff;
  border-radius: 50%;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.about .icon-box .icon i {
  color: #486dc5;
  font-size: 28px;
}

.about .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.about .icon-box h4 a {
  color: #486dc5;
}

.about .icon-box p {
  line-height: 24px;
  font-size: 12px;
  width: 80%;
  margin-bottom: 0;
  margin: 0 auto;
  font-weight: 600;
}

.about .icon-box:hover .icon {
  background: #486dc5;
}

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

.about .icon-box:hover .icon::before {
  background: #5c7399;
}

/*--------------------------------------------------------------
# ourPartners
--------------------------------------------------------------*/
section.ourPartners {
  padding: 30px 0;
}

.ourPartners .ourPartner-wrap {
  padding-left: 50px;
}

.ourPartners .ourPartner-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.ourPartners .owl-item .testimonial-item h5 {
  color: #b3b3b3;
  text-align: center;
}

.ourPartners .owl-carousel .owl-item img {
  margin: 0 auto;
  width: 60%;
}

.ourPartners .ourPartner-item .ourPartner-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.ourPartners .ourPartner-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.ourPartners .ourPartner-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.ourPartners .ourPartner-item .quote-icon-left, .ourPartners .ourPartner-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.ourPartners .ourPartner-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.ourPartners .ourPartner-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.ourPartners .ourPartner-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.ourPartners .owl-nav, .ourPartners .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.ourPartners .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.ourPartners .owl-dot.active {
  background-color: #f3a747 !important;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

section#testimonials  {
  padding: 170px 0;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 10px 50px 10px 0px;
  margin: 0 15px;
  text-align: center;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 15px 0;
  color: #4885ed;
  font-family: "Open Sans", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 12px;
  color: #2455a7;
  margin: 0;
  font-weight: 900;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  color: #000;
  font-size: 16px;
  margin: 15px auto 15px auto;
  width: 60%;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #f3a747 !important;
}


/*--------------------------------------------------------------
# Rating
--------------------------------------------------------------*/

.rating {
  display: inline-block;
  display: none;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
}

.rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.rating label:last-child {
  position: static;
}

.rating label:nth-child(1) {
  z-index: 5;
}

.rating label:nth-child(2) {
  z-index: 4;
}

.rating label:nth-child(3) {
  z-index: 3;
}

.rating label:nth-child(4) {
  z-index: 2;
}

.rating label:nth-child(5) {
  z-index: 1;
}

.rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.rating label .icon {
  float: left;
  color: transparent;
}

.rating label:last-child .icon {
  color: #000;
}

.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
  color: #09f;
}

.rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #000;
  text-shadow: 0 0 5px #09f;
}

/*--------------------------------------------------------------
# loyalty
--------------------------------------------------------------*/

section#loyalty {
  background: #fff;
  padding: 0;
}

.loyalty-img {
  height: 100%;
  width: 100%;
  transform: translate(0, -50px);
  box-shadow: 0px 0px 30px -10px rgb(0 0 0 / 63%);
}

.loyalty-content {
  display: flex;
  margin-left: 8.5em;
  flex-flow: column;
}

.loyalty-content .section-title {
  text-align: left;
}

.loyalty-content .section-title-description p {
  width: 54%;
  margin: 0;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}


/*--------------------------------------------------------------
# Merchant Partner
--------------------------------------------------------------*/

section#merchantPartner {
  background: #fff;
  padding: 0;
}


section#loyaltyPrograms .section-heading,
section#merchantPartner .section-heading {
  color: #696969;
  font-size: 22px;
  line-height: 35px;
  width: 80%;
  margin: 50px auto;
  font-weight: 700;
  text-align: center;
}

section#merchantPartner .section-heading,
section#merchantPartner .section-heading {
  margin: 10px auto 50px;
}


.loyaltyPrograms .box-content,
.merchantPartner .box-content {
  background: #222;
  padding: 30px;
  color: #fff;
}

.loyaltyPrograms .box-content h3,
.merchantPartner .box-content h3 {
  line-height: 45px;
  font-size: 35px;
  font-weight: 600;
}


.loyaltyPrograms-img,
.merchant-partner-img {
  width: 100%;
}


.loyaltyPrograms .box-content p,
.merchantPartner .box-content p {
  margin: 25px 0 16px;
  font-size: 23px;
  line-height: 30px;
  width: 70%;
}

.merchantPartner-content .section-title {
  text-align: left;
}

.merchantPartner-content .section-title-description p {
  width: 60%;
  margin: 0;
  text-align: left;
  font-size: 21px;
  line-height: 25px;
}

.merchantPartner .btn,
.loyaltyPrograms .btn {
  padding: 14px 52px;
}



/*--------------------------------------------------------------
# Merchant Partner
--------------------------------------------------------------*/

section#loyaltyPrograms {
  background: #fff;
  padding: 0;
}


.loyaltyPrograms-content {
  display: flex;
  margin-left: 10em;
  flex-flow: column;
}

.loyaltyPrograms-content .section-title {
  text-align: left;
}

.loyaltyPrograms-content .section-title-description p {
  width: 80%;
  margin: 0;
  text-align: left;
  font-size: 21px;
  line-height: 25px;
}



/*--------------------------------------------------------------
# Earning
--------------------------------------------------------------*/
section#earning {
  margin-top: 10em;
  background: #222;
  padding: 60px 0 0;
}

#earning .section-title p {
  color: #fff;
}

.earning .section-title-description {
  padding-bottom: 0;
}


.earning .section-title-description p {
  color: #ccc;
}

.earning .row {
  transform: translate(0px, 80px);
}

.earning .box {
  padding: 0 0 40px 0;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px -10px rgb(0 0 0 / 63%);
  background: #fff;
  text-align: center;
}

.earning .box img {
  width: 100%;
  margin-bottom: 40px;
}

.earning .box p {
  width: 61%;
  text-align: center;
  line-height: 24px;
  margin: 0 auto 40px;
  color: #2d2d2d;
}


.earning h3 {
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 20px;
  color: #030102;
}

.earning h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.earning h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
section#contact {
  padding: 60px 0 0;
}

#contact {
  background: #222;
}

.contact .info-box {
  color: #fff;
  text-align: center;
  padding: 20px 0 30px 0;
}

.contact .info-box img {
  margin-bottom: 2em;
}
.contact .info-box i {
  font-size: 32px;
  color: #f3a747;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #ccc;
}

.contact .php-email-form {
  padding: 30px;
  background: #fff;
  transform: translate(0px, -100px);
  box-shadow: 0 0 30px rgb(33 33 33 / 16%);
}

.contact .section-title {
  padding-bottom: 0;
}

.contact .section-title-description {
  padding-bottom: 40px;
}

.contact .section-title-description p {
  color: #222222;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #f3a747;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #f3a747;
  border: 0;
  padding: 10px 30px;
  border-radius: 50px;
  color: #000;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #e49128;
}

.contact .php-email-form button[type="submit"]:focus {
  outline: none;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

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

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

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #f3a747 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #05101e;
  font-size: 14px;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #fff;
  text-align: center;
  padding: 30px 20px;
}

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

#footer .footer-top .social-links a {
  font-size: 17px;
  display: block;
  color: #222;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: left;
  height: 36px;
  transition: 0.3s;
  background: transparent;
  margin-bottom: 3px;
}

#footer .footer-top .social-links a i {
  margin: 0px 10px 0px;
}

.social-seprator {
  display: block;
  padding: 8px 0;
}

.footer-links {
  border-left: 1px solid;
  border-right: 1px solid;
}
.footer-links.no-broder-left {
  border-left: 0px solid;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #f3a747;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 25px;
  font-weight: 600;
  color: #4885ed;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links, #footer .footer-top .footer-newsletter {
  margin: 30px 0;
}

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

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #05101e;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #eee;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  background: #eee;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="email"]:focus {
  outline: none;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #f3a747;
  color: #000;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

#footer .copyright {
  border-top: 1px solid #eee;
  text-align: center;
  padding-top: 15px;
  margin-top: 15px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* Extra css */

.forgot-padding{
  padding-top: 1.4rem !important;
  font-size: 15px;
}


.tosp
{
  padding-top: 125px;
}

/* End extra css */

@media (min-width: 1200px) {
  #header .container, #header .container-lg, #header .container-md, #header .container-sm, #header .container-xl {
      max-width: 1240px;
  }
}

@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .login-section {
      flex-direction: column;
    }

    .login-section > div {
      max-height: 60vh;
      overflow: hidden;
      flex: 0 0 100%;
      max-width: 100%;
  }
}


/* Vikas Purohit 25|Dec|2020 start */


@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .row.login-section {
      height: 100vh;
    }

}

@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .loyalty-content {
      margin-left: 3.5em;
    }

    .loyalty-content .section-title {
        padding-top: 1.3em;
    }

    .loyalty-content .section-title-description p {
      width: 84%;
  }

}
/* Vikas Purohit 25|Dec|2020 end */

@media (min-width: 980px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media screen and ( max-width: 979px) {
  .login-section {
    flex-direction: column;
  }
  .about .icon-box {
    width: 100%;
  }
  .mobile-nav-toggle {
    top: 30px;
  }

  .loyalty-content .section-title-description p {
    width: 84%;
  }
  .scrolled .mobile-nav-toggle {
    top: 24px;
  }
  
  .loyalty-content {
    margin-left: 4em;
  }
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
  #hero {
    height: auto;
  }
  #hero h2 {
    font-size: 30px;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
  .ourPartners .ourPartner-wrap {
    padding-left: 0;
  }
  .ourPartners .ourPartner-item {
    padding: 30px;
    margin: 15px;
  }
  .ourPartners .ourPartner-item .ourPartner-img {
    position: static;
    left: auto;
  }
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
  #header .logo {
    font-size: 28px;
  }
  #header .logo img {
    max-height: 40px;
  }
  .round {
    display: none;
  }
  .breadcrumbs {
    margin-top: 74px;
  }
  .earning .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }

  section#merchantPartner .section-heading {
    margin: 50px auto 50px;
  }
  
  .loyaltyPrograms-content {
    margin-top: 4em;
    margin-left: 2em;
  }
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
  
  .footer-links {
    border-left: 0;
    border-right: 0;
}
}



@media screen and (max-width: 500px) {

  #hero {
    height: auto;
  }

  #header,
  .scrolled #header {
    padding: 10px 0;
  }

  .mobile-nav-toggle,
  .scrolled .mobile-nav-toggle {
    top: 17px;
  }

  #header .container  {
    flex-direction: column;
  }
  .punchline {
    margin: 0;
  }
  .signup-form, .forgot-form, .login-form {
    margin-left: 2em;
  }
  .signup-form form, .forgot-form form, .login-form form {
    width: 100%;
  }
  .section-title-description p {
    width: 90%;
  }
  .earning .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
  .merchantPartner-content.ml-5 {
    margin-left: 10rem!important;
  }

  .merchantPartner-content .section-title-description p {
    width: 90%;
  }

  .loyalty-content {
    margin-left: 2em;
}
  .loyalty-content .section-title-description p {
    width: 90%;
  }

  .testimonials .testimonial-item p {
    width: 100%;
  }

  .earning .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }

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

  section#merchantPartner .section-heading {
    margin: 50px auto 50px;
  }

  .merchantPartner-content.ml-5 {
    margin-left: 2em!important;
  }

  .merchantPartner-content .section-title-description p {
    width: 90%;
  }
  section#merchantPartner .section-heading {
    margin: 50px auto 50px;
  }

  #header .logo img {
    max-height: 40px;
  }
}