/*
=========================================================
============== Default Discovery Front Syle =============
=========================================================
*/

/* Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

/* Google Font Body */
@import url(\'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap\');


/* Variables */

:root {
    --primary-color: #FF0000;
    --secondary-color: rgba(255, 0, 0, 0.7);
    --tertiary-color: rgba(255, 0, 0, 0.4);
    --light-grey: #f7f7f7;
    --font-color: #202020;
    --font-white: #ffffff;
    --font-black: #000000;
    --blue: #0095FF;
    --yellow: #FFD400;
    --orange: #FF9D00;
    --purple: #B700FF;
    --body-font: "Open Sans", sans-serif;
    --title-font: "Open Sans", sans-serif;
    --header-background: #000000;
    --header-g-background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    --footer-menu-background: #212121;
    --footer-info-background: #000000;
}


/* ====== Global Styles ====== */

html, body {
    font-family: var(--body-font);
    color: var(--font-color);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

h1 {
    font-family: var(--title-font);
    color: var(--font-black);
    font-size: 2rem;
    font-weight: bold;
}

h2 {
    font-family: var(--title-font);
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

h3 {
    font-family: var(--title-font);
    color: var(--tertiary-color);
    font-size: 1.3rem;
    font-style: italic;
}

h4 {
    font-family: var(--title-font);
    color: var(--font-color);
    font-size: 1.1rem;
    font-weight: bold;
}

li::marker {
  color: var(--secondary-color);
}


/* Transitions */
a, button {  
    -webkit-transition: all ease-in 0.2s;
    -ms-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}


/* ====== Header ====== */

.header-wrap {
    background: var(--header-background);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.home .header-wrap {
    background: var(--header-g-background);
}

.header {
    display: block;
    position: relative;
    padding: 1rem 0;
}

.header .branding {
    display: block;
    width: 180px;
}

.header .branding img {
    width: 100%;
}


.header .navbar a:hover {
    text-decoration: none !important;
}


/* ====== Contents ====== */

/* Components */

.cta {
    display: inline-block;
    margin: 0;
    padding: .5rem 2rem;
    background: var(--primary-color);
    color: var(--font-white);
    text-transform: uppercase;
    border-radius: .35rem;
    font-weight: 300;
}

.cta:hover {
    color: var(--font-white);
    text-decoration: none;
    background: var(--secondary-color);
}

.author-display .cta,
.join-cta .cta,
.upgrade-cta .cta {
    margin-top: 1rem;
}

.author-display {
    background: var(--light-grey);
    margin: 2rem 0;
    padding: 1.5rem;
}

.author-display .author-img,
.cat-img {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.author-display .author-img img,
.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-cta,
.upgrade-cta {
    margin: 2rem auto;
    padding: 1.5rem 0;
    border-top: 2px solid var(--light-grey);
    border-bottom: 2px solid var(--light-grey);
    text-align: center;
}

.sub-categories {
    margin: 2rem auto;
    padding: 2rem 0 0 0;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.sub-categories .cat-item,
.steps-grid .step-item,
.authors-grid .author-item {
    margin-bottom: 2rem;
}

.sub-categories .cat-img,
.steps-grid .step-img,
.authors-grid .author-img {
    margin-bottom: 1rem;
    overflow: hidden;
}

.steps-list .step-img,
.authors-list .author-img {
    overflow: hidden;
}

.sub-categories .cat-img img,
.steps-grid .step-img img,
.steps-list .step-img img,
.authors-grid .author-img img,
.authors-list .author-img img {
    -webkit-transition: all ease-in 0.3s;
    -ms-transition: all ease-in 0.3s;
    -o-transition: all ease-in 0.3s;  
    transition: all ease-in 0.3s;
    transform-style: preserve-3d;
}

.sub-categories .cat-img:hover img,
.steps-grid .step-img:hover img,
.steps-list .step-img:hover img,
.authors-grid .author-img:hover img,
.authors-list .author-img:hover img {
    transform: scale(1.1);
}

.sub-categories .cat-title h3,
.steps-grid .step-title h3,
.authors-grid .author-title h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.steps-list .step-title h3,
.authors-list .author-title h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
}

.sub-categories .cat-item .cta,
.steps-grid .step-item .cta,
.authors-grid .author-item .cta {
    margin-top: 1rem;
}

.steps-list .step-item .cta,
.authors-list .author-item .cta {
    width: 100%;
    text-align: center;
}

.steps-list .step-item,
.authors-list .author-item {
    padding: 1rem;
    background: var(--light-grey);
    margin-bottom: 1.5rem;
}

.step-item audio {
    width: 100%;
}

.steps-list .step-item:last-child,
.authors-list .author-item:last-child {
    margin-bottom: 0;
}

.author-intro .author-img {
    display: block;
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.author-intro .author-img img,
.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-intro .author-long-name {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: bold;
}

.step-video {
    padding: 1.5rem 0;
}

.step-files {
    padding: 1rem 0;
    margin: 1rem auto;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.step-files .file-pdf,
.step-files .file-audio {
    padding: .75rem;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-files .file-pdf {
    margin-bottom: .5rem;
}

.step-files .file-icon {
    font-size: 2rem;
    color: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.step-files .file-text {
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    margin-left: .75rem;
    line-height: 1;
}

.step-files .file-player {
    line-height: 0;
}

.step-text {
    padding-top: 2rem;
}

.faq-block {
    border-top: 1px solid var(--light-grey);
    border-right: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--font-white);
}

.faq-block .question-title {
    display: block;
    font-weight: 300;
    background-color: rgba(0,0,0,.03);
    border-bottom: 2px solid var(--light-grey);
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    cursor: pointer;
    padding: 15px 20px;
    position: relative;
}

.faq-block .question-title .bi {
    color: var(--primary-color);
}

.faq-block .question-title .title-arrow {
    color: var(--secondary-color);
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: all ease-in 0.2s;
    -webkit-transition: all ease-in 0.2s;
    -ms-transition: all ease-in 0.2s;
    -0-transition: all ease-in 0.2s;
}

.faq-block.active .question-title .title-arrow {
    transform: rotate(180deg);
}

.faq-block .answer {
    display: none;
    border-bottom: 1px solid var(--light-grey);
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    padding: 20px;
}

.faq-block.block-1 .answer {
    display: block;
}

.no-content-available {
    padding: 3rem!important;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity));
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    text-align: center;
    border-radius: .5rem;
}

.no-content-available p {
    font-weight: 300;
    margin: 0;
    font-style: italic;
    text-transform: uppercase;
}


/* ====== Footer ====== */

.footer-menu {
    padding: 1.5rem 0;
    background: var(--footer-menu-background);
}

.footer-menu .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.footer-menu .footer-logo img {
    width: 280px;
    max-width: 100%;
}

.footer-menu-wrap {
    display: block;
    padding-bottom: 1.5rem;
}

.footer-menu-wrap a {
    color: var(--font-white);
    display: block;
    opacity: .75;
    padding: .5rem 0;
    font-size: .85rem;
}

.footer-menu-wrap a:hover {
    opacity: 1;
    text-decoration: none !important;
}

.footer-info {
    color: var(--font-white);
    padding: 2rem 0;
    background: var(--footer-info-background);
}

.footer-info .copyright {
    margin-bottom: 1.5rem;
}

.footer-info .disclaimer {
    font-weight: 300;
}


/* ====== Responsive ====== */


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

}