* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background: #FFF;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

h1,
h2,
h3 {
    color: #9E1F63;
    padding: 10px 0;
}

ul li {
    margin: 0 25px 0 0;
}

.backgroundLight {
    background: #f5f5f5;
}

.backgroundDark {
    background: #0A2533;
}

/* Begin Header Styles */

header {}

#donateBanner {
    color: white;
    font-weight: bold;
    text-align: center;
}

#donateBanner p {
    padding: 15px;
}

#donateBannerLink,
#donateBannerLink:visited {
    color: white;
    text-decoration: none;
}

.headerMain {
    display: flex;
    justify-content: space-between;
    padding: 25px 75px;
    align-items: center;
    gap: 50px;
}

.headerNavDesktop {
    width: 45%;
}

.headerLogoDesktop {
    flex-direction: row;
    height: 75px;
}

.headerSpacer {
    width: 45%;
}

nav.headerNavDesktop ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

/* Begin Main Styles */

section {
    padding: 50px 75px;
    line-height: 1.75em;
}

.columnsTwo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.columnsOne {
    text-align: center;
}

.columnOne,
.columnTwo {
    width: 100%;
    min-height: 250px;
}

.columnOne {
    margin-right: 25px;
}

.columnTwo {
    margin-left: 25px;
}

.columnImageCont {
    height: 350px;
    width: 100%;
    background: lightgrey;
}

.columnImage {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

/* Begin Footer Styles */

footer {
    min-height: 150px;
    color: white;
}

.footerMain {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 25%;
    padding: 50px;
}

.footerMain ul {
    list-style-type: none;
}

.footerMain li {
    padding: 5px 0;
}

.footerLogo {
    width: 150px;
    height: auto;
}

.copyright {
    text-align: center;
    padding: 50px;
}

.headerNavMobile,
.headerLogoMobile {
    display: none;
}

/* Start Hamburger Menu Style */
.container {
    /* max-width: 1050px; */
    width: 55px;
    margin: auto;
}

.navbar {
    /* width: 100%; */
    /* box-shadow: 0 1px 4px rgb(146 161 176 / 15%); */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
}

.navbar .menu-items {
    display: flex;
}

.navbar .nav-container li {
    list-style: none;
}

.navbar .nav-container a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
    display: block;
}

.navbar .nav-container a:hover {
    font-weight: bolder;
}

.nav-container {
    display: block;
    position: relative;
    height: 60px;
    float: left;
}

.nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 14.5px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0a2533;
}

.nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
    padding-top: 75px;
    /* box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5); */
    height: 100vh;
    width: 100vw;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -15px;
    /* padding-left: 0px; */
    transition: transform 0.5s ease-in-out;
    text-align: center;
    background: #0a2533;
}

.navbar .menu-items li {
    /* margin-bottom: 1.2rem; */
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    list-style-type: none;
}

.logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.2rem;
    color: #0e2431;
}

.nav-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked~.logo {
    display: none;
}

/* End Hamber Menu Style */

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

    .headerNavDesktop,
    .headerLogoDesktop,
    .headerSpacer {
        display: none;
    }

    .headerNavMobile,
    .headerLogoMobile {
        display: flex;
    }

    .headerMain {
        padding: 0 25px;
        align-items: normal;
        justify-content: left;
        flex-direction: row;
        align-items: center;
    }

    .headerLogoMobile {
        flex-direction: row;
        height: 15px;
    }

    section {
        padding: 25px 25px;
        line-height: 1.75em;
    }

    .columnImageCont {
        height: 250px;
    }

    .columnImage {
        height: 250px;
    }

    .columnOne,
    .columnTwo {
        padding: 0 0;
        margin: 0 0;
    }

    .columnTwo {
        padding: 25px 0 0;
    }

    .columnsTwo {
        display: block;
    }

    .footerMain {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .footerMain ul li {
        margin: 0;
    }

    .footerMain img {
        margin: 0 auto;
    }
}

@media only screen and (min-width: 1500px) {
    .headerMain {
        padding: 25px 20%;
    }

    section {
        padding: 50px 20%;
    }
}