.poppins {
    font-family: "Poppins", serif;
}
.oswald,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.links-block .link-block {
    font-family: "Oswald", serif;
}

:root {
    --bs-primary-rgb: 219, 157, 0;
}

html {
    font-size: 15px;
}
html, body {
    height: 100%;
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.umb-block-grid {
    max-width: 2600px;
    margin: auto;
}
@media (max-width: 767px) {
    .umb-block-grid > div:first-of-type:not(.banner-block) {
        padding-top: 3rem;
    }
}

@media (max-width: 767px) {
    .container
    {
        max-width: none;
    }
}

strong {
    font-weight: 600;
}

a {
    color: #db9d00;
    font-weight: 600;
}
.headers-primary h1, .headers-primary h2,
.headers-primary h3, .headers-primary h4,
.headers-primary h5, .headers-primary h6 {
    color: rgb(var(--bs-primary-rgb));
}

p + h1, p + h2, 
ul + h1, ul + h2 { 
    margin-top: 4rem; 
}
p + h3, p + h4, p + h5, p + h6,
ul + h3, ul + h4, ul + h5, ul + h6
{
    margin-top: 3rem;
}
p + h4, p + h5, p + h6,
ul + h4, ul + h5, ul + h6{
    margin-top: 1.5rem;
}
p:last-of-type {
    margin-bottom: 0;
}

li { padding-top: .25rem; }
li p { margin: 0; }

@media (min-width: 768px) {
    .pe-md-4 {
        padding-left: 1.5rem !important;
    }
    .pe-md-5 {
        padding-left: 3rem !important;
    }
    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

.header-logo a { color: inherit; text-decoration: none; }
.header-logo a svg { width: 18vw; max-width: 20rem; min-width: 12rem; }

@media (max-width: 767px) {
    header {
        position: relative;
    }
    header .header-logo {
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        padding: 1rem 2rem;
        background-color: #fff;
    }
    header .navbar {
        background-color: #fff !important;
        padding: 1rem .5rem;
    }
    header .navbar-nav {
        margin-top: 4.5rem;
    }
    header .navbar-nav li {
        border-top: solid 1px rgba(0, 0, 0, .05);
    }
    header .navbar-toggler, header .navbar-toggler:focus {
        border: none;
        outline: none;
        box-shadow: none;
        padding: .5rem 0;
        color: #000;
        font-size: 2rem;
    }
}

.navbar-nav .nav-link.active { font-weight: 500; }
@media (min-width: 992px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .75rem;
        padding-left: .75rem;
        font-size: .9rem;
    }
}

.end-border { border-bottom: solid 10px rgb(var(--bs-primary-rgb)); }

.banner-block { border-bottom: solid 10px #db9d00; }
.banner-block-title { font-size: 8vh; line-height: 1;  }
.banner-block-subtitle { font-size: 2vh !important; color: #db9d00; margin-top: 1vh; }

.links-block { margin-bottom: 2rem; }
.links-block > div { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; }
.links-block .link-block {
    display: block;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    color: #fff;
    font-size: clamp(1.5rem, 2.5vh, 1.8rem);
    font-weight: bold;
    text-decoration: none;
    padding: 2rem;
    position: relative;
}
.link-block span {
    position: relative;
    z-index: 1;
}
.link-block::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.65);
    position: absolute;
    inset: 0 0 0 0;
    opacity: 1;
    transition: opacity .6s ease-in-out;
}
.link-block:hover::before {
    opacity: .2;
}

.richtext-block hr { margin: 3rem 0 2rem; }

img:not(.is-background) {
    max-width: 100%;
    height: auto;
}
@media (min-width: 768px) {
    img.is-background {
        position: absolute;
    }
    .row-block-column.has-background + div {
        padding-left: 3rem;
    }
    .row-block.h-md-600 .row-block-column {
        min-height: 600px;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 767px) {
    img.is-background {
        width: 100% !important;
    }
    .row-block-column {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .row-block-column.has-background {
        padding: 0;
        aspect-ratio: 1 / 1;
    }
    .reverse-xs {
        flex-direction: column-reverse;
    }
}
div.wrapper-block.has-background {
    position: relative;
    overflow: hidden;
}
div.row-block.has-background > div:first-of-type img.is-background {
    left: 0;
}
div.row-block.has-background > div:last-of-type img.is-background {
    right: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery img { width: 100%; }
@media (min-width: 768px)
{
    .gallery > a:first-of-type {
        grid-column: span 3;
        grid-row: span 3;
        overflow: hidden;
    }
    .gallery > a:first-of-type img {
        margin-right: -1rem;
        width: calc(100% + 1rem);
    }
}

.quote {
    padding-left: 4.5rem;
    position: relative;
}
.quote:before {
    content: "\f6b0";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 4rem;
    color: #db9d00;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: absolute;
    top: -.45rem;
    left: 0;
    float: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

footer a { text-decoration: none; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { text-decoration: underline; }