/* VARIABLES */
/* Fonts variables */
/* 14px */
/* Cheatsheet

10px - 0.625em; @font-size*0.71
12px - 0.750em; @font-size*0.85
14px - 0.875em; @font-size*1
16px - 1em;     @font-size*1.14
20px - 1.250em; @font-size*1.42
24px - 1.5em; @font-size*1.7
32px - 2em; @font-size*2.28
40px - 2.5em; @font-size*2.84 
50px - 3.125em; @font-size*3.55 

*/
/* Animation variables */
/* Colors variables */
/* Layout grid variables */
/* IMPORT LESS FILES */
/* ========== BUTTONS ========== */
/* 

1. Main Classes
2. Colors
3. Animations
4. Examples

/*

/****** 1. Main Classes ******/
/*  This is a main buttons class. If you edit this class - all of the buttons will change. */
.btn {
  border-radius: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  border: none;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.btn-lg {
  padding: 16px 24px;
}
.btn:active,
.btn.active {
  box-shadow: none;
}
/****** 2. Colors ******/
/* 2.1 Transparent to Color (ttc) */
.ttc {
  background: transparent;
  border: 1px solid #00adef;
  color: #00adef;
}
.ttc:before {
  background: #00adef;
  color: #ffffff;
}
.ttc:hover {
  color: #ffffff;
}
.ttc:focus {
  color: #ffffff;
}
.ttc:active {
  color: #ffffff;
}
/* 2.1 Color to Transparent (ctt) */
.ctt {
  background: #00adef;
  border: 1px solid #00adef;
  color: #ffffff;
}
.ctt:before {
  background: #ffffff;
  color: #00adef;
}
.ctt:hover {
  color: #00adef;
}
.ctt:focus {
  color: #00adef;
}
.ctt:active {
  color: #00adef;
}
/* 2.1 Color to Darken (ctd) */
.ctd {
  background: #00adef;
  border: 1px solid #00adef;
  color: #38b449;
}
.ctd:before {
  background: #0088bc;
}
.ctd:hover {
  color: #38b449;
}
.ctd:focus {
  color: #38b449;
}
.ctd:active {
  color: #38b449;
}
/* 2.1 Color to Color (ctc) */
.ctc {
  background: #00adef;
  color: #fff;
}
.ctc:before {
  background: #38b449;
}
.ctc:hover {
  color: #fff;
}
.ctc:focus {
  color: #fff;
}
.ctc:active {
  color: #fff;
}
/****** 3. Animations ******/
/* 3.1 Fade */
.fade {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
/* 3.2 Bounce */
/* 3.2.1 Bounce Main Class */
/* 3.2.2 Bounce Scale Group */
#bounce-scale .bounce-scaleY:before {
  transform: scaleY(0);
}
#bounce-scale .bounce-scaleY:hover:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#bounce-scale .bounce-scaleY:focus:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#bounce-scale .bounce-scaleY:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#bounce-scale .bounce-scaleX:before {
  transform: scaleX(0);
}
#bounce-scale .bounce-scaleX:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#bounce-scale .bounce-scaleX:focus:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#bounce-scale .bounce-scaleX:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* 3.2.3 Bounce Direction */
/* 3.2.3.1 Bounce Top */
.bt {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
}
.bt:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.bt:before {
  transform: scaleY(0);
}
.bt:hover:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bt:focus:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bt:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bt:before {
  transform-origin: 50% 100%;
}
/* 3.2.3.2 Bounce Bottom */
.bb {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
}
.bb:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.bb:before {
  transform: scaleY(0);
}
.bb:hover:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bb:focus:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bb:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bb:before {
  transform-origin: 50% 0;
}
/* 3.2.3.3 Bounce Left */
.bl {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
}
.bl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.bl:before {
  transform: scaleX(0);
}
.bl:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bl:focus:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bl:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.bl:before {
  transform-origin: 100% 50%;
}
/* 3.2.3.4 Bounce Right */
.br {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
}
.br:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.br:before {
  transform: scaleX(0);
}
.br:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.br:focus:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.br:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.br:before {
  transform-origin: 0% 50%;
}
/* 3.3 Shift */
/* 3.3.1 Shift Main Class */
/* 3.3.2 Shift Scale Group */
#shift-scale .shift-scaleY:before {
  transform: scaleY(0);
}
#shift-scale .shift-scaleY:hover:before {
  transform: scaleY(1);
}
#shift-scale .shift-scaleY:focus:before {
  transform: scaleY(1);
}
#shift-scale .shift-scaleY:active:before {
  transform: scaleY(1);
}
#shift-scale .shift-scaleX:before {
  transform: scaleX(0);
}
#shift-scale .shift-scaleX:hover:before {
  transform: scaleX(1);
}
#shift-scale .shift-scaleX:focus:before {
  transform: scaleX(1);
}
#shift-scale .shift-scaleX:active:before {
  transform: scaleX(1);
}
/* 3.3.3 Shift Direction */
/* 3.3.3.1 Shift Top */
.st {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.st:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.st:before {
  transform: scaleY(0);
}
.st:hover:before {
  transform: scaleY(1);
}
.st:focus:before {
  transform: scaleY(1);
}
.st:active:before {
  transform: scaleY(1);
}
.st:before {
  transform-origin: 50% 0;
}
/* 3.2.3.2 Bounce Bottom */
.sb {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.sb:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.sb:before {
  transform: scaleY(0);
}
.sb:hover:before {
  transform: scaleY(1);
}
.sb:focus:before {
  transform: scaleY(1);
}
.sb:active:before {
  transform: scaleY(1);
}
.sb:before {
  transform-origin: 50% 0;
}
/* 3.2.3.3 Bounce Left */
.sl {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.sl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.sl:before {
  transform: scaleX(0);
}
.sl:hover:before {
  transform: scaleX(1);
}
.sl:focus:before {
  transform: scaleX(1);
}
.sl:active:before {
  transform: scaleX(1);
}
.sl:before {
  transform-origin: 100% 50%;
}
/* 3.2.3.4 Bounce Right */
.sr {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
}
.sr:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.sr:before {
  transform: scaleX(0);
}
.sr:hover:before {
  transform: scaleX(1);
}
.sr:focus:before {
  transform: scaleX(1);
}
.sr:active:before {
  transform: scaleX(1);
}
.sr:before {
  transform-origin: 0% 50%;
}
/*
@import "headers"; 
@import "owl";
@import "lightbox";
@import "preloader";*/
body {
  background: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8 {
  font-family: 'Raleway', sans-serif;
  margin: 0;
}
ul li,
ul li a,
blockquotes,
span,
p,
quote {
  font-family: 'Raleway', sans-serif;
  padding: 0;
  margin: 0;
}
@media all and (max-width: 768px) {
  ul li,
  ul li a,
  blockquotes,
  span,
  p,
  quote {
    text-align: center;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8 {
  padding-bottom: 0 0 30px 0;
}
@media all and (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  h7,
  h8 {
    text-align: center!important;
  }
}
h1 {
  text-align: left;
  display: block;
  color: #00adef;
  font-size: 16px;
}
h2 {
  text-align: center;
  display: inline-block;
  color: #595857;
  font-size: 40px;
  font-weight: 300;
}
h3 {
  text-align: left;
  display: block;
  color: #00adef;
  font-size: 22px;
  padding-bottom: 30px;
}
h4 {
  display: block;
  color: #595857;
  font-size: 18px;
  font-weight: 300;
}
h5 {
  display: block;
  color: #595857;
  font-size: 25px;
  font-weight: 300;
}
.heading {
  padding-bottom: 50px;
  text-align: center;
}
.heading h2 {
  text-align: center;
  padding-bottom: 15px;
}
p {
  padding-bottom: 30px;
  color: #595857;
  line-height: 26px;
  font-size: 14px;
}
@media all and (max-width: 768px) {
  p {
    text-align: center;
  }
}
a {
  text-decoration: none!important;
}
section,
footer {
  /* All Sections */
  width: 100%;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}
@media all and (max-width: 768px) {
  section,
  footer {
    padding: 30px 0;
  }
}
section {
  background: #ecedee;
}
.container-fluid {
  padding: 0 10%;
}
@media (min-width: 768px) and (max-width: 992px) {
  .container-fluid {
    padding: 0 5%;
  }
}
/****** LAYOUT ******/
/****** 2.1 HEADERS ******/
/* 2.1 headers
    
    2.1.0 variables

    2.1.1 header-orientation

        2.1.1.1 header-horizontal
        2.1.1.2 header-vertical

    2.1.2 header-hovers

        2.1.2.1 header-border-top
        2.1.2.2 header-border-bottom
        2.1.2.3 header-border
        2.1.2.4 header-fill
        2.1.2.5 header-circle
        2.1.2.6 header-radius
*/
/****** 2.1.0 variables ******/
.open {
  height: auto;
  overflow: hidden;
}
.open .fa {
  font-size: 30px;
  padding: 20px;
  color: #959595;
  /*background: darken(@light-grey, 8%);*/
  text-align: center;
  float: right;
}
@media all and (min-width: 768px) {
  .open {
    display: none;
  }
}
#header-orientation .header-right-nav {
  left: 0;
}
#HEADER {
  z-index: 997;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.header-horizontal {
  width: 100%;
  position: fixed;
  /* set position: fixed/relative/absolute */
  top: 0;
  padding: 0;
  overflow: hidden;
  height: 100px;
  background: #ffffff;
  z-index: 999;
  text-rendering: auto;
}
@media all and (max-width: 768px) {
  .header-horizontal {
    height: auto;
    left: 0;
    background: #f3f3f3;
  }
  .header-horizontal .container-fluid {
    padding: 0;
  }
}
.header-horizontal .logo a {
  width: 200px;
  /* set dimension */
  margin-top: 10px;
  /* set margin */
  position: relative;
  display: block;
  height: 100px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.header-horizontal .logo a img {
  width: 100%;
  height: auto;
  background-size: cover;
}
.header-horizontal nav {
  height: 100px;
}
.header-horizontal nav #mobile-nav {
  left: 0;
  float: right;
  height: 100px;
}
.header-horizontal nav #mobile-nav ul {
  float: left;
  height: 50px;
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  padding: 0;
  margin: 0;
}
.header-horizontal nav #mobile-nav ul li {
  display: inline-block;
  margin-right: 14px;
  padding: 0 10px 6px 0;
  background: transparent;
  border-bottom: 2px solid #D1D2D4;
  border-right: 2px solid #D1D2D4;
  transform: skewX(-15deg);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.header-horizontal nav #mobile-nav ul li:hover {
  border-bottom: 2px solid #00adef;
  border-right: 2px solid #00adef;
}
.header-horizontal nav #mobile-nav ul li:last-child {
  margin: 0;
}
.header-horizontal nav #mobile-nav ul li a {
  color: #595857;
  font-size: 14px;
  transform: skewX(15deg);
  display: inline-block;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media all and (max-width: 768px) {
  .header-horizontal nav #mobile-nav ul li {
    border: none;
    padding: 15px 0;
  }
  .header-horizontal nav #mobile-nav ul li:hover {
    background: #00adef;
  }
}
@media (max-width: 768px) {
  .header-horizontal nav {
    width: 100%;
    height: 100%;
    left: 0px;
    background: #ffffff;
    padding: 0 30px;
    overflow: hidden;
  }
  .header-horizontal nav #mobile-nav {
    float: none;
    width: 100%;
  }
  .header-horizontal nav #mobile-nav ul {
    width: 100%;
    height: auto;
  }
  .header-horizontal nav #mobile-nav ul li {
    width: 100%;
    margin-right: 0;
    height: auto;
    line-height: normal;
    display: block;
    text-align: center;
  }
  .header-horizontal nav #mobile-nav ul li a {
    font-size: 18.2px;
  }
}
/* */
#header-hovers .border-top {
  border-top: 3px solid #ffffff;
  margin-right: 15px;
}
#header-hovers .border-top:hover {
  border-top: 3px solid #00adef;
}
#header-hovers .border-top:hover a {
  color: #3f3f3e;
}
@media (max-width: 768px) {
  #header-hovers .border-top:hover a {
    display: block;
    width: 100%;
  }
}
#header-hovers .border-bottom {
  border-bottom: 3px solid #ffffff;
  margin-right: 15px;
}
#header-hovers .border-bottom:hover {
  border-bottom: 3px solid #00adef;
}
#header-hovers .border-bottom:hover a {
  color: #3f3f3e;
}
#header-hovers .fill {
  margin-right: 5px;
}
#header-hovers .fill:hover {
  background: #38b449;
}
#header-hovers .fill:hover a {
  color: #fff;
}
#header-hovers .fill a {
  padding: 0 12px;
}
@media (max-width: 768px) {
  #header-hovers .fill {
    margin-right: 0;
  }
  #header-hovers .fill a {
    width: 100%;
    display: block;
    padding: 15px 0;
  }
}
#BANER {
  /*padding: @header-height 0 0 0;*/
  padding: 0;
}
#BANER img {
  width: 100%;
  background-size: cover;
}
#BANER .baner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: auto;
  display: block;
  text-align: center;
}
#BANER .baner-content h2 {
  padding-bottom: 10px;
  font-weight: 500;
  text-transform: none;
}
#BANER .baner-content h4 {
  padding-bottom: 30px;
  color: #00adef;
  font-weight: 500;
  font-size: 25px;
}
@media (max-width: 768px) {
  #BANER .baner-content {
    display: none;
  }
}
#ABOUT {
  background: #ecedee;
}
#ABOUT .container-fluid .about-info-left {
  padding: 0 60px 0 0;
}
@media all and (max-width: 768px) {
  #ABOUT .container-fluid .about-info-left {
    padding: 0;
  }
}
#ABOUT .container-fluid .about-info-right .row > div {
  text-align: center;
  padding: 0 30px !important;
}
#ABOUT .container-fluid .about-info-right .row > div .fa {
  font-size: 30px;
  color: #00adef;
  padding-bottom: 30px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#ABOUT .container-fluid .about-info-right .row > div .fa:hover {
  color: #38b449;
}
#ABOUT img {
  padding-bottom: 30px;
}
#OFFER {
  padding: 0;
}
#OFFER .container-fluid {
  background: #fff;
  padding: 0;
}
#OFFER .container-fluid .row > div {
  padding: 100px 90px 100px 10%;
  background: #F1F1F2;
}
@media all and (max-width: 768px) {
  #OFFER .container-fluid .row > div {
    padding: 30px;
    text-align: center;
  }
}
#OFFER .container-fluid .row > div > ul {
  padding: 0;
}
#OFFER .container-fluid .row > div > ul > li {
  list-style-type: none;
  padding: 2px 0;
}
#OFFER .container-fluid .row > div > ul > li:before {
  content: '⁕';
  font-size: 12px;
  margin-right: 5px;
}
#OFFER .container-fluid .row > div > ul ul {
  padding: 0;
}
#OFFER .container-fluid .row > div > ul ul li {
  list-style-type: none;
  border-bottom: 1px solid #D1D2D4;
  padding: 2px 0;
}
#OFFER .container-fluid .row > div:last-of-type {
  padding: 100px 10% 100px 90px;
  background: #32c6f4;
}
@media all and (max-width: 768px) {
  #OFFER .container-fluid .row > div:last-of-type {
    padding: 30px;
    text-align: center;
  }
}
#OFFER .container-fluid .row > div:last-of-type h3 {
  color: #fff;
}
#OFFER .container-fluid .row > div:last-of-type p {
  color: #fff;
}
#OFFER .container-fluid .row span {
  display: inline-block;
  padding: 0 20px 6px 0;
  position: relative;
  transform: skewX(-15deg);
  background: #F1F1F2;
  z-index: 10;
  border-bottom: 3px solid #00adef;
  border-right: 3px solid #00adef;
  margin-top: 30px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#OFFER .container-fluid .row span:hover {
  border-color: #38b449;
}
#OFFER .container-fluid .row span a {
  color: #373a3c;
  transform: skewX(15deg);
  display: inline-block;
}
#FOOTER {
  background: #ffffff;
  padding-bottom: 0;
}
#FOOTER .container-fluid:first-child {
  padding-bottom: 85px;
}
#FOOTER .container-fluid .foooter-data {
  padding-left: 100px;
}
@media all and (max-width: 768px) {
  #FOOTER .container-fluid .foooter-data {
    padding: 30px;
  }
}
#FOOTER h3 {
  padding-bottom: 30px;
  width: 100%;
  text-align: left;
  font-size: 20px;
}
#FOOTER ul li {
  list-style: none;
}
#FOOTER form .row {
  padding-bottom: 0px;
  color: #959595;
}
#FOOTER form .row div {
  padding-bottom: 15px;
}
#FOOTER form .row div p {
  padding-bottom: 5px;
}
#FOOTER form .row div input,
#FOOTER form .row div textarea {
  background: #E6E7E8;
  border-radius: 0;
  border: #e0e0e0 1px solid;
  width: 100%;
  padding: 8px 15px;
  box-sizing: border-box;
  font-size: 14px;
  color: #959595;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#FOOTER form .row div input:hover,
#FOOTER form .row div textarea:hover {
  background: #e0e0e0;
}
#FOOTER form .row .submit {
  border-bottom: 3px solid #00adef;
  border-right: 3px solid #00adef;
  transform: skewX(-20deg);
  width: 10%;
  padding: 0 5px 6px 0;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media all and (max-width: 768px) {
  #FOOTER form .row .submit {
    width: 100%;
    margin-bottom: 30px;
  }
}
#FOOTER form .row .submit:hover {
  border-color: #38b449;
}
#FOOTER form .row .submit input {
  display: inline-block;
  padding: 0;
  transform: skewX(20deg);
  color: #fff;
  border: none;
  color: #595857;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  cursor: pointer;
  background: #ffffff;
}
#FOOTER form .row .submit input:hover {
  background: #ffffff;
}
#FOOTER .contact-data {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
#FOOTER .contact-data h4 {
  color: #00adef;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 6px;
}
@media (max-width: 992px) {
  #FOOTER .contact-data {
    text-align: center;
  }
}
#FOOTER .contact-data .cor {
  color: #00adef;
  font-size: 30px;
  float: left;
}
@media (max-width: 992px) {
  #FOOTER .contact-data .cor {
    text-align: center;
    float: none;
  }
}
#FOOTER .contact-data ul {
  padding: 0;
  margin: 0;
}
#FOOTER .contact-data .work-time ul li {
  list-style-type: none;
}
#FOOTER .contact-data .work-time ul li span {
  color: #00adef;
  font-weight: bold;
  font-size: 14px;
}
#FOOTER .contact-data .road-map {
  display: inline-block;
  padding: 0 20px 6px 0;
  position: relative;
  transform: skewX(-15deg);
  background: #fff;
  z-index: 10;
  border-bottom: 3px solid #00adef;
  border-right: 3px solid #00adef;
  margin-top: 30px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#FOOTER .contact-data .road-map:hover {
  border-color: #38b449;
}
#FOOTER .contact-data .road-map a {
  color: #373a3c;
  transform: skewX(15deg);
  display: inline-block;
}
#FOOTER h2,
#FOOTER h3,
#FOOTER ul,
#FOOTER ul li,
#FOOTER ul li a,
#FOOTER p {
  color: #595857;
}
@media (max-width: 992px) {
  #FOOTER h2,
  #FOOTER h3,
  #FOOTER ul,
  #FOOTER ul li,
  #FOOTER ul li a,
  #FOOTER p {
    text-align: center;
    width: 100%;
  }
}
#FOOTER .copyright {
  background: #E6E7E8;
}
#FOOTER .copyright .container {
  padding-bottom: 0;
  margin-bottom: 0;
}
#FOOTER .copyright p {
  color: #a2a2a2;
  padding: 20px 0;
  font-size: 12px;
}
#FOOTER .copyright p a {
  color: #939597;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  font-size: 12px;
}
#FOOTER .copyright p a:hover {
  color: #00adef;
}
#FOOTER .copyright p a:hover:before {
  color: #00adef;
}
#FOOTER .copyright .copy {
  float: left;
}
@media (max-width: 992px) {
  #FOOTER .copyright .copy {
    padding-bottom: 0;
  }
}
#FOOTER .copyright .author {
  float: right;
}
@media (max-width: 992px) {
  #FOOTER .copyright .author {
    padding-top: 0px;
  }
}
#FOOTER .copyright .author a {
  font-size: 12px;
}
#FOOTER .copyright .author a:before {
  content: "\e901";
  font-family: 'cor';
  color: #939597;
  padding-right: 5px;
  padding-left: 5px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#FOOTER .copyright .author p {
  float: left;
}
.category-section {
  padding-bottom: 0px;
  background: #ffffff;
}
.category-section:last-child {
  padding-bottom: 100px;
}
.category-section ul li {
  list-style-type: none;
  padding: 15px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.category-section ul li:hover {
  background: #f4f4f4;
}
.category-section ul li ul {
  padding-bottom: 10px;
}
.category-section ul li ul li {
  padding: 0;
  list-style-type: square;
}
.category-section ul li p {
  padding-bottom: 10px;
}
.category-section h2 {
  font-size: 30px;
  padding-bottom: 30px;
  display: block;
  text-align: center;
}
#BANER-SINGLE {
  padding: 100px 0 0 0;
}
.gallery > a > div {
  padding: 0!important;
  margin: 0!important;
}
.SINGLE-GALLERY .container-fluid {
  padding-top: 100px;
}
.overlay__close {
  display: inline-block;
  position: absolute;
  padding: 10px;
  top: 0;
  right: 0;
  z-index: 10001;
  cursor: pointer;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 3em;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}
.overlay__close:after {
  content: "\f00d";
}
.lightbox-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.lightbox-preloader-svg {
  z-index: 10001;
  position: fixed;
  top: 45.5%;
  left: 48.5%;
  background: transparent;
  fill: #00adef;
  stroke: #00adef;
}
.lightbox {
  display: none;
  background: #fff;
  position: absolute;
  z-index: 10000;
}
.lightbox__close {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10001;
  cursor: pointer;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}
.lightbox__close:after {
  content: "\f00d";
}
.ARCHIVE-ADVANTAGES {
  background: #fff;
  text-align: center;
}
.ARCHIVE-ADVANTAGES .container-fluid .row > div {
  padding-bottom: 60px;
}
.ARCHIVE-ADVANTAGES h3 {
  text-align: center;
  color: #595857;
  padding-top: 30px;
}
.smaller-logo {
  width: 120px!important;
}
.smaller-header {
  height: 70px!important;
}
.menu-main_nav-container {
  height: 100px !important;
}
.menu-sub_nav-container {
  height: 100px !important;
}
.show-map {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}
.show-map .map-area {
  width: 80%;
  height: 80%;
  position: relative;
  top: 10%;
  left: 10%;
}
.show-map .close-map {
  position: absolute;
  top: 100px;
  right: 0px;
  background: #00adef;
  width: 60px;
  height: 60px;
}
.show-map .close-map .cor {
  position: absolute;
  font-size: 30px;
  top: 15px;
  left: 15px;
  color: #fff;
}
