:root{
    --red: #ed453e;
    --cyan: #3AC1CD;
    --tan: #f8f9fa;
    --blue: #214291;
    --green: #00946E;
    --yellow: #F1CD15;
    --gray: #5B6771;
    --black: #212721;
}
@font-face {
    font-family: CooperHewitt-Bold;
    src: url(../fonts/CooperHewitt-Bold.otf);
}
@font-face {
    font-family: CooperHewitt-BoldItalic;
    src: url(../fonts/CooperHewitt-BoldItalic.otf);
}
@font-face {
    font-family: CooperHewitt-Book;
    src: url(../fonts/CooperHewitt-Book.otf);
}
@font-face {
    font-family: CooperHewitt-BookItalic;
    src: url(../fonts/CooperHewitt-BookItalic.otf);
}
@font-face {
    font-family: CooperHewitt-Heavy;
    src: url(../fonts/CooperHewitt-Heavy.otf);
}
@font-face {
    font-family: CooperHewitt-HeavyItalic;
    src: url(../fonts/CooperHewitt-HeavyItalic.otf);
}
@font-face {
    font-family: CooperHewitt-Light;
    src: url(../fonts/CooperHewitt-Light.otf);
}
@font-face {
    font-family: CooperHewitt-LightItalic;
    src: url(../fonts/CooperHewitt-LightItalic.otf);
}
@font-face {
    font-family: CooperHewitt-Medium;
    src: url(../fonts/CooperHewitt-Medium.otf);
}
@font-face {
    font-family: CooperHewitt-MediumItalic;
    src: url(../fonts/CooperHewitt-MediumItalic.otf);
}
@font-face {
    font-family: CooperHewitt-Semibold;
    src: url(../fonts/CooperHewitt-Semibold.otf);
}
@font-face {
    font-family: CooperHewitt-SemiboldItalic;
    src: url(../fonts/CooperHewitt-SemiboldItalic.otf);
}
@font-face {
    font-family: CooperHewitt-Thin;
    src: url(../fonts/CooperHewitt-Thin.otf);
}
@font-face {
    font-family: CooperHewitt-ThinItalic;
    src: url(../fonts/CooperHewitt-ThinItalic.otf);
}
body{
    font-family: 'Playfair Display', serif;
    color: var(--black);
}
/* header */
.header{
    background-color: #fff !important;
}
.home_header{
    background-color: #fff !important;
    /*background-color: rgba(255, 255, 255, .3) !important;*/
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    padding: .7rem 0;
    /*z-index: 1;*/
    /*backdrop-filter: blur(12px);*/
}
.navbar-nav .nav_item:not(:last-child){
    margin: .5rem;
}
.nav_item i{
    font-size: 22px;
    line-height: normal;
}
.logo img{
    width: 130px;
    margin: auto;
    display: block;
}
.home_header .nav_link{
    color: var(--blue);
}
.social_media i{
    font-size: 27px;
}
.menu_links a{
    font-family: CooperHewitt-Semibold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.5s;
    position: relative;
}
.menu_links a:after{
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}
.menu_links a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}
.menu_links a:not(.donate_btn){
    padding: 0.2rem 0 !important;
}
.menu_links a.active{
    border-bottom: 2px solid var(--red);
}
.donate_btn{
    background-color: var(--red) !important;
    color: #fff !important;
    border-radius: 0;
    font-size: 14px;
    padding: 7px 13px !important;
}
.main_banner{
    position: relative;
}
.main_banner img{
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: top;
}
.main_banner_content{
    position: absolute;
    bottom: 15%;
}
.main_banner_content h2{
    font-size: 80px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
}
.header a{
    color: var(--blue);
}
.header a:hover{
    color: var(--blue);
}
/* support */
.support{
    background-color: var(--blue);
    padding: 1.5rem 0;
}
.support_contect h3{
    font-family: CooperHewitt-Medium;
    text-align: right;
    color: #fff;
    margin-bottom: 0;
}
.support_price{
    margin-left: 2rem;
    margin-bottom: 0;
}
.support_price li{
    
}
.support_price a{
    font-family: CooperHewitt-Semibold;
    font-size: 19px;
    color: var(--blue);
    line-height: 2;
    background-color: var(--tan);
    padding: 0 15px;
    border-bottom: 6px solid var(--red);
    margin: 0 7px;
    display: inline-block;
}
/* priorities */
.priorities{
    padding: 60px 1rem;
}
.heading h2{
    text-align: center;
    color: var(--blue);
    font-size: 50px;
    font-weight: bold;
}
.priorities_slide{
    margin: 50px 0 25px;
}
.prioritie_card{
    border: 6px solid var(--red);
    border-radius: 15px;
    padding: 1.9rem 3rem 1.9rem;
    height: 380px;
}
.prioritie_card h4{
    color: var(--blue);
    font-family: CooperHewitt-Semibold;
    font-size: 22px;
    margin-bottom: 1rem;
}
.prioritie_card p{
    font-family: CooperHewitt-Book;
}
.prioritie_card a{
    font-family: CooperHewitt-Medium;
    font-size: 14px;
    color: var(--black);
}
.prioritie_card i{
    font-size: 14px;
    color: var(--red);
    margin-left: 4px;
}
.p_btn{
    font-family: CooperHewitt-Medium;
    background-color: var(--tan) !important;
    color: var(--blue) !important;
    border: 0;
    border-bottom: 6px solid var(--red) !important;
    text-align: center;
    margin: auto;
    display: block;
    width: 200px;
    border-radius: 0;
}
.p_btn:hover{
    color: var(--blue);
}
/* meet */
.meet{
    background-image: url('../images/dwightshook-banner.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    position: relative;
}
.meet_body{
    position: relative;
    /*top: 200px;*/
    /*left: 30px;*/
    color: var(--black);
}
.wlink_btn{
    font-family: CooperHewitt-Book;
    font-size: 12px;
    color: #fff !important;
    letter-spacing: 1px;
}
.wlink_btn i{
    font-size: 14px;
    color: var(--red);
    margin-left: 4px;
}
.meet_body h3{
    font-size: 53px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 1.5rem;
}
.meet_body h4{
    font-family: CooperHewitt-Semibold;
    font-size: 22px;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.meet_body p{
    font-family: CooperHewitt-Book;
    font-size: 18px;
    color: var(--black);
}
.meet_body a{
    color: var(--black) !important;
}
/* working */
.working{
    background-image: url('../images/family-dwight.jpg?23');
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
}
.working_body h3{
    font-family: CooperHewitt-Heavy;
    font-size: 83px;
    color: #fff;
    line-height: 1em;
    border-bottom: 15px solid var(--red);
    width: fit-content;
    margin-bottom: 2rem;
}
.working_body{
    position: absolute;
    bottom: 10%;
    left: 7%;
}
/* join team */
.join_team{
    padding: 100px 0;
}
.join_team h3{
    text-align: center;
    color: var(--red);
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 2rem;
}
.join_body p{
    text-align: center;
    color: var(--blue);
    font-size: 22px;
    font-family: CooperHewitt-Bold;
}
.join_form{
    margin-top: 30px;
}
.join_form label{
    font-family: CooperHewitt-Book;
    font-size: 15px;
    text-transform: uppercase;
}
.thankyou_body{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 10%;
    z-index: 1;
}
.thankyou_body h3{
    font-size: 85px;
    color: #fff;
    text-align: center;
    font-family: CooperHewitt-Heavy;
    text-transform: uppercase;
    border-bottom: 15px solid var(--red);
    width: fit-content;
    line-height: 60px;
    margin: 5px auto;
}
.thankyou_body p{
    font-size: 23px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-top: 3rem;
}
/* footer */
.footer{
    background-color: var(--tan);
    padding: 70px 0 50px;
}
.footer_logo img{
    width: 350px;
}
.footer_head{
    position: relative;
    margin-bottom: 2.5rem;
    /*border-bottom: 3px solid var(--red);*/
    font-family: 'CooperHewitt-Medium';
}
.footer_head h3{
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--blue);
    text-transform: uppercase;
    font-family: 'CooperHewitt-Medium';
}
.footer_head::after{
    content: "";
    background-color: var(--red);
    height: 20%;
    width: 8%;
    position: absolute;
    bottom: -37%;
}
.footer_link a{
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    line-height: 2;
    font-family: CooperHewitt-Book;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-break: anywhere;
}
.footer_social a{
    font-size: 25px;
}
.paid_btn{
    border: 2px solid var(--blue);
    text-align: center;
    width: 100%;
    padding: 0.5rem;
    text-decoration: none;
    font-family: CooperHewitt-Book;
    color: var(--blue);
}
.issues{
    padding: 90px 0;
}
.issue_heading{
    text-align: center;
}
.issue_heading span{
    color: var(--blue);
    font-size: 28px;
    text-align: center;
    font-family: 'CooperHewitt-Semibold';
    letter-spacing: 3px;
}
.issue_heading h2{
    font-size: 67px;
    color: var(--blue);
    font-weight: 900;
    width: fit-content;
    margin: 0 auto;
    border-bottom: 9px solid var(--red);
}
.issues_body{
    margin-top: 105px;
    max-width: 488px;
}
.issues_body p{
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
}
.issue_cards{
    overflow: hidden;
    height: 100%;
    /*margin-bottom: 1rem;*/
    /*overflow: hidden;*/
    /*height: 100%;*/
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.issue_card{
    height: 100%;
    border-radius: 20px;
    border: 8px solid var(--blue);
}
.issue_card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.issue_card_body{
    padding: 1rem;
}
.issue_card_head h3{
    font-size: 22px;
    color: var(--red);
    font-family: CooperHewitt-Bold;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}
.issue_card_body p{
    font-family: CooperHewitt-Book;   
    font-size: 17px;
}
/* story */
.story{
    padding: 30px 0;
}
.story_img img{
    border-radius: 20px;
}
.story_heading{
    text-align: center;
    margin: auto;
}
.story_heading p{
    margin-bottom: 0;
    font-size: 16px;
    color: var(--blue);
    font-family: CooperHewitt-Semibold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.story_heading h3{
    font-weight: 900;
    font-size: 65px;
    color: var(--blue);
    border-bottom: 10px solid var(--red);
    width: fit-content;
    margin: 0 auto 0.7rem;
}
.story_heading span{
    font-size: 10px;
    color: var(--black);
    font-family: CooperHewitt-Semibold;
    letter-spacing: 2px;
}
.stories{
    /*margin-top: 6rem;*/
}
.stories_heading h4{
    font-family: 'CooperHewitt-Medium';
    font-size: 14px;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 0;
}
.bar{
    margin: 5px 0;
    background-color: var(--red);
    height: 1px !important;
    opacity: 1;
    position: relative;
}
.bar::after{
    content: "";
    position: absolute;
    background-color: var(--red);
    width: 20%;
    height: 8px;
}
.stories_body{
    margin-top: 1rem;
}
.stories_body h3{
    font-size: 22px;
    color: var(--blue);
    font-family: CooperHewitt-Bold;    
}
.stories_body p{
    font-family: CooperHewitt-Light;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.stories_body img{
    border-radius: 20px;
    margin-top: 2rem;
}
.border_light{
    border-left: 2px solid var(--blue);
}
.stories_values{
    margin-top: 3.5rem;
}
.stories_values h3{
    color: var(--cyan);
    font-family: 'CooperHewitt-Medium';
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.stories_values p{
    font-size: 15px;
    font-weight: 500;
    color: var(--blue);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler {
    color: var(--red);
    border-color: var(--red);
    background-color: var(--red);
}
.thankyou{
    position: relative;
}
.thankyou:after{
    content: "";
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .2;
}
.thankyou img{
    min-height: 100vh;
    width: 100%;
    object-fit: cover;
}
.coming_soon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
.coming_soon img{
    width: 200px;
    margin: auto;
    display: block;
}
.coming_soon h3{
    font-size: 53px;
    font-family: CooperHewitt-Bold;
    color: var(--blue);
    margin: 2rem auto;
    border-bottom: 15px solid var(--red);
    width: fit-content;
}
.owl-stage{
    cursor: grab !important;
}
.owl-dots{
    margin-top: 30px !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--blue) !important;
    opacity: 1 !important;
}
.owl-theme .owl-dots .owl-dot span{
    background-color: var(--blue) !important;
    opacity: 0.3 !important;
}
.footer_bottom{
    background-color: var(--blue);
    color: #fff;
    padding: .5rem 0 2px;
}
.footer_bottom p{
    margin-bottom: 0;
    text-align: center;
    line-height: 2;
    text-transform: uppercase;
    font-family: CooperHewitt-Medium;
}
.fb_link{
    position: fixed;
    background-color: var(--blue);
    color: #fff;
    bottom: 15%;
    right: 0;
    width: 70px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 2px;
    font-size: 30px;
    z-index: 123;
}