@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
:root {
    --main-yellow: #edb311;
    --main-bg-color: #242424;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
html, body {
    height: 100%;
    width: 100%;
    background-color: var(--main-bg-color);
}
#site {
    width:100%;
    height: auto;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "header"
                         "main"
                         "footer";

}
#site > header {
    grid-area: header;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 50px;
    grid-template-areas: "logo navMenu quickBar";
    color: white;
    padding: 20px;
    border-bottom-width: 1px;
    border-bottom: #181818;
    border-bottom-style: solid;
}
#navMenuContainer > nav {
    width: fit-content;
    margin: 0 auto;
    font-weight: 500;
}
#navMenuContainer > nav span {
    margin-left: 25px;
}
#navMenuContainer > nav span:first-child {
    margin-left: 0;
}
#logo {
    grid-area: logo;
    display: flex;
    align-items: center;
}
#logo img {
    width: 32px;
}
#navMenuContainer {
    grid-area: navMenu;
    display: flex;
    align-items: center;
}
#quickBar {
    grid-area: quickBar;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
#quickBar span {
    margin-left: 5px;
}
#quickBar span:first-child {
    margin-left: 0;
}
.searchIcon {
    height: 25px;
    width: 25px;
    background:  url("../images/search.svg");
    background-size: 25px 25px;
    display: block;
}
.cartIcon {
    height: 25px;
    width: 25px;
    background:  url("../images/cart-fill.svg");
    background-size: 25px 25px;
    display: block;
}
.calendarButton {
    background-color: #ffffff;
    border-radius:  20px;
    padding: 5px 15px 5px 15px;
    color: var(--main-bg-color);
    font-weight: 400;
    font-size: small;
}
.calendarPlusIcon {
    height: 12px;
    width: 12px;
    background:  url("../images/calendar-plus.svg");
    background-size: 12px 12px;
    display: inline-block;
    margin: 0 10px;
}
.userIcon {
    height: 28px;
    width: 28px;
    background: url("../images/person-circle.svg");
    background-size: 28px 28px;
    display: block;
    margin-left: 10px !important;
}
#quantumTherapyWrapper {
    height: auto;
    width: 100%;
    background: url("../images/banner-bg.png");
    padding: 75px 0;
    
}
#quantumTherapy {
    height: auto;
    width: fit-content;
    margin: 0 auto;
    color: #FFF;
    
}
.blocked {
    display: block;
}
#quadImageContainer {
    margin-top: 15px;
}
.spinningTorus img {
    max-width: 125px;
}
.link {
    text-decoration: none;
    color: var(--main-yellow);
}
#coherenceWrapper {
    height: auto;
    width: 100%;
    background: url("../images/features-bg.png");
    padding: 50px 0 75px 0;
    
}
#coherence {
    height: auto;
    width: fit-content;
    margin: 0 auto;
    color: #FFF;
    
}
#coherenceImageContainer {
    height: auto;
    width: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    margin-top: 50px !important;
}
.coherenceImage, .coherenceText {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.coherenceImage img {
    width: 48px;
}
.coherenceText {
    margin-top: 25px;
}
.centeredText {
    text-align: center;
}
#eventsWrapper {
    height: auto;
    width: 100%;
    background: url("../images/event-bg.png");
    padding: 50px 0;
    
}
#eventsContainer {
    height: auto;
    width: fit-content;
    margin: 0 auto;
    color: #FFF;
    
}
#eventImage {
    margin: 0 auto;
    width: fit-content;
    display: block;
}
#quadContainerWrapper {
    height: auto;
    width: 100%;
    background-color: #FFF;
}
#quadContainer {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
#quadContainer span:nth-of-type(odd){
    background-color: #000;
    color: #FFF;
}
#quadContainer span:nth-of-type(even){
    background-color: #fbfafe;
}
#quadContainer span {
    margin: 5px;
}
#quadContainer span:first-child, #quadContainer span:nth-child(2){
    margin-bottom: 0px !important;
}
#quadContainer span * {
    margin-top: 15px;
}
#quadContainer span img {
    max-width: 200px;
}
#appWrapper {
    height: auto;
    width: 100%;
    background: url("../images/explore-bg.png");
    
}
#appContainer {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "leftSide rightSide";
    padding: 50px 20px 50px 20px;
    max-width: 90vw;
    margin: 0 auto;
    
}
#leftSide {
    grid-area: leftSide;
    color: #FFF;
}
#leftSide img {
    max-width: 200px;
}
#leftSide h1 {
    margin-bottom: 50px;
}
#rightSide {
    grid-area: rightSide;
    text-align: center;
}
#rightSide img {
    max-width: 300px;
}
.dualButtonContainer {
    background: rgba(255, 255, 255, 0.5);
    width: fit-content;
    padding: 5px;
    border-radius: 10px;
}
#subscribeWrapper {
    height: auto;
    width: 100%;
    background: url("../images/pexels-philippe-donn-1169754_1.jpg");
    
}
#subscribeContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    color: #fff;
    padding: 50px 20px 50px 20px;
    max-width: 90vw;
    margin: 0 auto;
    width: 100%;
}
#subscribeContainer span:first-child {
    display: grid;
    align-content: center;
}
#subscribeContainer span:nth-child(2) {
    display: grid;
    align-content: center;
    width: fit-content;
    margin: 0 auto;
}
#subscribeContainer h1, #subscribeContainer p {
    margin-bottom: 50px;
}
#site > footer {
    height: 400px;
}
#site > footer hr {
    float: bottom;
    clear: both;
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
#footerContainer {
    position:absolute;
    bottom: 0;
    width: 100%;
    padding: 25px 20px 25px 20px;
    color: #fff;
    max-width: 75vw;
    left: 50%;
    transform: translate(-50%);
}
p {
    font-size: 14px;
}

@media screen and (min-width: 1920px) {
    /* CSS code to apply to screens 1920x1080 or higher */
    #subscribeContainer, #appContainer {
        max-width: 75vw;
    }
}
#quantumTherapyWrapper, #coherenceWrapper, #eventsWrapper, #appWrapper, #subscribeWrapper {
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media (max-width: 485px) {
    /* Your CSS rules here */
    video {
        max-width: 150px;
        max-height: 150px;
    }
}