@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Moul&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --navColor: rgba(0, 0, 0, .8);
}

@media (max-width: 768px) {

    body {
        margin: 0;
        padding: 0;
        width: 100vw;
        overflow-x: hidden;

        .front-page {
            width: 100vw;
            height: 100vh;
            text-align: center;
            vertical-align: middle;

            .pic-wrapper {
                width: 100vw;
                height: 100vh;
                /* background: linear-gradient(240deg, rgba(255, 255, 255, .25), transparent, transparent); */
                position: absolute;
                z-index: 2;
                top: 0;
                left: 0;
            }

            .main-pic {
                object-fit: cover;
                width: 100vw;
                height: 100vh;
                object-position: 25% 100%;
                filter: brightness(0.65);
            }

            .info {
                position: absolute;
                inset: 50vh 0 0 50vw;
                width: 80vw;
                text-align: right;
                z-index: 3;
                transform: translateY(80px);
                opacity: 0;
                transition: ease 0.75s all;

                h1 {
                    font-size: 10vw;
                    color: rgb(230,230,230);
                    font-weight: 600;
                    line-height: 1.2;
                    transform: translate(-50%, -50%);
                    
                }

                h2 {
                    display: none;
                }
            }
        }

        .donate-div {
            width: 80vw;
            height: auto;
            margin: 0;
            padding: calc(69px + 10vh) 10vw 10vh 10vw;
            background-image: linear-gradient(to right, #244380, #07522A);
            position: relative;
            display: grid;
            row-gap: 5vh;
            grid-template-columns: 80vw;
            grid-template-rows: auto auto auto auto;

            .donate-subtitle {
                color: white;
                font-size: 7vw;
                margin: 0;
                text-align: center;
                grid-row: 1;
            }

            .donate-text {
                color: white;
                font-size: 12pt;
                line-height: 1.5;
                font-weight: 400;
                grid-row: 3;
            }

            .donate-button {
                padding: 0;
                display: block;
                text-align: center;
                margin: 0;
                width: 100%;
                text-decoration: none;
                grid-row: 4;
                /* border: 2px white solid; */

                .button-text {
                    font-size: 28pt;
                    font-weight: 800;
                    padding: 2.5vw 0;
                    border-radius: 100px;
                    margin: 0;
                    background-color: white;
                    mix-blend-mode: screen;
                }
            }

            .donate-button:hover {
                cursor: pointer;
                /* background-color: transparent; */
            }

            .donate-img-wrapper {
                grid-row: 2;
                width: 100%;

                img {
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                }
            }

            .custom-shape-divider-top-1730741182 {
                position: absolute;
                top: -1px;
                left: 0;
                width: 100%;
                overflow: hidden;
                line-height: 0;
            }

            .custom-shape-divider-top-1730741182 svg {
                position: relative;
                display: block;
                width: calc(100% + 1.3px);
                height: 69px;
                transform: rotateY(180deg);
            }

            .custom-shape-divider-top-1730741182 .shape-fill {
                fill: #FFFFFF;
            }


            .custom-shape-divider-bottom-1730741321 {
                position: absolute;
                bottom: -1px;
                left: 0;
                width: 100%;
                overflow: hidden;
                line-height: 0;
                transform: rotate(180deg);
            }

            .custom-shape-divider-bottom-1730741321 svg {
                position: relative;
                display: block;
                width: calc(100% + 1.3px);
                height: 69px;
                transform: rotateY(180deg);
            }

            .custom-shape-divider-bottom-1730741321 .shape-fill {
                fill: #FFFFFF;
            }
        }

        .robots {
            display: flex;
            flex-direction: column;
            width: 85vw;
            justify-content: center;
            gap: 25px;
            padding: 10vh 7.5vw;
            overflow-x: auto;
            align-items: center;

            .card {
                width: 100%;
                height: 50vw;
                text-decoration: none;
                scale: 0.6;
                opacity: 0;
                transition: all 1.5s ease;

                img {
                    object-fit: cover;
                    height: 100%;
                    width: 100%;
                }

                p {
                    position: relative;
                    text-align: center;
                    width: 250px;
                    color: white;
                    font-size: 18pt;
                    font-family: "Moul", serif;
                    margin: -55px auto 0 auto;
                }
            }

            .show {
                opacity: 1;
                scale: 1;
            }
        }
    }
}

@media (min-width: 768px) {

    body {
        margin: 0;
        padding: 0;
        width: 100vw;
        background-color: white;

        nav {

            a {
                color: white;
            }

            /*  .dropdown-items {
                background-color: var(--darkGrey);
            } */

            a::after {
                background-color: white;
            }
        }

        .front-page {
            width: 100vw;
            height: 100vh;
            text-align: center;
            vertical-align: middle;

            .pic-wrapper {
                width: 100vw;
                height: 100vh;
                background: linear-gradient(240deg, rgba(0, 0, 0, .25), transparent, transparent);
                position: absolute;
                z-index: 2;
                top: 0;
                left: 0;
            }

            .main-pic {
                object-fit: cover;
                width: 100vw;
                height: 100vh;
                filter: brightness(0.8);
            }

            .info {
                position: absolute;
                right: 100px;
                top: 200px;
                text-align: right;
                z-index: 3;
                transform: translateY(80px);
                opacity: 0;
                transition: ease 1s all;

                h1 {
                    font-size: 36pt;
                    color: white;
                    font-weight: 600;
                    line-height: 1.5;
                    margin-bottom: 20px;
                }

                h2 {
                    font-size: 14pt;
                    color: white;
                    font-weight: 400;
                    width: 500px;
                    line-height: 1.6;
                    margin-left: auto;
                }
            }
        }

        .donate-div {
            width: 80vw;
            height: auto;
            margin: 0;
            padding: calc(90px + 25vh) 10vw 20vh 10vw;
            background-image: linear-gradient(to right, #244380, #07522A);
            position: relative;
            display: grid;
            columns: 35vw;
            grid-template-columns: 35vw 35vw;
            gap: 7vh 10vw;
            grid-template-rows: 48px 120px 72px;

            .donate-subtitle {
                color: white;
                font-size: 30pt;
                margin: 0;
                padding: 0;
                text-align: left;
                grid-row: 1;
                grid-column: 1;
                height: fit-content;
            }

            .donate-text {
                color: white;
                font-size: 15pt;
                line-height: 1.5;
                font-weight: 400;
                grid-row: 2;
                grid-column: 1;
                margin: 0;
                height: fit-content;
            }

            .donate-button {
                padding: 0;
                display: block;
                text-align: center;
                margin: 0;
                text-decoration: none;
                grid-row: 3;
                grid-column: 1;
                height: auto;
                width: fit-content;

                .button-text {
                    font-size: 28pt;
                    font-weight: 700;
                    padding: 13px 35px;
                    border-radius: 100px;
                    letter-spacing: 0px;
                    margin: 0;
                    background-color: white;
                    mix-blend-mode: screen;
                    border: solid 2px white;
                    transition: 0.2s ease all;
                }

                .button-text:hover {
                    cursor: pointer;
                    background-color: transparent;
                    color: white;
                }
            }

            .donate-img-wrapper {
                grid-row: 1 / span 3;
                grid-column: 2;
                width: 100%;
                height: 100%;

                img {
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                }
            }

            .custom-shape-divider-top-1730741182 {
                position: absolute;
                top: -1px;
                left: 0;
                width: 100%;
                overflow: hidden;
                line-height: 0;
            }

            .custom-shape-divider-top-1730741182 svg {
                position: relative;
                display: block;
                width: calc(100% + 1.3px);
                height: 69px;
                transform: rotateY(180deg);
            }

            .custom-shape-divider-top-1730741182 .shape-fill {
                fill: #FFFFFF;
            }


            .custom-shape-divider-bottom-1730741321 {
                position: absolute;
                bottom: -1px;
                left: 0;
                width: 100%;
                overflow: hidden;
                line-height: 0;
                transform: rotate(180deg);
            }

            .custom-shape-divider-bottom-1730741321 svg {
                position: relative;
                display: block;
                width: calc(100% + 1.3px);
                height: 69px;
                transform: rotateY(180deg);
            }

            .custom-shape-divider-bottom-1730741321 .shape-fill {
                fill: #FFFFFF;
            }
        }

        .robots {
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: center;
            gap: 8px;
            padding: 20vh 0;
            overflow-x: auto;

            .card {
                width: 325px;
                height: 500px;
                transition: 0.5s cubic-bezier(0.87, 0, 0.03, 1.54);
                filter: grayscale(90%);

                img {
                    object-fit: cover;
                    height: 100%;
                    width: 100%;
                    filter: brightness(0.8);
                }

                p {
                    position: absolute;
                    text-align: center;
                    bottom: 10px;
                    width: 100%;
                    color: white;
                    font-size: 22pt;
                    font-family: "Moul", serif;
                    margin: 0;
                }
            }

            .card:hover {
                width: 500px;
                filter: grayscale(0) brightness(1.2);
                cursor: pointer;
            }
        }
    }
}