/* Fonts */
@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-RegularItalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-MediumItalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-SemiboldItalic.otf") format("opentype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../assets/fonts/sf-pro-text/SF-Pro-Text-HeavyItalic.otf") format("opentype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Variable */
:root {
    --brand-red: #E2092F;
    --brand-blue: #061B81;
    --deep-blue-700: #010714;
    --deep-blue-600: #121419;
    --deep-blue-500: #282A2F;
    --deep-blue-400: #484A4D;
    --deep-blue-300: #838485;
    --deep-blue-200: #D7D7D7;
    --deep-blue-100: #F5F5F5;
    --sky-blue: #1B75DA;
}


/* Common styles */
* {
    box-sizing: border-box;
    font-family: "SF Pro Text";
}

html {
    font-size: 16px;
}

/* Text */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25;
}


p {
    line-height: 1.5;
}

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

button {
    cursor: pointer;
}

/* Colors */
.text-primary-red {
    color: var(--brand-red);
}

/* Scrollbar */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
}