@font-face {
    font-family: WestminsterGotisch;
    src: url(../fonts/WestminsterGotisch.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: Almendra;
    src: url(../fonts/Almendra-Regular.otf);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Roboto;
    color: white;
    line-height: 1.5;
    letter-spacing: 1px;
    background: black;
}

.home-banner {
    background: url(../img/banner.png) center top no-repeat, url(../img/star-bg.jpg) center bottom no-repeat, black;
    background-size: contain;
}

header nav {
    text-transform: uppercase;
}

.westmins {
    font-family: WestminsterGotisch;
}

.almendra {
    font-family: Almendra;
}

.txt-center {
    text-align: center;
}

.pt-30 {
    padding-top: 30px;
}

.p-5 {
    padding: 5px;
}

.p-15 {
    padding: 15px;
}

.p-30 {
    padding: 30px;
}

.m-0 {
    margin: 0;
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-7 {
    margin-bottom: 7px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-30 {
    margin-right: 30px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-180 {
    margin-top: 180px;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.w-30 {
    width: 30px;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60p {
    width: 60%;
}

.w-100 {
    width: 100%;
}

.w-200 {
    width: 200px;
}

.w-300 {
    width: 300px;
}

.w-400 {
    width: 400px;
}

.container {
    max-width: 1000px;
}

a {
    text-decoration: none;
    color: white;
}

.em08 {
    font-size: 0.8em;
}

.em1 {
    font-size: 1em;
}

.em1-3 {
    font-size: 1.3em;
}

.em2 {
    font-size: 2em;
}

.em3 {
    font-size: 3em;
}

.em4 {
    font-size: 4em;
}

.bold {
    font-weight: bold;
}

.transparent {
    color: transparent;
}

.gradient-gold {
    background: -webkit-linear-gradient(0deg, #E4C396, #F3E6D4, #F9E0C2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-shadow {
    text-shadow: 5px 5px black;
}

.line-height-08 {
    line-height: 0.8;
}

.uppercase {
    text-transform: uppercase;
}

.card3::before {
    content: url(../img/3card-before.svg);
}

.card3::after {
    content: url(../img/3card-after.svg);
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.banner-heading {
    top: -21px;
}

.gradient-border {
    background: transparent;
    border-style: solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #E4C396, #F3E6D4, #F9E0C2);
}

.border-width-1 {
    border-width: 1px;
}

.border-width-2 {
    border-width: 2px;
}

.input-container::before {
    content: url(../img/input-before.svg);
}

.input-container::after {
    content: url(../img/input-after.svg);
}

input {
    font-family: Roboto;
}

.subtitle1::before {
    content: url(../img/subtitle-before.svg);
    padding: 0 5px 0 0;
}

.subtitle1::after {
    content: url(../img/subtitle-after.svg);
    padding: 0 0 0 5px;
}

.white {
    color: white;
}

.deck-cards div.active {
    opacity: 1;
}

.menu-toggle {
    width: 20px;
    height: 17px;
    background: url(../img/menu.svg);
}

.max-width-50 {
    max-width: 50px;
}

.max-width-150 {
    max-width: 150px;
}

.min-width-200 {
    min-width: 200px;
}

.opacity-50 {
    opacity: 0.5;
}

input[type="search"] {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 15px;
}

.reading::before {
    content: url(../img/reading.svg);
}

.reading {
    margin: 0 1%;
}

button:hover,
a:hover {
    cursor: pointer;
    opacity: 0.5;
    transition: 0.5s;
}

body.light,
body.light #top-menu {
    color: black;
    background: white;
}

body.light a,
body.light select {
    color: black;
}

svg {
    fill: white;
}

body.light svg {
    fill: black;
}

.product {
    width: 33.33%;
}

.product:hover {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.5s;
}

* {
    box-sizing: border-box;
}

.line-through {
    text-decoration: line-through;
}

@media screen and (min-width: 1500px) {
    .home-banner {
        background: url(../img/banner.png) center top no-repeat, url(../img/star-bg-lg.jpg) center bottom no-repeat, black;
        background-size: contain;
    }
}

@media screen and (max-width: 992px) {
    .mt-180 {
        margin-top: 80px;
    }

    .em2 {
        font-size: 1.5em;
    }

    .em4 {
        font-size: 3em;
    }

    .w-400 {
        width: 300px;
    }

    .p-15 {
        padding: 10px;
    }

    .readings {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .reading {
        width: 48%;
        margin: 0 1% 30px 0;
    }

    .signup-form.d-flex {
        display: block;
    }

    .signup-form .w-50 {
        width: 100%;
    }
    
    #all-cards {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .em3 {
        font-size: 2.5em;
    }

    .product {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .product {
        width: 100%;
    }
}


@media screen and (max-width: 480px) {
    .pt-30 {
        padding-top: 15px;
    }

    header nav .pr-30 {
        padding-right: 10px;
    }

    .em1-3 {
        font-size: 1em;
    }

    header .w-400 {
        max-width: 200px;
    }

    .em4 {
        font-size: 2em;
    }

    .em2 {
        font-size: 1.2em;
    }

    .pos-rel .em4 {
        font-size: 3em;
    }

    .mt-50 {
        margin-top: 30px;
    }

    .mt-180 {
        margin-top: 40px;
    }

    .shuffle-btn {
        width: 50px;
    }

    .menu-toggle.close-btn {
        background: url(../img/close.svg);
    }

    .card3::before {
        content: url(../img/3card-before-mobile.svg);
    }

    .card3::after {
        content: url(../img/3card-after-mobile.svg);
    }

    .reading {
        width: 100%;
        margin: 0 0 30px;
    }

    .signup-form .w-300 {
        width: 150px;
    }
}