/*

Theme Name: Girls Who Bank

Author: Jackson Daly – Julian Steinmann 

Description: Custom theme

Version: 1.01 

*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Unbounded, Helvetica, Arial, sans-serif;
    /* 300,500,600,700 */
    font-size: 14px;
    line-height: 150%;
    font-weight: 300;
    color: #3b3b3c;
}

p+p {
    margin-top: 15px;
}

.p2 {
    font-size: 17px;
    line-height: 150%;
}

.p3 {
    font-size: 11px;
    line-height: 140%;
    letter-spacing: 0.2px;
}

@media screen and (min-width: 600px) {
    .p2 {
        font-size: 18px;
        line-height: 150%;

    }

    body {
        font-size: 14px;
        line-height: 150%;
    }

}

@media screen and (min-width: 900px) {
    .p2 {
        font-size: 22px;
        line-height: 150%;

    }

    body {
        font-size: 16px;
        line-height: 150%;
    }
}

@media screen and (min-width: 1200px) {
    .p2 {
        font-size: 24px;
        line-height: 150%;

    }

    body {
        font-size: 18px;
        line-height: 150%;
    }
}

header {
    height: 80px;

}

#home {
    height: 85vh;
    position: relative;
    width: 100%;
    overflow: hidden;

}

.header-img-1,
.header-img-2,
.header-img-3 {
    object-fit: cover;
    position: absolute;
    overflow: hidden;
    z-index: 2;
    opacity: 0.7;

}

.header-img-1 {
    width: 67.5vw;
    top: 0;
    height: 35vh;
    mask-image: linear-gradient(to bottom, black, white, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, white, transparent);
    animation: slide-in-from-left 1s ease-out;
}


.header-img-2 {
    left: 70vw;
    top: 10vh;
    width: 30vw;
    height: 40vh;
    mask-image: linear-gradient(to left, black, white, transparent);
    -webkit-mask-image: linear-gradient(to left, black, white, transparent);
    animation: slide-in-from-right 1s ease-out;
}

.header-img-3 {
    left: 15vw;
    top: 40vh;
    width: 42.5vw;
    height: 40vh;
    mask-image: linear-gradient(to top, black, white, transparent);
    -webkit-mask-image: linear-gradient(to top, black, white, transparent);
    animation: slide-in-from-bottom 1s ease-out;
}


@keyframes slide-in-from-left {
    from {
        transform: translateX(-10vw);
    }

    to {
        transform: translateX(0);
    }
}


@keyframes slide-in-from-right {
    from {
        transform: translateX(10vw);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slide-in-from-bottom {
    from {
        transform: translateY(10vw);
    }

    to {
        transform: translateY(0);
    }
}

.fade-box {
    position: relative;
    width: 100%;
    height: 100%;
}


.home-heading {
    position: absolute;
    top: 20vh;
    left: 10vw;
    z-index: 3;
    width: 80vw;
}

@media screen and (min-width: 600px) {
    .home-heading {
        left: 15vw;
        width: 75vw;
    }

}

@media screen and (min-width: 900px) {
    .home-heading {
        left: 25vw;
        width: 55vw;
    }
}

.heading-green {
    background: #016a63;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0.2;
}

.heading-yellow {
    background: #ffd512;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 600;
    color: #016a63;
    margin-bottom: 20px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0.2;
}

.heading-green.in-view,
.heading-yellow.in-view {
    opacity: 1;
}

.pie-percentage {
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-4deg);
}

h1 {
    font-size: 22px;
    line-height: 130%;
    font-weight: 500;
    max-width: 700px;

}

@media screen and (min-width: 600px) {
    h1 {
        font-size: 25px;
        line-height: 130%;
    }
}

@media screen and (min-width: 900px) {
    h1 {
        font-size: 30px;
        line-height: 130%;
    }
}

@media screen and (min-width: 1200px) {
    h1 {
        font-size: 35px;
        line-height: 130%;
    }
}

h2 {
    font-size: 25px;
    line-height: 110%;
    transform: rotate(4deg) translateY(calc(-10vh - 50px));
    display: inline-block;
    transition: transform 0.6s ease-in-out;
}

.h2-green,
.h2-yellow {
    padding: 12px 15px;
    display: inline-block;
    font-weight: 600;
}

.h2-green {
    background: #016a63;
    color: #fff;
}

.h2-yellow {
    background: #ffd512;
    color: #016a63;
    margin-left: -10px;
    transition: margin 0.6s ease-in-out;
}

@media screen and (min-width: 600px) {
    h2 {
        font-size: 25px;
        line-height: 130%;
    }

    .h2-green,
    .h2-yellow {
        padding: 13px 18px;
    }

    @media screen and (min-width: 900px) {
        h2 {
            font-size: 30px;
            line-height: 130%;
        }

        .h2-green,
        .h2-yellow {
            padding: 15px 20px;
        }
    }
}

@media screen and (min-width: 1200px) {
    h2 {
        font-size: 35px;
        line-height: 130%;
    }

    .h2-green,
    .h2-yellow {
        padding: 18px 25px;
    }
}

h2.in-view {
    transform: rotate(-6deg) translateY(calc(-10vh - 50px));
}


.in-view .h2-yellow {
    margin-left: 20px;

}

h3 {
    font-size: 18px;
    color: #016a63;
    line-height: 140%;
    font-weight: 600;
    margin-top: 35px;
}

h4 {
    font-size: 22px;
    color: #016a63;
    line-height: 140%;
    font-weight: 600;
    margin-top: 25px;
}

h5 {
    font-size: 15px;
    color: #016a63;
    line-height: 120%;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.banner-green {
    background-color: #016a63;
    color: #fff;
}

.yellow-box {
    background: linear-gradient(to right, #f8e9a3, #fff);
    padding: 10vh 0 calc(10vh + 70px);
    border-top: 5px solid #f8e9a3;
    border-bottom: 5px solid #f8e9a3;
    margin-top: 10vh;
    position: relative;
    z-index: 2;
}

.wrapper {
    padding: 0 50px;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media screen and (max-width: 900px) {
.wrapper.menu-wrapper {
    padding: 0 0 10px;

}
}


.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 50px;
}

.wrapper-narrow {
    padding: 0 50px;
    max-width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media screen and (min-width: 900px) {

    .wrapper-height {
        padding: 10vh 0;
    }
}

.wrapper.wrapper-height,
.wrapper-narrow.wrapper-height {
    padding: 10vh 50px;
}

.footer-wrapper {
    padding: 0 50px 10vh;
}

.wrapper-low-height {
    height: 60px;
}

.grey-gradient {
    background: linear-gradient(to bottom, #ececec, transparent);

    position: relative;
    z-index: 1;

}
@media screen and (min-width: 900px) {
	    margin-top: -10vh;
    padding-top: 10vh;
	
}

.yellow-gradient {
    background: linear-gradient(to top, #f8e9a3, transparent);
    margin-top: -10vh;
    padding-top: 10vh;
    position: relative;
    z-index: 1;

}

.cols:after {
    content: "";
    clear: both;
    display: table;

}

.col-2,
.col-3,
.col-4 {
    padding: 30px 30px 0;
}

@media screen and (min-width: 600px) {
    .col-4:nth-child(2n + 1) {
        clear: both;
    }

    .col-4 {
        width: 45%;
        margin-right: 5%;
        float: left;
        padding: 0;
    }


    .col-3 {
        width: 50%;
        float: left;
        padding: 0;

    }

    .col-3.founder-col {
        margin-top: 40px;
    }
}

@media screen and (min-width: 900px) {
    .col-4:nth-child(2n + 1) {
        clear: unset;
    }

    .col-2 {
        width: 47.5%;
        float: left;
        padding: 0;

    }


    .col-4 {
        width: 20%;
        margin-right: 5%;
        float: left;
        padding: 0;
    }

    .col-2 .col-text-wrapper {
        width: 100%;
        max-width: calc(550px - 2.5vw);
        padding: 0 50px 50px;
        float: right;
        box-sizing: border-box;

    }

    .col-2 .col-text-wrapper-right {
        width: 100%;
        max-width: calc(550px - 2.5vw);
        padding: 0 50px 50px;
        float: left;
        box-sizing: border-box;


    }

    .col-2:nth-child(2n) {
        margin-left: 5%;
    }
}

@media screen and (min-width: 1100px) {
    .col-3 {
        width: 33.33%;
        float: left;
        padding: 0;

    }

    .col-3.founder-col {
        margin-top: 0px;
    }

    .col-3.founder-col {
        width: 33.33%;
    }
}

.picture {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    display: block;
}

.footer-picture {
    height: auto;
    max-height: unset;
    mask-image: linear-gradient(to top, black 0%, white 10%, transparent);
    -webkit-mask-image: linear-gradient(to top, black 0%, white 10%, transparent);
    margin-top: -10vw;
}

.diagram-bar-1 {
    background: #ffd512;
    height: 80px;
    width: 0%;
    float: left;
    transition: width 1s ease-out;
}

.in-view .diagram-bar-1 {
    width: 66%;
}

.diagram-bar-1-gap {
    background: #fff;
    height: 80px;
    width: 34%;
    float: left;
    position: relative;
    border-top: 3px dotted #ffd512;
    border-right: 3px dotted #ffd512;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.in-view .diagram-bar-1-gap {
    transition: opacity 1s 1s ease-in-out;
    opacity: 1;
}


.diagram-bar-1-gap p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

.diagram-bar-2 {
    background: #016a63;
    height: 80px;
    width: 0%;
    transition: width 1s ease-out;
}

.in-view .diagram-bar-2 {
    width: 100%;
}

.clearfix {
    clear: both;
}

.gender-icon {
    width: 40px;
    height: 40px;
    padding: 20px;
    fill: #fff;
}

.fade-in {
    opacity: 0.7;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(10vh);
}

.fade-in.above-screen {
    transform: translateY(-10vh);
}

.in-view.fade-in {
    opacity: 1;
    transform: translateY(0);

}

.fade-in-slow {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.in-view.fade-in-slow {
    opacity: 1;

}

section {
    padding-top: 5vh;
}

.main-menu a,
.main-menu a:hover,
.main-menu a:visited,
.main-menu a:active {
    text-decoration: none;
    color: #3b3b3c;
    padding: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.2s ease-in-out;
}

.main-menu a:hover {
    color: #000;
}

footer {
    background-color: #016a63;
    color: #fff;
}

footer a,
footer a:hover,
footer a:visited,
footer a:active {
    text-decoration: none;
    color: #D0DEDD;
    padding: 10px;
    letter-spacing: 1px;
    font-weight: 300;
    transition: color 0.2s ease-in-out;
    margin-top: 10px;
    display: block;
    transition: color 0.3s ease-in-out;

}

footer a:hover {
    color: #fff;
}



.main-menu a.donate-button {
    border: 2px solid #016a63;
    padding: 10px 20px;
    margin-left: 10px;
	display: inline-block;
		margin-top: 20px;

}

.menu-anchor-link {
    display: block;
}

@media screen and (min-width: 900px) {
	.main-menu a.donate-button {
 
	margin-top: 0;
}


    .menu-anchor-link {
        display: inline-block;
    }
}

.main-menu {
    float: right;
    padding: 16px 0;
}

.logo {
    height: 110px;
    width: auto;
    margin-top: -30px;
	    max-width: calc(100vw - 80px);
    object-fit: contain;
}

.footer-picture-wrap {
    position: relative;
}

.footer-picture-wrap::after {
    content: "";
    width: 100%;
    height: 30%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, #016a63);
    z-index: 3;
}


header {
    z-index: 100;
    background: #fff;
	width: 100%;
	top: 0;
	background: #f4f4f4;
	position: sticky;	
}

body.logged-in header {
/* 	top: var(--wp-admin--admin-bar--height); */
}

.pie {
    width: 35vw;
    height: 35vw;
    background-color: red;
    border-radius: 50%;
    margin: 0 auto;
}


	
    .pie {
        width: 15vw;
        height: 15vw;
    }


.footer-icon {
    width: 30px;
    height: 30px;
    transform: translateY(5px);
    position: relative;
    margin-right: 5px;
}

.founder-box {
    border: 3px solid #ffd512;
    max-width: 180px;
    border-radius: 10px;
    position: relative;
    top: -50px;
    transform: translateY(40px) rotate(-2deg);
    z-index: 1;
    margin: 10px;
    box-sizing: border-box;
    transition: transform 1s ease-in-out;
}

@media screen and (min-width: 600px) {
    .founder-box {
        border: 4px solid #ffd512;
        max-width: 240px;
    }
}

@media screen and (min-width: 900px) {
    .founder-box {
        border: 5px solid #ffd512;
        max-width: 290px;
    }
}


.founder-box.in-view {
    transform: translateY(0) rotate(5deg);

}

.founder-box-text {
    padding: 20px;
}

.founder-heading {
    position: relative;
    z-index: 2;
}

#menu-checkbox {
	display: none;
}
.menu-mobile-button{
	display: none;
}
@media screen and (max-width: 900px) {
	.menu-mobile-button{
		display: block;
		    float: right;
    padding: 25px;
	}
	.menu-icon {
		pointer-events: none;
		width: 30px;
		height: 30px;
		object-fit: contain;
	}
	.main-menu{
		display: none;
		width: 100%;
		height: 100vh;
		background: rgba(255,255,255,0.9);
		overflow: auto;
		padding-top: 7vh;
		
	}
	#menu-checkbox:checked + .main-menu{
		display: block;
		position: absolute;
		z-index: 10000;
		top: 80px;
		padding: 5vw;
		text-align: center;
		width: 100vw;
		box-sizing: border-box;
	}


}

.give-embed-form-wrapper {
    z-index: 10000;
    position: relative;
}


.page-wrapper {
	padding: 7vw;
	max-width: 1200px;
	margin: 0 auto;
}

a.footer-link {
	float: left;
	margin-right: 20px;
	font-size: 14px;
}

.footer-links {
	margin-bottom: 40px;
}

.footer-links::after {
	content:"";
	clear: both;
	width: 100%;
	display: table;
}


hr{
	border-top: 2px solid #f4f4f4;
	margin: 40px 0;
}