@font-face {
    font-family: PhilosopherBold;
    src: url("../font/AnyConv.com__9SLIDE04_PHILOSOPHER_BOLD.otf") format("opentype"),
        url("../font/AnyConv.com__9SLIDE04_PHILOSOPHER_BOLD.eot") format("embedded-opentype"),
        url("../font/AnyConv.com__9SLIDE04_PHILOSOPHER_BOLD.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: PhilosopherRegular;
    src: url("../font/AnyConv.com__9SLIDE04_PHILOSOPHER.otf") format("opentype"),
        url("../font/AnyConv.com__9SLIDE04_PHILOSOPHER.eot") format("embedded-opentype"),
        url("../font/AnyConv.com__9SLIDE04_PHILOSOPHER.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --width-desktop-safe: 1720px;
    --maxwidth-desktop-safe: calc(100% - 40px);
    --width-mobile-safe: calc(100% - 40px);
    --width-desktop: 1920px;
    --width-mobile: 768px;
    --height-desktop: 1000px;
    --height-mobile: 1000px;
    --font-family-phiregular: PhilosopherRegular;
    --font-family-phibold: PhilosopherBold;
    --fontsize-primary-desktop: 18px;
    --fontsize-primary-mobile: 24px;
    --fontheight-primary: 1.4;
    --fontweight-heavy: 900;
    --fontweight-bold: 700;
    --fontweight-semibold: 600;
    --fontweight-medium: 500;
    --fontweight-normal: 400;
    --fontweight-light: 300;
}

html {
    font-family: var(--font-family-phibold) !important;
    text-rendering: optimizeLegibility;
    font-size: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #FAF6D3 !important;
}

.text-center {
    text-align: center;
}

.desktop {
    display: block;
}

.flex {
    display: flex;
}

.mobile {
    display: none;
}

.flex.center {
    justify-content: center;
    align-items: center;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.flex-row{
    flex-direction: row;
}

.flex-col{
    flex-direction: column;
}

ul,
li {
    list-style: none;
}

ul {
    margin-bottom: 0px !important;
}

a {
    text-decoration: none !important;
}

.background {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.pa {
    position: absolute;
}

.pr {
    position: relative;
}

.pointer-none{
    pointer-events: none;
}

.sticky-menu {
    position: sticky;
    top: 50px;
}

.form-group {
    margin-bottom: 10px !important;
}

