html, body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins';
    font-weight: 300;
}

body {
    padding-top: 60px;

}


.tagline {
    font-family: 'Shadows Into Light', cursive;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #22bdef;
    opacity: .92;
    padding: 0px;
    font-size: 2vw;
    width: 35%;
    color: white;
    border-radius: 10px;
}


.menu-header {
    background-color: #dfe6e9;
    color: black;
}

.product-title {
    font-family: "Open Sans";
    font-size: 1.5vw;
    background-color: inherit !important;
    padding: 0;
}

:root {
    --vivid-sky-blue: #57c4e5ff;
    --sky-blue: #66c9e7ff;
    --sky-blue-2: #74cee9ff;
    --sky-blue-3: #81d2ebff;
    --sky-blue-4: #8cd6edff;
    --sky-blue-5: #a3e0f2ff;
    --non-photo-blue: #96daefff;
}

.product1 {
    background-color: var(--vivid-sky-blue);
}

.product2 {
    background-color: var(--sky-blue);
}

.product3 {
    background-color: var(--sky-blue-2);
}

.product4 {
    background-color: var(--sky-blue-3);
}

.product5 {
    background-color: var(--sky-blue-4);
}

.product6 {
    background-color: var(--sky-blue-5);
}

.screen-shot-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20px 20px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 979px) {
    body {
        /*padding-top: 0px;*/
    }

    .tagline {
        font-size: 5vw;
    }

    .product-title {
        font-size: 6vw;
        padding-left: 0px;
    }

    .my-container {
        flex-direction: column;
    }

    .my-reverse-container {
        flex-direction: column-reverse;
    }
}


.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed) {
    color: black;
}

@media screen and (max-width: 1200px) {
    .tagline {
        width: 85%;
    }
}

.title {
    font-family: 'Shadows Into Light', cursive;
}

.my-mt-1 {
    margin-top: 1em;
}

.footer-link {
    color: #d5d5d5;
    text-decoration: none;
    font-size: smaller;
}

.footer-white-link {
    color: white;
    text-decoration: none;
    font-size: smaller;
    margin-right: 5px;
}

.site-footer {
    color: white;
    background-color: #30BEED;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    /*justify-content: center;*/
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: none repeat scroll 0 0 #fff;
}

.sk-spinner-rotating-plane.sk-spinner {
    width: 30px;
    height: 30px;
    background-color: #28a7e9;
    margin: 0 auto;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/* end preloader */

/* cookie banner */

.nk-cookie-banner {
    display: none;
}