@font-face {
    font-family: 'Instrument Sans';
    src: url('/site/templates/assets/fonts/InstrumentSans[wdth,wght].woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Champion Gothic';
    src: url('/site/templates/assets/fonts/ChampionGothicLightweight.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Champion Gothic';
    src: url('/site/templates/assets/fonts/ChampionGothicWelterweight.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Champion Gothic';
    src: url('/site/templates/assets/fonts/ChampionGothicMiddleweight.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Champion Gothic';
    src: url('/site/templates/assets/fonts/ChampionGothicHeavyweight.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Champion Gothic', sans-serif;
    font-weight: 700;
}

:root {
    --color-primary: #F9B629;
    --color-primary-hover: #FAC75B;

    --color-accent-red: #ff4f73;
    --color-accent-red-light: #FF6D8B;
    --color-accent-red-lighter: #FFA3B5;

    --color-accent-blue: #1374ed;
    --color-accent-blue-light: #4E8FF8;
    --color-accent-blue-lighter: #75ABF3;

    --color-accent-green: #3bddcc;
    --color-accent-green-light: #7CE8DD;
    --color-accent-green-lighter: #B1F1EA;

    --color-accent-purple: #616cd5;
    --color-accent-purple-light: #838DEA;
    --color-accent-purple-lighter: #B1B6F1;

    --color-neutral: #C4C4C4;

    --color-black: #000;
    --color-white: #fff;
}

.container {
    max-width: 1200px !important;
}

.container-sm {
    max-width: 900px !important;
}

body,
.is-boxed,
.body-wrap {
    background: var(--color-black);
}

body {
    color: var(--color-neutral);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--color-white);
}

h3 {
    font-size: 24px;
}

.text-sm {
    letter-spacing: 0.1px;
}

/* Button */
.button {
    font-family: 'Champion Gothic', sans-serif;
    font-weight: 700;
}

.button:not(.button-sm) {
    padding: 18px 32px;
    max-width: unset !important;
}

.button-sm {
    padding: 9px 26px;
}

.button-primary {
    background: var(--color-primary);
    color: var(--color-black) !important;
}

.button-primary:hover {
    background: var(--color-primary-hover);
}

/* Layout */
.layout-section .section-inner {
    text-align: left;
}

/* Header Button*/
.site-header-inner .button {
    background: transparent !important;
    border: 1px solid #fff;
    color: #fff !important;
}

.site-header-inner .button:hover {
    border: 1px solid #D9D9D9;
}

.site-header::before,
.features::before,
.site-footer::before {
    display: none;
}

/* Hero */
.hero-title {
    font-size: clamp(36px, 8vw, 63px);
    font-weight: 600;
    line-height: 115%;
}

.hero-paragraph {
    font-size: clamp(16px, 3.5vw, 21px);
    letter-spacing: 0.3px;
    line-height: 150%;
    margin-bottom: 26px;
}

/* Features */
.feature-title {
    font-weight: 600;
}

.feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-self: center;
    width: 80px;
    height: 80px;
}

.feature-icon [data-lucide] {
    position: absolute;
    z-index: 10;
}

.feature-icon::before {
    box-shadow: unset;
}

.feature img {
    transition: all .5s ease;
    border-radius: 10px;
    opacity: 0.5;
}

.feature img:hover {
    scale: 1.015;
    opacity: 1;
}

/* Newsletter CTA */
.newsletter .section-paragraph {
    letter-spacing: 0.2px;
    margin-bottom: 26px;
}

/* Footer */
.site-footer {
    background-color: var(--color-black);
}

/* Links */
@media (max-width: 890px) {
    .footer-links {
        flex: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
}

@media (max-width: 641px) {
    .footer-links {
        flex-direction: column;
        justify-content: center !important;
    }

    .footer-links li {
        text-align: center;
        margin-bottom: 0.5rem;
        margin-left: 0 !important;
    }
}

/* Social links */
.footer-social-links a i {
    transition: all .3s ease;
}

.footer-social-links a:hover i {
    color: var(--color-primary) !important;
}

.footer-social-links li {
    display: flex;
    align-items: center;
}

.footer-social-links li a {
    padding: 0px;
}

.footer-social-links a,
.footer-social-links a:hover {
    text-decoration: none !important;
}

/* Animated underline */
.animated-underline {
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.animated-underline__box {
    color: var(--color-primary);
    width: 100%;
    height: 0.625em;
    position: absolute;
    left: 0;
    bottom: -0.2em;
    pointer-events: none;
}

.animated-underline__box-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: visible !important;
}