:root {
    --red: #FF0114;
    --dred: #9F0102;
    --yellow: #F7C954;
    --dyellow: #D7AA2E;
    --jade: #93B7A3;
    --djade: #068B76;
    --violet: #B8B2FB;
    --indigo: #1B224D;
    --offwhite: #FAF7F0;
    --grey: #707070;
    --black: #171717;
}

html {
    box-sizing: border-box;
    line-height: 1.5em;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    padding: 0;
}

a {
    background-color: transparent;
    color: var(--black);
    text-decoration: none;
}

a:hover,
a:active {
    outline: 0;
    color: #9d1b1e;

}

img {
    height: auto;
    width: 100%;
}

body,
button,
input,
select,
optgroup,
textarea {
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

.wow {
    visibility: hidden;
}

.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0 !important;
}

h1,
h2,
h3 {
    font-family: 'magneto', sans-serif;
    margin: 0 0 32px 0;
    font-weight: 600;
    line-height: 1.2;
    padding: 0 64px;

}

h4,
h5,
h6 {
    font-family: 'Jost', sans-serif;
    margin: 0 0 64px 0;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 4em;
    color: #9d1b1e;

}

h2 {
    font-size: 3em;

}

h3 {
    font-size: 2em;

}

h4 {
    font-size: 1.75em;

}

h5 {
    font-size: 1.5em;

}

h6 {
    font-size: 1.25em;

}

p {
    margin-bottom: 16px;
}

p+* {
    margin-top: 1.5rem;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

ul ul,
ol ol,
ul ol,
ol ul {
    margin-top: 0.5rem;
}

ul+*,
ol+* {
    margin-top: 1.5rem;
}

li {
    position: relative;
    padding-left: 1em;
    color: var(--dyellow);
    text-transform: uppercase;
}

li+li {
    margin-top: 0.5em;
}

img {
    max-width: 100%;
}

.fas,
.fab {
    margin: 0 8px 0 0;
    font-size: 2em;
}

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

.flex-1-1 {
    flex-basis: 100%;
}

.flex-3-4 {
    flex-basis: 75%;
}

.flex-2-3 {
    flex-basis: 66.666666%;
}

.flex-1-2 {
    flex-basis: 50%;
}

.flex-1-3 {
    flex-basis: 33.333333%;
}

.flex-1-4 {
    flex-basis: 25%;
}

.ac {
    align-items: center;
}

.jcc {
    justify-content: center;
}

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

.jsa {
    justify-content: space-around;
}

.jfe {
    justify-content: flex-end;
}

.jfs {
    justify-content: flex-start;
}

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

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

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

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

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

.text-offwhite {
    color: var(--offwhite);
}

.text-red {
    color: var(--red);
}

.text-djade {
    color: var(--djade);
}

.text-dyellow {
    color: var(--dyellow);
}

.bg-offwhite {
    background: var(--offwhite);
}

.bg-dred {
    background: var(--dred);
}

.bg-dyellow {
    background: var(--dyellow);
}

.container {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.jfe .container {
    margin: 0 !important;
}

.c-1800 {
    max-width: 1900px;
}

.c-1600 {
    max-width: 1700px;
}

.c-1400 {
    max-width: 1500px;
}

.c-1300 {
    max-width: 1400px;
}

.c-1200 {
    max-width: 1300px;
}

.c-1000 {
    max-width: 1100px;
}

.c-800 {
    max-width: 900px;
}

.c-700 {
    max-width: 800px;
}

.c-600 {
    max-width: 700px;
}

.c-500 {
    max-width: 600px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.p-tb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-tb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.p-tb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.btn,
._submit {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 13px 32px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    color: white;
    background: linear-gradient(to right, var(--red), var(--red));
    transition: all 0.5s ease;
    text-transform: uppercase;
    min-width: max-content;
    cursor: pointer;

}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--red), #ffa500);
    opacity: 0;
    transition: opacity 1s;
    z-index: -1;
}

.btn:hover::before,
._submit:hover {
    opacity: 1;

}

.btn--large {
    min-width: 300px;
}

/* ---------------------
------- Typography -----
-----------------------*/

.display-1 {
    font-family: 'magneto', sans-serif;
    font-size: 4em;
    text-transform: uppercase;
}

.display-2 {
    font-family: 'magneto', sans-serif;
    font-size: 3em;
    font-weight: 600;

}

.display-3 {
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
}

.display-4 {
    padding-top: 1em;
    font-size: 1.75em;
    font-weight: 600;
}

/* ---------------------
------- Sections -------
-----------------------*/
.full-height {
    min-height: 100vh;
}

.logo {
    height: 200px;
    width: auto;
}

.bg-gradient {
    background: linear-gradient(180deg, rgba(169, 241, 89, 1) 0%, rgba(237, 235, 20, 1) 100%);
    width: 100%;
    padding: 2%;
}

.bg-red {
    background-color: #bf1f24;
}

.button-wrap {
    width: 150px;
    border: 2px solid red;
    padding: 8px;
    border-radius: 10px;
}

.menu-bg {
    background: linear-gradient(to right, rgba(191, 31, 36, 0.7), rgba(191, 31, 36, 0.7)), url('../images/diagonal-squares.png');
    padding: 2%;
    gap: 16px;
}

.menu-bg h4 { 
    margin-bottom: 16px;
    color: white;
}

.menu-bg a{ 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-bg a img { 
    max-width: 65vw;
    margin: auto;
}

.fa-facebook-square {
    color: #3B5998;
}

.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------------
------ Media Queries ---
-----------------------*/

@media (max-width:1200px) {

    .flex-1-2 {
        flex-basis: 100%;
    }

    .full-height {
        min-height: unset;
    }
}