html, body {
  height:100%;
  font-size: 14px;
}
body {
  background: #fff;
  font-family: Verdana, sans-serif;
  color: #333;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  margin-bottom: 0.5em;
  margin-top: 0.2em;
}
a:hover {
  text-decoration: none;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

.row.clearfix {
  margin: 0;
  padding: 0;
}
.row.clearfix [class^="col-"] {
  margin: 0;
  padding: 0;
}
.clear {
  clear: both;
  font-size: 0;
  overflow: hidden;
  height: 1px;
  background: #000;
}

.indent30 {
  display: block;
  width: 100%;
  height: 30px;
  background: none;
}
.indent50 {
  display: block;
  width: 100%;
  height: 50px;
  background: none;
}
.indent80 {
  display: block;
  width: 100%;
  height: 80px;
  background: none;
}

.btn-primary {
  background: #265fb4;
  border-radius: 20px;
  font-size: 0.9em;
  color: #fff;
  padding: 10px 25px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: all 300ms ease;
}
.btn-primary:hover {
  padding: 10px 30px;
}

.row.clearfix.top_bar {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  height: 100px;
  padding: 10px;
  border-bottom: solid 1px rgba(93,85,85,0.23);
}
.top_bar .site_name {
  display: inline-block;
}
.top_bar .site_name:after {
  display: table;
  content: " ";
  clear: both;
}
.top_bar .site_name img {
  display: block;
  float: left;
  height: 80px;
  margin-right: 5px;
}
.top_bar .site_name h1 {
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2em;
  padding: 10px 0 0 0;
  margin: 0;
}
.top_bar .site_name a {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  color: #337ab7;
}
.top_bar .site_name a:hover {
  text-decoration: none;
  color: #337ab7;
}
.row.clearfix.top_bar .site_contacts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 10px;
  text-align: right;
}
.top_bar .address_bar {
  display: inline-block;
  position: relative;
  padding-left: 72px;
}
.top_bar .address_bar .address_icon {
  position: absolute;
  left: 34px;
  top: 8px;
  font-size: 1.78em;
  color: rgba(0,0,0,0.46);
}
.top_bar ul {
  list-style: none;
  margin: 0;
}
.top_bar .address_bar .bar .address {
  font-family: sans-serif;
  color: #265FB4;
  font-weight: 600;
  font-size: 1em;
  text-align: left;
}
.top_bar .address_bar .bar .text_add {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.07em;
  text-align: left;
}

.top_menu {
  width: 100%;
  position: relative;
  height: 80px;
  background: #fff;
  padding-top: 5px;
  border-bottom: 1px solid #000;
  z-index: 10;
}
.top_menu > div {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.top_menu > div > ul {
  display: flex;
  position: relative;
  margin: 0;
  z-index: 3;
}
.top_menu > div ul li {
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  text-align: center;
  background: #fff;
  border-bottom: 2px solid #fff;
  height: 63px;
  cursor: pointer;
  white-space: nowrap;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: all 500ms ease;
}
.top_menu > div ul li a {
  display: block;
  position: relative;
  font-family: 'Roboto Condensed', sans-serif;
  padding: 10px 20px;
  text-decoration: none;
  color: #222;
  font-size: 1.25em;
  font-weight: normal;
  text-transform: uppercase;
}
.top_menu > div ul .child_menu {
  pointer-events: none;
}
.top_menu > div > ul > li:hover {
  border-bottom: 2px solid #1a80d6;
}
.top_menu > div > ul > li:hover > a {
  color: #1a80d6;
}
.top_menu > div > ul > li.current > a {
  color: #000;
}
.top_menu > div > ul > li > ul {
  position: absolute;
  left: 0;
  top: 45px;
  background: #005;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
  height: 0;
  overflow: hidden;
}
.top_menu > div > ul > li > ul > li {
  height: 0;
  width: 100%;
  text-align: left;
  overflow: hidden;
  border-bottom: 2px solid #fff;
  clear: both;
  transition: all 500ms ease;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
}
.top_menu > div > ul > li:hover > ul {
  height: auto;
}
.top_menu > div > ul > li:hover > ul > li {
  height: 45px;
  border-bottom: 2px solid #fff;
  overflow: visible;
}
.top_menu > div > ul > li:hover > ul > li:hover {
  border-bottom: 2px solid #1a80d6;
}
.top_menu > div > ul > li:hover > ul > li:hover > a {
  color: #1a80d6;
}
.top_menu > div .callback {
  position: absolute;
  right: 30px;
  top: 15px;
  z-index: 5;
}
.mobile_menu {
  display: none;
}

.fotorama {
  position: relative;
  width: 100%;
}
.fotorama .slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.fotorama .slider img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: none;
  max-height: none;
  width: auto;
  height: 600px;
}
.fotorama .slider_text {
  position: absolute;
  top: 25%;
  left: 10%;
  width: 39%;
}
.fotorama .slider_text h2 {
  white-space: nowrap;
  color: rgb(108, 211, 29);
  font-weight: 900;
  font-size: 2.2em;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.fotorama .slider_text p {
  font-family: 'Roboto Slab', serif;
  font-size: 3em;
  color: #fff;
}

.fotorama .slider_akcii .slider_text h2 {
  font-size: 3rem;
  color: #005500;
  text-shadow: 2px 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff;
  white-space: normal;
}
.fotorama .slider_akcii .slider_text p {
  font-size: 2.5rem;
  color: #000055;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff;
  margin: 0;
  padding: 0;
}
.fotorama .slider_akcii .slider_text .btn {
  margin-top: 30px;
}

@media (max-width: 1500px) {
  .fotorama .slider {
    height: 500px;
  }
  .fotorama .slider img {
    height: 500px;
  }
  .fotorama .slider_text {
    top: 20%;
    left: 5%;
  }
  .fotorama .slider_akcii .slider_text {
    top: 15%;
    left: 5%;
  }
  .fotorama .slider_text p {
    font-size: 2.5em;
  }
}
@media (max-width: 1200px) {
  .fotorama .slider {
    height: 450px;
  }
  .fotorama .slider img {
    height: 450px;
  }
  .fotorama .slider_text {
    top: 20%;
    left: 5%;
  }
  .fotorama .slider_akcii .slider_text {
    top: 11%;
    left: 5%;
  }
  .fotorama .slider_text p {
    font-size: 2.2em;
  }
}

.content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 15px;
  min-height: 350px;
}
.content.error {
  padding: 30px 15px;
}

.service-section {
  margin-top: 50px;
  margin-bottom: 50px;
}
.service-block h3 {
  margin-bottom: 0.5em;
}
.service-img-box h4 {
  padding: 14px 15px 0px 5px;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.35em;
  color: #265fb4;
}
.service-img-box p {
  padding: 5px 15px 20px 5px;
  color: #888;
}
.service-img-box h4:after {
  content: " ";
  display: block;
  background-color: #265FB4;
  height: 1px;
  width: 40px;
  margin: 8px 0 0;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.service-img-box h4:after, .service-img-box:after {
  background-color: #265fb4 !important;
}
.service-img-box h4:hover:after {
  width: 100%;
}

.consult {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url(/templates/images/worker-glass.jpg) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 15px;
}
.consult h5 {
  font-size: 1.3em;
  color: #1276a0;
  margin-top: 60px;
  margin-left: 15px;
}
.consult h2 {
  margin: 0;
  font-size: 3.4em;
  color: #0d1d4e;
  margin: 0;
  margin-bottom: 15px;
  margin-left: 15px;
}
.consult-form {
  width: 100%;
  max-width: 600px;
  padding-left: 15px;
}
.consult-form input[type="text"],
.consult-form input[type="email"],
.consult-form textarea {
  width: 100%;
  padding: 5px 15px;
  box-shadow: 7px 8px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid #eee;
  border-radius: 30px;
  padding: 10px 0 10px 20px;
  margin-bottom: 1.5em;
  background: rgba(255,255,255,0.79);
}
.consult-form textarea {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.consult .small {
  margin-top: 1em;
}
.consult .success {
  font-size: 1.3em;
}
.consult .error {
  font-size: 1.1em;
  margin: 15px 0;
  color: #f00000;
  font-weight: bold;
}

.consult_signup {
  position: relative;
  width: 100%;
  height: 250px;
  background-image: url(/templates/images/signup_background.jpg) !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15px;
  text-align: center;
}
.consult_signup h2 {
  margin: 40px 0 30px 0;
  font-size: 2.5rem;
}
.consult_signup .consult-form {
  max-width: 100%;
  padding: 0;
}
.consult_signup form {
  width: 100%;
}
.consult_signup .consult-form input[type="text"] {
  width: 20%;
  margin: 0 10px;
}
.consult_signup .consult-form .form-sbmt {
  margin-left: 10px;
}
.consult_signup .small {
  margin-top: 15px;
}
.consult_signup .success {
  font-size: 1.3em;
}
.consult_signup .error {
  font-size: 1.1em;
  margin: 15px 0 0 0;
  color: #f00000;
  font-weight: bold;
}

.advantages {
  margin-top: 60px;
  margin-bottom: 30px;
}
.advantages h5 {
  font-size: 2em;
  color: #1276a0;
  text-align: center;
}
.advantages h2 {
  font-size: 3.4em;
  color: #0d1d4e;
  line-height: 60px;
  text-align: center;
  margin: 0;
  margin-bottom: 40px;
}
.advantages h3 {
  color: #265fb4;
  margin-bottom: 0.5em;
}
.advantages .box-container {
  margin-bottom: 35px;
  position: relative;
}
.advantages .box-icon {
  border: none;
  width: 60px;
  float: left;
  padding: 3px 5px;
  margin: 3px 20px 20px 0;
  text-align: center;
}
.advantages .box-icon i.fa {
  color: #265FB4;
  font-size: 3.3em;
  padding: 0;
  border-radius: 0;
}
.advantages p.box-body {
  clear: none;
  font-size: 1em;
  width: 100%;
  padding: 0 1em;
  color: #666;
  padding-left: 83px;
  line-height: 26px;
}

.portfolio {
  position: relative;
}
.portfolio h5 {
  font-size: 2em;
  color: #1276a0;
  text-align: center;
}
.portfolio h2 {
  font-size: 3.4em;
  color: #0d1d4e;
  line-height: 60px;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}
.portfolio a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #306ea3;
}
.portfolio div[class^="col-"] {
  margin-bottom: 50px;
}
.portfolio a img {
  max-width: none;
  width: -webkit-calc(100% + 50px);
  width: calc(100% + 50px);
  opacity: 0.8;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}
.portfolio a:hover img {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.portfolio a .infobox {
  position: absolute;
  opacity: 0.2;
  background: #002;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 90px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.portfolio a:hover .infobox {
  opacity: 0.5;
}
.portfolio a h3 {
  position: absolute;
  bottom: 60px;
  left: 30px;
  font-size: 1.8em;
  opacity: 1;
  color: #fff;
  transform: translate3d(0,15px,0);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.portfolio a:hover h3 {
  transform: translate3d(0,0,0);
}
.portfolio a p {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 1.1em;
  opacity: 0;
  color: #fff;
  transform: translate3d(0,40px,0);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.portfolio a:hover p {
  opacity: 1;
  transform: translate3d(0,0,0);
}

.about h2 {
  margin: 0;
  font-size: 3.4em;
  color: #0d1d4e;
  line-height:60px;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.about p {
  text-indent: 1.5em;
  text-align: justify;
}
.about ul li {
  margin-bottom: 0.5em;
}
.about ul li:before {
	display: inline-block;
	font-family: 'FontAwesome';
	content: "\f00c";
  font-size: 1.5em;
	color: #265FB4;
	margin-right: 0.5em;
}


.reviews {
  position: relative;
  text-align: center;
}
.reviews h2 {
  margin: 0;
  font-size: 3.4em;
  color: #0d1d4e;
  line-height: 60px;
}
.reviews-carousel {
  width: 90%;
  margin: auto;
}
.reviews-carousel .owl-nav {
  font-size: 2.5em;
  height: 30px;
}
.reviews-carousel .owl-nav [class*=owl-]:hover {
  background: #fff;
  color: #888;
}
.reviews-carousel .owl-prev {
  position: relative;
  left: -150px;
  top: 40px;
  width: 30px;
}
.reviews-carousel .owl-next {
  position: relative;
  left: 150px;
  top: 40px;
  width: 30px;
}
.owl-thumb-item {
  display: inline-block;
  padding: 3px;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  border-radius: 38px;
}
.owl-thumb-item img {
  max-width: 70px;
  max-height: 70px;
  border: 0;
  border-radius: 35px;
}
.owl-thumb-item.active {
  border: 1px solid #265FB4;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  font-size: 35px;
  margin: 0 15px;
}

footer {
  background-image: url(/templates/images/footer-bg.jpg);
  background-size: cover;
  color: #ccc;
}
footer h2 {
  color: #fff;
}
footer > div {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 3em;
}
footer .block-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
footer .contact-details {
  display: flex;
  flex-direction: column;
}
footer .contact-details li {
  display: flex;
  align-items: flex-start;
  list-style: none;
  margin-bottom: 5px;
}
footer .contact-details li span {
  padding-top: 5px;
}
footer .contact-details .fa {
  font-size: 1.4em;
  line-height: 32px;
  text-align: center;
  margin-right: 15px;
  width: 1.4em;
}
footer .footer_menu li {
  font-size: 1em;
  margin-bottom: 0.2em;
}
footer .footer_menu li a {
  color: #aaa;
  text-decoration: none;
}
footer .footer_menu li a:hover {
  color: #fff;
  text-decoration: underline;
}
.copyright {
  background-color: #1e1e1e;
}
.copyright > div {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 1em 3em;
}
.copyright p {
  color: #777;
  margin: 0;
  padding: 0;
}
.copyright .row.clearfix .text-right {
  padding-top: 5px;
}

.content ul li {
  margin-bottom: 0.5em;
}
.content ul li:before {
	display: inline-block;
	font-family: 'FontAwesome';
	content: "\f00c";
  font-size: 1.5em;
	color: #265FB4;
	margin-right: 0.5em;
}
.content .foto {
  display: inline-block;
  margin: 10px 20px;
}
.content table td {
  padding: 10px;
}

@media (max-width: 991px) {

  .top_menu {
    /* display: none; */
    position: fixed;
    width: 0;
    height: auto;
    background: #fff;
    right: 0;
    top: 0;
    padding: 0;
    border: none;
    overflow: hidden;
  }
  .top_menu > div {
    border-left: 3px solid #eaeaea;
    border-bottom: 3px solid #eaeaea;
    margin-left: 10px;
    margin-bottom: 10px;
    padding-right: 50px;
  }
  .top_menu > div > ul {
    flex-direction: column;
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .top_menu > div ul li {
    justify-content: center;
    height: 40px;
  }
  .top_menu > div .callback {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    padding: 0 20px 20px 20px;
    text-align: center;
  }
  .mobile_menu {
    display: inline-block;
    position: fixed;
    right: 15px;
    top: 15px;
    background-color: #e0e0e0;
    opacity: 0.9;
    z-index: 99;
    border-radius: 60px;
    padding-top: 15px;
    width: 60px;
    height: 60px;
    text-align: center;
  }
  .mobile_menu i {
    font-size: 2em;
    color: #777;
  }

  .indent30 {
    height: 10px;
  }
  .indent50 {
    height: 30px;
  }
  .indent80 {
    height: 50px;
  }

  .row.clearfix.top_bar {
    height: auto;
  }
  .row.clearfix.top_bar .site_contacts {
    flex-direction: column;
    padding-top: 5px;
  }
  .top_bar .phones_bar {
    margin-bottom: 10px;
  }
  .top_bar .address_bar .bar .address {
    display: none;
  }
  .top_bar .address_bar.work_time_bar {
    display: none;
  }
  .top_bar .address_bar {
    padding-left: 50px;
  }
  .top_bar .address_bar .address_icon {
    left: 15px;
  }

  .fotorama .slider_text {
    top: 15%;
    width: 90%;
  }
  .fotorama .slider_text h2 {
    font-size: 3rem;
    color: #005500;
    text-shadow: 2px 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff;
    white-space: normal;
  }
  .fotorama .slider_text p {
    display: none;
  }
  .reviews-carousel .owl-carousel.owl-theme .owl-prev {
    display: none;
  }
  .reviews-carousel .owl-carousel.owl-theme .owl-next {
    display: none;
  }
  .consult h2 {
    font-size: 2.3em;
    line-height: 1em;
    margin-left: 0;
  }
  .consult h5 {
    margin-top: 8px;
    margin-left: 0;
    margin-bottom: 5px;
  }
  .consult-form {
    padding-left: 0;
  }
  .consult-form textarea {
    height: 70px;
  }
  .consult .small {
    background: #ede9e6;
    padding: 0.5em 1em;
  }
  .consult_signup .small {
    display: none;
  }

  .advantages .box-icon {
    margin-right: 15px;
  }
  .advantages p.box-body {
    padding-left: 75px;
  }
  .advantages h2 {
    font-size: 2.8em;
    line-height: 1.1em;
  }
  .advantages h3 {
    font-size: 1.6em;
    line-height: 1.1em;
  }
  .portfolio h2 {
    font-size: 2.8em;
    line-height: 1.1em;
  }
  .about h2 {
    font-size: 2.8em;
    line-height: 1.1em;
  }
  .reviews h2 {
    font-size: 2.8em;
    line-height: 1.1em;
  }

  .consult_signup h2 {
    margin: 0 0 10px 0;
    font-size: 2rem;
  }
  .consult_signup .consult-form input[type="text"] {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
  .consult_signup .consult-form .form-sbmt {
    margin: 0 0 10px 0;
  }

  footer .contact-details li {
    margin-bottom: 1em;
  }
  footer .footer_menu li {
    margin-bottom: 1em;
  }
}
