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

html
{
    font-size: 16px;
    scroll-behavior: smooth;
}

*
{
    box-sizing: border-box;
    margin: 0;
}

body {font-size: 1rem;}

header, main, footer, section, article {display: block;}

img, video {vertical-align: top;}

/***** Utility Classes *****/
.display-block {display: block;}

.display-inline-block {display: inline-block;}

.display-none {display: none;}

.full-width {width: 100%;}

.site-content-width {max-width: 1200px;}

.block-content-width {width: 100%;}

.text-content-width {width: 100%;}

.full-viewport-height {height: 100vh;}

.height-zero {height: 0px;}

.clearfix::after
{
    clear: both;
    content: "";
    display: block;
}

.hidden
{
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.overflow-hidden {overflow: hidden;}

.pos-absolute {position: absolute;}

.pos-relative {position: relative;}

.transform-translate-xy-center
{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.transform-translate-x-center
{
    left: 50%;
    transform: translateX(-50%)
}

.transform-translate-y-center
{
    top: 50%;
    transform: translateY(-50%)
}

.flex {display: flex;}

.flex-column {flex-direction: column;}

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

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

/*This is a CSS trick used for flex box in order to right align a single or group of flex item(s) at the end
of the flex-order. This is needed because multiple flex items on the main axis are treated as a group.*/
.flex-item-right-align {margin-left: auto;}

.justify-content-center {justify-content: center;}

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

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

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

.justify-content-space-evenly {justify-content: space-evenly;}

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

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

.block-row-gap {row-gap: 2.5rem;}

.flex-card-row-gap {row-gap: 4rem;}

.margin-auto {margin: auto;}

.margin-bttm-none {margin-bottom: 0;}

.margin-l-r-auto {margin: 0 auto}

/*.block-margin-bttm {margin-bottom: 3rem;}*/

.content-margin-bttm {margin-bottom: 3rem;}

.p-margin-bttm {margin-bottom: 1em;}

.padding-none {padding: 0;}

/*.site-sec-padding-top-bttm
{
    padding-bottom: 4rem;
    padding-top: 4rem;
}*/

.block-content-padding-top-bttm
{
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.site-sec-padding-bttm {padding-bottom: 2rem;}

.site-sec-padding-top {padding-top: 5rem;}

.site-sec-padding-left-right
{
    padding-left: 1rem;
    padding-right: 1rem;
}

.sec-padding-bttm {padding-bottom: 1.5em;}

.bg-color-unset {background-color: unset;}

.bg-color-white {background-color: #ffffff;}

.bg-color-melon {background-color: #E86F52;}

.bg-color-dark-melon {background-color: #CE5E43;}

.bg-color-light-grey {background-color: #FBF6F5;}

.color-white {color: #ffffff;}

.color-dark-melon {color: #CE5E43;}

.color-auburn {color: #813B2A;}

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

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

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

.font-style-normal {font-style: normal;}

.font-style-italic {font-style: italic;}

.font-weight-200 {font-weight: 200;}

.font-weight-300 {font-weight: 300;} 

.font-weight-400 {font-weight: 400;}

.font-weight-500 {font-weight: 500;}

.font-weight-600 {font-weight: 600;}

.font-weight-700 {font-weight: 700;}

.fine-print {font-size: 0.8em;}

.border-none {border: none;}

.box-shadow-bright-melon {box-shadow: 0 0 2px 1px rgba(189, 46, 12, 1);}
/***** END Utility Classes *****/

.header-wrapper
{
    column-gap: 2rem;
    max-width: 2000px;
}

.site-nav-container
{
    height: 72px;
}

.hamburger-container
{
    height: 34px;
    width: 40px;
    position: relative;
    display: none;
}

.hamburger-item
{
    border-radius: 3px;
    height: 3px;
    position: absolute;
}

#hm_item_1
{
    top: 0%;
    transform: rotate(0deg);
    transition: top 0.2s linear, transform 0.3s linear;
}

#hm_item_2
{
    top: 50%;
    transform: rotate(0deg);
    transition: transform 0.4s linear;
}

#hm_item_3
{
    top: 100%;
    transform: rotate(0deg);
    transition: top 0.2s linear, transform 0.3s linear;
}

.hamburger-container:hover #hm_item_1
{
    top: 50%;
    transform: rotate(45deg);
}

.hamburger-container:hover #hm_item_2
{
    transform: rotate(-45deg);
}

.hamburger-container:hover #hm_item_3
{
    top: 50%;
    transform: rotate(-45deg);
}

.site-nav
{
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0 10px 10px 10px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.4em;
    max-height: 0px;
    position: absolute;
    top: 100%;
    z-index: 10;
    transition: max-height 0.6s linear;
}

/*.site-nav-close {max-height: 0px;}*/

.site-nav-open {max-height: 500px;}

.site-nav-item {padding: 0.5em 1em;}

/*.site-nav-container:hover .site-nav
{
    max-height: 500px;
}*/

.hero-container {margin-bottom: 2rem;}

.hero-image
{
    border-radius: 10px 10px 40px 40px;
}

.site-logo
{
    left: 10px;
    top: -65px;
    width: 170px;
}

.book-link
{
    background-color: #ffffff;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-box-shadow: text;
    -moz-box-shadow: text;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    color: transparent;
    display: inline-block;
    font-family: "Tilt Warp", sans-serif;
    text-decoration: none;
    font-size: 1.3em;
    outline: 2px solid #fff;
    padding: 0.4em 0.5em;
    text-align: center;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.book-link:hover
{
    color: transparent;
    background-color: #9e371f;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-box-shadow: text;
    -moz-box-shadow: text;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    outline: 2px solid #9e371f;
    text-shadow: 0px 3px 4px rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/*.blur
{
    backdrop-filter: blur(5px);
    height: 160px;
    width: 160px;
}*/

.link-bttn-1
{
    background-color: #497E92;
    border-radius: 5px;
    color: #fff;
    font-family: "Tilt Warp", sans-serif;
    font-size: 2em;
    padding: 0.3em 1em;
}

.site-link-1
{
    
}

.tag-line
{
    font-family: "Tilt Warp", sans-serif;
    font-optical-sizing: auto;
    /*font-size: clamp(1.6em, 7vw, 5em);*/
    font-size: clamp(2.5em, 7vw, 5em);
    line-height: 1.2em;
}

.h1-primary
{
    color: #CE5E43;
    font-family: "Tilt Warp", sans-serif;
    font-optical-sizing: auto;
    font-size: 2.8em;
    line-height: 1em;
}

.h2-primary
{
    color: #CE5E43;
    /*font-family: "Tilt Warp", sans-serif;*/
    /*font-family: "Oswald", sans-serif;*/
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-size: 2.2em;
    line-height: 1.2em;
}

.text-primary
{
    /*font-family: "Archivo Narrow", sans-serif;*/
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.3em;
    line-height: 1.4em;
}

.link-primary
{
    cursor: pointer;
}

.img-gap-wrapper {gap: 2rem;}

.img-vert-wrapper
{
    min-width: 300px;
    max-width: 500px;
}

.card-wrapper
{
    gap: 2em;
}

.highlights-card
{
    padding: 1rem 1rem;;
    border-radius: 20px;
    max-width: 350px;
    min-width: 270px;
    gap: 0.75em;
}

.highlights-icon {width: 40%;}

.table-primary, .table-primary th, .table-primary td
{
    border: 1px solid #E86F52;
    border-collapse: collapse;
    border-spacing: 0;
}

.site-size-chart {width: 100%;}

.site-size-chart th, .site-size-chart td
{
    padding: 0.2em;
    width: 50%;
}

.google_map_container
{
    height: 0;
    padding-bottom: 70%;
}

.google_map
{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.f-address
{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.2em;
    gap: 0.3em;
}

.f-sh-logo {width: 50%;}

.f-waymarker-logo {width: 70%;}


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

@media screen and (min-width: 600px)
{
    .mq-600-display-none {display: none;}
    
    .mq-600-display-block {display: block;}
    
    .f-sh-logo {width: 40%;}
    
    .f-waymarker-logo {width: 40%;}
}

@media screen and (min-width: 800px)
{
    .mq-800-flex-row {flex-direction: row;}
    
    .mq-800-justify-content-space-evenly {justify-content: space-evenly;}
    
    .site-sec-padding-left-right
    {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .site-nav-container {height: 98px;}
    
    .site-logo
    {
        top: -92px;
        width: 240px;
    }
    
    .site-size-chart {width: 80%;}
    
    .google_map_container {padding-bottom: 50%;}
    
    .f-address {width: 33%;}
    
    .f-sh-logo {width: 20%;}
    
    .f-waymarker-logo {width: 50%;}
}

@media screen and (min-width: 1200px)
{
    .block-row-gap {row-gap: 3rem;}
    
    .block-content-padding-top-bttm
    {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }
    
    .card-wrapper {gap: 2em 3rem;}
    
    .highlights-icon {width: 50%;}
    
    .site-size-chart {width: 60%;}
    
    .google_map_container {padding-bottom: 42%;}
}

@media screen and (min-width: 1400px)
{
    .mq-1400-justify-content-space-between {justify-content: space-between;}
    
    .card-wrapper {gap: 0;}
    
    .highlights-card
    {
        gap: 1em;
        max-width: 270px;
        min-width: 270px;
        padding: 1.5rem 1rem;
    }
    
    .highlights-icon {width: 60%;}
}

/***** END Media Queries *****/














