@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Barcode+39+Text&display=swap');


/* Color variables */

:root {
    --color-primary: #C10097;/**/
    --color-secondary: #0c0e1e;/**/

    --color-tertiary: #272727;

    --color-grey: #f5f5f5;/**/
    --color-one: #FF72E0;/**/
    --color-two: #00FFC2;/**/
    --color-three: #FFD600;/**/
    --color-four: #5CF5FF;/**/

    --color-light: #FFFFFF;
    --color-dark: #000000;
    --font-color-primary: #353535;
    --font-color-secondary: #5CF5FF;
    --font-color-light: #FFFFFF;
    --font-color-link: #000000;
    --font-color-hover: #C10097;/**/
    --font-color-input: #727272;/**/

    --color-shadow: rgba( 56, 56, 56, 0.1);

    --color-background: #FFFFFF;
/* 
    --color-background: #f7f7f7; */
}

/* Core */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    outline: 0;
    resize: none;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
*:after, *:before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Varela Round', Arial, sans-serif; */
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 130%;
    color: var(--color-secondary);
}

main {
    background-color: var(--color-background);
    padding-top: 60px;
}

/* Flexbox */

section {
    display: flex;
}

div {
    display: block;
}

section > .container {
    flex-direction: column;
}

.container {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1410px;
    margin: auto;
    padding: 0 30px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 calc(30px / 2);
    }
}

.container .row {
    padding: 30px 0;
}

.container .row .row {
    padding: calc(30px / 2) 0;
}

.row.no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 769px) {
    .row {
        flex-direction: row;
    }
}

.row > .col {
    display: flex;
    flex-basis: 0%;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 100%;
    padding: 0 15px;
    flex: 0 0 auto;
}

.row > .col--1 {
    flex: 0 0 auto;
    width: 100%;
}
.row > .col--1\/2 {
    width: 50%;
}
.row > .col--1\/3 {
    width: 33.33333%;
}
.row > .col--2\/3 {
    width: 66.66666%;
}
.row > .col--1\/4 {
    width: 25%;
}
.row > .col--3\/4 {
    width: 75%;
}
.row > .col--2\/5 {
    width: 40%;
}
.row > .col--3\/5 {
    width: 60%;
}

@media (max-width: 769px) {
    .row > .col--sm-1\/4 {
        width: 25%;
    }
    .row > .col--sm-1\/3 {
        width: 33.33333%;
    }
    .row > .col--sm-1\/2 {
        width: 50%;
    }
    .row > .col--sm-1 {
        width: 100%;
    }
}
@media (min-width: 769px) {
    .row > .col--md-1\/4 {
        width: 25%;
    }
    .row > .col--md-1\/3 {
        width: 33.33333%;
    }
    .row > .col--md-5\/12 {
        width: 41.66667%;
    }
    .row > .col--md-1\/2 {
        width: 50%;
    }
    .row > .col--md-7\/12 {
        width: 58.33333%;
    }
    .row > .col--md-1 {
        width: 100%;
    }
    .row > .col--md-2\/5 {
        width: 40%;
    }
    .row > .col--md-3\/5 {
        width: 60%;
    }
}
@media (min-width: 1024px) {
    .row > .col--lg-1\/5 {
        width: 20%;
    }
    .row > .col--lg-1\/4 {
        width: 25%;
    }
    .row > .col--lg-1\/3 {
        width: 33.33333%;
    }
    .row > .col--lg-5\/12 {
        width: 41.66667%;
    }
    .row > .col--lg-1 {
        width: 100%;
    }
    .row > .col--lg-2\/5 {
        width: 40%;
    }
    .row > .col--lg-3\/5 {
        width: 60%;
    }
}

/* Fonts & colors */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    /* font-family: 'PT sans', sans-serif; */
    font-family: 'Koulen', sans-serif;
    font-weight: 100;
}

h1, .h1 {
    font-size: 3.75rem;
    line-height: 4rem;
}
h2, .h2 {
    font-size: 3rem;
    line-height: 110%;
}
h3, .h3 {
    font-size: 2.75rem;
    line-height: 110%;
}
h4, .h4 {
    font-size: 2.25rem;
    line-height: 110%;
}
h5, .h5 {
    font-size: 1.75rem;
    line-height: 110%;
}
h6, .h6 {
    font-size: 1.5rem;
    line-height: 110%;
}

.subtitle {
    font-family: 'Unica One', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    color: var(--font-color-primary);
}

span {}

span.title-color {
    color: var(--color-primary);
}

ins {}
strong {
    font-weight: 800;
}

a {
    color: var(--font-color-link);
}

a:hover {
    color: var(--font-color-hover);
}

a:focus {
    color: var(--font-color-primary);
}

label, input, textarea, select {
    color: var(--font-color-input);
    cursor: pointer;
    font-family: 'Work Sans', Arial, sans-serif;
    transition: all .2s ease;
    touch-action: manipulation;
}

label {
    color: var(--color-secondary);
    font-family: 'Koulen', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
}

input, textarea {
    cursor: text;
    border: 1px solid rgba( 56, 56, 56, 0.2);
    border-radius: 3px;
    padding: 0.5rem;
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

a.button {
    text-decoration: none;
    max-width: fit-content;
}

a.button:hover .btn {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

a.button:hover .btn-secondary, button:hover.btn-secondary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-light);
    font-weight: 500;
}

.btn {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-primary);
    border-radius: 5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    font-weight: 600;
}


/* Images & icons */

figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.icon {
    width: 1rem;
    height: 1rem;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
}

.social-icons .social-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: .25rem .25rem .25rem 0;
}

.social-icons .social-icon img {
    width: 100%;
    height: 100%;
}

/*  */

.hidden {
    display: none !important;
}


@media (max-width: 769px) {
    .md-down-hidden {
        display: none !important;
    }
}
@media (min-width: 769px) {
    .md-hidden {
        display: none !important;
    }
}

/* max-width * aspect-ratio */
.full-width {
    width: 100vw;
    max-width: unset;
    height: calc(100vw * (9/16));
    max-height: calc(800px * (9/16));
}

.justify-center {
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Nav-header navbar */

#site-header {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
}

#site-header {
    background-color: var(--color-light);
    box-shadow: 0 4px 10px var(--color-shadow);
}

#site-header #header-main {
    display: flex;
    background-color: var(--color-light);
    color: var(--font-color-primary);
    width: 100%;
    justify-content: space-between;
    z-index: 1;
    font-family: 'Zilla Slab', serif;
}

#site-header #header-main .menu-toggle-button {
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    display: block;
    margin-top: 10px;
}

#site-header #header-main .nav .logo + .menu-toggle-button {
    display: none;
}
@media (max-width: 1024px) {
    #site-header #header-main .nav .logo + .menu-toggle-button {
        display: block;
        order: 3;
    }
}

#site-header #header-main .nav {
    display: flex;
    height: 60px;
    line-height: 80px;
    justify-content: space-between;
    font-family: 'Koulen', sans-serif;
    font-size: 1rem;
}

#site-header #header-main .nav li {
    align-self: center;
    margin: 0 30px;
}

#site-header #header-main .nav a, #site-header #header-main .nav a span {
    text-decoration: none;
}
#site-header #header-main .nav a:hover {
    transform: scale(1.125);
}

#site-header #header-main .logo {
    max-height: 60px;
    display: flex;
}

#site-header #header-main .logo a {
    display: flex;
    text-decoration: none;
    align-items: center;
}

#site-header #header-main .logo a span {
    /* font-family: 'Dancing Script', sans-serif; */
    font-family: 'Koulen', sans-serif;
    font-weight: 300;
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    #site-header #header-main .nav {
        height: 40px;
        line-height: 40px;
        margin-left: auto;
        margin-top: 10px;
    }

    #site-header #header-main .nav li {
        display: none;
    }
}

#site-header #header-main .nav li a {
    color: var(--font-color-link);
    display: block;
    line-height: 1.25rem;
    padding: 1rem;
}

#site-header #header-main .nav-buttons {
    align-self: center;
    display: flex;
    gap: 1rem;
}

#site-header #header-main nav #main-navigation li.nav-button {
    display: none;
}
@media (max-width: 1024px) {
    #site-header #header-main nav #main-navigation li.nav-button {
        display: block;
    }
    #site-header #header-main nav #main-navigation li.search-toggle {
        height: 40px;
        display: block;
        margin-left: 0.5rem;
        padding: 0 0.5rem;
        padding-bottom: 0;
    }
}

#site-header #header-main nav #main-navigation li.nav-button a {
    border: none;
    line-height: 1rem;
    padding: 0.75rem;
    height: auto;
}

#site-header #header-main nav #main-navigation .has-sub {
    padding-right: 1rem;
}

#site-header #header-main nav #main-navigation .sub-menu {
    transition: 150ms all ease-in-out;
    background-color: var(--color-light);
    padding: 5px;
    pointer-events: none;
    position: absolute;
    z-index: 100;
    margin-top: 50px;
    min-width: 200px;
    visibility: hidden;
}

.search-toggle {
    cursor: pointer;
    height: 60px;
    line-height: 40px;
    padding: 0 1rem;
    padding-bottom: 20px;
}

#site-header #side-navigation {
    position: fixed;
    height: calc(100% - 60px);
    top: 0;
    bottom: 0;
    height: 100%;
    width: 90%;
    z-index: 10;
    background-color: var(--color-light);
    transform: translateX(-100%);
    box-shadow: 0 4px 4px var(--color-shadow);
    transition: transform .2s ease-out, left 0s ease-out, right 0s ease-out, visibility .1s ease-out;
    visibility: hidden;
}

@media (min-width: 769px) {
    #site-header #side-navigation {
        left: 0;
        width: 30rem;
    }
}

#site-header #side-navigation .dynamic-wrapper {
    display: flex;
    height: 100%;
}

#site-header #side-navigation .dynamic-wrapper .nav-controller {
    padding: 1rem;
    flex-basis: 10%;
}

#site-header #side-navigation .navs-wrapper {
    position: relative;
    height: 100%;
    flex-basis: 100%;
    overflow: hidden;
}

#site-header #side-navigation .navs-wrapper nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-light);
}

#site-header #side-navigation .navs-wrapper .root-navigation {
    height: 100%;
}

#site-header #side-navigation .navs-wrapper .root-navigation .navigation-wrapper {
    height: 100%;
    padding: 1rem;
}

#site-header #side-navigation .navs-wrapper nav li {
    display: block;
    position: static;
}

#site-header #side-navigation .navs-wrapper nav li a,
#site-header #side-navigation .navs-wrapper nav li label {
    color: var(--font-color-link);
    padding: 1rem 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

#site-header #side-navigation .navs-wrapper nav li.has-sub {
    display: flex;
    width: 100%;
}

#site-header #side-menu-switch:checked ~ #side-navigation {
    transform: translateX(0%);
    visibility: visible;
}

footer .container .row {
    padding: 15px 0;
}

footer .copyright {
    opacity: 0.6;
    font-size: 0.875rem;
}

footer .footer-logo {
    text-decoration: none;
    color: var(--color-secondary);
    padding: 0 10px;
    font-size: 0.75rem;
    
}