@import url('/all.min.css');

@font-face {
    font-family: 'Archivo_Bold';
    src: url(/fonts/Archivo-Black.woff2) format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'Archivo_Bolder';
    src: url(/fonts/Archivo-ExtraBold.woff2) format('woff2');
    font-weight: bolder;
    font-style: normal;
    font-display: swap;
}


:root{
    --primary-color: #DB4A2B;
    --secondary-color: #FFFFFF;
    --ascent: #E4E4E422;
    --text: #000000;
    --alt-text: #FFFFFF;
}

h1,h2,h3,h4,h5,h6,p,li,a,body{
    margin: 0;
}

a{
    font-family: Archivo_Bolder;
    font-weight: bolder;
    font-size: 22px;
}

p{
    font-family: Archivo;
    font-weight: normal;
    font-size: 20px;
}

h1{
    font-family: Archivo_Bolder;
    font-weight: bold;
    font-size: 50px;
}

h2{
    font-family: Archivo_Bolder;
    font-weight: bold;
    font-size: 32px;
}

h3{
    font-family: Archivo_Bold;
    font-weight: bold;
    font-size: 26px;
}

h4{
    font-family: Archivo_Bold;
    font-weight: bold;
    font-size: 24px;
}

h5{
    font-family: Archivo;
    font-weight: normal;
    font-size: 26px;
}

h6{
    font-family: Archivo;
    font-weight: normal;
    font-size: 24px;
}

button, .cta-button{
    background-color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 25px;
    color: var(--alt-text);
    border: none;
}

.cta-button{
    text-decoration: none;
}

.app-loading {
  opacity: 0;
  pointer-events: none;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
}

[data-component="page"] {
  width: 100%;
  max-width: 100%;
}