: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);
    }
}

/* Animation End */

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;
}

.message .row,
.options .row,
.top-message .row,
.tablechoice .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.message,
.top-message,
.options {
    margin: 0 0 10vh 0;
}

.message .main {
    color: white;
    /* font-size: 20px; */
    background-color: #1982c4;
}

.top-message h1 {
    margin: 0 0 5vh 0;
}

.tablechoice{
    margin-bottom: 5vh;
}


.accordion-body {
    padding: 3vh 3vw 0 3vw;
}

.bottom-message p {
    /* width: 50%; */
    padding: 2vh;
    background-color: rgb(233, 230, 230);
}

/* 
.options li::marker {
    color: green;
    font-weight: bold;
}

.options li h1{
    color: green;
} */

/* The Container Circle */
.scroll-indicator {
    width: 50px;
    height: 50px;
    border: 2px solid #007bff;
    /* Change to your brand color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* The Downward Arrow (CSS Drawing) */
.arrow {
    width: 12px;
    height: 12px;
    border-right: 3px solid #007bff;
    border-bottom: 3px solid #007bff;
    transform: rotate(45deg);
    margin-top: -5px;
    /* Centers the arrow visually */
    animation: bounce 2s infinite ease-in-out;
}

/* Smooth Bouncing Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(8px) rotate(45deg);
    }
}

.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 (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 {
        height: 50vh;
        /* border: 1px solid green; */
    }

    .hero-text h1 {
        width: 100%;
        font-size: 32px;
    }

    .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) {
    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;
    }

    .hero-text h1 {
        width: 100%;
        font-size: 32px;
    }

    .mission .row {
        height: 50vh;
    }

    .mission-title,
    .mission-subtitle {
        margin: 0;
    }

    .problem,
    .solution {
        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;
    }
}