:root {
    --color-1: #fcb316;
    --color-2: #55a4db;
    --color-3: #0065aa;
    --color-4: #1b1464;
    --color-5: #ffffff;
    --color-6: #231f20;

    --a-color: var(--color-4);
    --a-color-hover: var(--color-1);

    --headline-font: "Montserrat", Helvetica, sans-serif;
    --body-font: "Montserrat", Helvetica, sans-serif;

    --body-font-size: 16px;
    --body-font-color: var(--color-6);
    --body-font-weight: 400;
    --body-line-height: 26px;

    --h1-font-size: 48px;
    --h1-font-weight: 800;
    --h1-line-height: 1.1667;

    --h2-font-size: 36px;
    --h2-font-weight: 700;
    --h2-line-height: 1.2222;

    --h3-font-size: 24px;
    --h3-font-weight: 600;
    --h3-line-height: 1.3333;

    --h4-font-size: 18px;
    --h4-font-weight: 500;
    --h4-line-height: 1.5556;

    --h5-font-size: 18px;
    --h5-font-weight: 500;
    --h5-line-height: 1.5556;

    --h6-font-size: 18px;
    --h6-font-weight: 500;
    --h6-line-height: 1.5556;
}
* {
    position: relative;
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
}
*::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
html, body {
    overflow-x: hidden;
}
header, footer, section {
    width: 100%;
}
body, p {
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    color: var(--body-font-color);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}
:where(h1,.h1) {
    font-family: var(--headline-font);
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    line-height: var(--h1-line-height);

    text-transform: uppercase;
}
:where(h2,.h2) {
    font-family: var(--headline-font);
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--h2-line-height);
}
:where(h3,.h3) {
    font-family: var(--headline-font);
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: var(--h3-line-height);
}
:where(h4,.h4) {
    font-family: var(--headline-font);
    font-size: var(--h4-font-size);
    font-weight: var(--h4-font-weight);
    line-height: var(--h4-line-height);
}
:where(h5,.h5) {
    font-family: var(--headline-font);
    font-size: var(--h5-font-size);
    font-weight: var(--h5-font-weight);
    line-height: var(--h5-line-height);
}
:where(h6,.h6) {
    font-family: var(--headline-font);
    font-size: var(--h6-font-size);
    font-weight: var(--h6-font-weight);
    line-height: var(--h6-line-height);
}
@media screen and (max-width: 767px) {
    :where(h1,.h1) {
        font-size: calc(var(--h1-font-size) * .7);
    }
    :where(h2,.h2) {
        font-size: calc(var(--h2-font-size) * .7);
    }
    :where(h3,.h3) {
        font-size: calc(var(--h3-font-size) * .7);
    }
}

.color-1 {
    color: var(--color-1);
}
.color-2 {
    color: var(--color-2);
}
.color-3 {
    color: var(--color-3);
}
.color-4 {
    color: var(--color-4);
}
.color-5 {
    color: var(--color-5);
}
.color-6 {
    color: var(--color-6);
}

.bg-color-1 {
    background-color: var(--color-1);
}
.bg-color-2 {
    background-color: var(--color-2);
}
.bg-color-3 {
    background-color: var(--color-3);
}
.bg-color-4 {
    background-color: var(--color-4);
}
.bg-color-5 {
    background-color: var(--color-5);
}
.bg-color-6 {
    background-color: var(--color-6);
}

a {
    color: var(--a-color);
    text-decoration: none;
}
a:hover {
    color: var(--a-color-hover);
    text-decoration: underline;
}

header {
    position: absolute;
    z-index: 9999;
}
header > div {
    background-color: var(--color-5);
    border-radius: 45px;
}
@media screen and (max-width: 767px) {
    header > div {
        max-width: 95% !important;
    }
}
header nav {
}
header nav ul {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 8px 0;
    list-style: none;
}
header nav ul li {
    margin-right: 25px;
}
header nav ul li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-6);
    transition: .25s color ease-in-out;
}
header nav ul li a:hover {
    text-decoration: none;
    color: var(--color-1);
}
header nav ul li ul {
    position: absolute;
    z-index: 999;
    background-color: var(--color-5);
    top: 25px;
    left: -125px;
    display: block;
    min-width: 350px;
    padding: 35px 50px;
    text-align: center;
    border-radius: 5px;

    display: none;
}
header nav ul li:hover ul {
    display: block;
}
header nav ul li ul li {
    margin-right: 0;
}

.mobile-menu {
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.90);
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 99999;
    display: none;
}
.mobile-menu.open {
    display: block;
}
.mobile-menu nav {}
.mobile-menu nav ul {
    list-style: none;
    padding: 10px 0;
    margin-top: 50px;
}
.mobile-menu nav ul li {
    margin-bottom: 15px;
}
.mobile-menu nav ul li a {
    color: #ffffff;
    font-size: 20px;
    display: block;
}
.mobile-menu nav ul li a.button {
    font-size: 16px;
    max-width: 90%;
    margin: 0 auto;
}

.menu-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu-btn .hb {
    margin-right: 8px;
}
.menu-btn .hb span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-6);
    margin-bottom: 3px;
}
.menu-btn .hb span:last-child {
    margin-bottom: 0;
}
.menu-btn .ht span {
    color: var(--color-6);
    font-weight: 500;
    text-transform: uppercase;
}

.menu-close-btn {
    position: absolute;
    top: 25px;
    right: 50px;
    font-size: 30px;
    cursor: pointer;
}

hr {
    width: 100%;
    height: 1px;
    border: none;
    background: lightgray;
}
hr.short {
    width: 75px;
    height: 5px;
    border: none;
    background: var(--color-1);
}

.button {
    color: var(--color-5);
    background-color: var(--color-1);
    text-decoration: none;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    outline: none;
    border: none;
    border-radius: 30px;
    transition: .25s background-color ease-in-out;
}
.button:hover {
    color: var(--color-5);
    background-color: var(--color-6);
    text-decoration: none;
}
.button.reverse {
    background-color: var(--color-6);
}
.button.reverse:hover {
    background-color: var(--color-1);
}
.button.social {
    color: var(--color-4);
    background-color: unset;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    padding: 0;
}

footer {
    background-color: var(--color-6);
    color: var(--color-5);
}
footer .button.social {
    color: var(--color-5);
    text-align: left;
}
footer a {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 10px;

    color: var(--color-5);
}
footer a:hover {
    text-decoration: none;
}

.button.side {
    display: block;
    width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-4);
    text-align: left;
    padding: 10px 10px 10px 50px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 15px;
}
.button.side:before {
    content: "";
    height: 7px;
    left: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    border-radius: 50%;
    background-color: var(--color-4);
}
.button.side:hover,
.button.side.active {
    color: var(--color-5);
    background-color: var(--color-1);
}
.button.side:hover:before,
.button.side.active:before {
    background-color: var(--color-5);
}

a.white {
    color: var(--color-5);
}
a.white:hover {
    text-decoration: underline;
}

.bkg-image-link a {
    margin: 0 !important;
    color: white;
    text-decoration: none;
    overflow: hidden;
}
.bkg-image-link a .bkg-img {
    transition: 1s all ease-in-out;
}
.bkg-image-link a:hover .bkg-img {
    transform: scale(1.1);
    transition: 1s all ease-in-out;
}

.card {
    background-color: var(--color-5);
    border-radius: 4px;
    width: 100%;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.15);
    padding: 35px 15px;
}

details {

}
details summary {
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    background-color: #f8f8f8;
    border: 1px solid #f0f0f0;
}
details p {
    padding: 25px;
    border: 1px solid #f0f0f0;  
}

.blog-content p {
    margin-bottom: 25px;
}
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-bottom: 25px;
    color: var(--color-4);
}


.bkg-img img.bkg-anim {
    transform: scale(2.5);
}
body.loaded .bkg-img img.bkg-anim {
    transform: scale(1);
    transition: 30s transform;
}

ul.list {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
ul.list li {
    padding-left: 30px;
}
ul.list li:after {
    position: absolute;
    content: "";
    left: 5px;
    top: 10px;
    background: var(--color-1);
    width: 8px;
    height: 8px;
}

.c-right .img img {
    object-fit: cover;
    min-height: 550px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
}
.c-right .content {
    padding: 50px;
    margin-top: 75px;
    margin-left: -100px
}
.c-left .img img {
    object-fit: cover;
    min-height: 550px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
}
.c-left .content {
    padding: 50px;
    margin-top: 50px;
    margin-right: -100px;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .c-right .img img {
        object-fit: unset;
        min-height: unset !important;
    }
    .c-right .content {
        padding: unset;
        margin-top: 10px;
        margin-left: 10px;
        text-align: center;
    }
    .c-left {
        flex-direction: column-reverse;
    }
    .c-left .img img {
        object-fit: unset;
        min-height: unset !important;;
    }
    .c-left .content {
        padding: unset;
        margin-top: 10px;
        margin-right: 10px;
        text-align: center;
    }
}

.cta-callout {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: var(--color-1);
    color: var(--color-5);
    border-radius: 10px;
    max-width: 500px;
    padding: 25px;
}
.cta-callout a:hover {
    color: var(--color-4);
    text-decoration: none;
}

#container {
    width: 100%;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 50px;
}
#container .scroll {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: fit-content;
    animation: loop 40s linear infinite;
}
#container .scroll#scroll-two {
    transform: translateX(-102%);
    animation-delay: 20s; 
}
@keyframes loop {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.item {
    padding: 15px 20px;
    font-size: 32px;
    font-weight: 600;
}