@charset "UTF-8";
/*--------------------------------------------------------------
# Main Custom Implementation + Partial Imports
--------------------------------------------------------------*/
/*
Theme Name: rapidm
Author: RapidM 
Description: A custom theme for RapidM based on underscores 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rapidm
Tags:

This theme, like WordPress, is licensed under the GPL.

Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
  ## Links
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
  ## Posts and pages
  ## Comments
# Infinite scroll
# Media
  ## Captions
  ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: 'Open Sans', 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-weight: 200; }

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-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; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #434343;
  /** 404040 **/
  font-family: 'Open Sans', sans-serif !important;
  font-size: 15px;
  line-height: 1.5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both; }

p {
  margin-bottom: 1.5em; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: ""; }

blockquote,
q {
  quotes: "" ""; }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul,
ol {
  margin: 0 0 1.5em 3em;
  padding-left: 0px; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

table {
  margin: 0 0 1.5em; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background: #00aeef;
  color: #fff;
  border: 0px;
  border-radius: 0px;
  text-shadow: none;
  box-shadow: none;
  border: none;
  display: inline-block;
  padding: 12px 22px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle; }

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15); }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 3px; }

select {
  border: 1px solid #ccc; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111; }

textarea {
  width: 100%; }

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #00aeef;
  transition: all linear .3s; }

a:visited {
  color: #00aeef; }

a:hover,
a:focus,
a:active {
  color: midnightblue;
  text-decoration: none; }

a:focus {
  outline: thin dotted; }

a:hover,
a:active {
  outline: 0; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
  margin-left: 50px; }

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0; }

.main-navigation li {
  float: left;
  position: static;
  margin-right: 70px; }

/**
.main-navigation ul ul li {
  float: left;
  width: 25%;
  position: relative;
  margin-right:0px;
  padding: 5px 20px 50px 20px;
}
**/
.main-navigation a {
  color: #fff;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-size: 18px; }

.main-navigation a:hover {
  color: #fff; }

/**
.main-navigation ul ul {
  float: left;
  position: absolute;
  left: -999em;
  z-index: 99999;
  background: #f7f7f8;
  border-bottom: 3px solid $light_blue;
}

**/
.main-navigation ul ul a {
  font-size: 14px;
  color: #404141;
  font-weight: 500; }

.main-navigation ul ul a:hover {
  color: #404141; }

/**
.main-navigation ul ul ul {
  background: none;
  padding:0px;
  left:0;
  border-bottom: 0px;
}

**/
.main-navigation ul ul ul a {
  font-size: 12px;
  text-transform: initial;
  font-weight: 300; }

/**
.main-navigation ul ul li { 
  min-height: 110px;
}
**/
.main-navigation ul ul ul li {
  min-height: initial; }

.main-navigation ul ul ul li {
  width: 100%;
  padding: 5px 5px 5px 25px; }

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: 20%;
  right: 20%; }

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 0; }

/**
.main-navigation ul ul li:after {
  content: '';
}

.main-navigation ul ul li:nth-child(4n + 4):after {
  clear: both;
}
**/
.sub-menu {
  overflow: auto;
  padding: 25px;
  padding-bottom: 40px;
  position: relative; }

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block; }

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none; }
  .main-navigation ul {
    display: block; } }

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0; }

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em; }

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block; }

.hentry {
  margin: 0 0 1.5em; }

.byline,
.updated:not(.published) {
  display: none; }

.single .byline,
.group-blog .byline {
  display: inline; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 0.8075em 0; }

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11%; }

.gallery-caption {
  display: block; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1 {
  font-family: 'Kanit', sans-serif;
  font-weight: 200;
  font-size: 45px;
  letter-spacing: 1px;
  text-transform: uppercase; }

h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-size: 37px; }

h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 32px; }

h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 26px;
  outline: none; }

h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 20px; }

h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px; }

small {
  font-size: 13px; }

p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #434343; }

strong p {
  font-weight: bold; }

.entry-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 500; }

.archive .entry-title {
  font-weight: 300;
  font-size: 25px; }

.search .entry-title {
  font-size: 25px; }

.home .tagline-container h1 {
  font-weight: 200;
  text-transform: initial;
  font-size: 46px;
  border-left: 8px solid #335686;
  border-right: 8px solid #335686;
  padding: 30px;
  max-width: 80%;
  display: inline-block; }

.tagline-container p {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-weight: 200;
  font-size: 28px; }

.tagline-container h2 {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-weight: 200;
  font-size: 30px; }

.title-container h1 {
  font-weight: 300;
  text-transform: initial;
  font-size: 42px;
  border-left: 8px solid #335686;
  border-right: 8px solid #335686;
  padding: 30px;
  max-width: 80%;
  display: inline-block; }

.vis-labelset .vis-label .vis-inner {
  font-size: 18px;
  text-transform: uppercase; }

.single-standards-page h3 {
  font-size: 18px;
  font-weight: 600; }

.single-standards-page small {
  font-size: 11px;
  color: #000; }

.single-standards-page table {
  margin: 0px; }

.single-standards-page section {
  min-height: 150px; }

.mega-font-weight-bold a {
  font-weight: bold !important; }

.content ul ul {
  list-style-type: none; }

.content ul ul li:before {
  content: "–";
  /* en dash */
  position: absolute;
  margin-left: -1.1em; }

.overview-sections ul {
  list-style: none;
  margin-left: 0px; }

.overview-sections ul h4 {
  font-weight: 800;
  font-size: 18px;
  outline: none;
  color: black;
  cursor: pointer; }

.overview-sections #overview-sections-menu {
  padding: 10px; }

.overview-sections ul ul {
  list-style-type: none; }

.overview-sections ul ul li:before {
  content: initial !important;
  /* en dash */ }

.overview-sections a {
  font-weight: 700;
  color: #798365;
  transition: all linear .3s; }

.overview-sections .nav > li > ul > li > a:hover {
  border-radius: 4px;
  text-decoration: none;
  background-color: #eee; }

.overview-sections .nav-pills > li > ul > li.active > a {
  border-radius: 4px;
  color: #fff;
  background-color: #798365; }

.padded-list li {
  margin: 5px; }

.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1;
  /* ie 6/7 */ }

/** Select2 custom styles **/
.select2 {
  min-width: 125px;
  text-align: left; }

.select2-container--default .select2-selection--single {
  background: none !important;
  border: 0px !important; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #c5c5c5 !important; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  padding-left: 30px;
  border-left: 1px solid #c5c5c5; }

/** Font Awesome **/
.fa-search {
  color: #c7c7c7;
  font-size: 18px !important; }

/** TO REVISE **/
.breadcrumbs {
  font-size: 17px;
  padding-top: 50px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000; }
  .breadcrumbs a {
    color: #1585c6; }

.colour-divider {
  height: 3px;
  width: 100%;
  padding-right: 0px; }
  .colour-divider div {
    height: 3px;
    float: left; }
  .colour-divider .one {
    background: #335686;
    width: 38%; }
  .colour-divider .two {
    background: #1585c6;
    width: 27%; }
  .colour-divider .three {
    background: #434d37;
    width: 35%; }

.quote-bg {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -3;
  height: 165px;
  width: 100%; }

.quote-content p {
  text-align: center;
  font-weight: 200;
  font-size: 39px;
  color: #1585c6;
  margin-bottom: 1em; }

.quote-source {
  color: #335686;
  font-weight: 600; }

.heading-special {
  border-left: 8px solid white;
  padding: 30px 0px 30px 30px; }

.privacy-container p {
  padding-left: 80px; }

.privacy-container ol {
  padding-left: 40px; }

section.content {
  margin-top: 70px;
  margin-bottom: 70px; }

.page-template-page-client .banner-container {
  height: 76px; }

.page-template-default .banner-container {
  height: 76px; }

.post-type-archive-product .banner-container {
  height: 76px; }

.single-person .banner-container {
  height: 76px; }

.single-testimonial .banner-container {
  height: 76px; }

.footer-num {
  color: #000;
  font-weight: bold; }

.single-person-image {
  margin-top: 25px; }

.error404 .banner-container {
  height: 76px; }

.error404 section {
  margin-top: 0px; }

.error404 .page-header {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 42px;
  margin-top: 0px; }
  .error404 .page-header span {
    font-weight: 200;
    font-size: 120px;
    color: #1585c6; }

.error404 .page-title {
  display: inline-block;
  padding: 20px 45px;
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 42px;
  border-left: 8px solid #335686;
  border-right: 8px solid #335686; }

.error404 .page-content h3 {
  color: #9e9d9d;
  font-family: 'Kanit', sans-serif;
  font-size: 33px; }

th, thead td {
  padding-left: 5px;
  font-weight: 200;
  background: #335686;
  color: #fff;
  text-align: center;
  border: none; }

td {
  padding-left: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 400;
  font-size: 14px;
  border: 1px solid #f4f4f4; }

.ie8 {
  text-align: center;
  background: #00caff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }
  .ie8 h1 {
    margin-top: 10%;
    font-size: 30px !important;
    font-family: 'Open Sans', sans-serif !important;
    color: #fff !important; }
    .ie8 h1 a {
      color: #335686; }

.menu-toggle {
  background: none; }
  .menu-toggle i {
    font-size: 28px;
    font-weight: 200; }

.tax-glyph {
  position: absolute;
  top: 100px;
  right: 100px; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  background: none;
  transition: all linear .3s;
  /** color: $rapidm_blue; **/ }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
  font-size: 11px; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  font-size: 13px; }

.mega-sub-menu .mega-sub-menu {
  margin-top: 10px !important; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
  color: #65c5ff; }

/** Owl Styling temp **/
.carousel-fade .carousel-inner .item {
  transition-property: opacity; }

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0; }

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1; }

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0); }

.carousel-fade .carousel-control {
  z-index: 2; }

/** Owl Overrides */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #335686; }

#map {
  height: 450px; }

.margin-top-25 {
  margin-top: 25px; }

img.alignright {
  float: right;
  margin: 0 0 1em 1em; }

img.alignleft {
  float: left;
  margin: 0 1em 1em 0; }

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.alignright {
  float: right; }

.alignleft {
  float: left; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

html,
body,
.carousel,
.carousel-inner,
.carousel-inner .item {
  height: 100%; }

#product-carousel {
  height: 330px;
  margin-top: -208px;
  width: 50%;
  position: absolute;
  right: 10%; }
  #product-carousel .carousel-control {
    display: none; }
  #product-carousel .carousel-indicators {
    display: none; }
  #product-carousel img {
    margin: auto;
    max-width: 40%;
    float: right; }

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px; }

.col-xs-15 {
  width: 20%;
  float: left; }

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left; } }

@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left; } }

@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left; } }

/** Vis styling **/
.vis-group:nth-child(1) {
  background: #00b4e8; }

.vis-group:nth-child(2) {
  background: #5aa8d8; }

.vis-group:nth-child(3) {
  background: #5d8cb7; }

.vis-group:nth-child(4) {
  background: #586b95; }

.vis-item {
  background: none;
  border: 0px;
  border-color: #bfbfbf;
  color: #fff;
  z-index: 999; }

.map-section .google-visualization-tooltip {
  width: 130px !important; }

.map-section .google-visualization-tooltip-item:last-child {
  display: none; }

.trpd {
  border-bottom: 141px solid #1585c6;
  border-left: 55vw solid transparent;
  border-right: 40vw solid transparent;
  height: 0;
  width: 100px;
  position: absolute;
  bottom: 0; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
  font-size: 12px !important;
  padding: 2px 4px !important; }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  font-size: 14px !important; }

/* 
New Family Table Styling
*/
.comparison-table {
  width: 80%;
  margin: auto;
  /* Zebra striping */ }
  .comparison-table h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1b90cc; }
  .comparison-table .fa {
    font-size: 8px;
    color: #717171;
    padding-left: 2px; }
  .comparison-table thead {
    display: table-row-group; }
  .comparison-table thead td {
    position: -webkit-sticky;
    z-index: 10;
    position: sticky;
    top: 0;
    border: 0px;
    font-weight: 500; }
  .comparison-table table {
    box-sizing: border-box;
    width: 100%;
    border-collapse: collapse; }
  .comparison-table tr:nth-of-type(even) {
    background: #eee; }
  .comparison-table tr:hover {
    background-color: #33bef2;
    transition: background 0.5s ease; }
  .comparison-table .products-row {
    background: none !important;
    text-align: center; }
    .comparison-table .products-row td {
      border: 0px; }
      .comparison-table .products-row td:first-child {
        text-align: left; }
  .comparison-table th {
    background: #333;
    color: white;
    font-weight: bold; }
  .comparison-table td, .comparison-table th {
    font-size: 12px;
    padding: 6px;
    border: 1px solid #ccc;
    min-width: 100px; }
  .comparison-table tr td:first-child {
    background: white;
    width: 30%;
    border: 0px; }
  .comparison-table td:hover {
    cursor: help; }
  .comparison-table .opt {
    border: 1px solid #424242;
    padding: 0px;
    padding-left: 3px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 50%; }

.standards-table .comparison-table tr {
  background: #fff; }

.standards-table .comparison-table tr td:first-child {
  width: initial !important;
  max-width: 250px; }

.standards-table .comparison-table td, .standards-table .comparison-table th {
  min-width: initial !important;
  max-width: 400px; }

.standards-table .comparison-table {
  width: 100%; }

.standards-table .comparison-table .standard-strong {
  background: #ddd; }

.mega-rm.menu-hover {
  background: #323947 !important; }

.mega-rc.menu-hover {
  background: #1784c4 !important; }

.mega-rt.menu-hover {
  background: #424b35 !important; }

.mega-rw.menu-hover {
  background: #b8aa9b !important; }

.mega-ra.menu-hover {
  background: #3e3e3e !important; }

.mega-tc.menu-hover {
  background: #863902 !important; }

.tax-family .products-row td img {
  max-width: 100px !important;
  height: 100px;
  object-fit: contain; }

.home .products-row td img {
  /**max-width: 90px !important;**/
  padding: 25px !important; }

.software-box-image {
  width: 58px; }

.icon-seperator {
  float: left;
  border-left: 1px solid #fff;
  padding-left: 13px;
  margin-right: 3px; }

.family-featured-icons-container .icon-seperator:first-of-type {
  border-left: 0px;
  padding-left: 0px; }

.silo-featured-icons-container .icon-seperator:first-of-type {
  border-left: 0px;
  padding-left: 0px; }

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

.modal-body {
  background: #3f3f3f; }

.modal-body .single-page-icon-container {
  background: #fff;
  margin-top: 5px;
  padding: 15px; }

.mejs-container {
  width: 280px !important; }

.top-bar {
  background: #3f3f3f;
  min-height: 50px;
  color: #c5c5c5;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; }

.top-bar-menu {
  float: right;
  margin-top: 16px;
  margin-right: 45px; }

#language-selector {
  float: right;
  width: 175px;
  padding-left: 40px;
  margin-top: 12px;
  text-align: right;
  transition: background 0.3s; }
  #language-selector select {
    margin-left: 20px; }

.eng-flag {
  background: url("images/flag-eng.jpg") no-repeat center center;
  background-size: contain;
  display: inline-block;
  min-width: 30px;
  min-height: 19px;
  margin-bottom: -3px; }

.esp-flag {
  background: url("images/flag-esp.jpg") no-repeat left center;
  display: inline-block; }

.por-flag {
  background: url("images/flag-por.jpg") no-repeat left center;
  display: inline-block; }

.fr-flag {
  background: url("images/flag-fr.jpg") no-repeat left center;
  display: inline-block; }

.site-header {
  background: none;
  padding-top: 15px;
  padding-bottom: 15px; }

.footer-header {
  background: #f4f4f4;
  min-height: 65px; }

.site-footer {
  background: #212121;
  border-top: 1px solid #f3f3f3;
  color: #f4f4f4; }

.site-main h1 {
  font-size: 37px;
  font-weight: 300;
  text-transform: initial;
  font-family: 'Kanit';
  color: #000; }

.pullquote {
  position: relative; }
  .pullquote img {
    margin-top: 0px; }

.footer-form {
  background: #ebebeb; }
  .footer-form h3 {
    color: #335686;
    text-transform: uppercase;
    font-family: 'Kanit';
    font-weight: 200; }

.footer-menu li {
  list-style: none;
  float: left;
  margin-left: 20px;
  width: 200px; }
  .footer-menu li a {
    text-transform: uppercase;
    color: #f4f4f4;
    font-size: 15px;
    font-weight: 300; }

.footer-menu .menu-item-has-children {
  width: 600px; }

.footer-menu .sub-menu {
  margin-left: 0px;
  margin-top: 30px;
  padding: 0px; }
  .footer-menu .sub-menu li {
    width: 50%;
    margin-left: 0px; }
    .footer-menu .sub-menu li a {
      font-size: 12px;
      text-transform: initial; }

.header-container {
  background: none !important;
  position: relative;
  z-index: 999; }

.content {
  width: 90%;
  margin: auto; }

.site-content {
  margin: auto;
  padding-bottom: 30px; }

.logo {
  background: url("images/logo_slogan.png");
  background-size: 210px 54px;
  width: 210px;
  height: 54px;
  float: left; }

.site-branding {
  float: left; }

.main-navigation {
  float: left;
  clear: none;
  width: 60%;
  margin-left: 70px;
  margin-top: 5px; }

.search-container {
  display: inline-block;
  float: right; }

.banner-container {
  position: relative;
  background: url("images/temp-banner.jpg") no-repeat center center;
  width: 100%;
  height: 460px;
  background-size: cover;
  color: #fff;
  margin-top: -89px; }
  .banner-container .silo-cta-btns {
    left: 70%;
    position: absolute;
    bottom: 0; }

.home .banner-container {
  background: url("images/temp-banner.jpg") no-repeat center center;
  width: 100%;
  height: 600px;
  background-size: cover;
  color: #fff;
  margin-top: -89px; }

.banner-container .tagline-container {
  padding-left: 5%;
  padding-right: 20%; }

.home .banner-container .tagline-container {
  padding-top: 200px;
  padding-left: 200px;
  padding-right: 0px; }

.banner-container .title-container {
  padding-left: 5%;
  padding-top: 150px; }

#top-bar-search {
  margin-left: -50px;
  background: none;
  padding-top: 0px;
  padding-bottom: 5px; }

.banner-min {
  height: 76px; }

.search-results .banner-container {
  height: 76px; }

.search-no-results .banner-container {
  height: 76px; }

.single-career .banner-container {
  height: 76px; }

/* Page Sections */
section {
  min-height: 200px;
  margin: 70px 0px; }
  section:after {
    clear: both; }

.cta-section {
  width: 50%;
  margin: auto;
  margin-top: 70px;
  min-height: 50px; }

.copyright-container {
  padding-bottom: 25px;
  padding-top: 15px; }

.footer-number {
  padding-top: 7px; }

.footer-logo {
  margin-top: 15px;
  background: url("images/logo.png");
  background-size: 170px 34px;
  width: 170px;
  height: 34px;
  float: left; }

div.wpcf7-validation-errors, div.wpcf7-spam-blocked, div.wpcf7-mail-sent-ng {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 75px;
  color: #434343;
  border: 2px solid #1585c6; }

.recaptcha {
  margin-top: 25px;
  margin-bottom: 20px; }

.tooltip {
  z-index: 9999 !important; }

.site-info {
  width: 95%;
  margin: auto; }

.top-block-container {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px; }
  .top-block-container .description {
    color: #fff;
    margin-bottom: -10px;
    font-weight: 200;
    text-align: center; }
  .top-block-container .new-silo-block {
    margin-bottom: 0px;
    padding: 20px; }
    .top-block-container .new-silo-block .hero-image {
      height: 390px;
      background-position: bottom !important; }
    .top-block-container .new-silo-block .silo-content {
      box-shadow: none; }
      .top-block-container .new-silo-block .silo-content section {
        min-height: initial; }

.std-tagline-container {
  padding-top: 30px;
  background: #535353;
  text-align: center;
  color: #fff; }
  .std-tagline-container p {
    color: #fff; }

.toggle-block-container {
  color: #fff;
  text-align: center;
  font-size: 24px;
  width: 390px;
  margin: auto;
  cursor: pointer;
  margin-top: 25px; }
  .toggle-block-container .toggle-text {
    display: inline-block;
    text-transform: uppercase;
    vertical-align: top; }
  .toggle-block-container .up-arrow {
    background: url("images/up.png");
    width: 38px;
    height: 37px;
    display: inline-block; }
  .toggle-block-container .down-arrow {
    background: url("images/down.png");
    width: 38px;
    height: 37px;
    display: inline-block; }

.family-table-container {
  margin-top: 50px; }

.use-cases-and-applications-container {
  box-shadow: 0px 3px 10px #9f9f9f;
  padding: 25px 18px 10px 18px;
  background: #f3f3f3; }

.division-gallery-container {
  padding: 25px 18px 10px 18px; }
  .division-gallery-container h4 {
    padding-left: 16px; }

.brochure-download {
  text-transform: uppercase;
  padding: 10px;
  float: right;
  background: #1585c6;
  box-shadow: 0px 3px 10px #9f9f9f;
  margin-top: 28px;
  margin-bottom: 20px;
  margin-right: 20px; }
  .brochure-download a {
    color: #fff;
    font-size: 12px; }

.brochure-download-language {
  width: 45px;
  height: 30px;
  text-transform: uppercase;
  padding: 10px;
  float: right;
  margin-top: 32px; }
  .brochure-download-language a {
    color: #fff;
    font-size: 12px; }

.buying-guide-download {
  text-transform: uppercase;
  padding: 10px;
  float: right;
  background: #ffae19;
  background-image: linear-gradient(to bottom right, #f9ab00, #e37400);
  box-shadow: 0px 3px 10px #9f9f9f;
  margin-top: 28px;
  margin-bottom: 20px;
  margin-left: 20px; }
  .buying-guide-download a {
    color: #fff;
    font-size: 12px; }

.product-summary-container {
  margin-bottom: 35px; }
  .product-summary-container h5 {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 25px; }
  .product-summary-container .product-summary-image {
    text-align: center; }
    .product-summary-container .product-summary-image img {
      max-width: 100%; }
  .product-summary-container .product-summary p {
    text-align: justify; }

.iso {
  color: white;
  line-height: 2.5;
  font-size: 11px;
  padding-left: 80px;
  margin-top: 10px;
  background: url(images/ISO9001_2.png) no-repeat left center;
  background-size: contain; }

.single-page-icon-container {
  background: #fff;
  margin-top: 5px; }

.single-page-icon-container .icon-seperator {
  border-left: 1px solid black;
  border-right: 0px; }

.single-page-icon-container .icon-seperator:first-of-type {
  border-left: 0px;
  padding-left: 0px; }

.loop-icon-container {
  text-align: left; }

.loop-icon-container .single-page-icon-container {
  padding: 0px; }

.loop-icon-container .feature-icon {
  background-size: contain !important;
  width: 31px !important;
  height: 31px !important; }

.silo-title-container a {
  pointer-events: all; }

.overview-sections .tab-content {
  padding-left: 25px; }

.overview-sections .tab-content div {
  outline: none !important; }

.overview-sections .tab-content h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  color: #000; }

.overview-sections .tab-content .overview-question {
  font-size: 24px;
  padding: 15px 5px 15px 40px;
  color: #806000;
  border-top: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  background: url("images/q_new.png") left center no-repeat;
  line-height: 1.4;
  min-height: 85px; }

.overview-sections .tab-content .overview-answer {
  font-size: 24px;
  padding: 15px 40px 15px 5px;
  color: #000;
  border-top: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  background: url("images/a_new.png") right center no-repeat;
  text-align: right;
  line-height: 1.4;
  min-height: 85px; }

.overview-sections .tab-content .other {
  margin-top: 65px; }

.overview-sections .nav-pills > ul > li > a {
  border-radius: 4px; }

.overview-sections .nav > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: 14px; }

.nato_number_container {
  padding: 5px;
  border: 2px solid #f0f0f0;
  width: 75%;
  margin-bottom: 30px; }

.nato-logo {
  height: 40px;
  background: url("images/NATO_OTAN_landscape_logo.png") no-repeat;
  background-size: contain; }

.nato-number {
  margin-top: 8px; }

.buying-guide-intro-text {
  width: 50%;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px; }

.buying_guide_cover_page img {
  width: 50%; }

#buying-guide-menu {
  background: #f8f9fa;
  margin: 0px;
  padding: 10px; }
  #buying-guide-menu a {
    color: #666; }
    #buying-guide-menu a.active {
      color: blue; }
  #buying-guide-menu h5 {
    font-size: 16px;
    font-weight: 400; }

.btn, .button, .wpcf7-submit {
  background: #00aeef;
  color: #fff;
  border: 0px;
  border-radius: 0px;
  text-shadow: none;
  box-shadow: none; }
  .btn:visited, .button:visited, .wpcf7-submit:visited {
    border: 0px;
    color: #fff !important; }
  .btn:hover, .button:hover, .wpcf7-submit:hover {
    border: 0px;
    color: #fff !important; }

.clear-btn {
  font-size: 12px;
  color: #1585c6;
  text-transform: uppercase; }

.clear-btn-lg {
  font-size: 16px;
  color: #1585c6;
  text-transform: uppercase; }

.btn_left {
  float: left; }

.btn-right {
  float: right; }

.footer-form {
  padding: 10px 40px 10px 30px;
  margin-top: 20px; }
  .footer-form p {
    margin-bottom: 0.5em; }
  .footer-form input {
    float: right;
    width: 70% !important; }
  .footer-form textarea {
    float: right;
    width: 70%;
    height: 120px;
    margin-top: 10px; }
  .footer-form input[type="submit"] {
    width: initial !important; }
  .footer-form label {
    width: 100%;
    font-weight: 400;
    font-size: 13px; }
  .footer-form .wpcf7 {
    background: none;
    padding: 10px 0px !important; }

.wpcf7-file {
  width: 241px;
  padding-left: 25px;
  padding-top: 5px;
  text-indent: -96px;
  height: 35px;
  background: url(images/upload.jpg) no-repeat right;
  border: 0;
  padding: 6px 0 0 0px;
  cursor: pointer; }

.modal-body .wpcf7-form {
  padding: 10px 40px 10px 30px;
  margin-top: 20px; }
  .modal-body .wpcf7-form p {
    margin-bottom: 0.5em; }
  .modal-body .wpcf7-form .wpcf7-submit {
    width: initial; }
  .modal-body .wpcf7-form input {
    width: 70%; }
  .modal-body .wpcf7-form input[type="radio"] {
    width: initial; }  
  .modal-body .wpcf7-form textarea {
    height: 120px;
    margin-top: 10px; }
  .modal-body .wpcf7-form label {
    width: 100%;
    font-weight: 400;
    font-size: 13px; }
  .modal-body .wpcf7-form .wpcf7 {
    background: none; }

.modal-body .wpcf7-form .wpcf7-list-item-label {
    /**margin-left: initial;**/
  }    

.fa-angle-left, .fa-angle-right {
  font-size: 60px !important;
  color: #d9d8d7; }

#testimonial-carousel .fa-angle-left, #testimonial-carousel .fa-angle-right {
  color: #FFF; }

.owl-next, .owl-prev {
  background: none !important; }

.owl-next {
  position: absolute;
  right: -40px;
  bottom: 50%; }

.owl-prev {
  position: absolute;
  left: -40px;
  bottom: 50%; }

input[type="radio"] {
  opacity: 0; }

input[type="radio"] + span::before {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer; }

input[type="radio"] + span::before {
  content: '';
  background: url("images/checkbox.png") no-repeat center center; }

input[type="radio"]:checked + span::before {
  content: '';
  background: url("images/checked_r.png") no-repeat center center; }

.wpcf7-radio .wpcf7-list-item {
  margin: 0px 20px 0px 0px; }

.wpcf7-list-item-label {
  margin-left: -20px; }

.footer-form .wpcf7-list-item-label {
  margin-left: initial; }

.cta-section .btn {
  min-width: 200px;
  padding: 16px;
  text-transform: uppercase; }

.pricing-btn {
  margin-top: 50px;
  font-size: 20px; }

#search {
  width: 200px;
  -webkit-transition: width 0.5s;
  /* Safari */
  transition: width 0.5s; }

#search:focus {
  width: 250px; }

.back-top-btn {
  display: none;
  color: #fff;
  cursor: pointer;
  line-height: 42px;
  text-align: center;
  font-size: 30px;
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  right: 20px;
  bottom: 20%;
  background: black;
  opacity: 0.6; }

.mega-rm-icon-btn, .mega-rc-icon-btn, .mega-rt-icon-btn, .mega-rw-icon-btn, .mega-ra-icon-btn, .mega-tc-icon-btn {
  cursor: pointer !important; }

.feature-icon {
  float: left;
  margin-right: 13px;
  margin-bottom: 6px;
  pointer-events: all; }

.silo-cta-btns {
  text-align: left;
  margin-bottom: 20px; }
  .silo-cta-btns a {
    color: #fff; }
  .silo-cta-btns .btn {
    padding: 6px 25px;
    font-weight: 600;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    transition: background-color 0.4s ease; }
  .silo-cta-btns .btn:visited {
    color: #fff !important; }
  .silo-cta-btns .btn:hover {
    color: #fff !important;
    background: #1885c5; }

.feature-mil-std-icon {
  background: url("images/STD.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-ale-icon {
  background: url("images/ALE.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-arq-icon {
  background: url("images/ARQ.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-cd-icon {
  background: url("images/CD - 2.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-cm-icon {
  background: url("images/CM - 2.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-dv-icon {
  background: url("images/SDV.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-e-icon {
  background: url("images/E.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-fw-icon {
  background: url("images/FW.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-mdm-icon {
  background: url("images/MDM.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-email-icon {
  background: url("images/EMAIL.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-chat-icon {
  background: url("images/CHAT.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-sms-icon {
  background: url("images/SMS.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-stanag-icon {
  background: url("images/STANAG.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-acp-icon {
  background: url("images/ACP.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-int-icon {
  background: url("images/INTEGRATION.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-tc-icon {
  background: url("images/TC.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-sup-icon {
  background: url("images/support.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-19-icon {
  background: url("images/19inch.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-2g-icon {
  background: url("images/2G.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-3g-icon {
  background: url("images/3G.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-4g-icon {
  background: url("images/4G.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-pc-icon {
  background: url("images/PC.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-pos-icon {
  background: url("images/POS.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.feature-c2-icon {
  background: url("images/C2.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-mil-std-icon {
  background: url("images/alt/STD.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-ale-icon {
  background: url("images/alt/ALE.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-arq-icon {
  background: url("images/alt/ARQ.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-cd-icon {
  background: url("images/alt/CD - 2.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-cm-icon {
  background: url("images/alt/CM - 2.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-dv-icon {
  background: url("images/alt/SDV.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-e-icon {
  background: url("images/alt/E.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-fw-icon {
  background: url("images/alt/FW.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-mdm-icon {
  background: url("images/alt/MDM.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-email-icon {
  background: url("images/alt/EMAIL.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-chat-icon {
  background: url("images/alt/CHAT.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-sms-icon {
  background: url("images/alt/SMS.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-stanag-icon {
  background: url("images/alt/STANAG.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-acp-icon {
  background: url("images/alt/ACP.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-int-icon {
  background: url("images/alt/INTEGRATION.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-tc-icon {
  background: url("images/alt/TC.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-sup-icon {
  background: url("images/alt/support.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-19-icon {
  background: url("images/alt/19inch.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-2g-icon {
  background: url("images/alt/2G.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-3g-icon {
  background: url("images/alt/3G.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-4g-icon {
  background: url("images/alt/4G.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-pc-icon {
  background: url("images/alt/PC.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-pos-icon {
  background: url("images/alt/POS.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.single-page-icon-container .feature-c2-icon {
  background: url("images/alt/C2.png") no-repeat;
  background-size: 43px 43px;
  width: 43px;
  height: 43px; }

.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -ms-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }

@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8); }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05); }
  100% {
    opacity: 1;
    -moz-transform: scale(1); } }

@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.8); }
  50% {
    opacity: 1;
    -o-transform: scale(1.05); }
  100% {
    opacity: 1;
    -o-transform: scale(1); } }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8); }
  50% {
    opacity: 1;
    transform: scale(1.05); }
  100% {
    opacity: 1;
    transform: scale(1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.delay {
  -webkit-animation-delay: 0.30s;
  -moz-animation-delay: 0.30s;
  -o-animation-delay: 0.30s;
  animation-delay: 0.30s; }

.delay-three {
  -webkit-animation-delay: 0.60s;
  -moz-animation-delay: 0.60s;
  -o-animation-delay: 0.60s;
  animation-delay: 0.60s; }

.delay-two {
  -webkit-animation-delay: 1.0s;
  -moz-animation-delay: 1.0s;
  -o-animation-delay: 1.0s;
  animation-delay: 1.0s; }

.delay-one {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px); } }

@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px); } }

@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-20px); } }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.animated.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut; }

.animated.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

.product-loop-image img {
  transform: scale(0.95);
  transition: all .2s ease-in-out; }

.product-loop-image img:hover {
  transform: scale(1); }

/* Page specific */
/** Sections **/
.home-silo-section {
  padding-top: 65px; }

.home-testimonial-section {
  /**min-height:900px;**/
  background-size: cover !important;
  background-position: left center !important;
  color: #fff;
  padding: 50px 40px; }
  .home-testimonial-section .heading-special {
    width: 60%; }
  .home-testimonial-section .owl-carousel .item {
    padding: 40px 20px; }
  .home-testimonial-section p {
    color: #fff;
    font-weight: 400; }
  .home-testimonial-section .testimonial-footer {
    position: absolute;
    bottom: 0px; }

.home-services-section {
  background: #f6f7f7;
  margin-top: 150px !important;
  margin-bottom: 150px !important; }
  .home-services-section h2 {
    font-size: 37px;
    font-weight: 300;
    text-transform: initial;
    font-family: 'Kanit';
    color: #000; }
  .home-services-section .col-md-5 img {
    position: absolute;
    right: -10%; }
  .home-services-section .image-right-pull {
    min-height: 400px;
    margin-bottom: 100px; }

.featured-products-section h2 {
  text-align: center;
  font-size: 37px;
  font-weight: 300;
  text-transform: initial;
  font-family: 'Kanit';
  color: #000; }

.home-families-section {
  background: #f7f8f8; }
  .home-families-section h2 {
    text-align: center;
    margin-top: 75px;
    font-size: 37px;
    font-weight: 300;
    text-transform: initial;
    font-family: 'Kanit';
    color: #000; }
  .home-families-section p {
    font-weight: 400;
    font-size: 13px; }

/** Blocks **/
.silo-block {
  background: #f7f8f8;
  padding: 15px;
  box-shadow: 6px 6px 3px #e4e3e3; }
  .silo-block h3 {
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    font-size: 20px;
    min-height: 50px;
    padding-right: 15%; }
  .silo-block img {
    display: block;
    margin: auto;
    padding-top: 20px; }
  .silo-block p {
    padding: 20px 10px 0px;
    min-height: 272px; }

.cat-indicator-container {
  position: absolute;
  right: 10px;
  top: 10px; }
  .cat-indicator-container .cat-indicator {
    margin-right: 5px;
    float: right;
    text-align: center; }

.tactical-and-joint-communications .cat-indicator, .tactical-and-joint-communications.cat-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #434d37; }
  .tactical-and-joint-communications .cat-indicator:after, .tactical-and-joint-communications.cat-indicator:after {
    content: "T";
    cursor: pointer;
    color: #fff;
    display: block;
    margin-top: -2px; }

.naval-and-strategic-communications .cat-indicator, .naval-and-strategic-communications.cat-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #335686; }
  .naval-and-strategic-communications .cat-indicator:after, .naval-and-strategic-communications.cat-indicator:after {
    content: "N";
    cursor: pointer;
    color: #fff;
    display: block;
    margin-top: -2px; }

.governmental-communications .cat-indicator, .governmental-communications.cat-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #404141; }
  .governmental-communications .cat-indicator:after, .governmental-communications.cat-indicator:after {
    content: "G";
    cursor: pointer;
    color: #fff;
    display: block;
    margin-top: -2px; }

.embedded-hf-vhf-modem-modules .cat-indicator, .embedded-hf-vhf-modem-modules.cat-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #cd5700; }
  .embedded-hf-vhf-modem-modules .cat-indicator:after, .embedded-hf-vhf-modem-modules.cat-indicator:after {
    content: "E";
    cursor: pointer;
    color: #fff;
    display: block;
    margin-top: -2px; }

.family-block {
  margin-top: 15px; }

.featured-product-block {
  padding: 30px; }
  .featured-product-block h3 {
    font-family: 'Kanit';
    color: #335686;
    font-size: 24px;
    text-transform: uppercase; }
  .featured-product-block .product-image {
    min-height: 100px; }
    .featured-product-block .product-image img {
      width: initial !important;
      max-height: 110px;
      margin: auto;
      margin-top: 20px; }
  .featured-product-block p {
    font-size: 13px; }

#featured-product-carousel {
  width: 60%;
  margin: auto; }

.family-block a {
  color: #000; }

#testimonial-carousel .owl-stage {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex; }
  #testimonial-carousel .owl-stage .owl-item {
    flex: 1; }

.new-silo-block {
  width: 90%;
  margin: auto;
  margin-bottom: 150px;
  background: #fff;
  position: relative;
  box-shadow: 0px 3px 10px #ddd;
  overflow: hidden; }
  .new-silo-block .hero-image {
    height: 520px;
    background-repeat: no-repeat !important;
    background-position: bottom center !important;
    background-size: cover !important;
    position: relative;
    transform: scale(1.1);
    transition: ease .7s; }
    .new-silo-block .hero-image.banner-hover {
      transform: scale(1);
      transition: all .7s; }
  .new-silo-block .header {
    top: 360px;
    position: absolute;
    width: 100%;
    pointer-events: none; }
    .new-silo-block .header .silo-cta-btns {
      pointer-events: all; }
    .new-silo-block .header h4 {
      font-size: 14px;
      font-weight: 400;
      color: #fff; }
  .new-silo-block h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200;
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px; }
  .new-silo-block .silo-featured-icons-container {
    margin-top: 22px; }
  .new-silo-block .silo-family-icons-container {
    margin-top: 20px; }
    .new-silo-block .silo-family-icons-container .ass-family {
      float: left;
      margin-right: 13px;
      pointer-events: all; }
      .new-silo-block .silo-family-icons-container .ass-family img {
        width: 40px; }
  .new-silo-block .silo-content {
    padding: 15px 0px 15px 0px;
    background: #fff;
    position: relative; }
    .new-silo-block .silo-content .silo-description {
      padding: 20px;
      padding-right: 80px; }
      .new-silo-block .silo-content .silo-description p {
        color: #000;
        font-size: 14px; }
    .new-silo-block .silo-content .silo-logo {
      margin-top: 24px;
      text-align: center; }
      .new-silo-block .silo-content .silo-logo img {
        width: 80px; }
    .new-silo-block .silo-content .silo-image {
      border-left: 1px solid #000; }
      .new-silo-block .silo-content .silo-image img {
        padding: 15px;
        max-width: 300px;
        float: right; }

.single-overview-page .new-silo-block {
  width: 98%; }
  .single-overview-page .new-silo-block .hero-image {
    transform: none;
    height: 550px; }
  .single-overview-page .new-silo-block .header {
    top: 400px; }

.new-family-block {
  width: 90%;
  margin: auto;
  margin-bottom: 68px;
  background: #fff; }
  .new-family-block .top-bar {
    min-height: 115px;
    background: #cdcdcd;
    position: relative; }
    .new-family-block .top-bar .header {
      width: 100%; }
    .new-family-block .top-bar h2 {
      font-family: 'Open Sans', sans-serif;
      font-weight: 200;
      color: #000;
      font-size: 36px;
      margin-bottom: 40px; }
    .new-family-block .top-bar h4 {
      font-size: 14px;
      font-weight: 600;
      color: #000; }
    .new-family-block .top-bar .family-featured-icons-container {
      margin-top: 15px; }
    .new-family-block .top-bar .family-silo-icons-container {
      margin-top: 15px; }
      .new-family-block .top-bar .family-silo-icons-container .ass-family {
        float: left;
        margin-right: 13px;
        pointer-events: all; }
        .new-family-block .top-bar .family-silo-icons-container .ass-family img {
          width: 40px; }
  .new-family-block .family-content {
    box-shadow: 0px 3px 10px #ddd;
    padding: 15px 0px 15px 0px; }
    .new-family-block .family-content .family-description {
      padding: 20px;
      padding-right: 80px; }
      .new-family-block .family-content .family-description p {
        color: #000;
        font-size: 14px; }
      .new-family-block .family-content .family-description h5 {
        font-weight: 500;
        font-size: 22px;
        margin-bottom: 27px;
        color: #000; }
    .new-family-block .family-content .family-logo {
      margin-top: 24px; }
      .new-family-block .family-content .family-logo img {
        width: 80px; }
    .new-family-block .family-content .family-image {
      border-left: 1px solid #000; }
      .new-family-block .family-content .family-image img {
        padding: 30px; }
    .new-family-block .family-content .family-cta-btns {
      text-align: center;
      margin-top: 40px; }
      .new-family-block .family-content .family-cta-btns .btn {
        margin-left: 15px;
        padding: 6px 25px;
        background: none;
        border: 1px solid #000;
        color: #000;
        border-radius: 10px;
        transition: background-color 0.4s ease; }
      .new-family-block .family-content .family-cta-btns .btn:visited {
        color: #000 !important; }
      .new-family-block .family-content .family-cta-btns .btn:hover {
        color: #000;
        background: #1885c5; }

.down-arrow {
  width: 85px;
  height: 38px;
  background: url("images/down-arrow.png");
  margin: auto; }

.blocks-intro-section {
  background: #535353;
  color: #fff;
  text-align: center; }
  .blocks-intro-section h2 {
    font-family: 'Open Sans', sans-serif; }
  .blocks-intro-section .content {
    padding-top: 25px;
    padding-bottom: 25px; }
  .blocks-intro-section p {
    font-size: 14px;
    color: #fff;
    width: 60%;
    margin: auto;
    padding-top: 48px;
    padding-bottom: 30px; }
  .blocks-intro-section .btn {
    padding: 6px 25px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    transition: background-color 0.4s ease; }
  .blocks-intro-section .btn:visited {
    color: #fff !important; }
  .blocks-intro-section .btn:hover {
    color: #fff;
    background: #1885c5; }

.welcome-intro-section h1 {
  text-transform: uppercase;
  font-size: 48px; }
  .welcome-intro-section h1 span {
    color: #335686; }

.welcome-intro-section .intro-copy {
  margin-top: 90px;
  font-size: 19px;
}

.welcome-intro-section .intro-copy .content {
  width: 100%;
}

.welcome-intro-section .intro-copy p {
  color: #000000;
}

.why-hf-section {
  background: #f4f4f4;
  padding: 30px 0px;
  margin-top:30px;
  color: #272727;
}

.why-hf-section h2 {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 28px;
  border-left: 5px solid #1e73be;
  padding: 20px;
}

.why-hf-section p {
  padding-left: 25px;
}

.heading-special2 {
  border-left: 8px solid #335686;
  padding: 15px 0px 20px 15px; }
  .heading-special2 h2 {
    font-family: 'Kanit';
    text-transform: uppercase;
    font-weight: 300;
    color: #000; }

.link-section h3 {
  color: #335686;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 31px; }

.link-section h4 {
  color: #335686;
  font-size: 12px;
  font-weight: 600;
  min-height: 24px; }

.link-section p {
  font-size: 12px;
  min-height: 90px; }

.link-container {
  padding: 25px; }

.management-team-section {
  padding: 25px; }
  .management-team-section h2 {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-weight: 300; }

.key-contacts-section {
  background: #ebebeb;
  padding: 25px; }
  .key-contacts-section h2 {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-weight: 300; }

.values-section {
  background: #1585c6; }
  .values-section h2 {
    color: #fff;
    font-size: 50px; }
  .values-section .values-content {
    padding-top: 30px;
    padding-bottom: 30px; }
    .values-section .values-content p {
      color: #fff;
      font-size: 33px;
      font-weight: 100; }

.capacity-section {
  background: #1585c6; }
  .capacity-section h2 {
    color: #fff;
    font-size: 50px; }
  .capacity-section .capacity-content {
    padding-top: 30px;
    padding-bottom: 30px; }
    .capacity-section .capacity-content p {
      padding: 20px 0px 0px 50px;
      color: #fff;
      font-size: 33px;
      font-weight: 100; }

.link-logo-container {
  min-height: 100px; }

.link-logo {
  max-width: 200px;
  margin-top: 10px;
  margin-bottom: 15px; }

.history-section h2 {
  font-size: 37px;
  font-weight: 300;
  text-transform: initial;
  font-family: 'Kanit';
  color: #000;
  margin-top: 30px;
  margin-bottom: 30px; }

.history-section p {
  margin-left: 15px; }

.global-presence-section h2 {
  font-size: 37px;
  font-weight: 300;
  text-transform: initial;
  font-family: 'Kanit';
  color: #000;
  margin-top: 30px;
  margin-bottom: 30px; }

.global-presence-section p {
  margin-left: 15px; }

.counter-section {
  background-size: cover; }

.count-circle {
  margin: auto;
  margin-top: 85px;
  margin-bottom: 40px;
  background: #1585c6;
  height: 280px;
  width: 280px;
  padding: 30px 0px;
  border-radius: 50%;
  text-align: center; }
  .count-circle h4 {
    margin-top: 30%;
    padding: 10px;
    color: #fff;
    font-weight: 200;
    font-size: 24px;
    line-height: 30px; }

.mission-section h2 {
  text-align: center;
  font-size: 37px;
  font-weight: 300;
  text-transform: initial;
  font-family: 'Kanit';
  color: #000; }

.mission-section .mission-container {
  background: #f4f4f5;
  padding: 40px; }

.mission-section .mission-header {
  width: 60%;
  margin: auto; }
  .mission-section .mission-header p {
    color: #000;
    font-size: 25px; }

.mission-section .mission-content {
  width: 60%;
  margin: auto; }
  .mission-section .mission-content h4 {
    width: 100%;
    font-size: 21px;
    color: #7e7f7f;
    border: 1px solid #7e7f7f;
    font-weight: 200;
    padding: 15px; }

.timeline-container {
  margin-top: 60px;
  margin-bottom: 60px; }

.about-menu-content {
  display: none; }

.about-menu {
  background: #000;
  color: #fff;
  position: fixed;
  left: 0;
  top: 230px;
  width: 0px;
  opacity: 0.8;
  z-index: 999; }
  .about-menu ul {
    padding: 0px;
    margin: 0px;
    list-style: none; }
    .about-menu ul li {
      width: 180px;
      padding: 5px; }
  .about-menu a {
    color: #fff;
    font-size: 12px;
    outline: none; }

#about-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 11px;
  background: #2A6A99;
  color: #fff;
  position: fixed;
  left: 0;
  top: 190px;
  width: 90px;
  height: 30px;
  line-height: 30px;
  padding-right: 5px;
  z-index: 999; }

.about-menu-content {
  width: 0px;
  background: white; }

.company-structure-content {
  background: #ebebeb;
  padding: 50px 25px;
  margin-top: 30px; }
  .company-structure-content .content {
    width: 60%;
    margin: auto; }

.structure-header {
  margin-top: 30px;
  padding: 30px 120px;
  background: #1785c6;
  text-align: center;
  font-size: 37px;
  font-weight: 200;
  color: #fff;
  text-transform: uppercase;
  min-width: 500px;
  box-shadow: 20px;
  box-shadow: 4px 4px 10px #404141; }

.structure-header.one {
  float: left; }

.structure-header.two {
  float: right; }

.structure-header.three {
  float: left; }

.repeat {
  margin-left: 200px;
  margin-top: 30px;
  background: url("images/repeat.png") no-repeat center center;
  width: 153px;
  height: 153px;
  float: left; }

.about-services-section {
  margin-top: 60px !important; }
  .about-services-section h2 {
    font-size: 33px;
    font-weight: 500;
    text-transform: initial;
    font-family: 'Kanit';
    color: #000; }
  .about-services-section .col-md-5 img {
    position: absolute;
    right: -10%; }
  .about-services-section .image-right-pull {
    min-height: 400px;
    margin-bottom: 100px; }

.careers-top-bar {
  padding-bottom: 30px; }

.careers-top-bar h4 {
  font-size:  32px;
}  

.career-nav-link {
  font-size: 18px !important;
  font-weight:  600;
}

.careers-content p {
  margin-top: 45px; }

.career-container {
  margin-top: 75px;
  margin-bottom: 30px; }
  .career-container h2 {
    font-weight: 300;
    font-size: 28px; }
  .career-container h3 {
    font-size: 24px;
    font-weight: 600; }
  .career-container h4 {
    font-size: 16px;
    font-weight: 600; }
  .career-container:focus {
    outline: none; }

.text-slider {
  margin-top: 40px; }
  .text-slider .item {
    max-width: 80%;
    margin: auto;
    text-align: center; }
  .text-slider p {
    color: #fff;
    font-size: 20px; }
  .text-slider .owl-next {
    right: 40px; }
  .text-slider .owl-prev {
    left: 40px; }
  .text-slider .owl-nav {
    margin-top: 25px !important; }

.career-apply-btn {
  margin-bottom: 15px; }

.career-block h3 {
  font-size: 24px;
  color: #1585c6;
  font-weight: 400;
  margin: 25px 0px; }

.career-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000; }

.career-block ul {
  padding: 0; }

.career-block p {
  margin-bottom: 10px; }

.career-content-section {
  margin-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px; }
  .career-content-section strong {
    color: #000; }

/*-----------------------------------------------

Product Styling - Silos and Families
See _product.scss for individual product stytling

-----------------------------------------------*/
.product-filter-container {
  float: right;
  margin-bottom: 5px; }

.product-filter {
  background: #fff;
  border: 1px solid #949594;
  color: #adadad;
  padding: 10px;
  margin: 25px 5px;
  float: left;
  cursor: pointer; }

.tax-family #all-products {
  margin-right: 5px; }

.product-filter h4 {
  cursor: initial; }

.sidebar-filter-container .product-filter {
  border: 0px;
  display: none;
  padding: 0px !important; }

.sidebar-filter-container .product-filter.active {
  display: block; }

.product-filter-container .active {
  background: #949594;
  color: #fff; }

.active.tactical-and-joint-communications {
  background: #434d37;
  color: #fff; }

.active.governmental-communications {
  background: #404141;
  color: #fff; }

.active.naval-and-strategic-communications {
  background: #335686;
  color: #fff; }

.active.embedded-hf-vhf-modem-modules {
  background: #cd5700;
  color: #fff; }

.product-filter-container .fixed-sidebar {
  width: 21% !important; }

.tax-silo .fixed-sidebar {
  width: 21% }

.fixed-sidebar {
  background: black;
  position: fixed;
  width: 21%;
  min-height: 300px;
  top: 10px; }

.fixed-sidebar-2 {
  background: #fff;
  position: fixed;
  min-height: 300px;
  top: 10px;
  z-index: 9999;
  padding: 10px; }

.overview-sections .fixed-sidebar-2 {
  max-width: 26%; }

.sidebar-filter-container {
  background: #404141; }

.sidebar-filter-container {
  padding: 8px 15px; }
  .sidebar-filter-container h3 {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 0px; }
  .sidebar-filter-container h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase; }

.sidebar-filter-container .active {
  display: block;
  float: none;
  background: none; }

.pfs {
  margin-top: 4px;
  color: #fff;
  font-size: 12px;
  padding-left: 30px;
  background: url("images/unchecked.png") no-repeat left center; }

.sub-filter-active {
  color: #fff;
  font-weight: 500;
  background: url("images/checked.png") no-repeat left center; }

#sidebar-menu {
  padding: 15px;
  background: #343b49;
  color: #d1d1d0;
  z-index: 999; }
  #sidebar-menu h3 {
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 0px; }

.sidebar-modem-menu {
  margin-left: 15px; }
  .sidebar-modem-menu #sidebar-modem-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-accessory-menu {
  margin-left: 15px; }
  .sidebar-accessory-menu #sidebar-accessory-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-controller-menu {
  margin-left: 15px; }
  .sidebar-controller-menu #sidebar-controller-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-terminals-menu {
  margin-left: 15px; }
  .sidebar-terminals-menu #sidebar-terminals-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-software-menu {
  margin-left: 15px; }
  .sidebar-software-menu #sidebar-software-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-secure-modem-menu {
  margin-left: 15px; }
  .sidebar-secure-modem-menu #sidebar-secure-modem-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-embedded-menu {
  margin-left: 15px; }
  .sidebar-embedded-menu #sidebar-embedded-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-radio-menu {
  margin-left: 15px; }
  .sidebar-radio-menu #sidebar-radio-menu-content {
    margin: 4px 0px 4px 8px; }

.sidebar-evaluation-menu {
  margin-left: 15px; }
  .sidebar-evaluation-menu #sidebar-evaluation-menu-content {
    margin: 4px 0px 4px 8px; }              

.sidebar-link {
  margin-left: 5px;
  font-size: 12px;
  font-weight: 200;
  padding: 1px; }
  .sidebar-link a {
    color: #d1d1d0; }

.sidebar-group {
  color: grey; }

.sidebar-group div {
  color: black; }

.loading {
  background: url("images/ring.gif") no-repeat;
  background-size: contain;
  width: 300px;
  height: 300px;
  margin: auto;
  display: none; }

.inactive {
  display: none; }

.product-loop-container {
  padding: 60px 0px;
  outline: none;
  position: relative; }
  .product-loop-container .view-btn {
    text-align: left; }
  .product-loop-container .cat-indicator-container {
    top: 50px; }
  .product-loop-container p {
    text-align: justify; }

/* 

Individual Silos

*/
.term-embedded-hf-vhf-modem-modules .tagline-container h1 {
  border-color: #cd5700; }

.term-tactical-and-joint-communications .tagline-container h1 {
  border-color: #434d37; }

.term-naval-and-strategic-communications .tagline-container h1 {
  border-color: #335686; }

.term-governmental-communications .tagline-container h1 {
  border-color: #404141; }

/* 

Individual Families

*/
.term-tc-family .tagline-container h1 {
  border-color: #cd5700; }

.term-rt-family .tagline-container h1 {
  border-color: #434d37; }

.term-ra-family .tagline-container h1 {
  border-color: #404141; }

.term-rm-family .tagline-container h1 {
  border-color: #335686; }

/*

Single Product

*/
.single-product .banner-container {
  height: 76px; }

.single-product .heading-special2 h2 {
  font-size: 33px; }

.product-sidebar {
  padding: 0px 0px 25px 0px; }
  .product-sidebar li {
    list-style: none;
    display: inline-block;
    padding: 10px;
    margin: 15px 0px 15px 15px; }
  .product-sidebar h4 {
    margin-left: 15px;
    font-weight: 200;
    color: #335686; }
  .product-sidebar small {
    margin-left: 15px; }
  .product-sidebar .sidebar-link-container {
    padding-top: 40px; }
    .product-sidebar .sidebar-link-container .download-link {
      margin-left: 15px; }
  .product-sidebar .sidebar-faq-cta {
    margin-top: 25px; }
    .product-sidebar .sidebar-faq-cta .btn {
      padding: 15px;
      width: 100%; }

.product-sidebar-families {
  background: #f4f4f4;
  padding: 15px; }
  .product-sidebar-families div {
    text-align: center;
    margin-bottom: 15px; }

.product-content {
  padding: 20px 20px 20px 0px; }
  .product-content table {
    /**color: #000;**/ }
  .product-content th,
  .product-content thead td {
    padding-left: 5px;
    font-weight: 200;
    background: #335686;
    color: #fff;
    text-align: center;
    border: 0px; }
  .product-content td {
    padding-left: 5px;
    font-weight: 400;
    font-size: 14px;
    border: 0px; }
  .product-content h3,
  .product-content .boldtext {
    color: #335686;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold; }
  .product-content h4 {
    font-weight: bold;
    color: #335686;
    font-size: 16px;
    margin-bottom: 10px; }
  .product-content .col-md-6 {
    padding-left: 30px;
    padding-right: 30px; }

.media-gallery-section .product-content {
  width: 60%;
  margin: auto; }

.related-products-section h3 {
  font-size: 33px;
  font-family: "Kanit";
  text-transform: initial;
  font-weight: 300;
  color: #000; }

.product-image-container img {
  max-width: 50%; }

/*

Archive Products

*/
.archive-product {
  width: 60%;
  margin: auto; }

.product-loop-image {
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  height: 400px;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 80%;
  background-size: auto; }
  .product-loop-image img {
    padding-top: 50px;
    padding-bottom: 50px; }

.tax-silo .product-loop-image,
.tax-family .product-loop-image {
  background: no-repeat center center;
  height: auto !important;
  height: initial !important;
  max-width: 80%; }
  .tax-silo .product-loop-image img,
  .tax-family .product-loop-image img {
    padding-top: 50px;
    padding-bottom: 50px; }

.product-loop-diagram {
  background: no-repeat center center;
  height: 390px; }

.tax-family .new-family-block {
  margin-top: 50px; }

.tax-family .banner-container {
  /**height: 540px;**/ }

.tax-silo .banner-container {
  height: 430px; }

.term-rm-family .banner-container {
  background: url("images/temp-banner2.jpg") no-repeat bottom center;
  background-size: cover; }

.term-tc-family .banner-container {
  background: url("images/temp-banner2.jpg") no-repeat bottom center;
  background-size: cover; }

.application-filter-h-container {
  float: right;
  color: #000; }
  .application-filter-h-container h2 {
    font-size: 20px; }

.product-button-container {
  text-align: right; }
  .product-button-container .toggle-btn {
    box-shadow: none; }
  .product-button-container .image-btn {
    outline: none;
    width: 32px;
    height: 28px;
    background: url("images/image_inactive.png") no-repeat center center; }
  .product-button-container .diagram-btn {
    outline: none;
    width: 32px;
    height: 28px;
    background: url("images/diagram_inactive.png") no-repeat center center; }
  .product-button-container .image-btn.active {
    background: url("images/image_active.png") no-repeat center center; }
  .product-button-container .diagram-btn.active {
    background: url("images/diagram_active.png") no-repeat center center; }

.tax-family #sidebar-menu {
  margin-top: -52px; }

.tax-banner-featured {
  position: absolute;
  right: 100px;
  bottom: -50px;
  width: 275px; }

.stock-number {
  color: #335686; }

.add-filters-heading {
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  padding: 5px; }

#all-products {
  margin-right: 45px; }

.buying-guide-container {
  position: relative;
  margin-bottom: 100px; }
  .buying-guide-container .download-button {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    z-index: 9999; }

#buying-guide {
  min-height: 700px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 15px; }
  #buying-guide h2 {
    color: #7f8576;
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 28px; }
  #buying-guide table {
    width: 100%;
    color: #000; }
    #buying-guide table th {
      border: 1px solid #9d9c9c;
      padding: 10px;
      background: #d4d3d3;
      color: #000;
      text-align: left; }
    #buying-guide table td {
      border: 1px solid #9d9c9c;
      padding: 5px; }
    #buying-guide table tr:nth-child(even) {
      background: #f7f7f7; }
  #buying-guide .other {
    margin-bottom: 50px; }

#accessory-carousel {
  width: 60%;
  margin: auto; }

#related-products-carousel {
  width: 60%;
  margin: auto; }

.accessory-block {
  min-height: 260px;
  padding: 50px;
  background: #ebebeb; }
  .accessory-block h3 {
    font-family: 'Kanit';
    color: #335686;
    font-size: 37px;
    text-transform: uppercase; }
  .accessory-block img {
    width: initial !important;
    max-height: 110px;
    margin: auto; }
  .accessory-block p {
    padding-top: 15px; }
  .accessory-block a {
    float: left; }

.related-block {
  padding: 30px; }
  .related-block h3 {
    font-family: 'Kanit';
    color: #335686;
    font-size: 37px;
    text-transform: uppercase; }
  .related-block img {
    width: initial !important;
    max-height: 110px;
    margin: auto; }
  .related-block p {
    font-size: 12px; }

.product-sidebar {
  border: 2px solid #ebebeb; }

.faq-filter-container {
  float: right; }

.faq-filter {
  /**background: #fff;
  color:#949594;**/
  border: 1px solid #767676;
  padding: 8px;
  margin: 10px;
  float: left;
  cursor: pointer; }

.faq-filter h4 {
  color: #a4a4a4;
  cursor: initial; }

.sidebar-filter-container .faq-filter {
  padding: 5px 10px;
  border: 0px; }

.sidebar-filter-container .faq-filter {
  display: none; }

.sidebar-filter-container .faq-filter.active {
  display: block; }

.faq-filter-container .active {
  /**background: #949594;**/
  border: 1px solid #767676;
  /**color:#fff;  **/ }

.fixed-sidebar {
  background: white;
  position: fixed;
  width: 29%;
  min-height: 300px; }

.ffs {
  color: #fff;
  font-size: 12px;
  padding-left: 30px;
  background: url("images/unchecked.png") no-repeat left center; }

.ffs.sub-filter-active {
  color: #fff;
  font-weight: bold;
  background: url("images/checked.png") no-repeat left center; }

.page-template-page-faq .banner-container {
  height: 76px; }

.faqs h3 {
  color: #335686;
  font-size: 20px;
  font-weight: 600;
  margin: 35px 0px; }

.faqs h4 {
  font-size: 16px;
  font-weight: 600;
  margin-left: 15px;
  color: #000; }

.faqs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px; }

.faqs ul ul li:before {
  content: none !important;
  position: absolute;
  margin-left: initial; }

.faq-item-content {
  display: none;
  padding-top: 20px; }
  .faq-item-content ul {
    list-style: initial;
    margin-bottom: 15px; }
  .faq-item-content table {
    padding-top: 20px; }

.faq-item-title {
  color: #000;
  cursor: pointer; }
  .faq-item-title .fa {
    padding-left: 20px;
    color: #1585c6;
    opacity: 0.5; }

.contact-form-container {
  background: #f2f2f2; }

.wpcf7 {
  display: inline-block;
  width: 100%;
  background: #f2f2f2;
  padding: 50px 0px !important; }
  .wpcf7 p {
    margin-bottom: 5px; }
  .wpcf7 .select2 {
    width: 400px !important; }
  .wpcf7 .select2-container--default .select2-selection--single {
    border-radius: 2px;
    background: #fff !important;
    border: 1px solid #ccc !important; }
  .wpcf7 .select2-container--default
.select2-selection--single
.select2-selection__rendered {
    color: #666 !important; }
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"] {
    width: 400px; }
  .wpcf7 input[type="reset"] {
    background: none;
    color: #666;
    border: 1px solid #666; }
  .wpcf7 .select2-selection__arrow {
    background: #3f4040; }
  .wpcf7 .clear-btn {
    margin-right: 25px; }
  .wpcf7 .form-btn-container {
    bottom: 0;
    left: 0; }
  .wpcf7 .form-left,
  .wpcf7 .form-right {
    min-height: 400px; }

.page-template-page-contact .banner-container {
  height: 76px; }

#section-management-team {
  text-align: center; }
  #section-management-team h2 {
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 300;
    font-family: "Kanit";
    color: #000;
    padding-top: 30px;
    padding-bottom: 110px; }

#section-accommodation h2 {
  font-size: 37px;
  font-weight: 300;
  text-transform: initial;
  font-family: "Kanit";
  color: #000;
  padding-top: 30px;
  padding-bottom: 40px; }

.team-item {
  margin-top: 25px; }
  .team-item .team-content {
    color: #7e7f7f;
    min-height: 180px;
    padding-left: 25px;
    padding-right: 25px; }
    .team-item .team-content .team-photo-container {
      height: 158px;
      background: #1585c6; }
      .team-item .team-content .team-photo-container img {
        padding-top: 20px;
        width: 210px; }
    .team-item .team-content .team-member-name {
      margin-top: 50px; }

.contact-details {
  padding-right: 100px; }
  .contact-details .contact-details-content {
    padding: 20px;
    border: 2px solid #ebebeb; }
    .contact-details .contact-details-content .contact-details-block {
      padding-bottom: 10px;
      border-bottom: 2px solid #ebebeb; }
      .contact-details .contact-details-content .contact-details-block .col-md-5 {
        padding-left: 0; }
    .contact-details .contact-details-content .contact-details-block:last-child {
      border-bottom: 0px; }
  .contact-details h2 {
    color: #335686;
    font-weight: 500;
    font-size: 20px; }

.accommodation-item {
  padding: 50px 0px; }
  .accommodation-item h4 {
    font-size: 15px;
    color: #335686;
    font-weight: 600;
    margin: 25px 0px; }
  .accommodation-item p {
    margin-bottom: 0px; }

#section-support {
  min-height: initial; }

.search .entry-title {
  font-weight: 400; }

.wpcf7 .screen-reader-response {
  display: none; }

.wpcf7-form .wpcf7-response-output {
  padding: 10px;
  color: #00aeef;
  font-size: 16px; }

.core-technologies-section {
  margin-top: 30px;
  background-size: cover !important;
  background-position: center center !important; }
  .core-technologies-section ul {
    list-style: none; }
    .core-technologies-section ul li {
      font-size: 14px;
      line-height: 2; }
  .core-technologies-section h2 {
    padding-top: 45px;
    text-align: center;
    font-weight: 300;
    color: #fff; }
  .core-technologies-section .core-technology-container {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px; }
    .core-technologies-section .core-technology-container .core-technology-content {
      text-align: center;
      border: 1px solid #fff; }
      .core-technologies-section .core-technology-container .core-technology-content h3 {
        font-size: 20px;
        font-weight: 300;
        text-align: center; }
      .core-technologies-section .core-technology-container .core-technology-content img {
        width: 90px;
        padding: 20px; }

.services-section h2 {
  color: #000;
  text-align: center;
  font-weight: 300; }

.services-section .service-box {
  text-align: center; }
  .services-section .service-box .service-box-content {
    min-height: 230px;
    margin: 20px;
    background: #f7f7f7;
    box-shadow: 6px 6px 3px #d5dee8; }
    .services-section .service-box .service-box-content h3 {
      padding: 30px 10px 1px 10px; }
    .services-section .service-box .service-box-content .service-description {
      padding: 15px;
      margin-top: 20px; }

.lifecycle-section h2 {
  color: #000;
  text-align: center;
  font-weight: 300; }

/** New Services section(s) on overview pages **/
.new-services-container {
  margin-top: 100px; }
  .new-services-container h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 30px; }
  .new-services-container h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 20px; }

.type-post .entry-title {
  text-transform: uppercase;
  font-size: 22px; }

.news-section {
  float: left;
  width: 80%; }

.news-sidebar {
  float: right;
  width: 15%;
  color: #fff;
  background: #00aeef; }
  .news-sidebar a {
    color: #fff; }
  .news-sidebar h2 {
    padding-left: 15px;
    font-size: 22px;
    font-weight: 200;
    margin-bottom: 20px; }

.title-news h1 {
  border-left: 8px solid #fff;
  border-right: 8px solid #fff; }

.overview-title {
  display: inline-block; }
  .overview-title h1 {
    padding-bottom: 5px; }

.overview-title.naval-and-strategic-communications h1, .overview-title.rm-family {
  border-bottom: 4px solid #335686; }

.overview-title.embedded-hf-vhf-modem-modules h1, .overview-title.tc-family h1 {
  border-bottom: 4px solid #335686; }

.overview-title.tactical-and-joint-communications h1, .overview-title.rt-family h1 {
  border-bottom: 4px solid #434d37; }

.overview-title h4 {
  text-transform: uppercase;
  float: right; }

.line {
  width: 150px;
  height: 7px;
  margin-bottom: 20px; }

.line.naval-and-strategic-communications, .line.rm-family {
  background: #335686; }

.line.embedded-hf-vhf-modem-modules, .line.tc-family {
  background: #335686; }

.line.tactical-and-joint-communications, .line.rt-family {
  background: #434d37; }

.single-overview-page .new-silo-block {
  overflow: initial; }

/* Responsive */
@media screen and (max-width: 1693px) {
  #sidebar-menu {
    padding: 4px;
  }
  .banner-container {
    margin-top: -121px !important; }
  .home .banner-container {
    margin-top: -121px !important; }
  .cta-section {
    width: 60%; }
    .sidebar-accessory-menu, .sidebar-modem-menu, .sidebar-software-menu, .sidebar-controller-menu, .sidebar-radio-menu, .sidebar-secure-modem-menu, .sidebar-terminals-menu, .sidebar-evaluation-menu, .sidebar-embedded-menu  {
    margin-left: 4px; }
    #sidebar-accessory-heading, #sidebar-modem-heading, #sidebar-software-heading, #sidebar-controller-heading, #sidebar-radio-heading, #sidebar-secure-modem-heading, #sidebar-terminals-heading, #sidebar-evaluation-heading, #sidebar-embedded-heading  {
    font-size: 12px; font-weight:bold; }
  .contact-details {
    padding-right: 0px; }
  .tax-banner-featured {
    right: 10px;
    width: 190px; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 15px; }
  .main-navigation {
    margin-left: 35px; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    margin-right: 15px; } }

@media screen and (min-width: 1921px) {
  .welcome-intro-section .intro-copy {
    padding-right: 25%;
  }
}  

@media screen and (min-width: 1600px) and (max-width: 1900px) {
  .new-silo-block h2 {
    font-size: 31px !important; }
  #product-carousel {
    margin-top: -200px !important; } }

@media screen and (min-width: 1280px) and (max-width: 1366px) {
  body {
    font-size: 14px; }
  .sidebar-link {
    margin-left: 3px;
    font-size: 10px;
    font-weight: 200;
    padding: 1px; }
  #sidebar-menu h3 {
    font-size: 17px;
    margin-bottom: 3px;
  }
  .home .banner-container {
    height: 435px; }
  .home .tagline-container h1 {
    font-size: 31px; }
  #product-carousel {
    margin-top: -148px;
    right: 1%; }
  .home .banner-container .tagline-container {
    padding-top: 175px; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    margin-right: 15px; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 15px; }
  .main-navigation {
    margin-left: 32px;
    width: 75%; }
  .banner-container {
    margin-top: -105px !important; }
  .home .banner-container {
    margin-top: -105px !important; }
  .featured-product-block h3 {
    font-size: 18px !important;
    font-weight: 300 !important; }
  .home-silo-section {
    padding-top: 0px; }
  .silo-block {
    padding: 10px; }
  .silo-block p {
    font-size: 12px; }
  .home-services-section {
    margin-top: 0px !important;
    margin-bottom: 0px !important; }
  .related-products-section h3 {
    font-size: 28px; }
  .tagline-container h2 {
    font-size: 22px; }
  .tagline-container p {
    font-size: 22px; }
  #section-accommodation {
    margin-top: 20px; }
  #section-accommodation h2 {
    padding-top: 0px;
    padding-bottom: 0px; }
  .featured-product-block {
    padding: 20px; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 10px !important; }
  .new-silo-block .hero-image h2 {
    font-size: 35px; }
  .new-family-block .top-bar h2 {
    font-size: 34px; }
  .comparison-table {
    width: 95%; }
  .sidebar-modem-menu {
    margin-left: 4px; }
  .sidebar-accessory-menu, .sidebar-modem-menu, .sidebar-software-menu, .sidebar-controller-menu, .sidebar-radio-menu, .sidebar-secure-modem-menu, .sidebar-terminals-menu, .sidebar-evaluation-menu, .sidebar-embedded-menu  {
    margin-left: 2px; }
  .fixed-sidebar {
    width: 20% !important; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 15px !important; }
  .new-silo-block h2 {
    font-size: 30px; }
  .new-silo-block .header {
    top: 230px; }
  .new-silo-block .silo-content .silo-image img {
    max-width: 100%; }
  .new-silo-block .hero-image {
    height: 380px; }
  .featured-product-block p {
    font-size: 12px; }
  .feature-icon {
    background-size: 38px 38px;
    width: 38px;
    height: 38px; } }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .announcement-banner {
    display: none !important;
  }
  #sidebar-menu {
    padding: 5px;
  }
  #sidebar-menu h3 {
    font-size: 17px;
  }
  .sidebar-accessory-menu, .sidebar-modem-menu, .sidebar-software-menu, .sidebar-controller-menu, .sidebar-radio-menu, .sidebar-secure-modem-menu, .sidebar-terminals-menu, .sidebar-evaluation-menu, .sidebar-embedded-menu  {
    margin-left: 2px; }
  .search-container {
    margin-top: -83px; }
  .main-navigation {
    width: 100%; }
  .home .tagline-container h1 {
    font-size: 35px; }
  .home .banner-container {
    height: 520px; }
  #product-carousel {
    margin-top: -100px; }
    #product-carousel img {
      max-width: 33%;
      float: right; }
  .new-family-block .top-bar .family-silo-icons-container .ass-family {
    margin-right: 10px;
    margin-bottom: 6px; }
  .new-family-block .top-bar h2 {
    margin-bottom: initial; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    font-size: 11px !important; }
  .home .banner-container {
    margin-top: -129px !important; } }

@media screen and (min-width: 641px) and (max-width: 1200px) {
  .announcement-banner {
    display: none !important;
  }
  .sidebar-link {
    margin-left: 5px;
    font-size: 10px;
    font-weight: 200;
    padding: 1px; }

  .fixed-sidebar {
    width: 30% !important;
  }
  .product-filter {
    margin: 5px 3px; }
  .content {
    width: 96%; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 10px !important; }
  body {
    font-size: 14px; }
  .cta-section {
    width: 80%; }
  #site-navigation {
    margin-left: 0px; }
  .search-container {
    margin-top: -80px; }
  .tagline-container p {
    font-size: 26px; }
  .tagline-container h2 {
    font-size: 26px; }
  .tax-glyph {
    right: 0px; }
    .tax-glyph img {
      width: 60px; }
  .footer-number {
    font-size: 13px;
    line-height: 17px; }
  .footer-form input {
    margin-right: 10px; }
  .footer-form textarea {
    margin-right: 10px; }
  .banner-container {
    min-height: 116px; }
  .comparison-table {
    width: 100%; }
  .new-silo-block .hero-image h2 {
    font-size: 35px;
    margin-bottom: 0px; }
  .new-family-block .top-bar h2 {
    font-size: 38px; }
  .comparison-table {
    width: 80%; }
  .new-family-block .top-bar {
    height: initial;
    z-index: 0; }
  .comparison-table {
    width: 95%;
    margin: auto; }
  .new-family-block .top-bar h2 {
    margin-bottom: 0px;
    margin-left: 12px; }
  .about-services-section {
    margin-top: 0px !important; }
  .nav-tabs > li {
    font-size: 12px; }
  #all-products {
    margin-right: 15px; }
  .sidebar-modem-menu {
    margin-left: 0px; }
  .sidebar-accessory-menu {
    margin-left: 0px; }
  #sidebar-menu h3 {
    font-size: 17px; margin-bottom: 2px; }
  .sidebar-modem-menu #sidebar-modem-menu-content {
    margin-left: 0px; }
  #sidebar-menu {
    padding: 5px; }
  .sidebar-filter-container h3 {
    font-size: 18px; }
  .overview-sections ul h4 {
    font-size: 17px; } }

@media screen and (max-width: 768px) {
  .announcement-banner {
    display: none !important;
  }
  /** CUSTOM MENU - replaced by Menu Plugin for simplicity in responsive
  .main-navigation {
    margin-top: 0px;

    .animated {
      animation-duration: 0.3s;
    }

    ul {
      ul {
        display: block !important;
        position: relative;
        li {
          float: none;
          width: 100%;
          margin:0px;
          padding: 0px;
          min-height: initial;
          height: initial;
        }
      }
    }
  }

  .menu-toggle {
    outline: none;
    box-shadow: none !important;
    padding-top:0px;
  }

  .menu-main-menu-container {
    position: absolute;
    background:#272822;
    right: 0;

    li {
      width: 100%;
      padding:5px;
      padding-right:20px;
      text-align: center;

      a {
        font-family: 'Open Sans', sans-serif;
        font-weight: 300;
      }
    }
  }

  .sub-menu {
    li {
      float: none;
    }
  }

**/


  .welcome-intro-section .intro-copy {
    margin-top: 120px;
    font-size: 15px;
  }
  .tax-banner-featured {
    display: none; }
  .search-container {
    margin-top: 55px; }
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-right {
    float: right;
    margin-right: 87px; }
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
    font-size: 18px; }
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:before {
    font-size: 36px; }
  .main-navigation {
    margin-left: 0px;
    width: 90%;
    float: none;
    position: absolute; }
  .comparison-table {
    width: 95%;
    margin: auto;
    overflow-x: scroll; }
  .new-silo-block .silo-content .silo-image {
    border-left: 0px; }
  .new-family-block .family-content .family-image {
    border-left: 0px; }
  .new-silo-block .silo-content .silo-logo {
    text-align: left; }
  .new-silo-block .block-icons-container {
    padding: 10px;
    background: #949494; }
  .new-silo-block .header {
    top: initial;
    position: relative;
    margin-top: -220px; }
  .new-silo-block .silo-family-icons-container {
    margin-top: 0px; }
  .new-silo-block .silo-featured-icons-container {
    margin-top: 0px; }
  .new-silo-block .hero-image {
    height: 400px; }
  .single-overview-page .new-silo-block .header {
    top: initial; }
  .sdv-mobile-img {
    width: 100% !important; } }

/* HOME */
@media screen and (min-width: 641px) and (max-width: 768px) {
  .home .banner-container {
    transform: none !important;
    height: initial; }
    .home .banner-container .tagline-container {
      transform: none !important;
      padding-top: initial;
      padding-left: 15px; }
      .home .banner-container .tagline-container h1 {
        font-size: 30px; }
  #product-carousel {
    margin-top: -203px;
    right: 1%; }
  section.content {
    margin-top: 40px;
    margin-bottom: 40px; }
  .home-services-section .col-md-5 img {
    right: 0; }
  .silo-block {
    margin-bottom: 15px;
    padding: 10px; }
  .family-block {
    text-align: center; }
    .family-block img {
      width: 50%;
      margin: auto; }
  .cta-section .btn {
    width: 100%;
    margin-bottom: 5px; }
  .pullquote {
    margin: 20px 0px; }
  .text-slider .item {
    max-width: 75%; } }

@media screen and (max-width: 767px) {
  .announcement-banner {
    display: none !important;
  }
  .about-services-section {
    margin-top: 50px !important;
    margin-bottom: 0px !important; }
  .about-services-section .image-right-pull {
    min-height: 240px; }
  .block-icons-container {
    background: #949494;
    opacity: 0.95; }
  .feature-icon {
    margin-right: 5px; }
  .new-family-block .top-bar .family-silo-icons-container .ass-family, .new-silo-block .hero-image .silo-family-icons-container .ass-family {
    margin-right: 5px; }
  .new-family-block .top-bar h4 {
    font-size: 12px; }
  .new-silo-block .hero-image h4 {
    font-size: 13px; }
  .new-family-block .block-icons-container {
    background: none; }
  .home .tagline-container h1 {
    font-size: 24px;
    padding: 15px; }
  .home .tagline-container {
    padding-top: 110px !important; }
  .footer-logo {
    margin-bottom: 10px; }
  .new-silo-block {
    margin-bottom: 100px; }
  .new-silo-block .hero-image {
    height: 380px; }
  .new-silo-block .silo-content .silo-cta-btns .btn {
    margin-top: 15px; }
  .new-silo-block .silo-content .silo-description {
    padding-right: 20px; }
  .new-silo-block .silo-content .silo-image {
    border-left: 0px; }
  .new-silo-block .silo-content .silo-logo img {
    width: 60px; }
  .new-silo-block .hero-image h2 {
    font-size: 36px; }
  .new-silo-block .silo-content .silo-image img {
    padding: 15px; }
  .new-family-block .top-bar {
    height: initial;
    min-height: 85px !important;
    z-index: 0; }
  .home-testimonial-section .heading-special {
    width: 100%; }
  .silo-family-icons-container {
    border-left: 0px; }
  .silo-featured-icons-container {
    border-right: 0px; }
  .new-family-block .top-bar .family-silo-icons-container .ass-family {
    margin-bottom: 13px; }
  .new-silo-block .hero-image .silo-family-icons-container .ass-family {
    margin-bottom: 9px !important; }
  .new-family-block .top-bar h2 {
    margin-bottom: 0px;
    margin-left: 12px; }
  .new-family-block .family-content .family-description {
    padding-right: 20px; }
  .new-family-block .family-content .family-cta-btns .btn {
    margin-top: 15px; }
  .new-family-block .family-content .family-image {
    border-left: 0px; }
  .toggle-block-container {
    font-size: 21px; }
  .top-block-container .description {
    font-size: 12px;
    padding: 10px; }
  .comparison-table {
    width: 100%;
    overflow-x: scroll; }
  .new-family-block {
    width: 100%; }
  .family-description h5 {
    margin-bottom: 25px; }
  .comparison-table td, .comparison-table th {
    font-size: 11px; }
  .new-silo-block .hero-image h4 {
    color: #fff; }
  .new-family-block .hero-image h4 {
    color: #fff; } }

@media screen and (max-width: 640px) {
  small {
    font-size: 80%; }
  .timeline-container {
    display: none; }
  .comparison-table h3 {
    font-size: 15px; }
  .feature-icon {
    background-size: 31px 31px !important;
    width: 31px !important;
    height: 31px !important; }
  .core-technologies-section ul {
    margin-left: 0px;
    padding: 5px; }
  .product-summary-container .product-summary-image img {
    width: 80%; }
  .copyright-container {
    padding-left: 35px;
    padding-right: 35px; }
  .tagline-container p {
    font-size: 18px !important; }
  section {
    min-height: 65px; }
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-right {
    margin-right: 6px; }
  .search-container {
    margin-top: 10px;
    margin-right: -5px; }
  body {
    font-size: 14px; }
  #featured-product-carousel {
    width: 80%; }
  .family-block {
    text-align: center; }
    .family-block img {
      width: 50%;
      margin: auto; }
  #map {
    height: initial; }
  .home-services-section {
    margin-top: 100px !important;
    margin-bottom: 100px !important; }
    .home-services-section .row {
      margin-left: 0px;
      margin-right: 0px;
      margin-top: 15px; }
    .home-services-section .image-right-pull {
      min-height: 240px; }
  .quote-content {
    padding-top: 20px; }
    .quote-content p {
      font-size: 22px; }
  .pullquote img {
    width: 50%; }
  .quote-bg {
    height: 160px; }
  section {
    margin: 35px 0px; }
  section.content {
    margin-top: 30px;
    margin-bottom: 30px; }
  .heading-special {
    padding: 10px 0px 10px 30px; }
  .silo-block {
    margin-bottom: 15px;
    padding: 10px; }
  .home .tagline-container h1 {
    font-size: 24px;
    padding: 15px; }
  .rellax {
    transform: none !important; }
  .home .banner-container {
    transform: none !important;
    height: initial; }
    .home .banner-container .tagline-container {
      transform: none !important;
      padding-top: initial;
      padding-left: 15px; }
  #product-carousel {
    margin-top: -65px;
    right: 1%; }
    #product-carousel img {
      float: right; }
  .home-silo-section {
    padding-top: 0px; }
  .logo {
    background: url(images/logo.png) no-repeat;
    background-size: 150px;
    width: 150px;
    height: 46px;
    float: left; }
  .home-services-section .col-md-5 img {
    right: 0; }
  #menu-footer-menu {
    padding-left: 0px;
    margin-left: 0px; }
    #menu-footer-menu li {
      float: none;
      width: initial;
      margin-top: 10px; }
    #menu-footer-menu .sub-menu {
      margin-top: 10px;
      margin-bottom: 20px;
      margin-left: 20px; }
  .footer-header {
    min-height: initial; }
  .home .banner-container {
    margin-top: -125px !important; }
  .banner-container {
    margin-top: -125px !important; }
  .main-navigation {
    margin-left: 0px;
    width: 90%;
    float: none;
    position: absolute;
    margin-top: -5px; }
  .home-services-section .col-md-6 {
    padding-right: 0px;
    padding-left: 0px; }
  .mega-menu-link {
    font-size: 14px !important; }
  .mega-sub-menu .mega-menu-link {
    font-size: 12px !important; }
  .featured-product-block h3 {
    font-size: 23px;
    font-weight: 400; }
  .error404 .page-header span {
    font-size: 50px; }
  .error404 .page-title {
    font-size: 30px; }
  .error404 .page-content h3 {
    font-size: 27px; }
  .text-slider .item {
    max-width: 75%;
    font-size: 13px; }
  .banner-container .title-container {
    padding-top: 135px; }
  .product-loop-container h4 {
    margin-right: 46px;
    font-size: 20px; }
  #related-products-carousel {
    width: 80%; } }

@media screen and (max-width: 411px) {
  .new-silo-block h2 {
    font-size: 30px; }
  .new-silo-block .header {
    margin-top: -222px; }
  .single-overview-page .new-silo-block .hero-image {
    height: 310px; } }

@media screen and (max-width: 360px) {
  .home .tagline-container h1 {
    font-size: 18px;
    padding: 15px; }
  .featured-products-section h2 {
    font-size: 32px; }
  .featured-product-block h3 {
    font-size: 20px;
    font-weight: 400; }
  h2 {
    font-size: 33px; }
  h4 {
    font-size: 22px; }
  .banner-container .title-container {
    padding-top: 115px; }
  .title-container h1 {
    font-size: 26px !important; }
  .tagline-container p {
    font-size: 18px !important; }
  .new-silo-block .block-icons-container {
    display: none; }
  .about-services-section .image-right-pull {
    min-height: 125px; }
  .home-services-section .image-right-pull {
    min-height: 125px; }
  .new-silo-block h2 {
    font-size: 27px; }
  .new-silo-block .hero-image {
    height: 350px; }
  .new-silo-block .header {
    margin-top: -177px; }
  .new-silo-block .silo-featured-icons-container {
    width: 100%; }
  .new-silo-block .silo-family-icons-container {
    width: 100%; } }

/* CONTACT */
@media screen and (max-width: 640px) {
  .page-template-page-contact .banner-container, .page-template-page-faq .banner-container {
    height: 150px !important; }
  .banner-container {
    min-height: 150px !important; }
  .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
    width: 100%; }
  .wpcf7 .select2 {
    width: 100% !important; }
  .wpcf7 .form-right {
    min-height: initial; }
  .wpcf7 .form-light {
    min-height: initial; }
  .team-item .team-content .team-photo-container {
    height: 170px; }
    .team-item .team-content .team-photo-container img {
      width: 60%; }
  #section-management-team h2 {
    padding-top: 20px;
    padding-bottom: 20px; }
  .contact-details {
    padding-right: 15px;
    padding-bottom: 20px; }
  .accommodation-item {
    text-align: center;
    padding: 15px 0px; }
  #section-accommodation h2 {
    padding: 20px 0px;
    text-align: center;
    font-size: 32px; }
  .cta-section {
    width: initial;
    margin: 0; }
    .cta-section .btn {
      display: block;
      width: 90%;
      margin: auto;
      margin-bottom: 6px; }
  .tagline-container p {
    font-size: 18px !important; } }

/* ABOUT */
@media screen and (max-width: 640px) {
  #about-menu-btn {
    z-index: 999999; }
  .about-menu {
    top: 35%; }
  #about-menu-btn {
    top: 10%; }
  .tagline-container h2 {
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    font-size: 18px; }
  .title-container h1 {
    padding: 10px; }
  .mission-section .mission-header p {
    font-size: 18px; }
  .mission-section .mission-content h4 {
    font-size: 17px; }
  .heading-special2 h2 {
    font-size: 28px; }
  .company-structure-content .content {
    width: 90%;
    margin: auto; }
  .structure-header {
    font-size: 28px;
    min-width: initial;
    padding: initial; }
  .repeat {
    display: none; }
  .capacity-section {
    font-size: 42px; }
    .capacity-section .capacity-content p {
      font-size: 22px; }
  .values-section .values-content p {
    padding: 20px 0px 0px 50px;
    font-size: 22px; }
  .link-section .owl-prev {
    left: -25px; }
  .link-section .owl-next {
    right: -25px; }
  .link-section .link-container a {
    display: block;
    text-align: center; }
  .counter-section .col-md-4 {
    padding-top: 5px; }
  .counter-section .count-circle {
    width: 190px;
    height: 190px;
    margin-top: 5px; }
    .counter-section .count-circle h4 {
      font-size: 18px;
      margin-top: 30px; } }

/* FAQ */
@media screen and (max-width: 640px) {
  .faq-filter-container {
    float: initial;
    margin-bottom: 10px;
    margin-left: 0px;
    padding-right: 0px; }
  .faq-filter {
    font-size: 12px; }
  .faq-filter {
    width: 40%; }
  .top-bar {
    z-index: 999; }
  .text-slider .owl-next {
    right: 0px; }
  .text-slider .owl-prev {
    left: 0px; }
  .text-slider {
    margin-top: 10px; }
  .nav-tabs {
    margin-left: 0px; }
  .term-embedded-hf-vhf-modem-modules .banner-container {
    height: 660px; } }

/* PRODUCTS */
@media screen and (min-width: 641px) and (max-width: 768px) {
  .tagline-container p {
    font-size: 22px; }
  .tax-glyph {
    right: 0px;
    top: 175px; }
    .tax-glyph img {
      width: 60px;
      height: 60px; } }

@media screen and (max-width: 640px) {
  .product-loop-container .cat-indicator-container {
    top: 36px; }
  .cat-indicator-container {
    position: absolute;
    right: 0px;
    top: 10px; }
  .product-filter-container {
    float: initial;
    display: none; }
  .add-filters-heading {
    display: none; }
  .tagline-container p {
    font-size: 22px; }
  .banner-container .tagline-container {
    padding-right: 5%; }
  .title-container h1 {
    font-size: 32px; }
  #sidebar-menu {
    display: none; }
  .product-loop-image {
    background-size: contain;
    min-height: 150px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: initial; }
    .product-loop-image img {
      padding-top: 15px;
      padding-bottom: 15px; }
  .product-loop-container {
    padding: 20px 0px;
    outline: none; }
  .tax-glyph {
    right: 0px;
    top: 154px; }
    .tax-glyph img {
      width: 60px;
      height: 60px; }
  .cat-indicator-container .cat-indicator {
    margin-top: 10px; }
  .sidebar-filter-container {
    display: none; } }

@media screen and (min-width: 410px) and (max-width: 639px) {
  .search-container {
    margin-top: 55px; } }

@media screen and (min-width: 376px) and (max-width: 409px) {
  .search-container {
    margin-top: 0px; } }
/*  */
@media screen and (min-width: 1367px) and (max-width: 1693px) {
  .header-container {
    min-height: 121px; } }

@media screen and (min-width: 985px) and (max-width: 1440px) {
  .new-silo-block h2 {
    font-size: 28px; }
  .new-silo-block .silo-content .silo-image img {
    max-width: 100%; }
  .feature-icon {
    margin-right: 6px; }
  .icon-seperator {
    padding-left: 6px; } }

/* Assets */
/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative; }

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none; }

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block; }

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.owl-height {
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-nav {
  margin-top: 10px; }

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; }

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none; }

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791; }

.vis .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; }

.vis-active {
  box-shadow: 0 0 10px #86d5f8; }

.vis [class*=span] {
  min-height: 0;
  width: auto; }

div.vis-configuration {
  position: relative;
  display: block;
  float: left;
  font-size: 12px; }

div.vis-configuration-wrapper {
  display: block;
  width: 700px; }

div.vis-configuration-wrapper::after {
  clear: both;
  content: "";
  display: block; }

div.vis-configuration.vis-config-option-container {
  display: block;
  width: 495px;
  background-color: #fff;
  border: 2px solid #f7f8fa;
  border-radius: 4px;
  margin-top: 20px;
  left: 10px;
  padding-left: 5px; }

div.vis-configuration.vis-config-button {
  display: block;
  width: 495px;
  height: 25px;
  vertical-align: middle;
  line-height: 25px;
  background-color: #f7f8fa;
  border: 2px solid #ceced0;
  border-radius: 4px;
  margin-top: 20px;
  left: 10px;
  padding-left: 5px;
  cursor: pointer;
  margin-bottom: 30px; }

div.vis-configuration.vis-config-button.hover {
  background-color: #4588e6;
  border: 2px solid #214373;
  color: #fff; }

div.vis-configuration.vis-config-item {
  display: block;
  float: left;
  width: 495px;
  height: 25px;
  vertical-align: middle;
  line-height: 25px; }

div.vis-configuration.vis-config-item.vis-config-s2 {
  left: 10px;
  background-color: #f7f8fa;
  padding-left: 5px;
  border-radius: 3px; }

div.vis-configuration.vis-config-item.vis-config-s3 {
  left: 20px;
  background-color: #e4e9f0;
  padding-left: 5px;
  border-radius: 3px; }

div.vis-configuration.vis-config-item.vis-config-s4 {
  left: 30px;
  background-color: #cfd8e6;
  padding-left: 5px;
  border-radius: 3px; }

div.vis-configuration.vis-config-header {
  font-size: 18px;
  font-weight: 700; }

div.vis-configuration.vis-config-label {
  width: 120px;
  height: 25px;
  line-height: 25px; }

div.vis-configuration.vis-config-label.vis-config-s3 {
  width: 110px; }

div.vis-configuration.vis-config-label.vis-config-s4 {
  width: 100px; }

div.vis-configuration.vis-config-colorBlock {
  top: 1px;
  width: 30px;
  height: 19px;
  border: 1px solid #444;
  border-radius: 2px;
  padding: 0;
  margin: 0;
  cursor: pointer; }

input.vis-configuration.vis-config-checkbox {
  left: -5px; }

input.vis-configuration.vis-config-rangeinput {
  position: relative;
  top: -5px;
  width: 60px;
  padding: 1px;
  margin: 0;
  pointer-events: none; }

input.vis-configuration.vis-config-range {
  -webkit-appearance: none;
  border: 0 solid #fff;
  background-color: rgba(0, 0, 0, 0);
  width: 300px;
  height: 20px; }

input.vis-configuration.vis-config-range::-webkit-slider-runnable-track {
  width: 300px;
  height: 5px;
  background: #dedede;
  background: -moz-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dedede), color-stop(99%, #c8c8c8));
  background: -webkit-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: -o-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: -ms-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: linear-gradient(to bottom, #dedede 0, #c8c8c8 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8', GradientType=0 );
  border: 1px solid #999;
  box-shadow: #aaa 0 0 3px 0;
  border-radius: 3px; }

input.vis-configuration.vis-config-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #14334b;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #3876c2;
  background: -moz-linear-gradient(top, #3876c2 0, #385380 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3876c2), color-stop(100%, #385380));
  background: -webkit-linear-gradient(top, #3876c2 0, #385380 100%);
  background: -o-linear-gradient(top, #3876c2 0, #385380 100%);
  background: -ms-linear-gradient(top, #3876c2 0, #385380 100%);
  background: linear-gradient(to bottom, #3876c2 0, #385380 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380', GradientType=0 );
  box-shadow: #111927 0 0 1px 0;
  margin-top: -7px; }

input.vis-configuration.vis-config-range:focus {
  outline: 0; }

input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track {
  background: #9d9d9d;
  background: -moz-linear-gradient(top, #9d9d9d 0, #c8c8c8 99%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #9d9d9d), color-stop(99%, #c8c8c8));
  background: -webkit-linear-gradient(top, #9d9d9d 0, #c8c8c8 99%);
  background: -o-linear-gradient(top, #9d9d9d 0, #c8c8c8 99%);
  background: -ms-linear-gradient(top, #9d9d9d 0, #c8c8c8 99%);
  background: linear-gradient(to bottom, #9d9d9d 0, #c8c8c8 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8', GradientType=0 ); }

input.vis-configuration.vis-config-range::-moz-range-track {
  width: 300px;
  height: 10px;
  background: #dedede;
  background: -moz-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dedede), color-stop(99%, #c8c8c8));
  background: -webkit-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: -o-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: -ms-linear-gradient(top, #dedede 0, #c8c8c8 99%);
  background: linear-gradient(to bottom, #dedede 0, #c8c8c8 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8', GradientType=0 );
  border: 1px solid #999;
  box-shadow: #aaa 0 0 3px 0;
  border-radius: 3px; }

input.vis-configuration.vis-config-range::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #385380; }

input.vis-configuration.vis-config-range:-moz-focusring {
  outline: #fff solid 1px;
  outline-offset: -1px; }

input.vis-configuration.vis-config-range::-ms-track {
  width: 300px;
  height: 5px;
  background: 0 0;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent; }

input.vis-configuration.vis-config-range::-ms-fill-lower {
  background: #777;
  border-radius: 10px; }

input.vis-configuration.vis-config-range::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px; }

input.vis-configuration.vis-config-range::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #385380; }

input.vis-configuration.vis-config-range:focus::-ms-fill-lower {
  background: #888; }

input.vis-configuration.vis-config-range:focus::-ms-fill-upper {
  background: #ccc; }

.vis-configuration-popup {
  position: absolute;
  background: rgba(57, 76, 89, 0.85);
  border: 2px solid #f2faff;
  line-height: 30px;
  height: 30px;
  width: 150px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  -webkit-transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out; }

.vis-configuration-popup:after, .vis-configuration-popup:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.vis-configuration-popup:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: rgba(57, 76, 89, 0.85);
  border-width: 8px;
  margin-top: -8px; }

.vis-configuration-popup:before {
  border-color: rgba(194, 225, 245, 0);
  border-left-color: #f2faff;
  border-width: 12px;
  margin-top: -12px; }

div.vis-tooltip {
  position: absolute;
  visibility: hidden;
  padding: 5px;
  white-space: nowrap;
  font-family: verdana;
  font-size: 14px;
  color: #000;
  background-color: #f5f4ed;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #808074;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 5; }

.vis-current-time {
  background-color: #FF7F6E;
  width: 2px;
  z-index: 1;
  pointer-events: none; }

.vis-rolling-mode-btn {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 7px;
  right: 20px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  opacity: .8;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: #3876c2; }

.vis-rolling-mode-btn:before {
  content: "\26F6"; }

.vis-rolling-mode-btn:hover {
  opacity: 1; }

.vis-custom-time {
  background-color: #6E94FF;
  width: 2px;
  cursor: move;
  z-index: 1; }

.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal {
  position: absolute;
  width: 100%;
  height: 0;
  border-bottom: 1px solid; }

.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor {
  border-color: #e5e5e5; }

.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major {
  border-color: #bfbfbf; }

.vis-data-axis .vis-y-axis.vis-major {
  width: 100%;
  position: absolute;
  color: #4d4d4d;
  white-space: nowrap; }

.vis-data-axis .vis-y-axis.vis-major.vis-measure {
  padding: 0;
  margin: 0;
  border: 0;
  visibility: hidden;
  width: auto; }

.vis-data-axis .vis-y-axis.vis-minor {
  position: absolute;
  width: 100%;
  color: #bebebe;
  white-space: nowrap; }

.vis-data-axis .vis-y-axis.vis-minor.vis-measure {
  padding: 0;
  margin: 0;
  border: 0;
  visibility: hidden;
  width: auto; }

.vis-data-axis .vis-y-axis.vis-title {
  position: absolute;
  color: #4d4d4d;
  white-space: nowrap;
  bottom: 20px;
  text-align: center; }

.vis-data-axis .vis-y-axis.vis-title.vis-measure {
  padding: 0;
  margin: 0;
  visibility: hidden;
  width: auto; }

.vis-data-axis .vis-y-axis.vis-title.vis-left {
  bottom: 0;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left bottom;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.vis-data-axis .vis-y-axis.vis-title.vis-right {
  bottom: 0;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg); }

.vis-legend {
  background-color: rgba(247, 252, 255, 0.65);
  padding: 5px;
  border: 1px solid #b3b3b3;
  box-shadow: 2px 2px 10px rgba(154, 154, 154, 0.55); }

.vis-legend-text {
  white-space: nowrap;
  display: inline-block; }

.vis-item {
  position: absolute;
  color: #1A1A1A;
  border-color: #97B0F8;
  border-width: 1px;
  background-color: #D5DDF6;
  display: inline-block; }

.vis-item.vis-point.vis-selected, .vis-item.vis-selected {
  background-color: #FFF785; }

.vis-item.vis-selected {
  border-color: #FFC200;
  z-index: 2; }

.vis-editable.vis-selected {
  cursor: move; }

.vis-item.vis-box {
  text-align: center;
  border-style: solid;
  border-radius: 2px; }

.vis-item.vis-point {
  background: 0 0; }

.vis-item.vis-dot {
  position: absolute;
  padding: 0;
  border-width: 4px;
  border-style: solid;
  border-radius: 4px; }

.vis-item.vis-range {
  border-style: solid;
  border-radius: 2px;
  box-sizing: border-box; }

.vis-item.vis-background {
  border: none;
  background-color: rgba(213, 221, 246, 0.4);
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

.vis-item .vis-item-overflow {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden; }

.vis-item-visible-frame {
  white-space: nowrap; }

.vis-item.vis-range .vis-item-content {
  position: relative;
  display: inline-block; }

.vis-item.vis-background .vis-item-content {
  position: absolute;
  display: inline-block; }

.vis-item.vis-line {
  padding: 0;
  position: absolute;
  width: 0;
  border-left-width: 1px;
  border-left-style: solid; }

.vis-item .vis-item-content {
  white-space: nowrap;
  box-sizing: border-box;
  padding: 5px; }

.vis-item .vis-onUpdateTime-tooltip {
  position: absolute;
  background: #4f81bd;
  color: #fff;
  width: 200px;
  text-align: center;
  white-space: nowrap;
  padding: 5px;
  border-radius: 1px; }

.vis-item .vis-delete, .vis-item .vis-delete-rtl {
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  padding: 0 5px;
  cursor: pointer;
  -webkit-transition: background .2s linear;
  -moz-transition: background .2s linear;
  -ms-transition: background .2s linear;
  -o-transition: background .2s linear;
  transition: background .2s linear; }

.vis-item .vis-delete {
  right: -24px; }

.vis-item .vis-delete-rtl {
  left: -24px; }

.vis-item .vis-delete-rtl:after, .vis-item .vis-delete:after {
  content: "\00D7";
  color: red;
  font-family: arial,sans-serif;
  font-size: 22px;
  font-weight: 700;
  -webkit-transition: color .2s linear;
  -moz-transition: color .2s linear;
  -ms-transition: color .2s linear;
  -o-transition: color .2s linear;
  transition: color .2s linear; }

.vis-item .vis-delete-rtl:hover, .vis-item .vis-delete:hover {
  background: red; }

.vis-item .vis-delete-rtl:hover:after, .vis-item .vis-delete:hover:after {
  color: #fff; }

.vis-item .vis-drag-center {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: move; }

.vis-item.vis-range .vis-drag-left, .vis-item.vis-range .vis-drag-right {
  position: absolute;
  width: 24px;
  max-width: 20%;
  min-width: 2px;
  height: 100%;
  top: 0; }

.vis-item.vis-range .vis-drag-left {
  left: -4px;
  cursor: w-resize; }

.vis-item.vis-range .vis-drag-right {
  right: -4px;
  cursor: e-resize; }

.vis-range.vis-item.vis-readonly .vis-drag-left, .vis-range.vis-item.vis-readonly .vis-drag-right {
  cursor: auto; }

.vis-labelset .vis-label.draggable, .vis-nesting-group {
  cursor: pointer; }

.vis-itemset {
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

.vis-itemset .vis-background, .vis-itemset .vis-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: visible; }

.vis-axis {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  z-index: 1; }

.vis-foreground .vis-group {
  position: relative;
  box-sizing: border-box;
  border-bottom: 1px solid #bfbfbf; }

.vis-foreground .vis-group:last-child {
  border-bottom: none; }

.vis-nested-group {
  background: #f5f5f5; }

.vis-label.vis-nesting-group.expanded:before {
  content: "\25BC"; }

.vis-label.vis-nesting-group.collapsed-rtl:before {
  content: "\25C0"; }

.vis-label.vis-nesting-group.collapsed:before {
  content: "\25B6"; }

.vis-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; }

.vis-labelset, .vis-labelset .vis-label {
  position: relative;
  box-sizing: border-box; }

.vis-labelset {
  overflow: hidden; }

.vis-labelset .vis-label {
  left: 0;
  top: 0;
  width: 100%;
  color: #4d4d4d;
  border-bottom: 1px solid #bfbfbf; }

.vis-labelset .vis-label:last-child {
  border-bottom: none; }

.vis-labelset .vis-label .vis-inner {
  display: inline-block;
  padding: 5px; }

.vis-labelset .vis-label .vis-inner.vis-hidden {
  padding: 0; }

.vis-panel {
  position: absolute;
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

.vis-panel.vis-bottom, .vis-panel.vis-center, .vis-panel.vis-left, .vis-panel.vis-right, .vis-panel.vis-top {
  border: 1px #bfbfbf; }

.vis-panel.vis-center, .vis-panel.vis-left, .vis-panel.vis-right {
  border-top-style: solid;
  border-bottom-style: solid;
  overflow: hidden; }

.vis-left.vis-panel.vis-vertical-scroll, .vis-right.vis-panel.vis-vertical-scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll; }

.vis-background, .vis-time-axis, .vis-timeline {
  overflow: hidden; }

.vis-left.vis-panel.vis-vertical-scroll {
  direction: rtl; }

.vis-left.vis-panel.vis-vertical-scroll .vis-content, .vis-right.vis-panel.vis-vertical-scroll {
  direction: ltr; }

.vis-right.vis-panel.vis-vertical-scroll .vis-content {
  direction: rtl; }

.vis-panel.vis-bottom, .vis-panel.vis-center, .vis-panel.vis-top {
  border-left-style: solid;
  border-right-style: solid; }

.vis-panel > .vis-content {
  position: relative; }

.vis-panel .vis-shadow {
  position: absolute;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); }

.vis-panel .vis-shadow.vis-top {
  top: -1px;
  left: 0; }

.vis-panel .vis-shadow.vis-bottom {
  bottom: -1px;
  left: 0; }

.vis-graph-group0 {
  fill: #4f81bd;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #4f81bd; }

.vis-graph-group1 {
  fill: #f79646;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #f79646; }

.vis-graph-group2 {
  fill: #8c51cf;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #8c51cf; }

.vis-graph-group3 {
  fill: #75c841;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #75c841; }

.vis-graph-group4 {
  fill: #ff0100;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #ff0100; }

.vis-graph-group5 {
  fill: #37d8e6;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #37d8e6; }

.vis-graph-group6 {
  fill: #042662;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #042662; }

.vis-graph-group7 {
  fill: #00ff26;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #00ff26; }

.vis-graph-group8 {
  fill: #f0f;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #f0f; }

.vis-graph-group9 {
  fill: #8f3938;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #8f3938; }

.vis-timeline .vis-fill {
  fill-opacity: .1;
  stroke: none; }

.vis-timeline .vis-bar {
  fill-opacity: .5;
  stroke-width: 1px; }

.vis-timeline .vis-point {
  stroke-width: 2px;
  fill-opacity: 1; }

.vis-timeline .vis-legend-background {
  stroke-width: 1px;
  fill-opacity: .9;
  fill: #fff;
  stroke: #c2c2c2; }

.vis-timeline .vis-outline {
  stroke-width: 1px;
  fill-opacity: 1;
  fill: #fff;
  stroke: #e5e5e5; }

.vis-timeline .vis-icon-fill {
  fill-opacity: .3;
  stroke: none; }

.vis-time-axis {
  position: relative; }

.vis-time-axis.vis-foreground {
  top: 0;
  left: 0;
  width: 100%; }

.vis-time-axis.vis-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.vis-time-axis .vis-text {
  position: absolute;
  color: #4d4d4d;
  padding: 3px;
  overflow: hidden;
  box-sizing: border-box;
  white-space: nowrap; }

.vis-time-axis .vis-text.vis-measure {
  position: absolute;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  visibility: hidden; }

.vis-time-axis .vis-grid.vis-vertical {
  position: absolute;
  border-left: 1px solid; }

.vis-time-axis .vis-grid.vis-vertical-rtl {
  position: absolute;
  border-right: 1px solid; }

.vis-time-axis .vis-grid.vis-minor {
  border-color: #e5e5e5; }

.vis-time-axis .vis-grid.vis-major {
  border-color: #bfbfbf; }

.vis-timeline {
  position: relative;
  border: 1px solid #bfbfbf;
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none; }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.why-hf-section-expand {
  display:none;
  transition: 2s;
}

.why-hf-section-expand.active {
  display:block;
}

.announcement-banner {
  position: relative;
  z-index:99999;
  height:50px;
  color: #fff;
  background: linear-gradient(#000000, #000000);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:5px;
}

.announcement-banner a {
  padding:10px;
}

.announcement-banner button {
  padding: 4px 25px;
}

.announcement-banner button {
  margin-left: 20px;
}
