@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/PPNeueMontreal-Book.otf') format('opentype');
    font-weight: 300;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/PPNeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/PPNeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Roie';
    src: url('../fonts/Roie.ttf') format('truetype');
    font-weight: 700;
}

:root {
    --primary: #3441B4;
    --secondary: #1CA23D;
}

*, *: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: 500;
    color: #000;
}

hr {
    border: 0;
    height: 2px;
    background: #fff;
    width: 100%;
}
hr.thin {
    height: 1px;
}
hr.wp-block-separator {
    border: 0 !important;
    height: 1px;
    background: #cdcdcd;
    width: 100%;
}

.vr {
    border: 0;
    width: 1px;
    background: #fff;
}

/* TYPOGRAPHY */

p {
    font-size: 1.2rem;
    line-height: 150%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roie', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    font-size: 4.75rem;
    line-height: 120%;
}

h2 {
    font-size: 3rem;
    line-height: 120%;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 1.9169rem;
}

h5 {
    font-size: 1.4169rem;
}

h6 {
    font-size: 1.4169rem;
}

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

ul {
    padding-left: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.625rem;
    margin-bottom: 1.5rem;
}
ul.has-small-font-size {
    line-height: 1.4rem;
}

/* COLOURS */
.bg-primary { background: var(--primary ); }
.bg-secondary { background: var(--secondary); }
.bg-white { background: #fff; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: #fff; }

/* IMAGES */
.img-frame {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    display: block;
}

.standard {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s ease-in-out;
    border-radius: 5px;
}

.img-tiny {
    height: 10rem;
}

.img-small {
    height: 17rem;
}

.img-regular {
    height: 24rem;
}

.img-medium, .img-medium img {
    height: 30rem;
}

.img-big, .img-big img {
    height: 35rem;
}

.img-large, .img-large img {
    height: 38rem;
}

.hover-zoom:hover {
    transform: scale(1.02);
}

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

.btn {
    display: inline-flex;
    width: fit-content;
    padding: 20px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s all;
    text-align: center;
    font-size: 1.2rem;
    transition: 0.2s all;
    color: white;
    align-items: center;
    text-transform: uppercase;
}

.btn-small {
    padding: 20px 30px;
    font-size: 1rem;
}

.btn.white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--primary);
}
.btn.white:hover {
    color: var(--secondary);
}

.btn.primary {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.btn.primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.secondary {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
}
.btn.secondary:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.tag {
    display: inline-block;
    width: fit-content;
    padding: 7px 15px 5px;
    border-radius: 25px;
    background: var(--tags);
    color: var(--navy);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.65px;
    line-height: 150%;
}

/* CUSTOM FORMS */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondaryColor);
}

.form-group textarea {
    resize: vertical;
}


.newsletter-form input {
    background: none;
    border: 1px solid var(--yellow);
    border-radius: 50px;
    color: var(--yellow);
    font-size: 1rem;
    padding: 0 25px;
    width: auto;
    flex: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--yellow);
}

/* ARROWS */
.diagonal-arrow {
    position: relative;
    width: 50px;
    height: 50px;
    transition:0.4s all;
}

/* UTILITY */

/* Global Container & Sections */
.container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
}

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

section {
    padding:4.5rem 0;
}

/* Spacing utilities */
.m-auto { margin: auto; }
.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; }

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

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 1rem; }
.pr-4 { padding-right: 1.5rem; }
.pr-5 { padding-right: 3rem; }
.pr-6 { padding-right: 5rem; }
.pr-7 { padding-right: 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;
}

.align-start {
    align-items: flex-start;
}

.flex-fill {
    flex: 1;
}

.flex-none {
    flex: none;
}

/* 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; }
.regular-gap { gap: 15px; }
.medium-gap { gap: 20px; }
.large-gap { gap: 30px; }
.x-large-gap { gap: 40px; }
.xx-large-gap { gap: 50px; }
.mega-gap { gap: 80px; }

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

/* Text utilities */
.text-center {
    text-align: center;
}

.text-small {
    font-size: 1rem;
}

.text-regular {
    font-size: 1.2rem;
}

.text-big {
    font-size: 1.35rem;
}

.text-large {
    font-size: 1.5rem;
}

.text-x-large, .text-x-large p {
    font-size: 1.6rem;
    line-height: 160%;
}

.text-huge {
    font-size: 2rem;
}

.text-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.hover-text-underline h4 {
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    text-decoration-thickness: 3px;
    transition: text-decoration-color 0.3s ease-in-out;
}
.hover-text-underline:hover > h4 {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 3px;
    text-decoration-color: currentColor;
}

.font-regular {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
}

.font-head {
    font-family: 'Roie', sans-serif;
    font-weight: 700;
}

/* Size utilities */
.mw-40 {
    max-width: 40%;
}
.mw-50 {
    max-width: 50%;
}
.mw-60 {
    max-width: 60%;
}
.mw-65 {
    max-width: 65%;
}

.full-height {
    height: 100vh;
}

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

.overflow-hidden {
    overflow: hidden;
}

.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;
}

.dot {
    border-radius: 100%;
    height: 5px;
    width: 5px;
    font-size: 0;
}

.border-radius-5 {
    border-radius: 5px;
}

.border-radius-0 {
    border-radius: 0;
}

/* 404 */

.not-found {
    height: 100vh;
    padding: 0;
}

.not-found .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.not-found .container img {
    width: 100%;
}