@charset "UTF-8";
body,
#responsive-popup-nav span.menu-item.search>a .fa:before,
button {
    font-family: "Lato", Helvetica, Arial, sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Proxima Nova", Helvetica, Arial, sans-serif;
}

em {
    font-style: italic;
}

strong,
b,
dl dt,
thead,
tfoot,
th {
    font-weight: 900;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
}


/**************************************************************************
Author: Ian Douglas
Created March 2013
Last Revision: 04/12/2016

Change Log
04/12/2016:
	* Updated breakpoints, page_widths now defined by named breakpoints
	* Better no-flexbox fallbacks for grid and guttered grid
	* Removed non-working vertical-center no-flexbox fallback
	* Responsive styles for grid_container
10/23/2015:
	* Added documentation/markup
	* Removed old classes
	* Added container grids (.two, .three, etc)
	* Added guttered container grids
07/06/2015:
	* Added %vertical-center placeholder
03/04/2015:
	* Added flexbox placeholders and optional classes
01/21/2015:
	* Removed a bunch of little-used grid classes
	* Grid classes now extend a common "%grid-item-basics" placeholder
	  which reduces their bulk
	* Added .grid-first and .grid-last
11/19/2014:
	* Added breakpoint offsets, so breaks happen before contains end
07/14/2014:
	* Cleaned up code a bit. Took out .full-width (RIP)
07/07/2014:
	* Added at_dablet. Thanks Austin
04/15/2014:
	* Removed old code, fixed @extend on .full-width,
	* removed .one/.full-width floats
01/22/2014:
	* Changed the way at_page_width works to use min-width(num)
09/30/2013:
	* Changed the way "at_tablet" and "at_mobile" work
08/06/2013:
	* Changed breakpoints based on boston globe responsive design
05/17/2013:
	* made padding a default option
05/16/2013:
	* added $page_width_array
05/13/2013:
	* Changed exact_size to clip background at border-box

***************************************************************************/


/*
 * Breakpoints inspired by built-in breakpoints from Chrome's responsive dev tool
 * 4k       - 2560
 * Laptop L - 1440
 * Laptop   - 1024
 * Tablet   -  768
 * Mobile L -  425
 * Mobile M -  375
 * Mobile S -  320
 */

@media only screen and (max-width: 767px) {
    .hide-at-phone {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .show-at-phone {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .show-at-phone {
        display: inherit;
    }
}

@media only screen and (max-width: 1023px) {
    .hide-at-device {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    .show-at-device {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .show-at-device {
        display: inherit;
    }
}

.one-fifth,
.one-fifth-always,
.one-fourth,
.one-fourth-always,
.one-third,
.one-third-always,
.two-fifths,
.two-fifths-always,
.one-half,
.one-half-always,
.three-fifths,
.three-fifths-always,
.two-thirds,
.two-thirds-always,
.three-fourths,
.three-fourths-always,
.four-fifths,
.four-fifths-always {
    float: left;
    padding: 2.1rem;
}

.one-fifth,
.one-fifth-always {
    width: 20%;
}

.one-fourth,
.one-fourth-always {
    width: 25%;
}

.one-third,
.one-third-always {
    width: 33.3333333333%;
}

.two-fifths,
.two-fifths-always {
    width: 40%;
}

.one-half,
.one-half-always {
    width: 50%;
}

.three-fifths,
.three-fifths-always {
    width: 60%;
}

.two-thirds,
.two-thirds-always {
    width: 66.6666666667%;
}

.three-fourths,
.three-fourths-always {
    width: 75%;
}

.four-fifths,
.four-fifths-always {
    width: 80%;
}

.one,
.one-always {
    width: 100%;
    padding: 2.1rem;
}

@media only screen and (max-width: 767px) {
    .one-fifth,
    .two-fifths,
    .three-fifths,
    .four-fifths,
    .one-fourth,
    .three-fourths,
    .one-third,
    .two-thirds,
    .one-half {
        width: 100%;
        float: none;
    }
}

.clear {
    clear: both;
    float: none;
    zoom: 1;
}

.grid-first {
    clear: both;
}

@media only screen and (min-width: 768px) {
    .grid-first {
        padding-left: 0 !important;
    }
    .grid-last {
        padding-right: 0 !important;
    }
}


/*
 * Flexbox placeholders
 */

.flex-container,
.two,
.three,
.four,
.five,
.site-header>.wrap {
    display: flex;
}

.flex-justify-space-between,
.two.guttered,
.three.guttered,
.four.guttered,
.five.guttered,
.site-header>.wrap {
    justify-content: space-between;
}

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

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

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

.flex-align-stretch {
    align-items: stretch;
}

.flex-align-top {
    align-items: flex-start;
}

.flex-align-bottom,
.site-header>.wrap {
    align-items: flex-end;
}

.flex-align-baseline {
    align-items: baseline;
}

.flex-wrap,
.two,
.three,
.four,
.five {
    flex-wrap: wrap;
}

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


/*
 * Usually, you should @extend the placeholder flexbox classes when you
 * use them. However, if you have cause to use them on their own as classes,
 * uncomment as needed.
 */

.no-flexbox .flex-container,
.no-flexbox .two,
.no-flexbox .three,
.no-flexbox .four,
.no-flexbox .five,
.no-flexbox .site-header>.wrap {
    display: block;
    overflow: hidden;
}

.no-flexbox .flex-container>*,
.no-flexbox .two>*,
.no-flexbox .three>*,
.no-flexbox .four>*,
.no-flexbox .five>*,
.no-flexbox .site-header>.wrap>* {
    float: left;
}

.no-flexbox .flex-container.flex-direction-column>*,
.no-flexbox .flex-direction-column.two>*,
.no-flexbox .flex-direction-column.three>*,
.no-flexbox .flex-direction-column.four>*,
.no-flexbox .flex-direction-column.five>*,
.no-flexbox .site-header>.flex-direction-column.wrap>* {
    float: none;
}


/*
 * A grid with fixed column widths, specified as the immediate parent
 */


/*
 * Like `grid_container`, but the columns have a gutter in between
 */

.two>* {
    flex-basis: 50%;
}

.no-flexbox .two {
    overflow: hidden;
}

.no-flexbox .two>* {
    float: left;
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .two>* {
        flex-basis: 100%;
        width: 100%;
    }
}

.two.guttered>* {
    flex-basis: calc(50% - 1.05rem);
}

.two.guttered.mini>* {
    flex-basis: calc(50% - 0.25rem);
}

.no-flexbox .two.guttered.mini>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(5px);
    width: calc(50% - 2.5px);
}

.no-flexbox .two.guttered.mini>*:nth-child(2n) {
    margin-right: 0;
}

.two.guttered.tiny>* {
    flex-basis: calc(50% - 0.4rem);
}

.no-flexbox .two.guttered.tiny>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(8px);
    width: calc(50% - 4px);
}

.no-flexbox .two.guttered.tiny>*:nth-child(2n) {
    margin-right: 0;
}

.two.guttered.small>* {
    flex-basis: calc(50% - 0.65rem);
}

.no-flexbox .two.guttered.small>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(13px);
    width: calc(50% - 6.5px);
}

.no-flexbox .two.guttered.small>*:nth-child(2n) {
    margin-right: 0;
}

.two.guttered.large>* {
    flex-basis: calc(50% - 1.7rem);
}

.no-flexbox .two.guttered.large>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(34px);
    width: calc(50% - 17px);
}

.no-flexbox .two.guttered.large>*:nth-child(2n) {
    margin-right: 0;
}

.two.guttered.big>* {
    flex-basis: calc(50% - 2.75rem);
}

.no-flexbox .two.guttered.big>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(55px);
    width: calc(50% - 27.5px);
}

.no-flexbox .two.guttered.big>*:nth-child(2n) {
    margin-right: 0;
}

.two.guttered.huge>* {
    flex-basis: calc(50% - 4.45rem);
}

.no-flexbox .two.guttered.huge>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(89px);
    width: calc(50% - 44.5px);
}

.no-flexbox .two.guttered.huge>*:nth-child(2n) {
    margin-right: 0;
}

.two.guttered.massive>* {
    flex-basis: calc(50% - 7.2rem);
}

.no-flexbox .two.guttered.massive>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(144px);
    width: calc(50% - 72px);
}

.no-flexbox .two.guttered.massive>*:nth-child(2n) {
    margin-right: 0;
}

.no-flexbox .two.guttered>* {
    margin-right: 3%;
    width: 48.5%;
    margin-right: calc(21px);
    width: calc(50% - 10.5px);
}

.no-flexbox .two.guttered>*:nth-child(2n) {
    margin-right: 0;
}

@media only screen and (max-width: 767px) {
    .no-flexbox .two.guttered>* {
        margin-right: 0 !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .two.guttered>* {
        flex-basis: 100% !important;
    }
}

.three>* {
    flex-basis: 33.3333333333%;
}

.no-flexbox .three {
    overflow: hidden;
}

.no-flexbox .three>* {
    float: left;
    width: 33.3333333333%;
}

@media only screen and (max-width: 767px) {
    .three>* {
        flex-basis: 100%;
        width: 100%;
    }
}

.three.guttered>* {
    flex-basis: calc(33.3333333333% - 1.4rem);
}

.three.guttered.mini>* {
    flex-basis: calc(33.3333333333% - 0.3333333333rem);
}

.no-flexbox .three.guttered.mini>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(5px);
    width: calc(33.3333333333% - 3.3333333333px);
}

.no-flexbox .three.guttered.mini>*:nth-child(3n) {
    margin-right: 0;
}

.three.guttered.tiny>* {
    flex-basis: calc(33.3333333333% - 0.5333333333rem);
}

.no-flexbox .three.guttered.tiny>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(8px);
    width: calc(33.3333333333% - 5.3333333333px);
}

.no-flexbox .three.guttered.tiny>*:nth-child(3n) {
    margin-right: 0;
}

.three.guttered.small>* {
    flex-basis: calc(33.3333333333% - 0.8666666667rem);
}

.no-flexbox .three.guttered.small>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(13px);
    width: calc(33.3333333333% - 8.6666666667px);
}

.no-flexbox .three.guttered.small>*:nth-child(3n) {
    margin-right: 0;
}

.three.guttered.large>* {
    flex-basis: calc(33.3333333333% - 2.2666666667rem);
}

.no-flexbox .three.guttered.large>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(34px);
    width: calc(33.3333333333% - 22.6666666667px);
}

.no-flexbox .three.guttered.large>*:nth-child(3n) {
    margin-right: 0;
}

.three.guttered.big>* {
    flex-basis: calc(33.3333333333% - 3.6666666667rem);
}

.no-flexbox .three.guttered.big>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(55px);
    width: calc(33.3333333333% - 36.6666666667px);
}

.no-flexbox .three.guttered.big>*:nth-child(3n) {
    margin-right: 0;
}

.three.guttered.huge>* {
    flex-basis: calc(33.3333333333% - 5.9333333333rem);
}

.no-flexbox .three.guttered.huge>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(89px);
    width: calc(33.3333333333% - 59.3333333333px);
}

.no-flexbox .three.guttered.huge>*:nth-child(3n) {
    margin-right: 0;
}

.three.guttered.massive>* {
    flex-basis: calc(33.3333333333% - 9.6rem);
}

.no-flexbox .three.guttered.massive>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(144px);
    width: calc(33.3333333333% - 96px);
}

.no-flexbox .three.guttered.massive>*:nth-child(3n) {
    margin-right: 0;
}

.no-flexbox .three.guttered>* {
    margin-right: 3%;
    width: 31.3333333333%;
    margin-right: calc(21px);
    width: calc(33.3333333333% - 14px);
}

.no-flexbox .three.guttered>*:nth-child(3n) {
    margin-right: 0;
}

@media only screen and (max-width: 767px) {
    .no-flexbox .three.guttered>* {
        margin-right: 0 !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .three.guttered>* {
        flex-basis: 100% !important;
    }
}

.four>* {
    flex-basis: 25%;
}

.no-flexbox .four {
    overflow: hidden;
}

.no-flexbox .four>* {
    float: left;
    width: 25%;
}

@media only screen and (max-width: 767px) {
    .four>* {
        flex-basis: 100%;
        width: 100%;
    }
}

.four.guttered>* {
    flex-basis: calc(25% - 1.575rem);
}

.four.guttered.mini>* {
    flex-basis: calc(25% - 0.375rem);
}

.no-flexbox .four.guttered.mini>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(5px);
    width: calc(25% - 3.75px);
}

.no-flexbox .four.guttered.mini>*:nth-child(4n) {
    margin-right: 0;
}

.four.guttered.tiny>* {
    flex-basis: calc(25% - 0.6rem);
}

.no-flexbox .four.guttered.tiny>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(8px);
    width: calc(25% - 6px);
}

.no-flexbox .four.guttered.tiny>*:nth-child(4n) {
    margin-right: 0;
}

.four.guttered.small>* {
    flex-basis: calc(25% - 0.975rem);
}

.no-flexbox .four.guttered.small>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(13px);
    width: calc(25% - 9.75px);
}

.no-flexbox .four.guttered.small>*:nth-child(4n) {
    margin-right: 0;
}

.four.guttered.large>* {
    flex-basis: calc(25% - 2.55rem);
}

.no-flexbox .four.guttered.large>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(34px);
    width: calc(25% - 25.5px);
}

.no-flexbox .four.guttered.large>*:nth-child(4n) {
    margin-right: 0;
}

.four.guttered.big>* {
    flex-basis: calc(25% - 4.125rem);
}

.no-flexbox .four.guttered.big>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(55px);
    width: calc(25% - 41.25px);
}

.no-flexbox .four.guttered.big>*:nth-child(4n) {
    margin-right: 0;
}

.four.guttered.huge>* {
    flex-basis: calc(25% - 6.675rem);
}

.no-flexbox .four.guttered.huge>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(89px);
    width: calc(25% - 66.75px);
}

.no-flexbox .four.guttered.huge>*:nth-child(4n) {
    margin-right: 0;
}

.four.guttered.massive>* {
    flex-basis: calc(25% - 10.8rem);
}

.no-flexbox .four.guttered.massive>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(144px);
    width: calc(25% - 108px);
}

.no-flexbox .four.guttered.massive>*:nth-child(4n) {
    margin-right: 0;
}

.no-flexbox .four.guttered>* {
    margin-right: 3%;
    width: 22.75%;
    margin-right: calc(21px);
    width: calc(25% - 15.75px);
}

.no-flexbox .four.guttered>*:nth-child(4n) {
    margin-right: 0;
}

@media only screen and (max-width: 767px) {
    .no-flexbox .four.guttered>* {
        margin-right: 0 !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .four.guttered>* {
        flex-basis: 100% !important;
    }
}

.five>* {
    flex-basis: 20%;
}

.no-flexbox .five {
    overflow: hidden;
}

.no-flexbox .five>* {
    float: left;
    width: 20%;
}

@media only screen and (max-width: 767px) {
    .five>* {
        flex-basis: 100%;
        width: 100%;
    }
}

.five.guttered>* {
    flex-basis: calc(20% - 1.68rem);
}

.five.guttered.mini>* {
    flex-basis: calc(20% - 0.4rem);
}

.no-flexbox .five.guttered.mini>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(5px);
    width: calc(20% - 4px);
}

.no-flexbox .five.guttered.mini>*:nth-child(5n) {
    margin-right: 0;
}

.five.guttered.tiny>* {
    flex-basis: calc(20% - 0.64rem);
}

.no-flexbox .five.guttered.tiny>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(8px);
    width: calc(20% - 6.4px);
}

.no-flexbox .five.guttered.tiny>*:nth-child(5n) {
    margin-right: 0;
}

.five.guttered.small>* {
    flex-basis: calc(20% - 1.04rem);
}

.no-flexbox .five.guttered.small>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(13px);
    width: calc(20% - 10.4px);
}

.no-flexbox .five.guttered.small>*:nth-child(5n) {
    margin-right: 0;
}

.five.guttered.large>* {
    flex-basis: calc(20% - 2.72rem);
}

.no-flexbox .five.guttered.large>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(34px);
    width: calc(20% - 27.2px);
}

.no-flexbox .five.guttered.large>*:nth-child(5n) {
    margin-right: 0;
}

.five.guttered.big>* {
    flex-basis: calc(20% - 4.4rem);
}

.no-flexbox .five.guttered.big>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(55px);
    width: calc(20% - 44px);
}

.no-flexbox .five.guttered.big>*:nth-child(5n) {
    margin-right: 0;
}

.five.guttered.huge>* {
    flex-basis: calc(20% - 7.12rem);
}

.no-flexbox .five.guttered.huge>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(89px);
    width: calc(20% - 71.2px);
}

.no-flexbox .five.guttered.huge>*:nth-child(5n) {
    margin-right: 0;
}

.five.guttered.massive>* {
    flex-basis: calc(20% - 11.52rem);
}

.no-flexbox .five.guttered.massive>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(144px);
    width: calc(20% - 115.2px);
}

.no-flexbox .five.guttered.massive>*:nth-child(5n) {
    margin-right: 0;
}

.no-flexbox .five.guttered>* {
    margin-right: 3%;
    width: 17.6%;
    margin-right: calc(21px);
    width: calc(20% - 16.8px);
}

.no-flexbox .five.guttered>*:nth-child(5n) {
    margin-right: 0;
}

@media only screen and (max-width: 767px) {
    .no-flexbox .five.guttered>* {
        margin-right: 0 !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .five.guttered>* {
        flex-basis: 100% !important;
    }
}


/**%%
 * @title Grid
 * @description The grid. Comes in element-by-element, children-of-container, and guttered-children-of-container varieties.
 *
 * @markup
 * h5
 *     {Element-by-element grid}
 * div.one-half.__nmas-box-short*2
 *     {1 / 2}
 * div.one-third.__nmas-box-short*3
 *     {1 / 3}
 * div.one-fourth.__nmas-box-short*4
 *     {1 / 4}
 * div.one-fifth.__nmas-box-short*5
 *     {1 / 5}
 * div.one-third.__nmas-box-short
 *     {1 / 3}
 * div.two-thirds.__nmas-box-short
 *     {2 / 3}
 * div.one-fourth.__nmas-box-short
 *     {1 / 4}
 * div.three-fourths.__nmas-box-short
 *     {3 / 4}
 * div.one-fifth.__nmas-box-short
 *     {1 / 5}
 * div.three-fifths.__nmas-box-short
 *     {3 / 5}
 * div.one-fifth.__nmas-box-short
 *     {1 / 5}
 * div.two-fifths.__nmas-box-short
 *     {2 / 5}
 * div.three-fifths.__nmas-box-short
 *     {3 / 5}
 * div.clear
 * h5
 *     {Container grid}
 * div.two
 *     div.__nmas-box-short*2
 *         {two}
 * div.three
 *     div.__nmas-box-short*3
 *         {three}
 * div.four
 *     div.__nmas-box-short*4
 *         {four}
 * div.five
 *     div.__nmas-box-short*5
 *         {five}
 * h5
 *     {Guttered container grid}
 * div.guttered.two
 *     div.__nmas-box-short*2
 *         {guttered two}
 * div.guttered.three
 *     div.__nmas-box-short*3
 *         {guttered three}
 * div.guttered.four
 *     div.__nmas-box-short*4
 *         {guttered four}
 * div.guttered.five
 *     div.__nmas-box-short*5
 *         {guttered five}
 *
 * h5
 *     {Guttered container grid sizes}
 * div.mini.guttered.four
 *     div.__nmas-box-short*4
 *         {mini guttered four}
 * div.tiny.guttered.four
 *     div.__nmas-box-short*4
 *         {tiny guttered four}
 * div.small.guttered.four
 *     div.__nmas-box-short*4
 *         {small guttered four}
 * div.guttered.four
 *     div.__nmas-box-short*4
 *         {[medium] guttered four}
 * div.large.guttered.four
 *     div.__nmas-box-short*4
 *         {large guttered four}
 * div.big.guttered.four
 *     div.__nmas-box-short*4
 *         {big guttered four}
 * div.huge.guttered.four
 *     div.__nmas-box-short*4
 *         {huge guttered four}
 * div.massive.guttered.four
 *     div.__nmas-box-short*4
 *         {massive guttered four}
 */

html {
    font-size: 62.5%;
    box-sizing: border-box;
    background-clip: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    background-clip: inherit;
}

img:not([width]) {
    width: auto;
}

img:not([height]) {
    height: auto;
}

embed,
iframe,
img,
object,
video,
.wp-caption {
    max-width: 100%;
    max-height: 100%;
}

body {
    background-color: #ef6b1e;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.625;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: #ef6b1e;
    color: #fff;
}

a {
    color: #ef6b1e;
    text-decoration: none;
    transition: color 3ms ease-in-out;
}

a:hover {
    color: #b44a0d;
}

p,
ul,
ol,
dl {
    margin-bottom: 1.3rem;
}

u {
    text-decoration: underline;
}

del {
    text-decoration: line-through;
}

sup {
    font-size: 0.65em;
    vertical-align: super;
}

sub {
    font-size: 0.65em;
    vertical-align: sub;
}

li {
    margin-left: 2.1rem;
}

blockquote {
    margin: 2.1rem 3.4rem;
    padding-left: 0.5rem;
    position: relative;
}

blockquote:before {
    content: "\201C";
    display: inline-block;
    font-size: 4.4rem;
    line-height: 1;
    position: absolute;
    right: 100%;
    top: 0;
}

blockquote cite {
    display: block;
    text-align: right;
}

pre {
    background-color: #0063b5;
    color: #fff;
    font-family: monospace;
    margin: 1.3rem 2.1rem;
    max-width: 100%;
    padding: 1.3rem;
    word-wrap: break-word;
    white-space: pre-wrap;
}

address {
    white-space: pre-wrap;
}

address br {
    display: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    line-height: 1.2;
    margin-bottom: 1.3rem;
}

h1.inline,
.inline.h1,
h2.inline,
.inline.h2,
h3.inline,
.inline.h3,
h4.inline,
.inline.h4,
h5.inline,
.inline.h5,
h6.inline,
.inline.h6 {
    line-height: 1.625;
    margin-bottom: 0;
}

h1,
.h1,
.h1-size {
    font-size: 4.4rem;
}

h2,
.h2,
.h2-size {
    font-size: 3rem;
}

h3,
.h3,
.h3-size {
    font-size: 2.4rem;
}

h4,
.h4,
.h4-size {
    font-size: 2rem;
}

h5,
.h5,
.h5-size {
    font-size: 1.8rem;
}

h6,
.h6,
.h6-size {
    font-size: 1.6rem;
}

small {
    font-size: 0.75em;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    line-height: 1;
    width: 100%;
}

th,
td {
    text-align: left;
    padding: 1.3rem;
}

thead {
    border-bottom: solid 1px #fff;
}

tfoot {
    border-top: solid 1px #fff;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #666;
    margin: 1em 0;
    padding: 0;
}

blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        visibility: visible;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: hidden;
    }
}

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
    word-wrap: normal !important;
}

.contain,
.site-header>.wrap,
.site-inner,
.footer-widgets .wrap,
.pre-footer .wrap,
.site-footer .wrap,
.post-footer .wrap,
.nm-footer .wrap,
.no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
.no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
.site-header.site-header-logo-widget+.nav-primary>.wrap {
    padding-left: 10%;
}

@media only screen and (min-width: 1024px) {
    .contain,
    .site-header>.wrap,
    .site-inner,
    .footer-widgets .wrap,
    .pre-footer .wrap,
    .site-footer .wrap,
    .post-footer .wrap,
    .nm-footer .wrap,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
    .site-header.site-header-logo-widget+.nav-primary>.wrap {
        padding-left: 15%;
    }
}

@media only screen and (min-width: 2560px) {
    .contain,
    .site-header>.wrap,
    .site-inner,
    .footer-widgets .wrap,
    .pre-footer .wrap,
    .site-footer .wrap,
    .post-footer .wrap,
    .nm-footer .wrap,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
    .site-header.site-header-logo-widget+.nav-primary>.wrap {
        padding-left: 25%;
    }
}

@media only screen and (max-width: 1023px) {
    .contain,
    .site-header>.wrap,
    .site-inner,
    .footer-widgets .wrap,
    .pre-footer .wrap,
    .site-footer .wrap,
    .post-footer .wrap,
    .nm-footer .wrap,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
    .site-header.site-header-logo-widget+.nav-primary>.wrap {
        padding-left: 5%;
    }
}

.contain,
.site-header>.wrap,
.site-inner,
.footer-widgets .wrap,
.pre-footer .wrap,
.site-footer .wrap,
.post-footer .wrap,
.nm-footer .wrap,
.no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
.no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
.site-header.site-header-logo-widget+.nav-primary>.wrap {
    padding-right: 10%;
}

@media only screen and (min-width: 1024px) {
    .contain,
    .site-header>.wrap,
    .site-inner,
    .footer-widgets .wrap,
    .pre-footer .wrap,
    .site-footer .wrap,
    .post-footer .wrap,
    .nm-footer .wrap,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
    .site-header.site-header-logo-widget+.nav-primary>.wrap {
        padding-right: 15%;
    }
}

@media only screen and (min-width: 2560px) {
    .contain,
    .site-header>.wrap,
    .site-inner,
    .footer-widgets .wrap,
    .pre-footer .wrap,
    .site-footer .wrap,
    .post-footer .wrap,
    .nm-footer .wrap,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
    .site-header.site-header-logo-widget+.nav-primary>.wrap {
        padding-right: 25%;
    }
}

@media only screen and (max-width: 1023px) {
    .contain,
    .site-header>.wrap,
    .site-inner,
    .footer-widgets .wrap,
    .pre-footer .wrap,
    .site-footer .wrap,
    .post-footer .wrap,
    .nm-footer .wrap,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>*,
    .no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth),
    .site-header.site-header-logo-widget+.nav-primary>.wrap {
        padding-right: 5%;
    }
}

.no-contain .site-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.site-header:before,
.site-header:after,
.nav-primary:before,
.nav-primary:after,
.site-inner:before,
.site-inner:after,
.content-sidebar-wrap:before,
.content-sidebar-wrap:after,
.footer-widgets:before,
.footer-widgets:after,
.site-footer:before,
.site-footer:after,
.entry-content:before,
.entry-content:after {
    content: " ";
    display: table;
}

.site-header:after,
.nav-primary:after,
.site-inner:after,
.content-sidebar-wrap:after,
.footer-widgets:after,
.site-footer:after,
.entry-content:after {
    clear: both;
}

.clear {
    clear: both;
    float: none;
    zoom: 1;
}

@media only screen and (max-width: 767px) {
    .hide-at-phone {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .show-at-phone {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .show-at-phone {
        display: inherit;
    }
}

@media only screen and (max-width: 1023px) {
    .hide-at-device {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    .show-at-device {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .show-at-device {
        display: inherit;
    }
}

.flex-container,
.two,
.three,
.four,
.five,
.site-header>.wrap {
    display: flex;
}

.flex-justify-space-between,
.two.guttered,
.three.guttered,
.four.guttered,
.five.guttered,
.site-header>.wrap {
    justify-content: space-between;
}

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

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

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

.flex-align-stretch {
    align-items: stretch;
}

.flex-align-top {
    align-items: flex-start;
}

.flex-align-bottom,
.site-header>.wrap {
    align-items: flex-end;
}

.flex-align-baseline {
    align-items: baseline;
}

.flex-wrap,
.two,
.three,
.four,
.five {
    flex-wrap: wrap;
}

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

.full-width-content .entry-content {
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    .full-width-content .entry-content {
        width: 100%;
    }
}

.no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section.section-fullwidth>* {
    width: 100%;
}

.no-contain.et_divi_builder #et_builder_outer_content div.et_pb_section:not(.section-fullwidth)>* {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .page-template-template-main .site-inner {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .page-template-template-main .site-inner .banner {
        order: 1;
    }
    .page-template-template-main .site-inner .right_column,
    .page-template-template-main .site-inner .left_column {
        width: 100%;
    }
}

.site-header {
    background-color: #ef6b1e;
    color: #fff;
    position: relative;
    z-index: 100;
}


/*
 * Markup
 *     (when using one of the two NM header functions)
 *
 *
 *     ((Option 1 - logo and widget area))
 *         .site-header.site-header-logo-widget
 *             .wrap
 *                 .header-left.logo
 *                     <a>
 *                         <img>
 *                 .header-right
 *                     [[widgets markup]]
 *
 *
 *
 *     ((Option 2 - logo and navigation))
 *         .site-header.site-header-logo-nav
 *             .wrap
 *                 .header-left.logo
 *                     <a>
 *                         <img>
 *                 .header-right
 *                     .nav-primary
 *                         .wrap
 *                             [[.genesis-nav-menu, etc]]
 *
 */

.site-header>.wrap {
    position: relative;
}

.site-header .logo img {
    display: block;
}

.site-header .header-right {
    float: right;
    align-self: center;
}

.site-header .header-left {
    width: 200px;
    padding: 0.8rem 2.1rem;
    float: left;
}

.site-header .genesis-nav-menu {
    float: right;
    margin-top: 0;
}

.site-header .genesis-nav-menu:before,
.site-header .genesis-nav-menu:after {
    content: " ";
    display: table;
}

.site-header .genesis-nav-menu:after {
    clear: both;
}

.site-header .custom-logo-link img {
    width: 200px;
    height: auto;
}

.flexbox .site-header>.wrap:before,
.flexbox .site-header>.wrap:after {
    display: none;
}

.no-flexbox .site-header>.wrap {
    overflow: visible !important;
}

.title-area {
    display: none;
}

.mobile-header {
    display: none;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
    overflow: hidden;
    z-index: 9000;
    height: 7.6rem;
}

.mobile-header .navbar-toggle {
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 15%;
    text-align: center;
    vertical-align: middle;
    z-index: 9750;
    font-size: 2rem;
}

.mobile-header .navbar-toggle:after {
    content: " ";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-left: -0.25em;
}

.mobile-header .logo {
    position: absolute;
    top: 0.8rem;
    bottom: 0.8rem;
    left: 0;
    right: 0;
    padding: 0 15%;
    text-align: center;
    z-index: 9500;
}

.mobile-header .logo img {
    height: 100%;
    width: auto;
}

.mobile-header .pre-header {
    display: none;
}

@media only screen and (max-width: 1023px) {
    .mobile-header {
        display: block;
    }
    .site-header {
        display: none;
    }
    .site-container {
        margin-top: 7.6rem;
    }
}

.mobile-header {
    background-color: #ef6b1e;
}

.mobile-header .navbar-toggle {
    color: #232323;
}

.mobile-header .logo-wrapper,
.mobile-header .navbar-toggle {
    padding: 0.8rem;
}

.site-container .nav-primary {
    clear: both;
    position: relative;
    z-index: 1000;
}

.site-container .nav-primary .wrap:before,
.site-container .nav-primary .wrap:after {
    content: " ";
    display: table;
}

.site-container .nav-primary .wrap:after {
    clear: both;
}

.site-container .nav-primary ul,
.site-container .nav-primary li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}

.site-container .nav-primary .menu-item {
    display: block;
    position: relative;
}

.site-container .nav-primary .menu-item a {
    display: block;
}

.site-container .nav-primary .genesis-nav-menu>.menu-item {
    float: left;
}

.site-container .nav-primary .genesis-nav-menu>.menu-item>.sub-menu {
    display: block;
    left: -9999px;
    opacity: 0;
    position: absolute;
    z-index: 1050;
}

.site-container .nav-primary .genesis-nav-menu>.menu-item:hover>.sub-menu {
    left: auto;
    opacity: 1;
}

.site-container .nav-primary .genesis-nav-menu .sub-menu {
    padding-left: 0;
    width: 250px;
}

.site-container .nav-primary .genesis-nav-menu .sub-menu>.menu-item .sub-menu {
    display: block;
    left: -9999px;
    top: 0;
    opacity: 0;
    position: absolute;
}

.site-container .nav-primary .genesis-nav-menu .sub-menu>.menu-item:hover>.sub-menu {
    left: 100%;
    opacity: 1;
}

@media only screen and (max-width: 1023px) {
    .site-container .nav-primary .genesis-nav-menu {
        display: none;
    }
}

.site-container .nav-primary .genesis-nav-menu .menu-item>a {
    padding: 2.1rem 2.1rem;
    text-align: center;
    font-size: 1.6rem;
    text-decoration: none;
}

.site-container .nav-primary .genesis-nav-menu .sub-menu .menu-item>a {
    text-align: left;
    padding: 1.3rem 2.1rem;
}

.site-container .nav-primary .genesis-nav-menu .menu-item:before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 0;
    z-index: 1;
    background-color: #fff;
    backface-visibility: hidden;
    perspective: 1000;
    transition: min-height 200ms ease-in-out;
    overflow: hidden;
}

.site-container .nav-primary .genesis-nav-menu .menu-item>a {
    position: relative;
    z-index: 2;
    color: #fff;
    transition: color 100ms ease-in;
}

.site-container .nav-primary .genesis-nav-menu .menu-item:hover:before {
    min-height: 100%;
}

.site-container .nav-primary .genesis-nav-menu .menu-item:hover>a {
    color: #232323;
}

.site-container .nav-primary .genesis-nav-menu .menu-item .sub-menu {
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    font-size: .8em;
}

.site-container .nav-primary .genesis-nav-menu .menu-item .sub-menu a {
    position: relative;
    border-top: none;
    background-color: transparent;
    color: #232323;
    z-index: 2;
    transition: color 200ms ease-in-out;
}

.site-container .nav-primary .genesis-nav-menu .menu-item .sub-menu li {
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.site-container .nav-primary .genesis-nav-menu .menu-item .sub-menu li:after {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.1);
    backface-visibility: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease-in-out;
}

.site-container .nav-primary .genesis-nav-menu .menu-item .sub-menu li:hover a {
    color: #232323;
}

.site-container .nav-primary .genesis-nav-menu .menu-item .sub-menu li:hover:after {
    transform: scaleX(1);
}

.site-container .nav-primary .genesis-nav-menu .current-menu-item,
.site-container .nav-primary .genesis-nav-menu .current-menu-ancestor {
    position: relative;
}

.site-container .nav-primary .genesis-nav-menu .current-menu-item:after,
.site-container .nav-primary .genesis-nav-menu .current-menu-ancestor:after {
    transform: scaleX(1) !important;
}

.site-container .nav-primary .genesis-nav-menu .current-menu-item .sub-menu .current-menu-item a,
.site-container .nav-primary .genesis-nav-menu .current-menu-ancestor .sub-menu .current-menu-item a {
    border-bottom: none;
}

#responsive-popup-nav {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10500;
    overflow-x: hidden;
    overflow-y: auto;
}

#responsive-popup-nav ul,
#responsive-popup-nav li {
    list-style: none;
    display: block;
}

#responsive-popup-nav a {
    display: block;
}

#responsive-popup-nav {
    transition: width 200ms ease-in-out;
    width: 0px;
}

#responsive-popup-nav .logo {
    padding: 1.3rem;
    width: 100%;
    max-width: 260px;
}

#responsive-popup-nav .logo .custom-logo-link>img {
    height: auto;
    width: 100%;
}

#responsive-popup-nav .genesis-nav-menu {
    min-width: 260px;
    padding-left: 0;
}

#responsive-popup-nav .genesis-nav-menu .sub-menu {
    padding-left: 0;
}

#responsive-popup-nav ul,
#responsive-popup-nav li {
    margin: 0;
}

#responsive-popup-nav span.menu-item.search>a .fa:before {
    content: attr(aria-label);
}

.responsive-nav-off #responsive-popup-nav {
    width: 0;
    height: 0;
}

.responsive-nav-off #responsive-nav-trap {
    z-index: -10000;
    visibility: hidden;
}

.responsive-nav-on #responsive-popup-nav {
    width: 260px;
    height: 100%;
    display: block;
    overflow-y: auto;
}

.responsive-nav-on #responsive-nav-trap {
    z-index: 10000;
}

#responsive-nav-trap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0063b5;
    opacity: 0.4;
}

#responsive-popup-nav {
    background-color: #ef6b1e;
    color: #fff;
}

#responsive-popup-nav .logo {
    border-bottom: 4px solid #ef6b1e;
}

#responsive-popup-nav .genesis-nav-menu a {
    color: #fff;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-right: 0.8rem;
}

#responsive-popup-nav .genesis-nav-menu a:hover {
    background-color: #ef6b1e;
    color: #666;
}

#responsive-popup-nav .genesis-nav-menu>li>a {
    background-color: #ef6b1e;
    font-size: 1.6rem;
    padding-left: 1.3rem;
}

#responsive-popup-nav .genesis-nav-menu>li>ul>li>a {
    background-color: #9c400b;
    font-size: 1.36rem;
    padding-left: 2.34rem;
}

#responsive-popup-nav .genesis-nav-menu>li>ul>li ul a {
    background-color: #632907;
    font-size: 1.156rem;
    padding-left: 3.12rem;
}

#responsive-popup-nav span.menu-item.search>a {
    background-color: #ef6b1e;
    color: #fff;
    font-size: 1.6rem;
    padding-top: 0.8rem;
    padding-right: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 1.3rem;
}

#responsive-popup-nav span.menu-item.search>a:hover {
    background-color: #ef6b1e;
    color: #666;
}


/* {NM-GDD-Child} Structure Styles */

.footer-widgets {
    display: grid;
}

.footer-widgets-1 {
    grid-column-start: 1;
    grid-column-end: span 1;
    grid-row-start: 1;
}

.footer-widgets-2 {
    grid-column-start: 2;
    grid-column-end: span 1;
    grid-row-start: 1;
}

.footer-widgets-3 {
    grid-column-start: 3;
    grid-column-end: span 1;
    grid-row-start: 1;
}

.footer-widgets-4 {
    grid-column-start: 1;
    grid-column-end: span 2;
    grid-row-start: 2;
}

.footer-widgets-5 {
    grid-column-start: 3;
    grid-column-end: span 1;
    grid-row-start: 2;
}

.footer-widgets-6 {
    grid-column-start: 1;
    grid-column-end: span 2;
    grid-row-start: 3;
}


/* End {NM-GDD-Child} Structure Styles */


/* AZTC Specific Styles */

.site-footer {
    border-top: 1px solid #666;
    padding: 40px 0;
}

.footer-widgets {
    grid-template-columns: repeat(3, 33.3%);
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 50%);
    }
    .footer-widgets .footer-widgets-1 {
        grid-column-start: 1;
        grid-column-end: span 1;
        grid-row-start: 1;
    }
    .footer-widgets .footer-widgets-2 {
        grid-column-start: 2;
        grid-column-end: span 1;
        grid-row-start: 1;
    }
    .footer-widgets .footer-widgets-3 {
        grid-column-start: 1;
        grid-column-end: span 1;
        grid-row-start: 2;
    }
    .footer-widgets .footer-widgets-4 {
        grid-column-start: 1;
        grid-column-end: span 2;
        grid-row-start: 3;
    }
    .footer-widgets .footer-widgets-5 {
        grid-column-start: 2;
        grid-column-end: span 1;
        grid-row-start: 2;
    }
    .footer-widgets .footer-widgets-6 {
        grid-column-start: 1;
        grid-column-end: span 2;
        grid-row-start: 4;
    }
}

@media only screen and (max-width: 767px) {
    .footer-widgets {
        grid-template-columns: repeat(1, 100%);
    }
    .footer-widgets .footer-widgets-1,
    .footer-widgets .footer-widgets-2,
    .footer-widgets .footer-widgets-3,
    .footer-widgets .footer-widgets-4,
    .footer-widgets .footer-widgets-5,
    .footer-widgets .footer-widgets-6 {
        grid-column-start: 1;
        grid-column-end: span 1;
    }
    .footer-widgets .footer-widgets-1 {
        grid-row-start: 1;
    }
    .footer-widgets .footer-widgets-2 {
        grid-row-start: 2;
    }
    .footer-widgets .footer-widgets-3 {
        grid-row-start: 3;
    }
    .footer-widgets .footer-widgets-4 {
        grid-row-start: 4;
    }
    .footer-widgets .footer-widgets-5 {
        grid-row-start: 5;
    }
    .footer-widgets .footer-widgets-6 {
        grid-row-start: 6;
    }
}

.social-media .fa,
.social-media .fa {
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    margin: 8px;
    width: 40px;
    background: #333;
    color: #ddd;
    display: inline-block;
    text-align: center;
}

.social-media .fa:hover,
.social-media .fa:hover {
    background: #ef6b1e;
    color: #ddd;
}

.footer-widget-area {
    margin-bottom: 21px;
}

.pre-footer {
    padding: 34px;
    background: #333;
    text-align: center;
}

.pre-footer h1,
.pre-footer .h1,
.pre-footer h2,
.pre-footer .h2,
.pre-footer h3,
.pre-footer .h3,
.pre-footer h4,
.pre-footer .h4,
.pre-footer h5,
.pre-footer .h5,
.pre-footer h5,
.pre-footer .h5,
.pre-footer p {
    color: #fff;
}

.pre-footer a:hover {
    color: #fff;
}

.site-footer {
    background: #ddd;
}

.site-footer h1,
.site-footer .h1,
.site-footer h2,
.site-footer .h2,
.site-footer h3,
.site-footer .h3,
.site-footer h4,
.site-footer .h4,
.site-footer h5,
.site-footer .h5,
.site-footer h6,
.site-footer .h6 {
    color: #ef6b1e;
}

.site-footer .widget_nav_menu a {
    color: #232323;
}

.site-footer .widget_nav_menu a:hover {
    color: #ef6b1e;
}

.site-footer .gform_wrapper {
    margin: 0;
}

.site-footer .gform_wrapper ul li.gfield {
    margin: 0;
}

.site-footer .gform_wrapper form {
    display: grid;
    grid-template-columns: 375px 1fr;
    align-items: end;
}

.site-footer .gform_wrapper form .gform_body {
    grid-column-start: 1;
    grid-column-end: span 1;
    grid-row-start: 1;
}

.site-footer .gform_wrapper form .gform_body .top_label input.medium {
    height: 36px;
    width: 100% !important;
    padding: 10px 0px !important;
    padding-left: 10px !important;
    border: 1px solid #666;
    border-radius: 5px;
}

.site-footer .gform_wrapper form .gform_footer {
    padding: 0;
    grid-column-start: 2;
    grid-column-end: span 1;
    grid-row-start: 1;
}

.site-footer .gform_wrapper form .gform_footer input[type="submit"] {
    height: 36px;
    width: auto;
    margin: 0;
    background: #ef6b1e;
    border: none;
    border-radius: 5px;
}

.site-footer .gform_wrapper form .gform_footer input[type="submit"]:hover {
    background: #fd9968;
}

@media only screen and (max-width: 767px) {
    .site-footer .gform_wrapper form {
        grid-template-columns: repeat(1, 100%);
    }
    .site-footer .gform_wrapper form .gform_body {
        grid-column-start: 1;
        grid-column-end: span 1;
        grid-row-start: 1;
    }
    .site-footer .gform_wrapper form .gform_body .gfield {
        padding-right: 0;
    }
    .site-footer .gform_wrapper form .gform_footer {
        grid-column-start: 1;
        grid-column-end: span 1;
        grid-row-start: 2;
    }
    .site-footer .gform_wrapper form .gform_footer input[type="submit"] {
        width: 100%;
    }
}

.site-footer ul {
    padding-left: 0;
}

.site-footer ul li {
    list-style: none;
    margin-left: 0;
}

.post-footer {
    background: #ddd;
}

.post-footer>.wrap {
    padding-bottom: 21px;
}

button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
a:link.button,
a:visited.button {
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0.8rem 2.1rem;
    background: #ef6b1e;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    transition: 0.2s all linear;
}

button:hover,
.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
a:link.button:hover,
a:visited.button:hover {
    background: #fd9968;
    text-decoration: none;
    cursor: pointer;
}

.hero {
    overflow: hidden;
    max-height: 450px;
    position: relative;
    margin-bottom: 34px;
}

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

.hero .hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: rgba(68, 68, 68, 0.4) 0px 3px 3px;
}

.et_divi_builder #et_builder_outer_content div.et_pb_fullwidth_section .et_pb_fullwidth_header {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
}

.et_divi_builder #et_builder_outer_content div.et_pb_fullwidth_section .et_pb_fullwidth_header .et_pb_fullwidth_header_container.left {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.et_divi_builder #et_builder_outer_content div.et_pb_fullwidth_section .et_pb_fullwidth_header .et_pb_module_header,
.et_divi_builder #et_builder_outer_content div.et_pb_fullwidth_section .et_pb_fullwidth_header .et_pb_fullwidth_header_subhead,
.et_divi_builder #et_builder_outer_content div.et_pb_fullwidth_section .et_pb_fullwidth_header .et_pb_button {
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

.page.page-template-default .content .entry-header,
.page.page-template-template-main .content .entry-header,
.single.event-template-default .content .entry-header,
.archive .content .archive-header,
.blog .archive-header {
    background: #ddd;
    position: relative;
    margin-bottom: 2.1rem;
    border-left: 5px solid #ef6b1e;
    height: auto;
}

.page.page-template-default .content .entry-header .entry-title,
.page.page-template-default .content .entry-header .archive-title,
.page.page-template-template-main .content .entry-header .entry-title,
.page.page-template-template-main .content .entry-header .archive-title,
.single.event-template-default .content .entry-header .entry-title,
.single.event-template-default .content .entry-header .archive-title,
.archive .content .archive-header .entry-title,
.archive .content .archive-header .archive-title,
.blog .archive-header .entry-title,
.blog .archive-header .archive-title {
    color: #232323;
    font-weight: 300;
    position: relative;
    bottom: auto;
    left: auto;
    margin-bottom: 0;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    padding-left: 2.1rem;
    text-shadow: none;
}

.page.page-template-default .content .entry-header .entry-meta,
.page.page-template-template-main .content .entry-header .entry-meta,
.single.event-template-default .content .entry-header .entry-meta,
.archive .content .archive-header .entry-meta,
.blog .archive-header .entry-meta {
    padding-left: 2.1rem;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post {
    border: none !important;
    padding: 0 !important;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post .et_pb_image_container {
    margin: 0;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post .entry-title a {
    color: #0063b5 !important;
    font-size: 2rem !important;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post .post-content {
    text-align: center;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post .post-content p {
    text-align: left;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post .post-content .more-link {
    display: inline-block;
    padding: 1.3rem !important;
    margin-top: 2.1rem;
    background-color: #ef6b1e !important;
    color: #fff !important;
    border-radius: 3px;
    text-transform: capitalize;
}

.et_divi_builder #et_builder_outer_content .et_pb_event_grid_wrapper .et_pb_post.type-event .post-content p {
    color: #232323 !important;
}

.et_divi_builder #et_builder_outer_content .et_pb_event_grid_wrapper .event-grid-footer {
    text-align: center;
}

.et_divi_builder #et_builder_outer_content .et_pb_event_grid_wrapper .event-grid-footer .button.more-events-link {
    background-color: #ef6b1e;
    border-radius: 2px;
    color: #fff;
    padding: 1.3rem;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post .et_pb_image_container {
    margin-bottom: 2.1rem;
}

.et_divi_builder #et_builder_outer_content .et_pb_blog_grid_wrapper .et_pb_blog_grid .et_pb_post .et_pb_image_container>a {
    margin-bottom: 0;
}

.et_pb_event_grid_wrapper .events-grid .entry-title {
    font-size: 2rem !important;
}

.et_pb_event_grid_wrapper .events-grid .entry-title a {
    color: #0063b5 !important;
}

.et_pb_event_grid_wrapper .events-grid .et_pb_post {
    margin-top: 2.1rem !important;
}

.blog-search {
    margin-bottom: 5.5rem;
}

.blog-search input[type='text'] {
    height: 36px;
    min-width: 200px;
}

.blog-search input[type='submit'] {
    height: 36px;
    width: auto;
    margin: 0;
    padding-left: 2.1rem;
    padding-right: 2.1rem;
    background: #ef6b1e;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
}

.blog-search input[type='submit']:hover {
    background: #fd9968;
}

.more-link {
    display: block;
}

.entry-post {
    margin-bottom: 3.4rem;
}

.section-news {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.prev-nav {
    float: left;
}

.next-nav {
    float: right;
}

.headline-primary {
    color: #ef6b1e;
}

.entry-image {
    float: left;
    width: 150px;
    height: 150px;
    margin-right: 2.1rem;
}

@supports (width: calc(100% - 150px - 2.1rem)) {
    .entry-image+.entry-content {
        float: left;
        width: calc(100% - 150px - 2.1rem);
    }
}

.blog article.entry+article.entry,
.archive article.entry+article.entry {
    margin-top: 3.4rem;
}


/* CHANGELOG
 * 2018-04-23 Override .sub-menu { top:36px; }
 * 2018-04-23 Override #header { margin-top:20px; }
 * 2018-04-05 Override .home h2 { margin-top:40px; }
 */


/*
Theme Name: Wireframe
Description: Wireframe
Author: IDS Technology Marketing
Author URI: http://www.idstm.com
Version: 1.0
*/


/*----------------------------- Normalizes Styles ---------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html,
body {
    height: 100%;
}


/*------------------------------ Global Styles -------------------------------*/

html {
    font-size: 62.5%;
}

body {
    color: #000;
    font-size: 1.6rem !important;
}

h1,
.h1 {
    color: #333333;
    font-size: 4.4rem !important;
    font-weight: 900;
    text-transform: uppercase;
}

h2,
.h2 {
    color: #666666;
    font-size: 3rem !important;
    font-weight: 400;
    padding: 5px 0 10px 0;
}

h3,
.h3 {
    font-size: 2.4rem !important;
    font-weight: bold;
    padding-bottom: 10px;
    text-align: left;
}

h4,
.h4 {
    color: #ef6b1e;
    font-size: 2rem !important;
    font-weight: bold;
    padding-bottom: 0px;
}

h5,
.h5 {
    padding: 5px 0 10px 0;
    font-size: 1.8rem !important;
    font-weight: 400;
    color: #999999;
}

h6,
.h6 {
    font-size: 1.6rem !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    line-height: 1.2;
}

p,
.p {
    padding: 0px 0px 15px 0px;
    color: #666666;
}

a,
a:visited {
    color: #ef6b1e;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: #999;
    text-decoration: underline;
    outline: none;
}

span.clear {
    display: block;
    clear: both;
}

.page h1,
.page .h1,
.single h1,
.single .h1 {
    margin-bottom: 15px;
}

.page .left_column,
.single .left_column,
.archive .left_column {
    padding-left: 0px;
}

.post {
    position: relative;
}

.post:after {
    content: "";
    display: table;
    clear: both;
}

.page-template-template-blog-php .post,
.archive .post {
    margin-bottom: 20px;
    border-bottom: 1px dotted #ddd;
}

.page-template-template-blog-php .post:last-child {
    border-bottom: 0px;
}

.post_thumbnail {
    margin: 0 20px 20px 0;
    float: left;
}

.post_thumbnail img {
    display: block;
}

.post_content {
    overflow: auto;
}

.page-template-template-member-dir-php .left_column a {
    font-size: 1.1em;
}

.page-template-template-member-dir-php .left_column a:first-child {
    text-indent: 0px;
}

.page-template-template-member-dir-php .left_column .post ul li {
    list-style: none !important;
    margin-bottom: 10px;
    margin-left: 0px;
}

.page-template-template-member-dir-php .post {
    margin-bottom: 10px;
}

.tax-members .member_directory a.a-title {
    color: #ef6b1e !important;
    padding: 5px 0 10px 0;
    font-size: 1.75em;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.tax-members .member_directory a.a-title:hover {
    text-decoration: none !important;
    color: #666666 !important;
}

.member_directory {
    border-bottom: 1px dotted #ddd;
    margin-bottom: 16px;
}


/*-- Wordpress Styles --*/

strong {
    font-weight: bold;
}

.center {
    margin: 0 auto;
    text-align: center;
}

sup,
sub {
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom: 1ex;
}

sub {
    top: .5ex;
}

code {
    margin: 25px 0 25px 0px;
    padding: 15px 10px;
    letter-spacing: 1px;
    display: block;
    font-size: 0.9em;
    border-left: 4px solid #1c1b19;
}

.entry ul {
    margin: 0 0 10px 0;
    padding-left: 10px;
    list-style: disc outside;
}

.entry ul li {
    margin-left: 20px;
    padding: 3px 0;
    color: #666666;
}

.entry ol {
    margin: 0 0 10px 0;
    list-style: decimal outside;
}

.entry ol li {
    margin-left: 20px;
    padding: 3px 0;
}

.entry h1,
.entry .h1 {
    line-height: 44px;
    text-transform: none;
}


/*-- Wordpress Comments --*/

#comments {
    margin-top: 40px;
    clear: both;
}

#comments .navigation {
    padding: 0 0 18px 0;
}

h3#comments-title,
#comments-title.h3,
h3#reply-title,
#reply-title.h3 {
    font-size: 20px;
    margin-bottom: 0;
}

h3#comments-title,
#comments-title.h3 {
    padding: 24px 0;
}

.commentlist {
    list-style: none;
    margin: 0;
}

.commentlist li.comment {
    border-bottom: 1px solid #e7e7e7;
    line-height: 24px;
    margin: 0 0 24px 0;
    padding: 0 0 0 56px;
    position: relative;
}

.commentlist li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#comments .comment-body ul,
#comments .comment-body ol {
    margin-bottom: 18px;
}

#comments .comment-body p:last-child {
    margin-bottom: 6px;
}

#comments .comment-body blockquote p:last-child {
    margin-bottom: 24px;
}

.commentlist ol {
    list-style: decimal;
}

.commentlist .avatar {
    position: absolute;
    top: 4px;
    left: 0;
}

.comment-author cite {
    color: #000;
    font-style: normal;
    font-weight: bold;
}

.comment-author .says {
    font-style: italic;
}

.comment-meta {
    font-size: 12px;
    margin: 0 0 18px 0;
}

.comment-meta a:link,
.comment-meta a:visited {
    color: #888;
    text-decoration: none;
}

.comment-meta a:active,
.comment-meta a:hover {
    color: #ff4b33;
}

.reply {
    font-size: 12px;
    padding: 0 0 24px 0;
}

.reply a,
a.comment-edit-link {
    color: #888;
}

.reply a:hover,
a.comment-edit-link:hover {
    color: #ff4b33;
}

.commentlist .children {
    list-style: none;
    margin: 0;
}

.commentlist .children li {
    border: none;
    margin: 0;
}

.nopassword,
.nocomments {
    display: none;
}

#comments .pingback {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 18px;
    padding-bottom: 18px;
}

.commentlist li.comment+li.pingback {
    margin-top: -6px;
}

#comments .pingback p {
    color: #888;
    display: block;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

#comments .pingback .url {
    font-size: 13px;
    font-style: italic;
}

#commentform div {
    margin-bottom: 8px;
}

#commentform label {
    margin-left: 7px;
}

#commentform input[type=submit] {
    padding: 6px 15px;
    background: #E5E5E5;
    color: #333;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    transition: 0.2s all linear;
}

#commentform input[type=submit]:hover {
    background: #999;
    color: #fff;
}

ul.children {
    list-style: none;
    padding-left: 0px;
    border-top: 1px dotted #9c9c9c;
}

ul.children li {
    padding-left: 10px !important;
}

ul.children li a {
    color: #999999 !important;
    font-size: 1.1em !important;
}

.team {
    position: relative;
    margin-right: 30px;
    margin-bottom: 25px;
}

.team-info {
    position: absolute;
    bottom: 5px;
    width: 200px;
    background-color: rgba(255, 255, 255, 0.75);
}


/* wordpress image align */

img.aligncenter {
    margin: 10px auto;
    display: block;
}

img.alignright {
    margin: 12px 0 12px 20px;
    float: right;
}

img.alignleft {
    margin: 12px 20px 12px 0;
    float: left;
}


/* wordpress captions */

.wp-caption {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 1.1em;
    text-align: left;
    display: block;
}

.wp-caption.aligncenter {
    margin: 10px auto;
    display: block;
}

.wp-caption.alignright {
    margin: 12px 0 12px 20px;
    float: right;
}

.wp-caption.alignleft {
    margin: 12px 20px 12px 0;
    float: left;
}

.wp-caption-text {
    margin: 0;
    padding: 0;
}


/* wordpress alignment */

.aligncenter {
    margin: 10px auto;
    display: block;
}

.alignright {
    margin: 12px 0 8px 8px;
    float: right;
}

.alignleft {
    margin: 0 8px 8px 0;
    float: left;
}

.no_border {
    border: none;
}


/* wordpress image sizes */

img.size-full,
img.size-large,
iframe {
    height: auto;
    max-width: 97.5%;
    width: auto;
}

.left {
    float: left;
}

.right {
    float: right;
}


/*-------------------------------- GENERAL LAYOUT --------------------------------*/

.meridiem {
    font-size: 70%;
}

#footer ul:after {
    content: "";
    display: table;
    clear: both;
}

#wrapper {
    width: 100%;
}

.container {
    width: 1024px;
    margin: 0px auto;
}

.container:after {
    display: table;
    content: "";
    clear: both;
}

body.page-template-page-2-column-php #left_column {
    width: 70%;
    margin-right: 15px;
}

body.page-template-page-2-column-php #right_column {
    width: 25%;
    float: right;
}

body.page-template-page-3-column-php #left_column {
    width: 25%;
    float: left;
    margin-right: 15px;
}

body.page-template-page-3-column-php #center_column {
    width: 45%;
    margin-right: 15px;
    float: left;
}

body.page-template-page-3-column-php #right_column {
    width: 25%;
    float: right;
}

.padding {
    padding: 10px;
}

.bottom {
    margin-bottom: 5px;
}

.left_column {
    width: 70%;
    margin-right: 15px;
    margin-top: 20px;
    float: left;
}


/* ORG no Float */

.right_column {
    width: 25%;
    float: right;
    margin-top: 20px;
}

.full_column {
    width: auto;
    margin: 20px;
}

.left_column:after,
.right_column:after,
.full_column:after {
    display: table;
    clear: both;
    content: "";
}

.half_column {
    width: 49%;
}

button {
    font-weight: 700;
    color: #fff;
    padding: 8px 12px;
    border: none;
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
}

button a {
    color: #fff !important;
}

.orange {
    background-color: #ef6b1e;
}

.txt_orange {
    color: #ef6b1e;
}

a.txt_orange:link,
a.txt_orange:visited {
    color: #ef6b1e;
}

.txt_white {
    color: #fff;
}

.page-template-template-blog-php a.txt_orange,
.tax-members .next-posts a,
.tax-members .prev-posts a {
    color: #ef6b1e;
}

.banner {
    background: #ddd;
    position: relative;
    margin-bottom: 20px;
    border-left: 5px solid #ef6b1e;
    height: auto;
}

.banner h1,
.banner .h1 {
    color: #232323;
    font-weight: 300;
    font-size: 44px;
    /* was 3.75em */
    line-height: 38px;
    position: relative;
    bottom: auto;
    left: auto;
    margin-bottom: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 25px;
    text-shadow: none;
}

.fpfcredit {
    display: none;
}


/*-------------------------------- HEADER --------------------------------*/

#topbar {
    padding: 6px 0;
    color: #fff;
    text-align: right;
    text-transform: uppercase;
    background: #000;
}

#topbar .container {
    position: relative;
}

#header_search {
    float: left;
}

#header_search input[type=text] {
    padding: 0 10px;
    width: 210px;
    height: 21px;
    display: block;
    float: left;
    color: #666;
    line-height: 21px;
    border: none;
}

#header_search input[type=submit] {
    padding: 0 12px;
    height: 21px;
    display: inline-block;
    cursor: pointer;
    float: left;
    color: #fff;
    line-height: 18px;
    text-transform: uppercase;
    border: none;
    background: #ef6b1e;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#header_search input[type=submit]:hover {
    background-color: #2d9de6;
}

.search_post {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ddd;
}

.search_post h2,
.search_post .h2 {
    padding-bottom: 5px;
}

.search_post .meta {
    margin-bottom: 12px;
    color: #666;
}

.wp-pagenavi {
    width: 100% !important;
    float: none;
}

.top_login,
.top_login:link,
.top_login:visited {
    color: #fff;
    text-decoration: none;
}

.top_login:hover,
.top_login:active {
    color: #ef6b1e;
    text-decoration: none;
}

.top_join,
.top_join:link,
.top_join:visited {
    color: #ef6b1e;
    text-decoration: none;
}

.top_join:hover,
.top_join:active {
    color: #fff;
}

#header {
    margin-top: 0px;
    width: 100%;
    margin-bottom: 0;
}

#header:after {
    display: table;
    clear: both;
    content: "";
}

#phone {
    float: right;
    width: 140px;
    margin-left: 20px;
    font-size: 1.5em;
    margin-top: 15px;
}

.navigation {
    margin-bottom: 5px;
    position: relative;
    background-color: #fff;
}

.super-nav {
    float: right;
    width: 787px;
    height: 71px;
    overflow: hidden;
    margin-bottom: 1px;
}


/* added height, overflow and margin */

.super-nav h3,
.super-nav .h3 {
    padding-bottom: 0px;
}

.super-nav ul li p {
    font-weight: 400;
    color: #fff;
    font-size: 1em;
    padding: 0px;
}

.super-nav ul {
    clear: both;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.super-nav ul li {
    float: left;
    margin-right: 1px;
    width: 157px;
    /* calc(20% - 1px); */
    position: relative;
}

.super-nav ul li:last-child {
    margin-right: 0px;
    width: 155px;
    /* 20%; */
}

.super-nav ul li a {
    text-decoration: none;
    font-family: 'Roboto';
    display: block;
    font-weight: 400;
    background-color: #ef6b1e;
    padding: 19px 0px;
    width: 100%;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.super-nav ul li a h3,
.super-nav ul li a .h3,
.super-nav ul li a p {
    padding-left: 30px;
}


/* .super-nav li a:first-child  { text-indent: 32px; }
.super-nav li a:nth-child(2)  { text-indent: 40px; }
.super-nav li a:nth-child(3)  { text-indent: 25px; }
.super-nav li a:nth-child(4)  { text-indent: 38px; }
.super-nav li a:nth-child(5)  { text-indent: 42px; } */

.super-nav ul li:hover a {
    background-color: #333333;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.super-nav ul a {
    color: #fff;
}

.super-nav ul ul {
    display: none;
}

.super-nav ul:hover ul {
    display: block;
}

#primary_menu {
    float: right;
    width: 787px;
    height: 40px;
}

#primary_menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    height: 36px;
}

#primary_menu ul li {
    /*	display: table-cell; */
    font-family: 'Roboto';
    font-weight: 400;
    margin-right: 0px;
    border-right: 1px solid #fff;
    border-left: none;
}

#primary_menu>ul>li {
    width: calc(16.67% - 1px);
    position: relative;
    display: block;
    float: left;
    height: 40px;
}


/* FIXED SIZES FOR MENU */

#primary_menu>ul>li:nth-child(1) {
    width: 51px;
}

#primary_menu>ul>li:nth-child(2) {
    width: 115px;
}

#primary_menu>ul>li:nth-child(3) {
    width: 160px;
}

#primary_menu>ul>li:nth-child(4) {
    width: 185px;
}

#primary_menu>ul>li:nth-child(5) {
    width: 156px;
}

#primary_menu>ul>li:nth-child(6) {
    width: 115px;
}

#primary_menu ul li:last-child {
    border-right: none;
}


/*	#primary_menu ul li:hover {
		background-color: #ef6b1e;
		-webkit-transition: 0.2s all linear;
		-moz-transition: 0.2s all linear;
		-o-transition: 0.2s all linear;
		transition: 0.2s all linear
	} */


/*	#primary_menu ul li:last-child:hover {
		background-color: #ef6b1e;
		-webkit-transition: 0.2s all linear;
		-moz-transition: 0.2s all linear;
		-o-transition: 0.2s all linear;
		transition: 0.2s all linear
	} */

#primary_menu>ul li a {
    color: #fff;
    line-height: 38px;
    /* 34 */
    padding: 0px 8px;
    /* 10px 8px 12px 8px */
    background-color: #ff9966;
    display: block;
    height: 40px;
    width: calc(100% - 16px);
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#primary_menu ul>li a:hover {
    background-color: #ef6b1e;
    text-decoration: none;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#primary_menu ul li:last-child a {
    padding-right: 10px;
}

#primary_menu>ul>li>a:after {
    content: "▼";
    visibility: hidden;
    color: #fff;
    font-size: 7px;
    padding-left: 4px;
}

#primary_menu ul li.menu-item-has-children>a:after {
    visibility: visible;
}

#primary_menu ul ul {
    display: none;
}


/** Sub menu **/

#primary_menu ul.sub-menu {
    float: none;
    width: auto;
    min-width: 113px;
    height: auto;
}

#primary_menu ul.sub-menu li {
    margin-right: 0px !important;
    display: block;
    text-align: center;
    margin-bottom: 0px !important;
    border-top: none !important;
    z-index: 9999;
}

#primary_menu ul.sub-menu li a {
    color: #fff;
    width: auto;
    white-space: nowrap;
    display: block;
    padding: 5px;
    height: 30px;
    line-height: 30px;
    background-color: rgba(239, 107, 30, 0.8);
}

#primary_menu ul.sub-menu li:hover {
    background-color: #7ea944;
}

#primary_menu ul.sub-menu li a:hover {
    text-decoration: none;
    background-color: #ef6b1e;
}

ul.sub-menu li {
    border-top: none !important;
}

.sub-menu {
    top: auto;
    position: relative;
}

.sub-menu li {
    display: block;
    float: none !important;
    position: relative;
    border-right: none;
}


/* display current sub menu on hover */

#primary_menu ul li:hover>ul {
    display: block;
    position: absolute;
}


/*-------------------------------- Home --------------------------------*/

#home_header {
    height: 240px;
    background: #efefef;
    padding: 20px;
}

#home_social {
    color: #fff;
    background: #000;
    padding: 20px;
}

.home .left_col {
    width: 221px;
}

.home .left_col,
.home .center_col,
.home .right_col {
    height: 215px;
    border-bottom: 2px solid #d9d9d9;
    background: #efefef;
}

.home .entry {
    margin: 0px auto;
}

.home .entry img.top {
    height: 320px;
    margin-right: 4px;
}

.smaller {
    height: 157px !important;
    margin-right: 0px !important;
}

.gallery-item:first-child {
    display: inherit;
}


/* .gallery-item { display: none; width: auto !important; } */

.gallery {
    height: 145px;
}

.gallery-holder {
    float: left;
    margin-bottom: 50px;
    margin-right: 15px;
}

.aztc {
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

a:hover .aztc {
    -webkit-filter: brightness(1.1) contrast(1.2);
    -webkit-transition: 0.2s all fade;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all fade;
}

.addtoany_share_save_container {
    clear: none !important;
}


/*-------------------------------- CONTENT --------------------------------*/

.home h2,
.home .h2 {
    margin-top: 0px;
}

.home h1,
.home .h1 {
    margin-bottom: 0px;
}

.home h5,
.home .h5 {
    padding-bottom: 0px;
}

hr {
    border-bottom: 1px dotted #c0c0c0;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    margin: 20px 0px;
}

.feature {
    width: 160px;
    float: left;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 2px solid #d9d9d9;
    background: #efefef;
}

#events-ticker {
    background: #333333;
    height: 50px;
    margin-top: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

#events-ticker .cycle-slideshow {
    margin-left: 277px;
}

#events-ticker .events-ticker-list {
    margin: 0px 0px 0px 240px;
    padding: 0px;
}

#events-ticker li {
    display: inline-block;
    margin-top: 15px;
    height: 50px;
    font-family: 'Roboto';
    font-weight: 300;
    color: #ef6b1e;
    margin: 0px;
    padding: 0px 10px;
    line-height: 50px;
}

#event-img {
    float: left;
    position: absolute;
    z-index: 9999;
}

.events-scroll {
    width: 92%;
    float: right;
}

.indiv-event {
    margin-right: 50px;
}

.event::after {
    clear: both;
    display: table;
    content: "";
}

.event>img {
    float: left;
    margin-right: 15px;
    margin-bottom: 30px;
}

.event h2,
.event .h2 {
    color: #2D92EE;
}

.event h3,
.event .h3 {
    text-transform: none;
    padding-bottom: 0px;
}

.event h6,
.event .h6 {
    padding-bottom: 15px;
}

.event-info {
    width: 72%;
}

.event-info p {
    margin-bottom: 15px;
}

.register {
    line-height: 18px;
    color: #fff !important;
    display: none;
    font-weight: 400;
    background-color: #ef6b1e;
    padding: 3px 8px !important;
    margin-left: 10px;
    font-size: 1em;
    text-transform: none;
    transition: 0.2s all linear;
}

.register:hover {
    background-color: #ff9966;
    transition: 0.2s all linear;
}

.home-item {
    border-left: 5px solid #ef6b1e;
    padding-left: 15px;
    margin-bottom: 20px;
}

.home-item h2,
.home-item .h2 {
    margin-top: 0px;
}

#side-nav {
    border: none;
    background-color: #ef6b1e;
    padding: 20px;
    margin-bottom: 0px;
}

#side-nav h2,
#side-nav .h2 {
    color: #fff;
    text-transform: uppercase;
    padding: 0px;
    padding-left: 0px;
    font-weight: 700;
    font-size: 2em;
    line-height: 3rem;
}

ul.side-nav-pages {
    list-style: none;
    border: 1px dotted #ef6b1e;
    border-top: none;
    margin-top: 0px;
    padding-left: 0px;
}

ul.side-nav-pages li {
    border-bottom: 1px dotted #ef6b1e;
    background: transparent;
    margin-left: 0;
    padding: 0px;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

ul.side-nav-pages li:last-child {
    border-bottom: none;
}

ul.side-nav-pages li a {
    color: #000;
    font-size: 1.2em;
    display: inherit;
    padding: 8px 28px 8px 20px;
    background: url(images/orange-arrow.png) no-repeat 95% 50%;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

ul.side-nav-pages li a:hover {
    text-decoration: none;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

ul.side-nav-pages li:hover {
    background-color: #dddddd;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.view-more {
    border: 1px dotted #ef6b1e;
    padding: 10px 20px;
    display: inline-block;
}

a.view-more {
    color: #ef6b1e !important;
    font-weight: 900;
    font-size: 1.1em;
    text-transform: uppercase;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

a.view-more:hover {
    text-decoration: none;
    color: #999 !important;
    border: 1px dotted #999;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.news-stories {
    color: #666666;
    margin-bottom: 25px;
}

.news-stories ul {
    list-style: none;
    display: inline-block;
    width: 33%;
    vertical-align: top;
    padding-left: 0px;
    position: relative;
    min-height: 480px;
}

.news-stories ul.post-categories {
    min-height: 0px;
}

.news-stories li a.read-more {
    position: absolute;
    bottom: 0px;
}

.news-stories img {
    max-height: auto;
    max-width: 100%;
    border-bottom: 5px solid #ef6b1e;
}

.category a,
.date a {
    color: #ef6b1e;
}

ul.post-categories {
    width: auto;
    text-transform: uppercase;
    font-size: 1.3em;
}

ul.post-categories li {
    margin-left: 0px;
}

.read-more {
    color: #3399cc;
    text-transform: uppercase;
}

a.read-more,
a.moretag {
    color: #3399cc !important;
    font-weight: 700;
}

.read-more:after {
    content: " >";
}

#news {
    border-bottom: 1px dotted #c1c1c1;
}

#galleries {
    margin-top: 50px;
}

#social {
    background-color: #dddddd;
    margin-bottom: 15px;
}

#social h3,
#social .h3 {
    text-transform: uppercase;
    padding: 10px 0px;
}

#right_col img {
    height: auto !important;
    width: 39px;
    margin-right: 0px !important;
    position: relative;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#right_col img:hover {
    bottom: 2px;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#right_col p {
    padding: 5px 0px;
}

.page-id-72 p {
    padding-bottom: 0px;
}

.page-id-72 .entry h4:first-child,
.page-id-72 .entry .h4:first-child {
    margin-top: 0px;
}

.page-id-72 .entry h4,
.page-id-72 .entry .h4 {
    margin-top: 15px;
}

.page-template-template-locations-php .entry h4,
.page-template-template-locations-php .entry .h4 {
    margin-top: 20px;
}

.page-id-88 .left_column .gform_wrapper {
    position: relative;
}

.page-id-88 .left_column .gform_wrapper form {
    position: absolute;
    width: 50%;
    left: 35%;
    text-align: center;
}


/*-------------------------------- FOOTER --------------------------------*/

#footer {
    padding-top: 10px;
    border-top: 5px solid #f48026;
    background-color: #d6d6d6;
    min-height: 200px;
}

#footer_menu ul {
    list-style: none;
    float: right;
    margin: 0px;
    padding: 0px;
}

#footer_menu li {
    float: left;
    margin-left: 15px;
    padding-right: 15px;
    border-right: 1px solid #d9d9d9;
}

#footer h3,
#footer .h3 {
    color: #424242;
    padding-bottom: 0px;
}

#footer .container {
    margin-top: 25px;
}

#footer ul li img {
    border-left: 1px solid #797979;
    background-color: #797979;
    position: relative;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#footer ul {
    padding-left: 0px;
    list-style: none;
}

#footer ul li {
    float: left;
    border-bottom: 1px solid #797979;
    height: 73px;
    overflow: hidden;
    position: relative;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#footer ul a:last-child li {
    border-right: 1px solid #797979;
}

#footer ul a:nth-child(-n+6) li {
    border-top: 1px solid #797979;
}

#footer ul a:nth-child(6n) li {
    border-right: 1px solid #797979;
}

#footer ul li img:hover {
    bottom: 73px;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#footer #visionary-sponsors li {
    border-top: 0px;
    height: auto;
    margin-right: 15px;
    border-bottom: none;
}

#premier-sponsors {
    margin-bottom: 25px;
}

#platinum-sponsors {
    margin-bottom: 25px;
}

.tweet_list li {
    border-bottom: 1px dotted #c0c0c0;
    padding-bottom: 20px !important;
    padding-top: 20px !important;
}

.tweet_list li:first-child {
    padding-top: 0px !important;
}

.tweet_list span {
    color: #999 !important;
}

.tweet_list a {
    color: #2d9de6 !important;
}


/*--------------- GRAVITY FORMS ---------------*/

.gform_wrapper {
    width: 580px;
    display: block;
}

.gform_wrapper>ul {
    width: 580px !important;
}

.gform_wrapper ul li {
    margin-left: 0;
}

.gform_wrapper .top_label li.gfield.gf_right_half,
.gform_wrapper .top_label li.gfield.gf_left_half {
    margin-bottom: 0px !important;
}

.gform_wrapper input[type=text] {
    padding: 7px 5px !important;
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 1.2em !important;
}

.gform_wrapper input[type=submit] {
    background-color: #a3a3a3;
    border: 1px solid #888888;
    color: #fff;
    border-radius: 5px;
    padding: 5px 15px;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.gform_wrapper input[type=submit]:hover {
    border: 1px solid #d05f1a;
    cursor: pointer;
    background-color: #ef6b1e;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.gform_wrapper textarea.textarea {
    padding: 7px 10px !important;
    width: 560px !important;
    height: 120px !important;
    background-color: #e6e6e6;
    border: none;
    font-size: 1.2em !important;
    line-height: 1.5em;
}


/*
.gform_footer input.button {padding: 8px 20px !important; border: none; color: #fff; text-transform: none; font-family: 'Arvo', arial, serif; font-size: 1.2em !important; font-weight: normal; letter-spacing: 0em; background: url(images/button_gradient2.png) #F49000 center bottom repeat-x; cursor: pointer; -webkit-border-radius: 3px; -moz-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.4); -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.4); -o-box-shadow: 1px 1px 3px rgba(0,0,0,0.4); box-shadow: 1px 1px 3px rgba(0,0,0,0.4); -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; transition: all 0.2s linear;}
.gform_footer input.button:hover {background-color: #E84E4E;}*/

.gform_wrapper .gform_footer {
    margin-top: 0px !important;
    padding-top: 10px !important;
}

.gform_edit_link {
    display: none;
}

#gform_wrapper_1 li.gfield.gfield_error {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

#gforms_confirmation_message {
    margin: 30px 0 !important;
    padding: 20px 40px !important;
    width: 520px !important;
    float: left;
    text-align: center !important;
    font-size: 1.2em !important;
    line-height: 1.5em !important;
}

#gform_wrapper_1 .top_label .gfield_label {
    display: none !important;
}

#right_col .gform_wrapper {
    margin: 0px;
}

.gform_wrapper ul.gform_fields {
    width: 100% !important;
}

.gform_wrapper .top_label input.medium,
.gform_wrapper .top_label select.medium {
    width: 94% !important;
    color: #a4a4a4;
    font-size: .75em !important;
    padding: 10px 0px !important;
    padding-left: 10px !important;
}

#field_1_1 {
    margin-bottom: 5px;
    padding-bottom: 0px;
}

select {
    color: #000;
    font-size: 1.2em;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 2px;
    width: 235px;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.ui-datepicker-title select {
    padding: 0px;
    width: auto;
}

.drop-cat {
    padding: 8px !important;
    background: none !important;
    border-bottom: none !important;
}

li.drop-cat:hover {
    background-color: #dddddd !important;
    cursor: pointer;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

li.drop-cat:hover select {
    background-color: #dddddd;
    cursor: pointer;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}


/*-------------------------------- CTAS --------------------------------*/

#tabs {
    clear: both;
}

#tabs_links {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

#tabs div ul li {
    color: #666666;
    margin-left: 0px;
    height: auto !important;
    width: auto !important;
    display: list-item !important;
    padding-bottom: 8px !important;
}

#tabs_links li {
    color: #000;
    font-size: 1.3em;
    float: left;
    margin: 0px;
    height: auto;
    margin-right: 20px;
    padding: 7px 10px 5px 10px;
    border-bottom: 1px solid #2d9de6;
    border-bottom: 0px;
    margin-bottom: 0px !important;
    width: auto !important;
}

#tabs_links li.active {
    background-color: #2d9de6;
    width: auto;
    width: auto;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#tabs_links li.active a {
    color: #fff !important;
}

#tabs_links li a {
    color: #2d9de6;
    font-size: 14px !important;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#tabs_links li a:hover {
    font-size: 14px !important;
    text-decoration: none;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

#tabs div {
    clear: left;
    padding-top: 10px;
    border-top: 8px solid #2d9de6;
    margin-bottom: 20px;
}

#tabs div div {
    border: 0px;
}

.hidden {
    display: none;
}

#tabs_content span {
    color: #2d9de6;
}

#tabs_content img {
    padding: 0px 5px 2px 0px;
    width: 20%;
}

#tabs_content ul {
    padding: 0px;
    list-style: none;
}


/* ------------------------- SPECIAL LAYOUT ---------------------------- */

ul.event_cost {
    margin: 0px;
    padding: 0px;
}

ul.event_cost li {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

ul.event_cost li.notes {
    font-style: italic;
    margin-top: 5px;
}

ul.sponsors_list {
    margin: 0px;
    padding: 0px;
}

ul.sponsors_list:after {
    clear: both;
    display: table;
    content: "";
}

ul.sponsors_list li {
    list-style-type: none;
    float: left;
    margin: 0px 10px 10px 0px;
}

.page-id-94 .entry {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

.quick_nav_menu {
    position: absolute;
    top: 0px;
    background: #ffffff;
    width: 100%;
}

.entry ul.scrollto_menu {
    margin: 0px;
    padding: 0px;
    display: block;
}

.entry ul.scrollto_menu li {
    margin: 0px;
    list-style-type: none;
    display: inline-block;
    padding: 0px;
}

.entry ul.scrollto_menu li a:link,
.entry ul.scrollto_menu li a:visited {
    margin: 0px;
    font-weight: bold;
    display: block;
    padding: 3px 6px;
    background: #ffffff;
}

.entry ul.scrollto_menu li a:hover,
.entry ul.scrollto_menu li a:active,
.entry ul.scrollto_menu li a:focus {
    margin: 0px;
    display: inline-block;
    padding: 3px 6px;
    background: #dddddd;
    text-decoration: none;
}

.entry ul.scrollto_menu li.active a:link,
.entry ul.scrollto_menu li.active a:visited {
    background: #ef6b1e;
}

.entry ul.scrollto_menu li.active a:link,
.entry ul.scrollto_menu li.active a:visited {
    color: #ffffff;
}

.scroll_marker {
    font-weight: bold;
    color: #666666;
    padding: 3px;
    margin: 5px 0px 5px 0px;
    border-bottom: solid 1px #afafaf;
}

#footer-logo {
    vertical-align: text-bottom;
    margin-right: 25px;
}

#footer-legal {
    font-size: 90%;
    color: #999999;
    margin-bottom: 25px;
    vertical-align: text-bottom;
}

#footer-legal:after {
    clear: both;
    display: table;
    content: "";
}


/* --------------------- PLUGIN OVERWRITE ------------------------- */

a.fts-powered-by-text.fts-powered-by-text.fts-powered-by-text {
    display: none !important;
}


/*-------------------------------- RESPONSIVE --------------------------------*/

@media (max-device-width: 480px) {
    html {
        -webkit-text-size-adjust: none;
    }
}


/* MicroNet CSS */

.mn-widget.mn-widget-comm {
    margin: 8px;
}

.mn-widget.mn-widget-comm .mn-widget-head,
.mn-widget.mn-widget-comm .mn-comm-company,
.mn-widget.mn-widget-comm .mn-comm-phone,
.mn-widget.mn-widget-comm .mn-form-pretext,
.mn-widget.mn-widget-comm .mn-form-reqnote {
    display: none;
}

.mn-widget.mn-widget-comm .mn-form-req {
    color: red;
}

.mn-widget.mn-widget-comm .mn-form-pretext,
.mn-widget.mn-widget-comm .mn-form-reqnote {
    margin-bottom: 1em;
}

.mn-widget.mn-widget-comm .mn-actions ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mn-widget.mn-widget-comm label,
.mn-widget.mn-widget-comm .mn-form-text {
    width: 100%;
    box-sizing: border-box;
}

.mn-widget.mn-widget-comm .mn-comm-name,
.mn-widget.mn-widget-comm .mn-comm-email {
    width: 100%;
    float: left;
}

.mn-widget.mn-widget-comm .mn-comm-name input,
.mn-widget.mn-widget-comm .mn-comm-email input {
    padding: 5px;
    color: #777;
    border-radius: 0;
    background-color: #fff;
    margin-bottom: 5px;
}

.mn-widget.mn-widget-comm .mn-actions .mn-action-submit {
    margin-left: 0;
}

.mn-widget.mn-widget-comm .mn-actions input[type="submit"] {
    margin-top: 15px;
    border: 0 none;
    background-color: #ef6b1e;
    color: #fff;
    padding: 10px 15px;
    border-radius: 0;
}

.mn-widget.mn-widget-comm .mn-actions input[type="submit"]:hover {
    background-color: #ef6b1e;
    cursor: pointer;
}

.full-width-content.et_divi_builder #et_builder_outer_content .et_pb_row {
    margin: 0;
    max-width: none;
}


/* New Tech page CSS */

@media all {
    .page-template-page-techconnect-new h1,
    .page-template-page-techconnect-new h2 {
        font-family: "Proxima Nova", Helvetica, Arial, sans-serif;
    }
    *,
    *:before,
    *:after {
        box-sizing: inherit;
        background-clip: inherit;
    }
    .page-template-page-techconnect-new iframe {
        max-width: 100%;
        max-height: 100%;
    }
     ::selection {
        background-color: #ef6b1e;
        color: #fff;
    }
    .page-template-page-techconnect-new a {
        color: #ef6b1e;
        text-decoration: none;
        transition: color 3ms ease-in-out;
    }
    .page-template-page-techconnect-new a:hover {
        color: #b44a0d;
    }
    .page-template-page-techconnect-new p,
    .page-template-page-techconnect-new ul {
        margin-bottom: 1.3rem;
    }
    .page-template-page-techconnect-new li {
        margin-left: 2.1rem;
    }
    .page-template-page-techconnect-new h1,
    h2 {
        line-height: 1.2;
        margin-bottom: 1.3rem;
    }
    .page-template-page-techconnect-new h1 {
        font-size: 4.4rem;
    }
    .page-template-page-techconnect-new h2 {
        font-size: 3rem;
    }
    .page-template-page-techconnect-new .site-inner {
        padding-left: 10%;
    }
    @media only screen and (min-width: 1024px) {
        .page-template-page-techconnect-new .site-inner {
            padding-left: 15%;
        }
    }
    @media only screen and (min-width: 2560px) {
        .page-template-page-techconnect-new .site-inner {
            padding-left: 25%;
        }
    }
    @media only screen and (max-width: 1023px) {
        .page-template-page-techconnect-new .site-inner {
            padding-left: 5%;
        }
    }
    .page-template-page-techconnect-new .site-inner {
        padding-right: 10%;
    }
    @media only screen and (min-width: 1024px) {
        .page-template-page-techconnect-new .site-inner {
            padding-right: 15%;
        }
    }
    @media only screen and (min-width: 2560px) {
        .page-template-page-techconnect-new .site-inner {
            padding-right: 25%;
        }
    }
    @media only screen and (max-width: 1023px) {
        .page-template-page-techconnect-new .site-inner {
            padding-right: 5%;
        }
    }
    .page-template-page-techconnect-new h1 {
        color: #333333;
        font-size: 4.4rem!important;
        font-weight: 900;
        text-transform: uppercase;
    }
    .page-template-page-techconnect-new h2 {
        color: #666666;
        font-size: 3rem!important;
        font-weight: 400;
        padding: 5px 0 10px 0;
    }
    .page-template-page-techconnect-new h1,
    h2 {
        line-height: 1.2;
    }
    .page-template-page-techconnect-new p {
        padding: 0px 0px 15px 0px;
        color: #666666;
    }
    a,
    a:visited {
        color: #ef6b1e;
        text-decoration: none;
    }
    a:hover,
    a:active,
    a:focus {
        color: #999;
        text-decoration: underline;
        outline: none;
    }
    .page-template-page-techconnect-new .page h1 {
        margin-bottom: 15px;
    }
    .page-template-page-techconnect-new iframe {
        height: auto;
        max-width: 97.5%;
        width: auto;
    }
    .page-template-page-techconnect-new .gform_wrapper {
        width: 580px;
        display: block;
    }
    .page-template-page-techconnect-new .gform_wrapper>ul {
        width: 580px!important;
    }
    .page-template-page-techconnect-new .gform_wrapper ul li {
        margin-left: 0;
    }
    .page-template-page-techconnect-new .gform_wrapper input[type=text] {
        padding: 7px 5px!important;
        background-color: #fff;
        border: 1px solid #d0d0d0;
        border-radius: 5px;
        font-size: 1.2em!important;
    }
    .page-template-page-techconnect-new .gform_wrapper input[type=submit] {
        background-color: #a3a3a3;
        border: 1px solid #888888;
        color: #fff;
        border-radius: 5px;
        padding: 5px 15px;
        -webkit-transition: 0.2s all linear;
        -moz-transition: 0.2s all linear;
        -o-transition: 0.2s all linear;
        transition: 0.2s all linear;
    }
    .page-template-page-techconnect-new .gform_wrapper input[type=submit]:hover {
        border: 1px solid #d05f1a;
        cursor: pointer;
        background-color: #ef6b1e;
        -webkit-transition: 0.2s all linear;
        -moz-transition: 0.2s all linear;
        -o-transition: 0.2s all linear;
        transition: 0.2s all linear;
    }
    .page-template-page-techconnect-new .gform_wrapper .gform_footer {
        margin-top: 0px!important;
        padding-top: 10px!important;
    }
    .page-template-page-techconnect-new #gform_wrapper_1 .top_label .gfield_label {
        display: none!important;
    }
    .page-template-page-techconnect-new .gform_wrapper ul.gform_fields {
        width: 100%!important;
    }
    .page-template-page-techconnect-new .gform_wrapper .top_label input.medium {
        width: 94%!important;
        color: #a4a4a4;
        font-size: .75em!important;
        padding: 10px 0px!important;
        padding-left: 10px!important;
    }
    .page-template-page-techconnect-new #field_1_1 {
        margin-bottom: 5px;
        padding-bottom: 0px;
    }
    .page-template-page-techconnect-new .full-width-content.et_divi_builder #et_builder_outer_content .et_pb_row {
        margin: 0;
        max-width: none;
    }
}


/*! CSS Used from: https://www.aztechcouncil.org/wp-content/plugins/divi-builder/includes/builder/styles/frontend-builder-plugin-style.css?ver=2.29.3 ; media=all */

@media all {
    .page-template-page-techconnect-new #et-boc {
        text-shadow: none;
    }
    .page-template-page-techconnect-new #et-boc h1,
    #et-boc h2 {
        line-height: 1em;
        padding-bottom: 10px;
        font-weight: 500;
        text-transform: none;
        font-style: normal;
    }
    .page-template-page-techconnect-new #et-boc ul {
        list-style: none;
        text-align: inherit;
    }
    .page-template-page-techconnect-new #et-boc ul li {
        padding-left: 0;
        background: none;
        margin-left: 0;
    }
    .page-template-page-techconnect-new #et-boc :focus {
        outline: 0;
    }
    .page-template-page-techconnect-new #et-boc input[type="text"] {
        height: 49px;
    }
    .page-template-page-techconnect-new #et-boc a {
        text-decoration: none!important;
    }
    .page-template-page-techconnect-new #et-boc p {
        padding-bottom: 1em;
        color: inherit!important;
    }
    .page-template-page-techconnect-new #et-boc p:last-of-type {
        padding-bottom: 0;
    }
    .page-template-page-techconnect-new #et-boc iframe {
        max-width: 100%;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_section * {
        -webkit-font-smoothing: antialiased;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_section {
        margin-bottom: 0;
    }
    @media all and (min-width: 981px) {
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_gutters3 .et_pb_column {
            margin-right: 5.5%;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_gutters3 .et_pb_column_2_3 {
            width: 64.833%;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_gutters3 .et_pb_column_1_2 {
            width: 47.25%;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_gutters3 .et_pb_column_1_3 {
            width: 29.667%;
        }
    }
    @media all and (max-width: 479px) {
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_column {
            width: 100%!important;
        }
    }
    .page-template-page-techconnect-new.et-db #et-boc * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_column_1_3 h2 {
        font-size: 23px;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_row {
        width: 80%;
        max-width: 1080px;
        margin: auto;
        position: relative;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_column {
        float: left;
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 9;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_row,
    .et-db #et-boc .et_pb_column {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_row:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
        width: 0;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_section {
        background-position: center;
        -webkit-background-size: 100%;
        -moz-background-size: 100%;
        background-size: 100%;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_section {
        position: relative;
        background-color: #FFF;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_section.et_section_transparent {
        background-color: transparent;
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_row .et_pb_column:last-child {
        margin-right: 0!important;
    }
    @media all and (min-width: 981px) {
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_section {
            padding: 4% 0;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_row {
            padding: 2% 0;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_row .et_pb_column:last-child {
            margin-right: 0!important;
        }
    }
    @media all and (max-width: 980px) {
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_column {
            width: 100%;
            margin-bottom: 30px;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_section {
            padding: 50px 0;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_row {
            padding: 30px 0;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_row .et_pb_column:last-child {
            margin-bottom: 0;
        }
        .page-template-page-techconnect-new.et-db #et-boc .et_pb_row {
            max-width: 1080px;
        }
    }
    .page-template-page-techconnect-new.et-db #et-boc .et_pb_row {
        width: 100%;
    }
}

.page-template-page-techconnect-new .post-cont .post-back-image-2 {
    background-size: cover !important;
    width: 100%;
    height: 630px;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.page-template-page-techconnect-new .post-cont .post-back-image-1 {
    background-size: cover !important;
    width: 100%;
    height: 310px;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.page-template-page-techconnect-new .post-cont h2 {
    bottom: 20px;
    color: #fff !important;
    padding: 0 20px !important;
}

.page-template-page-techconnect-new .post-cont {
    position: relative;
    margin-bottom: 10px !important;
}

.page-template-page-techconnect-new .post-cont-box .post-back-image-3 {
    background-size: cover !important;
    width: 100%;
    height: 210px;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.page-template-page-techconnect-new .post-cont-box h2 {
    position: absolute;
    bottom: 20px;
    color: #fff !important;
    padding: 0 20px !important;
    font-size: 2rem !important;
}

.page-template-page-techconnect-new .post-cont-box .et_pb_row {
    padding: 0 !important;
}

.page-template-page-techconnect-new .post-cont-box {
    position: relative;
    margin-bottom: 10px !important;
    border: 1px solid #ef6b1e !important;
}

.page-template-page-techconnect-new .post-cont-box p {
    padding: 10px !important;
}

.page-template-page-techconnect-new .post-cont-box a.more-link {
    display: block;
    padding: 5px 10px!important;
    background-color: #ef6b1e !important;
    color: #fff !important;
    border-radius: 3px !important;
    text-transform: capitalize;
    font-size: 2rem;
}

.page-template-page-techconnect-new .flex {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.page-template-page-techconnect-new .flex div {
    margin-left: auto !important;
    margin-right: 10px !important;
    margin-bottom: 10px !important;
}

.page-template-page-techconnect-new #featured-sec .et_pb_column:first-child {
    margin-right: 1% !important;
}

.page-template-page-techconnect-new .sing-form {
    background: #fff !important;
    box-shadow: 0 0 5px 0px #ef6b1e8a !important;
    padding: 20px 40px !important;
    border-radius: 0px !important;
    margin-right: 0 !important;
    margin-top: 20px !important;
}

.page-template-page-techconnect-new .gform_wrapper form .gform_footer {
    text-align: center !important;
}

.page-template-page-techconnect-new .gform_wrapper form .gform_footer input[type="submit"] {
    height: 36px;
    width: auto;
    margin: 0 !important;
    background: #ef6b1e !important;
    border: none !important;
    border-radius: 5px !important;
    color: #fff !important;
    padding: 10px 20px !important;
}

.page-template-page-techconnect-new #gform_wrapper_1 .top_label .gfield_label {
    display: block !important;
    margin-bottom: 10px;
}

.page-template-page-techconnect-new #et-boc input[type="text"],
.page-template-page-techconnect-new #et-boc input[type="number"],
#et-boc input[type="email"] {
    height: 49px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100% !important;
}

.page-template-page-techconnect-new .category-list {
    margin-bottom: 40px !important;
}

.page-template-page-techconnect-new .category-list h2 {
    color: #ef6b1e !important;
    border-bottom: 2px solid #ef6b1e !important;
    margin-bottom: 20px !important;
    display: inline-block;
}

.page-template-page-techconnect-new .category-list ul.cat-list {}

.page-template-page-techconnect-new .category-list ul.cat-list li {}

.page-template-page-techconnect-new .category-list ul.cat-list li a,
.page-template-page-techconnect-new .category-list ul.cat-list li a:hover {
    color: #ef6b1e !important;
}

.page-template-page-techconnect-new .clear-fix {
    clear: both;
}

.page-template-page-techconnect-new .cat-list li:before {
    border-color: transparent transparent transparent #ef6b1e;
    border-image: none;
    border-style: solid;
    border-width: 6px;
    content: "";
    margin-left: -20px;
    position: absolute;
    margin-top: 7px;
}

.page-template-page-techconnect-new .cat-list li a {
    font-size: 20px;
    line-height: 26px;
    padding-left: 0px !important;
}

.page-template-page-techconnect-new .post-cont-box {
    box-shadow: 0 0 5px 0px #ef6b1e8a !important;
    border: none !important;
    margin-bottom: 20px !important;
}

.page-template-page-techconnect-new #featured-sec {
    background: #333;
    padding: 50px 30px 50px 30px !important;
    margin-bottom: 30px !important;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.page-template-page-techconnect-new .post-cont-box .et_pb_row {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.page-template-page-techconnect-new .post-cont-box .et_pb_row .flex {
    display: grid;
}

.page-template-page-techconnect-new .post-cont-box .et_pb_row .flex div {
    display: grid;
    align-items: end;
    height: 100%;
    padding-bottom: 15px !important;
}

.mobile-show {
    display: none;
}

.mobile-hide {
    display: block;
}

.page-template-page-techconnect-new .et-featured-post:hover .meta-info {
    height: 100%;
}

.page-template-page-techconnect-new .meta-info,
.post-excerpt {
    -webkit-backface-visibility: hidden !important;
    -moz-backface-visibility: hidden !important;
    -o-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -webkit-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
}

.page-template-page-techconnect-new .meta-info .meta-date {
    padding: 12px 10px 12px 6px !important;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff !important;
    width: 100%;
    text-align: center !important;
}

.page-template-page-techconnect-new .meta-info .month {
    font-weight: 900;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.page-template-page-techconnect-new .post-description {
    position: absolute;
    color: #fff;
    left: 60px;
    bottom: 45px;
    padding-right: 10px;
}

.page-template-page-techconnect-new .post-excerpt {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
    opacity: 0;
}

.page-template-page-techconnect-new .et-first .excerpt-wrap {
    padding: 61px 62px 0 120px !important;
    position: absolute;
    bottom: 30px;
}

.page-template-page-techconnect-new .excerpt-wrap {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-template-page-techconnect-new .post-excerpt .post-title {
    color: #fff !important;
    font-weight: 900 !important;
    font-size: 30px;
    margin-bottom: 10px !important;
    display: block;
}

.page-template-page-techconnect-new .post-excerpt p {
    font-size: 18px;
    line-height: 28px;
}

.page-template-page-techconnect-new .et-featured-post:hover .post-description {
    opacity: 0;
}

.page-template-page-techconnect-new .et-featured-post:hover .post-excerpt {
    top: 0;
    opacity: 1;
}

.page-template-page-techconnect-new #featured-sec .post-description h2 a {
    color: #fff !important;
}

.page-template-page-techconnect-new .meta-info {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ef6b1e !important;
    color: #fff;
    text-align: center;
    font-size: 28px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    line-height: 20px;
    width: 60px;
    height: 60px;
    z-index: 3;
}

.page-template-page-techconnect-new .excerpt-wrap .more-link {
    display: inline-table;
    padding: 5px 10px!important;
    background-color: #ef6b1e !important;
    color: #fff !important;
    border-radius: 3px !important;
    text-transform: capitalize !important;
    font-size: 2rem;
    margin-top: 20px !important;
    line-height: 29px !important;
}

.page-template-page-techconnect-new .post-cont .et-first .excerpt-wrap {
    padding: 30px 20px 0 80px !important;
}

.page-template-page-techconnect-new .post-cont .post-excerpt .post-title,
.page-template-page-techconnect-new .post-cont .post-description a {
    line-height: 30px !important;
    font-size: 22px !important;
}

.page-template-page-techconnect-new .post-cont:nth-child(2) {
    margin-bottom: 0 !important;
}

.page-template-page-techconnect-new .et-featured-post:before {
    -webkit-box-shadow: inset 0 0 79px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 0 79px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 79px rgba(0, 0, 0, 0.2);
    top: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

.page-template-page-techconnect-new .site-inner {
    max-width: 1350px !important;
    padding: 0 15px !important;
    margin: 0 auto;
    width: 100%;
}

ul.tri-bullet li:before {
    border-color: transparent transparent transparent #ef6b1e;
    border-image: none;
    border-style: solid;
    border-width: 6px;
    content: "";
    margin-left: -16px;
    position: absolute;
    margin-top: 7px;
}

ul.tri-bullet li {
    list-style: none
}

@media only screen and (max-width: 767px) {
    .page-template-page-techconnect-new .post-cont .post-back-image-2 {
        height: 310px;
    }
    .page-template-page-techconnect-new .post-cont-box .et_pb_row {
        display: block;
    }
    .page-template-page-techconnect-new .post-cont-box .et_pb_row .flex div {
        text-align: center !important;
        margin: 10px auto 0 auto !important;
        padding-bottom: 30px !important;
    }
    .mobile-show {
        display: block;
    }
    .mobile-hide {
        display: none;
    }
    .page-template-page-techconnect-new #featured-sec {
        display: block;
    }
    .page-template-page-techconnect-new #featured-sec .et_pb_column_2_3 .et-featured-post {
        height: 310px !important;
    }
    .page-template-page-techconnect-new .et-first .excerpt-wrap {
        padding: 0 15px 0 75px !important;
    }
    .page-template-page-techconnect-new .et_pb_column_2_3 .et-first .excerpt-wrap p,
    .page-template-page-techconnect-new .et_pb_column_2_3 .et-first .excerpt-wrap .more-link {
        display: none;
        ;
    }
}


/* New home page CSS */

#home-slider .et-pb-slider-arrows a {
    background: #fff;
    padding-bottom: 0px !important;
    border-radius: 50%;
}

#home-slider .et-pb-controllers {
    display: none
}

#home-slide-main-div {
    padding: 0 !important
}

.et-db #et-boc .et-l #about-sec .et_pb_row.et-last-child {
    padding-bottom: 60px!important;
}

.et-db #et-boc .et-l #about-sec h2 {
    font-size: 40px !important;
    color: #ef6b1e!important;
}

a.spons-tag {
    background: #ef6b1e !important;
    color: #fff !important;
    margin: 0 !important;
    display: block;
    text-align: center !important;
    padding: 10px 0 50px 0 !important;
    font-size: 24px;
    line-height: 1 !important;
    padding-bottom: 10px !important;
}

.spons-hover-wrapper {
    position: absolute;
}

.spons-hover {
    background: #ef6b1e !important;
    color: #fff !important;
    padding: 10px 5px!important;
    position: relative;
    z-index: 9999;
    width: 90%;
    left: 0;
    right: 0;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 5px !important;
    margin-top: 25px !important;
    text-align: center !important;
    display: none;
    font-size: 16px;
    line-height: 16px;
}

@media only screen and (max-width: 1300px) {
    .spons-hover {
        font-size: 14px;
        line-height: 14px;
    }
}

.spons-hover a,
.spons-hover a:hover {
    color: #fff !important;
}

#hover-box:hover .spons-hover {
    display: block !important;
}

.spons-hover:after,
.spons-hover:before {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.spons-hover:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ef6b1e;
    border-width: 19px;
    left: 50%;
    margin-left: -19px;
}

.spons-hover:before {
    border-color: rgba(113, 158, 206, 0);
    border-bottom-color: #ef6b1e;
    border-width: 20px;
    left: 50%;
    margin-left: -20px;
}

.no-contain.et_divi_builder #et_builder_outer_content #full-width {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#hover-box {
    height: auto !important;
}

#spons-col-2 {
    margin-top: 44px !important;
    /* position: initial !important; */
}

#spons-col-3 {
    margin-top: 88px !important;
    /* position: initial !important; */
}

#spons-col-4 {
    margin-top: 132px !important;
    /* position: initial !important; */
}

#three .slick-active img {
    opacity: 0.3;
    max-width: 80% !important;
}

#three .slick-active.slick-center img {
    opacity: 1 !important;
    max-width: 100% !important;
}

#spons-col-3 .slick-slider {
    min-height: 200px !important;
}

#spons-col-1 .et_pb_module_inner {
    padding-top: 15% !important;
}

#spons-col-3 .et_pb_module_inner {
    padding-top: 5% !important;
}

#spons-col-2 .et_pb_module_inner {
    padding-top: 10% !important;
}

#home-btm .et_pb_section {
    padding: 0 !important;
}

#home-btm #featured-sec {
    background: transparent;
}

.home article.has-post-thumbnail,
.home .archive-pagination.pagination,
.home .entry-footer {
    display: none
}

.home.et-db #et-boc .et-l .et_pb_row_6.et_pb_row {
    padding-bottom: 0!important;
}

@media only screen and (max-width: 980px) {
    #about-sec .et_pb_module {
        height: auto !important;
    }
    #about-sec .et_pb_column_1_4 {
        padding-bottom: 15px !important;
    }
}

@media only screen and (max-width: 767px) {
    #spons-col-1 .et_pb_module_inner,
    #spons-col-2 .et_pb_module_inner,
    #spons-col-3 .et_pb_module_inner {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    #spons-col-2,
    #spons-col-3 {
        margin-top: 15px !important;
    }
    .et-db #et-boc .et-l #featured-sec .et_pb_column {
        margin-bottom: 10px;
    }
    .et-db #et-boc .et-l .et_pb_row_1.et_pb_row#featured-sec {
        padding-top: 30px!important;
        padding-bottom: 0!important;
    }
    .spons-hover {
        width: 95%;
    }
    .et-db #et-boc .et-l .et_pb_with_border#spons-col-1,
    .et-db #et-boc .et-l .et_pb_with_border#spons-col-2,
    .et-db #et-boc .et-l .et_pb_with_border#spons-col-3 {
        margin-bottom: 10px !important
    }
    .et-db #et-boc #about-sec .et_pb_column {
        width: 100% !important;
        margin-bottom: 30px !important;
    }
}

.page-id-10 h1.entry-title {
    display: none
}

#icon-text .cards.grid.five {
    display: block
}

#icon-text .card {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    margin-bottom: 10px;
    padding: 10px;
    align-items: center;
}

#icon-text .extra {
    display: none
}

#icon-text .image {
    width: 20%;
    padding: 10px;
    text-align: center;
}

#icon-text .content {
    width: 74%
}

#icon-text .card .image img {
    width: 100%;
    max-width: 150px !important;
    margin: 0 auto !important;
}

@media only screen and (max-width: 767px) {
    #icon-text .card {
        display: block;
    }
    #icon-text .image {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    #icon-text .content {
        width: 100%;
        padding: 0 20px 20px 20px !important;
    }
}