@font-face {
    font-family: 'ALT Systema regular';
    src: url('./assets/fonts/ALTSystema-Regular.woff2') format('woff2'),
        url('./assets/fonts/ALTSystema-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ALT Systema bold';
    src: url('./assets/fonts/ALTSystema-Bold.woff2') format('woff2'),
        url('./assets/fonts/ALTSystema-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ALT Systema semi-bold';
    src: url('./assets/fonts/ALTSystema-Semibold.woff2') format('woff2'),
        url('./assets/fonts/ALTSystema-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #FF6B01;
    --secondary: #000;
    --font-regular: "ALT Systema regular";
    --font-bold: 'ALT Systema bold';
    --font-semibold: 'ALT Systema semi-bold';

}



* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    /* color: var(--primary); */
    transition: 0.35s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    font-weight: bold;
    color: var(--white);
}

a,
a:active,
a:hover {
    text-decoration: none;
    outline: 0;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
}

.position-relative {
    position: relative;
}

.column-1 {
    grid-column: span 1;
}

.row-1 {
    grid-row: span 1;
}

.column-2 {
    grid-column: span 2;
}

.row-2 {
    grid-row: span 2;
}

.column-3 {
    grid-column: span 3;
}

.row-3 {
    grid-row: span 3;
}

.column-4 {
    grid-column: span 4;
}

.row-4 {
    grid-row: span 4;
}

.column-5 {
    grid-column: span 5;
}

.row-5 {
    grid-row: span 5;
}

.column-6 {
    grid-column: span 6;
}

.row-6 {
    grid-row: span 6;
}

.column-7 {
    grid-column: span 7;
}

.row-7 {
    grid-row: span 7;
}

.column-8 {
    grid-column: span 8;
}

.row-8 {
    grid-row: span 8;
}

.column-9 {
    grid-column: span 9;
}

.row-9 {
    grid-row: span 9;
}

.column-10 {
    grid-column: span 10;
}

.row-10 {
    grid-row: span 10;
}

.column-11 {
    grid-column: span 11;
}

.row-11 {
    grid-row: span 11;
}

.column-12 {
    grid-column: span 12;
}

.row-12 {
    grid-row: span 12;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.section {
    padding-top: 80px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.h-100 {
    height: 100%;
}

.mb-5 {
    margin-bottom: 30px;
}

.mt-48 {
    margin-top: 40%;
}

.flex-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
    display: none;
}

.flex-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
    margin-top: 15px;
}

@media (max-width: 992px) {

    .column-1,
    .column-2,
    .column-3,
    .column-4,
    .column-5,
    .column-6,
    .column-7,
    .column-8,
    .column-9,
    .column-10,
    .column-11,
    .column-12 {
        grid-column: span 6;
    }

    .grid {
        grid-gap: 16px;
    }
}

@media (max-width: 768px) {

    .column-1,
    .column-2,
    .column-3,
    .column-4,
    .column-5,
    .column-6,
    .column-7,
    .column-8,
    .column-9,
    .column-10,
    .column-11,
    .column-12 {
        grid-column: span 12;
    }
}

.mt-40 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 2rem;
}

.left-column {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    padding-right: 3rem;
}

.right-column {

    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 300px;
    min-width: 300px;
}

.section-sm {
    padding: 30px 0;
}

.section-md {
    padding: 50px 0;
}

.section-lg {
    padding: 100px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-xlarge {
    max-width: 100%;
}

.container-large {
    max-width: 1600px;
}

.container-small {
    max-width: 960px;
}

.container-xsmall {
    max-width: 890px;
    margin: auto;
}

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

blockquote {
    padding-left: 7rem;
    position: relative;
    background: url("../img/icon-quote-left.svg") 0 0 no-repeat;
    background-size: 5rem;
    background-position: 0 8px;
}

blockquote p {
    font-weight: 500;
    font-size: 2rem;
    line-height: 3rem;
    color: #24539f;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5em;
}