* {
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

* html .clearfix { 
    height: 1%;
}

.clearfix {
    display: block;
}

::selection {
    background: #309EFF;
    color: #fff;
}

::-moz-selection {
    background: #309EFF;
    color: #fff;
}
html {
    overflow-y: scroll;
} 

body {
    display: block !important;
}

/* WAYPOINTS */
.fade-in-from-left {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fade-in-from-left.animated {
    animation-name: fade-from-left;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -o-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    45% {
        opacity: 0.5;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fade-in-from-bottom {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}

.fade-in-from-bottom.animated {
    animation-name: fade-from-bottom;
    animation-duration: 1s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@keyframes fade-from-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -o-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }
    90% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade-in-from-right {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.fade-in-from-right.animated {
    animation-name: fade-from-right;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -o-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

/* PRIVACY POLICY PAGE -------------------------------------------------------*/
.pp-main {
    width: 100%;
}

.pp-link {
    color: #C01F32;
}

.pp-link:hover {
    color: #212F64;
}

.pp-header {
    padding: 30px 0;
    width: 100%;
}
  
.pp-logo {
    display: block;
    margin: 0 auto;
    width: 276px;
    height: 100px;
}

  
.pp-div {
    color: #393939;
    padding: 20px 5% 30px;
    width: 100%;
}

.pp-h-tag {
    color: #212F64;
    margin: 10px 0;
}
  
.pp-main ol li,
.pp-main ul li {
    margin: 5px 0 5px 60px;
}

.pp-main p {
    margin-bottom: 20px;
}

/* HEADER --------------------------------------------------------------------*/
.main-header {
    font-size: 0;
    position: relative;
    width: 100%;
}

.video-wrap-in {
    height: 600px;
    width: 100%;
    overflow: hidden;
    background-image: url('../images/lulu-hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#video {
    min-height: 100%;
    min-width: 100%;
    width: auto;
    height: auto;
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
    object-fit: cover;
    display: block;
}

.header-left {
    width: 33%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255,255,255,0.80);
    padding: 30px 25px;
    height: 100%;
}

.header-nav {
    position: absolute;
    top: 20px;
    right: 5%;
}

.form-wrapper {
    width: 67%;
    background-color: #C01F32;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 20px 20px 0;
}

.header-logo-a {
    display: none;
}

.header-logo {
    width: 100%;
    margin: 20px auto;
    display: block;
    max-width: 525px;
}

.header-left h1 {
    font-size: 37px;
    color: #212F64;
    letter-spacing: -0.41px;
    text-align: center;
    /* line-height: 40px; */
    margin-top: 75px;
    color: #3B3B3B;
}

.header-left p {
    font-size: 18px;
    color: #3B3B3B;
    letter-spacing: -0.28px;
    text-align: center;
    line-height: 24px;
    margin: 200px 0 30px;
}

.about-a {
    font-size: 21px;
    color: #212F64;
    display: block;
    letter-spacing: -0.33px;
    text-align: center;
    font-weight: 900;
    border-bottom: 4px solid transparent;
    text-decoration: none;
    margin: 20px auto;
    width: 106px;
    transition: all 0.5s ease-in-out;
    position: absolute;
    bottom: 27px;
    left: 36%;
    right: 36%;
}

.about-a:after {
    display: block;
    content: '';
    border-bottom: solid 4px #309EFF;  
    transform: scaleX(0);  
    transform-origin: 100% 50%;
    transition: transform 250ms ease-in-out;
}

.about-a:hover:after  {
    transform: scaleX(1);   
    transform-origin: 0% 50%;
}

.social-a {
    display: inline-block;
    text-decoration: none;
    vertical-align: top;
    margin-top: 5px;
    transition: all 0.5s ease-in-out;
} 

.social-a svg {
    vertical-align: middle;
    height: auto;
    width: 35px;
}

.twitter-a {
    margin: 5px 15px 0;
}

.social-a:hover #Oval-2-Copy,
.social-a:hover #Oval-2 {
    fill: #212F64;
    fill-opacity: 1;
}

.donate-a {
    background-color: #C01F32;
    font-size: 21px;
    color: #fff;
    letter-spacing: -0.33px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 700;
    display: inline-block;
    margin-left: 15px;
    transition: all 0.5s ease-in-out;
    float: right;
    font-weight: 900;
}

.donate-a:hover {
    background-color: #212F64;
}

.about-mobile {
    display: none;
}

form {
    width: 90%;
    margin: 0 auto;
    font-size: 0;
}

.input {
    background: #fff;
    font-size: 17px;
    color: #7D7D7D;
    padding: 10px 15px;
    border: none;
}

.email {
    width: 46%;
}

.zip {
    width: 20%;
    margin: 0 2%;
}

.join-btn {
    background: #212F64;
    font-size: 17px;
    color: #fff;
    border: none;
    width: 30%;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: all 0.5s ease-in-out;
    font-weight: 700;
}

.join-btn:hover {
    background: #309EFF;
}

/* MOBILE NAV */
.container {
    cursor: pointer;
    float: right;
    right: 5%;
    position: absolute;
    top: 20px;
    z-index: 10;
    display: block;
    display: none;
}

.bar1, .bar2, .bar3 {
    background-color: #C01F32;
    /* height: 35px;
    margin: 0 4px;
    transition: all 0.4s;
    width: 5px;
    display: inline-block; */
    height: 5px;
    margin: 6px 0;
    transition: all 0.4s;
    width: 35px;
}

.change .bar1 {
    /* -webkit-transform: rotate(38deg) translate(8px, -4px);
    transform: rotate(38deg) translate(8px, -4px); */
    -webkit-transform: rotate(45deg) translate(8px, 8px);
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #fff;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    /* -webkit-transform: rotate(-44deg) translate(-14px, -10px);
    transform: rotate(-44deg) translate(-14px, -10px); */
    -webkit-transform: rotate(-45deg) translate(8px, -7px);
    transform: rotate(-45deg) translate(8px, -7px);
    background-color: #fff;
}

/* MAIN ----------------------------------------------------------------------*/
main {
    width: 100%;
    /* position: relative;
    padding-bottom: 30%; */
}

/* DONATE SECTION ------------------------------------------------------------*/
.donate-wrapper {
    width: 100%;
    background-image: url('../images/newbackgound.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 5% 0;
}

.cutout {
    display: inline-block;
    width: 35%;
    vertical-align: middle;
}

.donate-inner {
    width: 50%;
    display: inline-block;
    float: right;
    margin-right: 7%;
    margin-top: 85px;
}

.donate-inner h2 {
    font-size: 58px;
    color: #212F64;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
}

.donate-inner p {
    font-size: 20px;
    color: #393939;
    text-align: center;
    line-height: 28px;
    margin: 20px auto 30px;
}

.donation-links-wrapper {
    width: 100%;
    font-size: 0;
}

.donate-a-btn {
    background: #fff;
    border: 3px solid #212F64;
    font-size: 43px;
    color: #212F64;
    text-decoration: none;
    width: 22%;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    text-align: center;
    font-weight: 900;
    padding: 6px 0;
}

.donate-a-btn:nth-of-type(2) {
    margin: 0 1%;
}

.donate-a-btn span {
    font-size: 24px;
    vertical-align: super;
    color: #C01F32;
    font-weight: 900;
}

.large-donate-btn {
    border-color: transparent;
    background: #C01F32;
    color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    width: 29%;
    margin-left: 1%;
    padding: 10px 0;
    vertical-align: top;
}

.donate-a-btn:hover {
    background-color: #212F64;
    color: #fff;
}

/* ABOUT SECTION -------------------------------------------------------------*/
.about-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-top {
    background-color: #212F64;
    padding: 45px 10%;
}

.about-top h2 {
    font-size: 58px;
    color: #80C4FF;
    letter-spacing: -0.9px;
    font-weight: 900;
    font-style: italic;
}

.about-top p {
    font-size: 29px;
    color: #fff;
    letter-spacing: -0.13px;
    line-height: 36px;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    width: 80%;
    margin: 20px auto;
}

.about-bottom {
    width: 100%;
    padding: 50px 20%;
    background-image: url('../images/lulu-name.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70%;
}

.about-bottom p {
    font-size: 20px;
    color: #393939;
    letter-spacing: -0.31px;
    line-height: 31px;
    margin: 25px 0;
}

.footer-image {
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    margin-bottom: -4px;
}

/* FOOTER --------------------------------------------------------------------*/
footer {
    background-color: #212F64;
    width: 100%;
    padding: 30px 5%;
    text-align: center;
}

.footer-logo-a {
    text-decoration: none;
}

.footer-social-links {
    margin: 10px auto;
}

.footer-social-links a {
    text-decoration: none;
}

.footer-nav {
    display: block;
    margin: 40px auto;
}

.footer-a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    font-size: 21px;
    letter-spacing: -0.33px;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 0.5s;
    border-bottom: 4px solid transparent;
}

.footer-a:nth-of-type(2) {
    margin: 0 40px;
}

.footer-a:after {
    display: block;
    content: '';
    border-bottom: solid 4px #309EFF;  
    transform: scaleX(0);  
    transform-origin: 100% 50%;
    transition: transform 250ms ease-in-out;
}

.footer-a:hover:after  {
    transform: scaleX(1);   
    transform-origin: 0% 50%;
}

.address-p {
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.42px;
    margin: 20px auto 40px;
}

.paid-for-p {
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    padding: 10px 15px;
    font-size: 17px;
    letter-spacing: 0.42px;
}

.privacy-p {
    color: #fff;
    margin-top: 25px;
    font-size: 17px;
    letter-spacing: 0.42px;
}

.privacy-p a {
    color: #fff;
    text-decoration: none;
}

.privacy-p a:hover {
    color: #309EFF;
    text-decoration: underline;
}

.footer-social-a:hover #Oval-2-Copy,
.footer-social-a:hover #Oval-2 {
    fill: #309EFF;
    fill-opacity: 1;
}

/* NGP Form ------------------------------------------------------------------*/
.ngp-form {
    max-width: 100% !important;
    margin: 0 auto;
}

.at form {
    margin: 0 auto !important;
}

header.at-title {
    display: none;
}

.at h1,
.at h2,
.at h3,
.at h4,
.at h5,
.at h6 {
    display: none;
}

.at-inner {
    background: transparent !important;
}

.at fieldset legend {
    display: none;
}

.form-wrapper #NVSignupForm463460 input {
    border: none;
    border-radius: 0;
    height: 45px;
    background: #fff;
    font-size: 17px;
    color: #7D7D7D;
    padding: 10px 15px;
    font-family: 'Lato', sans-serif !important;
}

.form-wrapper #NVSignupForm463460 input::placeholder {
    color: #393939;
}

.form-wrapper #NVSignupForm463460 .at-form-submit {
    display: inline-block;
    vertical-align: top;
    width: 30%;
}

.form-wrapper #NVSignupForm463460 .at-form-submit .at-submit {
    box-sizing: border-box;
    display: inline-block;
    font-size: 22px;
    line-height: 1px;
    text-indent: 0px;
    text-transform: uppercase;
    width: 100%;
    font-family: 'Lato', sans-serif !important;
    font-weight: 800;
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    background: #212F64;
    font-size: 17px;
    color: #fff;
    border: none;
    font-weight: 700;
}

.form-wrapper #NVSignupForm463460 .at-form-submit .at-submit:hover {
    background-color: #fff;
    border: none;
    background-color: #309EFF;
    cursor: pointer;
}

.form-wrapper #NVSignupForm463460 .at-row.at-row-solo.EmailAddress {
    display: inline-block;
    vertical-align: top;
    width: 33%;
    width: 46%;
}

.form-wrapper #NVSignupForm463460 .at-row.at-row-solo.PostalCode {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    margin: 0 2%;
}

.form-wrapper .at-text {
    color: transparent;
    font-size: 0;
}

.at-row>[class^="at-"] {
    margin: 0 !important;
    min-width: 100px !important;
}

.at-form-submit {
    padding: 0 !important;
}

.at-fieldset .ContactInformation,
.ngp-form .at,
.at fieldset:last-of-type {
    padding: 0 !important;
} 

div.at-markup.UpdateMyProfile {
    display: none !important;
}

.at .error small.error {
    color: #fff !important;
}