/* Elements */

body {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 18pt;
}

body {
    background-color: #000;
    color: #fff;
    transition:background-color 0.5s linear;
}

.light{
    background-color: #fff;
    color: #000;
    transition:background-color 0.5s linear;
}


a,
a:active {
    color: #666;
}

a:hover {
    color: #FFF;
}

td {
    text-align: center;
}

section {
    background-color: #000;
    z-index: 1;
    position: relative;
    box-shadow: 0px 10px 20px 7px #00000087;
}



/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 60pt;
}

h2 {
    font-size: 40pt;
}

h3 {
    font-size: 30pt;
}

h4 {
    font-size: 20pt;
}

h5 {
    font-size: 18pt;
}

h6 {
    font-size: 16pt;
}

.small {
    font-size: 12pt;
}

.bold {
    font-weight: 700;
}

.dim
{
    color: #555;
}

.title {
    font-size: 120pt;
}

.subtitle {
    font-size: 24pt;
    color: #777;
}

.heading-light {
    font-size: 24pt;
}

.center {
    text-align: center;
}

.quote {
    font-style: italic;
}

.order-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 18pt;
    font-style: italic;
}

/* Element Wrappers */

.example-wrapper {
    border: 1px #FFF solid;
    border-radius: 10px;
    padding: 10px;
    width: fit-content;
}

.icon-bubble
{
    border-radius: 30px;
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 1rem;
    text-align: center;
    display: inline-block;
    border: white solid 1px;
}

.quote-block
{
    background-color: #000;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0px 10px 20px 7px #00000087;
    font-size: 20pt;
    position: relative;
    text-align: center;
    font-style: italic;
}

.quote-block::before
{
    color: #444;
    content: '\201C';
    position: absolute;
    top: -55px;
    left: -19px;
    font-size: 100pt;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
}

.quote-block::after
{
    color: #444;
    content: '\201D';
    position: absolute;
    height: 20px;
    right: -13px;
    bottom: 65px;
    font-size: 100pt;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
}

.counter-container
{
    background-color: #111;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0px 10px 20px 7px #00000087;
    font-size: 12pt;
}
.counter {
    font-family: "Major Mono Display", monospace;
    font-weight: 400;
    font-size: 30pt;
}

.title-with-icon
{
    display: flex;
    align-items: center;
}


/* Menu */

.menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.menu a {
    color: #777;
    text-decoration: none;
}

.menu a:hover {
    color: #fff;
    text-decoration: none;
}

#menuToggle {
    display: block;
    position: fixed;
    top: 50px;
    left: 50px;

    z-index: 100;

    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a {
    text-decoration: none;
    color: #232323;

    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: #aaa;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #cdcdcd;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: absolute;
    max-width: 400px;
    width: 100vw;
    height: 100vh;
    margin: -77px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    box-sizing: border-box;
    overflow-y: auto;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
    padding: 10px 0;
    font-size: 22px;
}

#menu li label {
    cursor: pointer;
}

#menuToggle input:checked~ul {
    transform: none;
}



/* Layout */

.block {
    width: 800px;
    margin: auto;
    padding: 8rem 0;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-small {
    width: 800px;
    margin: auto;
    padding: 8rem 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p1{
    height: 200px;
    background-color: transparent;
}

.p2{
    height: 400px;
    background-color: transparent;
}

.p3{
    height: 600px;
}

.pi1{
    background-image: url(../img/background.jpg);
}

.pi2{
    background-image: url(../img/background-2.jpg);
}

.pi3{
    background-image: url(../img/background-3.jpg);
}

.pi4{
    background-image: url(../img/background-4.jpg);
}

.pi5{
    background-image: url(../img/background-5.jpg);
}

.pi6{
    background-image: url(../img/background-6.jpg);
}

.pi7{
    background-image: url(../img/background-7.jpg);
}

#chevron-arrow-down {
    display: inline-block;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    width: 15px;
    height: 15px;
    transform: rotate(-315deg);
}

.mt-6
{
    margin-top: 2.5rem;
}

.mt-7
{
    margin-top: 3rem;
}

.mt-8
{
    margin-top: 4rem;
}

.mt-9
{
    margin-top: 5rem;
}

.mb-6
{
    margin-bottom: 2.5rem;
}

.mb-7
{
    margin-bottom: 3rem;
}

.mb-8
{
    margin-bottom: 4rem;
}

.mb-9
{
    margin-bottom: 5rem;
}

.my-6
{
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.my-7
{
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.my-8
{
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.my-9
{
    margin-bottom: 5rem;
    margin-top: 5rem;
}


/* Media Queries */
@media (max-width: 1000px) {
    body {
        font-size: 15pt;
    }

    h1 {
        font-size: 40pt;
    }

    h2 {
        font-size: 30pt;
    }

    h3 {
        font-size: 25pt;
    }

    h4 {
        font-size: 20pt;
    }

    h5 {
        font-size: 18pt;
    }

    h6 {
        font-size: 15pt;
    }

    .title {
        font-size: 60pt;
    }

    .subtitle {
        font-size: 16pt;
        color: #777;
    }

    .heading-light {
        font-size: 18pt;
    }


    .block {
        width: 80%;
        margin: auto;
        padding: 8rem 0;
        min-height: 400px;
    }

    .block-small {
        width: 80%;
        margin: auto;
        padding: 8rem 0;
        min-height: 400px;
    }

    .quote-block
    {
        font-size: 16pt;
    }

    #menuToggle {
        position: absolute;
    }

    .btn {
        --bs-btn-font-size: 1.2rem;
    }

    .counter {
        font-size: 20pt;
    }
}

@media (max-width: 600px) {
    .counter {
        font-size: 12pt;
    }
}


/* Bootstrap Overrides */
.btn {
    --bs-btn-font-size: 1.5rem;
}

.accordion {
    --bs-accordion-color: #fff;
    --bs-accordion-bg: #000;
    --bs-accordion-border-color: #000;
    --bs-accordion-border-width: 0px;
    --bs-accordion-border-radius: 0.375rem;
    --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #fff;
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-focus-border-color: #000;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #fff;
    --bs-accordion-active-bg: #000;
}

.accordion-button {
    font-size: unset;
}

.accordion-button::after {
    filter: invert() grayscale();
}