@font-face {
    font-family: "WW Type Web";
    src: url("../fonts/wwtypeweb-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "WW Type Web";
    src: url("../fonts/wwtypeweb-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Entypo Fontello Enfold";
    src: url("../fonts/entypo-fontello-enfold.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

:root {
    --font-primary: "WW Type Web", Arial, sans-serif;
    --font-icon: "Entypo Fontello Enfold";
    --color-bg: #f9f9f9;
    --color-surface: rgb(255, 255, 255);
    --color-surface-mid: #f8f8f8;
    --color-surface-high: #ededed;
    --color-text: #1a1c1c;
    --color-text-soft: #5f5e5e;
    --color-text-faint: #b89e9e;
    --color-brand: #ff5f00;
    --color-brand-deep: #a63b00;
    --color-brand-soft: #ffdbce;
    --color-outline: #e4bfb1;
    --color-dark: #171717;
    --color-dark-soft: #252525;
    --shadow-soft: 0 8px 32px rgba(26, 28, 28, 0.04);
    --shadow-deep: 0 22px 60px rgba(26, 28, 28, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shell: min(1280px, calc(100vw - 48px));
    --site-padding: 0 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.55;
}

.mw{
    width: 100%;
    max-width: 1500px;
}

section{
    width: 100%;
    height: max-content;
}
.holder{
    padding: 100px 16px;
    width: 100%;
    max-width: 1500px;
}

.txt-holder{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heading{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.mini-heading{
    background-color: var(--color-brand);
    display: flex;
    justify-content: center;
    padding: 3px 20px;
    width: max-content;
    min-width: 150px;
    opacity: 80%;
    font-size: .8rem;
    color: var(--color-surface);
    border-radius: 5px;
}

input::placeholder,
textarea::placeholder{
    font-family: var(--font-primary);
}



/* colors */
.white{
    color: var(--color-surface);
}
.text{
    color: var(--color-text);
}
.text-light{
    color: var(--color-text);
    opacity: 70%;
}
.accent{
    color: var(--color-brand);
}

/* fonts */
.size-small{
    font-size: .9rem;
}
.size-medium{
    font-size: 1.1rem;
}
.size-big{
    font-size: 1.3rem;
}
.size-normal{
    font-size: 1rem;
}

.weight-small{
    font-weight: 400;
}
.weight-medium{
    font-weight: 700;
}
.weight-bold{
    font-weight: 700;
}


a,
p{
    text-decoration: none;
    line-height: 1.7;
}



h2,
h3{
    font-size: 2rem;
    color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}


h1 span,
h2 span,
h3 span{
    color: var(--color-brand);
}


/* button */
.btn{
    padding: 10px 20px;
    background-color: var(--color-brand);
    font-size: 1rem;
    font-weight: 700;
    outline: 0;
    border: 0;
    border-radius: 7px;
    color: var(--color-surface);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    width: max-content;
    text-shadow: 0 0 1px #942605;
    transition: background-color 0.3s;
}
.btn:hover{
    background-color: #fc7e51;
    text-decoration: underline;
    text-decoration-color: var(--color-surface);
    text-underline-offset: 4px;
}



.hero-nav-spacer{
    width: 100%;
    background: transparent;
    height: 110px;
}
@media(max-width: 1000px){
    .hero-nav-spacer{
        height: 80px;
    }
}

