/*RESET CSS*/ 
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: none;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: separate;
    border-spacing: 0
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: ""
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
 

blockquote,
q {
    quotes: none;
}

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

a {
    text-decoration: none;
    position: relative;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

audio,
video,
canvas {
    max-width: 100%;
}

html,
body {
    height: 100%;
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

a:hover {
    /*color: #d7b56d !important;*/
    text-decoration: none !important;
}

p {
    font-family: 'Fira Sans', sans-serif;
}

body {
    font-family: 'Fira Sans', sans-serif;
}

::selection {
    background-color: #000;
    color: #fff;
}

/*MAIN CSS*/

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 51;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  background-color: #fff;
  padding: 20px;
  background-image: url(../images/icons/scroll-top.svg);
  transform: translateY(-50%);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-to-top:hover:after{
  top: 32px;
  height: 36px;
}

.scroll-to-bottom{
  position: absolute;
  bottom: 0px;
  right: 50px;
  width: 35px;
  z-index: 999;
  writing-mode: vertical-rl;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; 
}

.scroll-to-bottom span {
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
}
.scroll-to-bottom .downArrow:after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 15px;
  width: 2px;
  height: 45px;
  background: #332684;
  /*animation: scrollBottomH 2s infinite;*/
}
.scroll-to-bottom a {
  padding: 100px 0;
  color: #333333;
  transition: all 0.5s ease;
}
.scroll-to-bottom a:hover {
  /*padding: 95px 0;*/
  color: #333333;
}

#main {
    height: auto;
    width: 100%;
    position: absolute;
    float: left;
    top: 0;
    left: 0;
    z-index: 2;
}

header {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: transparent;
    width: 100%;
    height: 90px;
    transition: top 0.2s ease-in-out;
}
.products-page header {
  background: #fff;
}

.header_inner {
    padding-left: 0;
    width: 90%;
    margin: 0 auto;
}

.logo-holder {
    float: left;
    position: relative;
    width: 210px;
    z-index: 21;
    top: 10px;
}

.logo-holder img {
    width: 100%;
}

.nav-button-holder {
    position: relative;
    z-index: 100;
    right: 20px;
    top: 20px;
    display: block;
    width: 40px;
    height: 40px;
    float: right;
    cursor: pointer;
}

.nav-button-holder > .nav-button span{
    float: left;
    width: 8px;
    height: 8px;
    background: #0F6CB1;
    border-radius: 50%;
    display: block;
    margin: 2px;
    transition: all 1s ease-in-out;
}

.nav-active .nav-button-holder > .nav-button span:nth-child(2), .nav-active .nav-button-holder > .nav-button span:nth-child(4),
.nav-active .nav-button-holder > .nav-button span:nth-child(6), .nav-active .nav-button-holder > .nav-button span:nth-child(8) {
  opacity: 0;
}


.nav-active {
  width: 100%;
  height: 100%;
}

.nav-holder ul {
    margin: 0;
    padding: 0;
}

.nav-holder ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    padding: 10px 20px;
}

.nav-holder ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 23px;
    height: 1px;
    background: #fffbdb;
    transition: .5s all;
}

.nav-holder ul li a:hover:before {
    transform: rotate(47deg);
    background: #d7b56d;
}

.nav-holder .active:before {
    transform: rotate(47deg);
    background: #d7b56d;
}

.nav-down {
    background-color: #fff;
}
header.smaller {
    background-color: #fff;
}
.nav-up {
  top: -90px;
}
a.scroll-link.active {
    color: #d7b56d;
}

.nav-holder ul li a:hover {
    color: #d7b56d;
}

.nav-holder ul li a {
    color: #fffbdb;
    text-decoration: none;
}


.nav {
  position: fixed;
  z-index: 98;
  top: 0;
}
.nav:before, .nav:after {
  content: "";
  position: fixed;
  right: 0;
  width: 100vw;
  height: 100vh;
  /*background: rgba(21, 21, 21, 0.6);*/
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -webkit-transform: translateX(0%) translateY(-100%);
          transform: translateX(0%) translateY(-100%);
}
.nav:after {
  background: rgb(255, 255, 255);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav:before {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.nav__content {
  position: fixed;
  visibility: hidden;
  overflow: hidden; 
  top: 50%;
  left: 0;
  margin-top: 40px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
}
.nav__list {
  padding: 0;
  margin: 0;
}
.nav__list-item {
  position: relative;
  display: block;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  opacity: 0;
  text-align: center;
  color: #fff;
  overflow: hidden; 
  font-size: 5vh;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3px;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
  margin-top: 0;
  margin-bottom: 0;
}
.nav__list-item a{ 
  position: relative;
  text-decoration: none;
  color: #0f6cb1;
  overflow: hidden; 
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; 
}

.nav__list-item a:hover:after{ 
  left: 0;
  opacity: 1;
}
.nav__list-item a:hover{
  color: #332684;
  text-decoration: none;
}
.nav__list-item.active-nav a{
  color: #332684;
}
.nav__list-item.active-nav a:after{ 
  left: 0;
  opacity: 1;
}

header.cd-header.is-fixed.smaller.nav-down {
    background-color: #fff;
}
header.smaller.nav-up {
  top: 0px;
}

body.nav-active {
  /*position: fixed;*/
  overflow: hidden;
}

body.nav-active .cursor.cursor-shadow {
    border: 2px solid #332684;
} 
body.nav-active .cursor.cursor-dot {
    background: #151515;
}

body.nav-active .nav__content {
  visibility: visible;
}
body.nav-active .cd-header.is-fixed {

}
body.nav-active .cd-header.is-visible {
}
body.nav-active .menu-icon__line {
  /*background-color: #fff;*/
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
}
body.nav-active .nav {
  visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
}
body.nav-active .nav:after {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}
body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(5) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(6) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(7) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(8) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(9) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(10) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}


#wrapper {
    height: 100%;
    margin-left: 0;
    vertical-align: top;
    /*position: relative;*/
    left: 0;
    top: 0;
    right: 0;
    z-index: 2;
    width: 100%;
}

.section-bg {
    float: left;
    width: 100%;
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.section {
    float: left;
    width: 100%;
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}
.products-page .section {
  padding: 140px 0 60px;
}

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 1;
    background-color: #0F6CB1;
    z-index: 999;
    text-align: center;
}

/* -------------- loader10 -------------- */

.box{
    display: inline-block;
    height: 100%;
    width: 100%;
    float:left;
    position: relative;
    /*margin:0 -4px -5px -2px;*/
    transition: all .2s ease;
}


.loader10:before{
    content: "";
    position: absolute;
    top: 0px;
    left: -25px;
    height: 12px;
    width: 12px;
    border-radius: 12px;
    -webkit-animation: loader10g 3s ease-in-out infinite;
            animation: loader10g 3s ease-in-out infinite;
}

.loader10{
    position: relative;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    border-radius: 12px;
    -webkit-animation: loader10m 3s ease-in-out infinite;
            animation: loader10m 3s ease-in-out infinite;
}


.loader10:after{
    content: "";
    position: absolute;
    top: 0px;
    left: 25px;
    height: 12px;
    width: 12px;
    border-radius: 10px;
    -webkit-animation: loader10d 3s ease-in-out infinite;
            animation: loader10d 3s ease-in-out infinite;
}

@-webkit-keyframes loader10g{
    0%{background-color: rgba(255, 255, 255, .2);}
    25%{background-color: rgba(255, 255, 255, 1);}
    50%{background-color: rgba(255, 255, 255, .2);}
    75%{background-color: rgba(255, 255, 255, .2);}
    100%{background-color: rgba(255, 255, 255, .2);}
}
@keyframes loader10g{
    0%{background-color: rgba(255, 255, 255, .2);}
    25%{background-color: rgba(255, 255, 255, 1);}
    50%{background-color: rgba(255, 255, 255, .2);}
    75%{background-color: rgba(255, 255, 255, .2);}
    100%{background-color: rgba(255, 255, 255, .2);}
}

@-webkit-keyframes loader10m{
    0%{background-color: rgba(255, 255, 255, .2);}
    25%{background-color: rgba(255, 255, 255, .2);}
    50%{background-color: rgba(255, 255, 255, 1);}
    75%{background-color: rgba(255, 255, 255, .2);}
    100%{background-color: rgba(255, 255, 255, .2);}
}
@keyframes loader10m{
    0%{background-color: rgba(255, 255, 255, .2);}
    25%{background-color: rgba(255, 255, 255, .2);}
    50%{background-color: rgba(255, 255, 255, 1);}
    75%{background-color: rgba(255, 255, 255, .2);}
    100%{background-color: rgba(255, 255, 255, .2);}
}

@-webkit-keyframes loader10d{
    0%{background-color: rgba(255, 255, 255, .2);}
    25%{background-color: rgba(255, 255, 255, .2);}
    50%{background-color: rgba(255, 255, 255, .2);}
    75%{background-color: rgba(255, 255, 255, 1);}
    100%{background-color: rgba(255, 255, 255, .2);}
}
@keyframes loader10d{
    0%{background-color: rgba(255, 255, 255, .2);}
    25%{background-color: rgba(255, 255, 255, .2);}
    50%{background-color: rgba(255, 255, 255, .2);}
    75%{background-color: rgba(255, 255, 255, 1);}
    100%{background-color: rgba(255, 255, 255, .2);}
}


/*------ Home -------------------------------------------------*/

.hero-wrap {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-wrap .overlay {
    z-index: 2;
}

.hero-wrap-item {
    float: left;
    position: absolute;
    z-index: 12;
}

.center-item {
    top: 47%;
    right: 19%;
}

.hero-wrap-item h2 {
    color: #fff;
    font-size: 42px;
    font-family: 'pangramlight';
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sliderMain {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.sliderMain:before {
    position: absolute; top: 0; left: 0; content: ''; 
    width: 100%;
    height: 269px;
    z-index: 1;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0.84)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
    opacity: .5;
}

.slider {
  width: 100%;
  margin: 0px auto 0 auto;
}

.slick-slide {
  height: 100%;
  overflow: hidden;
}

.arrows {
  margin-top: 10px;
  text-align: center;
}

.slick-list {
  border-radius: 0;
}

.overflow-hidden {
  overflow: hidden;
  position: absolute;
  top: 0;
  height: 100vh;
}
video {
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    object-fit: cover;
    z-index: -1;
}

@media (max-width: 767px) {
  video {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100vh;
}
}

.slide-video {
    position: relative;
    height: 100vh !important;
}
.slide-video:after{
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.39);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.banner_txt {
    position: absolute;
    z-index: 99;
    bottom: 0;
    background: rgba(15, 108, 177, 0.78);
    padding: 50px;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.banner_txt h1{
    color: #fff;
}
.banner_txt .cmn_link {
    position: absolute;
    right: 0;
    background: #fff;
    width: 300px;
    height: 100%;
    bottom: 0;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
  .banner_txt {
    width: 100%;
    padding: 30px;
    padding-bottom: 70%;
  }
  .banner_txt h1 {
    font-size: 2rem;
  }
  .banner_txt h1 br{
    display: none;
  }
  .banner_txt .cmn_link {
    position: relative;
  }
}

.wrapper {
  height: 50%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}
.wrapper-light {
  background: white;
}
.wrapper-dark {
  background: #0c0c0c;
}
.wrapper .btn-border-dark,
.wrapper .btn-border-light {
  margin: auto;
}
.wrapper .btn-border-dark .btn-border-dark-inner a,
.wrapper .btn-border-dark .btn-border-light-inner a,
.wrapper .btn-border-light .btn-border-dark-inner a,
.wrapper .btn-border-light .btn-border-light-inner a {
  text-decoration: none;
}

.wrapper .btn-border-dark {
  position: relative;
  width: 205px;
  height: 50px;
  background: none;
  border: 1px solid #9BAEC8;
  text-align: center;
  cursor: pointer;
  transition: 0.75s ease;
}

@media (max-width: 767px) {
  .wrapper .btn-border-dark {
    border: 0;
  }
}

.wrapper .btn-border-dark .btn-border-dark-inner {
  height: 50px;
}
.wrapper .btn-border-dark .btn-border-dark-inner a {
  color: #9BAEC8;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  line-height: 50px;
}
.wrapper .btn-border-dark:before {
  position: absolute;
  width: 0;
  height: 1px;
  content: '';
  background: #0395E5;
  top: -1px;
  left: -2px;
  transition: 0.15s width ease 0.45s;
  -web-kit-transition: 0.15s width ease 0.45s;
}
.wrapper .btn-border-dark:after {
  position: absolute;
  width: 1px;
  height: 0;
  content: '';
  background: #0395E5;
  top: -1px;
  right: -2px;
  transition: 0.15s height ease 0.3s;
  -web-kit-transition: 0.15s height ease 0.3s;
}
.wrapper .btn-border-dark-inner:before {
  position: absolute;
  width: 1px;
  height: 0;
  content: '';
  background: #0395E5;
  bottom: -2px;
  left: -2px;
  transition: 0.15s height ease 0s;
  -web-kit-transition: 0.15s height ease 0s;
}
.wrapper .btn-border-dark-inner:after {
  position: absolute;
  width: 0;
  height: 1px;
  content: '';
  background: #0395E5;
  bottom: -2px;
  right: -2px;
  transition: 0.15s width ease 0.15s;
  -web-kit-transition: 0.15s width ease 0.15s;
}
.wrapper .btn-border-dark:hover {
  border-color: transparent;
  background: none;
}
.wrapper .btn-border-dark:hover:before {
  width: 206px;
  transition: 0.15s width ease 0s;
  -web-kit-transition: 0.15s width ease 0s;
}
.wrapper .btn-border-dark:hover:after {
  height: 51px;
  transition: 0.15s height ease 0.15s;
  -web-kit-transition: 0.15s height ease 0.15s;
}
.wrapper .btn-border-dark:hover .btn-border-dark-inner a {
  color: #0395E5;
}
.wrapper .btn-border-dark:hover .btn-border-dark-inner:after {
  width: 206px;
  transition: 0.15s width ease 0.3s;
  -web-kit-transition: 0.15s width ease 0.3s;
}
.wrapper .btn-border-dark:hover .btn-border-dark-inner:before {
  height: 51px;
  transition: 0.15s height ease 0.45s;
  -web-kit-transition: 0.15s height ease 0.45s;
}


.hero-wrap-item h2 span {
    display: block;
    font-family: 'pangramlight';
}

.hero-wrap-item h3 {
    position: relative;
    font-family: 'cargan-medium';
    text-align: right;
    color: #d7b56d;
    text-transform: uppercase;
    font-size: 58px;
    margin-bottom: -10px;
    padding-bottom: 0;
}

.hero-link {
    position: relative;
    float: right;
    margin-top: 10px;
    display: inline-table;
    padding: 2px 6px 4px 6px;
    font-size: 13px;
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.main_image_slider {
    width: 100%;
    height: 100%
}

.slider_background {
    width: 100%;
    height: 100vh;
    background-size: cover;
}

.hero-scroll-link {
    position: absolute;
    bottom: 20px;
    right: 5%;
    width: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 12px;
    margin-left: -20px;
    text-align: center;
    z-index: 9;
    transition: all 1s;
}

.section-title {
    position: relative;
    color: #fefefe;
}

.no-line.section-title:after {
    display: none;
}

.margin-top-0 {
    margin-top: 0 !important;
}

.section-title h2 {
    font-size: 40px;
}

@media (max-width: 640px) {
  .section-title h2 {
    font-size: 24px;
  }
}

.section-title h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}
.dark .section-title h3 {
    color: var(--white);
}

.light .section-title h3 {
    color: var(--dark);
}

.light .section-title .blue-txt {
    color: #066AB4;
    font-size: 3rem;
}

@media (max-width: 768px) {
  .light .section-title .blue-txt br{
    display: none;
  }
  .light .section-title .blue-txt {
    font-size: 2rem;
  }
}

.section-title h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 0;
}

.parallax-inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.parallax-inner .bg {
    background-size: cover;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: repeat;
    background-origin: content-box;
}

.dark-bg .overlay {
    opacity: 0.7;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
}

.section-product-image {
  position: relative;
  padding: 100px;
  border: 1px solid #0F6CB1;
}
.section-product-image .pr-knowmore {
  display: table;
  position: absolute;
  background: #0F6CB1;
  right: -100px;
  top: 50%;
  width: 200px;
  height: 40%;
  padding: 20px;
  vertical-align: middle;
  text-align: center;
  transform: translateY(-50%);
}
.section-product-image .pr-arrow img {
  width: 35px;
}
.section-product-image .pr-knowmore h3, .section-product-image .pr-knowmore h4 {
  color: #fff;
}
.section-product-image .pr-knowmore h4 {
  font-size: 1rem;
  margin-top: 20px;
}

.path {
  stroke-dasharray: 100;
  animation: dash 5s linear;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

@media (max-width: 767px) {
  .section-product-image {
    padding: 40px;
    overflow: hidden;
  }
  .section-product-image .pr-knowmore {
    position: relative;
    background: #0F6CB1;
    right: 0;
    top: 100%;
    width: 100%;
    height: 40%;
    padding: 20px;
    vertical-align: middle;
    text-align: center;
    transform: translateY(20%);
  }
}
.section-heading {
    float: left;
    font-size: 18px;
    position: relative;
    text-align: center;
    min-width: 120px;
    margin: 20px 10px;
}

.dark .section-heading {
  color: #fff;
}
.light .section-heading {
  color: #58595B;
}

.section-heading:before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0px;
    left: -10px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transition: all 1s;
}
.light .section-heading:before {
    border-color: #0F6CB1;
}
.section-heading:after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0px;
    right: -10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: all 1s;
}
.light .section-heading:after {
    border-color: #0F6CB1;
}
.section-heading span:before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 0px;
    left: -10px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transition: all 1s;
}
.light .section-heading span:before {
    border-color: #0F6CB1;
}

.section-heading span:after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 0px;
    right: -10px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: all 1s;
}
.light .section-heading span:after {
    border-color: #0F6CB1;
}


section:hover .section-heading:before,
section:hover .section-heading:after,
section:hover .section-heading span:before,
section:hover .section-heading span:after {
    width: 100%;
    height: 100%;
}

.about-us .section-title,
.about-us .section-paragraph {
    color: #fefefe;
}

.light .section-title {
    color: #2b2a29;
}

.light .section-paragraph {
    font-weight: normal;
    color: #2b2a29;
    margin-top: 20px;
}
 
.dark .section-title {
    color: #fff;
}

.dark .section-paragraph {
    text-align: left;
    color: #fff;
    margin-top: 0px;
    padding-right: 70px;
}

@media (max-width: 767px) {
    .dark .section-paragraph {
        padding-right: 0px;
    }
}

.dark .content-bottom .section-title:after {
    display: none;
}

.about .section-paragraph p{
    font-weight: 300;
}
.about .num h4{
    font-weight: 600;
    color: #066AB4;
    font-size: 3rem;
}
.about .num h6{
    font-weight: 400;
    color: #58595B;
    font-size: 1.5rem;
}

.about .know-more{
    position: relative;
    color: #fff;
}
.about .know-more:before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/icons/button-arrow-white.png) no-repeat;
    background-size: contain;
    width: 25px;
    height: 15px;
    left: 0;
    opacity: 0;
    transition: all .5s;
}
.know-more-wrap:hover .know-more:before {
  opacity: 1;
  left: 110%;
}

.about .parallax-inner .bg, .blog .parallax-inner .bg,
.products-page .about .parallax-inner .bg {
    background: #0F6CB1;
    background-position: center;
    background-size: cover;
    height: 150%;
    top: 0;
}
.products-page .about .parallax-inner .bg {
  height: 100%;
}

.about .parallax-inner {
    right: 0;
}
.about .width-50 {
    width: 50%;
}

.about .section-title h3{
    font-size: 3rem;
}

.about .section-paragraph {
    font-weight: 300;
}

.about .border-right {
    position: absolute;
    left: 50%;
    content: '';
    width: 1px;
    height: 345px;
    background: #fff;
}
.products-page .about .border-right {
  left: 45%;
  top:26%;
}

@media (max-width: 768px) {
  .about .border-right {
    display: none;
  }
  .about .section-title h3 {
    font-size: 2rem;
  }
  .about .section-title h3 br {
    display: none;
  }
}

/*Testimonials*/
#testimonials {
    background: #f5f5f5;
}
.testimonial-single {
  background: #ffffff;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.06);
  padding: 20px;
  margin: 20px 50px 0px 0px;
  -moz-transition: .4s;
  -webkit-transition: .4s;
  transition: .4s;
}
.testimonial-single:hover {
  background: #0F6CB1;
  color: #fff;
}
.testimonial-single .fa-quote-left, .testimonial-single .fa-quote-right {
  position: relative;
  padding-right: 10px;
  font-size: 20px;
  color: #0f6cb1;
}

.testimonial-single .fa-quote-right {
  padding-left: 10px;
}
.testimonial-single:hover .fa-quote-left, .testimonial-single:hover .fa-quote-right {
  color: #fff;
}

.client-info {
  position: relative;
  padding-left: 118px;
  margin-bottom: 30px;
}

.client-info .img {
    position: absolute;
    left: 0;
    top: -40px;
    width: 100px;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}
 

/*Careers*/
.careers .image-wrap {
  overflow: hidden;
}
.careers .image-wrap img {
  transition: all .5s ease-in-out;
}
.careers:hover .image-wrap img {
  transform: scale(1.1);
}

/* background layer */
div#parallax-bg{
    position: relative;
    width: 100%;
    top: 0px;
    left: 0; 
    right: 0;
    margin-left: 0px; 
    z-index: 3;
    overflow: hidden;
}
/* foreground */
div#parallax-bg div{
    background-repeat:no-repeat;
    position:relative;
    display:block;
    overflow:hidden;
}
div#bg-3-1{
    background:url('../images/bg/home-about-bg.jpg') no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
    width:100%;
    height:757px;
    top: 0px;
    right:0;
}

/*PROCESS*/
.process .width-50 {
    width: 50%
}

.process .parallax-inner {
    right: 0;
}

.process .parallax-inner .bg {
    background: url(../images/process-bg-home.jpg);
    /*background-attachment: fixed;*/
    background-size: cover;
    height: 150%;
    top: -25%;
}

.process .content {
    background: rgba(15, 108, 177, 0.68);
}

.process .content-bottom .parallax-inner .bg {
    background: url(../images/bg/process-bg-home.jpg);
}

.process .arrow {
    display: block;
    margin: 20px 0;
}

.process-image {
    overflow: hidden;
    border-top-left-radius: 10%;
    border-bottom-right-radius: 10%;
    width: 80%;
    height: 450px;
}

@media (max-width: 768px) {
  .process-image {
    width: 100%;
    height: 350px;
    margin: 20px 0;
  }
}
.process-image img {
    transform: scale(1);
    transition: all 2s ease-in-out;
}
.binding-pvc-left-align{
  position: relative;
  right: 17rem;
}
.binding-pvc-cu-wire{
  position: relative;
  bottom: 14rem;
  right: 10rem;
}
.process-image:hover img {
    transform: scale(1.1);
    /*filter: blur(5px) grayscale(.5);*/
}

/* ============== PRODUCTS SECTION =============== */

.products .content {
    background: rgba(253, 253, 253, 0.31);
}

.products .parallax-inner .bg {
    background: url(../images/bg/home-products-bg.jpg) no-repeat;
    /*background-attachment: fixed;*/
    background-position: bottom;
}

.products .border-right {
    position: absolute;
    top: 0;
    left: 50%;
    content: '';
    width: 2px;
    height: 300px;
    background: #0F6CB1;
}

.product-slider {
    margin: 100px 0 0;
}

.product-slider .product-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  border: 1px solid #0F6CB1;
}

@media (max-width: 1440px) {
  .product-slider .product-wrap {
    width: 270px;
    height: 270px;
  }
}
.product-slider .product-des {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 10%;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 80%;
  height: 80%;
  background: #066AB4;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}
.product-slider .product-des a {
  color: #fff;
}
.product-wrap:hover .product-des {
  opacity: 1;
}

.product-slider .product-des h3 {
  color: #fff;
}
.product-slider .product{
  position: relative;
}

.product-slider .slick-arrow i {
    width: 40px;
    height: 65px;
    line-height: 63px;
    font-size: 3rem;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    background-color: transparent;
    color: #066AB4;
    cursor: pointer;
}
@media (max-width: 768px) {
  .products .border-right {
    display: none;
  }
  .product-slider {
    margin: 50px 0 0;
  }
}

.product-descriptions {
  margin-top: 50px;
}
.available-positions ul li a, .product-descriptions ul li a {
  font-size: 1rem;
  color: #58595B;
}
.available-positions ul li, .product-descriptions ul li{
  position: relative;
  padding-left: 20px;
}
.available-positions ul li:before, .product-descriptions ul li:before{
  position: absolute;
  content: '';
  width: 10px;
  height: 6px;
  top: 40%;
  left: 0;
  background: url('../images/icons/bullet-arrow.png') no-repeat;
  background-size: contain;
}

.get-touch span {
  color: #066AB4;
  display: block;
}
.margin-top-45 {
    margin-top: 45px;
}
.padding-20{
    padding: 0 20px;
}

/*BLOG*/

.bg-blue {
  background: #0F6CB1;
}
.blog-home-overlay {
  position: relative;
  overflow: hidden;
  transition: opacity 1s;
  height: 380px;
}

.blog-home-overlay:before {
  content: '';
  position: absolute;
  background: #fff;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 1s;
}
.blog-home-overlay img{
  width: 100%;
}
.blog-caption {
  position: absolute;
  content: '';
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 30px;
  transition: all .5s ease-in-out;
}
.blog-caption h3 {
  font-size: 3rem;
  color: #066AB4;
}
.blog-caption .readmore {
  position: absolute;
  bottom: 0;
}

@media (max-width: 768px) {
  .blog-home {
    margin-bottom: 20px;
  }
  .blog-caption h3 {
    font-size: 1.5rem;
  }
}

.blog-caption .readmore:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  background: url('../images/icons/button-arrow.png') no-repeat;
  background-size: contain;
  width: 25px;
  height: 15px;
  left: 0;
  opacity: 0;
  transition: all .5s;
}
.blog-home:hover .readmore:after{
  opacity: 1;
  left: 100%;
}

.blog-home-overlay:hover:before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.59);
  transition: opacity 1s;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.blog-home:hover .blog-caption {
  opacity: 1;
}
.blog-home:hover .blog-home-overlay:before {
  background: rgba(255, 255, 255, 0.59);

}

/*FOOTER*/
.footer {
  color: #fff;
}
.footer .social-media {
    margin: 0;
    padding: 0;
}
.footer .social-media ul li {
    display: inline-block;
}
.footer .social-media ul li a{
  display: block;
  font-size: 20px;
  color: #0F6CB1;
  line-height: 25px;
  margin-right: 10px;
  text-align: center;
  background: #fff;
  padding: 10px;
  width: 45px;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: 0.4s;
}
.footer .border-top {
  padding-top: 100px;
}
.thin-para {
  font-weight: 300;
}

@media (max-width: 767px) {
  .careers .image-wrap {
    margin-top: 20px;
  }
  .footer .border-top {
    padding-top: 40px;
  }
  .footer p span {
    display: block;
  }
}

@media only screen and (max-width: 1280px){
    header{
        width: 100%;
    }
}



/*ABOUT US PAGE*/

.about-page #bg-3-1{
    background:url('../images/bg/home-about-bg.jpg') no-repeat;
    background-size: cover;
    width:100%;
    height:50vh;
    top: 0px;
    right:0;
}

/*PRODUCT INNER PAGE*/

.product-description h1 {
  color: #066AB4;
}

.themed-grid-col {
  text-align: center;
  padding-top: 10px;
  /*padding-bottom: 10px;*/
  background-color: #0F6CB1;
  border: 2px solid #fff;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.themed-grid-col-2 {
  max-width: 40% !important;
  flex: 0 0 40% !important;
}
.themed-grid-col-3 {
  max-width: 60% !important;
  flex: 0 0 60% !important;
}
.themed-grid-col-child {
  padding: 30px !important;
  border-top: 2px solid #fff !important;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-description [class*="col-"] {
  padding: 0;
}
.product-description .row{
  margin: 0;
}

.product-description .inner {
  padding: 20px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-description .inner.h-1 {
    height: 88px;
}

.themed-grid-light-blue {
  background: #DCEFF4;
  color: #0F6CB1;
  padding: 10px !important;
}

.product-info {
  margin-top: 50px !important;
  clear: both;
}
.product-info .heading {
  min-width: 200px;
  float: left;
}
.blue-txt {
  color: #066AB4;
}
.product-des-inner {
  position: relative;
  float: left;
  width: 50%;
  display: block;
}
.product-des-inner:before {
  position: absolute;
  content: ':';
  top: 0;
  left: -10px;
}
  /*popover onclick*/
  .popovr-cntnt{
    display: none;
    background: #fff;
    color: #000;
    padding:10px;
    border-radius: 10px;
  }
  .popovr{
    cursor:pointer;
  }

  /*Y-Scrollbar*/

  .scroll-bar{
  background-color:white;
  height: 700px;
  width: 1741px;  
  overflow-y: auto;
  }
   .scroll-bar-second{
  background-color:white;
  height: 700px;
  width: 1741px;  
  overflow-y: auto;
  }
  /*banner-image*/
  .img-responsive{
    width: 100%;
    height: auto;
     }

@media(max-width: 768px){
#img-responsive-m{
width: 100%;
  }
}

