/**
 * Theme Name: WP Theme Starter
 * Version: 1.0.945
 * Theme URI: -
 * Author: -
 * Author URI: -
 * Description: The 2017 theme starter.
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: custom
 * Text Domain: wpts
 */
/*
 1. Fonts
 2. Variables
 3. General Resets
 4. Bootstrap Resets
 3. Header
 4. Footer
 5. Home Page
*/
/*===== Variables =====*/
/*===== General resets =====*/
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400px;
  background-image: url("assets/img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; }

h1 {
  margin: 0;
  font-size: 50px;
  line-height: 60px;
  color: #fff; }

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #248dc4;
  font-size: 36px;
  line-height: 60px;
  font-weight: 600; }

h3 {
  margin-top: 0;
  margin-bottom: 25px;
  min-height: 40px;
  color: #248dc4;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px; }

.btn-default {
  padding: 10px 20px;
  background: -moz-linear-gradient(0deg, #db9303 0%, #f0d104 100%);
  background: -webkit-gradient(0deg, #db9303 0%, #f0d104 100%);
  background: -webkit-linear-gradient(0deg, #db9303 0%, #f0d104 100%);
  background: -o-linear-gradient(0deg, #db9303 0%, #f0d104 100%);
  background: -ms-linear-gradient(0deg, #db9303 0%, #f0d104 100%);
  background: linear-gradient(0deg, #db9303 0%, #f0d104 100%);
  border: 1px solid #efbb10;
  border-radius: 0;
  min-width: 168px;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-align: left;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .btn-default:hover, .btn-default:active, .btn-default:active:hover, .btn-default:active:focus, .btn-default:focus {
    background: -moz-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -webkit-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -webkit-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -o-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -ms-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: linear-gradient(0deg, #004265 0%, #047ebd 100%);
    color: #fff;
    border: 1px solid #047EBD; }

.dark {
  background-color: rgba(226, 225, 225, 0.57);
  background-blend-mode: multiply; }

.light {
  background: #fff; }

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*End General resets*/
/*==== Start header ====*/
header .navbar-default {
  background: #022e51;
  border-color: transparent;
  -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.22); }
  header .navbar-default .navbar-nav {
    margin-top: 40px; }
    header .navbar-default .navbar-nav li {
      position: relative; }
      header .navbar-default .navbar-nav li a {
        padding: 0 15px;
        font-size: 22px;
        line-height: 48px;
        color: #fff;
        outline: none; }
        header .navbar-default .navbar-nav li a:focus {
          color: #fff; }
      header .navbar-default .navbar-nav li:hover a {
        color: #fff; }
      header .navbar-default .navbar-nav li:hover .sub-menu {
        display: block; }
    header .navbar-default .navbar-nav li.current-menu-item::after,
    header .navbar-default .navbar-nav li:hover::after {
      content: '';
      width: calc(100% - 30px);
      height: 3px;
      background: #EDB90B;
      position: absolute;
      left: 15px;
      bottom: 0px; }
    header .navbar-default .navbar-nav .sub-menu {
      position: absolute;
      top: 45px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      display: none;
      padding-left: 0;
      list-style-type: none;
      min-width: 230px;
      background: #EDB90B;
      z-index: 9; }
      header .navbar-default .navbar-nav .sub-menu::before {
        content: '';
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #EDB90B;
        position: absolute;
        top: -8px;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }
      header .navbar-default .navbar-nav .sub-menu li {
        -webkit-transition: all 0.2s ease-in-out 0s;
        -moz-transition: all 0.2s ease-in-out 0s;
        -ms-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s; }
        header .navbar-default .navbar-nav .sub-menu li a {
          display: inline-block;
          padding: 2px 15px;
          width: 100%;
          text-decoration: none;
          color: #fff;
          font-size: 14px;
          line-height: 35px; }
        header .navbar-default .navbar-nav .sub-menu li::after {
          content: '';
          width: calc(100% - 30px);
          height: 1px;
          background: rgba(255, 255, 255, 0.3);
          position: absolute;
          left: 15px;
          bottom: 0; }
        header .navbar-default .navbar-nav .sub-menu li:last-child::after {
          background: transparent; }
        header .navbar-default .navbar-nav .sub-menu li:hover {
          background: #DB9303; }

header .navbar {
  margin-bottom: 0px;
  min-height: 150px;
  border-radius: 0; }

.affix {
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }

.affix-top {
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .affix-top.navbar-default {
    background: transparent;
    box-shadow: unset; }

/*End header*/
/*==== Start main-slider section ====*/
.main-slider .slide {
  position: relative;
  height: 100vh;
  min-height: 670px;
  max-height: 670px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: #047EBD;
  background-blend-mode: multiply; }

.main-slider .slide-box {
  position: absolute;
  right: 310px;
  bottom: 70px;
  max-width: 700px; }
  .main-slider .slide-box p {
    margin-bottom: 55px;
    font-size: 60px;
    line-height: 60px;
    font-weight: 300;
    color: #fff; }

/*End main-slider section*/
/*==== Start boxes section =====*/
.boxes {
  padding-top: 125px;
  padding-bottom: 120px; }
  .boxes .boxes-top {
    margin-bottom: 100px;
    font-size: 24px;
    line-height: 36px;
    font-weight: 400; }
  .boxes h2 {
    max-width: 380px; }
  .boxes .boxes-bottom .row {
    margin-right: -4px;
    margin-left: -4px; }
    .boxes .boxes-bottom .row [class*='col-'] {
      padding-right: 4px;
      padding-left: 4px; }

article {
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #D5D5D5; }
  article .box-top {
    position: relative;
    background-color: #014569;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 400px; }
    article .box-top .inner-box-top {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 165px;
      background-color: rgba(16, 61, 85, 0.6); }
      article .box-top .inner-box-top h3 {
        margin: 0;
        position: absolute;
        top: 45%;
        left: 50%;
        -webkit-transform: translate(-50%, -45%);
        -moz-transform: translate(-50%, -45%);
        -ms-transform: translate(-50%, -45%);
        -o-transform: translate(-50%, -45%);
        transform: translate(-50%, -45%);
        font-size: 36px;
        line-height: 42px;
        font-weight: 400;
        color: #fff;
        max-width: 215px; }
  article .box-bottom {
    position: relative;
    padding: 60px 30px 45px 30px;
    height: 330px;
    background: #fff;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    article .box-bottom::before {
      content: '';
      width: 0;
      height: 0;
      border-left: 25px solid transparent;
      border-right: 25px solid transparent;
      border-bottom: 25px solid #fff;
      position: absolute;
      top: -25px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      -webkit-transition: all 0.2s ease-in-out 0s;
      -moz-transition: all 0.2s ease-in-out 0s;
      -ms-transition: all 0.2s ease-in-out 0s;
      -o-transition: all 0.2s ease-in-out 0s;
      transition: all 0.2s ease-in-out 0s; }
    article .box-bottom .inner-box-bottom {
      margin-bottom: 35px; }
      article .box-bottom .inner-box-bottom p {
        color: #151c32;
        font-weight: 300; }
  article:hover .box-bottom {
    background: #c8dfea; }
    article:hover .box-bottom::before {
      border-bottom-color: #CCE5F2; }
  article:hover .btn-default {
    border: 1px solid #047EBD;
    background: linear-gradient(0deg, #004265 0%, #047ebd 100%); }

.products-boxes {
  color: #081c72; }

.second-slider {
  margin-bottom: 50px;
  position: relative; }
  .second-slider .slide {
    margin: 0 4px; }
  .second-slider .slick-dots {
    position: absolute;
    bottom: -100px;
    padding: 0;
    width: 100%;
    list-style-type: none;
    text-align: center; }
    .second-slider .slick-dots li {
      display: inline-block;
      margin: 0 6px; }
      .second-slider .slick-dots li button {
        padding: 0;
        width: 18px;
        height: 18px;
        font-size: 0;
        border: none;
        background: #012d45; }
      .second-slider .slick-dots li.slick-active button {
        background: #259fdf; }
  .second-slider.products-list {
    padding-top: 0;
    padding-bottom: 0; }

.product-box {
  border: 1px solid #D5D5D5;
  position: relative; }
  .product-box .product-box-top {
    background-color: #014569;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 310px; }
  .product-box .product-box-bottom {
    padding: 40px 27px 45px 27px;
    background: #fff; }
    .product-box .product-box-bottom h3 {
      margin-bottom: 40px;
      min-height: 68px; }
    .product-box .product-box-bottom .inner-product-box-bottom {
      margin-bottom: 38px;
      min-height: 94px; }

/*End boxes section*/
/*==== Start cta section ====*/
.cta {
  position: relative;
  background: -moz-linear-gradient(0deg, #b58902 0%, #efcb02 100%);
  background: -webkit-gradient(0deg, #b58902 0%, #efcb02 100%);
  background: -webkit-linear-gradient(0deg, #b58902 0%, #efcb02 100%);
  background: -o-linear-gradient(0deg, #b58902 0%, #efcb02 100%);
  background: -ms-linear-gradient(0deg, #b58902 0%, #efcb02 100%);
  background: linear-gradient(0deg, #b58902 0%, #efcb02 100%); }
  .cta:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 22px solid #EFCB02;
    position: absolute;
    top: -22px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }

.cta-box {
  margin: auto;
  padding-top: 125px;
  padding-bottom: 100px;
  color: #fff;
  max-width: 1155px;
  font-size: 30px;
  line-height: 48px;
  font-weight: 600; }
  .cta-box .btn-default {
    margin-top: 37px;
    padding: 10px 33px;
    background: transparent;
    border: 1px solid #fff;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    .cta-box .btn-default:hover {
      color: #047EBD;
      border: 1px solid #047EBD; }

/*End cta section*/
/*==== Start banner section =====*/
.banner {
  padding-top: 150px;
  padding-bottom: 90px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #047EBD;
  background-blend-mode: multiply; }

/*End banner section*/
/*==== Start products-list section ====*/
.products-list {
  padding-top: 80px;
  padding-bottom: 120px; }
  .products-list .product-box {
    margin-bottom: 30px;
    position: relative; }
    .products-list .product-box .product-box-top {
      -webkit-transition: all 0.2s ease-in-out 0s;
      -moz-transition: all 0.2s ease-in-out 0s;
      -ms-transition: all 0.2s ease-in-out 0s;
      -o-transition: all 0.2s ease-in-out 0s;
      transition: all 0.2s ease-in-out 0s; }
    .products-list .product-box .product-box-bottom {
      -webkit-transition: all 0.2s ease-in-out 0s;
      -moz-transition: all 0.2s ease-in-out 0s;
      -ms-transition: all 0.2s ease-in-out 0s;
      -o-transition: all 0.2s ease-in-out 0s;
      transition: all 0.2s ease-in-out 0s; }
      .products-list .product-box .product-box-bottom p {
        color: #14164d; }
    .products-list .product-box:hover .product-box-bottom {
      background: rgba(4, 126, 189, 0.2); }
    .products-list .product-box:hover .btn-default {
      border: 1px solid #047EBD;
      background: linear-gradient(0deg, #004265 0%, #047ebd 100%); }

/*End prosucts-list*/
/*============Start Single page ==============*/
.content {
  padding-top: 30px;
  padding-bottom: 30px; }
  .content.table h2 {
    margin-top: 0; }
  .content h2 {
    margin-bottom: 40px;
    color: #01314b;
    line-height: 36px;
    font-weight: 400;
    margin-top: 40px; }
  .content h3 {
    margin-bottom: 15px;
    margin-top: 30px; }
  .content p {
    color: #01314b; }
  .content ul {
    padding-left: 20px;
    margin-left: 13px;
    list-style: none; }
    .content ul li {
      margin-bottom: 18px;
      position: relative;
      line-height: 26px;
      color: #081c72;
      font-weight: 400; }
      .content ul li::before {
        content: '';
        width: 8px;
        height: 8px;
        background: #047EBD;
        position: absolute;
        left: -23px;
        top: 10px; }
  .content .table {
    margin: 0; }
    .content .table.table-bordered > tbody > tr > td {
      border: 3px solid #fff; }
    .content .table.table-striped > tbody > tr {
      background: #d0e2eb; }
    .content .table.table-striped > tbody > tr:nth-of-type(2n+1) {
      background: #b9d4e1; }
  .content img {
    max-width: 100%;
    height: auto; }
    .content img.alignright {
      margin-left: 10px;
      margin-bottom: 10px;
      float: right; }
    .content img.alignleft {
      margin-right: 10px;
      margin-bottom: 10px;
      float: left; }
    .content img.aligncenter {
      display: block;
      margin-left: auto;
      margin-right: auto; }

hr {
  margin-top: 70px;
  margin-bottom: 0;
  border-top: 2px solid #047EBD; }

.accordion.content {
  padding: 0; }

.introduction-box {
  padding-top: 75px;
  padding-bottom: 30px; }
  .introduction-box .content {
    padding: 0;
    margin-bottom: 20px; }
    .introduction-box .content h3 {
      margin-top: 0; }
    .introduction-box .content p {
      color: #081c72; }
  .introduction-box .image-box {
    max-width: 490px;
    margin: auto; }

.panel-caption {
  margin-bottom: 60px; }

.panel-group .panel {
  border-radius: 0;
  box-shadow: none; }

.panel-group .panel-default {
  border: none;
  border-radius: 0;
  background: transparent; }
  .panel-group .panel-default .panel-heading {
    padding: 0;
    background: #012d45;
    color: #fff;
    border-color: transparent;
    border-radius: 0; }
    .panel-group .panel-default .panel-heading.active {
      background: #248dc4; }
      .panel-group .panel-default .panel-heading.active .arrow-right {
        display: none; }
      .panel-group .panel-default .panel-heading.active .arrow-down {
        display: block; }
  .panel-group .panel-default .panel-title {
    position: relative;
    font-size: 22px;
    line-height: 50px;
    font-weight: 400; }
    .panel-group .panel-default .panel-title a {
      padding: 0px 20px 0px 50px;
      display: inline-block;
      width: 100%;
      text-decoration: none; }
    .panel-group .panel-default .panel-title img {
      position: absolute;
      top: 50%;
      left: 20px;
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%);
      width: 12px;
      height: auto; }
    .panel-group .panel-default .panel-title .arrow-right {
      display: block; }
    .panel-group .panel-default .panel-title .arrow-down {
      display: none; }
  .panel-group .panel-default .panel-body {
    padding: 5px 2px; }
    .panel-group .panel-default .panel-body .wrapper {
      margin-bottom: 5px;
      padding-top: 20px;
      padding-bottom: 15px;
      background: #F6FAFB; }
      .panel-group .panel-default .panel-body .wrapper .icon {
        width: 70px;
        height: auto; }
      .panel-group .panel-default .panel-body .wrapper:last-child {
        margin-bottom: 0; }
      .panel-group .panel-default .panel-body .wrapper.light {
        background: #fff;
        padding-top: 70px; }
      .panel-group .panel-default .panel-body .wrapper .content {
        padding: 10px 30px; }
    .panel-group .panel-default .panel-body .wrapper-color {
      background: #DEEFF9; }
    .panel-group .panel-default .panel-body .description-box h4 {
      margin: 0;
      color: #259fe0; }
    .panel-group .panel-default .panel-body .description-box time {
      color: #259fe0; }
    .panel-group .panel-default .panel-body .download-card time {
      font-size: 14px; }
    .panel-group .panel-default .panel-body .download-card p {
      font-size: 16px;
      color: #6f7375; }
    .panel-group .panel-default .panel-body .description-box-two {
      max-width: 335px; }
    .panel-group .panel-default .panel-body .button-box {
      padding-top: 20px; }
      .panel-group .panel-default .panel-body .button-box .btn-primary {
        margin-bottom: 5px;
        padding-left: 20px;
        padding-right: 15px;
        border-radius: 70px;
        background: #1F7EC0;
        -webkit-transition: all 0.2s ease-in-out 0s;
        -moz-transition: all 0.2s ease-in-out 0s;
        -ms-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s; }
        .panel-group .panel-default .panel-body .button-box .btn-primary:hover {
          background: #012d45;
          border-color: #012d45; }
      .panel-group .panel-default .panel-body .button-box span {
        display: block; }
        .panel-group .panel-default .panel-body .button-box span.size {
          color: #5597cb;
          font-size: 17px; }

.wrapper-video-slider {
  padding-top: 15px;
  padding-bottom: 50px; }
  .wrapper-video-slider h2 {
    line-height: 36px;
    font-weight: 400; }

.slider-video-box {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; }
  .slider-video-box .slider-video {
    background: #242424; }
    .slider-video-box .slider-video .slick-slide img {
      border: 5px solid #242424; }
  .slider-video-box:hover .text-box {
    display: none; }
  .slider-video-box .slick-arrow {
    padding: 0 35px;
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 45px;
    background: transparent;
    border-color: transparent;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1; }
    .slider-video-box .slick-arrow.slick-next {
      right: 0; }
    .slider-video-box .slick-arrow.slick-preview {
      left: 0; }

.text-box {
  padding: 45px 35px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  line-height: 36px; }

.gallery {
  padding-top: 60px;
  padding-bottom: 250px; }
  .gallery .row {
    margin-right: -7px;
    margin-left: -7px; }
    .gallery .row [class*='col-'] {
      padding-right: 7px;
      padding-left: 7px; }
  .gallery h2 {
    margin-bottom: 30px;
    font-weight: 400; }
  .gallery img {
    width: 594px;
    height: auto;
    max-width: 100%; }
  .gallery .gallery-box {
    position: relative;
    margin-bottom: 15px; }
    .gallery .gallery-box:hover .mask {
      background: rgba(219, 147, 3, 0.9); }
      .gallery .gallery-box:hover .mask span {
        display: block; }
  .gallery .gallery-item a img {
    border: 0 !important; }
  .gallery .mask {
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    .gallery .mask span {
      display: none;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      border: 2px solid #fff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      -webkit-transition: all 0.2s ease-in-out 0s;
      -moz-transition: all 0.2s ease-in-out 0s;
      -ms-transition: all 0.2s ease-in-out 0s;
      -o-transition: all 0.2s ease-in-out 0s;
      transition: all 0.2s ease-in-out 0s; }
      .gallery .mask span i {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: #fff; }

div.gallery {
  margin-left: -7px !important;
  margin-right: -7px !important; }
  div.gallery .gallery-item {
    padding-left: 7px;
    padding-right: 7px;
    position: relative; }
    div.gallery .gallery-item img {
      border-radius: 7px; }
    div.gallery .gallery-item .mask {
      opacity: 0;
      background: rgba(219, 147, 3, 0.9);
      margin: 7px;
      border-radius: 7px;
      margin: 0;
      width: calc(100% - 14px);
      left: 7px; }
      div.gallery .gallery-item .mask span {
        display: block; }
    div.gallery .gallery-item:hover .mask {
      opacity: 1; }

/*End Single page*/
/*==== Start map ====*/
.map {
  border: 2px solid #013856;
  height: 500px;
  width: 100%; }

/*End map*/
/*==== Start contact form ====*/
.form .gform_wrapper .gform_footer {
  margin: 0; }
  .form .gform_wrapper .gform_footer .gform_button {
    padding: 10px 20px;
    background: -moz-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -webkit-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -webkit-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -o-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: -ms-linear-gradient(0deg, #004265 0%, #047ebd 100%);
    background: linear-gradient(0deg, #004265 0%, #047ebd 100%);
    color: #fff;
    border: none;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    .form .gform_wrapper .gform_footer .gform_button:hover {
      opacity: .9; }

.form .gform_wrapper h3.gform_title {
  margin: 0;
  min-height: 40px;
  color: #013856;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px; }

.form .gform_wrapper .top_label input.medium {
  width: 100%; }

.form .gform_wrapper .top_label .gfield_label {
  display: none; }

.form .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
  display: none; }

.form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.form .gform_wrapper textarea.small {
  margin-bottom: 20px;
  padding: 10px 20px;
  outline: none;
  border: 1px solid #c8dfea; }
  .form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"])::-webkit-input-placeholder,
  .form .gform_wrapper textarea.small::-webkit-input-placeholder {
    color: #047EBD;
    opacity: 1;
    font-size: 22px;
    font-weight: 500; }
  .form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):-moz-placeholder,
  .form .gform_wrapper textarea.small:-moz-placeholder {
    color: #047EBD;
    opacity: 1;
    font-size: 22px;
    font-weight: 500; }
  .form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"])::-moz-placeholder,
  .form .gform_wrapper textarea.small::-moz-placeholder {
    color: #047EBD;
    opacity: 1;
    font-size: 22px;
    font-weight: 500; }
  .form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):-ms-input-placeholder,
  .form .gform_wrapper textarea.small:-ms-input-placeholder {
    color: #047EBD;
    opacity: 1;
    font-size: 22px;
    font-weight: 500; }

.form .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0; }

.form .gform_wrapper.gform_validation_error .top_label input.medium {
  width: 100%; }

.form .gform_wrapper li.gfield.gfield_error {
  border: none;
  margin-bottom: 0 !important; }

.form .gform_wrapper ul li.gfield {
  margin-top: 0; }

.form .gform_confirmation_message {
  padding: 30px;
  text-align: center;
  color: #013856; }

/*End contact form*/
/*==== Start footer =====*/
footer {
  padding-top: 110px;
  padding-bottom: 120px;
  background: #022e51;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600; }
  footer a {
    color: #fff; }
    footer a:hover {
      color: #fff; }
  footer ul {
    list-style: none;
    padding-left: 0; }
  footer p {
    margin: 0; }
  footer img {
    width: 140px;
    height: auto; }
  footer .btn {
    font-size: 18px;
    padding: 5px 10px;
    margin-top: 10px; }

.extra-margin-top {
  margin-top: 10px; }

/*End footer*/
/*==== Page not found ====*/
.error404 {
  background: #022e51; }
  .error404 h1 {
    margin-top: 350px; }
  .error404 h2 {
    margin-top: 50px;
    color: #fff; }

/*= Page not found =*/
.page-template-contact header .navbar-default {
  background: #022e51;
  border-color: transparent; }

/*=======================Admin bar========================*/
.admin-bar .navbar-default {
  margin-top: 32px; }

@media (min-width: 1200px) {
  .container {
    width: 1200px; } }

/*======================== Media queries ===================*/
/*==== Ipad landscape =====*/
@media (max-width: 1199px) {
  .main-slider .slide-box {
    right: 20px; }
  .products-boxes .product-box-bottom {
    min-height: 407px;
    position: relative; }
    .products-boxes .product-box-bottom .btn-default {
      position: absolute;
      bottom: 45px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
  .products-boxes h3 {
    font-size: 27px; } }

/*==== Ipad portret =====*/
@media (max-width: 991px) {
  header .navbar-default .navbar-nav li a {
    padding: 0 12px;
    font-size: 18px; }
  header .navbar-default .navbar-nav li::after,
  header .navbar-default .navbar-nav li.current-menu-item::after {
    width: calc(100% - 24px);
    left: 12px; }
  header .navbar-default .navbar-nav li:hover::after, header .navbar-default .navbar-nav li:hover.current-menu-item::after {
    width: calc(100% - 24px);
    left: 12px; }
  header .navbar-header .navbar-brand img {
    width: 100px;
    height: auto; }
  header .navbar {
    min-height: 125px; }
  .main-slider .slide {
    min-height: 200px;
    height: 400px; }
  .main-slider .slide-box {
    max-width: 400px; }
    .main-slider .slide-box p {
      font-size: 30px;
      line-height: 35px; }
  .boxes {
    padding-top: 70px;
    padding-bottom: 100px; }
    .boxes .boxes-top {
      font-size: 25px; }
    .boxes .boxes-bottom .col-sm-6:last-child {
      display: none; }
  h2 {
    font-size: 38px; }
  .admin-bar .navbar-default {
    margin-top: 46px; } }

/*==== Mobile =====*/
@media (max-width: 767px) {
  .btn-default {
    min-width: 158px;
    font-size: 20px;
    line-height: 25px; }
  h1 {
    font-size: 25px;
    line-height: 30px; }
  h2 {
    font-size: 25px;
    line-height: 30px; }
  h3 {
    font-size: 25px;
    line-height: 30px; }
  header .navbar {
    min-height: 95px; }
  header .navbar-default .navbar-nav .sub-menu {
    width: 100%;
    position: relative;
    top: 0; }
    header .navbar-default .navbar-nav .sub-menu:before {
      left: 40px; }
  header .navbar-default .navbar-nav li a:hover, header .navbar-default .navbar-nav li a:focus, header .navbar-default .navbar-nav li a:active {
    background: transparent !important;
    color: #FFF !important; }
  header .navbar-default .navbar-header .navbar-brand img {
    width: 75px;
    height: auto; }
  header .navbar-default .navbar-toggle {
    padding: 10px;
    margin-top: 28px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    header .navbar-default .navbar-toggle .icon-bar {
      background: #fff; }
    header .navbar-default .navbar-toggle:hover, header .navbar-default .navbar-toggle:focus {
      background: transparent;
      opacity: .7; }
  header .navbar-default .navbar-collapse {
    border-top: none;
    box-shadow: none; }
    header .navbar-default .navbar-collapse ul {
      margin-left: auto;
      margin-right: auto;
      float: none !important;
      width: 100%; }
  header .affix-top.navbar-default {
    background: #022e51; }
  .navbar-fixed-bottom .navbar-collapse,
  .navbar-fixed-top .navbar-collapse {
    max-height: 100vh;
    overflow: scroll; }
    .navbar-fixed-bottom .navbar-collapse .navbar-nav,
    .navbar-fixed-top .navbar-collapse .navbar-nav {
      margin-bottom: 80px; }
  .main-slider .slide .slide-box {
    right: unset; }
    .main-slider .slide .slide-box p {
      margin-bottom: 25px;
      font-size: 25px;
      line-height: 30px; }
  .boxes {
    padding-top: 45px;
    padding-bottom: 55px; }
    .boxes .boxes-top {
      margin-bottom: 30px;
      font-size: 20px;
      line-height: 30px; }
    .boxes .boxes-bottom {
      padding-top: 30px; }
      .boxes .boxes-bottom .col-sm-6:last-child {
        display: block; }
  .products-boxes .second-slider .slick-dots {
    bottom: -55px; }
    .products-boxes .second-slider .slick-dots li button {
      width: 10px;
      height: 10px; }
  .cta-box {
    padding-top: 75px;
    padding-bottom: 80px; }
    .cta-box p {
      font-size: 25px;
      line-height: 35px; }
  .banner {
    padding-bottom: 65px; }
  .introduction-box {
    padding-top: 40px;
    padding-bottom: 40px; }
  .content {
    padding-top: 40px;
    padding-bottom: 40px; }
    .content h2 {
      margin-bottom: 15px;
      margin-top: 0; }
    .content h3 {
      margin-top: 0; }
  hr {
    margin-top: 40px; }
  .accordion .panel-group .panel-default .panel-body .wrapper {
    padding: 10px; }
    .accordion .panel-group .panel-default .panel-body .wrapper .description-box {
      text-align: center;
      margin-top: 10px; }
      .accordion .panel-group .panel-default .panel-body .wrapper .description-box p {
        font-size: 16px; }
      .accordion .panel-group .panel-default .panel-body .wrapper .description-box time {
        display: inline-block;
        margin-bottom: 10px; }
    .accordion .panel-group .panel-default .panel-body .wrapper .description-box-two {
      margin-top: 10px; }
    .accordion .panel-group .panel-default .panel-body .wrapper .content {
      padding: 10px 0; }
  .accordion .panel-group .panel-default .panel-body .button-box {
    padding-top: 10px; }
  .wrapper-video-slider {
    padding-top: 15px;
    padding-bottom: 20px; }
    .wrapper-video-slider .text-box {
      display: none; }
  .gallery {
    padding-top: 15px;
    padding-bottom: 70px; }
  footer {
    padding-top: 45px;
    padding-bottom: 50px;
    font-size: 16px;
    line-height: 22px; }
    footer img {
      width: 75px;
      height: auto; } }

/*# sourceMappingURL=assets/scss/style.css.map */
