/*
html {
    font-size: 16px;
}
*/

strong {
  font-weight: 700;
}

body {
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.cont {
    font-size: 24px;
}

/* #Navigation
================================================== */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 10px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 70px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand img{
	width: auto;
    height: 50px;
	display: block;
/*  filter: brightness(10%);*/
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #212121 !important;
	font-weight: 600;
    transition: all 200ms linear;
    font-size: 15px;
}
.nav-item:hover .nav-link{
	color: #000 !important;
}
.nav-item.active .nav-link{
	color: #777 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
/*	background-color: #8167a9;*/
	opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}

#switch,
#circle {
	cursor: pointer;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
} 
#switch {
	width: 60px;
	height: 8px;
	border: 2px solid #8167a9;
	border-radius: 27px;
	background: #000;
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1900ms;
}
body.hero-anime #switch{
	opacity: 0;
	transform: translateY(40px);
    transition-delay: 1900ms;
}
#circle {
	position: absolute;
	top: -11px;
	left: -13px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #000;
}
.switched {
	border-color: #000 !important;
/*	background: #8167a9 !important;*/
}
.switched #circle {
	left: 43px;
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	background: #fff;
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 20px !important;
	margin: 0;
	letter-spacing: 1px;
	color: #1c1c1c;
	background-color: #fff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
    z-index:999;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
    font-size: 14px;
	padding: 5px 15px;
    font-weight: 600;
	color: #1c1c1c;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #592c82;
/*	background-color: rgba(0,0,0,.1);*/
}

body.dark{
	color: #fff;
	background-color: #1f2029;
}
body.dark .navbar-brand img{
  filter: brightness(100%);
}
body.dark h1{
	color: #fff;
}
body.dark h1 span{
    transition-delay: 0ms !important;
}
body.dark p{
	color: #fff;
    transition-delay: 0ms !important;
}
body.dark .bg-light {
	background-color: #14151a !important;
}
body.dark .start-header {
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}
body.dark .start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
body.dark .nav-link{
	color: #fff !important;
}
body.dark .nav-item.active .nav-link{
	color: #999 !important;
}
body.dark .dropdown-menu {
	color: #fff;
	background-color: #1f2029;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
body.dark .dropdown-item {
	color: #fff;
}
body.dark .navbar-light .navbar-toggler-icon {
	border-bottom: 1px solid #fff;
}
body.dark .navbar-light .navbar-toggler-icon:after, 
body.dark .navbar-light .navbar-toggler-icon:before{
	background-color: #fff;
}
body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}


@media (max-width: 481px) {
    .dropdown-menu {
	padding: 0 20px 0 20px !important;
}
    .mobile {
        margin-top: 15px !important;
    }
}

/** End nav **/

/** Carousel **/

.carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.carousel-indicators {
    bottom: -50px;
}


.carousel {
  margin: 1.5rem;
}
.carousel-inner {
  height: auto;
}

.carousel-control-prev {
  margin-left: -100px;
}

.carousel-control-next {
  margin-right: -100px;
}

/** End Carousel **/

.logo {
    width: 140px;
    padding-bottom: 0px;
}

#page-header-top h1{
  font-size: 3.125rem;
  font-size: 50px;
}

#page-header-top p {
  padding-top: 5%;
  padding-bottom: 2%;
  color: #592c82;
}

#page-header-top img {
    width: 180px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

#page-header-top h3 {
    font-size: 24px;
    margin-top: 40px;
    padding-right: 10px;
    color: #582c92;
}

.progress {
    background-color: #fff;
    height: 30px;
}

.progress span {
    font-size: 18px;
}

.progress-bar-waiting {
    background-color: #4bc639;
}

span.helptext {
    color: #582c83;
    font-size: 13px;
    line-height: 100%;
}

.required_text {
    color: #582c83;
    font-size: 13px;
    line-height: 100%;
}

.top_link {
    color: #000;
    text-decoration: none;
    font-size: 10px;
}

.top_link:hover {
    color: #592c82;
    text-decoration: none;
}

.padd-top {
    padding-top: 50px !important;
}

.padd-top2 {
    padding-top: 0px !important;
}

.padd-top3 {
    padding-top: 20px !important;
}

.banner{
/*	background: url('../images/river/gr_grouphugs_banner.jpg') #fff no-repeat right top;*/
    background: url('../images/BA-Digital-Lead-Banner.jpg') #fff no-repeat right center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
/*    background-attachment: fixed;*/
/*	height: auto;*/
    max-height: 400px;
/*    height: 1000px;*/
/*    height: 100%;*/
	padding-top: 10px;
    padding-bottom: 10px;
}

.icon {
    width: 50px;
    height: auto;
}

.banner h1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 150%;
}

.banner h3{
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.box-info {
	margin: 20px 0;
	padding: 0 16px;
	background-color: #fff;
	opacity: 0.9;
	text-align: center;
}

.box-content {
	padding: 12px;
}


.header-title-text{
	color: #ffce00;
	margin-top: 290px;
}

.header-body-text{
	color: #ffffff;
}

#content-top h1{
    font-size: 36px;
    font-weight: 700;
}

.2-col h5{
    font-size: 18px;
}

.pie-chart {
    width: 200px;
}

img.side-image{display:block;margin:0 auto 20px auto;width:300px;left:0;}

ul {
  list-style: none;
  padding: 0;
}

li:before {
  color:#582c83;
  display: inline-block;
  margin-left: -1.3em; 
  width: 1.3em; 
}
ul.pie-chart .red-1:before{
    color:#592c82;
}
ul.pie-chart .red-2:before{
    color:#8a55b9;
}
ul.pie-chart .red-3:before{
    color:#b582e4;
}

#content-yellow{
    background: #ffce00;
}

#content-yellow h1{
    font-size: 32px;
    font-weight: 400;
}

#content-yellow h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 150%;
}

#content-yellow h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
}

#content-bottom-2 h1{
    font-size: 30px;
    font-weight: 400;
    line-height: 150%;
    color: #000;
}

#content-purple{
    background: #592c82;
    color: #fff;
}

#content-purple h1{
    font-size: 32px;
    font-weight: 400;
}

#content-purple h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 150%;
}

#content-purple h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

#content-bottom-3 h1{
    font-size: 30px;
    font-weight: 400;
    line-height: 150%;
    color: #000;
}

#content-bottom-3 h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 150%;
}

#content-white{
    background: #fff;
    color: #000;
}

#content-white h1{
    font-size: 32px;
    font-weight: 400;
}

.btn-purple{
    background: #592c82;
    font-weight: 600 !important;
}

.btn-purple:hover{
    border: 1px solid #592c82;
}

.btn-red{
    background: #CE0F2E !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.btn-bold{
    font-weight: 600 !important;
}

.btn-red:hover{
    border: 1px solid #CE0F2E !important;
    background: none !important;
    color: #CE0F2E !important;
}

.btn-white{
    background: #fff;
}

.btn-white:hover{
    background: #cf102d;
    color: #fff;
}

.caption {
   padding-top: 10px; 
    font-size: 13px;
}

/* Polroid images */

div.polaroid1 {
  width: 80%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin: 25px auto;
  transform: scale(0.8, 0.8) rotate(-5deg);
  padding: 8px;
  transition: all 0.35s;
}

div.polaroid2 {
  width: 80%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin: 25px auto;
  transform: scale(0.8, 0.8) rotate(5deg);
  padding: 8px;
  transition: all 0.35s;
}

.polaroid1:hover, .polaroid2:hover {
  filter: none;
  transform: scale(1, 1) rotate(0deg) !important;
  transition: all 0.35s;
}

div.caption {
  text-align: center;
  padding: 10px 20px;
  font-size: 20px;
}


/* End Polaroid */

#page-header-bottom-amazing .banner-text {
    padding: 5rem 0;
}

#page-header-bottom-confirmation {
  background-color: #f3eee2;
  background-size: cover;
  width: 100%;
  color: #fff;
  position: relative;
  min-height: 7.75rem;
}

.confirm-content-height{
    min-height: 24rem;
}

.red {
    color: #592c82;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.overlay-ads {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}

#donation-info h1 {
  font-size: 2rem;
  font-weight: 300;
  color: #592c82;
  padding-top: 5%;
  padding-bottom: 2%;
}

#donation-info h2{
  font-size: 1.25rem;
  line-height: 150%;
  padding-bottom: 0.625rem;
}

#donation-info .caption {
    font-size: 0.85rem;
    padding-top: 1rem;
}

#donation-info .caption_note {
    font-size: 0.65rem;
    padding-top: 0px;
}

#donation-info p {
  padding-bottom: 0.625rem;
}

#donation-ads img{
    padding-top: 10px;
}

#donation-ads h1 {
  font-size: 2rem;
  font-weight: 300;
  color: #592c82;
  padding-top: 0%;
  padding-bottom: 2%;
}

#donation-ads h2 {
  font-size: 1.25rem;
  line-height: 150%;
  padding-bottom: 0.625rem;
}

#donation-ads h4 a{
  font-size: 1rem;
  font-weight: 600;
  color: #592c82;
}

#donation-ads h4 a:hover{
  font-size: 1rem;
  color: #592c82;
  text-decoration: underline;
}

#donation-ads .caption {
    font-size: 0.85rem;
    padding-top: 1rem;
}

#donation-ads .caption_note {
    font-size: 0.65rem;
    padding-top: 0px;
}

#donation-ads p {
  padding-bottom: 0.625rem;
}

#donation-ads p a{
  text-decoration: underline;
  color: #592c82;
}

#donation-ads p a:hover{
  text-decoration: none;
  color: #592c82;
}

#donation-form {
  background-color: none;
  color: #fff;
  opacity: 0.9;
  margin-top: 9%;
  margin-bottom: 6%;
  padding: 6%;
}

#form-content {
  margin: 0 auto;
}

#donation-form h1 {
  font-size: 40px;
  line-height: 150%;
}

#donation-form p {
  font-size: 1rem;
  line-height: 150%;
}

#donation-form .mt-label{
    font-size: 1rem;
    text-align: center;
}

#donation-form label span {
    font-size: 14px;
}

#donation-form .radio-buttons input[type="radio"]{
  clip:rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
  height:1px;
  margin:0;
  overflow:hidden;
  position:absolute;
  width:1px;
}

#donation-form .radio-buttons .radio-text{
  display: block;
  width: 8.5rem;
  padding: 0.5rem 0.5rem;
  margin: 0 0 1rem 0;
  background: #fff;
  cursor: pointer;
  color: #000;
  border-radius: 0.125rem;
  font-size: 1rem;
  text-align: center;
}
#donation-form .radio-buttons .radio-text:hover{
    background:#3caf2b;
    cursor:pointer;
}

#donation-form .radio-buttons input[type="radio"]:checked+.radio-text{
      background:#3caf2b;
      color:#fff;
}


/* Small Radio button */

#donation-form .radio-buttons-s input[type="radio"]{
  clip:rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
  height:1px;
  margin:0;
  overflow:hidden;
  position:absolute;
  width:1px;
}
#donation-form .radio-buttons-s .radio-text{
  display: block;
  padding: 0.5rem 0.75rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0.5rem;
  width: 4.375rem;
  cursor: pointer;
  background:#fff;
  color:#000;
  border-radius: 0.125rem;
  font-size: 1rem;
  text-align: center;
border: 1px solid #000;

}
#donation-form .radio-buttons-s .radio-text:hover{
  background:#3caf2b;
  cursor:pointer;
}
/*
#donation-form .radio-buttons-s{
  margin: 1.25rem 0;
}
*/
#donation-form .radio-buttons-s input[type="radio"]:checked+.radio-text{
  background:#3caf2b;
  color:#fff;
}

/* End Small Radio button */

/* Monthly Radio button */

#donation-form .radio-buttons-month input[type="radio"]{
  clip:rect(0.0625rem, 0.25rem, 0.0625rem, 0.25rem);
  height:1px;
  margin:0;
  overflow:hidden;
  position:absolute;
  width:1px;
}

#donation-form .radio-buttons-month .radio-text{
  display: block;
  padding: 0.5rem 0.15rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0rem;
  width: 5.35rem;
  cursor: pointer;
  background:#fff;
  color:#000;
  border-radius: 0.125rem;
  font-size: 1rem;
  text-align: center;
}

#donation-form .radio-buttons-month .radio-text .month_text {
    font-size: 0.65rem;
}

#donation-form .radio-buttons-month .radio-text:hover {
  background:#3caf2b;
  cursor:pointer;
}
/*
#donation-form .radio-buttons-s{
  margin: 1.25rem 0;
}
*/
#donation-form .radio-buttons-month input[type="radio"]:checked+.radio-text{
  background:#3caf2b;
  color:#fff;
}

/* End Month Radio button */



#donation-form .otherBtn {
  /* padding:8px 15px 8px 15px; */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  line-height: 1.5625rem;
  color: #000;
  margin-right:0.625rem;
  font-size:1rem;
  width: 4.375rem;
  height: 2.5rem;
}

#donation-form .otherBtn input[type="text"]:focus{
color: #000000;
}

#donation-form .otherMonthBtn {
  /* padding:8px 15px 8px 15px; */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  line-height: 1.5625rem;
  color: #000;
  margin-right:0.625rem;
  font-size:1rem;
  width: 4.375rem;
  height: 2.5rem;
}

#donation-form .otherMonthBtn input[type="text"]:focus{

}

#donation-form #onetime_donation, #monthly_donation {
    text-align: center;
}

#donation-form #onetime_donation .notiAmountHr,
#donation-form #monthly_donation .notiAmountMonthHr{
    font-size: 0.75rem;
}

#donation-form #onetime_donation input {
  text-align: center;
  background-color: #fff;
  border-top: transparent !important;
  border-left: transparent !important;
  border-right: transparent !important;
  border-bottom: transparent !important;
}

#donation-form #monthly_donation input {
  text-align: center;
  background-color: #fff;
  border-top: transparent !important;
  border-left: transparent !important;
  border-right: transparent !important;
  border-bottom: transparent !important;
}

#donation-form #onetime_donation input[type="text"]:focus {
    background-color: #3caf2b;
    color: #fff;
}

#donation-form #onetime_donation input[type="text"].visited {
    background-color: #3caf2b;
    color: #fff;
}

/*
#donation-form #onetime_donation input[type="text"].nonvisited {
    background-color: #cf102d;
    color: #fff;
}
*/

#donation-form #onetime_donation input::placeholder {
    color: #000;
}

#donation-form #onetime_donation input[type="text"]:focus {
    background-color: #3caf2b;
    color: #fff;
}

#donation-form #onetime_donation input[type="text"]:focus::-webkit-input-placeholder { color:transparent; }
#donation-form #onetime_donation input[type="text"]:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
#donation-form #onetime_donation input[type="text"]:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
#donation-form #onetime_donation input[type="text"]:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */


#donation-form #monthly_donation input {
  text-align: center;
  background-color: #fff;
  border-top: transparent !important;
  border-left: transparent !important;
  border-right: transparent !important;
  border-bottom: transparent !important;
}

#donation-form #monthly_donation  input::placeholder {
    color: #000;
}

#donation-form #monthly_donation  input[type="text"]:focus {
    background-color: #3caf2b;
    color: #fff;
}
#donation-form #monthly_donation input[type="text"]:focus::-webkit-input-placeholder { color:transparent; }
#donation-form #monthly_donation input[type="text"]:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
#donation-form #monthly_donation input[type="text"]:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
#donation-form #monthly_donation input[type="text"]:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */


/*
#donation-form input:focus{
    outline: 1px solid #fff;
}
*/

#donation-form .donateBtn {
  /*background-color: #002b45;*/
  background-color: #3caf2b;
  color: #fff;
  border-radius:0.25rem;
/*  display: table;*/
  margin: 0 auto;
  margin-top: 1.875rem;
  font-size: 1.375rem;
}

#page-header-top .topDonateBtn {
  background-color: #3caf2b;
  color: #fff;
  border-radius:0.25rem;
  display: block;
  margin: 0 auto;
  margin-top: 2.75rem;
  font-size: 1rem;
}

#page-header-top a{
  text-decoration: none;
}

#donation .bottomDonateBtn {
  background-color: #3caf2b;
  color: #fff;
  border-radius:0.125rem;
  margin: 0 auto;
  margin-top: 1.875rem;
  font-size: 1rem;
}

#donation a {
  text-decoration: none;
}
/*
.custom-select{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
*/

#donation-form .previousBtn {
  color:  #fff;
  display: table;
  font-weight: 600;
  margin: 0 auto;
  margin-top: 1.875rem;
  font-size: 1.125rem;
}

.safe-image {
    padding-top: 2.5rem;
}

#donation-form .submitBtn {
  background-color: #3caf2b;
  color: #fff;
  border-radius:0.125rem;
  padding: 0.625rem 0.875rem;
  font-size: 1.375rem;
  display: table;
  margin: 0 auto;
}

#donation-info a {
    color: #592c82;
    text-decoration: underline;
}

#donation-info a:hover {
    color: #592c82;
    text-decoration: none;
}

.link_btn {
    background-color: #592c82;
    color: #fff;
}

.sidebar-text h3 {
    font-size: 1.25rem;
}

.sidebar-text h4 {
    font-size: .85rem;
    font-weight: 700;
}

.sidebar-text ul li {
    font-size: .85rem;
}


.link_btn:hover{
    background-color: #803cbe;
    color: #f6f6f6;
}

#donation-form .form-check{
  padding-left: 0;
}

/*
#donationAmount fieldset:not(:first-of-type) {
  display: none;
}
*/
#frmCustomer fieldset:not(:first-of-type) {
  display: none;
}

fieldset h1 {
  margin-bottom: 1.875rem;
  text-align: center;
}

.red {
  color: #592c82;
}

.notiAmount{
    font-size: 0.75rem;
    color: #592c82;
}

.notiAmountMonthHr{
  font-size: 0.75rem;
    color: #592c82;
}


.hori{
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.mt{
  margin-bottom: 1.875rem;
}
.mt-top{
    margin-top: 30px;
}

.mt-label {
    margin-bottom: 1rem;
}

.mt-video{
    margin-top: 1.75rem;
}

.stat {
    color: #592c82;
    font-weight: 700;
}

 ::placeholder {
    color: #fff;
    opacity: 1;
}

:-ms-input-placeholder {
   color: #fff;
}

::-ms-input-placeholder {
   color: #fff;
}

#footer {
  background-color: #592c82;
  color: #fff;
  padding-top: 3%;
  padding-bottom: 2%;
}

#footer img {
    width: 275px;
    height: auto;
    margin-bottom: 20px;
}

#footer h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}
#footer p {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}

#footer p a {
    color: #fff;
    text-decoration: underline;
}

#footer .hori {
    background-color: #fff;
}

.footer-copy h3{
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 150%;
}

.footer-copy p{
  font-size: 0.875rem;
  padding-top: 0.625rem;
}

.footer-copy p a {
    color: #fff;
    text-decoration: underline;
}

#footer-pie h3{
  font-size: 1.25rem;
  padding-bottom: 1.25rem;
}

#footer-pie p{
  font-size: 0.75rem;
  padding-top: 1rem;
}

#footer-pie p a {
    color: #fff;
    text-decoration: underline;
}

.bottom-text h5 {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 100%;
    padding: auto 0;
}

.bottom-text p {
    font-weight: .85rem;
    font-weight: 400;
}

/******************/
/*** Toggle tab ***/

.subtitle-faq{
font-size: 22px;
}
.so-accordion-wrapper {
margin-top: 50px;
}
  .so-tab {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 25px 0;
  }
  .so-tab label {
    position: relative;
    display: block;
    padding: 0 25px 0 0;
    margin-bottom: 15px;
    line-height: normal;
    cursor: pointer;
font-size: 18px;
font-weight: 700;
  }
  .so-tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .so-tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s;
font-size: 16px;
  }
  .so-tab input:checked ~ .so-tab-content {
    max-height: none;
  }
  .so-tab label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
  }
  .so-tab input[type=checkbox] + label::after {
    content: "+";
  }
  .so-tab input[type=radio] + label::after {
    content: "-";
  }
  .so-tab input[type=checkbox]:checked + label::after {
    content: "-";
  }
  .so-tab input[type=radio]:checked + label::after {
    content: "-";
}
/***************/

/* FACEBOOK ADS PAGE STYLE */
/*
.scp {
    margin-top: 20px;
}

 .fb-ads .mt-5{
    margin-top: 1.5rem !important;
}
*/
/* FACEBOOK ADS PAGE STYLE */

footer{background:#582c83;color:#fff; padding-top: 20px; }
footer h3{font-weight:500}footer p.smaller{font-size:14px;font-size:1.4rem;line-height:1.5;color:#fff}footer span.small{font-size:13px;font-size:1.3rem}
footer .footer-ctas{padding-top:30px}
footer .cta{margin-bottom:30px}
footer .cta:last-child{margin-bottom:30px}
footer .cta .bottom-logo{width:240px;margin-bottom:20px}
footer .cta h3{color: #3DAf2C;font-size: 18px; padding-bottom: 15px;}
footer .cta p{font-size: 14px;line-height: 26px;}
footer .footer-utility{background-color: #fff;color:#5b6770; padding-top:20px;}
footer .footer-utility .copyright p {font-size: 14px;}
footer .footer-utility .copyright a{color:#5b6770; text-decoration: none;}
footer .footer-utility .copyright a:hover{color:#3DAf2C;}
footer .footer-utility .social a{color:#5b6770;text-decoration: none;}
footer .footer-utility .social a:hover{color:#3DAf2C;}
footer .footer-utility p,footer .footer-utility li{font-size:14px;font-size:1.4rem;line-height:1.5}
footer a{color:#fff;text-decoration:underline}
footer a:hover,footer a:focus,footer a:active{color:#fff;text-decoration:none}
footer .btn.primary-small{margin:0}
.subscribe .form-input{padding-right:0}
.subscribe .form-group input,.subscribe select{margin-bottom:12px}

@media (max-width: 1025px) {
    #page-header-bottom-amazing {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-ads {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-sas h1 {
        font-size: 0.875rem;
        padding-bottom: .5rem;
        padding-top: 2rem;
    }
    
    #page-header-bottom-confirmation {
      background-color: #002b45;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
      min-height: 5.75rem;
    }

    #donation-form .radio-buttons .radio-text {
      display:block;
      width: 8.125rem;
      padding: 0.425rem;
      margin: 0 0 1rem 0;
      background:#535353;
      cursor: pointer;
      color:#fff;
      border-radius:2px;
      font-size: 0.875rem;
      text-align: center;
    }
    
    #donation-form .otherBtn {
      padding: 0.5rem 0.9375rem 0.5rem 0.9375rem;
      line-height: 1.5625rem;
      color: #535353;
      margin-right: 0rem;
      font-size: 0.875rem;
      width: 4.125rem;
      height: 2.5rem;
    }

    .link_btn{
        font-size: 90%;
    }
    
    /* Small Radio button */

    #donation-form .radio-buttons-s input[type="radio"]{
      clip:rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
      height:1px;
      margin:0;
      overflow:hidden;
      position:absolute;
      width:1px;
    }
    #donation-form .radio-buttons-s .radio-text{
      display: block;
      padding: 0.5rem 0.75rem;
      margin-top: 0;
      margin-bottom: 0;
      margin-right: 0.5rem;
      width: 4.375rem;
      cursor: pointer;
      background:#fff;
      color:#fff;
      border-radius: 0.125rem;
      font-size: 1rem;
      text-align: center;

    }
    #donation-form .radio-buttons-s .radio-text:hover{
      background:#cf102d;
      cursor:pointer;
    }
    /*
    #donation-form .radio-buttons-s{
      margin: 1.25rem 0;
    }
    */
    #donation-form .radio-buttons-s input[type="radio"]:checked+.radio-text{
      background:#cf102d;
      color:#fff;
    }

    /* End Small Radio button */
}

@media (min-width: 771px) {

    .cont {
        font-size: 20px !important;
    }
    .hide-desk {
        display: none;
    }
}


@media (max-width: 770px) {

    html {
        font-size: 16px;
    }

    p { font-size: 1rem; }

    .logo {
      width: 90%;
    }

    #cbm-logo {
      text-align: center;
    }

    .text-right{
      text-align: center !important;
    }

    .ver-line {
      display: none;
    }
    .padd-top {
        padding-top: 10px !important;
    }
    
    .padd-top2 {
        padding-top: 20px !important;
    }
    
    .hide-mobile {
        display: none;
    }

/*
    #page-header-bottom-amazing {
    min-height: 6.25rem;
    padding-bottom: 50%;
    padding-top: 6%;
    }
*/
/*
    #page-header-bottom h1 {
      font-size: 2rem;
    }
*/

    #page-header-bottom-amazing{
      background: url('../images/hybrid/donation_banner.jpg') no-repeat top right;
      background-color: #592c82;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
    /*  min-height: 8rem;*/
      max-height: 5.75rem;
    }

    #page-header-bottom-ads{
      background: url('../images/hybrid/banner-ads.jpg') no-repeat center center;
      background-color: #592c82;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
    /*  min-height: 8rem;*/
      max-height: 5.75rem;
    }

    #page-header-bottom-amazing {
    min-height: 5rem;
    padding-bottom: 6%;
    padding-top: 6%;
    }

    #page-header-bottom-ads {
    min-height: 5rem;
    padding-bottom: 6%;
    padding-top: 6%;
    }

    #page-header-bottom-amazing h1 {
      font-size: 1.25rem;
    }

    #page-header-bottom-amazing .banner-text {
    padding: 2rem 0;
    }

    #page-header-bottom-sas {
/*      background: url('../images/hybrid/safeandsound_banner.jpg') no-repeat center center;*/
      background-color: #592c82;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
    /*  min-height: 8rem;*/
      max-height: 6.75rem;
    }

    #page-header-bottom-sas {
    min-height: 6rem;
    }

    #page-header-bottom-sas h1 {
      font-size: 1.25rem;
        padding-bottom: 3rem;
        padding-top: 3rem;
    }

    #page-header-bottom-sas .banner-text {
        padding: 2rem 0 2rem 0;
        text-align: right;
    }


}

@media (min-width: 481px) {
    .img-banner {
        display: none;
    }
}


@media (max-width: 480px) {
  html {
    font-size: 16px;
  }
    /* h1 { font-size: 1.25rem; } */
    p { font-size: 1rem; }

    .logo {
      width: 90%;
    }
    #cbm-logo {
      text-align: center;
    }
    .banner{
    height: auto;
	padding-top: 0px;
    padding-bottom: 0px;
    background: #fff;
}
    .text-right{
      text-align: center !important;
    }
    
    #page-header-top h3 {
        margin-left:auto;
        margin-right: auto;
    }
    .ver-line {
      display: none;
    }
    #page-header-top h1{
      font-size: 2.5rem;
    }

    #page-header-top p {
      padding-top: 8%;
      padding-bottom: 5%;
      color: #592c82;
    }

    #page-header-top .topDonateBtn {
      margin-top: 0.75rem;
      margin-bottom: 1rem;
      font-size: 1rem;
    }
/*
    #page-header-bottom {
    min-height: 5rem;
    padding-bottom:40%;
    padding-top: 4%;
    }
*/
    #page-header-bottom-amazing {
    min-height: 3rem;
    padding-bottom:16%;
    padding-top: 4%;
    }

    #page-header-bottom-sas {
    min-height: 3rem;
    padding-bottom:16%;
    padding-top: 4%;
    }

    #page-header-bottom-ads {
    min-height: 3rem;
    padding-bottom:16%;
    padding-top: 4%;
    }

    #page-header-bottom-confirmation{
      background-color: #002b45;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
      min-height: 5.75rem;
    }

    .confirm-content-height{
        min-height: 15rem;
    }

    #page-header-bottom h1 {
      font-size: 1.625rem;
    }

    #page-header-bottom-amazing h1 {
      font-size: 1rem;
    }

    #page-header-bottom-sas h1 {
      font-size: 1rem;
    }

    #page-header-bottom-confirmation h1 {
      font-size: 1.625rem;
    }

    #donation-info h1 {
      font-size: 1.5rem;
      padding-top: 3%;
      padding-bottom: 1.5%;
    }

    #donation-info h2{
      font-size: 90%;
      line-height: 140%;
      padding-bottom: 0.5rem;
    }

    #donation-info p {
      padding-bottom: 0.5rem;
    }

    #donation-form {
      background-color: #592c82;
      margin-top: 9%;
      padding: 6%;
    }

    #form-content {
      margin: 0 auto;
    }

    #donation-form h1 {
      font-size: 1.25rem;
      line-height: 140%;
    }

    #donation-form label {
      font-size: 12px;
    }

    #donation .card-type {
      width: 50%;
      margin-top: 0.75rem;
    }

    #donation-form .radio-buttons input[type="radio"]{
      clip:rect(1px, 1px, 1px, 1px);
      height:1px;
      margin:0;
      overflow:hidden;
      position:absolute;
      width:1px;
    }
    #donation-form .radio-buttons .radio-text{
      display:block;
      width: 8.125rem;
      padding: 0.425rem;
      margin: 0 0 1rem 0;
      background:#535353;
      cursor: pointer;
      color:#fff;
      border-radius:2px;
      font-size: 0.875rem;
      text-align: center;
    }

    /* Small Radio button */

    #donation-form .radio-buttons-s input[type="radio"]{
      clip:rect(1px, 1px, 1px, 1px);
      height:1px;
      margin:0;
      overflow:hidden;
      position:absolute;
      width:1px;
    }
    #donation-form .radio-buttons-s .radio-text{
      display: block;
      padding: 0.5rem;
      margin-top: 0;
      margin-bottom: 0;
      margin-right: 0.5rem;
      width: 14.125rem;
      cursor: pointer;
      background:#fff;
      color:#000;
      border-radius:2px;
      font-size: 0.875rem;
      text-align: center;

    }
    #donation-form .otherBtn {
      padding: 0.5rem 0.9375rem 0.5rem 0.9375rem;
      line-height: 1.5625rem;
      color: #000;
      margin-right: 0rem;
      font-size: 0.875rem;
      width: 4.125rem;
      height: 2.25rem;
    }
    #donation-form .donateBtn {
      margin-top: 1.5rem;
      font-size: 0.875rem;
    }
    #donation-form .previousBtn {
      margin-top: 1.5rem;
      font-size: 0.875rem;
    }

    #donation-form .submitBtn {
      padding: 0.5rem 0.75rem;
      font-size: 0.875rem;
    }
    #donation-form h4{
        font-size: 1.25rem;
    }

    /* Footer Section */

    #footer {
      padding-top: 4%;
      padding-bottom: 2%;
    }

    .footer-copy h3 {
      font-size: 1.125rem;
      font-weight: normal;
      line-height: 140%;
      padding-top: 1rem;
    }

    .footer-copy p {
      font-size: 0.75rem;
      padding-top: 0.5rem;
    }

    #footer-pie h3 {
      font-size: 1.125rem;
      padding-bottom: 1rem;
      padding-top: 1rem;
    }

    #footer-pie p {
      font-size: 0.75rem;
      padding-top: 1.75rem;
    }
    #footer-pie img {
      width: 60%;
    }
    #donation-form .whats-this {
      margin-top: 1rem;
    }

    .advice {
      padding-top: 15px; color: red;
    }

    .link_btn{
        font-size: 90%;
    }
    
    .btn {
       font-size: 14px;
    }

}

@media (max-width: 415px) {
    #page-header-bottom-amazing {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-ads {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-sas h1 {
        font-size: 0.875rem;
        padding-bottom: .5rem;
        padding-top: 2rem;
    }
    
    #page-header-bottom-confirmation {
      background-color: #002b45;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
      min-height: 5.75rem;
    }

    #donation-form .radio-buttons .radio-text {
      display:block;
      width: 8.125rem;
      padding: 0.425rem;
      margin: 0 0 1rem 0;
      background:#fff;
      cursor: pointer;
      color:#000;
      border-radius:2px;
      font-size: 0.875rem;
      text-align: center;
    }
    
    #donation-form .otherBtn {
      padding: 0.5rem 0.9375rem 0.5rem 0.9375rem;
      line-height: 1.5625rem;
      color: #fff;
      margin-right: 0rem;
      font-size: 0.875rem;
      width: 4.125rem;
      height: 2.5rem;
    }

    .link_btn{
        font-size: 90%;
    }
    
    /* Small Radio button */

    #donation-form .radio-buttons-s input[type="radio"]{
      clip:rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
      height:1px;
      margin:0;
      overflow:hidden;
      position:absolute;
      width:1px;
    }
    #donation-form .radio-buttons-s .radio-text{
      display: block;
      padding: 0.5rem 0.75rem;
      margin-top: 0;
      margin-bottom: 0;
      margin-right: 0.5rem;
      width: 4.375rem;
      cursor: pointer;
      background:#fff;
      color:#000;
      border-radius: 0.125rem;
      font-size: 1rem;
      text-align: center;

    }
    #donation-form .radio-buttons-s .radio-text:hover{
      background:#3caf2b;
      cursor:pointer;
    }
    /*
    #donation-form .radio-buttons-s{
      margin: 1.25rem 0;
    }
    */
    #donation-form .radio-buttons-s input[type="radio"]:checked+.radio-text{
      background:#3caf2b;
      color:#fff;
    }

    /* End Small Radio button */
}

@media (max-width: 376px) {
    #page-header-bottom-amazing {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-ads {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-sas h1 {
        font-size: 0.875rem;
        padding-bottom: .5rem;
        padding-top: 2rem;
    }
    
    #page-header-bottom-confirmation {
      background-color: #002b45;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
      min-height: 5.75rem;
    }

    #donation-form .radio-buttons .radio-text {
      display:block;
      width: 8.125rem;
      padding: 0.425rem;
      margin: 0 0 1rem 0;
      background:#fff;
      cursor: pointer;
      color:#000;
      border-radius:2px;
      font-size: 0.875rem;
      text-align: center;
    }
    
    #donation-form .otherBtn {
      padding: 0.5rem 0.9375rem 0.5rem 0.9375rem;
      line-height: 1.5625rem;
      color: #fff;
      margin-right: 0rem;
      font-size: 0.875rem;
      width: 4.125rem;
      height: 2.5rem;
    }

    .link_btn{
        font-size: 90%;
    } 
    
    /* Small Radio button */

    #donation-form .radio-buttons-s input[type="radio"]{
      clip:rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
      height:1px;
      margin:0;
      overflow:hidden;
      position:absolute;
      width:1px;
    }
    #donation-form .radio-buttons-s .radio-text{
      display: block;
      padding: 0.5rem 0.75rem;
      margin-top: 0;
      margin-bottom: 0;
      margin-right: 0.5rem;
      width: 4.375rem;
      cursor: pointer;
      background:#fff;
      color:#000;
      border-radius: 0.125rem;
      font-size: 1rem;
      text-align: center;

    }
    #donation-form .radio-buttons-s .radio-text:hover{
      background:#3caf2b;
      cursor:pointer;
    }
    /*
    #donation-form .radio-buttons-s{
      margin: 1.25rem 0;
    }
    */
    #donation-form .radio-buttons-s input[type="radio"]:checked+.radio-text{
      background:#3caf2b;
      color:#fff;
    }

    /* End Small Radio button */
    
}


@media (max-width: 321px) {
    #page-header-bottom-amazing {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-ads {
        min-height: 3rem;
        padding-bottom:20%;
        padding-top: 4%;
    }
    
    #page-header-bottom-sas h1 {
        font-size: 0.875rem;
        padding-bottom: .5rem;
        padding-top: 2rem;
    }
    
    #page-header-bottom-confirmation{
      background-color: #002b45;
      background-size: cover;
      width: 100%;
      color: #fff;
      position: relative;
      min-height: 5.75rem;
    }

    #donation-form .radio-buttons .radio-text {
      display:block;
      width: 7.8rem;
      padding: 0.425rem;
      margin: 1rem 0 1rem 0;
      background:#fff;
      cursor: pointer;
      color:#000;
      border-radius:2px;
      font-size: 0.875rem;
      text-align: center;
    }

    .link_btn{
        font-size: 90%;
    }
}

@media (min-width: 768px) {
    #page-header-top h3 {
        text-align: right;
    }
}
