:root {
    --black: #030303;
    --pp-black: #333333;
    --white: #ffffff;
    --medium-gray: #7F7E7E;
    --light-gray: #dcdcdc;
    --lighter-gray: #fefefe;
    --dark-gray: #464646;
    --gold: #d3c055;
    --pink: #bb0072;
    --green: #008000;
    --ff: "Roboto", sans-serif;
    font-size: 16px;
    font-family: var(--ff);
    font-weight: 300;
}


/* colors */
.white {
    color: var(--white)
}

.black {
    color: var(--black)
}

.dark-gray {
    color: var(--dark-gray)
}

.medium-gray {
    color: var(--medium-gray)
}

.media-query-toggle-color {
    color: var(--white);
}


/* fonts */
/* .roboto-thin {
    font-family: var(--ff);
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: var(--ff);
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: var(--ff);
    font-weight: 400;
    font-style: normal;
} */



/* Text */
.center-txt {
    text-align: center;
}

.left-txt {
    text-align: left;
}

.xsmall-txt {
    font-size: .5rem;
}

.bold-txt {
    font-weight: bold;
}


/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}


/* Headings */
.heading-bar {
    background: var(--pp-black);
    padding: 0.5em 1em;
}

.heading-bar>h2 {
    box-shadow: 2px 2px var(--white);
    padding-bottom: 0.3em;
    color: var(--white);
}

/* Paragraph */
p {
    line-height: 2rem;
}

/* images */
.mobile-img {
    width: 100%;
    margin: 1em 0 0 0;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 5px;
    font-weight: bold;
    color: var(--white);
    border: .5px solid #000;
    text-align: center;
    width: 150px;
    text-transform: capitalize;
}

.btn a {
    color: var(--white);
}

.goldBtn {
    background: var(--gold);
}

.darkBtn {
    background: var(--pp-black);
}



/* ************************************** PAGES ******************************** */
.wrapper {
    position: relative;
    border: 1px solid black;
    overflow: hidden;
}

.main {
    margin-top: 6px;
    padding: 0 1em;
    /* border: 3px solid blue; */
}

.page-hero {
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fdfdfd;
    width: 100%;
    height: 270px;
    background-size: 400px;
    /* border: 1px solid red; */
}

.page-title {
    font-size: 2rem;
    padding: .8em 0;
    text-align: center;
}

.page-content {
    line-height: 2em;
    padding: 1em 0;
    background: rgb(243 238 238 / 17%);
    color: var(--dark-gray);
    font-size: 1.2em;
}


/* START INDEX PAGE */
.hero-section {
    position: relative;
    overflow: hidden;
    background-image: url("/assets/bg1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section a {
    display: block;
    margin: 2em auto;
    width: max-content;
}

.hero-section video {
    display: none;
}

.hero-section div {
    display: none;
}

.dynamiclogo {
    background-color: transparent;
    border: 2px solid var(--black);
    font-size: 3.6rem;
    padding: 0 3px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 3s 1s ease-in-out, background-color 3s ease-in-out;

}

.dynamiclogo span:first-child {
    background-color: transparent;
    color: var(--white);
    padding: 0px;
    padding: 0 4px;
    font-weight: 200;
    transition: background-color 1s ease-in-out;
}

.dynamiclogo span:last-child {
    color: var(--black);
    padding: 0px;
    font-weight: 600;
    padding: 0 1px;
}


.video-container {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

.video-container__content {
    text-align: center;
}

.video-container__background-clip {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}


.video-container__content a {
    margin-top: 1em;
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    border: .5px solid #fff;
    padding: .5em 1.5em;
    border-radius: 5px;
    transition: 0.3s;
}

.video-container__content a:hover {
    background-color: var(--gold);
    color: var(--black);
}

@media(min-aspect-ratio:16/9) {
    .video-container__background-clip {
        width: 100%;
        height: auto;
    }
}

@media(max-aspect-ratio:16/9) {
    .video-container__background-clip {
        width: auto;
        height: 100%;
    }
}

.get-started-section {
    display: flex;
    flex-direction: column;
    background-color: var(--pp-black);
    align-items: center;
    color: var(--white);
    font-weight: 300;
    font-style: normal;
    padding: 4em 1em;
}

.get-started-section>p,
.get-started-section>h2,
.get-started-section>img {
    width: 100%;
}

.address-section {
    padding: 4em 0;
    box-shadow: 0px -2px 4px var(--gold);
    text-align: center;
    font-weight: 300;
    font-style: normal;
    padding: 4em 1em;
}

.schedule-section {
    padding: 1em;
    scroll-margin-top: 150px;
}

.iframe-mobile {
    width: 100%;
    height: 400px;
    /* overflow-y: hidden; */
}

.view-plans-section {
    padding: 25px 1em 0 1em;
    background-color: var(--pp-black);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    color: var(--white);
}

.view-plans-section .line1 {
    font-size: 1.9rem;
}

.view-plans-section .line2 {
    font-size: 1.1rem;
}

/* ------------------------------------------------------------------------------------ */

/* START COMMING-SOON PAGE */
.coming-soon {
    background-color: var(--light-gray);
    background-image: url("/assets/coming-soon-bg.avif");
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

/* ------------------------------------------------------------------------------------ */

/* START FAQ PAGE */

.page-content .faq-ques:nth-child(odd) {
    background-image: linear-gradient(0deg, #3333330f, transparent);
    margin: 0px 0px 2em 0px;
    cursor: pointer;
}

.page-content [policy-title]:nth-child(odd),
.page-content .pricing__heading2 {
    background-image: linear-gradient(0deg, #3333330f, transparent);
}

.page-content .faq-ans:nth-child(even) {
    display: none;
    padding-bottom: 1em;
    padding-left: 1em;
    font-weight: bold;
}

/* ------------------------------------------------------------------------------------ */

/* START POLICIES PAGE */
ul[policies-list] {
    margin-left: 2em;
    list-style: square;
}

/* ------------------------------------------------------------------------------------ */
/* START PRICING PAGE */
.pricing__heading1 {
    text-align: center;
    font-size: 2rem;

}

.pricing__heading2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--black);
    width: 100vw;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
    padding: .2em;
    border-bottom-left-radius: 15px;
}



.pricing__card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    justify-content: center;
    gap: 1em;
    padding-top: .5em;
    margin-bottom: 4em;

}

.card {
    border: 1px solid var(--pp-black);
    border-radius: 5px;
    box-shadow: 1px 1px 2px;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: .5em;
    background-color: #fbfbfa;
    align-items: center;
    padding: .5em;
    transition: box-shadow 700ms, bottom 700ms;
}

.card:hover {
    box-shadow: 10px 10px 10px;
    bottom: 10px;
}

.card .title {
    flex-basis: 65px;
    font-size: 1.2rem;
    font-weight: 400;
}

.card .price {
    margin: 1em 0;
}

.price .value {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--green);
}

.price .dolla {
    position: relative;
    bottom: 10px;
    font-size: .8em;
    color: var(--green);
}

.price .cents {
    font-weight: 500;
    position: relative;
    bottom: 5px;
    color: var(--green);
}

.card .discount {
    /* border: 1px solid red; */
    flex-basis: 70px;
    font-weight: 400;
}

.card .desc {
    /* border: 1px solid blue; */
    flex-basis: 100px;
}

.card .card-btn {
    margin-top: auto;
}




@media screen and (min-width: 365px) {
    .main__hero {
        height: 250px;
    }
}



@media screen and (min-width: 776px) {

    .video-container {
        display: flex;
        padding: 0 1em;
    }

    .hero-section {
        display: none;
    }

    .page-title {
        text-align: left;
    }

    /* MEDIA-Query Desktop index page*/
    .get-started-section {
        background-color: var(--lighter-gray);
        color: var(--dark-gray);
    }

    .get-started-section>p,
    .get-started-section>h2,
    .get-started-section>img {
        width: 50%;
    }



    .media-query-toggle-color {
        color: var(--dark-gray);
    }


    .pricing__card-container {
        justify-content: start;
    }

    .main {
        padding: 75px 1em;
    }

    /* ---------------------------- */






}