@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
	outline:none;
	padding:0px;
	margin:0px;
}
body{
    margin: 0px;
    padding: 0px;
    font-family: 'Open Sans', sans-serif;
    color:#1D1D1D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 25px;
} 
  
.clear{ clear:both; }

.logo {
    text-align: left;
}
 .logo img {
    width: 90px;
}

p {
    color:#1D1D1D;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 10px auto;
    line-height: 1.5rem;
    font-family: 'Open Sans', sans-serif;
}
img{
	max-width:100%;
}
 

.wrapper{
	display: table;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #fff url(../img/landing-herobg.png) no-repeat center center;
    background-size: cover;
    position: relative;
    margin: auto;
}
.wrapper:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    background: linear-gradient(303deg,rgb(0 0 0 / 53%),rgb(255 255 255 / 81%) 39%,rgb(61 61 61 / 36%));
}

.site-wrapper-inner {
    display: table-cell;
    vertical-align: middle;
}

.hero-txt h1 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    line-height: 1.4;
    position: relative;
    margin-bottom: 3rem;
}

.hero-txt h1 span {
    display: block;
    line-height: normal;
    color: #7030A0;
}

.hero-txt h4 {
    color: #000;
    font-size: 1.2rem;
    margin: 1rem 0;
    line-height: 1.5;
    font-weight: 600;
}

.hero-txt h1:after {content: '';width: 85px;height: 10px;background: #7030A0;position: absolute;margin: 10px 0px;}

#regFormPanel, #forgotpassword {
display: none;
}
#loginMsgBox, #regMsgBox, #forgotMsgBox {
    margin-bottom: 0px;
    display: none;
    clear: both;
}
 
.registrationForm {
    padding: 20px 10px;
    position: relative;
    color: #1D1D1D;
    background: rgb(255 255 255 / 0.9);
}

.formBox h4 {
    color: #1D1D1D;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.7rem;
}
.formBox h4 span {
    display: block;
    font-size: 1rem;
    line-height: normal;
    padding: 8px 0;
    font-weight: 500;
}

.formBox a {
    text-decoration: none;
    color: #5f259f;
    white-space: nowrap;
}
.accounttext {
    color: #1D1D1D;
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    padding: 20px 0;
}
.forgotpwd {
    text-align: left;
    padding-bottom: 10px;
}

.form-control {
    background: #fff;
    height: 45px;
    color: #1D1D1D;
    font-weight: 400;
    display: block;
    padding: 8px;
    border: 1px solid #cfd1d3;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.1s ease-in-out;
    font-size: 13px;
}


.form-control:focus {
    border: 1px solid #5f259f;
    outline: none;
    box-shadow: none;
}

.customcheckbox {
    display: block;
}
.customcheckbox label{
  margin: 5px auto;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: normal;
  vertical-align: middle;
}
 

/* Hide the browser's default checkbox */
.customcheckbox input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
 

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -1px;
  left: 0px;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px #d6d6d6 solid;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute; 
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    text-align: center;
    line-height: 19px;
    font-size: 11px;
    color: #5f259f;
    left: 2px;
    display: none;
}

  /**** radio button *************/
 
 /* The container */
.customradio label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin: 10px 5px 10px 5px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.customradio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}  

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px #d6d6d6 solid;
}

/* On mouse-over, add a grey background color */
.customradio:hover input ~ .radiomark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.customradio input:checked ~ .radiomark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
  content: "";
  position: absolute; 
}

/* Show the indicator (dot/circle) when checked */
.customradio input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.customradio .radiomark:after {
	content: '\f111';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: block;
	text-align: center;
	line-height: 19px;
	font-size: 10px;
	color: #5f259f;
	left: 4px;
	display: none;
}

.btn-primary {
    background: #7030A0;
    border: 2px solid #5f259f;
    padding: 7px 60px 7px 20px;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
    margin: 10px auto;
    position: relative;
    font-weight: 600;
    max-width:100%;
    /* width: 300px; */
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.btn-primary.focus,
.btn-primary:focus,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #7030A0;
    border-color: #5f259f;
    box-shadow: 2px 4px 4px rgb(0 0 0 / 10%); 
} 

.btn-primary span {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 43px;
    height: 43px;
    background: #5f259f;
    text-align: center;
    line-height: 43px;
    font-size: 18px;
} 

.head-banner{
    width: 100%;
    /* height: 300px; */
    padding: 20px 0;
    background: #000 url('../img/head-banner.jpg') no-repeat center right;   
    background-size: cover;
    position: relative;
    margin: auto;
    z-index: 9;
}


.head-banner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg,rgb(0 0 0),rgb(0 0 0 / 0.28) 39%,rgb(0 0 0 / 0%));
}

.banner-text { 
    display: inline-block;
    z-index: 9;
    position: relative;
    padding: 20px 0px;
    margin: 1rem 0;
}

.banner-text h1 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    line-height: 1.4;
    position: relative; 
}

.banner-text h1 span {
    display: block;
    line-height: normal;
    color: #7030A0;
} 
.banner-text h1:after {
    content: '';
    width: 85px;
    height: 10px;
    background: #7030A0;
    position: absolute;
    margin: 10px 0px;
}
.banner-text h4{
	 color: #fff;
	 font-size: 1.2rem;
	 margin: 3rem 0 0;
	 line-height: 1.5;
}

.topheader nav.navbar.top-menu {
    padding: 0px;
}

.topheader .logo.navbar-brand {
    padding: 0;
}

.topheader ul.navbar-nav.ml-auto {
    height: 90px;
    margin-right: 14%;
}
 
.top-menu .navbar-nav > li > a {
	color: #1D1D1D !important;
	padding: 0rem 1rem !important;
	border-radius: 0px;
	margin-right:10px;
	font-size: 1.1rem;
	border-top: 5px transparent solid;
	text-align: center;
	font-weight: 600;
	height: 100%;
	-ms-flex-align: center!important;
	align-items: center!important;
	vertical-align: middle;
	display: -ms-flexbox;
	display: flex;
}
.top-menu .navbar-nav > li.active > a, 
.top-menu .navbar-nav > li > a:focus, 
.top-menu .navbar-nav > li > a:hover {
    background: transparent;
    color: #5f259f !important;
    outline: none;
    border-top: 5px #5f259f solid;
} 

.contentpanel {
    padding: 20px 0;
    position: relative;
}


.intro {
    text-align: center;
    margin: auto;
    padding-bottom: 1rem;
    position: relative;
}
 
h2.heading {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.7rem;
    color: #1D1D1D;
    margin: 1rem auto;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    display: inline-block;
}

h2.heading:after {
    content: '';
    width: 85px;
    height: 8px;
    background: #7030A0;
    position: absolute;
    bottom: -12px;
    left: 0;
}
h2.heading span {
    color: #7030A0;
}

.stats-wrap {
    padding: 20px 20px;
    position: relative;
    background: #F6F8F9;
    margin: 10px auto;
    border-radius: 9px;
}

.stat-box {
    text-align: center;
    margin: 10px auto;
    border-right: 1px #CFD1D3 solid;
}

.stat-box h4 {
    padding: 7px 10px;
    color: #1D1D1D;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    margin: .5rem auto;
}

.stat-box h3 {
    color: #1D1D1D;
    margin: auto;
    font-weight: 700;
    font-size: 2rem;
}

.stats-wrap>div>div:last-child .stat-box {
    border: 0px;
}



.grey-bg {
    width: 100%;
    position: relative;
    background: url('../img/light-poly.png') no-repeat center center;
    background-size: cover;
    padding: 20px 0;
}

.points-table {
    padding: 1rem 0rem;
    position: relative;
}

.points-table h4 {
text-align: center;
color: #7030A0;
font-size: 1rem;
font-family: 'Raleway', sans-serif;
font-weight: 700;
text-transform: uppercase;
}

.points-table .table {
	background: #fff;
	border-radius:20px;
	padding: 15px 15px;
	margin: 10px auto;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}


.points-table .table thead tr th  {
    text-align: center;
    background: #1D1D1D;
    color: #fff;
    border: 0;
    font-weight: 500;
    padding: 15px 20px;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    width: 33.3%;
    border: 0;
    max-width: 100%;
    float: left;
    vertical-align: middle;
}
.points-table .table>tbody>tr>td {
    padding: 10px 20px;
    font-size: 13px;
    text-align: center;
    color: #1D1D1D;
    border-color: #ebebeb;
    background: transparent;
    width:33.3%;
    max-width: 100%;
    float: left;
} 
.rew-table .table thead tr th  {
      width: 25%;

}
.rew-table .table>tbody>tr>td {
    width: 25%;

} 
.points-table .table thead tr th:first-child  {
    border-top-left-radius: 20px;
}
.points-table .table thead tr th:last-child  {
    border-top-right-radius: 20px;
}

.points-table thead,
.points-table tbody,
.points-table tr,
.points-table td,
.points-table th  {
 	display: block;
}

.points-table tr:after {
    content: ' ';
    display: block;
    visibility: hidden;
    clear: both;
}
 
.points-table tbody {
max-height: 200px;
overflow-y: auto;
width: 100%;
}
.points-table .table-responsive>.table {
    height: 100%;
    
} 
.points-table .table>tbody>tr>td span {
    text-align: center !important;
    display: inline-block;
    line-height: normal;
	/*padding:0px 16px 0px 0px;*/
}

.nodata{
    width: 100% !important;
    text-align: center !important;
    padding: 20px 0 !important;
    color: #000 !important;
    text-transform: none !important;
}
.nodata h4{
    color: #000 !important;
    text-transform: none !important;
} 

.steps {
    padding: 12px 0;
    position: relative;
}

.steps h4 {
    color: #1D1D1D;
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.steps ul {
    padding-left: 25px;
    position: relative;
}

.steps ul li {
    padding: 5px 0;
    color: #1D1D1D;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0px auto;
    line-height: 1.4rem;
    font-family: 'Open Sans', sans-serif;
}
.work-icon img {
    width: 50px;
}


.act-panel {
    border: 1px #1D1D1D solid;
    background-color: #ffffff;
    padding: 20px 20px;
    position: relative;
    text-align: center;
}

.act-panel:after {
    content: '';
    width: 100%;
    height: 100%;
    max-width: 100%;
    position: absolute;
    right: -15px;
    top: 15px;
    z-index: -1;
    background: #1D1D1D;
}

.act-panel h1 {
    color: #1D1D1D;
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.formlink {
    background: rgb(212 221 224 / 0.42);
    padding: 10px 10px;
    margin: 10px auto;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
}

h3.subheading {
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

a {
    color: #7030A0;
}

.or {
    text-align: center;
    padding: 10px;
    position: relative;
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    display: inline-block;
}

.or:before, 
.or:after {
    content: '';
    width: 100px;
    height: 1px;
    background-color: #D4DDE0;
    position: absolute;
    top: 50%;
}

.or:before {
    left: -100px;
}

.or:after {
    right: -100px;
}

.getsocial {
    padding: 20px 0 0;
    position: relative;
    text-align: center;
    margin: auto;
}

.getsocial ul.nav-tabs {
    border: 0;
}

.getsocial ul.nav-tabs li a {
    background: #D4DDE0;
    border-radius: 5px;
    border: 0px;
    position: relative;
    margin: 20px 10px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    color: #8C989D;
    text-decoration: none;
    vertical-align: middle;
    font-size: 25px;
    line-height: 30px;
    min-width: 55px;
    position: relative;
}
.getsocial .nav-tabs .nav-item.show .nav-link, 
.getsocial .nav-tabs .nav-link.active,
.getsocial .nav-tabs .nav-link:focus, 
.getsocial .nav-tabs .nav-link:hover {
    background: #7030A0;
    color: #fff;
    border: 0;
}

.getsocial .nav-link.active:after {
       content: '';
       width: 0;
       height: 0;
       border-left: 8px solid transparent;
       border-right: 8px solid transparent;
       border-top: 8px solid #7030A0;
       position: absolute;
       left: 50%;
       margin-left: -8px;
       bottom: -8px;
}

 .importContacts {
    text-align: left;
    font-size: 12px;
}
.useraccount {
    width: 100%;
    background:#fff;
    border-radius: 10px;
    padding: 25px 25px;
    margin: 20px auto;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; 
    display: inline-block;
}
.profileheader {
    padding: 20px 0; 
}
.user-img img {
    border: 2px #ffffff solid;
    border-radius: 100%;
    max-width: 100%;
    object-fit: fill;
    -o-object-fit: fill;
    position: relative;
    width: 115px;
    height: 115px;
}
.user-img {
    display: inline-block;
    border: 2px #1D1D1D dashed;
    border-radius: 100%;
    width: 120px;
    height: 120px;
    /* max-width: 100%; */
    position: relative;
    margin: auto;
    text-align: center;
}

a.changephoto {
    color: #fff;
    text-decoration: none !important;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #1D1D1D;
    border-radius: 100%;
    font-size: 14px;
    line-height: 32px;
}

.userinfo {
    color: #1D1D1D;
    vertical-align: middle;
    padding-top: 20px;
}
.userinfo h2 {
    color: #1D1D1D;
    font-size: 1.5rem;
    font-weight: 600;
    margin:auto;
    font-family: 'Raleway', sans-serif;
}

.userinfo h5 {
    font-size: 0.9rem;
    font-weight: 400; 
    padding:6px 0px;
}  

.useraccount.w9form {
    text-align: center;
}

.faqcontent { 
    width: 100%;
    margin:2rem auto;
    background:#fff;
    border-radius: 10px;
    padding: 25px 25px;
    margin: 20px auto;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
 
.faqcontent .accordion>.card {
    margin: 10px auto;
    border: 0px #EDF4F9 solid;
    border-bottom: 1px #D4DDE0 solid;
}

.faqcontent .accordion>.card>.card-header {
    border: 0px !important;
    padding: 20px 10px;
    cursor: pointer;
    background: transparent;
}

.faqcontent .accordion>.card>.card-header h4 {
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #1D1D1D;
    width: 92%;
    margin: 0;
    text-align: left;
    line-height: normal;
}


.faqcontent .accordion>.card>.card-header h4:before, 
.faqcontent .accordion>.card>.card-header h4.collapsed:before {
    content: "";
    position: absolute;
    top: 10px;
    right:15px;
    font-size: 14px;
    color: #7030A0;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    font-family:"Font Awesome 5 Free";
    font-style:normal;
    font-weight:900;
    display: inline-block;
}
.faqcontent .accordion>.card>.card-header h4:before{
    content: "\f078";
}
.faqcontent .accordion>.card>.card-header h4.collapsed:before{
    content:'\f054';
}
.faqcontent .card-body {
    border: 0px;
    text-align: left;
    padding:0.2rem 2rem;
} 
.faqcontent ul{
    padding-left: 20px;
    color: #1D1D1D;
}
.faqcontent ul li {
    padding: 2px 0;
}

 .terms { 
    text-align: left;  
     width: 100%;
    margin:2rem auto;
    background:#fff;
    border-radius: 10px;
    padding: 25px 25px;
    margin: 20px auto;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.terms h4 {
   font-size: 1.1rem;
   font-family: 'Raleway', sans-serif;
   font-weight: 700;
   color: #1D1D1D;
   text-align: left;
   text-transform:uppercase;
}
.terms ol, .terms ul{
    padding: 0;
    color: #1D1D1D;
    list-style: none;
}
.terms li {
    padding-bottom: 12px;
    color: #1D1D1D;
    font-size:1rem;
    font-weight: 500;
    margin: 10px auto;
    line-height: 1.4rem; 
}  
.textarea-msg {
    background:#f7f7f7; 
    color: #1D1D1D;
    font-weight: 400;
    display: block;
    padding: 2px 10px;
    border: 1px solid #cfd1d3;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.1s ease-in-out;
    font-size: 13px;
	text-align: left;
}
.textarea-msg:hover, .textarea-msg:focus {
    border: 1px solid #5f259f;
    outline: none;
    box-shadow: none;
}


.textarea-msg p {
    font-size: 13px;
    line-height: 1.6;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #f7f7f7;
}

.swal2-content p{
    font-size: 13px;
}

h2#swal2-title {
    font-weight: 600;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.7rem;
    color: #1D1D1D;
    margin: 0rem auto;
    line-height: 1.4;
    position: relative;
    display: inline-block;
}

button.swal2-confirm.swal2-styled {
    background: #7030A0 !important;
    border: 2px solid #5f259f !important;
    /* padding: 10px 30px; */
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    font-weight: 600;
    max-width:100%;
}

/********/

@media screen and (max-width:991px){
    .topheader ul.navbar-nav.ml-auto {
        margin-right:3%;
    }
}

@media screen and (max-width:767px){    
    button.navbar-toggler {
        margin-right: 3%;
    }

    .topheader ul.navbar-nav.ml-auto {
        margin: 0;
        height: auto;
        text-align: center;
        background: #edf1f2;
    }

    .top-menu .navbar-nav > li > a {
        margin: auto;
        text-align: center;
        display: block;
        padding: 0.2rem 1rem !important;
    }
}

@media screen and (max-width:576px){  
	
	.useraccount {
		padding: 20px 20px;
	}
	.btn-primary {
		font-size: 0.9rem;
	}

	.btn-primary span {
		height: 39px;
		line-height: 39px;
	}
	.stat-box {
		border-right: 0;
		border-bottom: 1px #CFD1D3 solid;
	}

	.points-table .table>tbody>tr>td {
		font-size: 12px;
		white-space: normal !important;
		/* word-break: break-word; */
		line-height: normal;
	}
	.points-table .table thead tr th {
		height: 70px;
	}
	.work-wrap {
		margin: auto;
		text-align: center;
	}

	.steps ul {
		display: inline-table;
	}

	.steps ul li {
		text-align: left;
	}

	.steps h4 {
		margin: 0.8rem auto;
	}
	.profileheader {
		text-align: center;
	}
	.points-table .table>tbody>tr>td span {
        padding-right:16px;
    }
 
}
.reward-card {
    margin: 10px auto;
    background: #ffffff;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    border: 1px #d9d9d9 solid;
    background: #f5f6f8;
    padding: 10px 10px;
    text-align: center;
}
.reward-card h3 {
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin: .5rem auto;
}
 