@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
}

:root {
    --primaryColor: #061F40;
    --secondaryColor: #B11817;
    --tertiaryColor: #F6F5F5;
    --textColor: #262626;
    --lightColor: #fff;
}

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

html {
    font-size: 16px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family:  'Neue Montreal', sans-serif;
    font-weight: 400;
    color: var(--textColor);
}


/* TYPOGRAPHY */

p {
    font-size: 1.25rem;
    line-height: 170%;
	letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Neue Montreal', sans-serif;
    line-height: 95%; 
    font-weight: 500;
}

h1 {
    font-size: 5.5rem;
}

h2 {
    font-size: 4rem;
    line-height: 1.08em;
    color: var(--primaryColor);
}

h3 {
    font-size: 2rem;
	color: #071f40;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

ul {
    padding-left: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.625rem;
    margin-bottom: 1.5rem;
}

/* COLOURS */
.bg-primary { background: var(--primaryColor ); }
.bg-secondary { background: var(--secondaryColor); }
.bg-tertiary { background: var(--tertiaryColor); }
.bg-tertiary-light { background: var(--tertiaryColorLight); }
.bg-light { background: var(--lightColor); }
.text-primary { color: var(--primaryColor); }
.text-secondary { color: var(--secondaryColor); }
.text-tertiary { color: var(--tertiaryColor); }
.text-white { color: #fff; }
.text-black { color: #000; }
.text-light { color: var(--lightColor); }

/* IMAGES */
.standard {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.img-small {
    height: 18rem;
}

.img-medium {
    height: 24rem;
}

.img-large {
    height: 33rem;
}

.img-huge {
    height: 45rem;
    width: 100%;
}

.img-rounded {
    border-radius: 100%;
}

.img-bottom {
    object-position: bottom;
}

.img-top {
    object-position: top;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 50%;
    align-self: flex-end;
}

/* BUTTONS */
button {
    cursor: pointer;
    background: none;
    border: 0;
    outline: none;
}

.btn {
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem 0.7rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.4s all;
    gap: 10px;
    width: fit-content;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.2s all;
}

.btn:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
} 

.btn-primary {
    background: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: white;
}

.btn-outline {
    background: none;
    border: 2px solid var(--secondaryColor);
    color: var(--secondaryColor);
}

.btn-secondary {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: white;
}

.btn-tertiary {
    background: var(--tertiaryColor);
    border-color: var(--tertiaryColor);
    color: white;
}

.text-button {
    font-size: 1rem;
    transition: 0.2s all;
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 0;
    color: var(--secondaryColor);
    min-width: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.text-button svg path {
    fill: var(--secondaryColor);
}

.text-button:hover {
    background: transparent;
    border-color: var(--secondaryColor);
}

/* UTILITY */

/* Global Container & Sections */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 7.5rem;
}

.container-wide {
    padding: 0 5rem;
    max-width: 100% !important;
}

section {
    padding:4.5rem 0;
}

/* Spacing utilities */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 5rem; }
.mt-7 { margin-top: 7.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 5rem; }
.mb-7 { margin-bottom: 7.5rem; }

.-mt-1 { margin-top: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }
.-mt-3 { margin-top: -1rem; }
.-mt-4 { margin-top: -1.5rem; }
.-mt-5 { margin-top: -3rem; }

.-mb-1 { margin-bottom: -0.25rem; }
.-mb-2 { margin-bottom: -0.5rem; }
.-mb-3 { margin-bottom: -1rem; }
.-mb-4 { margin-bottom: -1.5rem; }
.-mb-5 { margin-bottom: -3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }
.p-6 { padding: 5rem; }
.p-7 { padding: 7.5rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }
.pt-6 { padding-top: 5rem; }
.pt-7 { padding-top: 7.5rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }
.pb-6 { padding-bottom: 5rem; }
.pb-7 { padding-bottom: 7.5rem; }

/* Flex utilities */
.d-flex {
    display: flex;
}

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

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

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

.space-between {
    justify-content: space-between;
}

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

.flex-fill {
    flex: 1;
}

/* Flexbox layout */
.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-item {
    flex: 1 1 auto;
    padding: 10px;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
}

.two-column > .column {
    flex: 1;
    padding: 10px;
}

@media (max-width: 768px) {
    .two-column > .column {
        flex: 100%;
    }
}

/* Grid layout */
.grid-container {
    display: grid;
    gap: 10px;
}

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

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

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

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

.small-gap { gap: 10px; }
.medium-gap { gap: 20px; }
.large-gap { gap: 30px; }
.x-large-gap { gap: 40px; }
.xx-large-gap { gap: 4rem }
.huge-gap { gap: 100px; }

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* Assorted Utilities */
.relative {
    position: relative;
}

.uppercase {
    text-transform: uppercase;
}

.overflow-hidden {
    overflow: hidden;
}

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

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

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

.decorative-underline {
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-thickness: 0.25rem;
    text-decoration-color: var(--primaryColor);
}

.loader {
    background: var(--primaryColor);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 250px;
    bottom: 0;
    top: 60px;
    display: none;
    z-index: 1;
}