* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto Condensed', 'Roboto';
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    overflow-x: hidden;
}
/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}
:root {
    /* fonts */
    --subtitle1: 'Roboto Condensed';
    --button1: 'Roboto Condensed';
    --caption1: Roboto;
    /* font sizes */
    --headline1-size: 60px;
    --headline2-size: 34px;
    --headline3-size: 24px;
    --subtitle3-size: 14px;
    --button2-size: 16px;
    --subtitle1-size: 20px;
    --caption-size: 12px;
    /* Colors */
    --background: #f2f1ec;
    --white: #fff;
    --grey: #4d4d4d;
    --brand-orange: #e45827;
    --brand-yellow: #f0aa3f;
    --form-orange: rgba(236, 140, 106, 0.1);
    --black: #000;
    /* Gaps */
    --gap-9xs: 4px;
    --gap-xl: 20px;
    --gap-base: 16px;
    --gap-3xs: 10px;
    --gap-15xl: 34px;
    --gap-xs: 12px;
    /* Paddings */
    --padding-58xl: 77px;
    --padding-2xl: 21px;
    --padding-5xs: 8px;
    --padding-xs: 12px;
    --padding-29xl: 48px;
    --padding-base: 1em;
    --padding-sides: 2em;
    /* Border radiuses */
    --br-5xl: 24px;
    --br-xs: 12px;
    --br-base: 16px;
}
/* Global utility classes */
.text-center {
    text-align: center;
}
.hidden {
    display: none;
}
.flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.justify-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}
