:root {
    --color-navy: #061a50;
    --color-lime: #a830e0;
    --color-cyan: #3ec1f4;
    --color-orange: #ff8619;
    --color-orange-light: #ff9e47;
    --color-white: #fff;
    --color-off-white: #EBECF1;
    --transition-duration: 0.2s;
}

html {
    background-color: var(--color-navy);
    color: var(--color-white);
    text-align: center;
}

body>div {
    z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6,
a.button {
    z-index: 2;
    position: relative;
    font-family: "Black Han Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

a {
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

a.button {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 20px 50px;
    border-radius: 10px;
    transition: all var(--transition-duration) ease-in-out;
}

a.button:hover {
    background-color: var(--color-orange-light);
    box-shadow: 0px 4px 14px 0px grey;
}

header>a>img {
    margin: 40px 40px 0px 40px;
    width: 180px;
    height: auto;
    z-index: 2;
    position: relative;
}

#locationSelector {
    background: white;
    color: var(--color-navy);
    min-height: 60px;
    min-width: 300px;
    border-radius: 10px;
    margin: 38px 20px 40px 20px;
    position: relative;
    cursor: pointer;
}

#locationSelector .header .locationSelector-pin,
#locationSelector .header .locationSelector-text {
    float: left;
}

#locationSelector .header .locationSelector-pin {
    margin: 10px 16px;
}

#locationSelector .header .locationSelector-text {
    font-size: 1.4em;
    line-height: 15px;
    font-weight: bold;
}

#locationSelector .header .locationSelector-arrow {
    float: right;
    background-color: var(--color-lime);
    padding: 19px 9px;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#locationSelector .header .locationSelector-arrow img {
    margin-top: 6px;
    width: 24px;
    height:auto;
    transition: all var(--transition-duration) ease-in-out;
}

#locationSelector.active .header .locationSelector-arrow img {
    transform: scaleY(-1) translateY(3px);
}

#locationSelector-content {
    background-color: var(--color-white);
    transition: height var(--transition-duration) ease-in-out;
    overflow: hidden;
    width: 100%;
    text-align: left;
    border-radius: 10px;
}

#locationSelector-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    background: transparent radial-gradient(ellipse at top, rgba(0, 0, 0, .13) 0%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
}

#locationSelector-content a {
    width: 100%;
    display: block;
    padding: 18px 26px;
    color: var(--color-navy);
    font-size: 1.2em;
    font-weight: bold;
    transition: all var(--transition-duration) ease-in-out;
}

#locationSelector-content a:hover {
    background: var(--color-off-white);
}

#locationSelector-content a:not(:last-child) {
    border-bottom: 1px solid #B6B6B6;
}

#locationSelector:not(.active) #locationSelector-content {
    display: none;
}

#photoShape img {
    display: none;
}

#blueShape img {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 0;
}

#jumpingKids img {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
	width: auto;
    height: auto;
}

/* Mobile */
@media only screen and (max-width: 280px) and (orientation : landscape),
only screen and (orientation : portrait) {
    #locationSelector .header .locationSelector-pin {
        display: none;
    }

    #locationSelector .header .locationSelector-text {
        margin-left: 24px;
    }
}

@media only screen and (max-width: 350px) and (orientation : landscape),
only screen and (orientation : portrait) {
    body {
        font-size: .7em;
    }

    #locationSelector {
        min-height: 47px;
        min-width: 200px;
        margin: 38px 10px 40px 10px;
    }

    #locationSelector .header .locationSelector-pin {
        width: 20px;
    }

    #locationSelector .header .locationSelector-arrow {
        padding: 13px 4px;
    }

    header>a>img {
        width: 144px;
        height: auto;
    }
}

@media only screen and (max-width: 859px) and (orientation : landscape),
only screen and (orientation : portrait) {

    #blueShape #blueShape-mobile {
        display: block;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
    }

    #jumpingKids img {
        right: 0;
        max-height: 50%;
        margin: 0 auto;
    }
}

/* Tablet and desktop */
@media only screen and (min-width: 860px) and (orientation : landscape) {

    header>a>img {
        margin-top: 60px;
    }

    #locationSelector {
        max-width: 310px;
        margin: 38px auto 40px auto;
    }

    #blueShape #blueShape-desktop {
        display: block;
        left: 0;
        top: 0;
        height: 100%;
        width: auto;
    }

    #jumpingKids img {
        max-height: 60%;
    }

    #photoShape img {
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        width: auto;
        transform: translateX(190px);
    }
}

@media only screen and (min-width: 1024px) and (orientation : landscape) {
    #photoShape img {
        transform: translateX(110px);
    }
}

@media only screen and (min-width: 1130px) and (orientation : landscape) {
    #photoShape img {
        transform: translateX(80px);
    }
}

@media only screen and (min-width: 1365px) and (orientation : landscape) {
    header>a>img {
        margin-top: 5vw;
        width: 222px;
        height: auto;
    }
}

@media only screen and (min-width: 1500px) and (orientation : landscape) {
    #photoShape img {
        transform: translateX(0px);
    }
}