* {
    box-sizing: border-box;
}

html,body {
    width: 100%;
    height: 100%;
    margin: 0;
    color: #252525;
    font: 16px 'Brandon Grotesque','Arial',serif;
}

.fadeInOnScroll {
    transition: opacity 1s, transform 1s;
}

.gen h1 {
    font: 500 3.25em 'Brandon Grotesque','Arial',sans-serif;
    color: #252525;
    margin: 0;
    line-height: 1.25em;
}

.gen h2 {
    font: 500 3.25em 'Brandon Grotesque','Arial',sans-serif;
    color: #252525;
    margin: 0;
    line-height: 1.25em;
}

.gen h3 {
    font: 500 2.313em 'Brandon Grotesque','Arial',sans-serif;
    color: #252525;
    margin: 0;
    line-height: 1.25em;
}

.gen h5 {
    font: 500 1.5em 'Brandon Grotesque','Arial',sans-serif;
    color: #252525;
    margin: 1em 0 0 0;
    line-height: 1.25em;
}

.gen p {
    font: 300 1.25em 'Poppins','Times',sans-serif;
    color: #252525;
    margin: 1.25em 0 0 0;
    line-height: 1.75em;
}

.icon_font {
    font-family: 'simple-line-icons-reduced-jv','Arial';
}

.chunk {
    border: 1px solid #CCC;
    margin: 40px;
    padding: 60px;
    font: 1em 'Work Sans',sans-serif;
    text-align: center;
    color: #666;
    position: relative;
    height: 350px;
}

.chunk>div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.centered {
    text-align: center;
}

.content_width {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.content_width_wide {
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
}

.content_width_medium {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.content_width_thin {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content_pad {
    padding: 0 15px;
}

.margin_top {
    margin-top: 90px;
}

.margin_bottom {
    margin-bottom: 90px;
}

.min_height {
    min-height: 400px;
}

.white_text {
    color: white;
}

.top_all_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.topmost_bar {
    background-color: #252525;
    color: white;
    font-size: 1em;
    text-align: center;
    padding: 15px 10px 10px 10px;
    text-transform: uppercase;
    align-items: center;
}

.topmost_bar a {
    color: #b4fdf0;
    text-decoration: none;
}

.topmost_bar a:hover {
    color: #FFFF00;
}

.top_nav_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
    background-color: var(--color-black);
    transition: padding .25s;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
}

.top_nav_bar>div {
    /*display:table-cell;*/
}

.top_nav_bar>div:first-child {
    /* nav logo & burger */
    width: 200px;
}

.top_nav_bar>div:last-child {
    /* socials */
    width: 200px;
    text-align: right;
}

.top_nav_bar>div:first-child img {
    /* nav logo */
    width: 100%;
    height: auto;
    max-width: 200px;
    transition: max-width .25s, opacity .25s;
}

.top_nav_bar>div:first-child img:hover {
    /* nav logo */
    opacity: .55;
}

/* compacted scrolled styles */
.compact.top_nav_bar>div:first-child img {
    max-width: 100px;
}

.compact.top_nav_bar {
    padding: 5px 20px;
}

.burger {
    display: none;
}

.burger span {
    display: block;
    background-color: #252525;
    border-radius: 10px;
    padding: 2px 0;
    width: 30px;
    margin: 3px 0;
}

ul.top_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    font: 1.25em 'Brandon Grotesque','Arial',serif;
    flex-wrap: wrap;
    transition: font-size .25s;
}

ul.top_nav>li {
    display: inline-block;
    margin: 0 10px;
    white-space: nowrap;
    padding: 5px 0;
    position: relative;
}

ul.top_nav>li a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity .75s;
}

ul.top_nav>li a:hover {
    transition: opacity .1s;
    opacity: .5;
}

ul.top_nav>li.current_page_item a {
    font-weight: bold;
    border-bottom: 1px solid black;
}

/* THE SUB NAVS ***********************/
/* only hover action when NOT in mobile snap */
@media all and (min-width: 850px) {
    ul.top_nav>li:hover .sub-menu {
        display:block;
    }

    #menu .navbar-nav {
        flex-direction: row;
    }
}

ul.top_nav li .sub-menu {
    display: none;
    position: absolute;
    top: 99%;
    left: -15px;
    /* match the padding of the li or a */
    z-index: 10;
    list-style: none;
    padding: 0;
    x-webkit-box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.51);
    box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.35);
}

ul.top_nav .sub-menu li {
}

ul.top_nav .sub-menu li a {
    font-weight: normal;
    display: block;
    background-color: white;
    padding: 4px 15px;
    transition: background-color 1s;
    border: none;
}

ul.top_nav .sub-menu li a:hover {
    transition: background-color .15s;
    color: black;
    opacity: 1;
    background-color: #b4fdf0;
}

.nav_socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav_socials>div:first-child {
    width: 50px;
    text-align: left;
}

.nav_socials>div:nth-child(2) {
    width: 50px;
    text-align: left;
}

.nav_socials>div:last-child {
    border-left: 1px solid #252525;
    text-align: center;
}

.nav_socials a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity .75s;
    font-size: .938em;
    display: inline-block;
    width: 100px;
}

.nav_socials a:hover {
    opacity: .55;
}

.nav_socials img {
    vertical-align: middle;
}

.hero_slideshow {
    /* height:85vh; */
    padding-bottom: 45%;
    width: 100%;
    max-width: 1920px;
    position: relative;
    background-color: #96e5d7;
    margin: 0 auto;
}

.hero_slideshow>div {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.hero {
    height: 100vh;
    max-height: 950px;
    min-height: 300px;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    background-position: center bottom;
    position: relative;
    /* fix for ie/edge */
    overflow: hidden;
}

.hero_caption,.hero_slideshow_caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    /* setting a width of 100% causes IE to sidescroll */
    /* alternately fix with overflow hiddin on above */
    width: 95%;
}

.hero_caption h2,.hero_slideshow_caption h2 {
    /* 7.5 */
    font-weight: 500;
    font-size: 4.25em;
    margin: 0;
    color: white;
    line-height: 1.25em;
    font-family: 'Brandon Grotesque','Arial',sans-serif;
    transition: font-size .25s;
}

.hero_caption p, .hero_slideshow_caption p {
    font-size: 2em;
    line-height: 1.25em;
    margin: 0 0 0 0;
    color: white;
    transition: font-size .25s;
}

.heroless_margin {
    margin-top: 40px;
}

.upper_shutter, .lower_shutter {
    position: absolute;
    width: 100%;
    height: 0;
    background-color: #96e5d7;
    background-color: rgba(180,253,240,.5);
    background-color: white;
    z-index: 2;
    transition: height .25s;
    left: 0;
    animation: shutter_slide .75s ease-in-out 0s 1 normal forwards;
}

.upper_shutter {
    top: 0;
}

.lower_shutter {
    bottom: 0;
}

@keyframes shutter_slide {
    0% {
        height: 50%;
    }

    100% {
        height: 0;
    }
}

.gen_button {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    padding: .5em 2.004em;
    text-decoration: none;
    color: #252525;
    font-size: 1.25em;
    font-weight: bold;
    transition: opacity .25s, background-color .25s, font-size .25s, padding .25s;
    margin: 0;
    cursor: pointer;
    text-align: center;
}

.hero_button {
    margin-top: 16px;
}

input[type='button'].gen_button {
    border: none;
    outline: none;
    cursor: pointer;
}

.blue_button {
    background-color: #b4fdf0;
}

.blue_button:hover {
    background-color: #77d4c3;
}

.black_button {
    background-color: #000;
    color: white;
}

.black_button:hover {
    background-color: #444;
}

.pink_button {
    background-color: var(--primary-color);
}

.pink_button:hover {
    background-color: #f8aaa2;
}

.gray_button {
    background-color: #DDD;
}

.gray_button:hover {
    background-color: #AAA;
}

.hero_caption .blue_button,.hero_slideshow_caption .blue_button {
    margin-top: 1.5em;
}

.slide_loader_wrap {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}

.slide_loader {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    font-size: 10px;
    display: inline-block;
    text-indent: -9999em;
    border-top: 10px solid rgba(255, 255, 255, 0.2);
    border-right: 10px solid rgba(255, 255, 255, 0.2);
    border-bottom: 10px solid rgba(255, 255, 255, 0.2);
    border-left: 10px solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 .5s infinite linear;
    animation: load8 .5s infinite linear;
    background-color: rgba(180,253,240,.15);
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.thin_text_box {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
}

.thin_text_box h1 {
    font: 600 2.75em 'Brandon Grotesque','Arial',sans-serif;
    color: #252525;
}

.thin_text_box p {
    font: 300 1.5em 'Brandon Grotesque','Arial',sans-serif;
    line-height: 1.25em;
    color: #252525;
}

.three_col_img_wrap {
    display: flex;
    justify-content: center;
}

.three_col_img_wrap>div {
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

.three_col_img_wrap>div>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.three_col_img_wrap>div img {
    width: 100%;
    max-width: 350px;
    height: auto;
    transition: opacity 1s;
    margin: 0;
    padding: 0;
    display: block;
}

.three_col_img_wrap>div img:hover {
    transition: opacity .25s !important;
    opacity: 0;
}

.three_col_img_wrap>div a {
}

.gray_box {
    background-color: #f3f1f1;
    padding: 120px 0;
}

.two_col {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.two_col>div {
    flex: 1 1 45%;
}

.two_col img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.two_col h2 {
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.25em;
    color: #252525;
    margin: 0;
}

.two_col h3 {
    font-weight: bold;
    font-size: 3.5em;
    line-height: 1.25em;
    color: #252525;
    margin: .5em 0;
}

blockquote.hp_quote {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 980px;
    padding: 0 20px;
}

blockquote.hp_quote q {
    font-weight: bold;
    font-size: 3.25em;
    line-height: 1em;
}

blockquote.hp_quote cite {
    font-weight: normal;
    font-style: italic;
    font-size: 1.5em;
    display: block;
    margin-top: 2.5em;
}

.gallery_reel {
    width: 100%;
    height: 450px;
    flex: 1;
    display: flex;
    overflow: hidden;
    cursor: grab !important;
}

.gallery_reel:active {
    cursor: grabbing !important;
}

.gallery_reel_inner {
    display: flex;
    min-height: min-content;
}

.gallery_reel_inner>div {
    width: 300px;
    height: 450px;
    border-left: 5px solid white;
    display: inline-block;
    background-position: left top;
}

.slick_gallery_wrap {
    position: relative;
    max-width: 1920px;
    margin: 60px auto;
    color: white;
    font: bold 18px Arial,sans-serif;
}

.slick_gallery_reel {
    width: 100%;
    height: 450px;
    margin: 60px auto;
    cursor: grab !important;
}

.slick_gallery_reel :active {
    cursor: grabbing !important;
}

.slick_gallery_reel img {
    /* actual image slide div */
    width: 300px;
    height: 450px;
    border-left: 5px solid white;
    display: inline-block;
    background-position: left top;
    outline: none !important;
}

.my_slick_prev, .my_slick_next {
    background-color: rgba(0,0,0,.45);
    padding: 10px;
    z-index: 2;
    cursor: pointer;
}

.my_slick_prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.my_slick_next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.split_block_img_left {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
}

.split_block_img_left .split_img {
    xwidth: 983px;
    xheight: 647px;
    width: 70%;
    padding-top: 45%;
    background-size: cover;
    background-position: center center;
}

.split_text {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 560px;
    padding: 70px;
    transition: max-width .25s;
}

.split_text h3 {
    margin: 0 0 .75em 0;
    font-size: 3em;
    line-height: 1.25em;
}

.pink_back {
    background-color: var(--primary-color);
}

.photo_banner {
    background-size: cover;
    background-position: center center;
    padding: 80px 10px;
    text-align: center;
}

.photo_banner h2 {
    font-size: 4.75em;
    font-weight: bold;
    margin: 0 0 1em 0;
    line-height: 1.25em;
    text-shadow: 2px 2px 5px rgba(0,0,0,.55);
    transition: font-size .25s;
}

footer {
    background-color: var(--color-black);
}

.footer_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-family: 'Work Sans',Helvetica,sans-serif;
    padding: 60px 20px;
}

.footer_inner>div {
}

.footer_inner>div:first-child {
    /* address */
    flex: 1 1 37%;
}

.footer_inner>div:nth-child(2) {
    /*foot_nav*/
    text-align: center;
    flex: 1 1 auto;
}

.footer_inner>div:last-child {
    /* footer_signup */
    flex: 1 1 37%;
}

.foot_logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

footer a {
    text-decoration: none;
}

footer .tel {
    font-size: 2em;
    color: var(--color-white);
    transition: font-size .25s;
}

footer address {
    font-style: normal;
    color: var(--color-white);
}

footer address a {
    /* tel */
    display: inline-block;
    margin-top: 10px;
}

footer p, .foot_socials {
    margin: 20px 0 0 0;
}

.footer_em a {
    color: var(--color-white);
}

.foot_socials a {
    display: inline-block;
    margin-right: 2em;
    color: var(--color-white);
    font-weight: bold;
    font-size: 1.25em;
}

ul.foot_nav {
    list-style: none;
    margin: 0;
    padding: 0 15px;
    transition: font-size .25s;
    font: .938em 'Work Sans',sans-serif;
}

ul.foot_nav>li {
    display: block;
    margin: 0 10px;
    padding: 5px 0;
}

ul.foot_nav>li a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 1s;
}

ul.foot_nav>li a:hover {
    transition: color .1s;
    color: var(--color-white);
    text-decoration: underline;
}

ul.foot_nav>li.current_page_item a {
    font-weight: bold;
    border-bottom: 1px solid black;
}

.foot_copyright {
    font-size: .75em;
    color: var(--color-white);
    padding-bottom: 40px;
}

.foot_copyright a {
    color: black;
}

.footer_signup {
}

.footer_signup_inner {
    float: right;
    position: relative;
    max-width: 400px;
    display: inline-block;
	color: var(--color-white);
}

.footer_signup h3 {
    font: 1.5em 'Work Sans',sans-serif;
    color: var(--color-white);
    margin: 0;
}

.footer_signup p {
    margin: 20px 0 0 0;
    font-size: .938em;
}

.signup_small_form {
    display: inline-block;
    margin: 20px 0 0 0;
    background-color: white;
    display: flex;
    justify-content: center;
    border: 1px solid #CCC;
    padding: 4px;
}

.signup_small_form input[type='email'] {
    font-size: .938em;
    margin: 0;
    outline: none;
    border: none;
    flex-grow: 1;
    padding: 5px;
}

.signup_small_form input[type='button'] {
    font-size: .938em;
    font-weight: bold;
    margin: 0;
    outline: none;
    border: none;
    background-color: white;
    letter-spacing: -.5px;
    cursor: pointer;
    padding: 5px;
    letter-spacing: 1px;
}

.signup_small_form input[type='button']:hover {
    background-color: var(--primary-color);
    color: var(--color-white) !important;
}

.split_vid {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
}

.split_vid>div {
    /* width:50%; */
}

.split_vid>div:first-child {
    flex: 1 1 45%;
    padding-right: 105px;
    position: relative;
}

.split_vid>div:last-child {
    flex: 1 1 55%;
    padding-left: 15px;
}

.youtube_responsive_wrap {
    outline: 1px solid #ccc;
    width: 100%;
    padding-top: 56%;
    position: relative;
}

.youtube_responsive_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* width="560" height="315" */
}

.float_q {
    position: absolute;
    top: -60px;
    left: -120px;
    z-index: -1;
    width: 100%;
    height: auto;
    max-width: 199px;
}

.polaroid_section_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-between;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.polaroid_wrap {
    width: 30%;
    margin-bottom: 45px;
    position: relative;
}

.polaroid_wrap p {
    font: 1.35em 'Brandon Grotesque','Arial',sans-serif;
    color: #252525;
    margin: 20px 0 0 0;
    line-height: 1.25em;
    padding: 0 30px;
}

.polaroid {
    /*width:390px;
	height:325px;*/
    width: 100%;
    /*
	max-width:390px;
	padding-top:65%;
	*/
    max-width: 320px;
    padding-top: 45%;
    border: 16px solid white;
    border-bottom-width: 48px;
    background-color: #c6e1cd;
    box-shadow: 0px 2px 9px rgba(0,0,0,0.35);
    display: inline-block;
    margin: 0 auto;
    border-radius: 5px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

/* heartboxes ********************/
.heartbox {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: red;
    z-index: -1;
    display: none !important;
}

.h_topright {
    top: -40px;
    right: 0px;
}

/* end heartboxes ********************/
.background_bar {
    background-image: url('https://nxmcdn.com/images/OLZ/corporate/assets/uploads/marble_background.jpg');
    background-position: center center;
    background-size: cover;
    padding: 50px 20px;
}

.background_bar p {
    font-size: 3.25em;
    font-weight: bold;
    color: #252525;
    line-height: 1.25em;
    transition: font-size .25s;
}

/*

###############   FOR HORIZONTALLY ORIENTED SELLING KIT IMAGES


.selling_kit_wrap {
	width:100%;
	max-width:1400px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
}

.selling_kit_wrap>div {
	
}

.selling_kit_content {
	position:absolute;
	background-color:var(--primary-color);
	padding:60px;
	width:600px;
	transition: bottom .5s !important;
	text-align:left;
	z-index:2;
}

.selling_kit_wrap_left {
	text-align:right;
}

.selling_kit_wrap_right .selling_kit_content {
	right:0;
	top:50%;
	transform: translateY(-50%);
}

.selling_kit_wrap_left .selling_kit_content {
	left:0;
	top:50%;
	transform: translateY(-50%);
}

.selling_kit_content.animation_ready {
	bottom:-10%;
}

.selling_kit_content.scooted {
	bottom:-4%;
}

.selling_kit_content h3 {
	font:500 2.313em 'Brandon Grotesque','Arial',sans-serif;
	line-height:1.25em;
	margin:0;
}

.selling_kit_content h4 {
	font:1.25em 'Brandon Grotesque','Arial',sans-serif;
	line-height:1.25em;
	margin:0;
}

.selling_kit_content p {
	font:normal 1.35em 'Brandon Grotesque','Arial',sans-serif;
	line-height:1.25em;
	margin:1em 0;
}

.selling_kit_content .gen_button {
	margin-top:1em;
}

.selling_kit_side_img_div {
	width:100%;
	max-width:720px;
	padding-top:50%;
	display:inline-block;
}


.selling_kit_img_wrap img {
	width:100%;
	max-width:975px;
	max-width:580px;
	height:auto;
	transition:max-width .25s;
}

*/
/* 975 x 620 */
/* ##################   FOR VERTICALLY ORENTIED SELLIGN KITS */
.selling_kit_wrap_text_on_left, .selling_kit_wrap_text_on_right {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selling_kit_wrap_text_on_left .selling_kit_text {
    margin-right: 30px;
}

.selling_kit_wrap_text_on_right .selling_kit_text {
    margin-left: 30px;
}

.selling_kit_wrap_text_on_right {
    flex-direction: row-reverse;
}

.selling_kit_text {
    flex: 1 1 50%;
    transition: bottom .5s !important;
    text-align: left;
    justify-self: start;
    position: relative;
    background-color: var(--primary-color);
    padding: 60px;
}

.selling_kit_overhang {
    /* creates the illusion that the text area
	goes behind the image */
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    z-index: -1;
}

.selling_kit_wrap_text_on_left .selling_kit_overhang {
    right: 0;
}

.selling_kit_wrap_text_on_right .selling_kit_overhang {
    left: 0;
}

.selling_kit_img_wrap {
    flex: 1 1 50%;
    padding: 0;
    margin: 0;
}

.selling_kit_img_wrap img {
    width: 100%;
    max-width: 580px;
    height: auto;
    transition: max-width .25s;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}

.selling-kit-section h3 {
    font: 500 2.313em 'Brandon Grotesque','Arial',sans-serif;
    line-height: 1.25em;
    margin: 0;
}

.selling-kit-section h4 {
    font: 1.25em 'Brandon Grotesque','Arial',sans-serif;
    line-height: 1.25em;
    margin: 0;
}

.selling-kit-section p {
    font: normal 1.35em 'brandon_grotesqueregular','Arial',sans-serif;
    line-height: 1.25em;
    margin: 1em 0;
}

.selling-kit-section .gen_button {
    margin-top: 1em;
}

.keep_in_touch_bar {
    padding: 130px 20px;
    text-align: center;
    background-color: var(--primary-color);
}

.keep_in_touch_bar p {
    font: bold 5.25em 'brandon_grotesqueblack','Arial',sans-serif;
    margin: 0;
}

.keep_in_touch_bar .signup_small_form {
    max-width: 400px;
    margin: 60px auto 0 auto;
}

.catalog_wrap {
    margin: 80px auto;
    padding: 0 20px;
    max-width: 1300px;
}

/* SHOP *******************************************/
/* BIG PRODUCT GRID ////////////////////////////////////////////*/
.ag-productGrid {
    /* 970 +16 +16 = 1002 */
    max-width: 1002px;
    position: relative;
    margin: 0px auto;
    text-align: center;
}

.ag-productGrid .productItemBlock {
    /* this is the whole single block */
    display: inline-block;
    width: 300px;
    min-height: 480px;
    margin: 0 15px 60px 15px;
    text-align: left;
    vertical-align: top;
    /* to contain the SALE badge: */
    position: relative;
}

.ag-productGrid .productItemImageWrap {
    overflow: hidden;
    height: 400px;
    outline: 2px solid white;
    transition: outline-color .5s;
    text-align: center;
}

.ag-productGrid .productItemImageWrap:hover {
    outline-color: #91c4bb;
}

.ag-productGrid .productItemImageWrap img {
    width: 100%;
    max-width: 300px;
    height: 100%;
    transition: opacity .25s;
}

.ag-productGrid .productGridHoverAltImg {
    /* background-size:contain; */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ag-productGrid .productGridHoverAltImg:hover img {
    opacity: 0;
}

.ag-productGrid .productItemBlock h4 {
    font: normal 17px serif;
    margin: 12px 0 5px 0;
    line-height: 19px;
    text-transform: capitalize;
}

.ag-productGrid .productItemBlock h5 {
    font: 300 14px 'Montserrat', sans-serif;
    margin: 0 !important;
    line-height: 19px;
    color: black !important;
    /*
	color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 5px;
    font-size: 14px;
    */
}

.two_col_img_txt {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.two_col_img_txt>div {
    width: 50%;
    position: relative;
    transition: padding .25s;
}

/* img left or right */
.two_col_img_txt_right>div:first-child img, .two_col_img_txt_left>div:last-child img {
    width: 100%;
    height: auto;
}

/* txt right */
.two_col_img_txt_right>div:last-child {
    padding: 0 0 0 120px;
    align-self: center;
}

/* txt left */
.two_col_img_txt_left>div:first-child {
    padding: 0 120px 0 0;
    align-self: center;
}

.two_col_img_txt p {
    font-size: 1em;
    margin-top: 2em;
    line-height: 1.85em;
}

.big_banner {
    padding: 200px 30px;
    text-align: center;
    font: 500 4.25em 'Brandon Grotesque','Arial',sans-serif;
    line-height: 1.25em;
    transition: font-size .25s, padding .25s;
}

.big_banner i {
    font-weight: 600;
}

.quote_background {
    background-image: url('https://nxmcdn.com/images/OLZ/corporate/assets/uploads/quote2.jpg');
    background-size: cover;
}

.contact_form_wrap h4 {
    font: 500 1.5em 'Brandon Grotesque','Arial',sans-serif;
    margin: 0;
    margin-top: 1em;
}

.contact_form_wrap input[type="text"], .contact_form_wrap input[type="email"], .contact_form_wrap textarea {
    font: 300 1em 'Poppins','Times',sans-serif;
    padding: 4px 8px;
    width: 100%;
    max-width: 600px;
    margin-top: 1em;
}

.contact_form_wrap textarea {
    height: 4em;
}

.rep_mail_form_wrap {
    xdisplay: none;
}

.search_rep_wrap_all h3 {
    text-align: center;
}

#searchRepForm {
    margin-top: 2em;
    text-align: center;
    outline: 1px solid #CCC;
    padding: 20px;
    background-color: #e7fffb;
}

.search_rep_fields_wrap {
    font: 1.25em 'Poppins','Times',sans-serif;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto 2em auto;
}

.search_rep_fields_wrap>div {
    padding: 0 5px;
}

.search_rep_fields_wrap input[type='text'], .search_rep_fields_wrap select {
    font: 300 1em 'Poppins','Times',sans-serif;
    border: none;
    outline: 1px solid #CCC;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

.loader_repsearch, .loader_repsearch:before, .loader_repsearch:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader_repsearch {
    color: #000;
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader_repsearch:before, .loader_repsearch:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader_repsearch:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader_repsearch:after {
    left: 3.5em;
}

@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

#searchResults {
    margin-top: 40px;
}

.rep_search_result_wrap {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #CCC;
}

.rep_search_result_wrap>div {
}

.rep_search_result_wrap>div:first-child {
    flex: 0 0 190px;
}

.rep_search_result_wrap>div:first-child img {
    /* rep avatar image */
    width: 100%;
    height: auto;
    max-width: 190px;
}

.rep_search_result_wrap>div:last-child {
    padding-left: 40px;
}

.rep_search_result_wrap h4 {
    font: bold 1.75em 'brandon_grotesqueblack','Arial',serif;
    margin: 0;
}

.rep_search_result_wrap p {
    margin: 0 0 1em 0;
    font-size: 1em;
}

.rep_search_result_button {
    width: 200px;
    text-align: center;
    padding: 5px 0;
    margin-top: 5px;
}

.loader, .loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rep_profile_details_wrap {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.rep_profile_details_wrap>div {
}

.profile_img_wrap {
    flex: 0 0 190px;
}

.profile_img_wrap img {
    /* rep details avatar image */
    width: 100%;
    height: auto;
    max-width: 190px;
}

.rep_profile_details_wrap>div:last-child {
    padding-left: 40px;
}

.rep_profile_details_button_wrap {
    margin-top: 40px;
}

.rep_profile_details_wrap h1 {
    margin: 0;
}

.rep_profile_details_wrap p {
    margin: 1em 0 0 0;
}

/* ALL THE BUTTONS */
.rep_profile_details_button_wrap a {
    padding-left: 0;
    padding-right: 0;
    width: 160px;
    margin-top: 5px;
}

.hostess_content img {
    width: 100%;
    height: auto;
    max-width: 700px;
    margin-top: 3em;
}

.hostess_content h2 {
    margin-bottom: 1.25em;
}

.hostess_content p {
    font-size: 1.15em;
}

.hostess_rewards_3_col {
    max-width: 1560px;
    margin: 4em auto 2em auto;
    display: flex;
    justify-content: space-between;
}

.hostess_rewards_3_col p {
    font-size: 1.15em;
}

.hostess_rewards_3_col>div {
    padding: 0 15px;
    flex: 1 1 33%;
    text-align: center;
}

.hostess_rewards_3_col>div img {
    width: 100%;
    height: auto;
}

/* constant contact forms and crap ******************/
.cc_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.85);
    z-index: 9999;
    overflow-y: scroll;
    display: none;
}

.constant_contact_wrap {
    /* WHY are we doing it this way? */
    /* Because Constant Contacts new forms are */
    /* COMPLETE CRAP now, that's why. */
    display: table;
    width: 100%;
    height: 100%;
}

.constant_contact_wrap>div {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    text-align: center;
}

.cc_inner {
    /* needed for the positioning of the red x */
    /* ALSO, a bit of padding for smaller screens */
    display: inline-block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.ctct-inline-form {
}

.x_button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #CC0000;
    border: 4px solid #990000;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    font: bold 1em Arial,sans-serif;
}

.x_button:hover {
    background-color: red;
}

.ctct-inline-form h2 {
    margin: 0 !important;
    line-height: normal !important;
    font: 600 1.75em 'Brandon Grotesque','Arial',sans-serif !important;
}

.ctct-inline-form p {
    font: 300 1em 'Poppins','Times',sans-serif !important;
    line-height: normal !important;
}

p.ctct-gdpr-text {
    font-size: .75em !important;
    color: black !important;
}

.ctct-inline-form label {
    margin: 3px 0 6px 0 !important;
}

.ctct-form-field {
    padding: 2px !important;
    height: auto !important;
    margin: 0 !important;
}

/*  DEBUGGING */
/*
.ctct-form-success {
	display:block !important;
}
*/
.page404 ul {
    margin-top: 20px;
}

.page404 ul a {
    font: 1em 'Poppins','Times',sans-serif;
    text-decoration: none;
}

@media all and (max-width: 700px) {
    .ctct-inline-form {
        padding:0 !important;
    }

    .ctct-inline-form h2 {
        margin: 0 !important;
    }

    .ctct-form-element {
        padding: 0 !important;
        height: auto !important;
    }

    .ctct-form-field {
        padding: 0 !important;
        height: auto !important;
        margin: 0 !important;
    }

    .ctct-inline-form label {
        margin: 3px 0 0 0 !important;
    }

    .margin_top {
        margin-top: 50px;
    }

    .gen h1 {
        font-size: 3em;
    }
}

figure {
    margin: revert;
}

a.gen_button {
    color: #252525;
}

.black_button {
    color: #fff !important
}

a.black_button:hover {
    color: #fff;
}

a:hover {
    text-decoration: none;
}

/* END constant contact forms and crap ******************/

/* Custom CSS for enrollment page checkout */
.checkout-checkout.enrollment-page .panel-heading {
    display: flex;
    align-items: center;
}

.checkout-checkout.enrollment-page .opc-num {
    border-radius: 50%;
    background-color: black;
    width: 35px;
    height: 35px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
