.center-vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.center-horizontal {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.center-vertical-horizontal {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.inline-block {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  display: inline;
}
.pie {
  behavior: url('pie.htc');
}
* {
  padding: 0;
  border: 0;
  margin: 0;
  line-height: 1.5;
}
a,
img {
  border: 0;
  text-decoration: none;
}
input {
  outline: none;
}
div#message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
}
div#message a#closeMessage {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  right: 50%;
  margin-right: -470px;
  width: 50px;
  height: 50px;
  background-color: #adadad;
  background-image: -moz-linear-gradient(top,#B1B1B1,#a8a8a8);
  background-image: -ms-linear-gradient(top,#B1B1B1,#a8a8a8);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#B1B1B1),to(#a8a8a8));
  background-image: -webkit-linear-gradient(top,#B1B1B1,#a8a8a8);
  background-image: -o-linear-gradient(top,#B1B1B1,#a8a8a8);
  background-image: linear-gradient(top,#B1B1B1,#a8a8a8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b1b1b1', endColorstr='#a8a8a8', GradientType=0);
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border: 1px solid #B1B1B1;
  font-family: 'Ubuntu', sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  overflow: hidden;
}
div#message a#closeMessage:hover {
  background-color: #d6171a;
  background-image: -moz-linear-gradient(top,#e32127,#c30806);
  background-image: -ms-linear-gradient(top,#e32127,#c30806);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#e32127),to(#c30806));
  background-image: -webkit-linear-gradient(top,#e32127,#c30806);
  background-image: -o-linear-gradient(top,#e32127,#c30806);
  background-image: linear-gradient(top,#e32127,#c30806);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e32127', endColorstr='#c30806', GradientType=0);
  border-color: #c30806;
}
div#message div.stripe {
  display: block;
  position: absolute;
  background: #ffffff;
  width: 100%;
  padding: 20px 0;
  height: 100px;
  top: 50%;
  margin-top: -70px;
  left: 0;
}
div#message div.stripe p {
  display: block;
  position: relative;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #525252;
  line-height: 2.2;
  margin: auto;
  max-width: 800px;
}
div#message div.stripe p.error {
  font-family: 'Ubuntu', sans-serif;
  font-size: 25px;
  font-weight: normal;
  font-style: normal;
  color: #e32127;
  text-transform: uppercase;
}
div#message div.stripe p.success {
  font-family: 'Ubuntu', sans-serif;
  font-size: 25px;
  font-weight: normal;
  font-style: normal;
  color: #00ac10;
  text-transform: uppercase;
}
div#message div.stripe p.loading {
  padding-top: 55px;
  margin-top: 8px;
  text-transform: uppercase;
}
div#message div.stripe p.loading .fa {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
  font-size: 55px;
  color: #B1B1B1;
}
.body-background {
  width: 100%;
  height: 1000px;
  display: block;
  position: absolute;
  left: 0;
  z-index: 0;
  background-image: url('../img/background.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.body-background.initial {
  top: 565px;
}
.body-background.internal {
  top: 290px;
}
.body-background:before {
  content: 'center';
  width: 1050px;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  background: #ffffff;
  text-indent: -9999px;
  overflow: hidden;
}
.body-background:after {
  content: 'gradient';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255,255,255,-0.4);
  background-image: -moz-linear-gradient(top,rgba(255,255,255,0),#ffffff);
  background-image: -ms-linear-gradient(top,rgba(255,255,255,0),#ffffff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(rgba(255,255,255,0)),to(#ffffff));
  background-image: -webkit-linear-gradient(top,rgba(255,255,255,0),#ffffff);
  background-image: -o-linear-gradient(top,rgba(255,255,255,0),#ffffff);
  background-image: linear-gradient(top,rgba(255,255,255,0),#ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0)', endColorstr='#ffffff', GradientType=0);
  overflow: hidden;
  text-indent: -9999px;
}
#header {
  width: 100%;
  height: 120px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
#header .header-top {
  width: 100%;
  height: 45px;
  display: block;
  position: relative;
  background: #a8a8a8;
}
#header .header-top .header-phone-box {
  margin-top: 10px;
  display: block;
  position: relative;
  text-align: center;
}
#header .header-top .header-phone-box .fa {
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #ffffff;
  margin-right: 10px;
}
#header .header-top .header-phone-box .header-phone-text,
#header .header-top .header-phone-box .separator {
  display: inline-block;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  line-height: 1;
  margin-right: 5px;
  text-transform: uppercase;
}
#header .header-top .header-phone-box .separator {
  margin-left: 5px;
}
#header .header-top .header-phone-box .header-phone-link {
  display: inline-block;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: 1;
}
#header .header-top .header-socials-box {
  height: 45px;
  overflow: hidden;
  display: block;
  position: relative;
  text-align: right;
}
#header .header-top .header-socials-box a {
  width: 30px;
  height: 45px;
  display: inline-block;
  position: relative;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#header .header-top .header-socials-box a .fa {
  font-size: 14px;
  color: #ffffff;
  display: block;
  position: absolute;
  line-height: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
#header .header-top .header-socials-box a:hover.facebook {
  background: #4c629d;
}
#header .header-top .header-socials-box a:hover.twitter {
  background: #38a8df;
}
#header .header-top .header-socials-box a:hover.plus {
  background: #c30806;
}
#header .header-top .header-socials-box a:hover.pinterest {
  background: #e32127;
}
#header .header-top .header-socials-box a:hover.instagram {
  background: #23648e;
}
#header .header-top .header-socials-box a:hover.linkedin {
  background: #007bb6;
}
#header .header-top .header-socials-box a:hover.youtube {
  background: #e02a26;
}
#header .header-bottom {
  width: 100%;
  height: 70px;
  display: block;
  position: relative;
  border-top: 10px solid #2e3192;
  background-color: rgba(255,255,255,0.75);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#bfffffff, endColorstr=#bfffffff)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#bfffffff, endColorstr=#bfffffff);
}
#header .header-bottom .container_12 {
  height: 70px;
  display: block;
  position: relative;
}
#header .header-bottom .container_12 .header-logo {
  height: 96px;
  display: block;
  position: relative;
  background: url('../img/sprite.png') no-repeat 0 -121px;
  overflow: hidden;
  margin-top: 5px;
  text-indent: -9999px;
}
#header .header-bottom .container_12 .ul-header-menu {
  height: 70px;
  display: block;
  position: relative;
  list-style: none;
  text-align: right;
  z-index: 9;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu {
  display: inline-block;
  position: relative;
  height: 70px;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .a-header-menu {
  display: block;
  position: relative;
  height: 70px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #2e3192;
  line-height: 4.3;
  text-transform: uppercase;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  padding: 0 15px;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .a-header-menu:after {
  content: 'border';
  width: 100%;
  height: 10px;
  display: block;
  position: absolute;
  opacity: 0;
  top: -10px;
  left: 0;
  overflow: hidden;
  text-indent: 9999px;
  background: #ed1c24;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .a-header-menu.active {
  background: #ffffff;
  color: #ed1c24;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .a-header-menu.active:after {
  opacity: 1;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu:hover .a-header-menu {
  background: #ffffff;
  color: #ed1c24;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu:hover .a-header-menu:after {
  opacity: 1;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu:hover .ul-header-submenu {
  opacity: 1;
  visibility: visible;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .ul-header-submenu {
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 70px;
  left: 0;
  background: #ffffff;
  text-align: left;
  list-style: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-bottom: 3px solid #ed1c24;
  padding: 20px 0;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .ul-header-submenu .li-header-submenu {
  display: block;
  position: relative;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .ul-header-submenu .li-header-submenu .a-header-submenu {
  width: 150px;
  display: block;
  position: relative;
  padding: 10px 40px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  color: #a8a8a8;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#header .header-bottom .container_12 .ul-header-menu .li-header-menu .ul-header-submenu .li-header-submenu .a-header-submenu:hover {
  color: #2e3192;
}
#header .header-bottom .container_12 .header-search {
  height: 36px;
  display: block;
  position: absolute;
  bottom: -50px;
  right: 0;
  text-align: right;
  z-index: 0;
}
#header .header-bottom .container_12 .header-search input[type="text"] {
  width: 312px;
  display: block;
  position: relative;
  float: left;
  border: 1px solid #a8a8a8;
  background-color: rgba(255,255,255,0.9);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff);
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  color: #a8a8a8;
  line-height: 1;
  padding: 10px 15px;
}
#header .header-bottom .container_12 .header-search .submit {
  width: 36px;
  height: 36px;
  display: block;
  position: relative;
  background: #a8a8a8;
  cursor: pointer;
}
#header .header-bottom .container_12 .header-search .submit .fa {
  color: #ffffff;
  display: block;
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  line-height: 1;
  float: right;
}
#header .header-bottom .container_12 .header-search .submit:hover {
  background: #2e3192;
}
#footer {
  width: 100%;
  height: 350px;
  display: block;
  position: relative;
  margin-top: 100px;
  float: left;
}
#footer .footer-phone-box {
  width: 100%;
  height: 145px;
  display: block;
  position: relative;
  background: #2e3192;
}
#footer .footer-phone-box .footer-phone {
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
#footer .footer-phone-box .footer-phone .footer-phone-text {
  display: inline-block;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  top: -12px;
}
#footer .footer-phone-box .footer-phone .fa {
  display: inline-block;
  position: relative;
  font-size: 50px;
  color: #ffffff;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 2.1;
  border: 1px solid #ffffff;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  margin: 0 30px;
}
#footer .footer-phone-box .footer-phone .footer-phone-link,
#footer .footer-phone-box .footer-phone .separator {
  display: inline-block;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  top: -12px;
}
#footer .footer-phone-box .footer-phone .separator {
  margin: 0 8px;
}
#footer .footer-bottom {
  width: 100%;
  height: 205px;
  display: block;
  position: relative;
  background: #525252;
}
#footer .footer-bottom .container_12 {
  height: 205px;
  display: block;
  position: relative;
}
#footer .footer-bottom .container_12 .footer-socials-box {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -5px;
  text-align: center;
}
#footer .footer-bottom .container_12 .footer-socials-box a {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
}
#footer .footer-bottom .container_12 .footer-socials-box a .fa {
  font-size: 16px;
  color: #ffffff;
  line-height: 2;
}
#footer .footer-bottom .container_12 .footer-logo {
  height: 101px;
  display: block;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  background: url('../img/sprite.png') no-repeat 0 -120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -5px;
}
#footer .footer-bottom .container_12 .footer-address-box {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -5px;
}
#footer .footer-bottom .container_12 .footer-address-box .fa {
  display: block;
  position: relative;
  font-size: 25px;
  color: #ffffff;
  line-height: 1;
  float: left;
}
#footer .footer-bottom .container_12 .footer-address-box address {
  width: 180px;
  display: block;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  line-height: 1.4;
  float: right;
  text-transform: uppercase;
}
#footer .footer-bottom .container_12 .footer-address-box address span {
  display: inline-block;
  position: relative;
  line-height: 1.4;
  margin-right: 8px;
}
#footer .footer-bottom .container_12 .footer-address-box address .locationMap {
  display: table;
  position: relative;
  color: #72edff;
  margin-top: 10px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  border-bottom: 1px solid #72edff;
  padding-bottom: 3px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#footer .footer-bottom .container_12 .footer-address-box address .locationMap:hover {
  color: #ffffff;
  border-color: #ffffff;
}
