@font-face {
    font-family: 'SourceSansPro';
    src: url('../font/SourceSansPro-Regular.ttf');
}

@font-face {
    font-family: 'SourceSansProLight';
    src: url('../font/SourceSansPro-Light_1.otf');
}

@font-face {
    font-family: 'Museo700';
    src: url('../font/Museo700-Regular_6.otf');
}

@font-face {
    font-family: 'Museo500';
    src: url('../font/Museo500-Regular.otf');
}
@font-face {
  font-family:'elaina';
  src: url('../font/elaina/elaina.eot');
  src: url('../font/elaina/elaina.eot?#iefix') format('embedded-opentype'),
      url('../font/elaina/elaina.woff2') format('woff2'),
      url('../font/elaina/elaina.woff') format('woff'),
      url('../font/elaina/elaina.svg#elaina') format('svg');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
}
@font-face {
  font-family:'edwardian';
  src: url('../font/edwardian/edwardian.eot');
  src: url('../font/edwardian/edwardian.eot?#iefix') format('embedded-opentype'),
      url('../font/edwardian/edwardian.woff2') format('woff2'),
      url('../font/edwardian/edwardian.woff') format('woff'),
      url('../font/edwardian/edwardian.svg#edwardian') format('svg');
  font-weight: 400;
  font-style: normal;
  font-stretch: semi-expanded;
  unicode-range: U+0020-02DC;
}



body {
    font-family: SourceSansPro;
    background: #0c0b09;
    color: #fff;
}

a {
    color: #cda45e;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Museo700;
}

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

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

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

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #cda45e;
}

.back-to-top i {
    font-size: 28px;
    color: #cda45e;
    line-height: 0;
}

.back-to-top:hover {
    background: #cda45e;
    color: #1a1814;
}

.back-to-top:hover i {
    color: #444444;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    clear: both;
    transition: all 0.5s;
}

#topbar.topbar-scrolled {
    top: -40px;
}

.logo img {
    width: 90px;
    height: 120px;
    display: none;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    /* background: rgba(12, 11, 9, 0.6);
border-bottom: 1px solid rgba(12, 11, 9, 0.6); */
    background: #0000000F 0% 0% no-repeat padding-box;
    border: 1px solid #FFC300;
    opacity: 0.83;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    /* mix-blend-mode: soft-light;
opacity: 0.97; */
    transition: all 0.5s;
    z-index: 9999;
    padding: 20px 0;
    bottom: 40px;
    height: 50px;
    width: 75%;
}

#header.header-scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.65);
    border-bottom: 1px solid #37332a;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    width: 100%;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.navbar li {
    position: relative;
    order: 1;
    flex-grow: 1;
    margin: 0px 5%;
}

.navbar a,
.navbar a:focus {
    font-family: SourceSansPro;
    display: block;
    padding: 0px 0px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.12px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #FFC300;
}



.navbar a:hover::before,
navbar .active::before {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 60px;
    z-index: 1;
    content: "";
    border-bottom: 3px solid #FFC300;
    transition: 0.5s;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #cda45e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #cda45e;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# home-content Section
--------------------------------------------------------------*/
#home-content {
    width: 100%;
    height: 100vh;
    background: url("../img/home.jpg") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#home-content:before {
    content: "";
    /*  background: rgba(0, 0, 0, 0.5);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#home-content .container {
    padding-top: 110px;
}

.desk-newline {
    display: block;
}

#privileges section {
    padding: 95px 0;
}

section#benefits {
    padding: 100px 0;
    transition: all 0.5s ease;
}

@media (max-width: 992px) {
    #home-content .container {
        padding-top: 98px;
    }
}

#home-content h1 {
    margin: 0;
    font-size: 120px;
    font-weight: 500;
    line-height: 56px;
    color: #e8b710;
    font-family: 'edwardian';
}
#home-content img.bannerlogo {
    width: 50%;
}

.footer-logo {
  width: 52%;
}
#home-content h2 {
    color: #fff;
  margin: 20px 0 25px;
  font-size: 32px;
  font-family: 'elaina';
}

#home-content p {
    color: #fff;
    margin: 0px;
    font-size: 16px;
    font-family: SourceSansProLight;
}

.Privileges-box {
    width: 28%;
}

.get-color::before {
    content: "";
    width: 50px;
    height: 50px;
    background: #f2b900;
    display: block;
    position: absolute;
    border-radius: 100%;
    z-index: -1;
    transition: all 0.3s ease;
    top: -5px;
    left: 30px;
}

button.open-button:hover .get-color::before {
    width: 80%;
    border-radius: 20px;
}

.mob-get,
.mob-nav {
    display: none;
}
  #interNavBarMob {
    display: none !important;
}
@media (max-width: 768px) {
  #home-content {
  width: 100%;
  height: 100vh;
  background: url(../img/MobBanner-hero.jpg) top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
.privileges {
  background: url(../img/Exclusiveprivilege.jpg) center center;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
}
p.benefitsCarousel-para {
  font-size: 10px;
}
.assistance {
  background: url(../img/ExpertGuidance.jpg) center center;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
}
section#offers {
  padding: 0px 0;
}
.footer-logo {
  width: 90%;
  margin: 0 auto;
}
   #home-content h1 {
  font-size: 50px;
  line-height: 35px;
}
    #home-content h2 {
        font-size: 20px;
        line-height: 24px;
    }

    #home-content p {
        color: #fff;
        margin: 0px;
        font-size: 14px;
        font-family: SourceSansProLight;
    }

    .desk-newline {
        display: none;
    }

    #header {
        display: none !important;
    }

    #home-content .container {
        padding-top: 250px;
        text-align: left !important;
    }

    .desk-get {
        display: none;
    }

    .mob-nav {
        z-index: 100;
        position: fixed;
        bottom: 0;
        width: 100%;
    }

    .mob-get {
        display: block;
    }

    .open-button {
        bottom: 15% !important;
        right: 5% !important;
    }

    .Privileges-box {
        width: 100% !important;
    }

    #interNavBarMob {
        display: block !important;
        position: fixed;
        z-index: 999;
        background: transparent;
        width: 100%;
        bottom: 0;
        transition: all 0.3s ease-in;
    }

    .wrapper-navbar {
        display: none;
        width: 42%;
        position: relative;
        left: 16px;
    }
}

.InterNavButtons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

ul.navbarMob {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid #f2b900;
    background: #000000de;
}

ul.navbarMob li {
    width: 50%;
    display: flex;
    justify-content: left;
    padding: 7px 0px;
    margin: 4px 10px;
    border-radius: 0;
    color: #fff;
    border: 0px;
    width: 130px;
    background: transparent;
    font-size: 18px;
    text-transform: uppercase;
}

.InterNavButtons button {
    font-size: 15px;
    width: 150px;
    text-transform: uppercase;
}

.explore-button {
    background: transparent;
    padding: 10px 0px;
    margin: auto 0px;
    border-radius: 0;
    color: #fff;
    border: 2px solid #f2b900;
}

.open-button-mob {
    padding: 10px 0px;
    margin: auto 5px;
    background: #f2b900;
    border-radius: 0;
    color: #000;
    border: 0px;
}

/* #interNavBarMob {
    display: block !important;
}*/

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

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 180px 0;
    overflow: hidden;
    min-height: 100vh;
}

.section-title {
    padding-bottom: 80px;
    z-index: 9;
    position: relative;
}

#benefits .section-title {
    padding-bottom: 100px;
}

.section-title h2 {
    font-size: 40px;
}

.swapper_pagination_arrows {
    position: absolute;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    right: 15px;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative !important;
    left: 0;
    right: 0;
    top: 20px;
    bottom: 0;
    color: #FFC300;
}

:root {
    --swiper-navigation-size: 20px;
}

.know-more {
    position: relative;
    z-index: 9;
    color: #fff;
    border-bottom: 2px solid #cda45e;
    font-size: 20px;
    font-family: SourceSansPro;
    display: block;
    float: left;
}

.clickHere {
    display: block;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
}

.clickHereLogin {
    text-align: right;
    z-index: 1;
}

.viewAllOffers {
    position: relative;
    z-index: 9;
    color: #fff;
    border-bottom: 2px solid #cda45e;
    font-size: 15px;
    font-family: SourceSansPro;
    display: block;
    float: right;
}

.dropdown {
    display: none;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
        overflow: hidden;
        min-height: 100vh;
    }
     .open-button {
    display: none;
}

    .section-title {
        padding-bottom: 60px;
        z-index: 9;
        position: relative;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .know-more,
    .viewAllOffers {
        font-size: 16px;
    }

    .logo img {
        width: 60px;
        height: 90px;
    }

}

/*--------------------------------------------------------------
# Privileges
--------------------------------------------------------------*/
.privileges {
    background: url("../img/privileges.png") center center;
    background-size: cover;
    position: relative;
}

.privileges:before {
    content: "";
    /*  background: rgba(0, 0, 0, 0.6);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.privileges .box {
  width: 185px;
  display: block;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFC300;
  text-align: center;
  opacity: 0.43;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  padding: 20px 5px;
  cursor: pointer;
  height: 90px;
  transition: all 0.4s ease-in-out !important;
}
.privileges .box:hover {
  height: 200px;
  transition: all 0.4s ease-in-out !important;
}
.privileges .box .hoverbox {
  overflow: hidden;
  opacity: 0;
  width: 100%;
}
.privileges .box .hoverbox p{
  margin: 20px 0 0;
}
.privileges .box:hover .hoverbox {
  overflow: visible;
  opacity: 1;
  width: 100%;
  transition: all 2s ease-out;
}



.offers .box:hover {
    height: fit-content;
    transition: all 0.4s ease-in-out !important;
  }
  .offers .box .hoverbox {
    overflow: hidden;
    opacity: 0;
    width: 100%;
  }
  .offers .box .hoverbox p{
    margin: 20px 0 0;
  }
  .offers .box:hover .hoverbox {
    overflow: visible;
    opacity: 1;
    width: 100%;
    transition: all 2s ease-out;
  }
  
.privileges .box h4 {
  font-family: SourceSansPro;
  font-size: 18px;
  padding: 0px 5px;
  font-weight: normal;
}
.assistance p.assistancetext{
    font-size: 15px;
    width: 50%;
}
.wrapper-navbar-div {
    width: 180px;
    display: none;
}
.wrapper-navbar-div.wrapper-navbar-added {
    display: block;
}
img.homeicon{
    position: absolute;
    top: 0;
    z-index: 99;
    right: 10vh;
    width: 40px;
    border: 1px solid #fff;
    padding: 6px;
    border-radius: 2px;
}
@media (min-width: 1024px) {
    .privileges {
        background-attachment: fixed;
    }
    .navbar li {
  margin: 0px 4%;
}
}
 @media (min-width: 1024px) {
  .navbar li {
  margin: 0px 5%;
}
 }

@media (max-width: 768px) {
    .privileges .box {
        width: 100%;
        height: 90px;
    }

    .privileges .box h4 {
        font-size: 16px;
    }

    .offers .box {
        width: 100% !important;
    }

    #footer .footer-links ul li {
        display: block !important;
    }

    #footer .footer-links {
        text-align: center !important;
        margin-top: 30px !important;
    }

    .social-links {
        text-align: center !important;
    }

    .clickHere {
        text-align: center;
        bottom: -73px !important;
    }

    .fiveX .fiveX-img {
        width: 100% !important;
    }
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
/* .benefits {
position: relative;
padding: 80px 0;
} */

/* .benefits:before {
content: "";
background: rgba(0, 0, 0, 0.6);
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
} */

#benefits .benefitsBox {
    height: 240px;
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #000000 0% 0% no-repeat padding-box;
    border: 1px solid #D6A400E5;
    opacity: 0.75;
    padding: 40px 20px 0px;
}

#benefits .benefitsBox h4 {
    font-family: SourceSansPro;
    font-weight: normal;
    font-size: 18px;
    text-align: left;
}

.earn-txt {
    display: inline-block;
    position: relative;
    top: -50px;
}

.benefitsBox .icon-img {
    margin: 0 0 30px;
    display: block;
    text-align: left;
}

@media (min-width: 1024px) {
    .benefits {
        background-attachment: fixed;
    }
}



/*--------------------------------------------------------------
# offers
--------------------------------------------------------------*/
.offers {
    background: url("../img/offers.png") center center;
    background-size: cover;
    position: relative;
}

.offers:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


.offers .box {
    width: 260px;
    height: 180px;
    display: block;
    opacity: 0.43;
    background: #000000 0% 0% no-repeat padding-box;
    border: 1px solid #D6A400E5;
    opacity: 0.97;
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    text-align: left;
    padding: 26px 22px 0px;
}

.offers .icon-img {
    margin: 0 0 20px;
    display: block;
}

.offers .box h4 {
    font-family: SourceSansProLight;
    font-size: 18px;
}

section#offers {
    padding: 90px 0;
}

/*--------------------------------------------------------------
# rewards
--------------------------------------------------------------*/
.fiveX {
    background: url("../img/fiveX.png") center center;
    background-size: cover;
    position: relative;
}

.fiveX:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.fiveX .fiveX-img {
    position: relative;
    transition: 0.5s;
    top: 15px;
    width: 80%;
}

.fiveX h4 {
    font-family: SourceSansPro;
    font-size: 30px;
    margin-top: 60px;
    text-align: right;
}

.know-more {
    text-align: right;
    display: block;
}

.fiveX .section-title h4 {
    margin-top: 300px;
}


@media (max-width: 750px) {
    .fiveX .section-title h4 {
        margin-top: 20px;
        font-size: 28px;
    }

    .fiveX h4 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Assistance
--------------------------------------------------------------*/
.assistance {
    background: url("../img/assistance.png") center center;
    background-size: cover;
    position: relative;
}

.assistance:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.assistance p {
    font-size: 25px;
    margin-top: 60px;
    z-index: 9;
    position: relative;
}
.form-check input#disclaimer {
    padding: 7px;
}
span.thank-massage {
    font-size: 12px;
    color: #41fa84;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: black;
    padding: 30px 0;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 9999;
}

.social-links {
    text-align: right;
}

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

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

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

#footer .footer-links {
    margin-bottom: 60px;
    text-align: right;
}
.footertext {
    background: #000;
    text-align: left;
    padding: 10px 0;
}
.footertext p{
width: 100%;
margin: 0;
}

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

}

#footer .footer-links ul i {
    padding-right: 2px;
    color: #cda45e;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-links ul li {
    padding: 10px 22px;
    align-items: center;
    display: inline-block;
}

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

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

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

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

.ml10 {
    position: relative;
    font-weight: 900;
    font-size: 4em;
}

.ml10 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.2em;
    padding-right: 0.05em;
    padding-bottom: 0.1em;
    overflow: hidden;
}

.ml10 .letter {
    display: inline-block;
    line-height: 1em;
    transform-origin: 0 0;
}


#benefits {
    background-image: url("../img/benefits.png");
    background-position: center;
    background-size: cover;
    position: relative;
    transition: opacity .75s
}

/*popup form*/
div#myForm {

    border: 1px solid #FFC300;
}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background: transparent;
    padding: 5px 45px;
    margin: auto 10px;
    border-radius: 25px;
    color: #fff;
    border: 0px;
    position: fixed;
    bottom: 25%;
    right: 2%;
    z-index: 100;
}

/* The popup form - hidden by default */
.form-popup {
    border: 3px solid #f1f1f1;
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
    padding: 10px;
    background-color: white;
}

/* Full-width input fields */
.form-container input[type=text],
.form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus,
.form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
    background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
    opacity: 1;
}

/*new popup*/
/* form starting stylings ------------------------------- */
.group {
    position: relative;
    margin-bottom: 20px;
}

input {
    font-size: 16px;
    padding: 24px 10px 4px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    COLOR: #FFF;
}

input:focus {
    outline: none;
}

/* LABEL ======================================= */
label {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 23px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.mainLabel {
    position: relative;
}

.mainLabelcol {
    position: relative;
}

.pincode {
    position: absolute;
    left: 5px;
    top: 50px;
}

.city {
    position: absolute;
    top: 50px;
    left: 5px;
}

.nameLabel {
    font-size: 12px;
}

/* active state */
input:focus~label,
input:valid~label {
    top: -20px;
    font-size: 14px;
    color: #fff;
}
input:focus~label.nameLabel.pincode, input:valid~label.nameLabel.pincode,
input:focus~label.nameLabel.city, input:valid~label.nameLabel.city{
    top: -5px;
    font-size: 14px;
    color: #fff;
}
input#exampleCheck1 {
    width: 16px;
    height: 16px;
    padding: 0;
}

button#refresh-captcha {
    background: #fff;
    border: 0;
    color: #d8a306;
}

canvas#captcha {
    border: 2px solid grey;
    background: #fff;
}

button.btn {
    width: 100%;
    border-radius: 0;
    color: #fff;
}

.modal-body {
    padding-top: 0px;
}

.modal-content {
    border: 2px solid #f0b607;
    background: #000000cc;
}

.modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.modal-header h3 {
    font-family: 'Museo 500';
    font-weight: 100;
}

.form-check-label {
    color: #fff !important;
    position: relative;
    top: 3px !important;
    font-size: 12px !important;
    margin-bottom: 10px;
}

p.benefitsCarousel-para {
    position: absolute;
    width: 80%;
    margin-top: 16px;
}

span.error-massage {
    font-size: 12px;
    color: #fa4141;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
span.thank-massage{
    width: 90%;
    margin: 0 auto;
}
span.thank-massage  h3{
    text-align: left;
    color: #f0b607;
    font-weight: 600;
    margin-bottom: 20px;
}
span.thank-massage  p{
    text-align: left;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
}