/* ************************************ */
/* UNIVERSAL */
/* ************************************ */

*, *::before, *::after {
    box-sizing: border-box;
}

:root{
    --color-primary: #68c7c5;
    --color-primary-alpha: rgb(104, 199, 197, 0.4);
    --color-secondary: #ffbd59;
    --color-secondary-alpha: rgba(255,189,89, 0.76);
    --color-complementary: #c7686a;
    --color-tagline: #14212d;
    --color-white: #fff;
    --color-white-alpha: rgba(255,255,255,0.64);
    --color-white-alpha-dense: rgba(255,255,255,0.96);
    --color-light-grey: #eee;
    --color-medium-light-grey: #a9a9a9;
    --color-medium-grey: #7f7f7f;
    --color-grey: #616161;
    --color-dark-grey: #424242;
    --color-black: #000;
    --color-accent: #284053;
    --color-error-red: #fa4a4a;
    --color-granted-green: #00b615;
    --color-gradient-blue: #2e3370;

    --font-primary: 'Poppins','Lucida Sans', 'Lucida Sans Regular', Geneva, Verdana, sans-serif;
    --font-secondary: 'Nunito Sans', Helvetica, Arial, sans-serif;
    --font-titles-primary: 'Bad Script', Garamond, Times, serif ;
    --font-titles-secondary: 'Shadows Into Light', Georgia, serif ;


}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    background-color: var(--color-dark-grey);
}

#main {
    background-color: var(--color-white);
    /* min-height: 100vh; */
    /* min-width: 100vw; */
    /* position: absolute;
    top: 0; */
}

p {
    line-height: 1.6;
    font-size: 1.2em;
    font-weight: 200;
}

h1, h2 {
    font-size: 2.1em;
    font-family: var(--font-titles-primary);
    color: var(--color-primary);
    text-wrap: pretty;
}

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

a:visited {
    color: var(--color-dark-grey);
}

.hide {
    display: none;
}

.show {
    display: block;
    animation: appear 1.8s;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bolder;
}

:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
}

.btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 7px;
    border: none;
    padding-top: .7em;
    padding-bottom: .7em;
    padding-left: 4em;
    padding-right: 4em;
    font-size: 1.2em;
    font-weight: 600;
    /* text-shadow: 0px 1px 4px rgba(0, 0, 0 , 0.8); */
    box-shadow: 0px 3px 10px rgb(0 0 0 / 0.4);
    margin-left: auto;
    margin-right: auto;
}

.btn:hover {
    cursor: pointer;
    background-color: var(--color-primary);
}

hr {
    border: 2px var(--color-white) solid;
    width: 5rem;
    border-radius: 2px;
}

hr.invert{
    border: 2px var(--color-grey) solid;
}

/* ************************************ */
/* ACCESS CHECK */
/* ************************************ */

.wrapper {
    background-color: var(--color-white);
    min-height: 100vh;
    min-width: 100vw;
    padding-top: 25vh;

}

#access-check {
    width: min( 35ch, 80vw );
    padding-top: 5vh;
    padding-bottom: 10vh;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-top: 4px solid var(--color-primary);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 0.2);
}

#access-check p {
    text-wrap: balance;
}

#access-check input {
    border: var(--color-primary) 1px solid;
    background-color: var(--color-white);
    border-radius: 3px;
    margin-top: 4vh;
    padding: .5em;
    font-size: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

#access-check img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#access-check input p {
    size: .8em;
}

#access-check button {
    border: var(--color-primary) 1px solid;
    background-color: var(--color-primary);
    border-radius: 3px;
    box-shadow: 0px 3px 10px rgb(0 0 0 / 0.2);
    margin-top: 4vh;
    padding-top: .7em;
    padding-bottom: .7em;
    padding-left: 1.6em;
    padding-right: 1.6em;
    font-size: 1.1em;
    color: var(--color-white);
}

#access-check button:hover {
    background-color: var(--color-accent);
}

.error {
    color: var(--color-error-red);
    font-size: 0.9em;
    font-weight: 500;
    position: fixed;
    top: 19vh;
    right: -450px;
    transition: .3s ease;
}

.error.active {
    right: 40vw;
}

.access-icon.active {
    transform: scale(1.1);
    color: var(--color-error-red);
}

.access-icon.granted {
    color: var(--color-granted-green);
}

.reject {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(200vh);
    background-color: var(--color-grey);
    color: var(--color-light-grey);
}

.reject.active {
    transform: translateY(0);
}

/* ACCESS GRANTED TRANSITION */
/* ******************** */

@keyframes appear{
    from {
        opacity: 0;
        /* translate: 100vw 0; */
    }

    to {
        opacity: 1;
        /* translate: 0 0; */
    }
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.4s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}


/* ************************************ */
/* MAIN CONTENT */
/* ************************************ */



/* NAVIGATION */
/* ******************** */

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 300;
    background-color: var(--color-white);
    box-shadow: 0px 3px 10px rgb(0 0 0 / 0.2);
}

#navbar img.logo {
    max-height: 5rem;
}

#navbar a {
    text-decoration: none;
    color: inherit;
}

#nav-main {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#expanded-nav-main {
    padding-top: 8rem;
    padding-bottom: 8rem;
    margin-top: 7.5rem;
    background-color:  var(--color-tagline);
    color: var(--color-light-grey);
    height: 60vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: space-between;
    text-align: center;
    font-size: 2rem;
    transition: .3s ease;
    font-weight: 200;
    z-index: 250;
    box-shadow: 0px 3px 10px rgb(0 0 0 / 0.2);
}

#expanded-nav-main.active {
    right: 0;
}


/* HAM MENU */

.ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
}
.ham-menu button {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
}
.ham-menu span {
    height: 4px;
    width: 100%;
    background-color: var(--color-accent);
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: var(--color-tagline);
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (prefers-reduced-motion) {
    html {
        scroll-behavior: auto;
    }
    /* MOBILE MENU REDUCED MOTION */
    #expanded-nav-main {
        transition: none;
    }
    .ham-menu span {
        transition: none;
    }
  }



/* PAGEWIDE - SECTION */
/* ******************** */

.section {
    padding-left: 3vw;
    padding-right: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 2rem;
    background-color: var(--color-white);
    text-align: center;
}

.section p {
    font-family: var(--font-secondary);
    max-width: 64ch;
    font-size: 1.05em;
    line-height: 1.2em;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-medium-grey);
}

.section .emphasized {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--color-grey);
    text-wrap: pretty;
    margin-left: auto;
    margin-right: auto;
}

.section .icon {
    display: block;
    font-size: 3rem;
    margin: 4rem auto 2.6rem;
}



/* HERO */
/* ******************** */

.hero {
    height: calc(100vh - 5.5rem);
    min-height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    background-color: var(--color-light-grey);
    color: var(--color-white);
    text-align: center;
    background-color: rgba(0, 0, 0 , 0.2);
    background-image: url("../media/colorful-flower.jpeg");
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -10;
}

.hero h2 {
    color: var(--color-white);
    font-size: 2.8rem;
    padding-top: 10rem;
    text-shadow: 2px 2px 2px rgba(0, 0, 0 , 0.4);
}







/* WELCOME */
/* ******************** */

#welcome {
    z-index: -5;
    text-align: center;
    background-image: url("../media/woman-smelling-flower.webp");
    /* background-color: rgba(0, 0, 0 , 0.2); */
    /* background-blend-mode: multiply; */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#welcome .mid-layer {
    margin: 40vh auto 2rem auto;
    background-color: var(--color-white-alpha-dense);
    width: 92vw;
    padding: 1rem;
}

#welcome h2 {
    font-family: var(--font-titles-secondary);
    /* max-width: 40ch; */
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--color-error-red);
    /* text-shadow: 2px 2px 2px rgba(0, 0, 0 , 0.4); */
    margin-left: auto;
    margin-right: 1rem;
    padding-right: 1rem;
    text-align: right;
}

#welcome p {
    max-width: 84ch;
    text-align: left;
    font-family: var(--font-secondary);
    font-size: .975em;
    color: var(--color-grey);
    margin: 1rem .6rem;
    text-align: justify;
    
}

#welcome .btn {
    background-color: var(--color-error-red);
    padding: .7em 3em;
}

#welcome .btn:hover {
    background-color: var(--color-secondary);
}


/* VIBRATIONAL TRANSLATION */
/* ******************** */

#vibrational-translation {
    /* padding-bottom: 0.8rem; */
}
/* 
#vibrational-translation h2 {
    font-family: var(--font-primary);
    font-weight: 200;
    font-size: 1.3em;
    font-style: italic;
} */

#vibrational-translation p {
    color: var(--color-grey);
}

/* 
.titles {
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
}

.titles h3 {
    width: 100%;
    height: 100%;
    font-weight: 200;
}

.titles .active, .titles div:hover {
    background-color: var(--color-light-grey);
    cursor: pointer;
}

.titles .active h3 {
    font-weight: 400;
}

.content {
    background-color: var(--color-light-grey);
    padding: .8rem .2rem .6rem;
    text-align: left;
}

.content h4 {
    margin-left: 1.2rem;
    color: var(--color-grey);
}
.content p {
    margin-top: 0;
    margin-bottom: .7rem;
    font-weight: 200;
    line-height: 1.25;
    font-size: 1em;
} */








/* /////// KEEP EVERYTHING ABOVE THIS LINE /////// */

















/* TABLE */
.entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.circle {
    height: 4rem;
    width: 4rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: lighter;
    border: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    overflow: hidden;
}
.entry h3 {
    color: var(--color-grey);
    margin-bottom: 0;
    font-weight: 400;
}
.entry p {
    color: var(--color-medium-light-grey);
    max-width: 24ch;
}

.entry li {
    color: var(--color-medium-grey);
    text-align: left;
    font-weight: 200;
}



/* CONVERSATION WITH SPIRIT */
/* ******************** */
#conversation-with-spirit .circle {
    width: 5rem;
    height: 5rem;
}

.circle-image {
    width: inherit;
    height: inherit;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

#circle-img-1 {
    background-color: yellow;
    background-image: url("../media/conversation-with-spirit/yellow.webp");
}

#circle-img-2 {
    background-color: salmon;
    background-image: url("../media/conversation-with-spirit/salmon.webp");
}

#circle-img-3 {
    background-color: purple;
    background-image: url("../media/conversation-with-spirit/purple.jpeg");
    background-position: center center;

}
#circle-img-4 {
    background-color: green;
    background-image: url("../media/conversation-with-spirit/green.webp");
}
#circle-img-5 {
    background-color: grey;
    background-image: url("../media/conversation-with-spirit/grey.webp");
}
#circle-img-6 {
    background-color: pink;
    background-image: url("../media/conversation-with-spirit/pink.webp");
}

/* DAISY QUOTE */
/* ******************** */

#daisy-quote {
    z-index: -5;
    text-align: center;
    background-image: url("../media/leap-of-faith.jpg");
    background-color: rgba(0, 0, 0 , 0.5);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

#daisy-quote p {
    font-family: var(--font-titles-secondary);
    max-width: 40ch;
    font-size: 2rem;
    font-weight: lighter;
    color: var(--color-white);
    /* text-shadow: 2px 2px 2px rgba(0, 0, 0 , 0.4); */
    margin-left: auto;
    margin-right: auto;
}

#daisy-quote p:nth-child(1) {
    padding-top: 8rem;
}

#daisy-quote p:nth-child(2) {
    padding-bottom: 8rem;
}







/* VIRTUAL */
/* ******************** */
/* NOTE: See SUB HERO section for shared styles */

#virtual {
    background-color: var(--color-primary);
    padding-top: 2rem;
    padding-bottom: 3rem;
}

#virtual img {
    width: 95%;
    margin-bottom: 3rem;
}

#virtual div p:nth-child(2) {
    max-width: 100%;
    font-size: 1.6em;
    text-align: center;
    color: var(--color-white);
    text-shadow: 2px 2px 2px rgba(0, 0, 0 , 0.4);
}

#virtual h2 {
    font-size: 3em;
    font-family: var(--font-primary);
    color: var(--color-white);
    margin-top: 0rem;
    margin-bottom: 0rem;
    font-weight: 200;
}

#virtual div p:nth-child(3) {
    text-align: center;
    color: var(--color-accent);
    font-family: var(--font-secondary);
    text-wrap: pretty;
    max-width: 32ch;
    text-shadow: 2px 2px 2px rgba(255, 255, 255 , 0.4);
}

#virtual div p:nth-child(3) span {
    color: var(--color-accent);
    text-shadow: 2px 2px 2px rgba(255, 255, 255 , 0.4);
}

#virtual .icon {
    display: block;
    font-size: 2rem;
    margin: 0rem auto 2.6rem;
    color: var(--color-white);
}

#virtual .btn:hover {
    background-color: var(--color-accent);
}







/* ABOUT */
/* ******************** */

#about {
    padding-top: 2.5rem;
    padding-bottom: 3.14rem;
}

#about h2 {
    margin-top: 3rem;
/*     
    font-family: var(--font-titles-secondary);
    font-weight: 600;
    font-size: 2em;
    color: var(--color-black);
    text-align: center; */
}

#about h3 {
    text-align: left;
}

#about p {
    color: var(--color-grey);
    font-family: var(--font-secondary);
    font-size: 1em;
    font-weight: 200;
    text-align: justify;
    margin: 1rem .4rem;
}

#about p.subtitle {
    text-align: center;
    font-style: italic;
    max-width: 100%;
}

/* #about button {
    margin-top: 1.6rem;
    margin-bottom: 3rem;
    display: block;
} */

/* PHOTO GRID */

#photo-grid {
    width: 100vw;
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
}

.grid-photo-wrapper {
    width: 50vw;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.grid-photo {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .3s ease;
}

.grid-photo:hover {
    transform: scale(1.1);
}

#photo-1 {
    background-image: url("../media/photo-grid/photo-1.webp");
}

#photo-2 {
    background-image: url("../media/photo-grid/photo-2.webp");
}

#photo-3 {
    background-image: url("../media/photo-grid/photo-3.webp");
}

#photo-4 {
    background-image: url("../media/photo-grid/photo-4.jpg");
}



/* WHAT TO EXPECT */
/* ******************** */

#expect {
    z-index: -5;
    text-align: center;
    background-image: url("../media/white-flower.jpeg");
    background-color: rgba(0, 0, 0 , 0.2);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

#expect .mid-layer {
    margin: 3rem auto 2rem;
    background-color: var(--color-secondary-alpha);
}

#expect h2 {
    font-family: var(--font-titles-secondary);
    font-size: 1.6em;
    color: var(--color-black);
}

#expect .mid-layer p {
    font-family: var(--font-secondary);
    font-size: 1.05em;
    margin-left: 1em;
    margin-right: 1em;
    color: var(--color-dark-grey);
    font-weight: 200;
    margin-bottom: 1rem;
}

.submenu-title button {
    width: 100%;
    background: none;
    border: none;
}

.submenu-title button:focus-visible {
    outline: 3px solid var(--color-accent);
    
}

.expect-submenu hr {
    border: .5px var(--color-white-alpha) solid;
    width: 85%;
}

.submenu-title {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
}

.submenu-title h3 {
    max-width: 24ch;
    font-weight: 200;
    margin-top: 0;
    margin-bottom: 0;
}

.submenu-title:hover {
    cursor: pointer;
}

.submenu-item {
    text-align: left;
    padding-left: .25rem;
    padding-right: .25rem;
}

#expect .submenu-item p, #expect .submenu-item ol, #expect .submenu-item ul, #expect .submenu-item h4  {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1rem;
}
#expect .submenu-item p, #expect .submenu-item ol, #expect .submenu-item ul  {
    color: var(--color-black);
    font-family: var(--font-primary);
    font-weight: 200;
    line-height: 1.6;
    max-width: 40ch;
}

/* TOGGLE SWITCH */

.toggle-switch {
    height: 12px;
    width: 12px;
    margin-left: auto;
    position: relative;
}

.toggle-switch span{
    height: 2px;
    width: 100%;
    background-color: var(--color-accent);
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-1rem, -.75rem);
    transition: .3s ease;
}

.toggle-switch span:nth-child(1) {
    transform: translate(-1rem, -.75rem) rotate(90deg);
}
.toggle-switch.active span {
    background-color: var(--color-tagline);
}
.toggle-switch.active span:nth-child(1) {
    transform: translate(-1rem, -.75rem) rotate(-360deg);

}
.toggle-switch.active span:nth-child(2) {
    opacity: 0;
}
@media (prefers-reduced-motion) {
    /* TOGGLE SWITCH REDUCED MOTION */
    .toggle-switch.active span:nth-child(1) {
        transform: translate(-1rem, -.75rem);
    }
  }
  




/* PLANS AND PRICING */
/* ******************** */

#plans-and-pricing {
    padding-top: 2rem;
}

#plans-and-pricing h2 {
    font-family: var(--font-titles-primary);
    font-size: 2em;
    text-align: center;
    margin-bottom: 2rem;
}

.price-box {
    width: 92vw;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-top: 4px solid var(--color-primary);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 0.2);
}

.price-box hr {
    border: .5px var(--color-grey) solid;
}

.price-box h3 {
    font-size: 1.4em;
}

.price-box p {
    font-family: var(--font-secondary) ;
    font-size: 1em;
    line-height: 1.25;
    color: var(--color-dark-grey);
    margin-left: auto;
    margin-right: auto;
}

.price-box .italic {
    color: var(--color-medium-grey);
}

.price-box .price {
    font-family: var(--font-titles-secondary);
    font-size: 1.8em;
    font-weight: bolder;
    color: var(--color-medium-grey);
}

#price-1 {
    border-top: 4px solid var(--color-secondary);
}

#price-1 i {
    color: var(--color-secondary);
    font-size: 1.8em;
}

#price-2 {
    border-top: 4px solid var(--color-accent);
}

#price-2 i {
    color: var(--color-accent);
    font-size: 1.8em;
}

#price-2 .btn {
    background-color: var(--color-accent);
}

#price-3 .btn {
    background-color: var(--color-primary);
}

#price-3 i {
    color: var(--color-primary);
    font-size: 1.8em;
    transform: rotate(270deg);
}

#price-2 .btn:hover, #price-3 .btn:hover {
    background-color: var(--color-secondary);
}




/* FOUR STEPS */
/* ******************** */

#four-steps hr {
    border: 2px var(--color-accent) solid;
    width: 2rem;
    border-radius: 2px;
}

#four-steps h2 {
    font-family: var(--font-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    width: 100vw;
    font-weight: lighter;
    line-height: 1.6;
}

#four-steps .icon {
    font-size: 2.5rem;
    margin: 1rem auto .5rem;
}

#four-steps h3 {
    max-width: 24ch;
}

#four-steps p {
    max-width: 32ch;
    margin-bottom: 1rem;
}



/* TESTIMONIALS */
/* ******************** */


.title-background {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    width: 100vw;    
}

#testimonials {
    margin-bottom: 1.6rem;
}

#testimonials h2 {
    color: var(--color-white);
}

.title-background p {
    color: var(--color-white);
    margin-bottom: 0;
    font-size: 1.1em;
}

#testimonials .entry p {
    text-align: left;
    max-width: 96%;
    margin-bottom: 0.3rem;
    margin-top: 2rem;
    color: var(--color-grey);
}

.author {
    width: 96%;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

#testimonials .author p {
    color: var(--color-secondary);
    margin-top: .6rem;
    /* margin-left: 8vw; */
    margin-left: auto;
    font-size: 1.2em;
}

.author .circle {
    margin-right: 1.6rem;
    height: 3rem;
    width: 3rem;
}


#testimonial-img-1 {
    background-color: yellow;
    background-image: url("../media/testimonials/chad.png");
}

#testimonial-img-2 {
    background-color: salmon;
    background-image: url("../media/testimonials/jana.png");
}

#testimonial-img-3 {
    background-color: purple;
    background-image: url("../media/testimonials/fernanda.png");
    background-position: center center;

}
#testimonial-img-4 {
    background-color: green;
    background-image: url("../media/testimonials/matthew.png");
}
#testimonial-img-5 {
    background-color: grey;
    background-image: url("../media/testimonials/paulina.png");
}
#testimonial-img-6 {
    background-color: grey;
    background-image: url("../media/testimonials/julia.png");
}




/* BUSINESS */
/* ******************** */

#business .base-layer {
    width: 100vw;
    overflow: hidden;
    /* position: relative; */
    /* z-index: -1; */
    /* text-align: center; */
    /* background-image: url("../media/managers-1.jpeg"); */
    /* background-color: rgba(0, 0, 0 , 0.2); */
    /* background-blend-mode: multiply; */
    /* background-size: cover; */
    /* background-position: center center; */
    /* background-repeat: no-repeat; */
}

.bg-img img {
    width: 110%;
    transform: translateX(-5vw);
}

#business .mid-layer {
    background-color: var(--color-white);
    z-index: 10;
    width: 96%;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 0.2);
    padding: 1.4rem 1rem;
    transform: translateY(-4rem);

}

#business h2 {
    font-family: var(--font-primary);
    color: var(--color-dark-grey);
    text-align: left;
    /* font-weight: 400; */
    font-size: 1.8em;
    line-height: 1.6;
    margin-top: 0;
}

#business p {
    text-align: left;
    color: var(--color-grey);
    /* font-weight: lighter; */
    font-size: 1em;
    line-height: 1.4;
    margin-left: 0;
    margin-right: 0;
}

#business p.bold {
    font-size: .9em;
}

#business .btn {
    width: 100%;
    font-size: 1.1em;
    padding-left: 0;
    padding-right: 0;
}





/* FAQ */
/* ******************** */

#faq {
    color: var(--color-white);
    background: rgb(104,199,197);
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gradient-blue) 100%);
    text-align: center;
    padding-bottom: 2rem;
}

#faq h2 {
    margin: 3rem;
    font-family: var(--font-titles-secondary);
    color: var(--color-white);
}

#faq p {
    color: var(--color-white);
}

.faq-wrapper {
    width: 92vw;
    position: relative;
    background: linear-gradient(to right, var(--color-gradient-blue), var(--color-primary-alpha));
    padding: 0px 1px 1px 1px;
}

.faq-box .faq-wrapper:nth-child(1){
    padding: 1px;
}

.faq-item {
    margin-bottom: .4rem;
}

.faq-a, .faq-q {
    padding: 1rem;
    height: 100%;
    background: rgb(104,199,197);
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gradient-blue) 100%);
    margin-top: 0;
    margin-bottom: 0;
    cursor: pointer;
}

.faq-q {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr ;
    align-items: center;
}

.faq-q-icon {
    margin-right: .5rem;

}

.faq-q-title {
    text-align: left;
}

.faq-q h3 {
    margin: 0;
    font-size: .9em;
    text-align: left;
}

.faq-q-toggle {
    height: 12px;
    width: 12px;
    margin-left: auto;
    position: relative;
}
.faq-q-toggle button {
    height: 14px;
    width: 100%;
    background: none;
    border: none;
}
.faq-q-toggle span {
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    /* transform: translate(-1.5rem, -2rem); */
    transition: .3s ease;
}
.faq-q-toggle span:nth-child(1) {
    transform: rotate(90deg);
}
.faq-q-toggle.active span {
    background-color: var(--color-white);
}
.faq-q-toggle.active span:nth-child(1) {
    transform: rotate(-360deg);

}
.faq-q-toggle.active span:nth-child(2) {
    opacity: 0;
}

.faq-a p {
    text-align: left;
}

#faq .btn {
    margin-top: 1rem;
}

/* FOOTER */
/* ******************** */
#footer {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
}

#footer p{
    font-size: 0.9em;
    color: var(--color-medium-light-grey);
}

#footer img.logo {
    max-height: 3rem;
    padding-bottom: .5rem;
}



/* TERMS AND CONDITIONS */
/* ******************** */

embed.terms {
    width: 96%;
    height: 75vh;
}







/* ******************** *//* ******************** *//* ******************** */
/* ******************** *//* ******************** *//* ******************** */
/* ******************** *//* ******************** *//* ******************** */
/* ******************** *//* ******************** *//* ******************** */
/* ******************** *//* ******************** *//* ******************** */
/* ******************** *//* ******************** *//* ******************** */






/* FOR LARGE SCREENS */
/* ******************** */


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

    html {
        scroll-padding-top: 0;
    }

    .ham-menu {
        display: none;
    }

    #navbar {
        position: initial;
    }

    #navbar a:hover {
        text-shadow: 0px 4px 10px rgb(0 0 0 / 0.6);
    }

    #nav-main {
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 3vw;

    }

    #expanded-nav-main {
        position: initial;
        display: flex;
        color: var(--color-black);
        padding: 0;
        margin: 0;
        height: auto;
        max-width: 100%;
        background-color: transparent;
        box-shadow: none;
        flex-direction: row;
        font-size: .9em;
        margin-right: 2vw;
    }

    #navbar span {
        margin-left: 1.6rem;
        font-weight: 200;
    }



    .table {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    #four-steps .table {
        grid-template-columns: 1fr 1fr;
    }

    /* #testimonials .table {

    } */

    .section p {
        margin-left: auto;
        margin-right: auto;
    }

    #welcome .mid-layer {
        max-width: 50vw;
        margin-right: 0;

    }

    #pricing-table {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        width: 100vw;
    }

    .price-box {
        max-width: 30vw;
        padding: 1rem;
    }
    .price-box .btn {
        width: 100%;
        font-size: 1.1em;
        padding-left: 0;
        padding-right: 0;
    }


    #about, #virtual {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    #about-right {
        width: 50vw;
        order: 2;
    }
    #photo-grid {
        width: 100%;
    }
    .grid-photo-wrapper {
        width: 25vw;
    }
    #about-left {
        padding: 1rem;
    }


    #expect .submenu-item p, #expect .submenu-item ol, #expect .submenu-item ul  {
        max-width: 54ch;
    }



    #four-steps .table {
        max-width: 82ch;
        margin-left: auto;
        margin-right: auto;
    }



    #testimonials .table {
        grid-template-columns: 2fr 1fr;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .a{
        order: 4;
    }
    .b{
        order: 1;
    }
    .c{
        order: 2;
    }
    .d{
        order: 6;
    }
    .e{
        order: 5;
    }
    .f{
        order: 3;
    }

    #business {
        margin-bottom: -22vw;
    }
    #business .mid-layer {
        max-width: 68ch;
        transform: translateY(-30vw);
    }
    #faq{
        margin-top: 5vw;
    }



}








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


    
}


















        /* 
    .a {
        grid-column-start: 3;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 3;
        background-color: red;
    }
    .b {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 2;
    }
    .c {
        grid-column-start: 3;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 1;
    }

    .d {
        grid-column-start: 3;
        grid-column-end: 3;
        grid-row-start: 4;
        grid-row-end: 4;
    }
    .e {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 3;
        grid-row-end: 4;
    } */

    
    
    
    /* PARALLAX */
    /* ******************** */
    
/*     
    .parallax-wrapper {
        height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        perspective: 200px;
    }
    
    .parallax-group {
        position: relative;
        height: 65vh;
        transform-style: preserve-3d;
    }
    
    .parallax-layer {
        position: absolute;
        inset: 0;
    }
    
    .base-layer {
        transform: translateZ(-200px) scale(2.5);
        z-index: -10;
    }
    
    .mid-layer {
        transform: translateZ(0);
        z-index: 0;
    }
*/

    /* HERO */
    /* ******************** */
/* 
    .hero {
        height: calc(100vh - 5.5rem);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        background-color: var(--color-light-grey);
        color: var(--color-white);
        text-align: center;
    }

    .hero-bg {
        background-color: rgba(0, 0, 0 , 0.2);
        background-image: url("../media/colorful-flower.jpeg");
        background-blend-mode: multiply;
    }

    .bg-img {
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        z-index: -10;
        min-height: 100%;
    } */


    /* SUB HERO */
    /* ******************** */
/* 
    .sub-hero {
        padding-top: 3rem;
    }
    .sub-hero h1, .sub-hero h2 {
        font-size: 2.5em;
    }
    .sub-hero p {
    max-width: 64ch;
    font-size: 1.4em;
    line-height: 1.2em;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-grey);
    }    
    
    */


    /* DAISY QUOTE */
    /* ******************** */
/* 
    #daisy-quote {
        z-index: -5;
        text-align: center;
    }

    .quote-bg {
        background-image: url("../media/leap-of-faith.webp");
        background-color: rgba(0, 0, 0 , 0.2);
        background-blend-mode: multiply;
    }
    #daisy-quote p:nth-child(1) {
        padding-top: 15rem;
    }

    #daisy-quote p:nth-child(2) {
        padding-bottom: 15rem;
    }    
    */


/* } */






