/* Variables */
body#Top {
    --header-bg: #0F0F0F;
    --header-text: #F8F8F8;
    --main-bg: #F8F8F8;
    --main-text: #0F0F0F;
    --main-secondary-bg: #0c2939; /* Atomic Steel Blue */
    --main-banner-bg: #f6e508; /* Gold (Fishers yellow) */
    --contact-icons: #F8F8F8;
    --contact-icons-hover: #f6e508;
    --nav-menu-bg: #f6e508;
    --nav-menu-text: #0F0F0F;
    --nav-menu-border: #F8F8F8;
    /* --accent-red: #ee191a; */
    --accent-red: hsl(0, 100%, 72%);
    --sidebar-border: #0F0F0F;
}

/* Normalize */
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}
ul {
    padding-left: 0;
}
.clear:before, .clear:after {
	content: "";
	display: table;
}

.clear:after {
	clear: both;
}

/* General styling -------------------------------------------- */
.transition-all, #nav-menu li a, .product-slider a, #industry-news a, .slick-dots li button::before, .product-description a, #subscribe .fa, #tab-three-text h3 a {
    transition: all .3s ease;
}
body {
    font-family: 'Lato', sans-serif;
    background: var(--header-bg);
}
article {
    padding: 15px 0;
    text-align: center;
}
#headerlinks {
    display: inline-block;
    width: 34%;
    margin: auto 30%;
    margin: auto calc(33% - 30px);
    padding: 5.5px 15px;
    font-size: 14px;
}
@media only screen and (max-width: 1400px) {
    #headerlinks {
        width: 90%;
        margin: auto 3.5%;
        margin: auto calc(5% - 30px);
    }
}
header {
    margin-top: 10px;   
}
#logo {
    float: right;
}
#logo img {
  max-width: 150px;
}
#slogan {
    display: inline-block;
    color: var(--header-text);
    font-style: italic;
    padding: 0 0 1.7rem;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}
#slogan span {
    color: var(--accent-red);
}

@media screen and (max-width: 496px) {
    #slogan {
        margin-top: 0;
    }
}

.contact {
    margin: 4px 0;
}
.contact a {
    color: var(--contact-icons);
    text-shadow: 1px 1px 1px var(--accent-red);
}
.contact a:hover {
    color: var(--contact-icons-hover);
}
.contact div {
    line-height: 1.35em;
    font-weight: bold;
    color: var(--header-text);
}
.contact div div {
    font-weight: 500;
    color: var(--header-text);
}
.contact .row div {
    margin-left: 0.4rem;
}
#search-row>div {
    width: 80%;
}

@media screen and (max-width: 767px) {
    #search-row>div {
        width: 100%;
    }
}

a {
    text-decoration: none;
    color: var(--main-text);
}
a:hover{
    color: var(--accent-red);
}
@media only screen and (max-width: 1024px) {
    #logo {
        margin-left: 0;
    }
    .contact div div {
        flex-direction: column;
    }
    .contact {
        text-align: center;
    }
    
}
/* Navigation Menu ---------------------------------------*/
#nav-menu-container {
    width: 100%;
    background: var(--nav-menu-bg);
    border-top: 2px solid var(--nav-menu-border);
    border-bottom: 2px solid var(--nav-menu-border);
    margin-bottom: 5px;
}
#nav-menu {
    width: 100%;
    transform: translate3d(0px,0px,0px);
    z-index: 12;
    position: relative;
    text-align: center;
    margin: 0;
    top: 8px;

}
#nav-menu>ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
}
#nav-menu li {
    flex: 1 1 auto;
    position: relative;
    display: inline-block;
    line-height: 30px;
    cursor: pointer;
    text-align: left;
}
#nav-menu>ul>li {
    border-right: 1px solid var(--nav-menu-text);
}
#nav-menu>ul>li:first-of-type a{
    border-left: 1px solid var(--nav-menu-text);
}
#nav-menu li a, #products-submenu>li {
    display: block;
    padding: 0.3rem 0.5rem;
    color: var(--nav-menu-text);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
    width: 100%;
    text-align: center;
}
#nav-menu li a:hover, #products-submenu>li:hover {
    color: var(--accent-red);
}
#nav-menu a.active {
    font-weight: 700;
/*    background-color: #f4f4f4;*/
}

#products-submenu, #support-submenu, #aboutJWF-submenu {
    left: -1px;
    background: var(--nav-menu-bg);
    list-style: none;
    padding: 12px;
    padding-right: 24px;
}
#products-submenu {
    width: 335px;
}
#support-submenu, #aboutJWF-submenu {
    width: 175px;
}
#products-submenu li {
    width: auto;
}
#products-submenu, #products-submenu ul, #support-submenu, #aboutJWF-submenu {
    display: none;
    position: absolute;
    border-left: 1px solid var(--nav-menu-text);
    box-sizing: content-box;
}
#products-submenu ul {
    list-style: none;
    left: 365px;
    top: 13px;
    background: var(--nav-menu-bg);
    width: auto;
}
#products-submenu li a {
    white-space: nowrap;
}
#main-menu li ul .sf-with-ul::after {
    font-family: "FontAwesome";
    content: "\f0da";
    position: absolute;
    left: 335px;
}
#products-submenu ul li, #support-submenu li, #aboutJWF-submenu li {
    clear: both;
}
#products:hover+#products-submenu, #products-submenu:hover, #support-submenu:hover, #aboutJWF-submenu:hover, li.sfHover {
    display: block;
}
#products-submenu li:hover ul, #products-submenu li ul:hover, li.sfHover {
    display: block;
}
#menu-check, #menu-label {
    display: none;
}
#menu-label {
    cursor: pointer;
    padding: 9px;
}
#nav-menu .sub-menu {
    display: none;
    list-style: none;
    position: absolute;
    left: 24%;
    z-index: 100;
    margin-top: -1px;
    background: var(--header-bg);
    box-shadow: -2px 3px 8px var(--header-bg);
}
#nav-menu li:hover a+.sub-menu, #nav-menu .sub-menu:hover {
    display: inline;
}
#nav-menu .sub-menu li a{
    float: left;
    clear: both;
    margin: 0;
    line-height: 1.5em;
    border: 1px solid #999;
    border-bottom: none;
    border-radius: 0 0 0 0;
    width: 220px;
    font-size: 12px
}
#nav-menu .sub-menu li:last-of-type a {
    border-bottom: 1px solid #999;
}
.sub-menu h4 {
    font-size: 15px;
    margin: 0 0 10px;
    text-align: center;
}
#nav-menu .sub-menu li a img {
    width: 100px;
    height: auto;
    float: left;
    margin: 0 6px 7px 0;
}
body.sticky {
    padding-top: 55px;
}
.sticky #nav-menu {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 8px;
    height: 59px;
    background: var(--nav-menu-bg);
    border-top: 2px solid var(--nav-menu-border);
    border-bottom: 2px solid var(--nav-menu-border);
}
@media only screen and (max-width: 1024px) {
    #nav-menu li a {
        white-space: nowrap;
    }
    body.sticky {
        padding-top: 82px;
    }
}
@media only screen and (max-width: 768px) {
    #menu-label {
        display: block;
        margin: 0 45px;
    }
    #nav-menu li {
        display: none;
    }
    #nav-menu>ul>li:first-of-type a, #nav-menu>ul>li a {
        border: none;
    }
    #menu-check:checked~ul li {
        display: block;
        text-align: center;
        line-height: 2.8rem;
    }
    #logo::before {
        content: "";
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
    #logo img {
        width: 96%;
        vertical-align: middle;
    }
    #nav-menu>ul {
        margin-left: auto;
    }
}
#toTop {
    z-index: 1;
    position: fixed;
    bottom: 5%;
    right: 5%;
    float: right;
    width: 50px;
    height: 50px;
    line-height: 70px;
    color: rgba(0,0,0,.6);
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    background: rgba(100,100,100,.3);
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #333;
}
#toTop:hover {
    color: var(--header-text);
    background: #444;
}
/*-----------------------------------------------------*/
/* Sliders --------------------------------------------*/
.slick-slide:focus {
    outline: 0px solid transparent;
}
.image-slider {
    height: 540px;
    width: 960px;
    /* padding: 15px; */
    margin: -27px auto 0;
    list-style: none;
}
@media only screen and (max-width: 960px) {
    .image-slider {
        width: 100%;
        height: auto;
    }
}

.image-slider li img {
    padding: 3px;
    display: block;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .image-slider li img {
        width: 100%;
    }
}

.image-slider p.slider-caption {
    z-index: 100;
    margin-top: -40px;
    color: var(--header-text);
    text-shadow: 1px 1px 3px #222;
}
.image-slider p.slider-caption.dark {
    position: relative;
    background: rgba(100,100,100,.7);
    width: 96.5%;
    width: calc(100% - 8px);
    margin-left: 4px;
    padding-bottom: 3px;
}
.slick-next::before, .slick-prev::before {
    font-size: 50px;
    color: transparent;
    background: transparent;
    opacity: 1;
    transition: all .3s ease;
}

.image-slider:hover button::before, .image-slider:hover button::after {
    color: var(--main-banner-bg);
    opacity: .7;
}
.slick-next:hover::before, .slick-prev:hover::before {
    opacity: 1;
}
.image-slider .slick-next {
    right: 25px;
}
.image-slider .slick-prev {
    left: 25px;
    z-index: 1;
}
.product-slider {
    list-style: none;
    width: 90%;
    margin: auto 5%;
}
.product-slider .slick-list {
    overflow: unset;
}
.product-slider .slick-next::before, .product-slider .slick-prev::before{
    color: #bbb;
    z-index: 1;
}
.product-slider .slick-prev {
    left: -4%;
}
.product-slider .slick-next {
    right: -4%;
}
.product-slider li {
    text-align: left;
    margin: auto;
}
.product-slider li:nth-of-type(2n) {
    text-align: right;
}
.product-slider .product-caption {
    float: right;
    width: 51%;
    color: #333;
}
.product-slider .product-caption h3 {
    color: #333;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 3px;    
    font-size: 14px;
    margin-bottom: 0;
}
.product-slider .product-caption h1 {
    font-size: 50px;
    line-height: 66px;
}
.product-slider li:nth-of-type(2n) .product-caption {
    float: left;
}
.product-slider p {
    margin-bottom: 35px;
    font-size: 14px;
}
.product-slider a {
    color: #333;
    letter-spacing: 2px;
    border: 2px solid #333;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    padding: 13px 24px;
}
.product-slider a:hover {
    color: white;
    background: #333;
}
.product-slider img {
    width: 44%;
    float: left
}
.product-slider li:nth-of-type(2n) img {
    float: right;
}
.product-slider .slick-list {
    max-width: 1160px;
    margin: auto;
}
.product-slider .new-in-2020 {
    padding: 17px 25px;
    position: absolute;
    display: block;
    top: -10px;
    color: red;
    font-size: 20px;
    border: 2px solid red;
    border-radius: 50%;
}

.product-slider .new-in-2020.right {
    right: -50px;
    transform: rotate(20deg);
}

.product-slider .new-in-2020.left {
    left: -50px;
    transform: rotate(-20deg);
}
@media only screen and (max-width: 1300px) {
    .product-slider .new-in-2020 {
        padding: 12px 15px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 1285px) {
    .product-slider li {
        height: 340px;
    }
    .product-slider .product-caption h1 {
        font-size: 3.6vw;
        line-height: 46px;
    }
    .product-slider .product-caption h3 {
        font-size: 11px;
        line-height: 14px;
    }
}
@media only screen and (max-width: 900px) {
    .product-slider .new-in-2020 {
        padding: 10px 15px;
        font-size: 14px;
    }

    .product-slider .new-in-2020.right {
        right: -30px;
    }
    
    .product-slider .new-in-2020.left {
        left: -30px;
    }
}
@media only screen and (max-width: 485px) {
    .product-slider li {
        height: 580px;
    }
    .product-slider .product-caption {
        width: 95%;
    }
    .product-slider img {
        width: 95%;
    }
    .product-slider .product-caption h1 {
        font-size: 21px;
    }
    .product-slider .slick-next, .product-slider .slick-prev {
        top: 97%;
    }

    .product-slider .new-in-2020.right {
        right: -20px;
    }
    
    .product-slider .new-in-2020.left {
        left: -20px;
    }
}
/*
#testimonial .quote-slider {
    list-style: none;
}
#testimonial div {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
}
#testimonial p {
    color: #0C0C0C;
    font-family: 'Crete Round', serif;
    font-weight: 100;
    font-style: italic;
}
#testimonial h3::before {
    content: "- ";
}
#testimonial h4 {
    margin-top: -15px;
    font-weight: 300;
    padding-left: .8em;
}
*/
.slick-dots {
    margin: 0 0 0 50%;
}
.slick-dots li {
    margin: 0 -3px;
}
.slick-dots li button::before{
    font-family: 'FontAwesome';
    color: var(--header-text);
    font-size: 7px;
    content: '\f111';
}
.slick-dots li.slick-active button::before{
    color: var(--header-text);
    font-size: 9px;
}

/*---------------------------------------------------------*/
/* Articles -----------------------------------------------*/
#images {
    display: inline-block;
    clear: both;
    /* background: #8ccbdd; */
    width: 100%;
    border: none;
    padding-bottom: 20px;
}
#images::before {
    display: inline-block;
}
#quote-and-products {
    background: var(--main-text);
    color: var(--main-bg);
}
#quote {
    margin-bottom: 10px;
}
#quote span {
    font-style: italic;
}
#product-list {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
#product-list h2 {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    font-size: 1.2rem;
    margin: 2px 8px;
}
#product-list h2 a {
    color: var(--main-bg);
}
#product-list h2 a:hover {
    color: var(--main-banner-bg);
}
#product-list .divider::before {
    content: "|";
    color: var(--main-banner-bg)
}
#text-box {
    color: #343434;
    background: #fff;
    line-height: 27px;
    font-weight: 300;
}
#text-box p {
    width: 90%;
    margin: 16px auto 5px;
    padding-bottom: 15px;
}
#updates {
    background: var(--main-bg);
    width: 100%;
    margin: auto;
    overflow-x: visible;
}
#updates ul {
    list-style: none;
    /* width: 30%;
    margin: 0 50px 0 250px;
    float: left; */
    
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
#updates li {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;

    /* float: left; */
    position: relative;
    width: 320px;
    padding: 15px;
    text-align: left;
    background-repeat: no-repeat;
    background-position: center 15px, 220px 130px;
    background-size: auto 150px, 50px 50px;
    
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
#documents li {
    width: 300px;
    text-align: center;
}
#documents li a {
    text-align: center;
}
#documents li p {
    width: 270px;
    padding: 0 47px;
    text-align: center;
}
#updates li img {
    width: 175px;
}
#featured .brochure {
    background-image: url('../media/Brochure_19.jpg');
}
#updates h3 {
    color: var(--main-text);
    font-size: 1rem;
    font-family: Raleway;
    font-weight: 300;
    letter-spacing: 1.5px;
}
#updates p {
    font-size: 15px;
    line-height: 1.5;
    font-family: Lato;
    font-weight: 100;
    -webkit-flex: 2 1 auto;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto;
    text-align: center;
}

#updates .article-title {
    height: 4rem;
    text-align: center;
}
#updates .article-image img {
    max-height: 233px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
#updates .article-image {
    overflow: hidden;
}
#updates .article-image .right {
    float: right;
}
#updates .article-image .full {
    max-width: 100%;
}

@media screen and (max-width: 576px) {
    #updates h3 {
        text-align: center;
    }

    #updates li img {
        display: block; 
        margin-left: auto;
        margin-right: auto;
    }

    #updates p {
        margin-top: 10px;
        text-align: center;
    }

    #updates a {
        text-align: center;
    }
}

.article-image-caption {
    clear: both;
}
.news-article .article-image-caption, .news-article .article-text {
    display: none;
}
#Articles .article-text {
    display: block;
}
#load-articles .more {
    display: none;
}
#product-box {
    background: #F6F6F6;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 60%;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: -20%;
  }

@media screen and (max-width: 480px) {
    .video-wrapper iframe {
        width: 90%;
        left: 5%;
        height: 90%;
    }
    .video-wrapper {
        margin-bottom: -5%;
    }
}
#dhs-seal {
    position: absolute;
    top: 120px;
    right: 36px;
    transform: rotateZ(16deg);
    z-index: 12;
}
#dhs-seal img {
    max-height: 250px;
}
@media screen and (max-width: 1400px) and (min-width: 1011px){
    #dhs-seal {
        top: 155px;
    }
    #dhs-seal img {
        max-height: 260px;
    }
}
@media screen and (max-width: 1010px) and (min-width: 561px){
    #dhs-seal {
        top: 235px;
    }
    #dhs-seal img {
        max-height: 230px;
    }
}
@media screen and (max-width: 560px){
    #dhs-seal {
        top: 255px;
        width: 30%;
    }
    #dhs-seal img {
        width: 100%;
    }
}
#industry-news {
    background: var(--main-bg);
}
#industry-news h1 {
    letter-spacing: 3px;
    font-weight: 400;
}
#industry-news ul {
    margin: 0 auto;
    list-style: none;
    overflow: hidden;

    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: stretch;
}
#industry-news li {
    float: left;
    width: 30%;
    padding: 25px 1.5%;
    overflow: hidden;
    box-sizing: content-box;

    display: flex;
    flex-direction: column;
}
#industry-news h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    min-height: 66px;
    font-size: 1.2rem;
}
#industry-news .article-text::before {
    position: absolute;
    font-family: "FontAwesome";
    bottom: -80px;
    right: -15%;
    font-size: 220px;
    opacity: .1;
    font-style: normal;
}
#industry-news #news-one::before {
    content: "\f1ea";
}
#industry-news #news-two::before {
    content: "\f013";
}
#industry-news #news-three::before {
    content: "\f13d";
}
#industry-news img {
    float: left;
    margin: auto 20px;
    width: auto;
    max-height: 150px;
    max-width: 50%;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
#industry-news p {
    position: relative;
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
    font-weight: 400;
    height: 180px;
    margin-bottom: 30px;
    overflow: hidden;
    border-bottom: 1px dashed grey;
}
#industry-news a {
    color: #333;
}
#industry-news .more {
    margin: auto auto 0 auto;
}
#industry-news .more:hover {
    border-color: #fff;
    background: var(--header-text);
}
#industry-news .article-image-caption {
    display: none;
}
@media only screen and (max-width: 1350px) {
    #industry-news img {
        float: none;
    }    
}
@media only screen and (max-width: 1010px) {
    #industry-news li {
        float: none;
        width: 85%;
        margin: auto;
    }
    #industry-news i::before {
        right: -15%;
    }
}
#article-date {
    display: none;
}
#page-label {
    box-sizing: content-box;
    width: 66%;
    padding: 25px 17%;
    margin-top: -3px;
    background-color: #f5f5f5;    
}
#page-label h2 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 38px;
    text-shadow: 7px 10px 6px #ccc;
}

@media screen and (max-width: 576px) {
    #page-label {
        margin: 0;
        padding: 25px 0;
        width: 100%;
    }

    #page-label h2 {
        text-align: center;
    }
}

#page-label h4 {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0 15px;
}
.contact-form {
    width: 350px;
    margin: 30px auto 0;
    background: #cfcfcf;
    padding: 25px;
    box-shadow: -1px 3px 8px grey;
    border-radius: 4px;
    box-sizing: content-box;
}
@media only screen and (max-width: 450px) {
    .contact-form {
        width: auto !important;
    }
}
#repair-form {
    width: 410px;
}
#order-form {
    width: 1770px;
}
#data-form {
    width: 890px;
}
#data-form .g-recaptcha, #order-form .g-recaptcha {
    float: right;
}
#order-form form>h4, #data-form form>h4, #order-form h5 {
    margin-left: 25px;
}
#order-form h4, #data-form h4 {
    margin: 0 0 7px;
}
#order-form h5 {
    margin-bottom: 1rem;
}
@media screen and (max-width: 1870px) and (min-width: 1431px) {
    #order-form {
        width: 1330px;
    }
}
@media screen and (max-width: 1430px) and (min-width: 991px) {
    #order-form {
        width: 890px;
    }
}
@media screen and (max-width: 990px) {
    #order-form, #data-form {
        width: 450px;
    }
/*
    #order-form form>h4, #data-form form>h4 {
        margin-left: 18%;
        width: 50%;
    }
*/
}
@media screen and (max-width: 500px){
    #order-form, #data-form {
        width: 96%;
        padding: 25px 0;
    }
    
}
.contact-form div div label, #contact-info label, #support-form label, #repair-form label {
    float: left;
    padding: 6px;
    margin: 2px;
    clear: left;
}
.contact-form input, .contact-form textarea {
    float: right;
    width: 225px;
    margin: 2px;
    padding: 4px;
}
.contact-form textarea {
    width: 227px;
}
.contact-form input[type="submit"], .contact-form input[type="reset"] {
    color: #343434;
    width: 150px;
    margin: 20px 12px 0;
}
#order-form input[type="submit"], #order-form input[type="reset"] {
    margin: 20px 20px 0;
}
.required-asterisk {
    float: right;
    margin: 4px -13px;
    font-size: 25px;
    color: red;
}
.toggle-check+h3+div, .toggle-check {
    display: none;
}
.toggle-check:checked+h3+div {
    display: block;
}
#product-name h3, #data-products h3 {
    background: var(--header-text);
    border-bottom: 1px solid #ccc;
    margin: 5px 0;
    padding: 5px 8px;
    font-size: 1.17em;
}
#product-name h3:last-of-type, #data-products h3:last-of-type {
    border-bottom: none;
}
#product-name .toggle-check:checked+h3, #data-products .toggle-check:checked+h3 {
    border-bottom: 1px solid #ccc;
}
#product-name h3 label, #data-products h3 label {
    cursor: pointer;
    padding-left: 7px;
}
#product-name h3::before, #data-products h3::before {
    display: inline-block;
    font-family: FontAwesome;
    content: "\f054";
    color: #bbb;
    width: 19px;
    transition: transform, .1s;
    transform: rotateZ(0deg);
}
#product-name .toggle-check:checked+h3:before, #data-products .toggle-check:checked+h3:before {
    transform: rotateZ(90deg);
}
#product-name , #data-products {
    background: var(--header-text);
    border: 1px solid #ccc;
}
#product-name div, #data-products div {
    position: relative;
    padding: 0 15px 12px;
    border-bottom: 1px solid #ccc;
}
#product-options, #product-name, #data-products, #prices, #contact-info {
    position: relative;
    margin: 20px;
    width: 400px;
    float: left;
}
@media only screen and (max-width: 450px) {
    #data-products {
        width: auto !important;
        float: inherit !important;
        margin: 20px auto !important;
    }
 }
.form-sent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55,55,55,.5);
}
.form-sent div {
    position: relative;
    width: 40%;
    margin: 10% auto;
    background: #ddd;
    padding: 52px;
    border-radius: 12px;
}
#contact-sent div {
    width: 190px;
}
/*
#close {
    font: 26px FontAwesome;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 11px;
    border: none;
}
*/
.form-sent div img {
    float: left;
    margin: 20px 25px 15px 0;
}
.form-sent p {
    display: table;
}
#contact-info {
    float: right;
    margin-top: -20px;
}
#product-options {
    margin-top: -18px;
    margin-bottom: 50px;
}
#product-options h3 {
    text-align: center;
    background: var(--header-text);
    display: block;
    padding: 2%;
    margin: auto 23% -1px;
    width: 50%;
    border-radius: 6px 6px 0 0;
    border: 1px solid #bbb;
    font-size: 1.17em;
}
#product-options div {
    background: var(--header-text);
    padding: 15px;
    border: 1px solid #bbb;
    border-top: none;
}
#product-name div input {
    display: none;
}
#product-options div input {
    float: left;
    width: auto;
    margin: 9px 6px 0 0;
}
#data-products input {
    float: left;
    width: auto;
    clear: left;
    height: 30px;
}
#product-options div label, #product-name div label, #data-products div label {
    float: none;
    display: inline-block;
    cursor: pointer;
    padding: 3px;
    width: 88%;
    max-width: 335px;
    box-sizing: content-box;
}
#product-options input[type=text], #product-options input[type=text]+label {
    display: none;
    float: none;
    margin-left: 26px;
}
#product-options input:checked + label + caption + br + input[type=text], #product-options input:checked + label + caption + br + input[type=text] + label, #product-options input:checked + label + caption + input[type=text], #product-options input:checked + label + caption + input[type=text] + label {
    display: inline-block;    
}
#product-options input:checked+label, #product-name input:checked+label, #data-products input:checked+label {
    border: 1px solid grey;
    margin: 1px;
    background: #efefef;
}
caption+h5 {
    margin: 4px 0 0 26px;
    font-size: 0.915rem;    
}
.hover-price {
    display: none;
    position: absolute;
    right: -178px;
    margin-top: -40px;
    background: #fafafa;
    border: 1px solid #aaa;
    border-radius: 7px;
    padding: 5px;
    width: 160px;
    z-index: 1;
    box-shadow: 2px 3px 4px #888;
}
label:hover+.hover-price {
    display: flex;
}
.hover-price p {
    margin: 10px 0;
    text-align: center;
    width: 100%;
}
.hover-price i {
    position: absolute;
    left: -16px;
    top: unset;
    font-size: 43px;
    color: #aaa;
}
@media screen and (max-width: 1230px) {
    .hover-price {
        right: 114px;
        margin-top: 41px;
    }
    .hover-price i {
        left: 75px;
        top: -29px;
        transform: rotateZ(90deg);
    }
}
#prices {
    margin-top: 3px;
}
#prices span {
    float: right;
}
#prices p {
    border-bottom: 1px dashed #aaa;
    padding-bottom: 3px;
}
#call {
    text-align: center;
}
#call a {
    color: red;
    font-weight: bold;
}
#prices p:last-of-type {
    border-bottom: 1px solid #aaa;
    margin-bottom: 25px;
}
@media screen and (max-width: 500px) {
    #product-name, #product-options, #prices, #contact-info {
        width: 96%;
        margin: 2%;
    }
    .hover-price {
        right: 2%;
    }
    #prices p {
        width: 66%;
        margin: 1em auto;
    }
    #contact-info label, #contact-info input {
        width: 88%;
        margin: auto 4%;
        text-align: center;
    }
    .required-asterisk {
        position: relative;
        right: 10px;
        margin: 36px -10px 4px 0;
    }
}
.more {
    display: block;
    width: 65%;
    color: var(--main-text);
    background: var(--main-banner-bg);
    letter-spacing: 2px;
    border: 2px solid var(--main-text);
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    padding: 13px 24px;
    text-align: center;
    text-transform: uppercase;
}
.more:hover, .product-description .more:hover {
    cursor: pointer;
    color: var(--header-text);
    background: var(--accent-red);
    text-decoration: none;
}
#featured .more {
    margin: 8px auto;
}
@media only screen and (max-width: 517px) {
    .more {
        margin: auto;
    }
}
.support-link {
    width: 95%;
    margin: 30px;
}
#about-page img {
    float: left;
    max-width: 220px;
    margin: 0 25px 15px 0;
}
#about {
    width: 65%;
    padding: 35px;
    margin: 0 auto;
    background: var(--header-text);
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
}
#about p:first-of-type {
    margin-top: 0;
}
#connectors {
    width: 65%;
    padding: 35px;
    margin: 0 auto;
    background: var(--header-text);
}
@media screen and ( max-width: 1670px ) and ( min-width: 1011px) {
    #about p:first-of-type {
        clear: both;
    }
}
@media screen and (max-width: 1010px ) {
    #about {
        width: 90%;
        padding: 35px 5%;
       -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2; 
    }
}
@media screen and ( max-width: 800px ) and ( min-width: 548px) {
    #about p:first-of-type {
        clear: both;
    }
}
@media screen and ( max-width: 547px ) {
    #about {
        width: 98%;
        padding: 35px 1%;
       -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1; 
    }
}
@media screen and ( max-width: 400px ) {
    #about p:first-of-type {
        clear: both;
    }
    #about-page img {
        width: 220px;
        margin-left: 20%;
        margin-left: calc(50% - 110px);
    }
}
#multimedia #links a {
    float: left;
    width: 300px;
    height: 280px;
    margin: 0;
    padding: 1em 40px;
    border-top: 1px dashed #ccc;
    border-radius: 22px;
}
#multimedia #links a, #multimedia #links figcaption {
    width: 300px;
    display: block;
    text-align: center;
    color: var(--main-bg);
    box-sizing: content-box;
}
#multimedia #links img {
    max-width: 300px;
    max-height: 240px;
}
a.next:not([href]):not([tabindex]), a.prev:not([href]):not([tabindex]) {
/* Good talk, bootstrap */
    color: var(--header-text);
}
#links {
    width: 80%;
    margin: 0 auto;
    border-width: 0 1px;
    border-style: dashed;
    border-color: #ccc;
    border-radius: 22px;
}
@media screen and (max-width: 1900px) and (min-width: 1521px) {
    #links {
        width: 1520px;
    }
}
@media screen and (max-width: 1520px) and (min-width: 1141px) {
    #links {
        width: 1140px;
    }
}
@media screen and (max-width: 1140px) and (min-width: 761px) {
    #links {
        width: 760px;
    }
}
@media screen and (max-width: 760px) {
    #links {
        width: 380px;
    }
}

#anniversary {
    background: var(--header-text);
    padding: 25px 17%;
    font-family: Lato;
}

#anniversary-banner {
    margin-top: 23px;
    background: #fbff58;
    padding: 20px;
    text-align: center;
}

#anniversary a {
    display: block;
}

.anniversary-image {
    cursor: pointer;
}

#anniversary #viewer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(50,50,50,0.7);
    z-index: 12;
}

#anniversary #viewer-caption {
    background: #f0f0f0;
    color: #0f0f0f;
    padding: 4%;
    display: block;
    float: left;
    width: 37%;
    max-height: 71%;
    margin: 6% 0 0 2.5%;
    border-radius: 79px 0 0 79px;
}

#anniversary iframe#viewer-media {
    width: 47.5%;
    height: 85%;
    margin: 6% 2.5% 0 0;
    display: block;
    float: right;
}

#anniversary img#viewer-media {
    max-width: 47.5%;
    max-height: 85%;
    width: auto;
    height: auto;
    margin: 6% 2.5% 0 2.5%;
    display: block;
    float: left;
}

#anniversary .no-caption #viewer-caption {
    display: none;
}

#anniversary .no-caption iframe#viewer-media {
    width: 80%;
    float: left;
    margin-left: 10%;
}

#anniversary .no-caption img#viewer-media {
    float: none;
    max-width: 95%;
    display: inline;
}

#viewer.no-caption {
    text-align: center;
}

#viewer::after {
    content: "X";
    position: fixed;
    top: 9%;
    right: -2%;
    color:  black;
    width:  50px;
    height: 50px;
    display: block;
    z-index: 13;
    cursor: pointer;
}

#anniversary ul {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    
}
#anniversary li {
    float: left;
    width: 20%;
    padding: 2.5%;
    text-align: left;
}

#anniversary h3 {
    font-size: 20px;
    font-family: Raleway;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-align: center;
}

#anniversary ul p, #viewer p {
    font-size: 18px;
    line-height: 1.8;
    font-family: Lato;
    font-weight: 100;
}

#anniversary ul p {
    -webkit-flex: 2 1 auto;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto;
 }

#anniversary img {
    width: 69%;
    height: auto;
    margin-left: 15.5%;
    margin-top: 10px;
}

.tl-timeline {
    font-family: Raleway;
}

@media only screen and (max-width: 1010px) {
    #anniversary-banner {
        margin-top: 35px;
    }

    #anniversary {
        padding: 25px 7%;
    }

    #anniversary li {
        width: 28%;
    }
}

@media only screen and (max-width: 560px) {
    #anniversary li {
        width: 45%;
    }
    #anniversary #viewer-caption {
        float: none;
        width: 92%;
        margin: 80px 2% 0;
        border-radius: 79px 79px 0 0;
        padding: 5px 2%;
    }
    
    #anniversary iframe#viewer-media {
        width: 95%;
        margin: 0 0 0 2%;
        float: none;
    }
    
    #anniversary #viewer-caption h3 {
        font-size: 15px;
        margin: 5px;
    }
    
    #anniversary #viewer-caption p {
        font-size: 14px;
        margin: 0;
        padding: 10px
    }
    
    #anniversary .no-caption iframe#viewer-media {
        margin: 90px 0 0 10%;
    }
    
    #anniversary .no-caption img#viewer-media {
        margin: 90px 0 0 0;
    }
}

@media only screen and (max-width: 400px) {
    #anniversary li {
        width: 100%;
    }
}

/*---------------------------------------------------*/
/*Footer --------------------------------------------*/
footer {
    margin-top: 30px;
    background: #333;
    color: #CCC;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    clear: both;
}
footer>div {
    float: left;
    width: 19%;
    padding: 50px 2%;
}
footer>div:first-of-type {
    margin-left: 15%
}
footer>div:last-of-type {
    margin-right: 15%;
}
footer h2 {
    letter-spacing: 2px;
    font-weight: 300;
}
#contact {
    background: url("../media/world-map.png") no-repeat center 70%;
    background-size: 80%;
    box-sizing: content-box;
}
#contact h2 {
    font-style: italic;
    text-shadow: 0 0 1px #ddd;
}
#warranty-seal {
    background: url("../media/Warranty-Icon.png") no-repeat top center;
    height: 120px;
    background-size: contain;
    margin-top: 80px;
    overflow: visible;
    box-sizing: content-box;
}
#subscribe {
    box-sizing: content-box;
}
#subscribe a {
    float: right;
    clear: left;
}
#subscribe .fa {
    text-align: center;
    width: 18px;
    height: 18px;
    color: #eee;
    font-size: 18px;
    background: #2f2f2f;
    padding: 6px;
    border-radius: 18px;
    border: 2px solid #eee;
    margin: 10px 0 0 4px;
    box-sizing: content-box;
}
#subscribe a:hover .fa-facebook {
    color: #ddd;
    background-color: #3c5998;
}
#subscribe a:hover .fa-youtube-play {
    color: #ddd;
    background-color: #E62117;
}
#subscribe a:hover .fa-pinterest {
    color: #ddd;
    background-color: #bd2126;
}
#subscribe a:hover .fa-linkedin {
    color: #ddd;
    background-color: #1a84bc;
}
#subscribe h2 {
    font-size: 1.3em;
}
#subscribe input, #subscribe button {
    float: left;
    clear: both;
    line-height: 2em;
    margin: 9px;
    border: 1px solid #111;
    border-radius: 3px;
    padding: 3px;
}
#subscribe input {
    color: #ddd;
    background-color: #292929;
    width: 70%;
    padding-left: 40px;
}
#subscribe input:active, #subscribe input:focus {
    color: #eee;
    background-color: #222;
    border-color: #555;
    outline: none;
}
#subscribe button {
    font-weight: bold;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
    letter-spacing: 1px;
}
#subscribe button:hover {
    background-color: #c9302c;
    border-color: #ac2925;
}
#subscribe button:active {
    box-shadow: inset 0 3px 5px #9D1D1D;
    border-top-color: #9D1D1D;
}
#subscribe button:focus {
    outline: none;
}

#subscribe #privacy-link {
    float: left;
    clear: both;
    margin: 24px 10px 8px;
    cursor: pointer;
}

#subscribe #privacy-link .fa {
    border: none;
    padding: 0;
    margin: 0 4px;
}

#subscribe #privacy-notice {
    display: none;
}

#subscribe #privacy-check:checked ~ #privacy-notice {
    display: block;
}

#subscribe #privacy-notice {
    position: fixed;
    top: 10%;
    left: 20%;
    width: 60%;
    background: #EFEFEF;
    color: #1C1C1C;
    padding: 24px;
    border-radius: 8px;
    max-height: 85vh;
    overflow-y: auto;
}

#subscribe #privacy-notice label {
    font-size: 1.3rem;
    line-height: 180%;
}

#subscribe #privacy-notice a {
    float: none;
    clear: none;
    color: blue;
    text-decoration: underline;
}
@media only screen and (max-width: 365px) {
    #subscribe {
        margin: 0;
    }

    #subscribe input {
        width: 100%;
    }
}
#your-name::before, #your-email::before {
    font-family: "FontAwesome";
    font-size: 16px;
    color: #8E8E8E;
    background-color: #1D1D1D;
    padding: 5px 10px;
    line-height: 24px;
    position: absolute;
    margin: 10px;
    border-radius: 3px;
}
#your-name::before {
    content: '\f007';
}
#your-email::before {
    content: '\f003';
}
.g-recaptcha {
  margin-left: 8px;
}
#support-form .g-recaptcha {
    float: right;
    padding-top: 1rem;
}
@media only screen and (max-width: 825px) {
    footer>div:nth-of-type(1n) {
        width: 75%;
        margin: auto 12.5%;
        border-bottom: 1px solid #292929;
    }
    #warranty-seal {
        margin-top: 0;
    }
}
/*------------------------------------------*/
#copyright {
    width: 100%;
    background-color: #292929;
    color: #b5b5b5;
    list-style: none;
    clear: both;
    padding: 30px 0;
    margin: 0;
    line-height: 60px;
    font-weight: 400;
}
#copyright>li {
    height: 60px;
}
#copyright>li:first-of-type {
    float: left;
    margin: 0 0 0 17%;
}
#copyright>li:last-of-type {
    float: right;
    margin: 0 17% 0 0;
}
#sitemap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    list-style: none;
}
#sitemap li {
    height: 60px;
    margin-left: 7px;
}
#sitemap li::after {
    content: "/";
    padding: 0 2px 0 13px;    
    font-weight: bold;
}
#sitemap li:last-of-type::after {
    content: "";
}
#sitemap li a {
    color: #b5b5b5;
    font-weight: bold;
}
#sitemap li a:hover {
    color: #696969;
}
@media only screen and (max-width: 1840px) {
    #copyright>li:nth-of-type(1n) {
        float: none;
        text-align: center;
        margin: auto;
    }
}
@media only screen and (max-width: 900px) {
    #copyright {
        line-height: normal;
    }
    #copyright>li:nth-of-type(1n) {
        width: 100%;
        height: auto;
    }
    #sitemap li {
        float: none;
        height: auto;
        margin-top: 15px;
    }
    #sitemap li::after {
        content: "";
    }
}

@media only screen and (max-width: 768px) {
    .sticky #nav-menu {
        padding: 0
    }

    #nav-menu {
        padding: 0;
    }

    #main-menu {
        background: var(--nav-menu-bg);
        display: flex;
        flex-direction: column;
        border: 0px;
        width: 100%;
    }

    #menu-label {
        font-size: 25px !important;
        color: black;
        border: 0 !important;
        width: 100%;
    }

    #menu-label:before {
        content: "\f0c9";
        font-family: fontawesome;
        margin-right: 15px;
    }

    #nav-menu a.active {
        background: black;
        font-weight: 700;
        font-size: 20px;
        color: white;
    }

    #nav-menu a.active:before {
        content: "\f054";
        font-family: fontawesome;
        position: absolute;
        left: 40px;
    }
}