:root {
  color-scheme: light only;
}


* {
    box-sizing: border-box;
}

html,
body {
    opacity: 1;
    font-family: "Poppins", sans-serif;
    color: #004861;
}

html {
    overflow: unset;
}

body {
    overflow-x: hidden;
    /* padding-top: 10vh; */
}

/* Animation */
.waves {
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: -7px;
    min-height: 60px;
}

.waves-parent.header-waves {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.waves-parent {
    &.quote-waves {
        .waves {
            height: 50px;
            min-height: 60px;
        }
    }

    &.header-waves {
        transform: rotate(180deg);
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        z-index: 3;

        .waves {
            height: 50px;
            min-height: 60px;
        }
    }
}

.parallax>use {
    animation: move-forever 40s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

nav {
    height: 15vh;
}

nav,
.navbar-expand-md,
.navbar {
    z-index: 999;
    background-color: transparent !important;
    /* min-height: 10vh; */
}

.hire {
    font-weight: 600;
    box-sizing: border-box;
    background-color: #ffe900;
}

.hire img {
    margin: 0 1vw 0 0;
}

.hire a {
    color: inherit;
    text-decoration: none;
}

.hire:hover {
    border: 0.1px solid gray;
}

.nav-item {
    margin-right: 2vw;
}

.nav-item a:hover {
    border-bottom: 2px solid #004861;
}

.selected {
    font-weight: 500;
    border-bottom: 2px solid #6667c5;
}

#mylogo {
    height: 15vh;
    z-index: -1;
}

.front-holder {
    background: linear-gradient(45deg, #e6f2ff 0%, #ffffff 100%);
    margin-right: 0;
}

.hero {
    padding: 0 0 5vh 0;
    min-height: 10vh;
}

.hero-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-holder {
    width: 90%;
}

.imp {
    font-weight: 600;
}

.hero-text h1 {
    width: 90%;
    text-align: left;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.9px;
    /* color: #896245; */
    font-weight: 700;
    margin: 0 0 20px;
}

.hero-text h1 span {
    color: #5c5cd3;
}

.hero-text p {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.66;
    letter-spacing: .18px;
    color: #044862;
}

.btn-rge-1 {
    display: flex;
    padding: 2vw 0vw 0 0vw;
    align-items: center;
}

.cust {
    color: white;
    /* margin: 0 0 2vw 0; */
    font-weight: 600;
    background-color: #5c5cd3;
}

.cust:hover {
    color: #5c5cd3;
    border: 1px solid #5c5cd3;
    background-color: white;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 90%;
}

.mission-top .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission {
    /* border: 5px solid red; */
    margin-bottom: 10vh;
}

.mission .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-subtitle {
    min-height: 15vh;
}

.problem {
    padding: 2vh 2vw;
    border-right: 4px solid white;
    background-color: white;
    border-top-left-radius: 5%;
    border-bottom-left-radius: 5%;
    box-shadow: -10px 10px 24px -9px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -10px 10px 24px -9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -10px 10px 24px -9px rgba(0, 0, 0, 0.75);
}

.solution {
    padding: 2vh 2vw;
    border-left: 4px solid #5c5cd3;
    background-color: white;
    border-top-right-radius: 5%;
    border-bottom-right-radius: 5%;
    box-shadow: 10px 10px 24px -9px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 24px -9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 24px -9px rgba(0, 0, 0, 0.75);
}

.problem-title,
.solution-title {
    display: flex;
    min-height: 10vh;
    align-items: center;
    justify-content: center;
}

.problem-title h1,
.solution-title h1 {
    text-align: center;
}

.problem-content,
.solution-content {
    /* font-size: 1.3vw; */
}

.problem-content li,
.solution-content li {
    padding: 1vh;
    /* border-top: 1px solid tan; */
    border-bottom: 1px solid tan;
    min-height: 10vh;
}

.problem-content ul,
.solution-content ul {
    list-style: none;
    padding-left: 0;
}

.problem-content li,
.solution-content li {
    margin-bottom: 10px;
}

.problem-content i,
.solution-content i {
    margin-right: 10px;
    color: #28a745;
    /* matches your button color, adjust as needed */
}

.mission-learn-more {
    top: 90vh;
    width: 10vw;
    color: white;
    position: absolute;
    font-weight: 500;
    background-color: #5c5cd3;
}

.impact .row {
    /* height: 100vh; */
    display: flex;
    margin-top: 10vh;
    position: relative;
    align-items: center;
    justify-content: center;
}

.impact-topic {
    min-height: 20vh;
}

.impact-images {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#impactCarousel {
    width: 100%;
    height: 80%;
    background-color: green;
}

#impactCarousel img {
    width: auto;
    height: 100%;
}

.donor-top h1{
    margin: 0 0 5vh 0;
}

.donor-top .row{
    margin: 0 0 8vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-topic{
    margin: 0 0 0 0;
}

.optionsone, .optionstwo, .optionsthree{
    margin: 0 0 10vh 0;
}

.donor-top .col-12,
.donor-options .col-md-10 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.donor-options .intro {
    margin: 5vh 0 0 0;
    min-height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
}

.donor-options .tabs {
    min-height: 75vh;
    display: flex;
    margin-top: 10vh;
    position: relative;
    align-items: center;
    justify-content: space-around;
}

.donor-options .bot {
    min-height: 10vh;
}

.do-tab,
.jo-tab,
.po-tab {
    min-height: 70vh;
    padding: 0;
    box-shadow: -10px 10px 24px -9px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -10px 10px 24px -9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -10px 10px 24px -9px rgba(0, 0, 0, 0.75);
}


.do-tab .one {
    height: 35vh;
    background-size: cover;
    background-image: url("../images/cash\ or\ items.png");
    background-repeat: no-repeat;
    background-position: center;
}

.jo-tab .one {
    height: 35vh;
    background-size: cover;
    background-image: url("../images/site\ visit.png");
    background-repeat: no-repeat;
    background-position: center;
}

.po-tab .one {
    height: 35vh;
    background-size: cover;
    background-image: url("../images/patreon.png");
    background-repeat: no-repeat;
    background-position: center;
}

.do-tab .middle-section {
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.do-tab .bottom-section {
    height: 20vh;
    background-image: url("../images/abstract.png");
    background-size: contain;
    background-position: center;
}

.jo-tab .bottom-section,
.po-tab .bottom-section {
    height: 18vh;
    /* border: 1px solid red; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    background-image: url("../images/abstract.png");
    background-size: contain;
    background-position: center;
}

.dc {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.di {
    height: 50%;
    display: flex;
    justify-content: center;
}

.di button,
.dc button,
.jo-tab button,
.po-tab button {
    width: 90%;
    height: 6vh;
}

.po-tab .middle-section,
.jo-tab .middle-section {
    height: 17vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle-section div {
    font-weight: bold;
}

.footer .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    background-color: #111827;
}

.footer h1 {
    color: white;
    width: 100%;
    font-size: 2rem;
    text-align: center;
}

.footer p {
    color: white;
    width: 100%;
    font-size: 1rem;
    text-align: center;
}

.footer-main {
    /* height: 100vh; */
    padding-bottom: 10vh;
    border-bottom: 1px solid rgb(209 213 219);
}

.footer-main-right p,
.footer-main-left p {
    color: white;
    font-size: 1.2rem;
    text-align: left;
    font-weight: bold;
}

.footer-main-left article {
    color: white;
    font-size: 0.9rem;
    line-height: 4vh;
}

.icon-area {
    display: flex;
    align-items: center;
}

.icon-area-left {
    color: white;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(37 99 235);
}

.icon-area-left .bi {
    font-size: 3.5vh;
}

.icon-area p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: normal;
}

.footer-main-right {
    /* min-height: 60vh; */
    background-color: rgb(31 41 55);
}

.footer-main-right label {
    color: white;
    font-size: 0.8rem;
}

.footer-main-right input,
.footer-main-right textarea {
    color: white;
    font-size: 0.8rem;
    border: none;
    background-color: rgb(55 65 81);
}

.footer-main-right input::placeholder,
.footer-main-right textarea::placeholder {
    color: rgb(209 213 219);
    opacity: 1;
}

.footer-main-right button {
    width: 100%;
}

.footer-main-right img,
iframe {
    width: 100%;
    max-height: 50vh;
}

@media only screen and (min-width:900px){
    .hero-text, .hero-image{
        height: 80vh;
    }
}

@media only screen and (max-width:900px) and (max-height: 1100px) {
    nav {
        border-bottom: 0.2px solid lightgray;
    }

    .nav-item{
        margin: 0 0 3vh 0;
    }

    #mylogo {
        height: 8vh;
    }

    .hero-image {
        padding: 3vh 3vw 5vh 3vw;
    }

    .hero-text h1 {
        width: 100%;
        font-size: 32px;
    }

    .btn-rge-1{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-rge-1 button{
        width: 200px;
    }

    .mission-subtitle {
        padding: 5vh 0 5vh 0;
        min-height: 40vh;
        margin: 3vh 0 0 0;
    }

    .subtitle {
        margin: 10vh 0 0 0;
    }

    .problem {
        margin: 0 0 5vh 0;
        padding: 2.5vh;
        border-radius: 5%;
        -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 0px 0px 19px -6px rgba(0, 0, 0, 0);
        box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 0px 0px 19px -6px rgba(0, 0, 0, 0);
    }

    .solution {
        border: none;
        padding: 2.5vh;
        border-radius: 5%;
        -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 0px 0px 19px -6px rgba(0, 0, 0, 0);
        box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 0px 0px 19px -6px rgba(0, 0, 0, 0);
    }

    .problem-title h1,
    .solution-title h1 {
        font-size: x-large;
    }

    .problem-content li,
    .solution-content li {
        padding: 0.5vh;
        /* font-size: 18px; */
        min-height: 10vh;
    }

    .impact .row {
        margin: 5vh 0 0 0;
    }

    .footer-main-left article {
        line-height: normal;
    }
}

@media only screen and (min-width:700px) and (min-height:950px) and (max-width:1500px){
    nav {
        /* height: 15vh; */
        border-bottom: 0.2px solid lightgray;
    }

    #mylogo {
        height: 8vh;
    }

    .front-holder {
        height: 63vh;
    }

    .hero {
        height: 45vh;
    }

    .hero-text,
    .hero-image {
        height: 45vh;
        border: 5px solid rebeccapurple;
    }

    .hero-text h1 {
        width: 100%;
        font-size: 32px;
    }

    .mission .row {
        height: 50vh;
    }

    .mission-title,
    .mission-subtitle {
        margin: 0;
    }

    .problem,
    .solution {
        min-height: 40vh;
        margin: 0;
    }

    .problem-title h1,
    .solution-title h1 {
        font-size: 3vw;
    }

    .problem-content li,
    .solution-content li {
        padding: 0.5vh;
        font-size: 2vw;
        min-height: 2vh;
    }

    .impact .row {
        margin: 5vh 0 0 0;
    }

    .footer-main-left article {
        line-height: 2vh;
    }
}