* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* scroll-snap-type: y mandatory; */
}

body {
    font-family: var(--font-default);
    color: var(--color-default);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: inherit;
}

h1 {
    font-size: calc(2.5em * var(--text-multiplier));
    font-family: var(--font-oswald_m);
}

h2 {
    font-size: calc(5.4em * var(--text-multiplier));
    text-transform: uppercase;
    font-family: var(--font-oswald_m);
}

h3 {
    font-size: calc(1.8em * var(--text-multiplier));
    font-family: var(--font-oswald_m);
}

h4 {
    font-size: calc(1.1em * var(--text-multiplier));
}

h5 {
    font-family: var(--font-oswald_m);
    font-weight: bold;
    font-size: calc(1.4em * var(--text-multiplier));
}

h6 {
    font-family: var(--font-jetbrain_m);
    font-weight: bold;
    font-size: calc(1.2em * var(--text-multiplier));
}

p {
    font-size: calc((1.1em * var(--text-paragraph)));
    font-family: var(--font-jetbrain_m);
    font-weight: 200;
    color: var(--color-default);
    line-height: calc((20px * var(--lineheight-paragraph)));
}

a {
    color: var(--color-default) !important;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    margin-bottom: 0 !important;
    padding: 0;
    list-style: none;
}

img {
    width: 100%
}

.txtupper {
    text-transform: uppercase;
}

.active {
    display: blocK !important;
}

.underline {
    text-decoration: underline;
}

/* Mousr Cursor */
.cursor {
    display: none;
    width: 50px;
    height: 50px;
    border: 2px solid #f2f2f2;
    border-radius: 50%;
    position: fixed;
    z-index: 20000;
    pointer-events: none;
}

.test {
    width: 100%;
    height: 200px;
    background: #ccc;
    color: #fff;
    font-size: 4em;
}

.test img {
    width: 100%;
}

.square {
    font-size: 12px;
}
/* section, .section {
    height: 100vh;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
} */

/* .reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}
.reveal.active {
    transform: translateY(0);
    opacity: 1;
} */
.pc{}
.mobile {display: none;}
/* Screen Responsive */
:root {
    --text-multiplier: 1.8;
    --text-paragraph: 1;
    --lineheight-paragraph: 1.75;
}

@media screen and (max-width: 1200px) {
    :root {
        --text-multiplier: 1.4;
        --text-paragraph: 1;
        --lineheight-paragraph: 1.6;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --text-multiplier: 1.3;
        --text-paragraph: 1;
        --lineheight-paragraph: 1.5;
    }
}

@media screen and (max-width: 720px) {
    .pc{display: none;}
.mobile {display: block;}
    :root {
        --text-multiplier: 1.2;
        --text-paragraph: 0.9;
        --lineheight-paragraph: 1.4;
    }
    
}

@media screen and (max-width: 460px) {

    :root {
        --text-multiplier: 0.8;
        --text-paragraph: 0.9;
        --lineheight-paragraph: 1.3;
    }
}