﻿@media screen and (min-width: 1000px) {
  .mobile-only {
    display: none;
  }
}

.button {
  width: 20rem;
  height: 5rem;
  display: inline-block;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 5rem;
  color: #fff;
  background: #eb4636;
  border: 1px solid #eb4636;
  border-radius: 3rem;
  -moz-transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
  -o-transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
  -webkit-transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
  transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
}

.button:hover,
.button.active {
  border: 1px solid #eb4636;
  background: none;
  color: #eb4636 !important;
}

.button.type-2 {
  width: 15rem;
  border: 1px solid #d9dada;
  color: #1a1725;
  font-size: 1.2rem;
  font-weight: 700;
  background: none;
}

.button.type-2:hover,
.button.type-2.active {
  border-color: #eb4636;
  color: #eb4636;
}

.button.type-3 {
  max-width: 45%;
  text-align: center;
  border: 1px solid #d9dada;
  color: #1a1725;
  font-size: 1.2rem;
  font-weight: 700;
  background: none;
}

.button.type-3:hover,
.button.type-3.active {
  border-color: #eb4636;
  color: #eb4636;
}

.mobile-hide {
  display: none;
}

@media screen and (min-width: 700px) {
  .mobile-hide {
    display: block;
  }
}

.cover > div:first-child {
  position: absolute;
  height: 45rem;
  width: 100%;
  z-index: -1;
}

.cover.inner {
  height: 18rem;
}

.cover.inner > div:first-child {
  height: 18rem;
}

@media screen and (min-width: 1000px) {
  .cover.inner {
    height: 36rem;
    margin-top: -18em;
  }
  .cover.inner > div:first-child {
    height: 36rem;
  }
}

@media screen and (min-width: 700px) {
  .cover .row {
   padding-top: 1.8rem;
  }
  .cover .row .text {
    text-align: left;
  }
}

.cover .row .image {
  position: relative;
  height: 35rem;
  display: none;
}

@media screen and (min-width: 1000px) {
  .cover .row .image {
    display: none;
    height: 41.2rem;
  }
  .cover .row .image img {
    position: absolute;
    left: 5rem;
    height: 2rem;
    width: auto;
    max-width: none;
    max-width: unset;
    bottom: 0;
  }
}

.cover .row h2 {
  min-height: 13rem;
}

.form {
  padding-top: .5rem;
    padding-bottom: .5rem;
  background-color:rgba(10,42,59,0.7);
}

.form.small {
  max-width: 35rem;
  margin: 0 auto;
  float: none;
}

.form .title {
  padding: .5rem;
  margin-bottom: 1rem;
  background: #898a8b;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2em;
}

.form .title span {
  font-size: 2.4rem;
  line-height: 1.2em;
}

.form .fieldset-container {
  position: relative;
}

.form .fieldset-container .fieldset {
  border: solid 1px #d9dada;
  border-radius: 2px;
  margin-top: .5rem;
  width: 100%;
  position: relative;
}

.form .fieldset-container .fieldset.error {
  border-color: #ff0000;
}

.form .fieldset-container .fieldset.no-border {
  border: none;
}

.form .fieldset-container .fieldset.check {
  margin-top: .5rem;
}

.form .fieldset-container .fieldset input[type=text] {
  border: none;
  padding: 0 1rem;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.2em;
  height: 3.6rem;
  line-height: 3.6rem;
  outline: none;
}

.form .fieldset-container .fieldset input:-webkit-autofill {
  background-color: #fff !important;
}

.form .fieldset-container .fieldset input[type=checkbox] {
  display: none;
}

.form .fieldset-container .fieldset input[type=checkbox] + label {
  padding-left: 28px;
  font-size: 1.4rem;
  line-height: 1.2em;
  line-height: 18px;
}

.form .fieldset-container .fieldset input[type=checkbox] + label a {
  color: #eb4636;
}

.form .fieldset-container .fieldset input[type=checkbox] + label a.white {
  color: #fff;
}

.form .fieldset-container .fieldset input[type=checkbox] + label:after {
  content: '';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  background: #fff;
  border: solid 1px #d9dada;
  border-radius: 2px;
}

.form .fieldset-container .fieldset input[type=checkbox]:checked + label:after {
  background-image: url("../images/checkbox-checked.jpg");
  background-repeat: no-repeat;
  border: none;
}

.form .fieldset-container .fieldset input[type=checkbox].error + label {
  color: #ff0000;
}

.form .fieldset-container .fieldset input[type=checkbox].error + label:after {
  border-color: #ff0000;
}

.form .fieldset-container .fieldset input[type=submit] {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 2rem auto 0;
  height: 5rem;
  font-size: 1.5rem;
  line-height: 5rem;
  background: #eb4636;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 2.5rem;
}

.form .fieldset-container .fieldset.phone {
  background: #fff;
  padding: 0 1rem;
}

.form .fieldset-container .fieldset.phone:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.form .fieldset-container .fieldset.phone span {
  float: left;
  display: block;
  font-size: 1.4rem;
  line-height: 1.2em;
  height: 3.6rem;
  line-height: 3.6rem;
}

.form .fieldset-container .fieldset.phone input[type=text] {
  border: none;
  padding: 0 1rem;
  width: 5rem;
  font-size: 1.4rem;
  line-height: 1.2em;
  height: 3.6rem;
  line-height: 3.6rem;
  float: left;
}

.form .fieldset-container .fieldset.phone input[type=text]:last-child {
  width: 10rem;
}

.form .fieldset-container .fieldset .error-message {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.2em;
  line-height: 3.6rem;
  height: 100%;
  width: 100%;
  color: #ff0000;
  padding: 0 1rem;
  display: none;
}

.form .fieldset-container div.terms-info {
  z-index: 9;
  background: #eb4636;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 6rem 2rem 3rem 2rem;
  color: #fff;
  font-size: 1.3rem;
  overflow: auto;
  display: none;
}

.form .fieldset-container div.terms-info a.close {
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("../images/close-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.text {
  text-align: center;
  padding-top: 12rem;
}

.text h1 {
  font-family: 'DIN Tr';
  font-weight: 300;
  font-size: 4.4rem;
  line-height: 1.2em;
  margin: 0;
 /*    color:white !important;*/
}

@media screen and (max-width: 700px) {
  .text h1 {
    font-size: 3.5rem;
   color:black !important;
  }
}

.text h2 {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.2em;
  margin: 1.5rem 0;
}

@media screen and (min-width: 700px) {
  .text h2 {
    font-size: 2.4rem;
    line-height: 1.2em;
  }
}

.text h3 {
  font-family: 'DIN Tr';
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.2em;
  margin: 0;
}

@media screen and (min-width: 700px) {
  .text h3 {
    font-size: 3rem;
    max-width: 53rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.text h4 {
  font-weight: 400;
  color: #eb4636;
  font-size: 2rem;
  line-height: 1.2em;
  margin: 3rem 0 0;
  padding: 0 1em;
}

@media screen and (min-width: 700px) {
  .text h4 {
    font-size: 2.4rem;
    font-family:din_trregular;
  }
}

.text p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.2rem;
  margin: 3rem 0 0;
 font-family:din_trregular;
}

.text p.contact a {
  color: #1a1725;
  text-decoration: none;
}

.text p.contact a.button {
  color: #fff;
}

.text p.contact a.mail {
  color: #eb4636;
}

.text .call-center {
  margin-top: 5rem;
}

.text .call-center > div {
  color: #eb4636;
  font-size: 1.5rem;
}

.text .call-center a {
  font-weight: bold;
  font-size: 4rem;
  line-height: 1em;
  text-decoration: none;
  color: #1a1725;
}

.text ul {
  list-style: none;
  font-size: 1.5rem;
  max-width: 96rem;
  margin: 5rem auto 0;
  padding: 0;
}

.text ul li {
  list-style: none;
  display: block;
  line-height: 4.4rem;
  border-top: 1px solid #d9dada;
}

.text ul li:first-child {
  border-top: none;
}

.text ul li span {
  color: #eb4636;
  display: inline-block;
  margin-left: 1rem;
}

.text .button {
  margin-top: 2rem;
}

.slider {
  display: none;
  width: 100%;
  height: 45rem;
  margin-top: 5rem;
}

@media screen and (min-width: 700px) {
  .slider {
    display: block;
  }
}

.slider .items {
  position: relative;
}

.slider .items div {
  height: 45rem;
}

.slider .items button {
  width: 32px;
  height: 58px;
  z-index: 999;
}

.slider .items button.slick-prev {
  left: 3.5%;
  background-image: url("../images/slider-prev.png");
}

.slider .items button.slick-prev:before {
  content: '';
}

.slider .items button.slick-next {
  right: 3.5%;
  background-image: url("../images/slider-next.png");
}

.slider .items button.slick-next:before {
  content: '';
}

.features .row {
  max-width: 96rem;
}

.features .columns {
  margin-bottom: 5rem;
}

@media screen and (min-width: 700px) {
  .features .columns {
    margin-bottom: 2rem;
  }
  .features .columns:first-child {
    padding-right: 5rem;
  }
  .features .columns:first-child + div {
    padding-left: 5rem;
  }
}

.features .columns .img {
  width: 135px;
  height: 135px;
  margin: 0 auto;
}

.promote {
  margin-top: 5rem;
  text-align: center;
}

.promote.row {
  width: 100%;
}

@media screen and (min-width: 700px) {
  .promote.row {
    width: 92%;
    padding: 0 1rem;
  }
}

.promote .columns {
  height: 25rem;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.2em;
  color: #fff;
  position: relative;
}

@media screen and (min-width: 700px) {
  .promote .columns {
    width: 48%;
    height: 35rem;
    font-size: 3rem;
  }
}

@media screen and (min-width: 1170px) {
  .promote .columns {
    height: 45rem;
  }
}

.promote .columns a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.promote .columns:last-child:last-child {
  float: right;
}

.promote .columns > div {
  display: table;
  width: 100%;
  height: 100%;
}

.promote .columns > div > div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 10rem 2rem 0;
  position: relative;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (min-width: 700px) {
  .promote .columns > div > div {
    padding: 17.5rem 2rem 0;
  }
}

.promote .columns > div > div img {
  height: 7.2rem;
  width: 7.2rem;
  display: block;
  margin: -9.2rem auto 2rem;
}

@media screen and (min-width: 700px) {
  .promote .columns > div > div img {
    height: 12.5rem;
    width: 12.5rem;
    margin: -17.5rem auto 5rem;
  }
}

.page-gallery {
  margin-top: 5rem;
}

.page-gallery.row {
  width: 100%;
}

.page-gallery.row .columns {
  padding: 0;
  position: relative;
}

@media screen and (min-width: 700px) {
  .page-gallery.row .columns {
    padding: 0 1rem;
  }
}

.page-gallery.row .columns .items {
  font-size: 0;
}

.page-gallery.row .columns .items > div {
  width: 50%;
  height: 0;
  padding-top: 37.5%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
}

@media screen and (min-width: 700px) {
  .page-gallery.row .columns .items > div {
    width: 25%;
    padding-top: 18.75%;
  }
}

.page-gallery.row .columns .items.popup {
  display: none;
  position: absolute;
  opacity: 0;
  width: 100%;
  left: 0;
  top: 0;
}

.page-gallery.row .columns .items.popup.active {
  display: block;
  opacity: 1;
  position: relative;
}

.page-gallery.row .columns .items.popup > div {
  position: relative;
  cursor: pointer;
}

.page-gallery.row .columns .items.popup > div > div {
  font-size: 1.2rem;
  line-height: 1em;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 1.5rem;
  z-index: 10;
}

@media screen and (min-width: 700px) {
  .page-gallery.row .columns .items.popup > div > div {
    font-size: 2.4rem;
    bottom: 3rem;
  }
}

.page-gallery.row .columns .items.popup > div:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/buyut.png) no-repeat center center;
  left: 0;
  top: 0;
  z-index: 9;
  -moz-transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
  -o-transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
  -webkit-transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
  transition: color ease-in-out 0.3s, background ease-in-out 0.3s, border-color ease-in-out 0.3s, border ease-in-out 0.3s;
}

.page-gallery.row .columns .items.popup > div:hover:after {
  background-color: rgba(232, 85, 57, 0.5);
}

.section-image {
  padding-top: 5rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-image.row {
  width: 100%;
}

@media screen and (min-width: 700px) {
  .section-image.row {
    width: 92%;
  }
}

.section-image .columns {
  padding: 0;
  position: relative;
}

@media screen and (min-width: 700px) {
  .section-image .columns {
    padding: 0 1rem;
  }
}

.section-image .columns div {
  height: 0;
  padding-top: 56.5%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-image .columns div a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 700px) {
  .section-image .columns div {
    padding-top: 38.5%;
  }
}

.buttons {
  margin-top: 5rem;
  font-size: 0;
}

.buttons .columns > div {
  font-size: 0;
  text-align: justify;
  -ms-text-justify: distribute-all-lines;
  text-justify: distribute-all-lines;
}

@media screen and (min-width: 700px) {
  .buttons .columns > div {
    width: 300px;
    margin: 0 auto;
  }
}

.buttons .columns > div:after {
  content: '';
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

#popup-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  -webkit-overflow-scrolling: touch;
}

#popup-container iframe {
  min-width: 100%;
  width: 100px;
  *width: 100%;
  height: 100%;
  border: 0;
}

.grey-bg {
  margin: 5rem 0;
  padding: 5rem 0 10rem;
  background: #f3f4f4;
}

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