body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-family: "calibri", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000;
    line-height: 1.4;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "museo-slab", serif;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 22px;
}
h1, .h1 {
    font-size: 30px;
}
h2, .h2 {
    font-size: 24px;
    color: #E31937;
}
h3, .h3 {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
}
* {
    box-sizing: border-box;
}
p {
    margin: 0 0 22px;
}
p + .btn {
    margin-top: 12px;
}
img {
    display: block;
    max-width: 100%;
}
section {
    margin: 50px 0;
}
section:first-child {
    margin-top: 0;
}
section:last-child {
    margin-bottom: 0;
}
section.background {
    padding: 100px 0;
    position: relative;
}
section.background:before,
section.background:after {
    position: absolute;
    left: 0;
    width: 100%;
    content:"";
    display: block;
    height: 68px;
    background-image: url(/images/rip_bottom.png);
    background-position: center;
    top: 0;
    z-index: 10;
}
section.background:after {
    top: auto;
    bottom: 0;
    background-image: url(/images/rip_top.png);
}
section.background + section.background {
    margin-top: -50px;
}
section.background--red {
    background: #E31937;
    color: #fff;
}
section.background--red h2 {
    color: #fff;
}
section.background--red .btn:hover {
    background: #fff;
    color: #000;
}
section.background--gray {
    background: #EFEFEF;
}
.btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 250ms ease-in-out;
}
.btn:hover {
    background: #E31937;
}
.container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
}

.banner {
    background: #E31937;
    color: #fff;
    position: relative;
}
.banner:before,
.banner:after {
    position: absolute;
    left: 0;
    width: 100%;
    content:"";
    display: block;
    height: 68px;
    background-image: url(/images/rip_bottom.png);
    background-position: center;
    top: 0;
    z-index: 10;
}
.banner:after {
    top: auto;
    bottom: 0;
    background-image: url(/images/rip_top.png);
}
.banner__container {

}
.banner img {
    display: block;
    max-width: 100%;
}
.banner .btn:hover {
    background: #fff;
    color: #000;
}

.basic_content {
    text-align: center;
    position: relative;
}
.basic_content--container {
    max-width: 1280px;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg); /* Rotates slightly left */
    }
    75% {
        transform: rotate(5deg); /* Rotates slightly right */
    }
}
.basic_content .layout_decor {
    position: absolute;
    z-index: 1;
    transform: scale(0.5);
    transition: all 250ms ease-in-out;
}
.basic_content.background {
    padding: 50px 0;
}
.basic_content.background .container {
    position: relative;
    z-index: 5;
    padding: 130px 15%;
}
.basic_content.background--red:after {
    display: none!important;
}
.es_sun {
    left: 10%;
    top: 0;
}
.es_scribble {
    right: 10%;
    top: 0;
}
.es_hearts {
    left: 0;
    bottom: 10%;
}
.basic_content .layout_decor.es_curly_arrow {
    left: 50%;
    bottom: 0;
    transform: translateX(-80%) scale(0.75);
}
.es_smile {
    right: 0;
    bottom: 10%;
}

.content_media__media {
    margin: 40px 0 0;
}
.content_media__media img {
    max-width: none;
    width: 100%;
}
hr {
    display: block;
    margin: 30px 0;
    border: none;
    border-top: 1px solid #000;
}


.info_stats {
    text-align: center;
}
.info_stats .stats {
    margin: 30px 0 0;
}
.info_stats .stat {
    border-top: 1px solid #000;
    padding: 20px 0;
}
.info_stats .stat:first-child {
    border: none!important;
}
.info_stats .stat .number {
    display: block;
    font-size: 50px;
    margin: 0 0 10px;
}


.testimonial {
    text-align: center;
}
.testimonial .testimonial_image {
    display: block;
    margin: 0 auto 15px;
    max-width: 100%;
}
.testimonial_wrapper {
    font-size: 18px;
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-style: italic;
    margin: 30px 0 0;
}
.testimonial_wrapper .author {
    font-family: "calibri", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    margin: 32px 0 0;
}

.iframe_embed {
    position: relative;
    height: 0;
    padding: 0 0 66%;
}
.iframe_embed iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.donate {
    text-align: center;
}
.donate img {
    margin: 0 auto 30px;
}
.donate h2 {
    font-size: 22px;
    color: #000;
    margin: 0 0 30px;
}



@media only screen and (min-width:768px) {
    body {
        font-size: 18px;
    }
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 28px;
    }
    section {
        margin: 80px 0;
    }
    section.background {
        padding: 120px 0;
    }
    section.background + section.background {
        margin-top: -80px;
    }
    .container {
        padding: 0 40px;
    }
    .banner {
        padding-top: 80px;
    }
    .banner__container {
        display: flex;
        align-items: center;
    }
    .banner__content {
        width: 50%;
        position: relative;
        z-index: 5;
    }
    .banner__image {
        width: 60%;
        position: relative;
        z-index: 1;
        margin-left: -10%;
    }
    .basic_content .layout_decor {
        transform: none;
    }
    .basic_content.background .container {
        padding: 180px 15%;
    }
    .es_sun {
        top: 10%;
    }
    .es_scribble {
        top: 10%;
    }
    .es_hearts {
        bottom: 15%;
    }
    .basic_content .layout_decor.es_curly_arrow {
        bottom: 8%;
        transform: translateX(-90%);
    }
    .es_smile {
        bottom: 15%;
    }
    .content_media__container {
        display: flex;
        gap: 5%;
        align-items: center;
    }
    .content_media__media {
        margin: 0;
        width: 50%;
    }
    .content_media__content {
        flex: 1;
    }
    .content_media.image_left .content_media__media {
        order: 1;
    }
    .content_media.image_left .content_media__content {
        order: 2;
    }
    .image_medium .content_media__media {
        width: 58%;
    }
    .image_large .content_media__media {
        width: 65%;
    }
    .info_stats .stats {
        display: flex;
        justify-content: space-evenly;
        margin: 50px 0 0;
    }
    .info_stats .stat {
        border: none;
        border-left: 1px solid #000;
        padding: 0 8%;
    }
    .info_stats .stats.col_3 .stat {
        width: 33.33%;
    }
    .testimonial_wrapper {
        font-size: 22px;
    }

    .donate {
        text-align: left;
        padding: 80px 0 60px!important;
    }
    .donate:before,
    .donate:after {
        display: none!important;
    }
    .donate__container {
        display: flex;
        align-items: center;
    }
    .donate img {
        margin: 0 20px 0 0;
    }
    .donate h2 {
        align-self: flex-end;
        margin: 0 0 18px;
    }
    .donate .btn {
        margin: 0 0 0 auto;
    }

}

@media only screen and (min-width:992px) {
    .container {
        padding: 0 60px;
    }
}

@media only screen and (min-width:1440px) {
    .container {
        padding: 0 80px;
    }
}
