@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&family=Quicksand&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    color: black;
    display: flex;
    flex-direction: column;
    font-size: 1.375rem;
    height: 100vh;
    overflow: auto;
    justify-content: space-between;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: lowercase;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

.logo .main {
    font-size: 6em;
    color: #FAFF00;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        -5px 5px 0 #9B9B07,
        -6px 6px 0 #000,
        -4px 6px 0 #000,
        -6px 4px 0 #000;
}

.logo .tagline {
    font-size: 3em;
    color: #ffffff;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.button {
    display: inline-block;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    padding: 0 1.5em;
    font-size: 1em;
    line-height: 2.5em;
    border-radius: 2.5em;
    text-decoration: none;
    color: #FAFF00;
    background-color: #54B0E4;
    border: 1px solid white;
    transition: background-color 300ms, color 300ms;
    font-weight: bold;
    text-transform: lowercase;
    white-space: nowrap;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.button:hover {
    background-color: darkblue;
    border: 1px solid white;
    /*color: #54B0E4;*/
}

.button.text-only {
    background-color: transparent;
    color: #fff;
    border: 0;
    padding: 0;
}

.button.text-only:hover {
    color: #FAFF00;
}

header {
    border-bottom: 1px solid #ffffff;
}

.nav-wrapper {
    background-color: #A5D9F6;
    padding: 2rem 4rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .button {
    margin: 0 1rem;
    font-size: 1.5rem;
}

.nav-container .button:last-child {
    margin-right: 0 ;
}

.section-wrapper {
    position: relative;
    padding: 4rem 4rem;
}

#faq,
#notice {
    background-color: #A5D9F6;
    background-image: url("/imgs/TrueBlue.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    flex-grow: 1;
}

.notice-wrapper {
    background-color: rgba(255,255,255,0.5);
    padding: 2rem 4rem;
    width: 66vw;
    margin: 0 auto;
    border: 1px solid #fff;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25); 
}

.notice-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.notice-wrapper p {
    margin-bottom: 2em;
    line-height: 1.75em;
}

.notice-wrapper .button-wrapper {
    text-align: center;
}

.notice-wrapper .button-wrapper .button {
    padding: 0.5em 1.5em;
}

.notice-wrapper .button-wrapper .pricing {
    display: block;
    font-size: 1.5em;
    line-height: 1em;
}

.notice-wrapper .button-wrapper .pricing .strike-through {
    position: relative;
}

.notice-wrapper .button-wrapper .pricing .strike-through::after {
    content: '';
    display: block;
    position: absolute;
    width: 112%;
    height: 4px;
    background-color: #f00;
    top: 50%;
    left: -6%;
    transform: translate(0, -50%) rotate(-15deg);
    transition: transform 300ms;
}

.notice-wrapper .button-wrapper .button:hover .pricing .strike-through::after {
    transform: translate(0, -50%) rotate(15deg);
}

.notice-wrapper .button-wrapper .cta {
    display: block;
    line-height: 1em;
}

#features {
    background-color: #fff;
}

#features::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/imgs/ocean.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0.1;
}

.feature-container {
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
    margin-bottom: 2rem;
}

.feature-container .feature {
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    font-weight: bold;
}

.feature-container .feature img {
    height: 120px;
    width: auto;
}

.feature-container .feature p {
    margin: 2rem 0 0;
    font-size: 1.1em;
}


.chart-container {
    display: flex;
    justify-content: space-evenly;
}

.chart-container img {
    height: auto;
    max-width: 66vw;
    width: 100%;
}

footer .logo {
    font-size: 0.5rem;
}

footer .lower-footer {
    font-size: 0.75rem;
    margin-top: 2rem;
}

footer .lower-footer .left-nav a {
    color: #000;
    text-decoration: none;
}

#video-section {
    position: relative;
    z-index: 0;
    flex-grow: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    background-color: #A5D9F6;
}

#video-section::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url("/imgs/Blue-and-white-illustration.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    opacity: 0.2;
}

#video-section h4 {
    max-width: 30vw;
    color: #fff;
    -webkit-text-stroke: 0.5px #000;
    font-size: 2rem;
}

.video-wrapper {
    max-width: 50vw;
    width: 100%;
}

.video-wrapper .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper .video-container .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#mission {
    text-align: center;
}

#mission h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

#mission p {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5em;
}


.registration-process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

form {
    text-align: center;
}

form section {
    margin: 0 auto 2rem;
    max-width: 80vw;
}

form section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

form .form-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    
    margin-bottom: 1rem;
}

form#details .form-row {
    justify-content: left;
}

form .field-wrapper {
    display: block;
    position: relative;
    margin-right: 1rem;
    max-width: 30vw;
    flex-grow: 1;
}

form label {
    font-size: 0.75em;
}

form .field-wrapper label {
    position: absolute;
    top: 0;
    left: 1.5rem;
    font-size: 0.7em;
    font-weight: 600;
    padding: 0 0.5em;
    background-color: #fff;
    transform: translate(0, -50%);
}

form .field-wrapper input {
    line-height: 3rem;
    font-size: 1rem;
    width: 100%;
    padding: 0 10px;
    border: 2px solid #666;
}

form .field-wrapper input:disabled,
form .field-wrapper select:disabled {
    border: 2px solid #A0A0A0;
    background-color: #CDCDCD;
}

form .field-wrapper .validation-error {
    border: 1px solid #A00;
}

form .field-wrapper .validation-ok {
    border: 1px solid #0A0;
}

form .field-wrapper select {
    height: 3rem;
    font-size: 1rem;
    width: 100%;
    background: #fff;
    border: 2px solid #666;
    padding: 0 10px;
}

form .field-wrapper.middle-name {
  max-width: 200px;
}

form .field-wrapper.pro {
  max-width: 100px;
}

.registration-steps {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 2rem;
    list-style: none;
    max-width: 600px;
}

.registration-steps li.step {
    border-radius: 50%;
    border: 2px solid #545454;
    line-height: calc(3rem - 4px);
    width: 3rem;
    height: 3rem;
    font-size: 1.75rem;
}

.registration-steps li.spacer {
    border-bottom: 2px solid #545454;
    flex-grow: 1;
}

.registration-steps li.active {
    background-color: #54B0E4;
    color: #fff;
}

.registration-steps li.done {
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAyNSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxsaW5lIHgxPSIwLjcwNzEwNyIgeTE9IjEwLjk4NzciIHgyPSI3Ljc3ODE3IiB5Mj0iMTguMDU4OCIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIi8+DQo8bGluZSB4MT0iNi41NjI2NyIgeTE9IjE4LjI2MzUiIHgyPSIyMy41MzMyIiB5Mj0iMS4yOTI5IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiLz4NCjwvc3ZnPiA=");
}

#error-message {
    margin: 0 auto 2rem;
    text-align: center;
    background-color: #C33;
    color: #fff;
    padding: 0 2rem;
    font-size: 1rem;
    display: inline-block;
    line-height: 2rem;
}

#error-message.hidden {
    display: none;
}

#loader {
    position: fixed;
    pointer-events: inherit;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(0,0,0, 0.4);
    transition: opacity 100ms;
}

#loader.hidden {
    background: rgba(0,0,0, 0);
    pointer-events: none;
    opacity: 0;
}

@keyframes logoMainAnim {
	0%,
	50%,
	100% {
		color: #FAFF00
	}

	25%,
	75% {
		color: #FFF;
	}
}

@keyframes logoTagAnim {
	0%,
	50%,
	100% {
		color: #FFF
	}

	25%,
	75% {
		color: #FAFF00;
	}
}

#loader .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: color 300ms;
}

#loader .logo .main {
    animation: logoMainAnim 10s ease 0s infinite normal forwards;
}

#loader .logo .tagline {
    animation: logoTagAnim 10s ease 0s infinite normal forwards;
}

#payment-element {
    margin-bottom: 0.5rem;
}

#coupon-section {
    text-align: start;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgb(48, 49, 61);
    box-sizing: border-box;
    margin-bottom: 2rem;
    padding: 0;
    left: 0;
    
}

.coupon-input {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

#coupon-code {
    line-height: 3rem;
    font-size: 1rem;
    width: 100%;
    padding: 0 10px;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
}

#coupon-button:disabled,
#submit-button:disabled {
    border: 2px solid #A0A0A0;
    background-color: #CDCDCD;
    color: #A0A0A0;
}

#product-information {
    max-width: 800px;
    border: 2px solid #666;
    padding: 2rem;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-content: center;
    margin: 0 auto 2rem;
}

#product-information .price {
    font-size: 2em;
    font-family: Poppins, sans-serif;
}

#product-information .description {
    font-size: 1.2rem;
    max-width: 700px;
}

.faq-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.faq-wrapper ul {
    list-style: none;
}

.faq-wrapper .faq-index {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    margin-right: 2rem;
}

.faq-wrapper li h3 {
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.faq-wrapper li p {
    font-size: 1.2rem;
}

.faq-wrapper .faq-index li {
    cursor: pointer;
}

.faq-wrapper .faq-index li h3 {
    font-family: Quicksand, sans-serif;
    text-transform: capitalize;
}

.faq-wrapper .faq-index li p {
    display: none;
}

.faq-wrapper .desktop-faq {
    flex-grow: 1;
}

.faq-wrapper .box {
    padding: 1rem;
    border: 1px solid #000;
    background: #FFF;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
    transition: background-color 300ms;
}

.faq-wrapper .box.active {
    background: rgb(247, 249, 146);
}

@media (max-width: 1024px) {
    .nav-container {
        flex-flow: column;
        justify-content: center;
    }

    .nav-container .logo {
        margin-bottom: 2rem;
    }

    .chart-container img {
        max-width: 90vw;
    }

    .notice-wrapper {
        width: 100%;
        padding: 2rem;
    }

    form .form-row {
        flex-flow: column;
    }

    form .field-wrapper {
        margin: 0 0 1rem;
        max-width: 100%;
    }

    form .field-wrapper.middle-name {
        max-width: 100%;
    }

    #video-section {
        flex-flow: column;
        justify-content: center;
    }

    #video-section h4 {
        max-width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    .video-wrapper {
        max-width: 100%;
    }

    #product-information {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .faq-wrapper .desktop-faq {
        display: none;
    }

    .faq-wrapper .faq-index {
        flex-grow: 1;
        min-width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .faq-wrapper .faq-index li h3 {
        font-family: Poppins, sans-serif;
        font-size: 1.2rem;
        text-transform: uppercase;
    }

    .faq-wrapper .faq-index li p {
        display: block;
    }
}

@media (max-width: 556px) {
    .section-wrapper {
        padding: 2rem;
    }
    .nav-wrapper {
        padding: 2rem;
    }
    .nav-container .logo,
    #loader .logo {
        font-size: 0.75rem;
    }

    footer .nav-container .logo {
        font-size: 0.5rem;
    }
}

@media (max-width: 420px) {
    .nav-container .button {
        font-size: 1.2rem;
        margin: 0 0.25rem;
    }
    .nav-container .logo,
    #loader .logo {
        font-size: 0.5rem;
    }

    footer .nav-container .logo {
        font-size: 0.45rem;
    }

    .section-wrapper {
        padding: 2rem 0.5rem;
    }

    .notice-wrapper {
        width: auto;
        padding: 2rem 1rem;
    }
}