/*
Theme Name: Curiosity Theme
Theme URI: 
Author: Curiosity 
Version: 3.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Curiosity
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Our theme is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

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:
----------------------------------------------------------------
1.0 Normalize
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
13.0 Custom
    13.1 Navigation
    13.2 Inner Pages
    13.3 Helper Code
    13.4 Plugins
    13.5 Media Calls
--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.0 Normalize
--------------------------------------------------------------*/

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

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

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}


/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
    color: #404040;
    line-height: 1.5;
}

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

p {
    margin-bottom: 1em;
}

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


/*--------------------------------------------------------------
3.0 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;
}

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. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, .8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

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"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
    padding: 3px;
}

textarea {
    padding-left: 3px;
    width: 100%;
}


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/

.navbar-nav {
    float: right;
    margin: 0px;
}


/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

a {
    color: royalblue;
}

a:visited {
    color: purple;
}

a:hover,
a:focus,
a:active {
    color: midnightblue;
}

a:focus {
    outline: thin dotted;
}

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


/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

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

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 1.5em;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul ul li {}

.main-navigation li:hover > a {}

.main-navigation ul ul:hover > a {}

.main-navigation ul ul a:hover {}

.main-navigation ul li:hover > ul {
    left: auto;
}

.main-navigation ul ul li:hover > ul {
    left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {}


/* Small menu. */

.menu-toggle {
    display: none;
}

@media screen and (max-width: 600px) {
    .menu-toggle,
    .main-navigation.toggled .nav-menu {
        display: block;
    }
    .main-navigation ul {
        display: none;
    }
}

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


/*--------------------------------------------------------------
6.0 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:hover,
.screen-reader-text:active,
.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. */
}


/*--------------------------------------------------------------
7.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;
}


/*--------------------------------------------------------------
8.0 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;
}

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


/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 1.5em;
}


/* Make sure select elements fit in widgets. */

.widget select {
    max-width: 100%;
}


/* Search widget. */

.widget_search .search-submit {
    display: none;
}


/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
10.1 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;
    padding: 0 15px;
    position: relative;
}

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


/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    display: none;
}


/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}


/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,

/* Older / Newer Posts Navigation (always hidden) */

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


/*--------------------------------------------------------------
12.0 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%;
}


/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/

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

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

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

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


/*--------------------------------------------------------------
12.2 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;
}


/*--------------------------------------------------------------
13.0 Custom
--------------------------------------------------------------*/

html,
body,
div,
button {
	outline: none!important;
}

html,
body {
    color: #4c4c4c;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: normal;
    outline: none!important;
}

h1 {
    font-size: 60px;
    font-weight: 900;
    margin: 0 auto 15px auto;
}

h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 0 auto 10px auto;
}

h3 {}

h4,
h5,
h6 {}

a,
a:visited {
    outline: 0;
    text-decoration: none;
}

a:active,
a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
}

p {}

.btn-clear {
    color: #ffffff;
    background-color: transparent;
    border-radius: 25px;
    border-color: #ffffff;
    box-shadow: none;
    outline: none!important;
    padding: 5px 40px;
    text-decoration: none;
}

.btn-clear:hover,
.btn-clear:active,
.btn-clear:focus {
    color: #005794;
    background-color: #ffffff;
    border-radius: 25px;
    border-color: #ffffff;
    box-shadow: none;
    padding: 5px 40px;
    text-decoration: none;
}

.btn-blue_solid {
    color: #ffffff;
    background-color: #005794;
    border-radius: 25px;
    border-color: #ffffff;
    box-shadow: none;
    outline: none!important;
    padding: 5px 40px;
    text-decoration: none;
}

.btn-blue_solid:hover,
.btn-blue_solid:active,
.btn-blue_solid:focus {
    color: #005794;
    background-color: #ffffff;
    border-radius: 25px;
    border-color: #005794;
    box-shadow: none;
    padding: 5px 40px;
    text-decoration: none;
}

.btn-green {
    color: #ffffff;
    background-color: #b0d235;
    border-radius: 25px;
    border-color: #b0d235;
    box-shadow: none;
    outline: none!important;
    padding: 5px 40px;
    text-decoration: none;
}

.btn-green:hover,
.btn-green:active,
.btn-green:focus {
    color: #b0d235;
    background-color: #ffffff;
    border-radius: 25px;
    border-color: #b0d235;
    box-shadow: none;
    padding: 5px 40px;
    text-decoration: none;
}

.btn-blue {
    color: #4c4c4c;
    background-color: transparent;
    border-radius: 25px;
    border-color: #4c4c4c;
    box-shadow: none;
    font-size: 30px;
    font-weight: 300;
    outline: none!important;
    padding: 5px 40px;
    position: relative;
    text-decoration: none;
}

.btn-blue:hover,
.btn-blue:active,
.btn-blue:focus,
.btn-blue.active {
    color: #ffffff;
    background-color: #005794;
    border-radius: 25px;
    border-color: #005794;
    box-shadow: none;
    font-size: 30px;
    font-weight: 300;
    padding: 5px 40px;
    position: relative;
    text-decoration: none;
}

.navigation-section {
    position: relative;
    z-index: 1001;
}

.navigation-section .ns-1 {
    position: fixed;
	width: 100%;
    z-index: 1001;
}

.navigation-section .ns-1>div {
    background-color: #ffffff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 100px;
    margin: 0 40px;
    width: calc(100% - 80px);
}

.navigation-section .ns-1 .logo {
    position: absolute;
    top: calc(50% - 39px);
    left: 45px;
    z-index: 200;
}

.navigation-section .ns-2>div {
    margin-top: -100px;
    padding: 0;
}

.navigation-section .ns-2 .scroll-down {
    bottom: 50px;
    position: absolute;
    left: calc(50% - 31.5px);
}

#hero-carousel h1 {
    color: #ffffff;
	text-shadow: 2px 2px 2px #000000;
}

#hero-carousel h2 {
    color: #ffffff;
	text-shadow: 2px 2px 2px #000000;
}

#hero-carousel .item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 1020px;
    margin-top: -20px;
}

#hero-carousel .item>.inner-container {
    position: relative;
    text-align: center;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}

#hero-carousel .carousel-control.left,
#hero-carousel .carousel-control.right {
    background-image: none;
}

#hero-carousel .carousel-control .left {
    left: 0;
    position: absolute;
    top: calc(50% - 30px);
}

#hero-carousel .carousel-control .right {
    position: absolute;
    right: 0;
    top: calc(50% - 30px);
}

#hero-carousel .btn-clear {
	background-color: #ffffff;
	color: #005794;
}

.carousel-indicators {
    bottom: 55px;
    left: 20px;
    width: auto;
    margin-left: 0;
}

.carousel-indicators li {
    background-color: #dcdcdc;
    border: none;
    margin: 0;
}

.carousel-indicators .active {
    height: 10px;
    width: 10px;
}

.solutions-section {
    color: #ffffff;
    margin: -47px auto 50px auto;
	min-height: 525px;
}

.solutions-section a {
    color: #ffffff;
}

.btn-clear:hover a,
.solutions-section a:hover {
    color: #005794;
}

.solutions-section>.row>div {
    height: 380px;
    transition: height;
    transition: height 0.5s;
}

.solutions-section>.row>div:hover {
    height: 460px;
    transition: height 0.5s;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.solutions-section>.row>div .hid {
    display: none;
}

.solutions-section>.row>div:hover .hid {
    display: block;
}

.solutions-section>.row>div .vis {
    display: block;
}

.solutions-section>.row>div:hover .vis {
    display: none;
}

.solutions-section>.row div:nth-child(odd) .inner-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 115px 15px 20px 15px;
    width: 100%;
}

.solutions-section>.row div:nth-child(even) .inner-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 115px 15px 20px 15px;
    width: 100%;
}

.solutions-section .mechanical {
    background-image: url(/wp-content/uploads/2018/01/service_mechanical-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solutions-section .mechanical:before {
    content: url(/wp-content/uploads/2017/07/service_mechanical-bt.png);
    position: absolute;
    top: -47px;
    left: 0;
    max-width: 100%;
    overflow: hidden;
    z-index: 1000;
}

.solutions-section .chemical {
    background-image: url(/wp-content/uploads/2018/01/service_chemical-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solutions-section .chemical:before {
    content: url(/wp-content/uploads/2017/07/service_chemical-bt.png);
    position: absolute;
    top: -47px;
    left: 0;
    max-width: 100%;
    overflow: hidden;
    z-index: 1000;
}

.solutions-section .other {
    background-image: url(/wp-content/uploads/2018/01/service_other-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solutions-section .other:before {
    content: url(/wp-content/uploads/2017/07/service_other-bt.png);
    position: absolute;
    top: -47px;
    left: 0;
    max-width: 100%;
    overflow: hidden;
    z-index: 1000;
}

.team-section {
    margin: 15px auto;
    position: relative;
    text-align: center;
}

.home .team-section h1 {
    color: #005794;
    text-align: center;
}

.team-section .inner-container {
    background: #ffffff;
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.15);
    height: 465px;
    padding: 60px;
    position: relative;
    left: 10%;
    max-width: 735px;
}

.team-section .inner-container ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

.team-section .btn-green {
    display: block;
    margin: 0 auto;
    width: 192px;
}

.popular-section {
    margin: 0 auto 100px auto;
}

.popular-section h1 {
    color: #005794;
}

.popular-section>.row:nth-child(1) {
    margin: 65px auto 65px auto;
    max-width: 515px;
}

#application-carousel {
    color: #ffffff;
}

#application-carousel h1 {
    font-size: 22px;
    margin-top: 65px;
    min-height: 44px;
}

#application-carousel .vis {
    position: relative;
}

#application-carousel .item .inner-container {
    max-width: 315px;
    margin: 50px auto 0 auto;
}

#application-carousel .item .inner-container .hid {
    background-color: rgba(176, 210, 53, 0.94);
    bottom: 50px;
    height: 6px;
    padding: 0;
    position: absolute;
    transition: 0.75s;
    width: 100%;
}

#application-carousel .item .inner-container .hid img {
    margin: 0 auto;
}

#application-carousel .item .inner-container .hid>* {
    opacity: 0;
    transition: 0.75s;
}

#application-carousel .item .inner-container:hover .hid {
    border-radius: 25px;
    height: 100%;
    padding: 60px 25px 50px 25px;
    transition: 0.75s;
}

#application-carousel .item .inner-container:hover .hid>* {
    opacity: 1;
    transition: 0.75s;
}

#application-carousel .carousel-control.left,
#application-carousel .carousel-control.right {
    background-image: none;
}

#application-carousel .carousel-control .left {
    left: 0;
    position: absolute;
    top: calc(50% - 30px);
}

#application-carousel .carousel-control .right {
    position: absolute;
    right: 0;
    top: calc(50% - 30px);
}

.footer-section a {
    color: #ffffff;
}

.footer-section a:hover,
.footer-section a:active,
.footer-section a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.footer-section .fs-1 {
    position: relative;
    z-index: 200;
}

.footer-section .fs-1 .fs-1a div:first-child {
    color: #ffffff;
    background: #005794;
    height: 175px;
    padding: 0 85px 0 0;
    max-width: 1015px;
}

.footer-section .fs-1 .fs-1a div:first-child h1 {
    margin: 0 auto;
    padding: 55px 0;
}

.footer-section .fs-1 .fs-1a div:last-child {
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    color: #ffffff;
    background: #005794;
    font-size: 20px;
    font-weight: 300;
    height: 175px;
    width: 260px;
    padding: 19px 15px;
}

.footer-section .fs-2>div {
    padding: 0;
}

.footer-section .fs-2 img {
    margin-top: -80px;
    position: relative;
    z-index: 100;
}

.footer-section .fs-3:before {
    content: url(/wp-content/uploads/2017/07/footer-bt.png);
    display: block;
    overflow: hidden;
    position: absolute;
    top: -109px;
    width: 100%;
    z-index: 200;
}

.footer-section .fs-3,
.footer-section .fs-4 {
    background-color: #005794;
    color: #ffffff;
    position: relative;
}

.footer-section .fs-4 {
    padding: 50px 0 40px 0;
}

.footer-section .fs-4 h1 {
    font-size: 30px;
}

.footer-section .fs-4 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section .fs-4a>div:first-child:before,
.footer-section .fs-4a>div:last-child:before {
    background: #ffffff;
    border-radius: 5px;
    content: "";
    display: block;
    height: 135px;
    left: -5px;
    position: absolute;
    top: 0;
    width: 4px;
}

.mobile-navbar {
    display: none;
}


/*--------------------------------------------------------------
13.1 Navigation
--------------------------------------------------------------*/

#primary-bootstrap-menu.navbar-default {
    font-size: 20px;
    background-color: #fff;
    border-width: 0;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}

#primary-bootstrap-menu.navbar-default .navbar-nav>li>a {
    color: #4c4c4c;
    background-color: transparent;
    padding: 10px 25px;
}

#primary-bootstrap-menu.navbar-default .navbar-nav>li>a:hover,
#primary-bootstrap-menu.navbar-default .navbar-nav>li>a:focus {
    color: #ffffff;
    background-color: #005794;
    border-radius: 30px;
}

#primary-bootstrap-menu.navbar-default .navbar-nav>.active>a,
#primary-bootstrap-menu.navbar-default .navbar-nav>.active>a:hover,
#primary-bootstrap-menu.navbar-default .navbar-nav>.active>a:focus {
    color: #ffffff;
    background-color: #005794;
    border-radius: 30px;
}

#primary-bootstrap-menu.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

#primary-bootstrap-menu.navbar-default .navbar-toggle:hover .icon-bar,
#primary-bootstrap-menu.navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #ffffff;
}

#primary-navigation {
    margin: 10px auto;
}

.caret {
    border: 0;
}

.dropdown .caret:before {
    content: url(/wp-content/uploads/2017/07/dropdown-arrow.png);
    display: inline-block;
    height: 4px;
    position: absolute;
    top: 5px;
    width: 8px;
}

.dropdown:hover .caret:before {
    content: url(/wp-content/uploads/2017/07/dropdown-arrow_hover.png);
    display: inline-block;
    height: 4px;
    position: absolute;
    top: 5px;
    width: 8px;
}

.dropdown.open .caret:before {
    content: url(/wp-content/uploads/2017/07/dropdown-arrow_hover.png);
    display: inline-block;
    height: 4px;
    position: absolute;
    top: 32px;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(-180deg);
    width: 8px;
}

.dropdown-menu {
    border: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
    padding: 0;
    top: 70px;
}

.dropdown-menu>.menu-item>a {
    font-size: 20px;
    max-height: 40px;
    padding: 6px 30px;
}

.dropdown-menu>.menu-item>a:hover {
    background-color: #b0d235;
    background-image: url(/wp-content/uploads/2017/07/nav-icon_before_hover.png);
    background-position: center left;
    background-repeat: no-repeat;
    color: #ffffff;
}

.dropdown-menu>.menu-item>a:before {
    content: url(/wp-content/uploads/2017/07/nav-icon_before.png);
    display: inline-block;
    height: 13px;
    margin-right: 14px;
    position: relative;
    width: 13px;
}

.dropdown-menu>.menu-item:hover>a:before {
    content: "";
}


/**
 * Controls the menu hamburger
**/

.toggle-section .navbar-toggle {
    border: 0;
    box-shadow: none;
    color: var(--secondary-color);
    position: relative;
    margin: 31px auto;
    text-shadow: none;
    z-index: 999;
}

.toggle-section .navbar-toggle:hover,
.toggle-section .navbar-toggle:focus {
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
}

.toggle-section .navbar-toggle .icon-bar {
    background-color: #005794;
    height: 4px;
    width: 30px;
    transition: all 0.2s;
}

.toggle-section .navbar-toggle:hover .icon-bar,
.toggle-section .navbar-toggle:focus .icon-bar {
    background-color: #005794;
}

.toggle-section .navbar-toggle .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.toggle-section .navbar-toggle .middle-bar {
    opacity: 0;
}

.toggle-section .navbar-toggle .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.toggle-section .navbar-toggle.collapsed .top-bar {
    transform: rotate(0);
}

.toggle-section .navbar-toggle.collapsed .middle-bar {
    opacity: 1;
}

.toggle-section .navbar-toggle.collapsed .bottom-bar {
    transform: rotate(0);
}

.btt-top {
    display: inline-block;
    height: 75px;
    width: 75px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(268, 68, 35, .8) url(./images/btt-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 999;
}

.btt-top:hover {
    background-color: rgba(268, 68, 35, 1);
}

.btt-top.cd-is-visible,
.btt-top.cd-fade-out,
.no-touch .btt-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.btt-top.btt-is-visible {
    /* The button becomes visible */
    visibility: visible;
    opacity: 1;
}

.btt-top.cd-fade-out {
    /* If the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}

.no-touch .btt-top:hover {
    background-color: rgba(268, 68, 35, 1);
    opacity: 1;
}


/*--------------------------------------------------------------
13.2 Inner Pages
--------------------------------------------------------------*/

.page-template-default .content-area {
    margin: 65px auto 110px auto;
    max-width: 1170px;
}

.page-template-default .navigation-section .ns-2>div,
.page-template-page-mechanical .navigation-section .ns-2>div,
.page-template-page-chemical .navigation-section .ns-2>div,
.page-template-page-other .navigation-section .ns-2>div,
.page-template-page-solutions .navigation-section .ns-2>div,
.page-template-page-success .navigation-section .ns-2>div {
    height: 470px;
}

.page-template-default .navigation-section .ns-2 h1,
.page-template-page-mechanical .navigation-section .ns-2 h1,
.page-template-page-chemical .navigation-section .ns-2 h1,
.page-template-page-other .navigation-section .ns-2 h1,
.page-template-page-solutions .navigation-section .ns-2 h1,
.page-template-page-success .navigation-section .ns-2 h1 {
    color: #ffffff;
    position: relative;
    text-align: center;
    top: 60%;
    transform: perspective(1px) translateY(-50%);
}

.page-template-default .navigation-section:before,
.page-template-page-mechanical .navigation-section:before,
.page-template-page-chemical .navigation-section:before,
.page-template-page-other .navigation-section:before,
.page-template-page-solutions .navigation-section:before,
.page-template-page-success .navigation-section:before {
    bottom: -25px;
    content: url(/wp-content/uploads/2017/07/page-bt.png);
    display: block;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 200;
}

.page-template-page-mechanical .team-section,
.page-template-page-chemical .team-section,
.page-template-page-other .team-section,
.page-template-page-solutions .team-section {
    height: 800px;
}

.page-template-page-mechanical .team-section,
.page-template-page-chemical .team-section,
.page-template-page-other .team-section,
.page-template-page-solutions .team-section {
    background-image: url(/wp-content/uploads/2017/07/mechanical-featured.png);
	background-repeat: no-repeat;
}

.page-template-page-chemical .team-section {
    background-image: url(/wp-content/uploads/2018/01/chemical-featured.png);
	background-repeat: no-repeat;
}

.page-template-page-solutions .team-section {
    background-image: url(/wp-content/uploads/2017/07/m-filter-featured.png);
}

.page-template-page-mechanical .popular-section>.row:nth-child(1),
.page-template-page-chemical .popular-section>.row:nth-child(1),
.page-template-page-other .popular-section>.row:nth-child(1),
.page-template-page-solutions .popular-section>.row:nth-child(1),
.page-template-page-success .popular-section>.row:nth-child(1) {
    max-width: 675px;
}

.page-template-page-mechanical .solutions-section .other:before,
.page-template-page-chemical .solutions-section .other:before,
.page-template-page-mechanical .solutions-section .chemical:before,
.page-template-page-other .solutions-section .chemical:before,
.page-template-page-chemical .solutions-section .mechanical:before,
.page-template-page-other .solutions-section .mechanical:before,
.page-template-page-solutions .solutions-section .mechanical:before,
.page-template-page-solutions .solutions-section .chemical:before,
.page-template-page-solutions .solutions-section .other:before,
.page-template-page-success .solutions-section .mechanical:before,
.page-template-page-success .solutions-section .chemical:before,
.page-template-page-success .solutions-section .other:before {
    content: "";
}

.page-section .ps-1 {
	font-size: 17px;
}

.page-template-page-mechanical .page-section,
.page-template-page-chemical .page-section,
.page-template-page-other .page-section,
.page-template-page-solutions .page-section,
.page-template-page-success .page-section {
    margin: 65px auto 110px auto;
}

.page-template-page-mechanical .page-section .ps-1>div:before,
.page-template-page-chemical .page-section .ps-1>div:before,
.page-template-page-other .page-section .ps-1>div:before {
    background: #b0d235;
    border-radius: 5px;
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    position: absolute;
    top: 0;
    width: 4px;
}

.page-template-page-solutions .team-section .inner-container {
    height: 305px;
	padding: 60px 75px 60px 75px;
	text-align: left;
}

.entry-content:before,
.page-template-page-solutions .page-section .ps-1>div.col-sm-9:before {
    background: #b0d235;
    border-radius: 5px;
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    position: absolute;
    top: 0;
    width: 4px;
}

.page-template-page-solutions .team-section .inner-container:before {
    background: #b0d235;
    border-radius: 5px;
    content: "";
    display: block;
    height: 60%;
    left: 45px;
    position: absolute;
    top: 20%;
    width: 4px;
}

.page-template-page-solutions .product-section {
    margin: 0 auto 110px auto;
}

.page-template-page-solutions .product-section .ps-1 {
    margin: 0 auto 80px auto;
    position: relative;
}

.page-template-page-home .team-section>a,
.page-template-page-solutions .product-section .ps-1>a {
    position: absolute;
    top: -100px;
}

.page-template-page-solutions .product-section h1 {
    border-bottom: 4px solid #005794;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0 0 40px 0;
    margin: 0 0 50px 0;
}

.page-template-page-success .page-section .ps-1 {
    margin: 0 auto 80px auto;
}

.page-template-page-success .btn-green {
    float: right;
}

.page-template-page-success .ps-2 .btn-green:first-child {
    margin-right: 15px;
}

.page-template-page-success .ps-2 .hid {
    display: none;
}

.page-template-page-success .btn-blue {
    margin: 0 25px;
}

.page-template-page-success .btn-blue.active:after,
.page-template-page-success .btn-blue.active:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.page-template-page-success .btn-blue.active:after {
    border-color: rgba(0, 87, 148, 0);
    border-top-color: #005794;
    border-width: 20px;
    margin-left: -20px;
}

.page-template-page-success .btn-blue.active:before {
    border-color: rgba(0, 87, 148, 0);
    border-top-color: #005794;
    border-width: 26px;
    margin-left: -26px;
}

.page-template-page-success .ps-2 {
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.15);
    height: 345px;
    margin: 0 auto 40px auto;
    max-width: 1560px;
}

.page-template-page-success .ps-2>div:first-child {
    background: #00a5df;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    height: 100%;
    text-align: center;
}

.page-template-page-success .ps-2>div:first-child img {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}

.page-template-page-success .ps-2>div:last-child {
    padding: 20px 20px 20px 60px;
    max-height: 100%;
}

.page-template-page-success .page-section .ps-2>div:last-child:before {
    background: #b0d235;
    border-radius: 5px;
    content: "";
    display: block;
    height: 90%;
    left: 30px;
    position: absolute;
    top: 5%;
    width: 4px;
}

.page-template-page-success .ps-2>div:last-child h1 {
    font-size: 50px;
    line-height: 55px;
}

.page-template-page-success .popular-section {
    margin: 100px auto;
}

.page-id-19 .footer-section .fs-1a {
    display: none;
}

.page-id-19  .footer-section .fs-2 img {
    margin: 0 auto;
}

.page-template-page-chemical .solutions-section .mechanical {
	border-right: 10px solid #005794;
}

/*--------------------------------------------------------------
13.3 Helper Classes
--------------------------------------------------------------*/


/**
 * Bootstrap Show 4
**/

.carousel-control {
    width: 4%;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
}

@media (max-width: 767px) {
    .carousel-inner .active.left {
        left: -100%;
    }
    .carousel-inner .next {
        left: 100%;
    }
    .carousel-inner .prev {
        left: -100%;
    }
    .active > div {
        display: none;
    }
    .active > div:first-child {
        display: block;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .carousel-inner .active.left {
        left: -50%;
    }
    .carousel-inner .next {
        left: 50%;
    }
    .carousel-inner .prev {
        left: -50%;
    }
    .active > div {
        display: none;
    }
    .active > div:first-child {
        display: block;
    }
    .active > div:first-child + div {
        display: block;
    }
}

@media (min-width: 992px) {
    .carousel-inner .active.left {
        left: -16.7%;
    }
    .carousel-inner .next {
        left: 16.7%;
    }
    .carousel-inner .prev {
        left: -16.7%;
    }
}

.carousel.fade .carousel-inner .item {
    transition-property: opacity;
}


/**
 * Bootstrap Fade
**/

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


/**
 * Each Class Is Commented Out To Disable It. Uncomment To Enable.
 **/


/*-- Centers Navigation

.navbar .navbar-nav {
    display: inline-block;
    float: none;
    vertical-align: top;
}
.navbar .navbar-collapse {
    text-align: center;
}
--*/


/*-- Disables The 15px Padding Left & Right On Below Columns

.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

--*/


/*-- Allows Columns To Be Equal Height Regardless Of Content (In Testing)

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

--*/


/*-- Allows The Centering Of Columns Regardless Of Width

.row-centered {
    text-align: center;
}
.col-centered {
    display: inline-block;
    float: none;
}

--*/


/*-- Allows The Adjustment Of The Mobile Breakpoint 

@media (max-width: -Insert Desired Value-px) {
    .navbar-header {
        float: none;
    }
    .navbar-left,
    .navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in {
        display: block !important;
    }
}

--*/


/*--------------------------------------------------------------
13.4 Plugins
--------------------------------------------------------------*/

input[type="button"],
input[type="reset"],
input[type="submit"] {
    color: #4c4c4c;
    background-color: transparent;
    border-radius: 25px;
    border-color: #4c4c4c;
    box-shadow: none;
    outline: none!important;
    padding: 5px 40px;
    text-decoration: none;
}

input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    color: #ffffff;
    background-color: #4c4c4c;
    box-shadow: none;
}


/*--------------------------------------------------------------
13.5 Media Calls
--------------------------------------------------------------*/

@media only screen and (max-width: 1800px) {
    .solutions-section h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1700px) {
    .solutions-section .other:before {
        top: -43px;
    }
}

@media only screen and (max-width: 1600px) {
    .page-template-page-success .ps-2 {
        height: 445px;
    }
    .footer-section .fs-1 .fs-1a div:first-child {
        max-width: 475px;
    }
    .solutions-section .other:before {
        top: -42px;
    }
}

@media only screen and (max-width: 1500px) {
    .solutions-section .other:before {
        top: -42px;
    }
}

@media only screen and (max-width: 1400px) {
    #primary-bootstrap-menu.navbar-default .navbar-nav>li>a {
        font-size: 16px;
        padding: 10px 15px;
    }
    .solutions-section .chemical:before {
        top: -49px;
    }
}

@media only screen and (max-width: 1300px) {
    .solutions-section .chemical:before {
        top: -52px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-section .fs-4 h1 {
        font-size: 20px;
    }
    .navigation-section .ns-1 .logo {
        top: calc(50% - 27px);
        max-width: 175px;
        left: 15px;
    }
    .solutions-section .other:before {
        top: -39px;
    }
}

@media only screen and (max-width: 1100px) {
    .solutions-section h1 {
        font-size: 30px;
    }
    #primary-bootstrap-menu.navbar-default .navbar-nav>li>a {
        font-size: 15px;
        padding: 10px;
    }
}

@media only screen and (max-width: 1024px) {
    .footer-section .fs-4 .fs-4a>div {
        width: 25%;
    }
    #hero-carousel .item {
        height: 768px;
        margin-top: 0;
    }
    .solutions-section>.row>div {
        padding: 0;
    }
    .solutions-section .other:before,
    .solutions-section .chemical:before,
    .solutions-section .mechanical:before {
        content: '';
        border-top: 10px solid #b0d235;
        display: block;
        position: relative;
        top: 0;
    }
}

@media only screen and (max-width: 991px) {
    .page-template-page-success .btn-blue {
        border-radius: 0;
        font-size: 24px;
        padding: 15px;
        margin: 0 auto;
        width: 100%;
    }
    .page-template-page-success .ps-1>div {
        padding: 0;
    }
    .page-template-page-success .btn-blue.active:after,
    .page-template-page-success .btn-blue.active:before {
        border: 0;
    }
    .page-template-page-success .ps-2 {
        height: 545px;
    }
    .page-template-page-success .category-container h1 {
        font-size: 40px;
    }
    .page-template-page-solutions .page-section .ps-1>div:nth-child(2),
    .page-template-page-solutions .product-section .ps-1>div:nth-child(2) {
        width: 65%;
    }
    .page-template-page-solutions .page-section .ps-1>div:nth-child(1),
    .page-template-page-solutions .product-section .ps-1>div:nth-child(1) {
        width: 35%;
    }
    .footer-section .fs-1 .fs-1a div {
        border-radius: 0!important;
        max-width: none!important;
        width: 50%!important;
    }
    .footer-section .fs-2 img {
        margin-top: 0;
    }
    #hero-carousel h2 {
        font-size: 25px;
    }
    #hero-carousel h1 {
        font-size: 50px;
    }
    .navigation-section .ns-1>div {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin: 0 auto;
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    .solutions-section h1 {
        font-size: 25px;
    }
    .team-section .inner-container {
        left: 0;
        margin: 0 auto;
    }
    #primary-bootstrap-menu.navbar-default .navbar-nav>li>a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .solutions-section>.row>div .vis {
        display: none;
    }
    .solutions-section>.row>div .hid {
        display: block;
    }
    .solutions-section>.row>div:hover,
    .solutions-section>.row>div {
        border-radius: 0!important;
        height: auto;
    }
    .solutions-section>.row div:nth-child(even) .inner-container,
    .solutions-section>.row div:nth-child(odd) .inner-container {
        position: relative;
        padding: 20px 15px;
    }
    .footer-section .fs-1 .fs-1a div:first-child h1 {
        font-size: 50px;
        margin: 0 auto;
        padding: 60px 15px 60px 0;
    }
}

@media only screen and (max-width: 767px) {
	.page-template-page-chemical .team-section {
		background-position: center;
	}
	.page-template-page-chemical .solutions-section .mechanical {
		border-bottom: 10px solid #005794;
	}
    .navbar-nav .open .dropdown-menu {
        border-radius: 0;
    }
    ul {
        list-style: none;
        margin: 0 0 10px 0;
        padding: 0;
    }
    .page-template-page-success .ps-2>div:first-child img {
        top: initial;
        transform: none;
    }
    .page-template-page-success .ps-2 {
        height: auto!important;
    }
    .page-template-page-success .ps-2>div:first-child {
        background: #00a5df;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 0;
        height: auto;
        padding: 25px 15px;
        text-align: center;
    }
    .page-template-page-solutions img {
        margin: 0 auto 15px auto;
    }
	.page-section,
	.page-template-default .content-area,
    .page-template-page-solutions .page-section .ps-1>div:nth-child(2),
    .page-template-page-solutions .product-section .ps-1>div:nth-child(2),
    .page-template-page-solutions .page-section .ps-1>div:nth-child(1),
    .page-template-page-solutions .product-section .ps-1>div:nth-child(1) {
        text-align: center;
        width: 100%;
    }
    .team-section .inner-container ul {
        list-style-position: inside;
    }
    .page-template-page-home .team-section .inner-container {
        height: auto;
        text-align: center;
    }
    #hero-carousel .carousel-control .right,
    #hero-carousel .carousel-control .left {
        top: calc(50% + 45px);
    }
    #hero-carousel h2 {
        font-size: 20px;
    }
    #hero-carousel h1 {
        font-size: 40px;
    }
    .footer-section .fs-4 .fs-4a>div {
        margin: 15px auto;
        text-align: center;
        width: 100%;
    }
    .footer-section .fs-3 {
        padding: 25px 0 0 0;
    }
    .footer-section .fs-3:before {
        content: '';
    }
    .footer-section .fs-1 .fs-1a div:first-child {
        height: auto;
    }
    .footer-section .fs-1 .fs-1a div:first-child h1 {
        padding: 15px 0;
    }
    .footer-section .fs-1 .fs-1a div:first-child {
        padding: 0 15px;
    }
    .footer-section .fs-1 .fs-1a div {
        text-align: center;
        width: 100%!important;
    }
    .team-section {
        margin: 15px auto;
    }
    .solutions-section .other:before,
    .solutions-section .chemical:before,
    .solutions-section .mechanical:before {
        border-top: 0;
    }
    .solutions-section>.row>div {
        height: auto;
    }
    .solutions-section>.row div:nth-child(even) .inner-container,
    .solutions-section>.row div:nth-child(odd) .inner-container {
        position: relative;
        padding: 20px 15px;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        text-align: center;
    }
    #primary-bootstrap-menu.navbar-default .navbar-nav>li>a {
        font-size: 16px;
    }
    #primary-bootstrap-menu.navbar-default {
        top: initial;
        transform: none;
    }
    .navigation-section .ns-1>div {
        height: auto;
    }
    .navbar-desktop {
        display: none;
    }
    #primary-bootstrap-menu.navbar-default .navbar-nav {
        float: none;
        margin: 0 auto;
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .page-template-page-success .category-container h1 {
        font-size: 36px;
    }
    .footer-section .fs-1 .fs-1a div:first-child h1,
    .popular-section h1,
    .team-section h1 {
        font-size: 40px;
    }
    .carousel-control {
        width: 10%;
    }
}

@media only screen and (max-width: 475px) {
    h1 {
        font-size: 40px;
    }
    .team-section .inner-container {
        transform: none;
    }
    .team-section>.row>div {
        height: auto;
    }
    .page-template-page-success .ps-2 .btn-green:first-child {
        margin: 10px auto;
        width: 100%;
    }
    .page-template-page-success .category-container h1 {
        font-size: 28px;
    }
    .page-template-page-success .page-section .ps-2>div:last-child:before {
        display: none;
    }
    .page-template-page-success .ps-2>div:last-child {
        padding: 15px;
    }
    #hero-carousel .item {
        height: 100vh;
    }
    .team-section {
        margin: 45px auto;
    }
}

@media only screen and (max-width: 375px) {
    .popular-section {
        margin: 100px auto;
    }
}

@media only screen and (max-width: 320px) {}