@font-face {
    font-family: Helvetica;
    src: url("../assets/fonts/Helvetica/fonts/ttc/variable.ttc");
}

@font-face {
    font-family: NotoSans;
    src: url("../assets/fonts/NotoSans/fonts/ttf/regular.ttf");
}

:root {
    --color-01: #fe4b00;
    --color-02: #fff2ec;
    --color-03: #fcfbfb;
    --color-04: #FFFFFF;
    --color-05: #F0F0F0;
    --color-06: #b8b8b8;
    --color-07: #424142;
    --color-08: #191919;
    --color-09: #111216;
    --color-10: #11aa00;
    --color-11: #f87676;

    --radius-xxs: 2px;
    --radius-xs: 4px;
    --radius-s: 8px;
    --radius-m: 16px;
    --radius-l: 32px;
    --radius-xl: 40px;
    --radius-xxl: 48px;

    --font-size-xxs: 8px;
    --font-size-xs: 12px;
    --font-size-s: 14px;
    --font-size-m: 18px;
    --font-size-l: 20px;
    --font-size-xl: 28px;
    --font-size-xxl: 32px;
    --font-size-xxxl: 48px;

    --space-xxxs: 2px;
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-s: 12px;
    --space-m: 20px;
    --space-l: 24px;
    --space-xl: 28px;
    --space-xxl: 40px;
    --space-xxxl: 48px;

    --transition-01: 0.2s;
    --transition-02: 0.4s;
    --transition-03: 0.8s;
    --transition-04: 1.2s;
}

::selection {
    color: #FFFFFF;

    background-color: var(--color-01);
    
    text-shadow: none;
}

::-webkit-selection {
    color: #FFFFFF;

    background-color: var(--color-01);
    
    text-shadow: none;
}

::-moz-selection {
    color: #FFFFFF;

    background-color: var(--color-01);
    
    text-shadow: none;
}

::placeholder {
    color: var(--color-06);

    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--color-06);
}
  
::-ms-input-placeholder {
    color: var(--color-06);
}

* {
    font-family: NotoSans, Helvetica, Arial, sans-serif;
    font-weight: 300;

    letter-spacing: 1.4px;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::-webkit-scrollbar,
*::-webkit-scrollbar-track,
*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-button {
    display: none;
}

html {
    height: 100%;

    overflow-x: hidden;
    
    scroll-behavior: smooth;
}

body {
    height: 100%;

    margin: 0;

    overflow-x: hidden;
}

main {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow-x: hidden;
    overflow-y: auto;
}

h1 {
    color: var(--color-07);

    line-height: 1.2;

    margin: 0;
}

h2 {
    color: var(--color-07);

    line-height: 1.2;

    margin: 0;
}

h3, h4, h5, h6 {
    color: var(--color-07);

    font-size: var(--font-size-m);

    line-height: 1.6;

    margin: 0;
}

p {
    color: var(--color-07);

    font-size: var(--font-size-m);

    line-height: 1.6;

    margin: 0;
}

span {
    color: var(--color-07);

    font-size: var(--font-size-m);

    line-height: 1.6;
}

a {
    color: var(--color-07);

    font-size: var(--font-size-m);
    
    line-height: 1.6;

    text-decoration: none;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

b {
    font-weight: 800;
}

select {
    color: var(--color-06);
    
    cursor: pointer;
    
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input {
    font-size: var(--font-size-m);
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;

    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    cursor: pointer;

    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type="checkbox"]::after {
    width: 8px;
    height: 8px;

    content: "";

    background-image: url("../media/components/checkmark-default.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

input[type="checkbox"]:checked {
    border: 1px solid var(--color-01);

    background-color: var(--color-01);
}

input[type="checkbox"]:checked::after {
    background-image: url("../media/components/checkmark-checked.svg");
}

input[type="submit"] {
    cursor: pointer;

    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

label {
    color: rgba(255, 255, 255, 0.8);
    
    font-size: var(--font-size-m);
}

button {
    border: none;

    color: var(--color-06);
    
    background: none;

    font-size: var(--font-size-m);

    padding: 0;

    margin: 0;

    cursor: pointer;

    user-select: none;

    -webkit-user-drag: none;
}

ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

ol {
    padding: 0;

    margin: 0;

    list-style: none;
    list-style-position: inside
}

li {
    color: var(--color-06);

    font-size: var(--font-size-m);
    font-weight: 400;
    
    line-height: 1.6;
}

img {
    object-fit: cover;
    object-position: center;
}

video {
    object-fit: cover;
    object-position: center;
}

.swiper-pagination-bullet {
    width: auto !important;
    height: auto !important;
    
    border-radius: 0 !important;
    
    background: none !important;
    
    opacity: 1 !important;
    
    margin: 0 !important;
}

@media (max-width: 1280px) {
    
}

@media (max-width: 1024px) {
    :root {
        --space-xxxl: 40px;
    }

    body::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-m: 16px;
        --font-size-l: 20px;
        --font-size-xxxl: 32px;
        
        --space-xxl: 32px;
        --space-xxxl: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-xl: 24px;
        --font-size-xxl: 24px;
        --font-size-xxxl: 24px;
        
        --space-xl: 24px;
        --space-xxl: 24px;
        --space-xxxl: 24px;
    }
}