* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
}

html, body
{
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.bright{
    color: white;
}

.dark{
    color: black;
}

.bold {
    font-weight: 600;
}

.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none;
    vertical-align: top;
}

#bg{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    background-size: cover;
}

/*Container 1 ----------*/
.scroll {
    position: relative;
    width: 100%;
    height: 805px;
    display:block;
    overflow: hidden;
    background-image: url("../images/space_background.jpg");
    padding: 0;
    margin: 0 auto;
}

/*Drop Down Menu -----------------------*/
.btn-sm {
    background-color: transparent;
    background-image: none;
    border-radius: 5px;
    font-size: 16px;
    min-width: 13%;
    margin-top: 1%;
    margin-right: 1%;
    float: right;
    padding: 0;
}

.btn-sm:hover {
    background-image: none;
    background: white;
    border-radius: 10px;
}

.btn-sm:focus {
    background-image: none;
}

.btn-sm:active {
    background-image: none;
}

.dropdown-menu {
    border-radius: 10px;
    left: 85%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    min-width: 20px;
    max-width: 13%;
    padding: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.dropdown-menu > li > a {
    padding: 5px;
    color: blue;
}

#menu-whale {
    display: none;
    visibility: hidden;
}

#close-menu {
    display: none;
    visibility: hidden;
}
/*Drop Down Menu -----------------------*/

.scrollmenu{
    overflow-x: scroll;
    white-space: nowrap;
}

.scrollmenu::-webkit-scrollbar {
    display: none;
}

.row-fluid {
    padding: 10px;
    margin-top: 300px;
    margin-left: 2%;
    right: 2%;
}

.scrolling {
    -moz-animation-name: move;
    -o-animation-name: move;
    animation-name: move;
    -webkit-animation-name: move;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
}

.scrolling:hover {
    -webkit-animation-play-state: paused;
}

@-webkit-keyframes move {
    0% {
        margin-left: 10%;
        /*margin-left: 80px; */
    }

    100% {
        margin-left: -20%;
        /*margin-left: -200px;*/
    }
}

.card {
    display: inline-block;
    float: none;
    background-color: white;
    width: 230px;
    height: 250px;
    align-content: center;
    margin: 15px;
    border-radius: 15px;
    padding: 0;
    cursor: pointer;
}

.card span {
    display: inline-block;
    float: none;
    white-space: pre-wrap;
    font-size: 20px;
    font-weight: 600;
    color: black;
    position: absolute;
    padding: 30px;
}

.card span h6 {
    margin-top: 15px;
    font-size: 14px;
    color: grey;
}

.modal.in .modal-dialog {
    width: 60%;
    margin-top: 5%;
}

.modal-content{
    padding: 25px;
    border-radius: 20px;
}

.modal-header {
    border-bottom: 0;
    padding: 12px;
}

.modal-body p {
    white-space: normal;
    padding: 0px;
    font-size: 18px;
}

.modal-footer {
    text-align: center;
    border-top: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.btn-link {
    display: block;
    border-color: transparent;
    font-size: 18px;
    align-content: right;
    text-align: left;
    margin: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: blue;
}

.btn-link:hover {
    background-image: none;
    color: #4d4dff;
    text-decoration: none !important
}

.btn-link:focus {
    background-image: none;
}

.btn-link:active {
    background-image: none;
}

.top_caption{
    position: absolute;
    font-size: 34px;
    top: 100px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 950px;
}

.mid_caption{
    position: absolute;
    font-size: 18px;
    top: 220px;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

#heart {
    width: 40px;
    height: 40px;
}

#close {
    width: 80px;
    height: 80px;
}

@media screen and (max-width: 723px) and (min-width: 500px) {
    .top_caption {
        top: 90px;
    }

    .mid_caption {
        top: 240px;
    }
}

@media screen and (max-width: 500px) {
    .scroll {
        height: auto;
    }

    /*Drop Down Menu -----------------------*/
    .btn-sm {
        color: white;
        margin-top: 3%;
        margin-right: 6%;
        padding: 1%;
    }

    .btn-sm:active {
        padding: 1%;
    }

    .dropdown-menu {
        left: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: center;
        max-width: 85%;
    }

    .dropdown-menu > li > a {
        font-size: 20px;
    }

    #menu-whale {
        display: initial;
        visibility: initial;
        width: 90px;
        padding-top: 10px;
        padding-bottom: 0px;
    }

    #close-menu {
        display: initial;
        visibility: initial;
        width: 60px;
        height: auto;
        padding-top: 30px;
        padding-bottom: 10px;
    }
    /*Drop Down Menu -----------------------*/

    .scrolling {
        -moz-animation-name: none;
        -o-animation-name: none;
        animation-name: none;
        -webkit-animation-name: none;
        -webkit-animation-duration: 0s;
        -webkit-animation-iteration-count: none;
        -webkit-animation-direction: none;
        -webkit-animation-timing-function: none;
        -webkit-animation-fill-mode: none;
    }

    .scrolling:hover {
    -webkit-animation-play-state: none;
    }

    .row-fluid {
        margin-top: 500px;
    }

    .card {
        display: block;
        width: 350px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .card span h6 {
        margin-top: 80px;
    }

    .modal.in .modal-dialog {
        position: absolute;
        width: 350px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        margin-bottom: 30px;

    }

    .modal-header {
        padding: 10px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-body {
        padding: 10px;
    }

    .modal-body p {
        font-size: 16px;
    }

    .modal-footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .repeat {
        display: none;
    }

    #myModal6 {
        display: none;
        visibility: hidden;
    }

    #myModal7 {
        display: none;
        visibility: hidden;
    }

    #myModal8 {
        display: none;
        visibility: hidden;
    }

    #myModal9 {
        display: none;
        visibility: hidden;
    }

    #myModal10 {
        display: none;
        visibility: hidden;
    }

    .btn-link {
        font-size: 16px;
    }

    .top_caption {
        text-align: left;
        margin-left: 20px;
        margin-right: 20px;
        top: 80px;
    }

    .mid_caption {
        text-align: left;
        top: 400px;
        margin-left: 20px;
        margin-right: 20px;
    }

    #close {
        width: 60px;
        height: 60px;
    }

/*    img[data-src_sands] {
        content: url("../images/website-assets/mobile-assets/brown-bg-mobile.jpg");
    }*/
}

/*Containers landing ------------------*/
.landing {
    position: relative;
    width: 100%;
    height: auto
    max-height: 600px;
    display:block;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.appStore {
    height: 600px;
}

.copywrite {
    background-color: black;
    max-height: 400px;
}

#store-bg {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: -1;
    background-size: cover;
    margin: 0px;
}

.store {
    margin-top: 15%;
    font-size: 22px;
}

.store_center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.row_copyWrite {
    text-align: center
}

.end_list {
    color: grey;
    margin-left: 8%;
    margin-top: 3%;
    width: 22%;
    padding: 0;
    font-size: 120%;
}

.end_list h5 {
    color: white;
    width: 80%;
}

#appleStore2 {
    float: right;
    margin: 12%;
    margin-right: 20%;
}

.copyW {
    color: grey;
    font-size: 120%;
    margin-top: 7%;
    margin-bottom: 3%;
}

@media screen and (min-width: 500px)
{
    .landing {
        display: none !important;
        visibility: hidden !important;
    }
}

@media screen and (max-width: 500px) {
    .landing {

    }

    .appstore {

    }

    .copywrite {
        display: block;
        height: 100%;
        max-height: 700px;
    }

    .store {
        display: block;
        margin-top: 12%;
        font-size: 28px;
        margin-bottom: 3%;
    }

    #appleStore {
        width: 200px;
    }

    .row_copyWrite {
        text-align: left;
    }

    .end_list {
        margin-left: 18%;
        margin-top: 14%;
        width: 60%;
        font-size: 135%;
        display: block;
    }

    .end_list h5 {
        font-size: 18px;
    }

    .col-right {
        float: left;
        padding: 0;
        margin-left: 25%;
        margin-top: 8%;
    }

    .copyW {
        font-size: 135%;
        margin-top: 20%;
        margin-bottom: 15%;
        margin-left: 15%;
    }
}

/*.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
*/

/*.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}*/
/*
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@-webkit-keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
*/







