/******************************************************
                    Main CSS 
******************************************************/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@font-face {
    font-family: 'montyblack';
    src: url('../fonts/monty_black-webfont.woff2') format('woff2'),
         url('../fonts/monty_black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap

}




@font-face {
    font-family: 'montybold';
    src: url('../fonts/monty_bold-webfont.woff2') format('woff2'),
         url('../fonts/monty_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap

}




@font-face {
    font-family: 'montylight';
    src: url('../fonts/monty_light-webfont.woff2') format('woff2'),
         url('../fonts/monty_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap

}




@font-face {
    font-family: 'montyregular';
    src: url('../fonts/monty_regular-webfont.woff2') format('woff2'),
         url('../fonts/monty_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap

}

/******************************************************
						Root
******************************************************/
:root {
	/* Colors Var */
	--primary-color:#484968;
	--secondary-color:#4BCCCC;
	--white-color:#ffffff;
	--black-color:#000000;
	--grey-color:#F3F3F3;
	--dark-grey-color:#7F809D;
	--red-color:#C62930;
	--blue-color:#48CDCC;
	
	/* Font Family Var */
	--primary-font-family:'Ubuntu', sans-serif;
	--montyregular-font-family:'montyregular', sans-serif;
	--montylight-font-family:'montylight', sans-serif;
	--montybold-font-family:'montybold', sans-serif;
	--montyblack-font-family:'montyblack', sans-serif;
	
	/* Font Weight Var */
	--light-weight:300;
	--regular-weight:400;
	--semi-bold-weight:500;
	--bold-weight:700;
	
	
	/* height full var */
	--height-full: 100%;
	
	/* width full var */
	--width-full: 100%;
}
.primary-font{
  font-family:var(--primary-font-family);
}
.bold{
 font-weight:var(--bold-weight);
}
/******************************************************
                  All Classes And Tags
******************************************************/
*,html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: middle;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  	display: block;
}
ol, ul {
  	list-style: none;
}
ol li,
ul li{
	display: inline-block;
}
blockquote, q {
  	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  	content: '';
  	content: none;
}
table {
  	border-collapse: collapse;
  	border-spacing: 0;
}

a{ 
	outline: 0px; 
	text-decoration: none;
	-webkit-transition: all 0.3s 0s !important;
    -moz-transition: all 0.3s 0s !important;
    -ms-transition: all 0.3s 0s !important;
    -o-transition: all 0.3s 0s !important;
    transition: all 0.3s 0s !important;
    color: var(--primary-color);
}
a:active, 
a:focus, 
a:hover, 
a:link { 
	text-decoration: none; 
	-webkit-transition: all 0.3s 0s !important;
    -moz-transition: all 0.3s 0s !important;
    -ms-transition: all 0.3s 0s !important;
    -o-transition: all 0.3s 0s !important;
    transition: all 0.3s 0s !important;
	outline: 0px; 
	color: var(--primary-color);
} 
body{  
	font-family: var(--primary-font-family);
	font-style: normal;
	font-weight:var(--semi-bold-weight);
	color: var(--primary-color);
	font-size:16px;
    line-height:26px;
	background-color: var(--white-color);
}
img{ 
	max-width:100%; 
	vertical-align: middle;
	height: auto;
}
html{
	scroll-behavior: smooth;
}

:focus {
    outline: 0px;
}

b, strong {
    font-weight:var(--bold-weight);
}

/******************************************************
					Basic Styles
******************************************************/
.page-wrapper{
    max-width: 100%;
    margin:0 auto;
}
.container-fluid{
    padding:0 45px;
}
.container{
    max-width: 1272px;
    width:auto;
    position: relative;
}

/******************************************************
                    Common Classes 
******************************************************/
.relative{
    position: relative;
}
.absolute{ 
	position: absolute; 
}
.fixed{ 
	position: fixed; 
}
.static{ 
	position: static; 
}
.clr{ 
	clear: both; 
}
.width_full{
	width: 100% !important;
}
.height_full{
	height: 100% !important;
}
.height_auto{ 
	height: auto !important;
}
.no_margin{ 
	margin: 0px !important;
}
.no_padding{
	padding: 0px !important;
}
.float_right{
	float: right;
}
.float_left{
	float: left;
}
.float_none{
	float: none;
}

a.btn{
    min-width: 226px;
    height:55px; 
    font-size: 16px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    background:transparent;
    outline: 0px;
    box-shadow:none;
    border: 3px solid var(--primary-color);
    border-radius: 4.66816px;
    padding: 0 10px;
    display: table;
    font-family:var(--montybold-font-family);
    font-size: 25.3689px;
}
.btn.lg{
    border: 4.09209px solid #FFFFFF;
    border-radius: 6.4239px;
    font-size: 28.2652px;
    min-width: 362px;
    height: 91px;
}
a.btn span{
    display: table-cell;
}
a.btn.white{
  background:var(--white-color);
  border-color: var(--white-color);  
}
a.btn.white-border{
    border-color: var(--white-color); 
    color: var(--white-color);
}
a.btn.white-border:hover,a.btn.white-border:focus{
    background:var(--white-color);
    border-color:transparent;
    color:var(--primary-color); 
}
a.btn:hover,a.btn:focus{
    color: var(--white-color);
    background:var(--primary-color);
    border-color: var(--primary-color);
    outline: 0px;
    box-shadow:none;
}

a.btn.primary-btn:hover,a.btn.primary-btn:focus{
    background:var(--primary-color);
}

.btn.blue-btn{
    min-width: 234px;
    height:50px;
    border-radius: 3.90471px;
    background-color:var(--primary-color);
    border:0;
    color:var(--white-color);
    font-size: 23.4283px;
    font-family:var(--primary-font-family);
    font-weight:var(--bold-weight);
}
.btn.blue-btn:hover,
.btn.blue-btn:focus{
    background-color:var(--secondary-color);
}
.btn.btn-small{
    min-width: 203px;
    height: 45px;
    border: 2.38154px solid #484968;
    box-sizing: border-box;
    border-radius: 2.97692px;
    font-size: 18px;
}

.btn-wrapper{
    display: flex;
    justify-content: center;
}

/******************************************************
					Header Styles
******************************************************/

.site-header{
    background:var(--primary-color);
    color: var(--white-color);
    font-weight:var(--bold-weight);
    font-size: 14px;
    line-height: 41px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    padding:0 45px;
}
.site-header.fixed-header{
    position: fixed;
    left:0;
    top:0;
    width:100%;
    z-index:999;
    box-shadow: 0px 2px 0px rgb(243 243 243);
}
.site-header ul li{
    padding-left:35px;
}
.site-header ul li.secondary-btn a{
    height: 60px;
    width: 278px;
    background: var(--secondary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left:30px;
}
.site-header ul li.secondary-btn a .vf{
 display: none;
}
.site-header ul li.secondary-btn a:hover,
.site-header ul li.secondary-btn a:focus{
    background: var(--white-color);
    color:var(--secondary-color);
}
.site-header ul li a{
    color: var(--white-color);
    position: relative;
}
.site-header ul li a:after{
    content: "";
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -22px;
    left: 0;
    transition: all 0.3s ease;
}
.site-header ul li.secondary-btn a:after{
    display:none;
}
.site-header ul li a:hover,
.site-header ul li a:focus{
  color:var(--secondary-color);
}
.site-header ul li a:hover:after,
.site-header ul li a:focus:after{
    width:100%;
}

.site-header .site-branding{
     display: flex;
     align-items: center;
     flex: 1;
}
.site-header .site-branding .custom-logo-link{
 max-width: 170px;
 margin-right:30px;
}
.site-header .site-branding .site-description{
    font-size:24px;
    text-transform: capitalize;
    margin-right: 10px;
}
.site-header .site-branding .social-icons{
    display: flex;
    align-items: center;
}
.site-header .site-branding .social-icons img{
  max-width:30px;
 margin-left: 10px;
}

/******************************************************
					Footer Styles
******************************************************/
.call-to-action{
    background:var(--grey-color);
    padding-top:57px;
}

.call-to-action .design-icon.grey-02{
    left: 50px;
    top: 50%;
    margin-top: -24px;
}
.call-to-action .design-icon.blue{
 right: 50px;
top: 30px;
}
.call-to-action .box{
    width: 680px;
    margin: 0 auto;
    background: var(--white-color);
    box-shadow: 0px 3.58655px 8.96638px rgba(0, 0, 0, 0.25);
    border-radius: 8.96638px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:24px 32px 20px;
    position: relative;
    line-height: 20px;
    font-weight:var(--regular-weight);
}
.call-to-action .box .btn{
    margin-top:15px;
}
.call-to-action .box .info{
    flex:1;
}
.call-to-action .box .info .cta-title{
    font-weight:var(--bold-weight);
    font-size:35px;
    line-height:34px;
    padding-bottom:6px;
}
.call-to-action .box .icon{
    max-width: 164px;
}
.site-footer{
    background-image:url(../images/footer-banner.png);
    background-repeat:no-repeat;
    background-color:var(--grey-color);
    background-size:cover;
    padding-top: 250px;
    padding-bottom:103px;
    color:var(--white-color);
}

.site-footer .container{
   max-width: 1590px;
}

.site-footer .sponsors{
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.site-footer .sponsors .sponsor-title{
    font-family:var(--montybold-font-family);
    font-size: 26px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 1px;
    color:var(--white-color);
    opacity: 0.35;
    text-transform: uppercase;
}

.site-footer .sponsors ul{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1052px;
    margin: 25px auto 54px;
}

.site-footer .sponsors ul li{
    padding: 0 38px;
}
.site-footer .sponsors ul li a{
    opacity: 0.6;
}
.site-footer .sponsors ul li.sponsor-logo-01 a{
    opacity: 0.5;
}
.site-footer .sponsors ul li a:hover{
    opacity:1;
}

.site-footer .footer-columns{
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    column-gap: 88px;
    padding-top:56px;
}
.site-footer .footer-columns .footer-column .info{
    max-width: 277px;
    margin: 0 auto;
    font-family:var(--montyregular-font-family);
    font-size: 16px;
    line-height: 26px;
    padding-top: 15px;
}
.site-footer .footer-columns .footer-column .footer-logo{
   max-width: 345px;
}
.site-footer .footer-columns .footer-column ul li a{
    color:var(--white-color);
}
.site-footer .footer-columns .footer-column ul li a:hover,
.site-footer .footer-columns .footer-column ul li a:focus{
    color:var(--secondary-color);
    text-decoration:underline;
}
.site-footer .footer-columns .footer-column .menu li{
    display: block;
}

.site-footer .footer-columns .footer-column .menu li a{
    font-size: 18px;
    line-height: 43px;
    font-weight:var(--bold-weight);
   text-transform: uppercase;
}
.site-footer .footer-columns .footer-column .menu li.secondary-btn a{
    width: 266px;
    height: 48px;
    border: 3px solid var(--white-color);
    border-radius: 3px;
    display: block;
    margin-top: 20px;
}
.site-footer .footer-columns .footer-column .menu li.secondary-btn a span{
    vertical-align: top;
}
.site-footer .footer-columns .footer-column .menu li.secondary-btn a:hover,
.site-footer .footer-columns .footer-column .menu li.secondary-btn a:focus{
    border-color : var(--secondary-color);
    background   : var(--secondary-color);
    color        : var(--white-color);
    text-decoration: none;
}
.site-footer .footer-columns .footer-column .social-links{
    padding-top:10px;
}
.site-footer .footer-columns .footer-column .social-links ul li{
    display: block;
     font-family:var(--montyregular-font-family);
    font-size: 15px;
    line-height: 19px;
    padding-bottom:28px;
}
.site-footer .footer-columns .footer-column .social-links ul li a{
    display: flex;
    justify-content: center;
}
.site-footer .footer-columns .footer-column .social-links ul li img{
    margin-right:10px;
}
.site-footer .footer-columns .footer-column .social-links ul li:last-child{
    padding-bottom: 0;
}
.site-footer .footer-columns .footer-column .register-info{
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color:rgba(255,255,255,0.5);
    padding-top:50px;
    max-width: 310px;
    margin: 0 auto;
}
.site-footer .footer-columns .footer-column .register-info a{
   color:rgba(255,255,255,0.5);
}
.site-footer .footer-columns .footer-column .register-info a:hover,
.site-footer .footer-columns .footer-column .register-info a:focus{
    color:var(--secondary-color);
    border-color:var(--secondary-color);
}
.site-footer .footer-columns .footer-column .register-info .reg-link{
    font-size: 17.3475px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    display: inline-block;
}
.site-footer .footer-columns .footer-column .register-info p{
    font-family:var(--montyregular-font-family);
    padding-top:25px;
}

.site-footer .disclaimer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1065px;
    margin: 0 auto;
    margin-top: -55px;
    font-family: var(--montybold-font-family);
    font-size: 42.5287px;
    color: var(--white-color);
    line-height: 45px;
}
.site-footer .disclaimer p{
    padding: 0 15px;
}
.site-footer .disclaimer img{
    max-width:45px;
}

/*Banner*/
.main-banner{
  background-image:url(../images/main-banner-design.png);
  background-repeat:no-repeat;
  background-color:var(--grey-color);
  background-position: center;
  padding:82px 0 24px;
  text-align: center;
  font-family:var(--montyregular-font-family);
  font-size: 19.1496px;
}
.main-banner .banner-content{
  max-width: 1025px;
  margin: 0 auto;
}
.main-banner .banner-logo{
    display: block;
    margin-bottom: 20px;
}
.main-banner .banner-title{
  font-size: 36.9907px;
  line-height: 34px;
  font-family:var(--montybold-font-family);
  padding-bottom:12px;
  letter-spacing: -0.601363px;
  text-transform: capitalize;
}
.main-banner .btn{
  margin:20px auto;
}

.main-banner .scroll-bottom{
  max-width:36px;
  opacity:0.3;
  display: inline-block;
  margin-top: 15px;
}
.main-banner .scroll-bottom:hover,
.main-banner .scroll-bottom:focus{
  opacity:1;
}

/*About Us Section*/
.about-us-section{
  padding-top:86px;
  background:url(../images/about-us-banner-design.png)no-repeat;
  background-position: 50% 25%;
  margin-bottom: -50px;
}
.about-us-section .container{
 max-width:945px;
}
.about-us-section .info{
  letter-spacing: -0.01em;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.about-us-section .info p+p{
  padding-top:20px;
}
.about-us-section .info h5{
    font-size: 16px;
    padding-top: 20px;
    line-height: 26px;
}
.about-us-section .info .title{
  font-size: 39.9181px;
  line-height: 44px;
  letter-spacing: -0.02em;
  font-weight:var(--bold-weight);
  padding-bottom:40px;
}
.about-us-section .video-section{
    width: 330px;
    height: 586px;
    margin-left: auto;
    margin-right: 50px;
}
.video-section{
  position: relative;
}
.video-section .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video-section .overlay img{
  background: rgb(72 73 104 / 78%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.video-section video#video {
  width: 100%;
  height: 100%;
  background:var(--primary-color);
}

/*splash-section*/
.splash-section{
 padding:52px 0 142px;
 position: relative;
}
.splash-section .icon-p1{
  left: 10%;
  top: 14%;
}
.splash-section .icon-p2{
    right: 11%;
    bottom: -15%;
}
.splash-section .container{
 max-width:1030px;
}
.splash-section .right-section{
  float:right;
}
.splash-section .common-info-section{
  max-width: 350px;
  position: relative;
  top:50%;
  transform:translateY(-50%);
}
.pdf-box{
  max-width: 528px;
  background:var(--grey-color);
  border-radius:3px;
  text-align: center;
  padding:0 52px 23px;
  line-height: 22px;
}
.pdf-box .icon{
  position: relative;
  top: -33px;
  margin-bottom: -10px;
}
.pdf-box .title{
  font-family:var(--montybold-font-family);
  font-size: 40px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color:var(--secondary-color);
  margin-bottom:15px;
}
.pdf-box .btn{
  margin: 22px auto 0;
  min-width: 240px;
  font-size: 17.8615px;
  height: 44px;
  border: 2.38154px solid #484968;
  border-radius:3px;
}

/*Submit Your Video*/
.submit-your-video-section{
 background:url(../images/submit-your-video-banner.png)no-repeat;
 padding:260px 0 330px;
 position: relative;
 color:var(--white-color);
 background-position: center;
}
.submit-your-video-section:before{
  content: "";
  background: url(../images/submit-your-video-banner-design.png)no-repeat;
  background-position: 70% 40%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.submit-your-video-section:after{
  content: "";
  background: url(../images/submit-your-video-graphics.png)no-repeat;
  background-size: 1509px;
  background-position: center top;
  position: absolute;
  width: 100%;
  height: 1672px;
  left: 0;
  top: 0;
}
.submit-your-video-section .video-box{
  background: url(../images/submit-your-video-box.png)no-repeat;
  width: 491px;
  height: 836px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit-your-video-section .video-box .info{
  font-size: 22.2293px;
  line-height: 29px;
  font-weight:var(--regular-weight);
  padding:0 38px;
  position: relative;
  z-index: 1;
  padding-top:80px;
 }
 .submit-your-video-section .video-box .info .title{
  font-family:var(--montybold-font-family);
  font-size: 60.2824px;
  line-height: 60px;
  text-transform: uppercase;
  max-width: 350px;
  margin: 0 auto 20px;
 }
 .submit-your-video-section .video-box .info p{
  max-width: 396px;
  margin:0 auto;
 }
.submit-your-video-section .video-box .info .note{
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 29.3134px;
  line-height: 38px;
  display: flex;
  align-items: center;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-weight: var(--bold-weight);
  margin-top: 45px;
  justify-content: center;
  height: 175px;
}


/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background:#e5e5e5;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in;
  z-index:999;
}

.custom-modal.is-visible {
  visibility: visible;
  opacity: 1;
}

.custom-modal-dialog {
  position: relative;
  overflow: auto;
  cursor: default;
  width: 1127px;
  max-width:100%;
  filter: drop-shadow(0px 5.00333px 25.0166px rgba(0, 0, 0, 0.25));
  background:var(--primary-color);
  border-radius: 11px;
  padding:56px 50px 60px;
  color:var(--white-color);
  max-height: 90vh;
}

.custom-modal .close-modal{
 background:url(../images/modal-close-icon.png)no-repeat;
 width:21px;
 height:20px;
 position: absolute;
 right:16px;
 top:16px;
 border:0;
 outline:none;
 background-size: 100%;
 z-index: 1;
}
.custom-modal .gform_wrapper div.validation_error{
 display: none;
}
.custom-modal .gform_wrapper li.gfield.gfield_error, .custom-modal .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent;
    margin-bottom: 0px!important;
    border-top: 0px solid #C89797;
    border-bottom: 0px solid #C89797;
    padding-bottom: 6px;
    padding-top: 8px;
    box-sizing: border-box;
}
.custom-modal .upload-box .gfield_description.validation_message{
  height: auto !important;
  width: auto !important;
  bottom: 0 !important;
  padding: 10px 0 0 10px !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
font-size: 16px !important;
}
.custom-modal .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100% !important;
        margin-top: 0 !important;
}
.custom-modal .gform_wrapper .validation_message {
  color:#FF2B2B;
  position: absolute;
  font-size:17.1645px;
  font-style:italic;
  padding: 10px 0 0px 10px !important;
  font-weight: normal !important;
  width: auto;
}
.custom-modal .gform_wrapper .validation_message #gform_multifile_messages_1_1{
  width: 100%;
  left: 0;
  position: relative;
  top: -45px;
  margin-left: 0;
}
.custom-modal .upload-box  .ginput_preview{
  position: relative;
  border: 1px solid #fff;
  margin-top: 10px;
  padding: 10px;
  z-index: 99999;
}
.custom-modal .upload-box  .ginput_preview a{
  background:var(--white-color);
  padding:5px 10px;
  border-radius: 4px;
  margin-left: 10px;
  display: inline-block;
}
.custom-modal .gform_wrapper ul.gform_fields li.gfield{
  display: block;
}
.custom-modal .gform_wrapper,
.custom-modal .gform_wrapper ul.gform_fields li.gfield,
body .custom-modal .gform_wrapper .top_label div.ginput_container{
 margin:0;
 padding:0;
}
.custom-modal .gform_wrapper input.button.gform_button_select_files {
    font-size: 0;
    background: transparent;
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9 !important;
    padding:0 !important;
}
.custom-modal .gform_wrapper .gform_fileupload_multifile .gform_drop_area{
  height: 321px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12.5083px;
  -webkit-border-radius:12.5083px;
  -moz-border-radius:12.5083px;
  border:0;
  padding:0 !important;
  margin:0;
}
body .gform_wrapper .top_label .gfield_error{
  width:100%;
}
.gform_wrapper li.input-field.half{
  width:50%;
  float:left;
  clear: none;
  padding-right:6px !important;
}
.gform_wrapper li.input-field.half+.half{
  padding-left:6px !important;
  padding-right:0 !important;
}

body .gform_wrapper li.input-field input{
  margin:0 0 13px;
  height:67px;
  background: rgba(255, 255, 255, 0.1);
  border-radius:10px;
  font-family: var(--montyregular-font-family) !important;
  font-size: 20px !important;
  color:#fff;
  padding:0 30px !important;
}

body .gform_wrapper li.input-field .ginput_container_text input[type=text]{
  text-transform: capitalize;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper li.gfield_error textarea{
  border:0 !important;
  margin: 0 0 13px !important;
}
.gform_wrapper li.gfield.gfield_error.input-field.gfield_contains_required div.ginput_container, .gform_wrapper li.gfield.gfield_error.input-field.gfield_contains_required label.gfield_label{
  margin:0;
}
.custom-modal .gform_wrapper ul.gform_fields li.gfield{
  position: relative;
}
.custom-modal .gform_wrapper ul.gform_fields li.input-field .validation_message{
  position: static;
  margin:-5px 0 15px;
  padding: 0 !important;

}
.custom-modal .top_label div.ginput_complex.ginput_container.gf_name_has_2{
 width:100%;
 overflow:hidden;
}
.custom-modal div.ginput_complex.ginput_container.gf_name_has_2 span{
  padding:0 6px 0 0 !important;
  float:left;
  margin:0 !important;
}
.custom-modal div.ginput_complex.ginput_container.gf_name_has_2 span:last-child{
  padding:0 0 0 6px !important;
}
.gform_wrapper li.input-field input::placeholder {
  color:#FFFFFF;
  opacity: 1; /* Firefox */
}

.gform_wrapper li.input-field input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color:#FFFFFF;
}

.gform_wrapper li.input-field input::-ms-input-placeholder { /* Microsoft Edge */
 color:#FFFFFF;
}

.custom-modal .file-upload-icon{
  background: url(../images/file-upload-icon.png)no-repeat;
  width: 84px;
  height: 83px;
  display: inline-block;
  background-size: 100%;
}
.custom-modal .gform_wrapper span.gform_drop_instructions{
  display: none;
}
.custom-modal .upload-box{
  position: relative;
}
.custom-modal .upload-box .gfield_description{
    padding:40px 20px 0 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    width:670px;
    max-width:100%;
    height:100%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-family:var(--montyregular-font-family);
    font-size: 18.7625px;
    line-height: 33px;
}
.custom-modal .upload-box .gfield_description h4{
  font-family : var(--montybold-font-family);
  font-size   : 45px;
  line-height : 50px;
  padding     : 20px 0 10px;
}
.custom-modal .upload-box .gfield_description p{
  opacity : 0.6;
}
.custom-modal .gform_wrapper .ginput_container_consent{
  position: relative;
  padding-left: 30px !important;
  font-size: 13.7592px;
  line-height: 19px;
  font-style: italic;
  font-weight: 400;
  margin-top:30px !important;
  max-width: 636px;
}
.custom-modal .gform_wrapper .ginput_container_consent input[type=checkbox]{
  position: absolute;
  left: 0;
  top: 0;
  width: 18.76px;
  height: 18.76px;
  background: #FFFFFF;
  box-shadow: inset 0px 5.00333px 5.00333px rgba(0, 0, 0, 0.25);
  border: 0;
  margin:0;
}
.custom-modal .gform_wrapper .ginput_container_consent .gfield_required{
  display: none;
}
.submit-your-video-section .video-box .info .note.open-modal{
  cursor: pointer;
}
.custom-modal .gform_wrapper .gform_footer{
    padding: 0;
    margin: 0;
    text-align: right;
    margin-top: -69px;
    float: right;
}
.custom-modal .gform_wrapper .gform_footer input[type=submit]{
  margin-right:0;
  width: 351.48px;
  height: 66.29px;
  background:var(--white-color);
  border-radius: 5.00333px;
  font-family : var(--montybold-font-family);
  font-size: 25.0166px;
  line-height: 29px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color:var(--primary-color);
  margin-top: 10px;
  position: relative;
}
.custom-modal .gform_confirmation_message{
  background:url(../images/thankyou-design-bg.png)no-repeat;
  background-position:center bottom;
  text-align: center;
  font-size: 19.0083px;
  line-height: 25px;
  font-family: var(--montyregular-font-family);
  padding:16px 20px 0;
}
.custom-modal .gform_confirmation_message h2{
  font-family : var(--montybold-font-family);
  font-size: 85.0566px;
  line-height: 85px;
}
.custom-modal .gform_confirmation_message .social-icon{
  display: inline-block;
  margin:10px 15px 23px;
}
.custom-modal .gform_confirmation_message .social-icon img{
	max-width: 56px;
	max-height:56px;
}
.custom-modal .gform_confirmation_message h4{
  font-family : var(--montybold-font-family);
	max-width: 712px;
	margin:10px auto 20px;
	font-size: 32.738px;
	line-height: 43px;
}
.custom-modal .gform_confirmation_message h4 a{
  color:var(--white-color);
  text-decoration: underline;
  display: inline-block;
  vertical-align: top;
}
.custom-modal .gform_confirmation_message p{
  max-width: 624px;
  margin:10px auto 0;
}
.custom-modal .gform_wrapper .gform_fileupload_multifile .moxie-shim.moxie-shim-html5{
  width:100% !important;
  height:100% !important;
  top: 0 !important;
  z-index:9 !important;
}
/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[data-animation] .custom-modal-dialog {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

[data-animation].is-visible .custom-modal-dialog {
  opacity: 1;
  transition-delay: 0.2s;
}

[data-animation="slideInOutDown"] .custom-modal-dialog {
  transform: translateY(100%);
}

[data-animation="slideInOutTop"] .custom-modal-dialog {
  transform: translateY(-100%);
}

[data-animation="slideInOutLeft"] .custom-modal-dialog {
  transform: translateX(-100%);
}

[data-animation="slideInOutRight"] .custom-modal-dialog {
  transform: translateX(100%);
}

[data-animation="zoomInOut"] .custom-modal-dialog {
  transform: scale(0.2);
}

[data-animation="rotateInOutDown"] .custom-modal-dialog {
  transform-origin: top left;
  transform: rotate(-1turn);
}

[data-animation="mixInAnimations"].is-visible .custom-modal-dialog {
  animation: mixInAnimations 2s 0.2s linear forwards;
}

[data-animation="slideInOutDown"].is-visible .custom-modal-dialog,
[data-animation="slideInOutTop"].is-visible .custom-modal-dialog,
[data-animation="slideInOutLeft"].is-visible .custom-modal-dialog,
[data-animation="slideInOutRight"].is-visible .custom-modal-dialog,
[data-animation="zoomInOut"].is-visible .custom-modal-dialog,
[data-animation="rotateInOutDown"].is-visible .custom-modal-dialog {
  transform: none;
}

@keyframes mixInAnimations {
  0% {
    transform: translateX(-100%);
  }

  10% {
    transform: translateX(0);
  }

  20% {
    transform: rotate(20deg);
  }

  30% {
    transform: rotate(-20deg);
  }

  40% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(-15deg);
  }

  60% {
    transform: rotate(10deg);
  }

  70% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(5deg);
  }

  90% {
    transform: rotate(-5deg);
  }

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



/*Share */
.share-section{
 padding-bottom:143px;
margin-top: -50px;
position: relative;
}
.share-section .icon-p1{
  top: 30%;
  left: 7%;
}
.share-section .icon-p2{
  right: 6%;
  top: 48%;
}
.share-section .container{
  overflow: hidden;
  max-width: 1030px;
}
.share-section .common-info-section{
  float:right;
  max-width: 550px;
}

/*Sign Up*/
.sign-up-section{
  background:url(../images/signup-section-bg-img.png)no-repeat;
  padding:301px 0;
  color:var(--white-color);
  background-position: center;
}
.sign-up-section .container{
  max-width:1030px;
}
.sign-up-section .right-section{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 0;
  text-align: center;
  float: right;
}
.sign-up-section .right-section .link{
    font-size: 23.4319px;
    line-height: 28px;
    border-bottom: 2px solid var(--white-color);
    color: var(--white-color);
    display: inline-block;
    font-weight:var(--regular-weight);
}
.sign-up-section .right-section .link:hover,
.sign-up-section .right-section .link:focus{
  color:var(--primary-color);
  border-color:var(--primary-color);
}
.sign-up-section .right-section .btn{
  min-width: 472px;
  height: 86px;
  border: 4px solid var(--white-color);
  border-radius:4px;
  font-size: 27px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom:50px;
}
.sign-up-section .right-section .btn .icon-edit{
    background-image: url(../images/edit-icon.png);
    background-repeat: no-repeat;
    width: 27px;
    height: 27px;
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: -2px;
}
.sign-up-section .right-section .btn:hover .icon-edit,
.sign-up-section .right-section .btn:focus .icon-edit{
  background-image:url(../images/edit-icon-blue.png);
}
.sign-up-section .common-info-section{
  font-size: 20px;
  line-height: 26px;
}
.common-info-section{
  font-size: 22px;
  line-height: 30px;
  max-width:438px;
}
.common-info-section .step-no{
  background: url(../images/step-no.png)no-repeat;
  color: var(--white-color);
  font-size: 22px;
  font-weight: var(--bold-weight);
  text-transform: uppercase;
  width: 109px;
  height: 39px;
  line-height: 39px;
  padding-left: 15px;
  margin-bottom:26px;
}
.common-info-section .title{
  font-family:var(--montybold-font-family);
  font-size: 50.37px;
  line-height: 42px;
  text-transform: uppercase;
  padding-bottom:32px;
}
.common-info-section p + p{
   padding-top:26px;
}
.common-info-section .tagline{
  font-family:var(--montybold-font-family);
  font-size: 35.3068px;
  line-height:46px;
  margin-top:30px;
}
/*Get In Touch Section*/
.get-in-touch-section{
  background-image:url(../images/get-in-touch-banner-design.png);
  background-repeat:no-repeat;
  background-color:var(--grey-color);
  padding-top:93px;
  text-align: center;
  font-size: 30.0602px;
  line-height: 41px;
  background-position:55px 40px;
  min-height: 650px;
}

.get-in-touch-section .container{
  max-width:800px;
}
.get-in-touch-section .social-icons{
  padding-bottom:26px;
}
.get-in-touch-section .social-icons img{
    max-height: 75px;
    margin: 0 15px;
}

.get-in-touch-section .social-links ul li{
  padding-top:20px;
}
.get-in-touch-section .social-links ul li a img{
  margin-right:20px;
}
.get-in-touch-section .social-links ul li a{
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 26.0729px;
    line-height: 33px;
    font-family: var(--montyregular-font-family);
}
.get-in-touch-section .social-links ul li a:hover,
.get-in-touch-section .social-links ul li a:focus{
  background:var(--white-color);
}
/*Donate Section*/
.donate-section{
  background-image:url(../images/donate-section-banner.png);
  background-repeat:no-repeat;
  background-position: center;
  padding:276px  0;
  text-align: center;
  color:var(--white-color);
  font-weight:var(--regular-weight);
  position: relative;
  margin-top: -200px;
}
.donate-section:after{
  content:"";
  background:url(../images/donate-banner-design.png)no-repeat;
  background-position: center;
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
}
.donate-section .container{
  max-width:990px;
  position: relative;
  z-index:1;
}
.donate-section .section-heading{
  padding-bottom:30px;
  font-size: 24px;
  line-height: 34px;
  font-weight:var(--regular-weight);
}
.donate-section .section-heading h3{
  font-size: 55.1077px;
  line-height: 55px;
  text-transform: uppercase;
  font-weight:var(--bold-weight);
  padding-bottom: 10px;
}
.donate-section .image-boxes{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 63px;
  padding:30px 0 68px;
}
.donate-section .info p{
  padding-bottom:35px;
}
.donate-section .info .btn-wrapper{
    padding-bottom: 30px;
}
.donate-section .info h5{
  font-size:30px;
  line-height:34px;
  font-weight:var(--bold-weight);
}

/*Plunge Week Section*/
.plunge-week-section{
  padding-top: 15px;
  padding-bottom: 222px;
  text-align: center;
  position: relative;
  margin-top:0px;
  background-image:url(../images/plunge-week-banner-design.png);
  background-repeat: no-repeat;
  background-position:calc(100% - 15px) top;
  padding-top: 90px;
  max-width: 1920px;
  margin: -100px auto 0;
}
.plunge-week-section .icon-p1{
    right: 100px;
    top: 15px;
}
.plunge-week-section .icon-p2{
    right: 40px;
    top: -70px;
}
.plunge-week-section .title{
  font-family:var(--montybold-font-family);
  font-size:90px;
  letter-spacing: -0.68042px;
  text-transform: uppercase;
}
.plunge-week-section .sub-title{
   font-family:var(--montybold-font-family);
  text-transform: uppercase;
  font-size: 48.9066px;
  text-align: center;
  color:var(--blue-color);
}
.plunge-week-section .sub-title + p{
  font-size:29.42px;
  line-height: 40px;
  font-style: italic;
  letter-spacing:1.13px;
  color:var(--dark-grey-color);
  font-weight:var(--semi-bold-weight);
}
.plunge-week-section .plunge-boxes{
  justify-content: center;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap:42px;
  max-width: 950px;
  margin:30px auto 0;
}
.plunge-week-section .plunge-boxes .plunge-box{
 background-color:var(--grey-color);
 padding:40px 34px;
  font-weight:var(--bold-weight);
  font-size: 25.4591px;
  line-height: 28px;
  text-align: center;
  min-height:490px;
  height:100%;
}
.plunge-week-section .plunge-boxes .plunge-box:nth-of-type(even){
  background-image: url(../images/plunge-week-box-design.png);
  background-repeat: no-repeat;
  background-position: 50% 56px;
  font-size: 22px;
  line-height: 28px;
  width: 620px;
}
.plunge-week-section .plunge-boxes .plunge-box .date{
  font-family: var(--montybold-font-family);
  font-size: 55px;
  line-height:55px;
  text-align: center;
  background-image: url(../images/calender-icon.png);
  background-repeat: no-repeat;
  width: 188px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 34px;
  padding-top: 10px;
}
.plunge-week-section .plunge-boxes .plunge-box .date strong{
  display: block;
  font-size: 96px;
  line-height: 80px;
}
.plunge-week-section .plunge-boxes .plunge-box .info{
  display:inline-grid;
  max-width:270px;
}
.plunge-week-section .plunge-boxes .plunge-box .info .time{
  font-weight:var(--bold-weight);
  font-size: 40px;
  color:var(--blue-color);
  padding-bottom: 25px;
}
.plunge-week-section .plunge-boxes .plunge-box:nth-of-type(even) .info .time{
   padding-bottom:15px;
}
.plunge-week-section .plunge-boxes .plunge-box .info h3{
  font-size: 58.73px;
  font-weight:var(--bold-weight);
  text-transform: uppercase;
}
.plunge-week-section .plunge-boxes .plunge-box .info h4{
  font-size:40px;
 line-height: 40px;
  font-weight:var(--bold-weight);
  text-transform: uppercase;
}
/*LeaderBoard Section*/
.leaderboard-section{
 padding-bottom:60px;
 background:url(../images/leader-board-banner-design.png)no-repeat;
 background-position:50% 75%;
 background-color: var(--grey-color);
}
.leaderboard-section .section-heading{
  position: relative;
  top:-90px;
}
.leaderboard-section .section-heading .heading{
    background: url(../images/leaderboard-heading.png)no-repeat;
    font-size: 0;
    width: 806px;
    height: 171px;
    margin: 0px auto;
    max-width: 100%;
    background-size: 100%;
}
.leaderboard-section .info-section{
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  max-width: 890px;
  margin: -120px auto 0;
}
.leaderboard-section .info-section p{
  max-width: 452px;
  margin: 0 auto;
}
.leaderboard-section .info-section .title{
  font-style: italic;
  font-weight:var(--bold-weight);
  font-size: 30.1698px;
  line-height: 30px;
}
.leaderboard-section .info-section .title span{
  display: block;
  font-size: 16px;
   font-weight:var(--regular-weight);
}
.leaderboard-section .info-section ul{
    columns: 2;
    padding-top: 20px;
    max-width: 560px;
    margin: 0 auto;
}
.leaderboard-section .info-section ul li{
  font-weight:var(--bold-weight);
  font-size: 24.9275px;
  line-height:26px;
  letter-spacing: -0.01em;
  break-inside: avoid;
  position: relative;
  padding-left: 35px;
  padding-bottom:10px;
  float: left;
}
.leaderboard-section .info-section ul li:before{
  content: "";
  background: url(../images/list-style-icon.png)no-repeat;
  width: 24px;
  height: 25px;
  position: absolute;
  left: 0;
  top:1px;
}
.leaderboard-section .info-section .section-title p{
  font-style: italic;
  font-size: 38.4089px;
  line-height:42px;
  max-width:100%;
  margin:0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top:6px;
  font-weight:var(--regular-weight);
  letter-spacing: -0.6px;
}
.leaderboard-section .info-section .section-title strong{
  font-size:54px;
  line-height:54px;
  font-weight:var(--bold-weight);
  font-style: normal;
  display: inline-block;
  padding:0 10px;
}
.leaderboard-section .info-section .section-title p+p strong{
  font-size: 50px;
}
.leaderboard-section .info-section .section-title p:first-child:before{
 content:"";
 background:url(../images/trophy-icon-dark.png)no-repeat;
 width:55px;
 height:55px;
 display: inline-block;
background-size: 100%;
margin-right:10px;
}
.leaderboard-section .info-section .section-title p:first-child:after{
 content:"";
 background:url(../images/trophy-icon-dark.png)no-repeat;
 width:55px;
 height:55px;
 display: inline-block;
background-size: 100%;
margin-left:10px;
}
.leaderboard-section .info-section .packages{
     padding-top: 10px;
}
.leaderboard-section .info-section .packages p{
  font-size: 16px;
  line-height: 26px;
  font-style: italic;
  font-weight: var(--regular-weight);
  max-width: 100%;
  margin: 0;
}
.leaderboard-section .info-section .packages ul{
  justify-content: center;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-gap: 0;
  max-width: 100%;
  margin: 0 auto;
  columns: auto;
}
.leaderboard-section .info-section .packages ul li:before{
  display: none;
}
.leaderboard-section .info-section .packages ul li{
  padding: 0;
  margin: 0 -15px;
  position: relative;
}
.leaderboard-section .info-section .packages ul li:nth-of-type(1){
  z-index:3;
}
.leaderboard-section .info-section .packages ul li:nth-of-type(2){
  z-index:2;
}
.leaderboard-section .info-section .packages ul li:nth-of-type(3){
  z-index:1;
}
.leaderboard-section .info-section .packages ul li:nth-of-type(4){
  z-index:0;
}
.leaderboard-section .info-section .packages ul li h4{
  font-style: normal;
  font-weight: var(--bold-weight);
  font-size: 26px;
  line-height: 36px;
  padding: 26px 20px 0;
}
.leaderboard-section .most-funds-raised{
    text-align: center;
    padding-top: 85px;
    max-width: 950px;
    margin: 0 auto;
}
.leaderboard-section .most-funds-raised .fund-raised-title{
    font-family: var(--montybold-font-family);
    font-size: 62px;
    line-height: 82px;
    padding-bottom: 25px;
}
.leaderboard-section .most-funds-raised .result-box{

}
.leaderboard-section .most-funds-raised .result-box .result-box-title{
  font-family:var(--montybold-font-family);
  font-size: 40.3773px;
  line-height:52px;
  color:var(--secondary-color);
}

.classy-org-leaderboard{
 max-width: 434px;
 margin:0 auto;
position: relative;
}
.classy-org-leaderboard .classy-org-leaderboard_items{
  background:var(--primary-color);;
  border-radius: 10px;
  color:var(--white-color);
  padding:202px 66px 56px;
  margin-top: 130px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items{
 padding-left:50px;
 padding-right:50px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item{
  max-width: 273px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  position: relative;
  margin:0px 0 15px auto;
  padding-left: 70px;
  font-family:var(--montyregular-font-family);
  font-size: 20px;
  line-height: 30px;
  height: 52px;
  display: flex;
  align-items: center;
  text-align: left;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item{
    max-width: 314px;
    padding-right: 95px;
    padding-left: 65px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2),
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3)
{
    width: auto;
    background: transparent;
    height: auto;
    position: absolute;
    padding: 0;
    display: block;
    margin: 0;
    text-align: center;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child{
  width: 202px;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child{
 width: 213px;
 top: 55px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2){
  width:158px;
  top: 110px;
  left: 25px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3){
  width:158px;
  top: 110px;
  right:25px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-info,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-info,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-info{
  float: none;
  margin-top: 5px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric{
  position: static;
  transform: none;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .count,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .count,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .count{
  display: none;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-image,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-image{
  border-radius: 0;
  border: 0;
  filter: none;
  max-width: initial !important;
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image{
  background: url(../images/profile-pic-01.png)no-repeat;
  width: 202px;
  height: 210px;
  background-size:100%;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image{
  width: 213px;
  height: 217px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-image{
  background: url(../images/profile-pic-02.png)no-repeat;
  width: 158px;
  height: 174px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-image{
  background: url(../images/profile-pic-03.png)no-repeat;
  width: 158px;
  height: 174px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image img,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image .fa{
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin-top:32px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--primary-color);
  font-size: 55px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image img,
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image .fa{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-top:32px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--primary-color);
  font-size: 55px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-image img,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-image .fa{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--primary-color);
  font-size: 55px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-image img,
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-image .fa{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--primary-color);
  font-size: 55px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label{
    font-size: 16px;
    line-height: 18px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-info{
 max-width: 115px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label{
 font-size: 15px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-info,
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-info{
  max-width: 110px;
  margin-top:10px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label ,
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label{
   font-size: 14px;
   line-height: 16px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:last-child{
  margin-bottom:0;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .count{
  position: absolute;
  left:-30px;
  top:50%;
  transform: translateY(-50%);
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-image{
  width: 50px;
  height: 50px;
  border: 2.79954px solid var(--white-color);
  filter:drop-shadow(0px 1.59974px 11.998px rgba(255, 255, 255, 0.5));
  border-radius: 50%;
  position: absolute;
  left:0;
  top: 50%;
  margin-top: -25px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info{
 float: left;
 margin:0;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label{
  font-family:var(--montybold-font-family);
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  max-width: 160px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric{
  letter-spacing: 0.02em;
  color:var(--white-color);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family:var(--montylight-font-family);
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric{
  font-size: 16px;
}
/*Prize Winning Section*/
.prize-winner-section{
    background: var(--grey-color);
    padding:0px 0 184px;
    margin-bottom: -164px;
  position: relative;
}
.prize-winner-section .icon-p1{
    right: -11%;
    top: 10%;
}
.prize-winner-section .icon-p2{
    bottom: 90px;
    right: 98px;
}
.prize-winner-section .icon-p3{
  left: -12%;
  top: 20%;
}
.prize-winner-section .container{
  max-width:1206px;
}
.prize-winner-section .info{
    font-size: 20px;
    max-width: 1030px;
    text-align: center;
    margin:0 auto 62px;
    position: relative;
    background:url(../images/contest-prize-banner-design.png)no-repeat;
    background-position:right top;
    padding-top: 90px;
    background-size: 1000px;
    min-height: 300px;
}
.p-r-10{
  padding-right:10px;
}
.p-l-10{
  padding-left:10px;
}
.prize-winner-section .info .prize-title{
  font-family:var(--montybold-font-family);
  font-size: 48px;
  line-height:53px;
  padding-bottom:25px;
}
.prize-winner-section .info  p{
  max-width:620px;
  margin:0 auto;
}
.prize-winner-section .info  p+p{
  margin-top:20px;
}
/*.prize-winner-section .info .prize-title:after{
    content: "";
    background: url(../images/trophy-icon.png)no-repeat;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-left: 15px;
    position: relative;
    top: 2px;
}*/

.prize-winner-section  .prize-lists{
    max-width: 577px;
    margin: 0 auto;
}
.prize-winner-section  .prize-lists li{
  background:var(--primary-color);
  border-radius: 6.2285px;
  display: flex;
  justify-content: left;
  align-items: center;
  color:var(--white-color);
  font-size: 15.14px;
  line-height: 25px;
  font-family:var(--montyregular-font-family);
  padding:10px 15px 10px 30px;
  margin-bottom:15px;
}
.prize-winner-section  .prize-lists li:last-child{
  margin-bottom:0;
}
.prize-winner-section  .prize-lists li .list-title{
  font-family:var(--montybold-font-family);
  font-size: 24.7257px;
  line-height: 24px;
  letter-spacing: 0.02em;
  flex:1;
}
.prize-winner-section  .prize-lists li .prize-detail{
  display: flex;
  align-items: center;
}
.prize-winner-section  .prize-lists li .prize-detail span{
  opacity:0.8;
}
.prize-winner-section  .prize-lists li .prize-detail .pic{
  margin-left:25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.prize-winner-section  .prize-lists li .prize-detail .pic img{
  border-radius: 50%;
}
.prize-winner-section  .best-customer-box{
  width: 578px;
  background:var(--primary-color);
  border-radius: 6.2285px;
  padding:26px 26px 12px 30px;
  font-weight:var(--regular-weight);
  font-size: 15.0828px;
  line-height: 19px;
  color:var(--white-color);
  height: 100%;
}
.prize-winner-section  .best-customer-box .icon{
    position: absolute;
    right: -60px;
    top: -50px;
    max-width: 245px;
}
.prize-winner-section  .best-customer-box h4{
  font-family: var(--montybold-font-family);
  font-size: 45.6922px;
  line-height: 45px;
  letter-spacing: 0.02em;
  font-style: normal;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.prize-winner-section  .best-customer-box h4:after{
  content:"";
  background: url(../images/trophy-icon-dark.png)no-repeat;
  width: 48px;
  height: 48px;
  display: inline-block;
  background-size: 100%;
  margin-left: 10px;
}
.prize-winner-section  .best-customer-box h5{
  font-style: italic;
  font-weight: var(--bold-weight);
  font-size: 17.8282px;
  line-height: 21px;
  max-width: 324px;
  padding-bottom: 10px;
}
.prize-winner-section  .best-customer-box ul{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap:15px;
  margin-top:12px;
  margin-bottom:12px;
}
.prize-winner-section  .best-customer-box .prize-detail{
  display: flex;
  align-items:center;
  justify-content: center;
  column-gap:15px;
}
.prize-winner-section  .best-customer-box .prize-detail span{
  opacity: 0.8;
}
.prize-winner-section  .best-customer-box .prize-detail .pic{
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.prize-winner-section  .best-customer-box .design-icon{
  background-size: 16px !important;
  position: absolute;
  right: 25px;
  margin-top: -2px;
}
/*Funds Section*/
.funds-section{
  background:url(../images/donate-banner.png)no-repeat;
  background-position: center;
  padding: 330px 0 260px;
  position: relative;
  z-index: 9;
  min-height: 1236px;
  background-size: cover;
}
.funds-section .icon-p1{
    left: 50%;
    bottom: 14%;
}
.funds-section .icon-p2{
  bottom: 16%;
  left: -8%;
}
.funds-section .icon-p3{
  left: 6%;
  top: 24%;
}
.funds-section .icon-p4{
  right: 7%;
  top: 38%;
}
.funds-section .circular-box{
    width: 552px;
    height: 552px;
    background: linear-gradient(180deg, #4BCCCC 0%, #3E8AAB 100%);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 46px;
    line-height: 46px;
    color:var(--white-color);
    font-family:var(--montybold-font-family);
    padding: 0 25px;
    margin: 0 auto;
}
.funds-section .circular-box p{
   opacity: 0.8;
}
.funds-section .funds-desp{
  text-align: center;
  text-transform: uppercase;
  color:var(--white-color);
  padding-top: 40px;
}

.funds-section .funds-desp .price-box{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
}
.funds-section .funds-desp .price-box span{
  background:url(../images/price-bg.png)no-repeat;
  width: 58px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 78.6607px;
}
.funds-section .funds-desp .price-box .currency{
 font-size: 68.1726px;
}
.funds-section .funds-desp .price-box .seperater{
  font-size: 52.4405px;
  width: 35px;
}
.funds-section .funds-desp .desp-title{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: var(--bold-weight);
    letter-spacing: 1px;
    margin-top: 15px;
}
.funds-section .funds-desp .desp-title span{
  font-size: 15px;
  text-transform: initial;
  font-weight:var(--regular-weight);
  font-style: italic;
  display: block;
}

.funds-section .funds-desp.total-sum .desp-title{
 padding-top:16px;
 font-size: 36px;
}

.funds-section .btn-wrapper{
 padding-top:60px;
}

/*tips-to-help-you*/
.tips-to-help-you{
  position: relative;
}
.tips-to-help-you .icon-p1{
  left: 110px;
  top: 28%;
}
.tips-to-help-you .icon-p2{
  top: -15%;
  left: 21%;
}
.tips-to-help-you .icon-p3{
  bottom: 0;
  left: 7%;
}
.tips-to-help-you .icon-p4{
  top: -13%;
  left: 13%;
}
.tips-to-help-you .icon-p5{
    right: 5%;
    top: 36%;
}
.tips-to-help-you .icon-p6{
  right: 8.5%;
  top: 22%;
}
.tips-to-help-you .icon-p7{
    bottom: 2.5%;
    right: 4%;
}
.tips-to-help-you .container{
  max-width: 1370px;
  display: flex;
}
.tips-to-help-you .left-section{
 position: relative;
 padding-top: 110px;
}
.tips-to-help-you .left-section p{
  font-size: 22.772px;
  line-height: 36px;
  letter-spacing: 0.162657px;
}
.tips-to-help-you .left-section .sub-title{
  font-size: 40.2334px;
  line-height: 54px;
  letter-spacing: 1.08766px;
  text-transform: capitalize;
  font-family:var(--montyregular-font-family);
}
.tips-to-help-you .left-section .title{
  font-size: 65px;
  line-height: 65px;
  font-family:var(--montybold-font-family);
  padding-bottom: 15px;
  position: relative;
}
.tips-to-help-you .left-section .title:after{
    content: "";
    background: url(../images/help-icon.png)no-repeat;
    width: 208px;
    height: 148px;
    position: absolute;
    top: 100%;
    right: 36px;
}
.tips-to-help-you .left-section .btn{
  margin-top:5px;
}
.tips-to-help-you .right-section{
  display: flex;
      column-gap: 27px;
}
.tips-to-help-you .right-section .box{
    background: var(--grey-color);
    padding: 370px 55px 70px 55px;
    margin-top: -300px;
    width: 404px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 24px;
    line-height: 34px;
}
.tips-to-help-you .right-section .box .heading-tag{
    display: flex;
    align-items: center;
    font-size: 42.8216px;
    line-height: 45px;
    font-family: var(--montybold-font-family);
     padding-bottom:30px;
}
.tips-to-help-you .right-section .box .heading-tag.do{
    /*background: url(../images/check-icon.png)no-repeat;
    background-position: center left;*/
  color: var(--secondary-color);
  font-size: 55.0563px;
  line-height: 58px;
   padding-bottom:10px;
}
.tips-to-help-you .right-section .box .heading-tag.do + p{
  font-size: 31.3382px;
  line-height: 37px;
}
.tips-to-help-you .right-section .box .heading-tag.dont{
    /*background: url(../images/cross-icon.png)no-repeat;
    background-position: center left;*/
    color: var(--primary-color);
    max-width: 250px;
}
.tips-to-help-you .right-section .box  p + p{
  padding-top:30px;
}
.tips-to-help-you .right-section .box ul{
  list-style: inherit;
  padding-left: 25px;
  padding-top:25px;
}
.tips-to-help-you .right-section .box ul li{
  display: block;
  display: list-item;
  line-height:28px;
  letter-spacing: 0.02em;
  padding-top:15px;
  font-size: 23.4283px;
}
/*Faq*/
.faq-section{
 padding:135px 0;
 position: relative;
}
.faq-section .icon-p1{
  left: 5%;
  top: 42%;
}
.faq-section .icon-p2{
    bottom: 27%;
    left: -15%;
}
.faq-section .icon-p3{
    right: 13%;
    top: 29%;
}
.faq-section .faq-heading{
  text-align: center;
  font-family:var(--montybold-font-family);
  font-size: 80px;
 text-transform: uppercase;
  padding-bottom: 30px;
}
.faq-section .container{
  max-width:1030px;
}
.accordion{

}
.accordion .pad-right-6{
 padding-right:6px;
}
.accordion .pad-left-6{
 padding-left:6px;
}
.accordion .card{
 border:0;
 margin-bottom: 10px;
}
.accordion .card .card-header{
  background: transparent;
  border:0;
  border-radius:0;
  margin: 0;
  padding:0;
}
.accordion .card .card-header a{
    background: var(--secondary-color);
    border-radius: 5px;
    font-weight: var(--bold-weight);
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
    padding: 11px 70px 10px 22px;
    display: flex;
    align-items: center;
    position: relative;
}
.accordion .card .card-header a span{
  display: flex;
  min-height: 50px;
  align-items: center;
}
.accordion .card .card-header .icon{
    cursor: pointer;
    background: url(../images/plus-icon.png)no-repeat;
    width: 35px;
    height: 36px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion .card .card-header a:not(.collapsed){
  background:var(--primary-color);
}
.accordion .card .card-header a:not(.collapsed) .icon {
  background: url(../images/minus-icon.png)no-repeat;
  height: 6px;
}
.accordion .card-body{
  padding: 20px 22px 14px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.1px;
}
.accordion .card-body ul{
    list-style: inherit;
    padding-left: 15px;
}
.accordion .card-body ul li{
  padding-top: 6px;
  display: list-item;
}
.accordion .card-body p+p{
  padding-top:10px;
}
.accordion .card-body a{
  text-decoration: underline;
  color:var(--secondary-color);
}
.design-icon.grey{
  background: url(../images/grey-design-icon.png)no-repeat;
  width: 146px;
  height: 155px;
}
.design-icon.grey-02{
  background: url(../images/grey-design-02-icon.png)no-repeat;
  width: 146px;
  height: 155px;
}
.design-icon.blue{
  background: url(../images/blue-design-icon.png)no-repeat;
  width: 146px;
  height: 155px;
}
.design-icon.blue-02{
  background: url(../images/blue-design-02-icon.png)no-repeat;
  width: 146px;
  height: 155px;
}
.design-icon.blue-03{
  background: url(../images/blue-design-03-icon.png)no-repeat;
  width: 147px;
  height: 156px;
}
.design-icon.white{
  background: url(../images/white-design-icon.png)no-repeat;
  width: 176px;
  height: 186px;
}
.design-icon.white-02{
  background: url(../images/white-design-icon-02.png)no-repeat;
  width:54px;
  height:57px;
}


.design-icon.size-44{
  width: 44px;
  height: 48px;
}
.design-icon.size-52{
  width:52px;
  height: 56px;
}
.design-icon.size-82{
  width: 82px;
  height: 88px;
}
.design-icon.size-68{
  width: 68px;
  height: 72px;
}
.design-icon.size-98{
  width: 98px;
  height:104px;
}
.design-icon.size-125{
  width: 125px;
  height:133px;
}

.design-icon.size-114{
  width: 114px;
  height:124px;
}

.design-icon{
  background-size:100% !important;
  display: inline-block;
  position: absolute;
}
.design-icon.opacity-60{
  opacity:0.6;
}
.design-icon.opacity-50{
  opacity:0.5;
}
.design-icon.opacity-20{
  opacity:0.2;
}


.slick-dots li{
  padding:0 8px;
}
.slick-dots li button{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-color);
  border: 0 !important;
  text-indent: -99999px;
  box-shadow: none !important;
  outline: 0px !important;
}
.slick-dots .slick-active button{
  background:var(--blue-color);
}
.plunge-boxes .slick-dots{
  margin-top:-10px;
}
/*Responsive Css*/


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

.site-header ul li.secondary-btn a{
  width:170px;
  font-size: 20px;
}

.site-header ul li {
    padding-left: 34px;
}

.site-header {
  padding: 0 0 0 10px;
}
.site-header .site-branding .site-description {
    font-size: 20px;
    margin-right:10px;
}
.site-header .site-branding .custom-logo-link{
  margin-right:10px;
}
.site-header .site-branding .social-icons img {
    max-width: 25px;
    margin-left: 8px;
}
.site-header ul li.secondary-btn a{
  margin-left:10px;
}

}


@media only screen and (max-width: 1440px) {
 
 .main-banner{
  background-image:url(../images/main-banner-design-1440.png);
   background-repeat:no-repeat;
   background-color:var(--grey-color);
  background-position: center;
 }

 .about-us-section {
    padding-top: 86px;
    background: url(../images/about-us-banner-design-1440.png)no-repeat;
    background-position: 30px 56px;
}

.sign-up-section {
    background: url(../images/signup-section-bg-img.png)no-repeat;
    padding:209px 0 203px;
    background-size: cover;
    background-position: center;
}
.sign-up-section .container {
    max-width: 1000px;
}

.sign-up-section .right-section .btn{
    min-width: 432px;
    height: 78px;
    font-size:24px;
}
.splash-section {
    padding: 180px 0;
}
.splash-section .container {
    max-width: 1000px;
}
.splash-section .icon-p1 {
    left: 7%;
    top: 34%;
}
.splash-section .icon-p3{
    left: 6.5%;
    top: 16%;
    display: block !important;
}
.splash-section .right-section {
    margin-right: -10%;
}
.splash-section .icon-p2 {
    right: 9%;
    bottom: -6%;
}
.submit-your-video-section{
  background: url(../images/submit-your-video-banner-1440.png)no-repeat;
  padding: 225px 0 180px;
}
.submit-your-video-section:after {
  content: "";
  background: url(../images/submit-your-video-graphics-1440.png)no-repeat;
  background-size: 1295px;
  height: 1715px;
  margin-top: -95px;
  background-position: center;
}
.submit-your-video-section .video-box .info{
  padding-top:20px;
}
.submit-your-video-section .video-box .info .note{
  margin-top:74px;
}
.submit-your-video-section:before {
    content: "";
    background: url(../images/submit-your-video-banner-design-1440.png)no-repeat;
    width: 100%;
    height: 100%;
    background-position: 27.5% 50%;
}
.share-section {
    margin-top: 0;
}
.share-section .common-info-section {
    padding-top:92px;
    padding-left: 20px;
}
.share-section .icon-p1 {
    top: 51%;
    left: 2%;
}
.share-section .icon-p2 {
    right: 5%;
    top: 58%;
}
.get-in-touch-section {
    background-image:url(../images/get-in-touch-banner-design-1440.png);
    background-repeat:no-repeat;
    background-color:var(--grey-color);
    background-position:63% 110px;
    min-height: 700px;
}
.donate-section {
    background-image:url(../images/donate-section-banner-1440.png);
    background-repeat:no-repeat;
    padding: 187px 0 0;
    background-size: 100%;
    min-height: 1251px;
}
.donate-section:after {
    content: "";
    background: url(../images/donate-banner-design-1440.png)no-repeat;
    background-position: 50% 42%;
}
.donate-section .image-boxes{
  padding-top:0;
}
.plunge-week-section{
  margin-top:0;
  padding-top:80px;
  background-image: url(../images/plunge-week-banner-design-1440.png);
  background-position: calc(100% - 33px) 60px;
}
.plunge-week-section .icon-p2 {
    right: auto;
    top: 20px;
    left: 196px;
}
.plunge-week-section .icon-p1 {
    right: 120px;
    top: 20px;
}
.leaderboard-section {
    background: url(../images/leader-board-banner-design-1440.png)no-repeat;
    background-position: center bottom;
    background-color: var(--grey-color);
}
.leaderboard-section .info-section{
  max-width: 820px;
}
.leaderboard-section .most-funds-raised{
  padding-top:75px;
}
.prize-winner-section {
    padding:0px 0 200px;
    margin-bottom: -125px;
}
.prize-winner-section .design-icon{
  display: none;
}
.funds-section {
    background: url(../images/donate-banner-1440.png)no-repeat;
    padding:270px 0 194px;
    min-height: 1099px;
}
.prize-winner-section .icon-p1 {
    left: -3%;
    top: -35px;
}
.prize-winner-section .icon-p2{
    display: block;
    width: 80px;
    height: 88px;
    right: 29%;
    bottom: 60px;
}
.prize-winner-section .icon-p3{
    bottom: -140px;
    right: 26%;
} 
.prize-winner-section .best-customer-box .design-icon{
  display: block;
}
.funds-section .icon-p3 {
    left: 4%;
    top: 14%;
}
.funds-section .icon-p1 {
    left: 50%;
    bottom: auto;
    top: -20%;
}
.funds-section .icon-p2 {
    bottom: 15%;
    left: -4%;
}
.funds-section .icon-p4 {
    right: 4%;
    top: auto;
    bottom: 30%;
}
.tips-to-help-you .left-section .sub-title{
  font-size:35px;
}
.tips-to-help-you .left-section .title{
  font-size: 57px;
  line-height: 57px;
}
.tips-to-help-you .left-section {
    padding-left:0px;
    padding-top: 175px;
}
.tips-to-help-you .left-section .title:after {
    width: 156px;
    height: 111px;
    background-size: 100%;
    right: 56px;
}
.tips-to-help-you .container {
    max-width: 1300px;
}
.tips-to-help-you .right-section .box{
  padding-top:420px;
}
.tips-to-help-you .icon-p1{
  display: none;
}
.tips-to-help-you .icon-p2 {
    top: -6%;
    left: 10%;
}
.tips-to-help-you .icon-p3 {
    bottom: 0;
    left: 10%;
}
.tips-to-help-you .icon-p4 {
    top: 29%;
    left: 8%;
}
.tips-to-help-you .icon-p5 {
    right: 20px;
    top: 70%;
}
.tips-to-help-you .icon-p6 {
    right: 4%;
    top: 32%;
    z-index: 9;
}
.tips-to-help-you .icon-p7 {
    bottom: -20%;
    right: 14%;
}
.faq-section {
    padding: 120px 0;
}
.faq-section .icon-p1 {
    left: 5%;
    top: 39%;
}
.faq-section .icon-p2 {
    bottom: 19%;
    left: -12%;
}
.faq-section .icon-p4{
    bottom: 4%;
    right: -12%;
    display:block !important;
}
.faq-section .icon-p3 {
    right: 2%;
    top: 37%;
}
.call-to-action {
    padding-bottom: 40px;
}
.site-footer {
    background-image:url(../images/footer-banner-1440.png);
    background-repeat:no-repeat;
    background-color:var(--grey-color);
    padding-top:198px;
    padding-bottom: 75px;
}
}


@media only screen and (max-width: 1400px) {
 
 .site-header ul li {
    padding-left: 20px;
}

}

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

.site-header .site-branding .site-description {
    font-size: 16px;
    margin-right: 5px;
}
.site-header ul li {
    padding-left:18px;
}
.site-header ul li.secondary-btn a {
    width: 130px;
    font-size: 18px;
}
.main-banner,.submit-your-video-section:after,.donate-section:after{
     background-size: 100%;
}
.prize-winner-section .icon-p1,.funds-section .icon-p2{
  left:0;
}
.faq-section .icon-p2 {
    left: -75px;
}
.faq-section .icon-p4{
  right:-75px;
}
.share-section .common-info-section{
  padding-top:0;
}
.splash-section .icon-p3{
  left:10px;
}
.splash-section .icon-p1{
  left:15px;
}

.donate-section{
  background-size:cover;
}
.leaderboard-section{
  background-size:100%;
}
.prize-winner-section .best-customer-box{
  width: 95%;
  max-width: 578px;
  margin: 0 auto;
}
.prize-winner-section .best-customer-box .icon{
  right:0;
}
.prize-winner-section .best-customer-box h4{
  font-size:37px;
}
}


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

.responsive-elements{
  display: block !important;
}

.show-on-tablet,.active #menu-close-btn{
  display: block !important;
}
#menu-close-btn{
  position: absolute;
  top: 20px;
  right: 20px;
}
.site-header .main-navigation .align-middle{
  width: 100%;
  max-height: 100%;
  overflow-y: scroll;
}
.site-header .main-navigation{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height:0;
    z-index: 999;
    background:var(--primary-color);
    align-items: center;
    justify-content: center;
    transition:0.3s ease;
}
.site-header .main-navigation ul li.secondary-btn{
  display: table;
  margin: 25px auto 0;
}
.site-header .main-navigation ul li.secondary-btn a {
    width: 276px;
    font-size: 26px;
    margin: 0 auto;
    display: table-cell;
}
.site-header .main-navigation ul li a {
    font-size: 16px;
    line-height: 41px;
    display: inline-block;
}
.site-header .main-navigation img.show-on-tablet{
  max-width: 650px;
      margin: 0 auto 30px;
}
.site-header .main-navigation.active{
 display: flex;
 height:100%;
}

.site-header .main-navigation ul li{
  display: block;
  padding: 6px 0;
}
.site-header ul li a:after{
  bottom: 0;
}
.site-header ul li.secondary-btn a {
    width: 170px;
    font-size: 20px;
    margin-left:25px;
}

.site-header ul li{
  padding:0;
}
.site-header {
    padding: 0 0 0 25px;
}
.site-header .site-branding .custom-logo-link{
  display: none;
}
.site-header ul li a#menu-toggle-btn:after{
  display: none;
}
.site-header .site-branding .site-description {
    font-size: 20px;
    margin-right: 12px;
}
.main-banner .banner-content {
    max-width: 875px;
}
.main-banner {
    background-image:url(../images/main-banner-design-1024.png);
    background-repeat:no-repeat;
    background-color:var(--grey-color);
    background-position: center;
}
.main-banner .banner-logo {
    margin-bottom: 80px;
}

.about-us-section .col-md-5,.about-us-section .col-md-7{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.about-us-section .video-section{
  margin:0 auto;
}
.about-us-section .info {
    max-width: 558px;
    margin: 53px auto 0;
    text-align: center;
}
.about-us-section .info .title{
  padding-bottom:25px;
}
.about-us-section .info p+p {
    padding-top: 25px;
}
.about-us-section{
  padding-bottom:60px;
  background: url(../images/about-us-banner-design-1024.png)no-repeat;
  background-position: center 130px;
}

.sign-up-section .col-md-6{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.sign-up-section .common-info-section{
  max-width: 707px;
  margin: 0 auto;
}
.sign-up-section .right-section {
    top: 0;
    transform: none;
    float: none;
    margin-top: 52px;
}
.sign-up-section .right-section .btn {
    min-width: 472px;
    height: 86px;
    font-size: 27px;
    margin: 0 auto 50px;
}
.splash-section {
    padding: 78px 0 46px;
}
.splash-section .design-icon{
  display: none !important;
}
.splash-section .col-md-5,.splash-section .col-md-7{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.splash-section .common-info-section {
    max-width: 721px;
    top: 0;
    transform: none;
    margin: 0 auto;
}
.splash-section .right-section {
    float: none;
    margin: 65px auto 0;
    width: 733px;
}
.pdf-box {
    max-width: 100%;
    padding: 0 72px 41px;
}

.submit-your-video-section:after {
    background-size: 92%;
}
.submit-your-video-section:before {
    background: url(../images/submit-your-video-banner-design-1024.png)no-repeat;
    background-position: center;
}

.submit-your-video-section .video-box {
    width: 385px;
    height: 655px;
    background-size: 100%;
}
.submit-your-video-section .video-box .info .title {
    font-size: 47px;
    line-height: 47px;
    max-width: 250px;
}
.submit-your-video-section .video-box .info p {
    max-width: 300px;
}
.submit-your-video-section .video-box .info {
    padding-top: 60px;
    font-size: 17px;
    line-height: 22px;
}
.submit-your-video-section .video-box .info .note {
    margin-top: 30px;
    font-size: 24px;
    line-height: 31px;
    height: 92px;
    border-radius: 8.14222px;
}
.site-footer .sponsors {
    border-bottom:0;
    max-width: 773px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 38px;
}
.site-footer .sponsors ul{
  margin-bottom: 0;
}
.site-footer .sponsors:after{
  content:"";
  background:rgba(255, 255, 255, 0.4);
  height:2px;
  width: 550px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.site-footer .footer-columns .footer-column:first-child{
  display:none;
}
.site-footer .footer-columns{
   display: block;
    padding-top: 50px;
}
.site-footer{
    padding-top: 220px;
    padding-bottom: 45px;
    background-size: cover;
}
.site-footer .footer-columns .footer-column .social-links ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.site-footer .footer-columns .footer-column .register-info{
  padding-top: 25px;
  padding-bottom: 10px;
}
.site-footer .footer-columns .footer-column .register-info p{
  padding-top:20px;
}
.site-footer .footer-columns .footer-column .social-links ul li{
  padding:0 10px;
}
.site-footer .footer-columns .footer-column .menu li.secondary-btn a{
  margin-left:auto;
  margin-right:auto;
}
.site-footer .footer-columns .footer-column .social-links {
    padding-top: 40px;
}
.site-footer .disclaimer {
    justify-content: center;
    margin-top:20px;
    font-size: 38px;
}
.donate-section{
  background-size: cover;
}
.share-section .common-info-section {
  margin-top: 25px;
}
.leaderboard-section {
    background-size: 100%;
    background-position: 50% 70%;
}
.prize-winner-section .col-md-6{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.prize-winner-section .best-customer-box{
  position: relative;
  margin-top:73px;
    height: auto;
}
.prize-winner-section .best-customer-box .icon{
  right:-60px;
}
.prize-winner-section .best-customer-box h4 {
    font-size: 44px;
}
.prize-winner-section .info p {
    max-width: 630px;
}
.prize-winner-section .info {
    background: url(../images/contest-prize-banner-design-1024.png)no-repeat;
    padding-top: 125px;
    background-size: 100%;
    max-width: 920px;
}
.prize-winner-section .icon-p1 {
    right: 17%;
    left: auto;
    top: 50px;
    background: url(../images/blue-design-icon.png)no-repeat;
    width: 76px;
    height: 82px;
}
.plunge-week-section{
  background-position: calc(100% - 15px) top;
}
.funds-section .col-md-6{
   -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.funds-section {
    background: url(../images/donate-banner-1024.png)no-repeat;
    padding:210px 0 100px;
    min-height: 1325px;
    background-size: 100%;
     margin-bottom:50px;
}
.funds-section .icon-p1 {
    left: 79%;
    bottom: 29%;
    top: auto;
}
.funds-section .icon-p3 {
    left: 10%;
    top: 19%;
    z-index: 1;
}
.funds-section .icon-p2 {
      left: 18%;
    bottom: 29%;
}
.funds-section .icon-p4 {
    right: 6%;
    bottom: 19%;
}
.prize-winner-section .icon-p3{
  right: 8%;
  z-index: 99;
  bottom: -250px;
}
.tips-to-help-you .container{
  display: block;
}
.tips-to-help-you .left-section {
    padding-top: 0;
        max-width: 690px;
}
.tips-to-help-you .right-section {
    justify-content: center;
}
.tips-to-help-you .right-section .box {
    margin: 67px 0 0;
    padding:45px 40px 40px 40px;
    width: 372px;
    align-items: center;
}
.tips-to-help-you .right-section .box ul{
  padding-top:10px;
}
.tips-to-help-you .container {
    max-width: 802px;
}
.tips-to-help-you .left-section .title:after {
    background: url(../images/help-icon-1024.png)no-repeat;
    width: 161px;
    height: 187px;
    top: -20px;
    right: 0;
}
.tips-to-help-you .icon-p3{
    left: 6%;
    bottom: -15%;
}
.tips-to-help-you .icon-p2 {
    top: 0;
    left: 5%;
}
.custom-modal .gform_wrapper .ginput_container_consent{
  max-width:calc(100% - 380px);
}

.custom-modal-dialog{
  padding:50px 30px 40px;
}
.custom-modal .gform_wrapper .ginput_container_consent +.validation_message{
  position: relative;
}
.custom-modal .gform_confirmation_message{
  background-size:100%;
 background-position:top;
}

.p-r-10 {
    padding-right: 15px;
}
.p-l-10 {
    padding-left: 15px;
}
}

@media screen and (min-width:768px) and (max-width:1200px) {
  
  .funds-section .custom-design{
  background:var(--grey-color);
  margin-bottom: 150px;
  padding-top: 100px;
  }
  .funds-section .circular-box{
  width:400px;
  height: 400px;
  font-size: 38px;
  line-height: 38px;
  }
  .prize-winner-section .icon-p2{
    display: none;
  }
  .tips-to-help-you .icon-p1 {
    display: block;
    opacity: 1;
    width: 55px;
    height: 66px;
    top: -60px;
    left: 50%;
}
.tips-to-help-you .icon-p2 {
    top: -30px;
    right: 15%;
    z-index: 9;
    left: auto;
    opacity: 0.2;
    width: 66px;
    height: 76px;
}
.tips-to-help-you{
  margin-top:40px;
}
.tips-to-help-you .icon-p4 {
    top: -7%;
    left: 13%;
}
.tips-to-help-you .icon-p5 {
    right: auto;
    top: 19%;
    left: 370px;
}
.tips-to-help-you .icon-p6 {
  left: 4%;
  top: 80%;
}
  .funds-section .icon-p5{
    display:block !important;
    bottom: -9%;
    right: 22%;
  }
  .funds-section .icon-p6{
    display: block !important;
    top: 13%;
    right: 6%;
    opacity: 0.6;
  }

  .funds-section .funds-desp .desp-title{
    font-size: 36px;
  }

}

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

.prize-winner-section .info {
    max-width: 914px;
    margin: 0 auto 63px;
    top: 0;
    transform: none;
}
.share-section .common-info-section {
    float: none;
    max-width: 700px;
    margin: 320px auto 0;
}
.sign-up-section{
  background: url(../images/signup-section-bg-img.png)no-repeat;
  padding-top: 190px;
  padding-bottom: 0;
  min-height: 935px;
}
.funds-section{
  margin-bottom:0;
  background-size: cover;
}
.submit-your-video-section {
    background: url(../images/submit-your-video-banner-1024.png)no-repeat;
    min-height: 1047px;
    padding: 210px 0 180px;;
}
.submit-your-video-section:before {
    background-position:65% 50%;
}
.submit-your-video-section:after {
    background-size: 86%;
    height: 1270px;
    margin-top: 0;
    background-position: 82% 50%;
}
.site-footer {
    background-image:url(../images/footer-banner-1024.png);
    background-repeat:no-repeat;
    background-color:var(--grey-color);
    padding-top: 180px;
    padding-bottom: 50px;
    min-height: 1067px;
    background-size: cover;
}
.call-to-action {
    padding-bottom: 25px;
}
.call-to-action .design-icon.grey-02 {
    left: 66px;
    top: 75%;
    margin-top: 0;
}
.accordion .col-md-6{
   -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.accordion .pad-right-6 {
    padding-right: 15px;
}
.accordion .pad-left-6 {
    padding-left: 15px;
}
.accordion {
    max-width: 494px;
    margin: 0 auto;
}
.faq-section {
    padding: 120px 0 60px;
}
.faq-section .icon-p4 {
    right: 60px;
    bottom: 0%;
}
.faq-section .icon-p2 {
    left: 90px;
    bottom: 25%;
}
.faq-section .icon-p1 {
    left: 17%;
}
.faq-section .icon-p3 {
    right: 17%;
    top: 30%;
}
.donate-section {
    background-image:url(../images/donate-section-banner-1024.png);
    background-repeat:no-repeat;
    min-height: 1350px;
    padding: 200px 0 0;
}
.donate-section:after{
  display: none;
}
.donate-section .container {
    max-width: 820px;
}
.donate-section .image-boxes {
    column-gap: 50px;
    padding: 15px 0 28px;
}
.donate-section .section-heading h3 {
    font-size: 63px;
    line-height: 63px;
    padding-bottom:20px;
}
.donate-section .info .btn-wrapper {
    padding-top: 20px;
}
.leaderboard-section .most-funds-raised .col-md-6{
   -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.plunge-week-section {
    padding-top: 0;
    background-image: url(../images/plunge-week-banner-design-1024.png);
    background-position: center 5px;
      padding-bottom: 112px;
}
.plunge-week-section .icon-p2 {
    top: 85px;
    left: 103px;
}
.plunge-week-section .title{
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 86px;
}
.leaderboard-section .section-heading {
    top: -45px;
}
.leaderboard-section .info-section{
  margin-top:-70px;
}
.plunge-week-section .plunge-boxes .plunge-box{
  width:622px;
  max-width: 100%;
}
.leaderboard-section .most-funds-raised .result-box {
    padding-bottom:86px;
}
.leaderboard-section{
  padding-bottom: 10px;
}
.leaderboard-section {
    background-size: 90%;
}
.prize-winner-section .col-md-5,.prize-winner-section .col-md-7{
   -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.plunge-week-section .plunge-boxes{
  grid-template-columns: auto;
  grid-gap: 30px;
}
.plunge-week-section .plunge-boxes .plunge-box{
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
    min-height: 240px;
}
.plunge-week-section .plunge-boxes .plunge-box .date{
  margin: 0;
  padding-top: 0;
}
.plunge-week-section .plunge-boxes .plunge-box:nth-of-type(even){
  display: block;
padding: 40px 30px;
}
.plunge-week-section .plunge-boxes .plunge-box:nth-of-type(even) .date{
  margin:0 auto 34px;
}

.custom-modal-dialog{
  width:800px;
  padding:45px 40px 35px;
}
.custom-modal div.ginput_complex.ginput_container.gf_name_has_2 span{
  padding:0 !important;
  width:100%;
  margin: 0 !important;
}
.custom-modal div.ginput_complex.ginput_container.gf_name_has_2 span:last-child{
  padding:0 !important;
}
.gform_wrapper li.input-field.half{
  width:100%;
  padding:0 !important;
}
.gform_wrapper li.input-field.half+.half{
  padding:0 !important;
}
body .gform_wrapper li.input-field input{
  height:69px;
  margin-bottom:14px;
  padding-left:44px !important;
}
.custom-modal .upload-box .gfield_description h4{
  font-size:42px;
  line-height:46px;
}
.custom-modal .gform_wrapper .ginput_container_consent {
    max-width: 310px;
    font-size: 12px;
    line-height: 18px;
}
.custom-modal .gform_wrapper .gform_footer {
    margin-top: -110px;
}
.custom-modal .gform_wrapper .gform_footer input[type=submit]{
  width:372px;
}
.custom-modal .gform_wrapper .ginput_container_consent{
  margin-top:25px !important;
}
.custom-modal .gform_confirmation_message{
	background: url(../images/thankyou-design-bg-tablet.png)no-repeat;
	background-position: center;
	background-size:100%;
	margin:-25px;
	padding:30px 20px 30px;
}
}

@media screen and (min-width:768px) and (max-width:850px) {

.plunge-week-section .icon-p1 {
    right: 15px;
}
.plunge-week-section .icon-p2 {
    left: 25px;
}
.share-section .common-info-section{
  margin-top:50px;
}
.main-banner{
  background-size:100%;
}
.share-section .icon-p1 {
    top: 71%;
}
.get-in-touch-section{
  background-position: center;
  background-size: 95%;
}
.faq-section .icon-p2 {
    left: 30px;
}
.faq-section .icon-p4 {
    right: 30px;
}
.call-to-action .design-icon.grey-02 {
    left: 5%;
    top: 110%;
}
.call-to-action .design-icon.blue {
    right: 47%;
    top: 108%;
}
.about-us-section{
  background-position: center;
  background-size: 92%;
}
.funds-section{
  background-size:cover;
}
.plunge-week-section{
  background-size:100%;
}
.leaderboard-section .info-section .packages ul{
    grid-template-columns: 50% 50%;
    grid-gap: 25px;
    max-width:600px;
}
.leaderboard-section .info-section .packages ul li{
  margin:0;
}
}

@media only screen and (max-width:767px) {
.show-on-mobile{
  display: block !important;
}
.site-header .site-branding .site-description {
    font-size: 14.53px;
    margin-right:6px;
}
.site-header .responsive-elements ul li.secondary-btn{
  display: none;
}
.site-header {
    padding:3px 15px;
}
.site-header ul li .menu-toggle-btn{
  display: flex;
}
.site-header .site-branding .social-icons img {
    max-width: 16px;
    margin-left: 6px;
}
.main-banner {
  background: var(--grey-color);
  padding: 37px 0 42px;
}
.main-banner .banner-logo {
    margin: 0px -12px;
}
.main-banner .banner-logo img{
 display: none;
}
.main-banner .banner-title{
  max-width: 265px;
  margin: 0 auto;
}
.main-banner .banner-content {
    max-width: 310px;
}
.main-banner .btn {
    min-width: 178px;
    height: 43px;
    font-size: 20px;
}
.main-banner .scroll-bottom {
    max-width: 30px;
    margin-top: 0;
    vertical-align: top;
}
.about-us-section .video-section {
    width: 225px;
    height: 400px;
}
.about-us-section {
    padding-bottom: 40px;
    background: #fff;
    padding-top: 36px;
        margin-bottom: 0;
}
.about-us-section .info {
    max-width: 280px;
    margin: 32px auto 0;
}
.about-us-section .info .title {
    font-size: 34px;
    line-height: 38px;
}
.sign-up-section {
    background: url(../images/sign-up-banner-767.png)no-repeat;
    padding-top: 100px;
    min-height: 663px;
    background-size: 100%;
}
.sign-up-section .common-info-section {
    font-size: 15px;
    line-height: 24px;
}
.sign-up-section .common-info-section {
    max-width: 282px;
}
.sign-up-section .right-section .btn {
    min-width: 274px;
    height: 52px;
    font-size: 20px;
    margin: 0 auto 15px;
    border-width:2px;
    border-radius: 2px;
    letter-spacing: 0.04em;
    display: none;
}
.sign-up-section .right-section .mobile-button{
  display: table !important;
}
.sign-up-section .right-section {
    max-width: 273px;
    margin: 20px auto 0;
    text-align: left;
}
.sign-up-section .right-section .btn .icon-edit {
    width: 18px;
    height: 18px;
    background-size: 100%;
    margin-left: 15px;
    top: -1px;
}
.common-info-section p + p {
    padding-top: 20px;
}
.common-info-section .title{
  padding-bottom:15px;
}
.splash-section .right-section {
    margin: 45px auto 0;
    width: 282px;
}
.pdf-box {
    padding: 0 20px 27px;
}
.pdf-box .title {
    font-size: 30px;
    line-height: 30px;
}
.splash-section {
    padding: 27px 0;
    max-width: 310px;
    margin: 0 auto;
}
.design-icon.blue-03 {
    background: url(../images/blue-design-03-icon-mobile.png)no-repeat;
    width: 89px;
    height:94px;
}
.splash-section .icon-p2{
  width: 40px;
  height: 42px;
  bottom: 0;
  z-index: 9;
  right: 8px;
}
.splash-section .common-info-section {
    max-width: 282px;
}
.common-info-section {
    font-size: 15px;
    line-height: 24px;
    max-width: 282px;
}
.splash-section .design-icon.icon-p2{
     display: block !important;
}
.submit-your-video-section:after {
    background: url(../images/submit-your-video-graphics-767.png)no-repeat;
     background-position: 45% 0;
}
.submit-your-video-section .video-box {
    width: 270px;
    height: 460px;
}
.submit-your-video-section .video-box .info .title {
    font-size: 37px;
    line-height: 37px;
    text-align: left;
}
.submit-your-video-section .video-box .info p {
    max-width: 220px;
    font-size: 15px;
    line-height: 24px;
}
.submit-your-video-section .video-box .info .note {
    margin-top: 20px;
    font-size: 20px;
    line-height: 26px;
    height: 96px;
    border-radius: 6px;
}
.submit-your-video-section .video-box .info {
    padding-top: 10px;
    font-size: 15px;
    line-height: 24px;
    padding: 0 20px;
}
.submit-your-video-section {
    background: url(../images/submit-your-video-banner-767.png)no-repeat;
    padding: 132px 0;
    min-height: 727px;
    background-size: 100%;
}
.submit-your-video-section:before{
  display: none;
}
.share-section .common-info-section {
    max-width: 272px;
    margin:0px auto 0;
    padding: 0;
}
.common-info-section .tagline {
    font-size: 21px;
    line-height: 28px;
    margin-top: 15px;
}
.share-section{
    background: url(../images/share-banner-design-767.png)no-repeat;
    background-position: 50% 0px;
    padding-top: 180px;
    padding-bottom: 105px;
}
.share-section .design-icon{
  display: none;
}
.get-in-touch-section {
    background-image:url(../images/get-in-touch-banner-design-767.png);
    background-repeat:no-repeat;
    background-color:var(--grey-color);
    padding: 56px 0 70px;
    font-size: 22px;
    line-height: 35px;
    background-position: 43px 20px;
}
.get-in-touch-section .container {
    max-width: 320px;
}
.get-in-touch-section .social-icons img {
    max-height: 40px;
    margin: 0 6px;
}
.get-in-touch-section .social-links ul li a {
    padding: 4px 8px;
    font-size: 15.3px;
    line-height: 20px;
}
.get-in-touch-section .social-links ul li a img {
    margin-right: 8px;
    max-width: 24px;
}
.donate-section {
    background-image:url(../images/donate-section-banner-767.png);
    background-repeat:no-repeat;
    padding:75px 0;
    min-height:1370px;
    background-size: 100%;
    background-position: center top;
}
.donate-section .section-heading {
    font-size: 20px;
    line-height: 26px;
    padding-bottom:20px;
}
.donate-section .image-boxes {
    column-gap: 0;
    padding: 0px 0 20px;
    max-width: 240px;
    margin: 0 auto;
}
.donate-section .image-boxes .img + .img{
  display: none;
}
.donate-section .section-heading h3 {
    font-size: 43px;
    line-height: 43px;
    padding-bottom: 10px;
}
.donate-section .section-heading p{
  max-width: 240px;
  margin: 0 auto;
}
.btn.lg {
    border: 3px solid #FFFFFF;
    border-radius: 5px;
    font-size: 20px;
    min-width: 216px;
    height: 55px;
}
.donate-section .info h5 {
    font-size: 18px;
    line-height: 22px;
}
.donate-section .info .btn-wrapper {
     padding-top: 15px;
    padding-bottom: 20px;
}
.donate-section .container {
    max-width: 320px;
}
.plunge-week-section .title {
    font-size: 52px;
    letter-spacing: -0.392131px;
    line-height: 45px;
    padding-bottom: 8px;
}
.plunge-week-section .sub-title {
    font-size: 21px;
    letter-spacing: 0.65px;
      line-height: 32px;
}
.plunge-week-section .sub-title + p{
    font-size: 20px;
    line-height:24px;
}
.leaderboard-section .section-heading .heading {
    width: 282px;
    height: 60px;
    margin: -40px auto 0;
    background-size: 100%;
}
.plunge-week-section .icon-p2 {
    display: none;
}
.plunge-week-section {
    padding-top: 50px;
  background-image: inherit;
    padding-bottom: 85px;
}
.plunge-week-section .icon-p1 {
    right: 20px;
    top:0px;
    width: 34px;
    height: 36px;
    display: block !important;
}
.plunge-week-section .plunge-boxes {
    grid-gap: 0;
    width:260px;
    margin:30px auto 0;
}
.plunge-week-section .plunge-boxes .plunge-box {
    padding: 36px 0px 25px;
    display: block;
    min-height: 380px;
    width: 100%;
    font-size:19px;
    line-height:21px;
}
.plunge-week-section .plunge-boxes .plunge-box .info{
  padding:0 20px;
}
.plunge-week-section .plunge-boxes .plunge-box:first-child{
  font-size: 22px;
  line-height: 25px;
}
.plunge-week-section .plunge-boxes .plunge-box:nth-of-type(even){
  padding: 36px 0px 25px;
  display: block;
  min-height: 380px;
  width: 100%;
  font-size: 19px;
  line-height: 21px;
    background-image: inherit;
}
.plunge-week-section .plunge-boxes .plunge-box:nth-of-type(even) .info .time {
    padding-bottom: 15px;
}
.plunge-week-section .plunge-boxes .plunge-box:nth-of-type(even) .date {
    margin: 0 auto 25px;
}
.plunge-week-section .plunge-boxes .plunge-box .info h4 {
    font-size: 36px;
    line-height: 36px;
    padding-bottom: 5px;
}
.plunge-week-section .plunge-boxes .plunge-box .info h3 {
    font-size: 52px;
}
.plunge-week-section .plunge-boxes .plunge-box .date {
    margin: 0 auto 25px;
    padding-top: 5px;
    width: 130px;
    height: 126px;
    background-size: 100%;
    font-size: 38px;
    line-height: 38px;
}
.plunge-week-section .plunge-boxes .plunge-box .info .time {
    font-size: 36px;
    padding-bottom: 15px;
}
.plunge-week-section .plunge-boxes .plunge-box .date strong {
    font-size: 66px;
    line-height: 55px;
}
.plunge-week-section .plunge-boxes .plunge-box .info .time{
  padding-bottom:15px;
}
.container {
    max-width:320px;
}
/* .leaderboard-section .section-heading {
    top: -25px;
}
.leaderboard-section .info-section p {
    max-width: 200px;
    margin: 15px auto 10px;
    font-size: 14px;
    line-height: 20px;
}
.leaderboard-section .info-section .section-title p:first-child:before,
.leaderboard-section .info-section .section-title p:first-child:after{
  width: 25px;
  height: 25px;
}
.leaderboard-section .info-section .section-title p:first-child:before{
  margin-right:3px;
}
.leaderboard-section .info-section .section-title p:first-child:after{
  margin-left:3px;
}
.leaderboard-section .info-section .section-title p{
  font-size: 21px;
  line-height: 21px;
}
.leaderboard-section .info-section .section-title strong{
  font-size: 24px;
  line-height: 22px;
  padding: 0 5px;
  letter-spacing: 0;
}
.leaderboard-section .info-section .section-title p+p strong {
    font-size: 24px;
}
.leaderboard-section .info-section {
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
    margin-top: -35px;
}
.leaderboard-section .info-section .title {
    font-size: 21px;
    line-height: 21px;
}
.leaderboard-section .info-section .title span {
    font-size: 12px;
    padding-top: 5px;
}
.leaderboard-section .info-section ul {
    columns: 1;
    padding-top:15px;
}
.leaderboard-section .info-section ul li{
  font-size:16px;
  line-height:18px;
  padding-bottom:5px;
  text-align: left;
}
.leaderboard-section .info-section ul li:before {
    width: 16px;
    height: 18px;
    background-size: 100%;
}
.leaderboard-section .most-funds-raised .fund-raised-title {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 10px;
}
.leaderboard-section .most-funds-raised .result-box .result-box-title {
    font-size: 32px;
    line-height: 42px;
}
.leaderboard-section .most-funds-raised .result-box {
    padding-bottom: 35px;
}
.leaderboard-section .most-funds-raised {
    max-width: 100%;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item{
  font-size:15px;
  line-height: 23px;
  height: 38px;
  padding-left: 45px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label {
    font-size: 13px;
    line-height:19px;
    font-family: var(--montyregular-font-family);
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric{
  font-family: var(--montybold-font-family);
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-image {
    width:33px;
    height:33px;
    border: 2.07435px solid var(--white-color);
    filter: drop-shadow(0px 1.18534px 8.89005px rgba(255, 255, 255, 0.5));
    margin-top: -16.5px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label {
    font-size: 12.5px;
    line-height: 15px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label, .classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label{
   font-size: 13px;
    line-height: 15px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-label{
      font-size: 13px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item {
    padding-right: 60px;
    padding-left: 42px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric,
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item .classy-org-leaderboard_item-info .classy-org-leaderboard_item-info-metric {
    font-size: 14px;
    right: 10px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image img, .classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image .fa{
    width: 100px;
    height: 100px;
    font-size: 30px;
    margin-top: 22px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image img, .classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image .fa{
  width: 100px;
  height: 100px;
  font-size: 30px;
  margin-top: 22px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image,
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child .classy-org-leaderboard_item-image{
  width:150px;
  height:156px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child,
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child{
    width: 150px;
    top: 30px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-image{
  width: 117px;
  height: 129px;
  background-size: 100%;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-image{
  width: 117px;
  height: 129px;
  background-size: 100%;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-image img, .classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2) .classy-org-leaderboard_item-image .fa{
  width: 75px;
  height: 75px;
  margin-top: 19px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-image img, .classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3) .classy-org-leaderboard_item-image .fa{
  width: 75px;
  height: 75px;
  margin-top: 19px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2){
  width: 117px;
  left:5px;
  top: 65px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3){
  width: 117px;
  right:5px;
  top: 65px;
}
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:first-child,
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(2),
.classy-org-leaderboard.team .classy-org-leaderboard_items .classy-org-leaderboard_item:nth-of-type(3){
  padding:0;
}
.classy-org-leaderboard{
  max-width: 100%;
}
.classy-org-leaderboard .classy-org-leaderboard_items,
.classy-org-leaderboard.team .classy-org-leaderboard_items{
    border-radius: 8px;
    padding:150px 18px 25px 45px;
    margin-top:80px;
}
.classy-org-leaderboard .classy-org-leaderboard_items .classy-org-leaderboard_item .count{
  left: -28px;
}
.leaderboard-section{
  background-image:inherit;
} */
.prize-winner-section {
    padding:0px 0 65px;
    margin-bottom:-58px;
}
.prize-winner-section .best-customer-box{
  margin: 0;
  margin-top: 15px;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  line-height:20px;
}
.prize-winner-section .best-customer-box h4:after{
  width:30px;
  height:30px;
}
.prize-winner-section .best-customer-box h4 {
    font-size: 28px;
    line-height: 28px;
}
.prize-winner-section .best-customer-box .design-icon {
    display: none;
}
.prize-winner-section .best-customer-box h5{
  font-size:15px;
  line-height: 21px;
  padding-top:10px;
}
.prize-winner-section .best-customer-box .icon {
    position: static;
    width: 210px;
    margin: 10px auto;
}
.prize-winner-section .best-customer-box .icon + p{
  max-width: 245px;
}
.prize-winner-section .best-customer-box ul{
  column-gap: 12px;
}
.prize-winner-section .best-customer-box ul li:last-child{
  display: none;
}
.prize-winner-section .info {
    max-width: 270px;
    margin: 0 auto 30px;
    font-size:15px;
    line-height: 24px;
    background: url(../images/contest-prize-banner-design-320.png)no-repeat;
    padding-top:122px;
}
.prize-winner-section .info .prize-title {
    font-size: 38px;
    line-height: 45px;
    max-width: 100%;
}
.prize-winner-section .info .prize-title:after {
    width: 21px;
    height: 21px;
    background-size: 100%;
    top: 0;
    margin-left:8px;
}
.prize-winner-section .icon-p1 {
    right: auto;
    left: 70px;
    top: -95px;
    width: 42px;
    height: 46px;
}
.prize-winner-section .prize-lists {
    max-width: 290px;
}
.prize-winner-section .prize-lists li .list-title {
    font-size: 18px;
    line-height:20px;
}
.prize-winner-section .prize-lists li{
  display: block;
  position: relative;
  padding: 15px 60px 15px 15px;
}
.prize-winner-section .prize-lists li .prize-detail .pic {
    margin-left:0px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -22.5px;
}
.prize-winner-section .icon-p2 {
    top: -55px;
    width: 20px;
    height: 23px;
    right: 26%;
    display: none;
}
.prize-winner-section .icon-p3 {
    right: 20%;
    bottom: -75px;
    width: 55px;
    height: 60px;
}
.prize-winner-section .container {
     width:320px; 
}
.funds-section .circular-box {
    width: 225px;
    height: 225px;
    font-size: 21px;
    line-height: 26px;
}
.funds-section .funds-desp .price-box span {
    width: 31px;
    height: 43px;
    background-size: 100%;
    font-size: 42px;
}
.funds-section .funds-desp .price-box .currency {
    font-size: 36px;
}
.funds-section .funds-desp .price-box .seperater {
    font-size: 28px;
    width: 20px;
    background-size: cover;
}
.funds-section .funds-desp .desp-title {
  font-size: 23px;
  padding-top: 0;
}
.funds-section .funds-desp .desp-title span {
    font-size: 10px;
}
.funds-section .funds-desp.total-sum .desp-title {
    font-size: 22px;
    line-height: 24px;
    max-width: 210px;
    margin: 0 auto;
}
.funds-section .btn-wrapper {
    padding-top: 30px;
}
.funds-section .design-icon{
  display: none;
}
.funds-section .design-icon.icon-p3{
    display: block !important;
    width: 53px;
    height: 56px;
    right: 16px;
    left: auto;
    top: 42px;
}
.funds-section {
  padding: 70px 0;
  min-height: auto;
  background:var(--primary-color);
  margin: 58px 0;
}
.funds-section .funds-desp {
    padding-top: 20px;
}
.tips-to-help-you{
   max-width: 320px;
  margin:30px auto 0;
}
.tips-to-help-you .left-section .sub-title {
    font-size: 26px;
    line-height: 32px;
}
.tips-to-help-you .left-section .title {
    font-size: 36px;
    line-height: 36px;
}
.tips-to-help-you .left-section .title:after {
    width: 120px;
    height: 160px;
    background-size: 100%;
    top: 100%;
        right: -15px;
}
.tips-to-help-you .right-section {
    display: block;
}
.tips-to-help-you .right-section .box .heading-tag.do + p {
  font-size: 22.3513px;
  line-height: 26px;
}
.tips-to-help-you .right-section .box {
    padding:25px 25px 30px 25px;
    width: 274px;
    font-size: 18.2735px;
    line-height: 26px;
    margin:83px auto 0;
    min-height: 503px;
}
.tips-to-help-you .right-section .box+.box{
  margin-top:15px;
}
.tips-to-help-you .right-section .box ul {
    padding-left: 20px;
    padding-top: 10px;
}
.tips-to-help-you .right-section .box ul li {
    line-height:22px;
    padding-top:8px;
    font-size: 16.2023px;
}
.tips-to-help-you .right-section .box .heading-tag{
  font-size: 34.8564px;
  line-height: 37px;
  padding-bottom: 10px;
}
.tips-to-help-you .right-section .box .heading-tag.do{
  font-size: 41.4723px;
  line-height: 43px;
}
.tips-to-help-you .icon-p6 {
    right: 12%;
    top: 58%;
}
.tips-to-help-you .icon-p3 {
    left: 10%;
    width: 63px;
    height: 67px;
    bottom: -47px;
    opacity: 1;
    z-index: 1;
}
.tips-to-help-you .icon-p2 {
    display: none;
}
.tips-to-help-you .icon-p4 {
    top:22.5%;
    left: 7%;
}
.tips-to-help-you .icon-p5 {
    right: 45px;
    top: 0;
}
.tips-to-help-you .icon-p1 {
    display: block;
    top: -10px;
    opacity: 1;
    left: 35px;
}
.tips-to-help-you .icon-p7 {
    bottom: auto;
    right: 46%;
    width: 28px;
    height: 30px;
    top: -1%;
}
.tips-to-help-you .icon-p2 {
    background: url(../images/blue-design-02-icon.png)no-repeat;
    display: block;
    top: 8%;
    right: 15%;
    left: auto;
    opacity: 1;
    width: 45px;
    height: 48px;
}
.tips-to-help-you .left-section {
    max-width: 274px;
    margin: 0 auto;
    padding-top:60px;
}
.tips-to-help-you .right-section .box+.box{
  position: relative;
}
.tips-to-help-you .right-section .box+.box:after{
    content: "";
    background: url(../images/plus-icon.png)no-repeat;
    width: 35px;
    height: 36px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.faq-section .faq-heading {
    font-size: 55px;
    padding-bottom: 45px;
}
.faq-section .icon-p2 {
   background: url(../images/blue-design-02-icon.png)no-repeat;
    left: auto;
    bottom: auto;
    right: 18%;
    width: 42px;
    height: 45px;
    top: 2.5%;
}
.faq-section .icon-p1,.faq-section .icon-p3,.faq-section .icon-p4{
  display: none !important;
}
.faq-section {
    padding: 63px 0 30px;
}
.call-to-action {
    padding-bottom: 10px;
    padding-top: 40px;
}
.call-to-action .box{
   width: 263px;
  padding: 190px 15px 20px;
  text-align: center;
}
.call-to-action .box .info .cta-title {
    font-size: 30px;
    line-height: 30px;
}
.call-to-action .box .icon {
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -82px;
}
.call-to-action .box .btn {
    min-width: 100%;
}
.call-to-action .design-icon.blue {
    right: auto;
    top: -47px;
    width: 32px;
    height: 34px;
    left: 50px;
}
.call-to-action .design-icon.grey-02 {
    background: url(../images/blue-design-02-icon.png)no-repeat;
    left: auto;
    top: -38px;
    right: 60px;
    margin-top: 0;
}
.site-footer {
    background-image:url(../images/footer-banner-767.png);
    background-repeat:no-repeat;
    background-color:var(--grey-color);
    padding-top: 84px;
    padding-bottom: 40px;
    min-height: 1000px;
    background-size: cover;
}
.site-footer .sponsors .sponsor-title {
    font-size: 16px;
    line-height: 18px;
    max-width: 155px;
    margin: 0 auto;
}
.site-footer .sponsors ul {
    display: block;
    max-width: 130px;
    margin: 22px auto 0;
}
.site-footer .sponsors:after{
  display: none;
}
.site-footer .sponsors ul li {
    padding: 0;
    margin-bottom: 25px;
}
.site-footer .sponsors ul li:last-child{
    margin-bottom: 0;
}
.site-footer .footer-columns {
    padding-top: 0;
}
.site-footer .footer-columns .footer-column .social-links ul{
  display: block;
}
.site-footer .footer-columns .footer-column .social-links ul li {
    padding: 0 0 10px;
}
.site-footer .footer-columns .footer-column .social-links {
    padding-top: 30px;
}
.site-footer .footer-columns .footer-column .register-info .reg-link{
  font-size: 16px;
}
.site-footer .footer-columns .footer-column .register-info {
    font-size: 16px;
    line-height: 24px;
    max-width: 250px;
}
.site-footer .disclaimer {
    font-size: 17px;
}
.site-footer .disclaimer img {
    max-width: 20px;
}
.site-footer .disclaimer p {
    padding: 0 8px;
}
.show-on-tablet{
  display: none !important;
}
.site-header .main-navigation img.show-on-mobile{
  max-width: 274px;
  margin: 0 auto;
}
.site-header .main-navigation ul li.secondary-btn a {
    width: 224px;
    font-size: 21px;
    height: 48px;
}
.site-header .main-navigation ul li.secondary-btn{
  margin-top:15px;
}
.site-header .main-navigation ul li{
  padding:0;
}
.custom-modal .upload-box .gfield_description h4 {
    font-size: 19px;
    line-height: 24px;
    padding:12px 10px 5px;
}
.custom-modal .upload-box .gfield_description p{
  max-width: 165px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 16px;
}
.custom-modal-dialog{
  width:280px;
  padding: 53px 15px 25px;
}
.custom-modal .gform_wrapper .gform_footer{
  position:relative;
}
.gform_wrapper img.gform_ajax_spinner {
   position:absolute;
   right:30px;
   top:15px;
}
.custom-modal .gform_wrapper ul.gform_fields li.input-field .validation_message {
    bottom: 0;
    top:inherit;
    left: 20px;
    right:inherit;
}
.custom-modal .gform_wrapper .gform_footer input[type=submit]{
  width:100%;
  height:45px;
  font-size: 17px;
  margin: 0;
}
.custom-modal .file-upload-icon{
  width:38px;
  height:38px;
}
.custom-modal .upload-box .gfield_description{
  font-size: 12px;
  line-height: 18px;
  padding: 15px 12px 0 !important;
}
body .gform_wrapper li.input-field input {
    height: 45px;
    margin-bottom: 13px;
    font-size: 14px !important;
    padding-left:20px !important;
    border-radius: 5px;
}
.custom-modal .gform_wrapper .gform_fileupload_multifile .gform_drop_area{
  height:190px;
  border-radius: 5px;
}
.custom-modal .gform_wrapper .ginput_container_consent{
  font-size: 10.41px;
  line-height: 14px;
  margin-top: 10px !important;
  padding-right: 15px !important;
}
.custom-modal .gform_wrapper span.gform_drop_instructions{
  display: none !important;
}
.custom-modal .gform_wrapper .gform_footer{
  margin-top:18px;
}
.custom-modal .upload-box .gfield_description.validation_message{
  font-size: 12px !important;
}
.custom-modal .gform_wrapper .validation_message{
  font-size: 12px;
  padding-top:5px;
}
.custom-modal .gform_wrapper .validation_message #gform_multifile_messages_1_1 {
    left: 0;
    top: -35px;
    margin-left: 0;
}
.custom-modal .upload-box .ginput_preview{
  padding:5px;
  font-size: 12px;
}
.custom-modal .upload-box .ginput_preview a {
    padding: 0px 10px;
    margin-left: 5px;
}
.custom-modal .gform_confirmation_message h2{
  font-size: 45px;
  line-height: 48px;
}
.custom-modal .gform_confirmation_message .social-icon {
    max-width: 40px;
	margin-left: 8px;
	margin-right: 9px;
}
.custom-modal .gform_confirmation_message .social-icon img{
	max-width:40px;
	max-height:40px;
}
.custom-modal .gform_confirmation_message p{
	max-width: 227px;
	font-size: 13.4858px;
	line-height: 18px;
}
.custom-modal .gform_confirmation_message{
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  margin:0;
  background:inherit;
  position: relative;
  z-index:1;
  padding-bottom:0;
  margin-top: -17px;
}
.custom-modal .gform_confirmation_wrapper:after{
  content:"";
  background: url(../images/thankyou-design-bg-mobile.png)no-repeat;
  background-position:10px;
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
}
.custom-modal .gform_confirmation_message h4 {
	font-size: 17.9861px;
	line-height: 23px;
    margin:8px auto 15px;
	max-width:215px;
}

/* .leaderboard-section .info-section .packages ul{
    grid-template-columns: 50% 50%;
    grid-gap: 15px;
    max-width:600px;
}
.leaderboard-section .info-section .packages ul li{
  margin:0;
  padding:0 10px;
}
.leaderboard-section .info-section .packages ul li h4{
  font-style: italic;
  padding: 0;
  padding-top: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
} */

}

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

.funds-section {
    background: url(../images/donate-banner-1024.png)no-repeat;
    padding: 150px 0;
    min-height: 800px;
    background-position: center top;
    background-size: cover;
    margin: 0;
}

}

@media only screen and (max-width:350px){
.prize-winner-section {
    padding-bottom:90px;
    margin-bottom: -30px;
}
.funds-section {
    background: url(../images/donate-banner-767.png)no-repeat;
    background-size: 100%;
    padding: 100px 0 86px;
    min-height: 770px;
    background-position: center;
    background-position: center top;
}
.tips-to-help-you{
  margin-top:-50px;
}
}