/* 
    Elements 
*/

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-weight: 600;
    font-family: "ABC Diatype", Helvetica, Arial, sans-serif;
    background-color: rgba(20, 20, 20, 1);
    color: white;
}

/* body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
} */


.page-min-height {
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
caption,
a {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

a {
    color: inherit;
    cursor: pointer;
    transition: color 300ms;
}

a:hover {
    opacity: 0.7;
}

a.expand-target::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration-skip-ink: auto;
}

button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
    color: inherit;
}

ul {
    /* list-style: none; */
    padding: 0;
    margin: 0;
}

table th,
table tr,
table td {}


small {
    font-size: 60%;
}

strong {
    font-weight: 600;
}


address {
    font-style: normal;
}

figure {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}

img.expand {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;

}

img.rounded {
    border-radius: 2px;
}

video {
    width: 100%;
    height: auto;
}

caption {
    text-align: left;
}

::selection {
    background-color: rgb(50, 50, 50);
    color: white;
}

.no-scroll {
    overflow: hidden;
}

hr {
    width: 100%;
    border: 0;
    background-color: black;
    height: 1px;
    margin: 0;
}

/* 
    Inputs 
*/

input[type="range"] {
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    accent-color: white;
    z-index: 1;
    position: relative;

}

input[type="range"]::before {
    content: " ";
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -2;
    border-radius: 4px;
}

input[type="range"]::after {
    content: " ";
    height: 8px;
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    top: 50%;
    left: 0;
    width: var(--progress, 0);
    z-index: -1;
    border-radius: 4px;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    height: 1rem;
    width: 100%;
}

input[type="range"]::-moz-range-track {
    background: transparent;
    /* background: rgba(245, 71, 0, 1);; */
    height: 1rem;
    width: 100%;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: 8px;
    height: 8px;
    width: 8px;
    border-radius: 0.5rem;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0);
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: 8px;
    height: 8px;
    width: 8px;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0);
}



/* 
    Colors (c)
*/
.c-primary {
    color: var(--primaryColor);
}

.c-secondary {
    color: var(--secondaryColor);
}

.c-darkgray {
    color: rgb(163, 163, 163);
}

.c-gray {
    color: rgb(163, 163, 163);
}

.c-lightgray {
    color: rgb(163, 163, 163);
}

/* 
    Display 
*/

.inline {
    display: inline;
}

.block {
    display: block;
}

.flex {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.justify-space-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

/* Hide mobile */

.hide-mobile {
    display: none;
}

.hide-only-mobile {
    display: none;
}

/* Tablet (> 768px) */
@media (min-width: 48em) {
    .hide-only-mobile {
        display: block;
    }
}

@media (min-width: 48em) {
    .hide-mobile {
        display: block;
    }

    .hide-desktop {
        display: none;
    }

    .header-search svg {
        width: 1.5rem;
        height: auto;
        float: right;
        margin-right: 1rem;
    }
}


/* Laptop (> 1024px) */
@media (min-width: 64em) {
    .hide-mobile {
        display: block;
    }
}

@media (min-width: 64rem) {
    .hide-desktop {
        display: none;
    }
}


/* 
    Padding 
*/

.pad-xs {
    padding: 16px 1rem;
}

.pad-s {
    padding: 20px 1.25rem;
}

.pad-m {
    padding: 32px 2rem;
}

.pad-l {
    padding: 48px 3rem;
}

.pad-xl {
    padding: 64px 4rem;
}

/* Laptop (> 1024px) */
@media only screen and (min-width: 64rem) {
    .pad-xs {
        padding: 16px 1rem;
    }
    
    .pad-s {
        padding: 20px 1.25rem;
    }
    
    .pad-m {
        padding: 32px 2rem;
    }
    
    .pad-l {
        padding: 48px 3rem;
    }
    
    .pad-xl {
        padding: 64px 4rem;
    }
}

/* Desktop 4K */
@media only screen and (min-width: 92rem) {
    .pad-right-s-desk {
        padding-right: 1rem ;
    }

    .pad-right-m-desk {
        padding-right: 2rem ;
    }

    .pad-right-l-desk {
        padding-right: 4rem ;
    }
}


/* 
    Margins 
*/

.mar-xs {
    margin: 12px;
}

.mar-s {
    margin: 16px;
}

.mar-m {
    margin: 32px;
}

.mar-l {
    margin: 48px;
}

.mar-xl {
    margin: 64px;
}

.mar-top-xxs {
    margin-top: 0.2rem;
}

.mar-top-xs {
    margin-top: 0.4rem;
}

.mar-top-xs-mob {
    margin-top: 0.4rem;
}

.mar-top-s {
    margin-top: 1rem;
}

.mar-top-s-mob {
    margin-top: 0.1rem;
}

.mar-top-m {
    margin-top: 2rem;
}

.mar-top-l {
    margin-top: 3rem;
}

.mar-top-xl {
    margin-top: 5rem;
}

.search-page-content .mar-top-xl {
    margin-top: 0rem;
}

.mar-top-xxl {
    margin-top: 9rem;
}

.mar-bot-xxs {
    margin-bottom: 0.5rem;
}

.mar-bot-xs {
    margin-bottom: 0.75rem;
}

.mar-bot-xs-mob {
    margin-bottom: 0.75rem;
}

.mar-bot-s {
    margin-bottom: 1rem;
}

.mar-bot-s-mob {
    margin-bottom: 0.6rem;
}

.mar-bot-m {
    margin-bottom: 2rem;
}

.mar-bot-m-mob {
    margin-bottom: 3rem;
}

.mar-bot-l {
    margin-bottom: 3rem;
}

.mar-bot-xl {
    margin-bottom: 5rem;
}

.mar-bot-xxl {
    margin-bottom: 9rem;
}

.mar-right-xs {
    margin-right: 0.5rem;
}

.mar-right-s {
    margin-right: 1rem;
}

.mar-right-s-mob {
    margin-right: 0rem;
}

.mar-right-m {
    margin-right: 2rem;
}

.mar-right-l {
    margin-right: 3rem;
}

.mar-right-xl {
    margin-right: 4rem;
}

.mar-left-xs {
    margin-left: 0.5rem;
}

.mar-left-s {
    margin-left: 1rem;
}

.mar-left-s-mob {
    margin-left: 0rem;
}

.mar-left-m {
    margin-left: 2rem;
}

.mar-left-l {
    margin-left: 3rem;
}

.mar-left-xl {
    margin-left: 4rem;
}

/* Laptop (> 1024px) */
@media only screen and (min-width: 64rem) {

    /* Margins Main, Footer */

    .mar-bot-main {
        margin-top: 6em;
    }

    .mar-top-footer {
        margin-top: 15em;
    }

    /* Margins Sizes */

    .mar-xs {
        margin: 12px;
    }

    .mar-s {
        margin: 16px;
    }

    .mar-m {
        margin: 32px;
    }

    .mar-l {
        margin: 48px;
    }

    .mar-xl {
        margin: 64px;
    }

    .mar-top-xxs {
        margin-top: 0.2rem;
    }

    .mar-top-xs {
        margin-top: 0.4rem;
    }

    .mar-top-xs-mob {
        margin-top: 0rem;
    }

    .mar-top-s {
        margin-top: 1rem;
    }

    .mar-top-s-mob {
        margin-top: 1rem;
    }

    .mar-top-m {
        margin-top: 2rem;
    }

    .mar-top-l {
        margin-top: 3rem;
    }

    .mar-top-xl {
        margin-top: 4rem;
    }

    .mar-top-xxl {
        margin-top: 12rem;
    }

    .mar-bot-xxs {
        margin-bottom: 0.5rem;
    }

    .mar-bot-xs {
        margin-bottom: 0.75rem;
    }

    .mar-bot-xs-mob {
        margin-bottom: 0rem;
    }

    .mar-bot-s {
        margin-bottom: 1rem;
    }

    .mar-bot-s-mob {
        margin-bottom: 1rem;
    }

    .mar-bot-m {
        margin-bottom: 2rem;
    }

    .mar-bot-l {
        margin-bottom: 3rem;
    }

    .mar-bot-xl {
        margin-bottom: 5rem;
    }

    .mar-right-xs {
        margin-right: 0.5rem;
    }

    .mar-right-s {
        margin-right: 1rem;
    }

    .mar-right-s-mob {
        margin-right: 1rem;
    }

    .mar-right-m {
        margin-right: 2rem;
    }

    .mar-right-l {
        margin-right: 3rem;
    }

    .mar-right-xl {
        margin-right: 4rem;
    }

    .mar-left-xs {
        margin-left: 0.5rem;
    }

    .mar-left-s {
        margin-left: 1rem;
    }

    .mar-left-s-mob {
        margin-left: 1rem;
    }

    .mar-left-m {
        margin-left: 2rem;
    }

    .mar-left-l {
        margin-left: 3rem;
    }

    .mar-left-xl {
        margin-left: 4rem;
    }
}

/* Desktop 4K */
@media only screen and (min-width: 92rem) {
    .mar-left-s-max {
        margin-left: 0.5rem;
    }

    .mar-top-xxl {
        margin-top: 16rem;
    }

    .mar-bot-xxs {
        margin-bottom: 0.8rem;
    }
}

/* Blockquote */

blockquote {
    display: block;
    margin-block-start: 0.25em;
    margin-block-end: 2.5em;
    margin-inline-start: 10px;
    margin-inline-end: 10px;
}

/* Laptop (> 1024px) */
@media only screen and (min-width: 64rem){

    blockquote {
        display: block;
        margin-block-start: 0.5em;
        margin-block-end: 2em;
        margin-inline-start: 3rem;
        margin-inline-end: 2rem;
    }
}


/*
    Align
*/

.align-center {
    align-items: center;
}

/* 
    Accessibility 
*/

.sr-only {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    /* 1 */
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    /* 2 */
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
    /* 3 */
}