body {
    font-family: 'Poppins', sans-serif;
    position: fixed;
    overflow: hidden;
    background: #000;
}

* {
    -webkit-overflow-scrolling: touch;
}

img[data-lazy-src] {
    will-change: contents
}

.show-desktop {
    display: block !important;
}

.show-mobile {
    display: none !important;
}

@media screen and (max-width: 844px) {
    .show-desktop {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}


.loading_overlay {
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: #000;
    z-index: 99999999999999;
}

.loading_overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.loading_overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading_overlay .logo {
    width: 100%;
    text-align: center;
    top: 30px;
    position: fixed;
}

.loading_spinner {
    width: 100px;
    height: 100px;
    display: inline-block;
    border-width: 5px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: loading_spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes loading_spin {
    100% {
        transform: rotate(360deg);
    }
}

.arrow {
    box-sizing: border-box;
    height: 6vw;
    width: 6vw;
    border-style: solid;
    border-color: white;
    border-width: 0 3px 3px 0;
    transform: rotate(
            45deg
    );
    transition: border-width 150ms ease-in-out;
}

.arrow:hover {
    border-bottom-width: 4px;
    border-right-width: 4px;
}

.bounce-2 {
    animation-name: bounce-2;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    margin: 0 auto 0 auto;
    transform-origin: bottom;
}

@keyframes bounce-2 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


video {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    object-fit: cover;
}

.pin-spacer {
    border: 0 !important;
}


.form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    font-size: 16px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 16px;
    cursor: text;
    top: 20px;
}

label,
.form__field:focus ~ .form__label {
    position: absolute;
    top: 10px;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
}

.form__field:focus ~ .form__label {
    /*color: #009788;*/
}

.form__field:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #009788;
}


.lamp-video-presentation-section #mc_embed_signup {
    padding: 0 50px;
}

#mc_embed_signup.horizontal #mc-embedded-subscribe-form {
    display: flex;
    flex-flow: row nowrap;
}

#mc_embed_signup.vertical #mc-embedded-subscribe-form {
    display: flex;
    flex-flow: column nowrap;
}

#mc_embed_signup #mc-embedded-subscribe-form .submit-button {
    margin-left: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mc_embed_signup #mc-embedded-subscribe-form .submit-button input {
    padding: 20px 60px;
    height: auto;
}

#mc_embed_signup #mc-embedded-subscribe {
    color: #252525;
    background-color: #fef119;
    font-weight: bold;
    border-radius: 50px;
    border: 0;
    padding: 5px 20px;
    text-decoration: none;
    display: flex;
    font-size: 14px;
    height: 32px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#mc_embed_signup #mce-responses {
    text-align: center;
    padding: 0 40px 0 40px;
    width: 100%;
    color: #fef119;
}

#mc_embed_signup .mc-field-group {
    border-radius: 50px;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    padding: 0;
    margin: 0;
}

#mc_embed_signup .mc-field-group label {
    left: 20px;
}


#mc_embed_signup .mc-field-group input {
    border: 0;
    color: #fff;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    padding: 30px 40px 10px 40px;
}

#mc_embed_signup div.mce_inline_error {
    background: transparent !important;
    color: red !important;
    font-weight: normal !important;
    padding: 5px 40px 0 20px !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 14px !important;
}

#mc_embed_signup.grey .mc-field-group input {
    background-color: #3b3b3b;
}

.sign-up-button {
    color: #252525;
    background-color: #fef119;
    font-weight: bold;
    border-radius: 50px;
    border: 0;
    padding: 5px 20px;
    text-decoration: none;
    display: flex;
    font-size: 14px;
    height: 32px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sign-up-button:hover {
    color: #252525;
    background-color: #fef119;
}

.sign-up-button-white {
    background-color: #000000;
    color: #ffffff;
}

.sign-up-button-white:hover {
    background-color: #000000;
    color: #ffffff;
}

.sign-up-button-big {
    font-size: 14px;
    height: 50px;
    max-height: 50px;
    padding: 0 25px;
    cursor: pointer;
}

.join-our-facebook-group-button {
    color: #3b5998;
    background-color: #fff;
    font-weight: bold;
    border-radius: 50px;
    border: 1px solid #3b5998;
    padding: 5px 20px;
    text-decoration: none;
    display: flex;
}

.mb-3 {
    margin-bottom: 3rem;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

.container-fluid, .container-xl {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1280px;
    }
}


@media screen and (max-width: 844px) {
    .container {
        max-width: 1320px;
        width: auto;
    }
}

main {
    /*overflow: scroll;*/
}

img {
    max-width: 100vw;
}

main section {
    min-height: 100vh;
    max-width: 100vw;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
}

.section-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .1;
}

.section-description {
    position: relative;
    z-index: 999;
}

.lamp-video-presentation-section {
    position: relative;
    background-color: #000000;
    color: #fff;
}

.lamp-video-presentation-section .header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    background: transparent;
    z-index: 99999;
    flex-flow: column nowrap;
}

.lamp-video-presentation-section .header .logo {
    padding: 20px;
}

.lamp-video-presentation-section .header .actions {
    padding: 0;
}

.lamp-video-presentation-section .header .actions img {
    width: 400px;
}

.lamp-video-presentation-section .header .counter-wrap {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 20px;
    visibility: hidden;
    transition: visibility 1s ease-in;
}

.lamp-video-presentation-section .header .counter-wrap > div {
    display: flex;
    flex-flow: column nowrap;
    padding: 0 40px;
}

.lamp-video-presentation-section .header .counter-wrap > div .number {
    color: #fef119;
    font-size: 100px;
    font-weight: bold;
    text-shadow: .5px .5px #000;
}

.lamp-video-presentation-section .header .counter-wrap > div .label {
    font-size: 30px;
    text-shadow: .5px .5px #000;
}

@media screen and (max-width: 844px) {

    .lamp-video-presentation-section .header .logo {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .lamp-video-presentation-section {
        position: relative;
        background-color: #000000;
        color: #fff;
        min-height: 95vh;
    }

    .lamp-video-presentation-section .header .actions img {
        width: 70vw;
    }

    .lamp-video-presentation-section .header .counter-wrap {
        padding-top: 10px;
    }

    .lamp-video-presentation-section .header .counter-wrap > div {
        padding: 0 15px;
    }

    .lamp-video-presentation-section .header .counter-wrap > div .number {
        color: #fef119;
        font-size: 40px;
        font-weight: bold;
    }

    .lamp-video-presentation-section .header .counter-wrap > div .label {
        font-size: 18px;
    }

}

.lamp-video-presentation-section .header .logo a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
}

.lamp-video-presentation-section .content {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    flex-flow: column nowrap;
}

.lamp-video-presentation-section .content .promo-text {
    text-align: center;
}

.lamp-video-presentation-section .lamp-video-presentation-section-wrap {
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 50%;
    width: auto;
    height: 100%;
    object-fit: cover;
}

#lamp-video-presentation-desktop {
    display: block;
    visibility: visible;
}

#lamp-video-presentation-mobile {
    display: none;
    visibility: hidden;
}

@media screen and (max-width: 844px) {
    .lamp-video-presentation-section .lamp-video-presentation-section-wrap {
        height: 100vh;
        position: absolute;
        -webkit-transform: translateX(-50%) translateY(0);
        -moz-transform: translateX(-50%) translateY(0);
        -ms-transform: translateX(-50%) translateY(0);
        -o-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(-50%);
        top: 60%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        object-fit: cover;
    }

    #lamp-video-presentation-desktop {
        display: none;
        visibility: hidden;
    }

    #lamp-video-presentation-mobile {
        display: block;
        visibility: visible;
    }

}

/*@media screen  and (orientation: landscape) {*/
/*    body.mobile #lamp-video-presentation-desktop {*/
/*        display: block;*/
/*        visibility: visible;*/
/*    }*/

/*    body.mobile #lamp-video-presentation-mobile {*/
/*        display: none;*/
/*        visibility: hidden;*/
/*    }*/
/*}*/

.lamp-video-presentation-section .desktop-sign-up {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}

.lamp-video-presentation-section .desktop-sign-up .sign-up-text {
    padding: 20px;
}

.lamp-video-presentation-section .desktop-sign-up .sign-up-text h2 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    font-size: 30px;
}

.lamp-video-presentation-section .desktop-sign-up .sign-up-text h2 span {
    color: #fef119;
}

.lamp-video-presentation-section .desktop-sign-up .sign-up-text h5 span {
    color: #fef119;
}

.lamp-video-presentation-section .desktop-sign-up .sign-up-text h5 {
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.lamp-video-presentation-section .desktop-sign-up .sign-up-input iframe {
    width: 600px;
    height: 120px;
    overflow: hidden;
    border: 0;
}

.lamp-video-presentation-section .mobile-sign-up {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35%;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}

.lamp-video-presentation-section .mobile-sign-up .sign-up-text {
    padding: 0 10px;
    text-align: center;
}

.lamp-video-presentation-section .mobile-sign-up .sign-up-text h2 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    font-size: 30px;
}

.lamp-video-presentation-section .mobile-sign-up .sign-up-text h2 span {
    color: #fef119;
}

.lamp-video-presentation-section .mobile-sign-up .sign-up-text h5 span {
    color: #fef119;
}

.lamp-video-presentation-section .mobile-sign-up .sign-up-text h5 {
    margin: 0;
    padding: 0;
}

.lamp-video-presentation-section .mobile-sign-up .sign-up-input iframe {
    width: 350px;
    height: 150px;
    overflow: hidden;
    border: 0;
}

.lamp-video-presentation-section .mobile-sign-up .scroll-down {
    padding-bottom: 50px;
}

@media screen and (max-width: 844px) {
    .lamp-video-presentation-section .desktop-sign-up {
        display: none !important;
    }

    .lamp-video-presentation-section .mobile-sign-up {
        display: flex;
    }
}

.first-all-in-one-smart-lamp-section {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 40px 0;
}

#first-all-in-one-smart-lamp-section-video-desktop {
    width: 900px;
    max-width: 900px;
    height: 500px;
    max-height: 500px;
}

#first-all-in-one-smart-lamp-section-video-mobile {
    height: 40vh;
    max-height: 40vh;
    width: 100vw;
}

.first-all-in-one-smart-lamp-section h1 {
    text-align: center;
    padding: 20px;
    font-weight: bold;
    font-size: 40px;
}

.first-all-in-one-smart-lamp-section .description {
    text-align: center;
    padding: 20px;
    margin: 0;
    color: #3e3e3e;
    font-size: 20px;
}

.first-all-in-one-smart-lamp-section .sign-up-button {
    margin: 20px;
}

.first-all-in-one-smart-lamp-section .kickstarter-image {
    width: 80vw;
    margin-top: 50px;
}

.fall-asleep-naturally-section {
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

#fall-asleep-naturally-section-video-desktop {
    position: absolute;
    top: 0;
    left: 0;
}

#fall-asleep-naturally-section-video-mobile {
    position: absolute;
    top: 0;
    left: 0;
}

.fall-asleep-naturally-section .title {
    margin: 20px;
    font-weight: bold;
    font-size: 60px;
}

@media screen and (max-width: 844px) {
    .fall-asleep-naturally-section .title {
        font-size: 40px;
    }
}

.fall-asleep-naturally-section .subtitle {
    font-size: 20px;
    color: #CFCFCF;
    margin: 20px;
}

.wake-up-refreshed-section {
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

#wake-up-refreshed-section-video-desktop {
    position: absolute;
    top: 0;
    left: 0;
}

#wake-up-refreshed-section-video-mobile {
    position: absolute;
    top: 0;
    left: 0;
}

.wake-up-refreshed-section .title {
    margin: 20px;
    font-weight: bold;
    font-size: 60px;
}

@media screen and (max-width: 844px) {
    .wake-up-refreshed-section .title {
        font-size: 40px;
    }
}

.wake-up-refreshed-section .subtitle {
    font-size: 20px;
    margin: 20px;
    color: #CFCFCF;
}


.benefits-section {
    border: 1px solid #000;
    background: url("assets/benefits.webp") center, #000000;
    justify-content: center;
    align-items: flex-start;
    background-size: cover;
    padding: 40px 0;
    background-repeat: no-repeat;
}

.benefits-section .container {
    display: flex;
    justify-content: center;
    flex-flow: column nowrap;
}

.benefits-section .title {
    color: #ffffff;
    font-weight: bold;
    font-size: 60px;
    margin: 40px 20px;
}

.benefits-section .sign-up-form iframe {
    width: 500px;
    height: 300px;
    border: 0;
}

.benefits-section .free-aroma-signup {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 50px;
}

.benefits-section .free-aroma-signup .recipient-image img {

}

.benefits-section .free-aroma-signup .free-aroma-text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.benefits-section .free-aroma-signup .free-aroma-text .free-label {
    color: #fef119;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
}

.benefits-section .free-aroma-signup .free-aroma-text .prize-label {
    color: #ffffff;
    font-size: 25px;
    text-align: center;
}

@media screen and (max-width: 844px) {
    .benefits-section .container .title {
        font-size: 40px;
    }

    .benefits-section .free-aroma-signup {
        padding-left: 25px;
        padding-right: 25px;
    }

    .benefits-section .sign-up-form {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .benefits-section .sign-up-form iframe {
        width: 90vw;
    }
}

.benefits-section .aroma-details p {
    text-align: start;
    color: #ffffff;
    font-size: 20px;
    margin: 30px 20px;
}

@media screen and (max-width: 844px) {

    .benefits-section {
        background: url("./assets/benefits-mobile.webp") top center, #000000;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .benefits-section .container {
        z-index: 999;
    }

    .benefits-section .container .title {
        padding: 10px 0 10px 10px;
        margin: 30px 0 0 0;
    }

    .benefits-section .aroma-details p {
        margin: 30px 0 0 0;
    }

    .benefits-section .container p {
        font-size: 20px;
        max-width: 99vw;
        color: #ffffff;
        padding: 10px 0 10px 10px;
    }

    .benefits-section .container .display-4 {
        padding-left: 1rem;
    }
}

.six-slots-scent-section {
    border: 1px solid #000;
    background-color: #000000;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;
}

.six-slots-scent-section .title {
    margin: 20px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 60px;
}

@media screen and (max-width: 844px) {
    .six-slots-scent-section .title {
        font-size: 40px;
    }
}

.six-slots-scent-section .aroma-slots {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

#six-slots-scent-section-video-mobile {
    object-fit: contain;
    height: auto;
    /*width: 90vw;*/
}

#six-slots-scent-section-video-desktop {
    object-fit: contain;
    height: 80vh;
}

.expanded-lamp-section {
    border: 1px solid #000;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #000000;
    padding: 40px 0;
}

.expanded-lamp-section .title {
    margin: 20px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 60px;
    padding: 0;
}

@media screen and (max-width: 844px) {
    .expanded-lamp-section .title {
        font-size: 40px;
    }
}

.expanded-lamp-section .subtitle {
    margin: 30px;
    text-align: center;
    font-size: 1rem;
    color: #CFCFCF;
}

@media screen and (max-width: 844px) {
    .expanded-lamp-section .subtitle {
        margin: 0 10px 30px 10px;
    }
}

.expanded-lamp-section .expanded-lamp-desktop {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-top: 20px;
}

#expanded-lamp-section-video-desktop {
    max-height: none;
    height: auto;
}

#expanded-lamp-section-video-mobile {
    max-height: none;
    height: auto;
}

.expanded-lamp-section .expanded-lamp-grid {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

.expanded-lamp-section .expanded-lamp-grid .expanded-lamp-grid-item {
    width: 20%;
    padding: 25px;
}

.expanded-lamp-section .expanded-lamp-grid .expanded-lamp-grid-item .expanded-text-title {
    font-weight: bold;
    font-size: 20px;
    padding: 0.5rem 0;
}

.expanded-lamp-section .expanded-lamp-grid .expanded-lamp-grid-item .expanded-text-subtitle {
    font-size: 1rem;
    color: #CFCFCF;
}

@media screen and (max-width: 844px) {

    .expanded-lamp-section {
        max-height: 100vh;
    }


    #expanded-lamp-section-video-mobile {
        max-height: 50vh;
        object-position: bottom;
    }

    .expanded-lamp-section .expanded-lamp-grid {
        max-height: 40vh;
        overflow-y: scroll;
        padding-top: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .expanded-lamp-section .expanded-lamp-grid .expanded-lamp-grid-item .expanded-text-title {
        padding: 0.1rem 0;
    }

    .expanded-lamp-section .expanded-lamp-grid .expanded-lamp-grid-item {
        width: 80%;
        padding: 10px;
    }

}

.high-quality-audio-section {
    border: 1px solid #000;
    height: 100%;
    width: auto;
    justify-content: flex-end;
    align-items: center;
    color: #ffffff;
    padding: 40px 0;
}

#high-quality-audio-section-video-desktop {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#high-quality-audio-section-video-mobile {
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    max-height: 50vh;
}

.high-quality-audio-section .desktop-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-flow: row nowrap;
}

.high-quality-audio-section .desktop-wrap .audio-lamp img {
    height: 90vh;
    position: absolute;
    top: 50px;
    left: 20%;
}

@media screen and (max-width: 1755px) {
    .high-quality-audio-section .desktop-wrap .audio-lamp img {
        left: 10%;
    }
}

@media screen and (max-width: 1250px) {
    .high-quality-audio-section .desktop-wrap .audio-lamp img {
        left: 0;
    }

    .high-quality-audio-section .desktop-wrap .audio-description {
        width: 80%;
    }
}

.high-quality-audio-section .desktop-wrap .audio-description {
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    padding-bottom: 8rem;
}

.high-quality-audio-section .desktop-wrap .title {
    font-weight: bold;
    font-size: 60px;
    margin: 20px;
}

.high-quality-audio-section .desktop-wrap .subtitle {
    font-size: 20px;
    color: #CFCFCF;
    margin: 20px;
}

.high-quality-audio-section .mobile-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}

.high-quality-audio-section .mobile-wrap .wave-animation {
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.high-quality-audio-section .mobile-wrap .wave-animation .audio-image {
    max-height: 50vh;
}

.high-quality-audio-section .mobile-wrap .wave-animation .audio-image img {
    height: 50vh;
}

.high-quality-audio-section .mobile-wrap .audio-description {
    padding: 3rem 1rem;
    max-height: 50vh;
}

.high-quality-audio-section .mobile-wrap .audio-description .subtitle {
    font-size: 20px;
    color: #CFCFCF;
    margin: 20px;
}

.high-quality-audio-section .mobile-wrap .title {
    font-weight: bold;
    font-size: 60px;
    margin: 20px;
}

@media screen and (max-width: 844px) {
    .high-quality-audio-section .mobile-wrap .title {
        font-size: 40px;
    }
}

@media screen and (max-width: 844px) {
    .high-quality-audio-section {
        justify-content: center;
    }
}

.productivity-way-of-life-section {
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

#productivity-way-of-life-section-video-desktop {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#productivity-way-of-life-section-video-mobile {
    height: 50vh;
    max-height: 50vh;
}

.productivity-way-of-life-section .title {
    margin: 20px;
    font-weight: bold;
    font-size: 60px;
    color: #ffffff;
}

.productivity-way-of-life-section .subtitle {
    font-size: 20px;
    color: #CFCFCF;
    margin: 20px;
}

@media screen and (max-width: 844px) {

    .productivity-way-of-life-section .title {
        font-size: 40px;
    }

    .productivity-way-of-life-section .subtitle {
        font-size: 20px;
        color: #CFCFCF;
        margin: 20px;
    }

    .productivity-way-of-life-section .section-description {
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.meditation-creates-happiness {
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

#meditation-creates-happiness-video-desktop {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#meditation-creates-happiness-video-mobile {
    max-height: 50vh;
    height: 50vh;
}

.meditation-creates-happiness .title {
    margin: 20px;
    font-weight: bold;
    font-size: 60px;
    color: #ffffff;
}

.meditation-creates-happiness .subtitle {
    font-size: 20px;
    color: #CFCFCF;
    margin: 20px;
}

@media screen and (max-width: 844px) {

    .meditation-creates-happiness .title {
        font-size: 40px;
    }

    .meditation-creates-happiness .subtitle {
        font-size: 20px;
        color: #CFCFCF;
        margin: 20px;
    }

    .meditation-creates-happiness .section-description {
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


.light-of-my-life {
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}


#light-of-my-life-video-desktop {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#light-of-my-life-video-mobile {
    height: 50vh;
    max-height: 50vh;
}

.light-of-my-life .title {
    margin: 20px;
    font-weight: bold;
    font-size: 60px;
    color: #ffffff;
}

.light-of-my-life .subtitle {
    font-size: 20px;
    color: #CFCFCF;
    margin: 20px;
}

@media screen and (max-width: 844px) {

    .light-of-my-life .title {
        font-size: 40px;
    }

    .light-of-my-life .subtitle {
        font-size: 20px;
        color: #CFCFCF;
        margin: 20px;
    }

    .light-of-my-life .section-description {
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


.aroma-recipient-section {
    border: 1px solid #000;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    padding: 40px 0;
}

.aroma-recipient-section .title {
    margin: 20px;
    font-weight: bold;
    font-size: 60px;
}

@media screen and (max-width: 844px) {
    .aroma-recipient-section .title {
        font-size: 40px;
    }
}

.aroma-recipient-section .aroma-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.aroma-recipient-section .aroma-wrap .aroma-item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.aroma-recipient-section .aroma-wrap .aroma-item {
    position: relative;
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}

.aroma-recipient-section .aroma-wrap .aroma-item:hover {
    -webkit-transform: scale(1.1); /* Safari and Chrome */
    -moz-transform: scale(1.1); /* Firefox */
    -ms-transform: scale(1.1); /* IE 9 */
    -o-transform: scale(1.1); /* Opera */
    transform: scale(1.1);
    z-index: 9999;
    position: relative;
}


.aroma-recipient-section .aroma-wrap .aroma-item img {
    width: 50%;
    padding: 20px;
}

.aroma-recipient-section.colors .aroma-wrap .aroma-item img {
    width: 80%;
}

.aroma-recipient-section .aroma-wrap .aroma-item .aroma-description {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
}

.aroma-recipient-section .aroma-wrap .aroma-item .aroma-description .aroma-title {
    font-size: 30px;
    font-weight: bold;
    margin: 20px;
}

.aroma-recipient-section .aroma-wrap .aroma-item .aroma-description .aroma-content {
    font-size: 20px;
    color: #CFCFCF;
    margin: 20px;
}

@media screen and (max-width: 844px) {

    .aroma-recipient-section .display-4 {
        margin: 5rem 0;
    }

    .aroma-recipient-section .aroma-wrap {
        flex-flow: column nowrap;
    }

    .aroma-recipient-section .aroma-wrap .aroma-item .aroma-description .aroma-title {
        margin: 0 20px 20px 20px;
    }

    .aroma-recipient-section .aroma-wrap .aroma-item .aroma-description .aroma-content {
        margin: 0 20px 40px 20px;
    }

    .aroma-recipient-section .aroma-wrap .aroma-item img {
        width: 50vw;
    }

    .aroma-recipient-section.colors .aroma-wrap .aroma-item img {
        width: 80vw;
    }

}

.personalize-your-own-section {
    border: 1px solid #000;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
}

.personalize-your-own-section .title {
    font-weight: bold;
    font-size: 60px;
    margin: 20px 20px 0 20px;
}

.personalize-your-own-section .subtitle {
    font-size: 20px;
    color: #CFCFCF;
}

.personalize-your-own-section .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}

.personalize-your-own-section .wrap img {
    max-height: 80vh;
}

.personalize-your-own-section .wrap .personalize-description {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column nowrap;
}

@media screen and (max-width: 844px) {

    .personalize-your-own-section {
        padding: 40px 0;
    }

    .personalize-your-own-section .title {
        margin: 20px 20px 0 20px;
    }

    .personalize-your-own-section .wrap .personalize-description {
        align-items: center;
    }

}

.personalize-your-own-section .wrap .personalize-description .cycle-word {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0 1rem;
    color: #000;
    font-weight: bold;
    margin: 0 20px 20px 20px;
}

.personalize-your-own-section .wrap .personalize-description p {
    text-align: start;
    margin: 20px;
}

.personalize-your-own-section .wrap img {
    max-width: 80%;
}

@media screen and (max-width: 844px) {

    .personalize-your-own-section .wrap {
        flex-flow: column nowrap;
    }

    .personalize-your-own-section .aroma-wrap {
        flex-flow: column nowrap;
    }

    .personalize-your-own-section .title {
        font-size: 40px;
    }

    .personalize-your-own-section .wrap .personalize-description p {
        text-align: center;
    }

}

.feedback-section {
    border: 1px solid #ffffff;
    background: url("./assets/quote.svg") 15% 15%, #ffffff;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: 15%;
    padding: 40px 0;
}

.feedback-section .feedback-item {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    display: none;
}

.feedback-section .feedback-item > img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.feedback-section .feedback-item .avatar {
    width: 150px;
}

.feedback-section .feedback-item .name {
    font-weight: 500;
    margin: 20px;
    font-size: 24px;
}

.feedback-section .feedback-item .feedback {
    margin: 20px;
    color: #181818;
    text-align: center;
    font-size: 30px;
    font-style: italic;
    min-height: 200px;
}

.feedback-section .feedback-item .feedback span {
    font-size: 2rem;
    color: #181818;
}

.feedback-section .feedback-arrow {
    display: flex;
    flex-flow: row nowrap;
}

.feedback-section .feedback-arrow img {
    cursor: pointer;
    margin: 20px;
    width: 25px;
}


.multiple-lamp-control-every-room-section {
    border: 1px solid #ffffff;
    display: flex;
    flex-flow: row wrap;
    background: #ffffff;
    padding: 40px 0;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}

.multiple-lamp-control-every-room-section .description {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.multiple-lamp-control-every-room-section .description .title {
    font-weight: bold;
    font-size: 60px;
    padding: 20px 40px;
}

.multiple-lamp-control-every-room-section .description .subtitle {
    font-size: 20px;
    color: #181818;
    padding: 20px 40px;
}

.multiple-lamp-control-every-room-section .description .sign-up-button {
    margin: 20px 40px;
}

.multiple-lamp-control-every-room-section .dimension-table {
    width: 50%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.multiple-lamp-control-every-room-section .table {
    width: 670px;
    border-collapse: collapse;
}

.multiple-lamp-control-every-room-section .table th {
    width: 33%;
}

.multiple-lamp-control-every-room-section .table td, th {
    text-align: left;
    padding: 8px;
}

.multiple-lamp-control-every-room-section .table tr:nth-child(even) {
    background-color: #ebebeb;
}

.multiple-lamp-control-every-room-section .table td {
    border: solid 0 #ebebeb;
    padding: 10px;
}

.multiple-lamp-control-every-room-section .dimension-table img {
    width: 670px;
}

.multiple-lamp-control-every-room-section iframe {
    width: 450px;
    height: 200px;
    border: 0;
    padding: 20px 40px;
}

.multiple-lamp-control-every-room-section .free-aroma-signup {
    display: flex;
    flex-flow: row nowrap;
    padding: 50px 40px 20px 40px;
}

.multiple-lamp-control-every-room-section .free-aroma-signup .recipient-image img {

}

.multiple-lamp-control-every-room-section .free-aroma-signup .free-aroma-text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.multiple-lamp-control-every-room-section .free-aroma-signup .free-aroma-text .free-label {
    color: #000000;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
}

.multiple-lamp-control-every-room-section .free-aroma-signup .free-aroma-text .prize-label {
    color: #000000;
    font-size: 25px;
    text-align: center;
}

@media screen and (max-width: 844px) {

    .multiple-lamp-control-every-room-section {
        flex-flow: column nowrap;
        align-items: center;
    }

    .multiple-lamp-control-every-room-section .image {
        padding-top: 2rem;
        width: 100%;
    }

    .multiple-lamp-control-every-room-section .description .title {
        font-size: 40px;
        padding: 20px;
    }

    .multiple-lamp-control-every-room-section .description .subtitle {
        padding: 20px;
    }

    .multiple-lamp-control-every-room-section .description .sign-up-button {
        margin: 20px;
    }

    .multiple-lamp-control-every-room-section iframe {
        padding: 0;
        width: 90vw;
    }

    .multiple-lamp-control-every-room-section .dimension-table {
        width: 100%;
    }

    .multiple-lamp-control-every-room-section .dimension-table .show-mobile {
        text-align: center;
        width: 100%;
    }

    .multiple-lamp-control-every-room-section .dimension-table .show-mobile img {
        width: 90%;
    }

    .multiple-lamp-control-every-room-section .table {
        width: 90%;
    }

}

.multiple-lamp-control-every-room-section .image img {
    width: 100%;
}

.different-colors {
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    padding: 40px 0;
}

.different-colors .title {
    margin: 10rem 0;
    font-weight: bold;
    font-size: 2.5rem;
}

.different-colors .lamp-wrap {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.different-colors .lamp-wrap .lamp-item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.different-colors .lamp-wrap .lamp-item {
    position: relative;
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}

.different-colors .lamp-wrap .lamp-item:hover {
    -webkit-transform: scale(1.1); /* Safari and Chrome */
    -moz-transform: scale(1.1); /* Firefox */
    -ms-transform: scale(1.1); /* IE 9 */
    -o-transform: scale(1.1); /* Opera */
    transform: scale(1.1);
    z-index: 9999;
    position: relative;
}


.different-colors .lamp-wrap .lamp-item img {
    width: auto;
}

.different-colors .lamp-wrap .lamp-item .aroma-description {
    padding-top: 2rem;
}

.footer-section {
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: #ffffff;
}

.footer-section iframe {
    width: 450px;
    height: 200px;
    border: 0;
}

.footer-section .wrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.footer-section .wrap h1 {
    text-align: center;
    margin: 0.5rem;
    padding: 0;
    font-weight: bold;
    font-size: 40px;
}

.footer-section .wrap .show-mobile h3 {
    text-align: center;
    margin: 0.5rem;
    padding: 0;
    font-weight: bold;
    padding-top: 60px;
}

.footer-section .wrap .description {
    text-align: center;
    padding: 3rem 0;
    margin: 0;
    color: #3e3e3e;
    font-size: 1.1rem;
}

.footer-section .wrap .sign-up-button {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-section .sign-up-text {
    padding: 0 10px;
    text-align: center;
    padding-top: 100px;
}

.footer-section .show-mobile .sign-up-text h1 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    font-size: 25px;
}

.footer-section .show-mobile .sign-up-text h2 {
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    font-size: 25px;
}

.footer-section .show-mobile .sign-up-text h5 {
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.footer-section .show-desktop .sign-up-text h1 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    font-size: 60px;
}

.footer-section .show-desktop .sign-up-text h2 {
    /*font-weight: bold;*/
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    font-size: 40px;
}

.footer-section .show-desktop .sign-up-text h5 {
    margin: 0;
    padding: 0;
    font-size: 30px;
}

.footer-section .footer {
    bottom: 0;
    width: 100%;
    background-color: #000000;
    padding: 3rem 0;
    color: #fff;
}

.footer-section .footer .zenna-lamp-text {
    font-size: 20px;
}

.footer-section .footer .zenna-lamp-text span {
    font-weight: bold;
}

.footer-section .footer .greentek-made-with-love {
    padding-top: 20px;
    color: #ffffff;
}

.footer-section .footer .greentek-made-with-love a {
    color: #ffffff;
}

.footer-section .footer .greentek-made-with-love span {
    color: #e25555;
    font-size: 20px;
}

.footer-section .footer .email-address {
    padding-top: 20px;
    color: #ffffff;
}

.footer-section .footer .email-address a {
    color: #ffffff;
}

.footer-section .free-aroma-signup {
    display: flex;
    flex-flow: row nowrap;
    padding: 50px 40px 20px 40px;
}

.footer-section .free-aroma-signup .recipient-image img {

}

.footer-section .free-aroma-signup .free-aroma-text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.footer-section .free-aroma-signup .free-aroma-text .free-label {
    color: #000000;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
}

.footer-section .free-aroma-signup .free-aroma-text .prize-label {
    color: #000000;
    font-size: 25px;
    text-align: center;
}

.footer .ks-logo img {
    width: 500px;
    padding-top: 200px;
}

.footer .counter-wrap {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 50px;
    visibility: hidden;
    transition: visibility 1s ease-in;
    justify-content: center;
    align-items: center;
    padding-bottom: 200px;
}

.footer .counter-wrap > div {
    display: flex;
    flex-flow: column nowrap;
    padding: 0 40px;
}

.footer .counter-wrap > div .number {
    color: #fef119;
    font-size: 100px;
    font-weight: bold;
    text-shadow: .5px .5px #000;
}

.footer .counter-wrap > div .label {
    font-size: 30px;
    text-shadow: .5px .5px #000;
}

@media screen and (max-width: 844px) {
    .footer-section iframe {
        width: 90vw;
    }

    .footer .counter-wrap {
        padding-top: 50px;
    }

    .footer .counter-wrap > div {
        padding: 0 10px;
    }

    .footer .counter-wrap > div .number {
        color: #fef119;
        font-size: 40px;
        font-weight: bold;
    }

    .footer .counter-wrap > div .label {
        font-size: 18px;
    }

    .footer .ks-logo img {
        width: 90vw;
    }

}

/* landscape */
@media screen  and (orientation: landscape) {

    /*    body.mobile main section {*/
    /*        min-height: 800px;*/
    /*    }*/
    /*    body.mobile .expanded-lamp-section .expanded-lamp-mobile .elements-description {*/
    /*        max-height: 800px;*/
    /*    }*/
    /*    */
    /*    body.mobile .aroma-recipient-section .aroma-wrap .aroma-item img {*/
    /*        width: 50vh;*/
    /*    }*/
    /*    body.mobile .aroma-recipient-section.colors .aroma-wrap .aroma-item img {*/
    /*        width: 80vh;*/
    /*    }*/
    body.mobile video {
        display: block !important;
        visibility: visible !important;
    }

    body.mobile .show-mobile {
        display: block !important;
    }

    body.mobile .multiple-lamp-control-every-room-section {
        flex-flow: column nowrap;
    }

    body.mobile video {
        min-height: 500px !important;
    }

}

