@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Darker Grotesque", sans-serif;
    src: url('../fonts/DarkerGrotesque-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Darker Grotesque", sans-serif;
    src: url('../fonts/DarkerGrotesque-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-black: #0D0D0D;
    --color-white: #ffffff;
    --color-primary: #F24534;

    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Darker Grotesque', sans-serif;
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #F9F9FA;
}

p {
    font-family: var(--font-primary);
    margin: 0;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin: 0;
    font-weight: 600;
    line-height: 0.9;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
    font-weight: 800;
    color: var(--color-primary);
}

ul, ol {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.eyebrow-line {
    position: relative;
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
}

.eyebrow-line::after {
    content: '';
    display: inline-block;
    flex: 1;
    width: 100%;
    max-width: 404px;
    height: 1px;
    background: var(--color-white);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

button {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.btn {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 14px;
    width: fit-content;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.2;
    min-height: 36px;
}

.btn.red {
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
}

.btn.grey {
    background: transparent;
    color: #9D9D9D;
    font-size: 16px;
    border: 1px solid #9D9D9D;
}

.btn.red-border {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: #fff;
    font-size: 16px;
}

.btn.white {
    background: #fff;
    color: #000;
    font-size: 14px;
}

.hide-section {
    display: none !important;
}

/* newsletter popup */

.newsletter-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
}

.newsletter-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-popup__holder {
    background: #fff;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
}

.newsletter-popup__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}


.newsletter-popup {
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.newsletter-popup__text {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #383838;
}

.newsletter-popup__form {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.newsletter-popup__submit {
    border: 0;
    width: 100%;
}

.page-content {
    margin-top: 120px;
    margin-bottom: 120px;
}

.page-content p {
    font-size: 16px;
    color: #383838;
    line-height: 1.4;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 20px;
    margin-bottom: 20px;
}