:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-light: #dcd8c9;
    --color-gray: #5d5d5d;
    --color-red: #450f03;
    --color-orange: #91461a;

    --font-body: source-sans-pro, sans-serif;
}

body {
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.5rem;
}

ul,
ol {
    margin: 0 0 24px 0;

    li {
        font-size: 1.0rem;
        line-height: 1.5rem;
        margin: 0 0 5px 0;
    }
}

p {
    margin: 0 0 24px 0;
}

a,
a:visited {
    color: var(--color-orange);
    text-decoration: none;
}
a:hover,
a:focus {
    color: var(--color-orange);
    text-decoration: underline;
}

input[type="button"],
input[type="submit"] {
    background: none;
    border: none;
    appearance: none;
    box-shadow: none;
    outline: none;
}
a.btn-red,
input[type="button"],
input[type="submit"] {
    display: inline-block;
    width: auto;
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--color-white);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    padding: 10px 35px;
    border: none;
    background-color: var(--color-red);
}
a.btn-red:hover,
a.btn-red:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-orange);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}
hr {
    border: 0;
    height: 1px !important;
    background-color: var(--color-orange);
    margin: 36px 0;
    opacity: 1;
}
hr.red {
    background-color: var(--color-red);
}
hr.large {
    height: 3px !important;
    margin: 72px 0;
}

h1 br,
h2 br,
h3 br {
    display: none;
}
h1 {
    font-size: 2.375rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    padding: 0;
    margin: 0 0 24px 0;
}
h2 {
    position: relative;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.2;
    margin: 0 0 24px 0;
}
h3 {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--color-red);
    line-height: 1.2;
    margin: 0 0 24px 0;
}

form {
    margin-bottom: 24px;
}
label.form-label {
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.form-control {
    border: none;
    border-radius: 0;
}
textarea.form-control {
    height: 107px;
}

.font-size-47 {
    font-size: 3.4375rem;
    line-height: 1.2;
}
.font-size-38 {
    font-size: 1.625rem;
    line-height: 1.2;
}
.font-size-26 {
    font-size: 1.625rem;
    line-height: 1.1;
}
.font-size-18 {
    font-size: 1.125rem;
    line-height: 1.1;
}
.font-size-16 {
    font-size: 1.0rem;
    line-height: 1.2;
}
.font-size-14 {
    font-size: 0.875rem;
    line-height: 1.2;
}
.font-size-11 {
    font-size: 0.6875rem;
    line-height: 1.2;
}
.font-style-italic {
    font-style: italic;
}
.font-weight-bold {
    font-weight: 700;
}
.font-weight-semibold {
    font-weight: 600;
}
.color-white {
    color: var(--color-white);
}
.uppercase {
    text-transform: uppercase;
}

.spacer-12 {
    display: block;
    height: 12px;
}
.spacer-24 {
    display: block;
    height: 24px;
}
.spacer-48 {
    display: block;
    height: 48px;
}
.spacer-72 {
    display: block;
    height: 72px;
}

.background-orange {
    background-color: var(--color-orange);
    padding: 72px 0;
    margin: 48px 0;
}
.background-gray {
    background-color: var(--color-gray-light);
    padding: 72px 0;
    margin: 48px 0;
}

.header {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 10px solid var(--color-orange);
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: end;
    gap: 0 20px;
    padding: 0;
    margin: 0;
}
.main-nav ul li {
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}
.main-nav ul li a {
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0;
    cursor: pointer;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li a.active {
    color: var(--color-orange);
    text-decoration: none;
}
.main-nav ul li a.active {
    border-bottom: 2px solid var(--color-orange);
}
.main-nav ul li a.nav-button {
    display: inline-block;
    width: auto;
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--color-white);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    padding: 10px 35px;
    border: none;
    background-color: var(--color-red);
}
.main-nav ul li a.nav-button:hover,
.main-nav ul li a.nav-button:focus,
.main-nav ul li a.nav-button.active {
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-orange);
}

a.mobile-menu-trigger.btn-red {
    padding: 10px 20px;
}
a.mobile-menu-trigger.btn-red i {
    margin-left: 5px;
}

.hero-home {
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 48px;
}
.hero-home .content-wrapper {
    position: relative;
}
.hero-home .content-wrapper .content {
    padding: 100px 0;
}
.hero-home .content-wrapper h1 {
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero-home .content-wrapper p {
    margin-bottom: 0;
}

.hero {
    background: var(--color-red);
    padding: 48px 0;
    margin-bottom: 48px;
}
.hero h1 {
    color: var(--color-white);
    margin: 0;
}

.feature-button-wrapper .feature-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background-color: #dcd8c9;
    cursor: pointer;
}
.feature-button-wrapper .feature-button img {
    width: auto;
    height: 53px;
}
.feature-button-wrapper .feature-button h3 {
    color: var(--color-red);
    margin: 0;
}

.testimonial .content {
    position: relative;
    padding: 160px 30px 30px 30px;
}
.testimonial .content:after {
    position: absolute;
    top: 30px;
    left: 30px;
    display: block;
    width: 100px;
    height: 87px;
    background-image: url(../images/icon-quote.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    content: '';
}
.testimonial .content .quote {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--color-gray);
    line-height: 1.2;
    margin-bottom: 10px;
}
.testimonial .content .author {
    font-weight: 600;
    color: var(--color-gray);
    margin-bottom: 0;
}

.services-list {
    list-style: none;
}
.services-list li {
    position: relative;
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--color-orange);
    line-height: 1.2;
    background: var(--color-white);
    border: none;
    box-shadow: none;
    padding: 24px 10px 24px 40px;
}
.services-list li:after {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    font-family: "Font Awesome 5 Free";
    font-size: 30px;
    font-weight: 900;
    color: var(--color-blue-dark);
    line-height: 1.0;
    content: '\f0da';
    background: none;
}

.project .content {
    position: relative;
    padding: 30px;
}
.project .content .image {
    text-align: center;
}
.project .content .image img {
    display: inline-block;
    border: 4px solid var(--color-orange);
}
.project .content .caption {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--color-red);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0;
}

.video-placeholder img {
    position: relative;
    width: 100%;
    height: auto;
}
.video-placeholder .video-modal {
    position: relative;
    display: block;
}
.video-placeholder .video-modal:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    font-family: "Font Awesome 5 Brands";
    font-size: 75px;
    font-weight: 400;
    color: #CD201F;
    line-height: 1.0;
    content: '\f167';
}

.footer {
    background-color: var(--color-red);
    padding: 72px 0;
}
.footer p,
.footer a {
    color: var(--color-white);
}

.footer-nav ul {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}
.footer-nav ul li {
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}
.footer-nav ul li a {
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.footer-nav ul li a:hover,
.footer-nav ul li a:focus {
    color: var(--color-orange);
    text-decoration: none;
}

.footer-social ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    padding: 0;
    margin: 0;
}
.footer-social ul li {
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}
.footer-social ul li a {
    display: block;
    font-size: 2.5rem;
    color: var(--color-white);
    line-height: 1.0;
    text-decoration: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.footer-social ul li a:hover,
.footer-social ul li a:focus,
.footer-social ul li a.active {
    color: var(--color-orange);
    text-decoration: none;
}

.footer a.underline {
    text-decoration: underline;
}
.footer a.underline:hover,
.footer a.underline:focus {
    text-decoration: none;
}

.mobile-nav-wrapper {
    display: none;
}
#mobile-nav {
    overflow: visible;
    display: none;
    max-width: 350px;
}
#mobile-nav.mm-menu_opened {
    display: flex;
}
#mobile-nav .mm-panel {
    background: var(--color-white);
}
#mobile-nav .mm-navbars_top .mm-navbar {
    border: none;
}
#mobile-nav .mm-navbars_top .mm-navbar > span {
    display: block;
}
#mobile-nav .mobile-menu-close {
    display: block;
    width: 100%;
    color: var(--color-white);
    text-align: right;
    background: var(--color-red);
    padding: 10px 20px 10px 0;
}
#mobile-nav .mobile-menu-close .close-mobile-menu {
    display: inline-block;
    padding: 5px;
}
#mobile-nav .mobile-menu-close .close-mobile-menu i {
    font-size: 30px;
    line-height: 1.0;
}
#mobile-nav .mm-navbar .mm-btn_prev {
    background: var(--color-red);
}
#mobile-nav .mm-navbar .mm-btn_prev:before {
    border-color: var(--color-white);
}
#mobile-nav .mm-navbar .mm-navbar__title {
    color: var(--color-white);
    line-height: 1.5;
    text-transform: uppercase;
    background: var(--color-red);
}
#mobile-nav .mm-listview .mm-listitem {
    border-color: var(--color-red);
    padding: 0;
}
#mobile-nav .mm-listview .mm-listitem:after {
    left: 0;
}
#mobile-nav .mm-listview .mm-listitem a {
    display: block;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1.5;
    text-transform: uppercase;
    border-color: var(--color-red);
    padding: 10px 35px 10px 20px;
}
#mobile-nav .mm-listview .mm-listitem a:after {
    border-color: var(--color-red);
}
#mobile-nav .mm-listview .mm-listitem a:hover,
#mobile-nav .mm-listview .mm-listitem a:active,
#mobile-nav .mm-listview .mm-listitem a:focus {
    color: var(--color-orange);
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
}
#mobile-nav .mm-listview .mm-listitem a:hover:after,
#mobile-nav .mm-listview .mm-listitem a:active:after,
#mobile-nav .mm-listview .mm-listitem a:focus:after {
    border-color: var(--color-red);
}
#mobile-nav #mm-0 .mm-navbar {
    display: none;
}
.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
    opacity: 0.70 !important;
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    h1 br,
    h2 br,
    h3 br {
        display: block;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0 30px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    h1,
    .font-size-47 {
        font-size: 2.9375rem;
        line-height: 1.2;
    }
    h2,
    .font-size-38 {
        font-size: 2.375rem;
        line-height: 1.2;
    }
    .testimonial .content {
        position: relative;
        padding: 30px 30px 30px 160px;
    }
    .testimonial .content:after {
        left: 30px;
    }
    .footer-nav ul {
        justify-content: end;
    }
    .footer-social ul {
        justify-content: end;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .header .logo img {
        max-width: 350px;
    }
    .footer .logo img {
        max-width: 350px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}