﻿/* Color */
body {
    /* Base */
    --base-black: #000814;
    --base-white: #FCFCFC;
    --base-pur-white: #FFFFFF;

}

p.black, a.black {
    color: var(--base-black) !important;
}

/* Font */
@font-face {
    font-family: "Inter";
    src: url("../../applidev/font/Inter-Regular.ttf");
}

@font-face {
    font-family: "FuturaPTBook";
    src: url("../../applidev/font/FuturaPTBook.otf");
}

@font-face {
    font-family: "FuturaPTDemi";
    src: url("../../applidev/font/FuturaPTDemi.otf");
}

@font-face {
    font-family: "FuturaPTMedium";
    src: url("../../applidev/font/FuturaPTMedium.otf");
}

h1, h2, h3, h4, h5, h6, p {
    font-family: FuturaPTDemi, sans-serif;
    font-style: normal;
    line-height: 120%;
    margin-bottom: 0px;
}

h1.heading-1 {
    font-size: 86px;
    font-weight: 700;
    color: var(--base-black);
}

h4.heading-4 {
    font-size: 44px;
    font-weight: 700;
    color: var(--base-black);
}

@media (max-width: 576px) {
    h1.heading-1 {
        font-size: 55px;
    }

    h4.heading-4 {
        font-size: 28px;
    }
}

p.lg {
    font-size: 23px;
}

p.base {
    font-size: 16px;
}

.bold {
    font-weight: 700;
}


/* Layout */
.page-content {
    background-color: var(--base-pur-white);
}

/* Design */
.small-circle {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

/* Spacing */
.px-7 {
    padding-left : 64px;
    padding-right : 64px;
}

.gap-8 {
    gap: 8px;
}

.underline {
    text-decoration: underline !important;
}

