@charset "UTF-8";
/* CSS Document */

/* Adobe Fonts Import */
@import url("https://use.typekit.net/sow8imr.css");

/* === Global Vars === */

:root {
    --red: #EF3500;
    --rollover: #BD2A01;
    /*--light: #F6F1EA;*/
    --light: rgba(251, 249, 245, 0.927);
    --display: "belda-normal", sans-serif;
}

/* ============= Header / Navigation ============= */

header {
    background-color: #FFF;
    overflow: hidden;
/*    padding: 16px 16px 20px 12px;*/
/*    transition: all 0.2s ;*/
}

.logo_col {
    padding: 10px;
}

.logo_col img {
    max-width: 250px;
    height: auto;
}

.m_only {
    display: block;
}

.d_only {
    display: none;
}

.m_nav {
    position: fixed;
    background-color: var(--navy);
    width: 100%;
    z-index: 10;
}

.d_nav {
    display: none;
}

.m_nav.open {    
    display: inline-block;
    width: 45px !important;
    height: 45px;
    padding: 6px;
    border-radius: 6px;
}

.m_nav.open {
    position: absolute;
    top: 5px;
    right: 5px;
    width: auto;
    cursor: pointer;
    background-color: #FFF;
}

.m_nav.open img {
    width: 100%;
    height: auto;
}

.m_nav nav,
.m_nav ul,
.m_nav li {
    display: block;
    width: 100%;
}

.m_nav a {
    color: #FFF !important;
    display: block;
    width: 100%;
    text-align: center;
    padding: 5px 0;
}

/* ============= Basic Styles (body, h1, etc) ============= */

body {
    font-size: 22px;
    font-family: interstate, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--navy);
    padding: 0;
}

.skip, .homepage_h1, .VisuallyHidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 700;
    font-style: normal;
    line-height: 1;
}

h1, h2, h3, p {
    margin-bottom: 16px;
    text-align: center;
}

p, li {
    line-height: 1.3;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 16px;
}

a {
 color: var(--hot);
}

.maxw {
    max-width: 1200px;
}

.container-fluid {
    margin-bottom: 0 !important;
}

.pad1 {
    padding: 3vw !important;
}

.hidden, 
.backend_message {
    display: none;
}

.btn.btn-primary {
    border: none;
    border-radius: 2px;
    background-color: var(--red);
    font-family: interstate-condensed, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.5em;
/*    margin-bottom: 1em;*/
    display: block;
    margin: 0 auto 1em;
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border: solid 10px #FFF;
    border-radius: 6px;
/*    letter-spacing: 0.05em;*/
}

.btn.btn-primary:hover {
    background-color: var(--rollover);
}

.bg_red {
    background-color: var(--red);
}

.bg_light {
    background-color: var(--light);
}

.bg_dark {
    background-color: #383A4C;
}

.bg_dark h2,
.bg_dark h3,
.bg_dark p {
    color: #FFF;
}



/* ============= Slideshow ============= */

.slideshow {
    /*border: yellow 3px solid;*/
    width: 100%;
    height: auto;
}

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

.slide, .slick-list {
    padding: 0;
}

/* ============= Hero ============= */

.col_sliders {
    padding: 0;
    /*background-color: palegreen;*/
}

.col_headline {
    padding: 3vw;
}

.col_headline img {
    margin-bottom: 3vw;
}

.hero {
    padding: 0;
}

.hero h2 {
    color: #FFF;
    font-size: 12vw;
    line-height: 0.6;
}

.hero span {
    display: block;
}

.hero h2 span:nth-child(2) {
    margin-left: 17vw;
}


.logo {
    position: relative;
    display: block;
    margin: -60px auto 0;
    text-align: center;
}

/* == Slick Carousel == */



/* ========== Page Styles ========= */


main {
    /*background-color: #FFF;*/
    overflow: hidden;
}

.row_style {
/*    background-color: lightsalmon;*/
}

.row_style .wp-block-group {
    background-color: #FFF;
    height: 100%;
    border-radius: 4px;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}

.row_style .leadin {
    left: -30px;  
    margin-top: 0;  
}

/* ========== Footer ========== */


/* ========== Responsive Start ========== */

@media(min-width: 768px) {

    body {
        font-size: 16px;
    }

    h1, h2, h3, p {
        text-align: initial;
    }

    .hero h1,
    .tertiary h1 {
        font-size: 2em;
    }    

    p, li {
        line-height: 1.5;
    }

    .btn.btn-primary {
/*        display: initial;
        margin: 0 initial 1em;*/
    }

    .d_only {
        display: block;
    }

    /* === Header / Navigation === */

    .m_only,
    .m_nav,
    .m_nav.open {
        display: none;
    }    

    .d_nav {
        display: block;
    }

    .top_nav {
        padding: 0;
    }

    .logo_col {
        flex: none;
        width: 100%;
        display: block;
        align-self: center;
    }

    .logo_col img {
        width: 200px;
        height: auto;
        cursor: pointer;
    }

    .primary {
        padding: 0;
    }

    .primary > div {
    }    

    .primary .nav_col {
        flex: 1;
    }

    .primary nav {
        width: 100%;
    }

    .primary .nav_col ul {
        justify-content: space-between;
    }   

    .primary .nav_col li {
        padding: 0 1px;
    }  

    .primary .nav_col a {
        font-family: interstate-condensed, sans-serif;
        font-weight: 500;
        font-style: normal;        
        color: #413F3F;
        font-size: 1.2em;
        text-transform: uppercase;
        padding: 10px 10px;
        position: relative;
        line-height: 1;
        text-align: center;
    }

    .primary .nav_col a:before {
        content: '';
        width: 1%;
        height: 1%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        opacity: 0.5;
        background-image: url(/wp-content/uploads/2024/11/stump.webp);
        background-repeat: no-repeat;
        background-size: auto 70%;
        background-position: center;  
        z-index: -1; 
        transition: width 0.2s, height 0.2s;
    }

    .primary .nav_col a:hover:before {
        width: 100%;
        height: 100%;        
    }

    .primary .contact_button a {
        background-color: #F05C1B;
        color: #FFF !important;
    }

    /* link padding */
    .primary .contact_button a {
        padding: 10px 15px;
        border-radius: 0 1.2em 0 1.2em;
    }

    .secondary {
        background-color: #2DB1C3;
        padding: 15px 0;
    }

    .secondary .row {
        justify-content: flex-end;
    }

    .secondary .row > div {
        width: fit-content;
    }

    .secondary .nav_col {
        flex: none;
    }

    .secondary .nav_col a {
        color: #FFF !important;
    }

    .secondary .search_col {
        max-width: 200px;
    }

    .secondary .search_col input,
    .secondary .search_col button {
        height: 25px;
        border: none;
    }

    .secondary .search_col input {

    }

    .secondary .search_col button {
        padding: 0;
        margin: 0;      
        background-color: #e8e8e8;
    }

    /* ======== Hero Areas ======== */

    .logo {
        position: relative;
        display: block;
        margin: initial;
        text-align: left;
    }
  


}

@media(min-width: 950px) {

    /* === Header / Navigation === */
    .primary > div {
        width: fit-content;
    }

}

@media(min-width: 992px) {

    .primary .nav_col ul {
        padding-left: 45px;
    }      

    .primary .nav_col a {
        padding: 30px 0; 
    }     

}

@media(min-width: 1300px) {
    .hero .row > div:first-child div {
        /*padding: 0 3vw 0 0;*/
        padding: 0;
    }
}

