@import url('https://fonts.googleapis.com/css2?family=Rasa:wght@300;400;500;600;700&display=swap');

:root {
    --mred: #79242f;
    --lred: #c53a4c;
    --dred: #2c0d11;
    --textcolor: #86744e;
    --lgold: #d2b868;
    --mgold: #7b704f;
    --dgold: #2e2a1d;
    --grey: #2c2c2c;
    --white: #ffffff;
    --silver: #e0e0e0;
    --lsilver: #e0e0e07c;
    --borders: #d1c5b9;
    --spadding: 30px;
    --npadding: 50px;
    --lpadding: 100px;
    --nradius: 20px;
    --lradius: 50px;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f6f1ea;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    margin: 4px;
    border: 4px solid #86744e;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #86744e transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

a:link {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

a:active {
    color: inherit;
    text-decoration: none;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: silver;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: silver;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: silver;
}

body {
    font-family: 'Rasa',
        serif;
    color: var(--textcolor) !important;
    font-weight: 300;
    /* background-color: white; */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.text-capit {
    text-transform: uppercase;
}

.bg-tile {
    background-image: url("../media/bgtile.png");
    background-position: center;
    background-repeat: repeat;
    background-size: 150px;
}

.bg-offwhite {
    background-color: #f6f1ea;
}

.bg-silver {
    background-color: var(--lsilver);
}

.jumbo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-screen {
    width: 100%;
    height: 100vh;
}

.whitebg {
    background-color: var(--white);
}

.spacer {
    height: var(--lpadding);
}

.center-box {
    display: grid;
    place-items: center;
}

.text-box {
    padding: var(--lpadding) var(--lpadding);
}

.chap-text-box {
    padding: var(--spadding) var(--lpadding);
}

.zoomed-img {
    width: 100%;
    transition: all 0.7s ease;
    margin-bottom: 15px;
}

/* .zoomed-img:hover {
    transform: scale(1.05);
} */

.zoomed-box:hover .zoomed-img {
    transform: scale(1.05);
}

.video-thumb-container {
    transition: all 1s linear;
    overflow: hidden;
}

.zoom-thumb {
    width: 100%;
    transition: all 0.7s ease;
}

.zoom-thumb:hover {
    transform: scale(1.05);
}

.footer {
    background-color: var(--borders);
    padding: var(--npadding);
}

.lity-iframe-container {
    overflow: hidden;
}

hr {
    margin: 0px;
    opacity: 0.7;
}

.player-box {
    padding: var(--spadding) var(--npadding);
    border-bottom: 1px solid var(--borders);
    position: sticky;
    top: 0;
}

.thumb-player-box {
    padding: var(--spadding) var(--npadding);
    position: sticky;
}

.b-player-box {
    padding: var(--spadding) var(--npadding);
    border-top: 1px solid var(--borders);
    position: sticky;
    top: 0;
}

.chap-img {
    height: 100vh;
    position: sticky;
    top: 0;
}

.shadow-top {
    -webkit-box-shadow: 0px -8px 30px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -8px 30px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -8px 30px 15px rgba(0, 0, 0, 0.2);
}

.down-arrow-box {
    display: grid;
    align-items: end;
    justify-content: center;
}

.down-arrow {
    height: 80px;
    padding: 20px;
}

.jumbo-btns {
    cursor: pointer;
    padding: 0px;
    color: #fff !important;
    font-size: xx-large;
    display: inline-block;
    padding: 10px;
}

.v-middle {
    vertical-align: middle;
}

.highlighted {
    background-color: #86744e;
    outline: 3px solid #86744e;
    color: white;
    padding-top: 3px;
}

.intro-text-dib {
    display: block;
}

.small-text-space {
    height: 3px;
}

.small-line-spacing {
    letter-spacing: 2px;
}

.mid-line-spacing {
    letter-spacing: 8px;
    font-size: 18px;
}

.big-line-spacing {
    letter-spacing: 15px;
    font-size: 22px;
}

.justifyed {
    text-align: justify;
}

.extra-px {
    padding: 0px 100px;
}


.screen-height {
    height: 100vh;
}

#play-button {
    cursor: pointer;
    font-size: 70px;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 10px;
}

.bookdesign-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#bookdesign-video {
    position: absolute;
}

.desk-only {
    display: inline-block;
}

.mob-only {
    display: none;
}

.desk-only-b {
    display: block;
}

.mob-only-b {
    display: none;
}

.email-btn {
    display: inline-block;
}

@media (max-width: 1200px) {
    .extra-px {
        padding: 0px 50px;
    }
}

@media (max-width: 992px) {
    :root {
        --spadding: 20px;
        --npadding: 40px;
        --lpadding: 60px;
        --nradius: 20px;
        --lradius: 50px;
    }

    .chap-text-box {
        padding: var(--lpadding) var(--lpadding);
    }

    .extra-px {
        padding: 0px 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --spadding: 10px;
        --npadding: 20px;
        --lpadding: 30px;
        --nradius: 10px;
        --lradius: 20px;
    }

    .extra-px {
        padding: 0px 0px;
    }

    .zoomed-img {
        margin-bottom: 8px;
    }

    .player-box .col-4 {
        padding: 0px;
    }

    .fs-5 {
        font-size: 1rem !important;
    }

    .mob-only {
        display: inline-block;
    }

    .desk-only {
        display: none;
    }

    .mob-only-b {
        display: block;
    }

    .desk-only-b {
        display: none;
    }

    .email-btn {
        display: block;
    }
}

@media (max-width: 576px) {}