h2 {
    margin-top: calc(4rem + 1vw);
    &:not(:first-of-type) {
        margin-top: calc(4rem + 1vw);
        padding-top: 1.5rem;
        border-top: 5px solid rgba(0, 0, 0, 0.2);
    }
}

div.structure {
    margin-top: 4rem;
    border: 2px solid hsla(0, 0%, 0%, 10%);
    padding: 0 2rem 2rem;
    border-radius: 0.5rem;
    background-color: hsla(0, 0%, 100%, 15%);
    h2 {margin-top:1.5rem;}

    h3 {
        text-align: left;
        font-size: calc(0.7rem + 1vw);
        margin-bottom: 0.5rem;
		&.center {text-align:center;}
        small {
            font-size: 80%;
            color: hsl(30, 60%, 30%);;
            margin-right: 0.5rem;
        }

        @media (max-width: 499px) {
            small {
                display: block;
                margin-right: 0;
                margin-bottom: 0.25rem;
            }
        }
    }

    p {
        margin: 0 0 0;
    }
}

/* GIVEBUTTER BUTTON */
a.gb {
    display: block;
    width: calc(25vw + 150px);
    padding: calc(2vw + 10px) 0;
    background-color: hsl(100, 100%, 30%);
    color: #fff;
    margin: 5vw auto 3vw;
    border: 0.5vw solid hsl(100, 100%, 35%);
    border-right: 0.5vw solid hsl(100, 100%, 25%);
    border-bottom: 0.5vw solid hsl(100, 100%, 25%);
    border-radius: 25px;
    box-shadow: 5px 5px 20px hsl(32, 15%, 50%);
	font-family: "Noto Sans Condensed Bold";
	font-size: calc(10px + 2vw);
	text-decoration:none;
	text-align: center;
	white-space: nowrap;
	text-shadow: 3px 3px 5px hsl(100, 100%, 20%);
}

img.timeline {
	display:block;
	width:100%; 
	aspect-ratio: 1000/489;
	margin: 4vw 0 5vw;
}

ul.funding-goals {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    li {
        font-family: "Noto Sans Condensed Bold";
        font-size: calc(0.7rem + 1vw);
        margin-bottom: 0.5rem;
    }
}

/* ROUTE MAP */
#route-map-container {
    text-align: center;

    button {
        display: inline-block;
        border: none;
        border-radius: 0.5rem 0.5rem 0 0;
        padding: 5px 10px;
        font-family: "Noto Sans Condensed Bold";
        font-size: calc(0.5rem + 1vw);
        background-color: rgba(0, 0, 0, 0.15);
        color: rgba(0, 0, 0, 0.60);

        .filming {
            display: none;
        }

        &.active {
            background-color: #000;
            color: #fff;
        }
    }

    @media (min-width: 769px) {
        button {
            .filming {
                display: inline;
            }
        }
    }

    #route-map {
        border: 1px solid rgba(0, 0, 0, 0.01);
        border-radius: 0.5rem;
        background-color: rgba(0, 0, 0, 0.1);
        aspect-ratio: 16 / 9;
        position: relative;
        box-shadow: 5px 5px 20px hsl(32, 10%, 50%);

        .map-image {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            border-radius: 0.5rem;

            &.active {
                display: block;
            }
        }
    }
}

.pitch-deck {
    position: relative;
    width: calc(70vw + 60px);
    max-width: 100%;
    aspect-ratio: 16 / 9;
}

.pitch-deck iframe {
    border: 0;
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}