/* =================================================================
TABLE OF CONTENTS

1.0 CSS Reset
2.0 Bootstrap fix for WinPhone 8 and IE10
3.0 Basic Document Styles
4.0 Typography
5.0 Forms
6.0 Preloader
7.0 Section Styles
8.0 Background Styles
9.0 Navigation
10.0 Animation
11.0 Services
12.0 Footer
13.0 Buttons
	13.1 Default Buttons
	13.2 Button Styles
	13.3 Button Sizes
14.0 Overlay Styles
15.0 Shortcodes
16.0 Mobile
17.0 Responsive
18.0 Image Backgrounds
19.0 pop-up style
20.0 Flexslider

================================================================ */
/* ==================================================================
	1.0 CSS Reset
================================================================== */
html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

/* ==================================================================
	2.0 Bootstrap fix for WinPhone 8 and IE10 
================================================================== */
@-webkit-viewport {
  width: device-width; }
@-moz-viewport {
  width: device-width; }
@-ms-viewport {
  width: device-width; }
@-o-viewport {
  width: device-width; }
@viewport {
  width: device-width; }
/* ==================================================================
	3.0 Basic Document Styles
================================================================== */
body {
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 300;
  background: #ffffff;
  line-height: 28px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  white-space: normal;
  position: relative; }

input,
select,
textarea {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 400; }

/* ==================================================================
	4.0 Typography
================================================================== */
h1 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 17px; }

h1, h2 {
  position: relative; }

h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif; }

p {
  margin-bottom: 20px; }

p.lead {
  font-family: "Raleway", sans-serif;
  font-size: 21px;
  padding: 0;
  font-weight: 400;
  margin-bottom: 42px; }

.section-title {
  -webkit-backface-visibilty: hidden;
  -moz-backface-visibilty: hidden;
  -ms-backface-visibilty: hidden;
  backface-visibilty: hidden;
  letter-spacing: 0;
  margin-bottom: 27px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 7px;
  position: relative; }

.section-title:before {
  content: "";
  position: absolute;
  top: 28px;
  background-color: #e02130;
  height: 2px;
  margin: 0 auto;
  z-index: -1; }

#about .section-title:before {
  left: 35%;
  width: 30%; }

#subscribe .section-title:before {
  left: 30.5%;
  width: 39%; }

#services .section-title:before {
  left: 29%;
  width: 42%; }

#contact .section-title:before {
  left: 27.5%;
  width: 45%; }

a, a > * {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

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

em {
  font-style: italic; }

strong {
  font-weight: 700; }

.bottom-padding {
  padding-bottom: 21px !important; }

.bottom-margin {
  margin-bottom: 20px !important; }

.no-bottom-margin {
  margin-bottom: 0px !important; }

.csstransitions .animated, animated {
  visibility: hidden; }

.csstransitions .visible {
  visibility: visible; }

.video-container {
  width: 100%;
  height: 100%; }

.img-center {
  display: block;
  margin: 0 auto; }

.digit {
  font-family: "ubuntu", sans-serif; }

/* ==================================================================
	5.0 Forms
================================================================== */
input, textarea, select {
  width: 100%;
  height: auto;
  margin: 0;
  margin-bottom: 30px;
  padding: 7px 20px;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input.width-auto,
textarea.width-auto,
select.width-auto {
  width: auto;
  min-width: 270px; }

textarea {
  resize: both;
  height: 150px; }

form input,
form textarea,
form select {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

input[type="submit"], button {
  width: auto; }

select, option, input[type="submit"], button {
  cursor: pointer; }

input[type="checkbox"] {
  -webkit-appearance: checkbox; }

input[type="radio"] {
  -webkit-appearance: radio; }

input[type=checkbox], input[type=radio] {
  width: auto; }

.checkbox input[type=checkbox],
.radio input[type=radio] {
  margin-top: 4px; }

.checkbox-inline input[type=checkbox],
.radio-inline input[type=radio] {
  margin-top: 7px; }

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6); }

input:-moz-placeholder, textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6); }

input.placeholder, textarea.placeholder {
  color: rgba(255, 255, 255, 0.6); }

input[placeholder] {
  text-overflow: ellipsis; }

::-moz-placeholder {
  text-overflow: ellipsis; }

/* firefox 19+ */
input:-moz-placeholder {
  text-overflow: ellipsis; }

.form {
  position: relative;
  overflow: hidden;
  display: table;
  margin: 0 auto; }

.success-message,
.error-message {
  position: relative;
  top: 20px;
  padding-top: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: none; }

/* WebKit browsers */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6); }

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.6);
  opacity: 1; }

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
  opacity: 1; }

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.6); }

.light-style:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.6); }

.select-control {
  position: relative; }

.select-control i {
  position: absolute;
  font-size: 18px;
  right: 20px;
  top: 14px;
  z-index: 2;
  pointer-events: none;
  cursor: pointer; }

.subscription-form input,
.subscription-form button {
  float: left; }

.subscription-form input {
  min-width: 100%;
  text-align: center; }

.contact-form .button-white {
  width: 100%; }

.contact-form textarea {
  margin-bottom: 25px; }

/* ==================================================================
	6.0 Preloader
================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999999; }

#loading-animation {
  width: 120px;
  height: 128px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(images/loading-animation.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -60px 0 0 -64px; }

/* ==================================================================
	7.0 Section Styles
================================================================== */
.main-container {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden; }

.section {
  position: relative;
  background-color: transparent;
  width: 100%;
  overflow: hidden;
  padding: 48px 0;
  z-index: 10; }

.section.fullscreen-element {
  height: 10px;
  /* Fix */ }

.section-container {
  position: relative;
  z-index: 100; }

.section.fullscreen-element .section-container {
  display: block;
  height: 100%;
  overflow: hidden;
  padding: 10px 0; }

.section.fullscreen-element .element-table {
  display: table;
  height: 100%;
  width: 100%; }

.section.fullscreen-element .table-cell {
  display: table-cell;
  vertical-align: middle;
  margin: auto; }

.section-header {
  padding-bottom: 5px; }

/* ==================================================================
	8.0 Background Styles
================================================================== */
.cover-background {
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.background-repeat {
  background-repeat: repeat; }

.background-repeat-x {
  background-repeat: repeat-x; }

.background-repeat-y {
  background-repeat: repeat-y; }

#video_background {
  position: fixed;
  bottom: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-backface-visibilty: hidden;
  -moz-backface-visibilty: hidden;
  -ms-backface-visibilty: hidden;
  backface-visibilty: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0); }

.video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #000000; }

.video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.background-layer {
  position: fixed;
  top: -70px;
  bottom: -70px;
  left: -70px;
  right: -70px;
  z-index: 0;
  -webkit-transition: background 700ms ease-in 0ms;
  -moz-transition: background 700ms ease-in 0ms;
  -ms-transition: background 700ms ease-in 0ms;
  -o-transition: background 700ms ease-in 0ms;
  transition: background 700ms ease-in 0ms; }

.background-blue-dark {
  background: #000717; }

/* ==================================================================
	9.0 Navigation
================================================================== */
.site-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding-left: 115px;
  padding-top: 25px;
}
.site-logo a {
  font-size: 26px;
  font-weight: bold;
}
.site-logo a .color {
  color: #e02130;
}

.nav-close {
  position: relative;
  width: 155%;
  height: 90px;
  top: 48%;
  left: 27.5%;
  z-index: 9999;
  cursor: pointer;
  background-color: #000000;
  letter-spacing: 5px;
  font-size: 21px;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.nav-close .exit,
.nav-close .menu {
  position: relative;
  top: 33.5%; }

.nav-close .exit {
  display: none; }

.nav-close .menu {
  display: block; }

.nav-close.visible > .menu {
  display: none !important; }

.nav-close.visible > .exit {
  display: block !important; }

#navigation-icon {
  width: 34px;
  height: 25px;
  cursor: pointer;
  z-index: 99999999999;
  position: relative;
  margin: 0px auto;
  top: 8px; }

#navigation-icon span {
  position: absolute;
  background-color: #ffffff;
  display: block;
  width: 33px;
  height: 2px;
  left: 0;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out; }

.site-logo a,
.site-logo img {
  display: block; }

.site-logo img {
  width: auto;
  height: auto; }

.site-nav {
  position: fixed;
  bottom: 0px;
  left: 0;
  z-index: 999999;
  display: block;
  width: 47%;
  height: 100%;
  background-color: #e02130; }

.right-section {
  position: fixed;
  bottom: 0px;
  height: 100%;
  width: 50%;
  background-color: #ffffff;
  right: 0;
  z-index: 99999; }

.site-nav ul {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto; }

.site-nav ul li {
  width: 100%;
  position: relative; }

.site-nav ul li a {
  display: block;
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 15px 10px;
  margin-bottom: 1px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear; }

.site-nav ul li a i {
  color: #ffffff;
  font-size: 39px; }

.menu-item-wrap .text {
  color: #ffffff;
  display: block;
  font-size: 16px; }

/* ==================================================================
	10.0 Animation
================================================================== */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
  animation-duration: 0.5s; }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
  transition: 0.3s; }

.site-nav.fadeInLeftBig {
  left: 0px !important; }

.site-nav.fadeOutLeftBig {
  left: -47%; }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  animation-duration: 0.5s; }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
  transition: 0.3s; }

.right-section.fadeInRightBig {
  right: 0px !important; }

.right-section.fadeOutRightBig {
  right: -50%; }

.right-section .timer-text {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 3%;
  text-align: center;
  margin: 0 auto;
  color: #000000; }

.timer-text h2 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 65px;
  letter-spacing: 10px;
  margin-left: 9px; }

.timer-text ul li {
  display: inline-block;
  margin-bottom: 20px; }

.timer-text ul li div {
  height: 45px;
  width: 113px;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  margin: 5px 18px 14px 18px;
  border-bottom: 1px solid #e02130; }

.timer-text ul li span {
  font-size: 21px;
  font-weight: 400; }

/*==================================================================
	11.0 Services
================================================================== */
.service-icon {
  font-size: 75px;
  color: #ffffff;
  margin-bottom: 20px; }

.service h3 {
  margin-bottom: 10px; }

.feature-item {
  text-align: left;
  margin-bottom: 30px; }

.feature-icon {
  font-size: 40px;
  color: #ffffff;
  float: left;
  width: 50px;
  text-align: center; }

.feature-text {
  margin-left: 60px; }

.feature-item h3 {
  font-size: 21px;
  margin-bottom: 10px; }

/* Icon Tabs */
.ico.nav-tabs {
  margin: 0 auto;
  margin-bottom: 38px;
  border: 0;
  display: table;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.ico.nav-tabs li {
  border-right: 0;
  margin-bottom: 0;
  transition: 0.8s; }

.ico.nav-tabs li:last-child {
  border-right: 0; }

.ico.nav-tabs li.active {
  border: 0;
  border-right: 0;
  background-color: rgba(206, 12, 14, 0.6); }

.ico.nav-tabs li.active:last-child {
  border-right: 0; }

.ico.nav-tabs > li.active > a,
.ico.nav-tabs > li.active > a:hover,
.ico.nav-tabs > li.active > a:focus {
  color: #fff;
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.ico.nav-tabs li.active a:hover {
  border: 0; }

.ico.nav-tabs li a {
  font-size: 14px;
  text-transform: none;
  color: #fff;
  margin-right: 0;
  background-color: transparent;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 20px 0px;
  width: 180px; }

.ico.nav-tabs li a i {
  display: block;
  color: #ffffff;
  font-size: 52px;
  line-height: 70px; }

.ico.nav-tabs > li > a:hover,
.ico.nav-tabs > li > a:hover > i,
.ico.nav-tabs > li.active > a > i {
  color: #ffffff; }

.ico.nav-tabs li a span {
  display: block;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px; }

.ico.tab-content .tab-pane {
  padding: 0;
  border: 0;
  text-align: center; }

.ico.tab-content .tab-pane .btn {
  margin-top: 15px; }

.animated .tab-content .active {
  visibility: hidden; }

.animated.visible .tab-content .active {
  visibility: visible; }

/* Heading bock */
.heading-block {
  margin-bottom: 15px;
  position: relative; }

.heading-block h4 {
  padding: 0 0 18px;
  border-bottom: 1px solid #e02130; }

hr {
  border-top: 1px solid #e02130; }

/*==================================================================
	12.0 Footer
================================================================== */
.site-footer {
  background: #e02130;
  position: fixed;
  bottom: -8px;
  right: 0px;
  left: 0px;
  min-height: 50px;
  margin: 0 auto;
  z-index: 10000;
  padding-left: 0px;
  padding-right: 30px;
  -webkit-backface-visibilty: hidden;
  -moz-backface-visibilty: hidden;
  -ms-backface-visibilty: hidden;
  backface-visibilty: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  text-align: center; }

.copyright {
  line-height: 33px;
  margin: 0;
  text-align: left;
  padding-left: 100px;
  position: absolute;
  bottom: 12px;
  left: 0; }

.socials-icons {
  position: relative;
  width: 100%;
  margin: 0;
  height: 50px; }

.socials-icons ul {
  margin: 0;
  display: table;
  float: right;
  margin-top: 2px; }

.socials-icons li {
  margin: 0;
  display: block;
  float: left;
  margin-top: -5px; }

.socials-icons li a {
  display: block;
  background: transparent;
  position: relative;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px; }

.socials-icons li a i {
  color: #ffffff;
  font-size: 21px; }

.socials-icons li a:hover i {
  color: #ffffff; }

/* ==================================================================
	13.0 Buttons
================================================================== */
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.button:focus {
  outline: none;
  outline-offset: 0px;
  text-decoration: none; }

.buttons-group {
  margin: 0px -10px; }

.buttons-group a,
.buttons-group button {
  margin: 0 10px; }

/*	13.1 Default Buttons
	-------------------------------------------------------------- */
.button {
  display: inline-block;
  position: relative;
  outline: 0;
  outline-offset: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0 65px;
  height: 56px;
  line-height: 56px;
  letter-spacing: 1px;
  border: none;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

@media only screen and (min-width: 250px) and (max-width: 420px) {
  .contact-form .button-white {
    padding: 0px 71px 0px 29px !important; } }
.button:hover,
.button:focus {
  color: #ffffff;
  -webkit-opacity: 0.87;
  -moz-opacity: 0.87;
  opacity: 0.87;
  filter: alpha(opacity=87); }

.button:hover i,
.button:focus i {
  color: #ffffff; }

.button.icon-right i {
  margin: 0 0 0 5px; }

/*	13.2  Button Styles
	-------------------------------------------------------------- */
.button.button-link {
  background-color: transparent;
  border-color: transparent; }

/*	13.3 Button Sizes
	-------------------------------------------------------------- */
.button.button-mini {
  padding: 0 19px;
  font-size: 11px;
  height: 28px;
  line-height: 28px; }

.button.button-border.button-mini {
  line-height: 24px; }

.button.button-small {
  padding: 0 22px;
  font-size: 12px;
  height: 34px;
  line-height: 34px; }

.button.button-border.button-small {
  line-height: 30px; }

.button.button-large {
  padding: 0 31px;
  font-size: 16px;
  height: 46px;
  line-height: 46px; }

.button.button-border.button-large {
  line-height: 42px; }

.button.button-xlarge {
  padding: 0 37px;
  font-size: 18px;
  letter-spacing: 2px;
  height: 52px;
  line-height: 52px; }

.button.button-border.button-xlarge {
  line-height: 48px; }

/* ==================================================================
	14.0 Overlay Styles
================================================================== */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.overlay-frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 0px 0px 80px #353438;
  -moz-box-shadow: 0px 0px 0px 80px #353438;
  box-shadow: 0px 0px 0px 80px #353438;
  z-index: 1; }

.color-overlay,
.gradient-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

/* ==================================================================
	15.0 Shortcodes
================================================================== */
.adress {
  position: relative;
  margin-bottom: 55px; }

.adress i {
  font-size: 42px;
  display: block;
  height: 42px;
  margin-bottom: 15px; }

.contact-way {
  margin: 0; }

/* Lightbox */
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
  background-color: #000000; }

.nivo-lightbox-theme-default .nivo-lightbox-close {
  background: url(images/close.png) no-repeat scroll 0px 0px !important;
  width: 32px;
  height: 32px; }

.nivo-lightbox-theme-default .nivo-lightbox-prev {
  background-image: url(images/prev.png); }

.nivo-lightbox-theme-default .nivo-lightbox-next {
  background-image: url(images/next.png); }

.opacity-100 {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100); }

.opacity-95 {
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
  filter: alpha(opacity=95); }

.opacity-90 {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  filter: alpha(opacity=90); }

.opacity-85 {
  -webkit-opacity: 0.85;
  -moz-opacity: 0.85;
  opacity: 0.85;
  filter: alpha(opacity=85); }

.opacity-80 {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.opacity-75 {
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
  filter: alpha(opacity=75); }

.opacity-70 {
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70); }

.opacity-65 {
  -webkit-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
  filter: alpha(opacity=65); }

.opacity-60 {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  filter: alpha(opacity=60); }

.opacity-55 {
  -webkit-opacity: 0.55;
  -moz-opacity: 0.55;
  opacity: 0.55;
  filter: alpha(opacity=55); }

.opacity-50 {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  filter: alpha(opacity=50); }

.opacity-45 {
  -webkit-opacity: 0.45;
  -moz-opacity: 0.45;
  opacity: 0.45;
  filter: alpha(opacity=45); }

.opacity-40 {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  filter: alpha(opacity=40); }

.opacity-35 {
  -webkit-opacity: 0.35;
  -moz-opacity: 0.35;
  opacity: 0.35;
  filter: alpha(opacity=35); }

.opacity-30 {
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  filter: alpha(opacity=30); }

.opacity-25 {
  -webkit-opacity: 0.25;
  -moz-opacity: 0.25;
  opacity: 0.25;
  filter: alpha(opacity=25); }

.opacity-20 {
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.opacity-15 {
  -webkit-opacity: 0.15;
  -moz-opacity: 0.15;
  opacity: 0.15;
  filter: alpha(opacity=15); }

.opacity-10 {
  -webkit-opacity: 0.1;
  -moz-opacity: 0.1;
  opacity: 0.1;
  filter: alpha(opacity=10); }

.opacity-5 {
  -webkit-opacity: 0.05;
  -moz-opacity: 0.05;
  opacity: 0.05;
  filter: alpha(opacity=5); }

.opacity-0 {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=0); }

/* ==================================================================
	16.0 Mobile
================================================================== */
body.mobile {
  -webkit-text-size-adjust: none; }

body.mobile .onstart,
body.mobile .animated {
  display: block;
  visibility: visible; }

/* ==================================================================
	17.0 Responsive
================================================================== */
@media (max-width: 991px) {
  .section-title:before {
    top: 18px; }

  .section.fullscreen-element,
  .fullscreen-element {
    height: auto;
    min-height: 100% !important; }

  .site-nav {
    right: 0; }

  section, .section {
    padding: 190px 30px; }

  .fullscreen-element .section-container {
    display: block; }

  .fullscreen-element .table-container {
    display: block; }

  h1 {
    font-size: 50px; }

  h2 {
    font-size: 30px; }

  h3 {
    font-size: 26px; }

  .services .service {
    padding-bottom: 50px; }

  .services .service:last-child {
    padding-bottom: 0px; }

  #clock .counter-box {
    display: inline-block;
    float: none;
    width: 170px;
    padding: 15px 15px; }

  .site-logo {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding-bottom: 15px; }

  #about .section-title:before {
    left: 32%;
    width: 36%; }

  #services .section-title:before {
    left: 24%;
    width: 52%; } }
@media (max-width: 768px) {
  .timer-text h2 {
    letter-spacing: 6px;
    font-size: 31px; }

  .nav-close {
    font-size: 15px !important;
    height: 60px !important; }

  .textslider h1 {
    font-size: 62px; }

  .textslider h2 {
    font-size: 48px; }

  .textslider h3 {
    font-size: 30px; }

  .subscription-form input,
  .subscription-form button {
    margin: 0px auto;
    float: none; }

  .subscription-form button {
    margin-top: 10px; }

  .line.horizontal {
    display: none; }

  .site-footer {
    position: relative;
    bottom: 0;
    background: #e02130;
    color: #ffffff;
    padding: 21px 30px 0px 30px; }

  .copyright {
    text-align: center;
    padding: 0;
    position: relative; }

  .socials-icons {
    height: auto;
    display: block;
    overflow: hidden; }

  .socials-icons ul {
    margin: 0 auto;
    text-align: center;
    display: table;
    overflow: hidden;
    float: none; }

  .socials-icons li {
    margin: 0px 9px;
    display: inline-block;
    float: none; }

  .socials-icons li a,
  .socials-icons li a:hover,
  .socials-icons li a i,
  .socials-icons li a:hover i {
    color: #ffffff; }

  .dialog .dialog-inner {
    padding: 50px 25px !important; }

  .nav-tabs > li {
    float: none; }

  h2 {
    font-size: 30px; }

  .section-title:before {
    display: none; }

  .dialog .dialog-inner button {
    width: 100% !important;
    margin: 32px 0 0 !important; } }
@media (max-width: 416px) {
  .socials-icons li {
    margin: 0px -3px; }

  .subscription-form input {
    min-width: 239px !important; } }
@media (max-width: 640px) {
  .textslider h1 {
    font-size: 48px; }

  .textslider h2 {
    font-size: 30px; }

  .textslider h3 {
    font-size: 24px; }

  .site-nav .move-to {
    width: 100px !important;
    margin: 0px auto !important; }

  .menu-item-wrap .text:before {
    width: 100px !important; }

  .menu-item-wrap .text:after {
    right: -10px !important; }

  .textslider h1 {
    font-size: 48px; }

  .textslider h2 {
    font-size: 30px; }

  .textslider h3 {
    font-size: 24px; }

  .site-logo img {
    width: 35% !important; } }
@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  body, input, select, textarea {
    font-size: 14px;
    margin-bottom: 21px; }

  textarea {
    height: 100px; }

  .adress {
    margin-bottom: 21px; }

  .adress i {
    margin-bottom: 10px; }

  #about .section-title:before {
    left: 32%;
    width: 36%; }

  #services .section-title:before {
    left: 25%;
    width: 50%; }

  #contact .section-title:before {
    left: 23%;
    width: 54%; }

  .contact-form textarea {
    margin-bottom: 15px; }

  #contact .section-header {
    padding-bottom: 0px; } }
@media only screen and (min-height: 250px) and (max-height: 401px) and (max-width: 650px) and (orientation: landscape) {
  .right-section {
    overflow-x: hidden !important;
    overflow-y: scroll !important; }

  .timer-text h2 {
    padding-top: 60px !important; }

  .timer-text ul li {
    margin-bottom: 15px !important; }

  .timer-text ul li div {
    height: 41px !important; }

  .timer-text h2 {
    font-size: 31px !important;
    padding-top: 100px !important;
    margin-bottom: 25px; }

  .menu-item-wrap .text:before {
    height: 46px !important; }

  .site-nav ul li a {
    line-height: 38px !important; }

  .dialog__content {
    width: 69% !important;
    height: 293px !important; }

  .dialog .dialog-inner {
    padding: 20px 20px !important; }

  .dialog .dialog-inner .icon {
    font-size: 36px !important; }

  .dialog .dialog-inner h2 {
    margin-top: 8px !important; }

  .dialog .dialog-inner p {
    font-size: 14px !important;
    margin-bottom: 8px !important; }

  .dialog .dialog-inner button {
    margin: 8px 0 0 !important;
    height: 50px !important;
    line-height: 50px !important; }

  .site-logo {
    padding-left: 0 !important; }

  .site-logo img {
    width: 35% !important;
    margin: 0 auto !important; } }
@media only screen and (min-width: 490px) and (max-width: 615px) {
  .timer-text h2 {
    font-size: 43px; } }
@media (max-width: 350px) {
  .timer-text ul li div {
    width: 90px;
    font-size: 25px; }

  .timer-text ul li span {
    font-size: 18px; }

  .site-nav .move-to {
    margin: 0px 10px !important; } }
/* ==================================================================
	18.0 Image Backgrounds
================================================================== */
.image-1 {
  background-image: url(../images/background/black_slide1.jpg); }

.image-2 {
  background-image: url(../images/background/black_slide2.jpg); }

.image-3 {
  background-image: url(../images/background/black_slide3.jpg); }

.image-4 {
  background-image: url(../images/background/black_slide3.jpg); }

.image-5 {
  background-image: url(../images/background/black_slide4.jpg); }

/* ====================================================
	19.0 pop-up style
==================================================== */
.dialog {
  position: fixed;
  z-index: 999999;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  pointer-events: none; }

.dialog, .dialog__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto; }

.dialog__overlay {
  position: absolute;
  z-index: 1;
  background: rgba(31, 34, 46, 0.9);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s; }

.dialog--open .dialog__content {
  pointer-events: auto;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100); }

.dialog__content {
  width: 50%;
  max-width: 401px;
  min-width: 290px;
  background: transparent;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 5;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  background: url(../images/big-02.jpg) center;
  overflow: hidden;
  border: 1px solid #e02130; }

.dialog .dialog-inner {
  padding: 39px 70px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5); }

.dialog .dialog-inner h4 {
  color: #ffffff;
  font-size: 40px;
  padding-top: 20px;
  font-weight: 700; }

.dialog .dialog-inner p {
  font-size: 16px;
  margin-bottom: 30px; }

.dialog .dialog-inner .icon {
  font-size: 45px; }

.dialog__content #close-me {
  position: absolute;
  font-size: 21px;
  right: 15px;
  top: 10px;
  cursor: pointer; }

.dialog .dialog-inner input {
  width: 100%; }

.dialog .dialog-inner button {
  width: 80%;
  margin: 32px 10% 0; }

.dialog .dialog-inner h2 {
  margin-bottom: 15px !important; }

.animated2 {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  -moz-animation-name: fadeInUp2;
  -o-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  animation-duration: 1s; }

.mt-20 {
  margin-top: 20px; }

.large-header {
  position: fixed;
  top: 0px;
  z-index: 9;
  display: block; }

.backface {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  z-index: -1; }

.backface.appear {
  opacity: 1 !important;
  z-index: 9999 !important;
  transition: 0.5s !important; }

@-webkit-keyframes fadeInUp2 {
  0% {
    -webkit-transform: translateY(20px);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0); }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100); } }
@-moz-keyframes fadeInUp2 {
  0% {
    -webkit-transform: translateY(20px);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0); }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100); } }
@-ms-keyframes fadeInUp2 {
  0% {
    -webkit-transform: translateY(20px);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100); }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100); } }
@keyframes fadeInUp2 {
  0% {
    -webkit-transform: translateY(20px);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0); }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100); } }
/* ==================================================================
	20.0 Flexslider
================================================================== */
.flexslider.textslider {
  margin: 0;
  background: transparent;
  border: 0px solid #ffffff;
  position: relative;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
  zoom: 1; }

.site-nav ul li a:hover .menu-item-wrap .text:after,
.site-nav ul li a:hover .text:before,
.site-nav ul li a.active .menu-item-wrap .text:after,
.site-nav ul li a.active .text:before {
  visibility: visible; }

.site-nav ul li a {
  line-height: 53px; }

.menu-item-wrap .text:before {
  visibility: hidden;
  content: " ";
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #000;
  position: absolute;
  height: 60px;
  width: 215px;
  left: 0;
  bottom: 12px;
  z-index: -1; }
.menu-item-wrap .text:after {
  visibility: hidden;
  content: " ";
  position: absolute;
  height: 0px;
  width: 0px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid #000;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: -10px;
  top: 46%; }

.site-nav .move-to {
  width: 215px;
  margin: 0 auto; }

/*# sourceMappingURL=style.css.map */
