@import url(https://fonts.googleapis.com/css?family=Lato:300,400,600i,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,700,800,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Raleway:300&display=swap);
p {
  color: #6b696d;
}

strong {
  color: inherit;
}
.toaster {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 99999;
}

.toaster .toast {
  -webkit-transform: translateY(-10px) rotateY(40deg);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #000000;
  margin-bottom: 10px;
  opacity: 0;
  padding: 20px;
  transform: translateY(-10px) rotateY(40deg);
  transition: all 0.3s ease;
}

.toaster .toast.toast--show {
  -webkit-transform: translateY(0) rotateY(0);
  opacity: 1;
  transform: translateY(0) rotateY(0);
}

.toaster .toast.toast--success {
  background-color: teal;
}

.toaster .toast.toast--error {
  background-color: #c13633;
}

@media (max-width: 767px) {
  .toaster {
    right: auto;
    text-align: center;
    top: auto;
    width: 100%;
  }
}

#cookiesWarningActive {
  background-color: #333;
  bottom: 0;
  color: #000000;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  margin: 0;
  padding: 5px;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 9999;
}

#cookiesWarningActive .agreement {
  margin: 0 auto;
  width: 80%;
}

#cookiesWarningActive .acceptance {
  padding-left: 10px;
  padding-right: 10px;
}

#cookiesWarningActive .button_cookie {
  background: #4d4d4d;
  border: none;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  outline: none;
  padding: 6px 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  width: 150px;
}

#cookiesWarningActive .button_cookie:hover {
  background: #fff;
  color: #4d4d4d;
  text-decoration: none;
  transition: all 0.2s;
}

#cookiesWarningActive button {
  background-color: #4d4c4c;
}

#cookiesWarningActive small {
  background: #ebebeb;
  border: none;
  border-radius: 7px;
  box-shadow: 4px 4px 2px #233e5b;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 3px;
}

#cookiesWarningActive #readMoreURL a:link,
#cookiesWarningActive #readMoreURL a:visited {
  color: #000000;
  text-decoration: underline;
}

#cookiesWarningActive #readMoreURL a:hover {
  color: #000000;
}

.formulario-block {
  align-items: flex-start;
  background: transparent;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.formulario-block.sent-ok {
  background: teal;
  border: none;
  margin: 35px auto 0;
}

.formulario-block .block-wrapper {
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
  position: relative;
  width: 100%;
}

form .box,
form .box-footer {
  display: none;
  color: white;
  padding: 0 2px;
  background-color: #f1f1f1;
  max-width: 100%;
}

form .box.active,
form .box-footer.active {
  display: block;
}

form .box .info,
form .box-footer .info {
  color: #666666;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding-top: 40px;
  padding-bottom: 20px;
}

form .box .info span,
form .box-footer .info span {
  color: #666666;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

form .box .info2,
form .box-footer .info2 {
  color: #666666;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding-top: 40px;
  padding-bottom: 20px;
}

form .box label,
form .box-footer label {
  width: 100%;
  margin: 5px auto;
  padding: 5px 10px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 16px;
  background: #666666;
  color: #f1f1f1;
  padding: 20px 0;
}

form .box label:hover,
form .box-footer label:hover {
  background: #e2e2de;
}

form .box label.selected,
form .box-footer label.selected {
  color: white;
  background: white;
}

form .box input[type='radio'],
form .box-footer input[type='radio'] {
  display: none;
}

form .inputs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

form .inputs .input-style {
  width: 100%;
  padding: 10px 0;
}

form .inputs .input-style.bg {
  width: 100%;
}

form .inputs .input-style input,
form .inputs .input-style select,
form .inputs .input-style textarea {
  height: 50px;
  width: 100%;
  border: none;
  outline: none;
  padding: 0;
  background: none;
  overflow: hidden;
  resize: none;
  color: #666666;
  border-bottom: solid 1px #666666;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

/* #formulario form .inputs .input-style textarea {
    height: 70px;
  } */

form .inputs .input-style input::placeholder,
form .inputs .input-style select::placeholder,
form .inputs .input-style textarea::placeholder {
  color: inherit;
}

form .inputs .input-style input option,
form .inputs .input-style select option,
form .inputs .input-style textarea option {
  color: black;
}

form .submits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

form .submits .checkbox {
  display: flex;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  /* width: 50%; */
  text-align: left;
  color: #919191;
}

form .submits .checkbox input {
  margin-left: 0;
}

form .submits .checkbox a {
  color: inherit;
}

form .submits .checkbox span {
  padding-left: 2px;
  font-size: 12px;
  color: #666666;
  padding-left: 8px;
}

form .submits .submit {
  text-align: right;
  width: 50%;
}

form .submits .submit input {
  background: #666666;
  color: #f1f1f1;
  width: 100%;
  text-transform: uppercase;
  transition: 0.4s;
  border: none;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  border: solid 2px #666666;
  margin-top: 8px;
  padding: 8px 0;
}

form .submits .submit input:hover {
  font-weight: bold;
}

.formulario-block .block-wrapper .form_msg_ok {
  align-items: center;
  background: teal;
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  min-height: 170px;
  padding: 50px;
  width: 100%;
}

.formulario-block .block-wrapper .form_msg_ok p {
  color: #000000;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  text-align: center;
}

.formulario-block .block-wrapper .form_msg_ok a {
  align-items: center;
  background: teal;
  border: 2px solid #fff;
  color: #000000;
  display: flex;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  justify-content: center;
  margin-top: 10px;
  min-height: 50px;
  text-decoration: none;
  transition: background 0.2s ease-out;
  width: 160px;
}

.formulario-block .block-wrapper .form_msg_ok a:hover {
  background: #fff;
  color: teal;
  text-decoration: none;
  transition: background 0.2s ease-out;
}

.formulario-block .block-wrapper .formulario-title {
  color: #605f64;
  font-family: 'Raleway', sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  margin: 25px 0;
}

.formulario-block .block-wrapper .formulario {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.formulario-block .block-wrapper .formulario .fields,
.formulario-block .block-wrapper .formulario .fields .field-group {
  padding: 0;
}

.formulario-block .block-wrapper .formulario .field-input-wrapper {
  margin: 0;
  position: relative;
  width: 100%;
}

.formulario-block .block-wrapper .formulario .field-input-wrapper:last-of-type {
  margin: 0;
}

.formulario-block .block-wrapper .formulario .field-input-wrapper input {
  background: transparent !important;
  border: 0;
  border-bottom: 1px solid #605f64;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #605f64;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  margin: 0 0 10px;
  min-height: 50px;
  outline: none;
  padding: 5px 15px 0;
  position: relative;
  width: 100%;
}

.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  input.is-invalid {
  border-color: #c13633;
  margin: 0;
}

.formulario-block .block-wrapper .formulario .field-input-wrapper input:focus {
  border-color: #605f64 !important;
  box-shadow: none !important;
  color: #605f64;
  outline: none;
}

.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  input.is-changed
  ~ label,
.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  input:focus
  ~ label,
.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  input:valid
  ~ label {
  font-size: 0.8rem;
  top: 8px !important;
}

.formulario-block .block-wrapper .formulario .field-input-wrapper textarea {
  background: transparent !important;
  border: 0;
  border-bottom: 1px solid #605f64;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #605f64;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  min-height: 105px;
  padding: 10px;
  position: relative;
  resize: vertical;
  width: 100%;
}

.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  textarea.is-invalid {
  border-color: #c13633;
}

.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  textarea:focus {
  border-color: #605f64 !important;
  box-shadow: none !important;
  color: #605f64;
  outline: none;
}

.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  textarea.is-changed
  ~ label,
.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  textarea:focus
  ~ label,
.formulario-block
  .block-wrapper
  .formulario
  .field-input-wrapper
  textarea:valid
  ~ label {
  font-size: 0.8rem;
  top: 8px !important;
}

.formulario-block .block-wrapper .formulario .field-input-wrapper label {
  -moz-transition: 0.2s ease all;
  -webkit-transform: translateY(-40%);
  -webkit-transition: all 0.2s ease;
  color: #54595f;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  left: 15px;
  margin: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  transition: all 0.2s ease;
}

.formulario-block .block-wrapper .formulario .data-error {
  display: none;
}

.formulario-block .block-wrapper .formulario .field_error {
  background: #c13633;
  border-radius: 0;
  color: #000000;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 0;
  padding: 5px 10px;
}

.formulario-block .block-wrapper .formulario .checkbox_wrapper {
  display: block;
  margin: 50px 0 0;
  padding: 0;
  position: relative;
}

.formulario-block .block-wrapper .formulario .checkbox_wrapper .checkbox {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  input[type='checkbox'] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  height: 15px;
  left: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 15px;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  .checkbox-label {
  color: #605f64;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  margin: 0 auto;
  outline: none;
  padding-left: 25px;
  position: relative;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  .checkbox-label:before {
  background: transparent;
  border: 1px solid #605f64;
  border-radius: 0;
  content: ' ';
  cursor: pointer;
  display: flex;
  height: 14px;
  left: 0;
  margin-right: 10px;
  outline: none;
  position: absolute;
  top: 0;
  width: 14px;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  .checkbox-label:after {
  -webkit-transform: scale(0);
  background: #605f64;
  border-radius: 0;
  content: ' ';
  cursor: pointer;
  display: flex;
  height: 10px;
  left: 2px;
  outline: none;
  position: absolute;
  top: 2px;
  transform: scale(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 10px;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  .checkbox-label
  a {
  color: #605f64;
  text-decoration: none;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  .checkbox-label
  a:hover {
  color: #605f64;
  text-decoration: underline;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  input[type='checkbox'].is-invalid
  + .checkbox-label {
  margin: 0 0 10px;
}

.formulario-block
  .block-wrapper
  .formulario
  .checkbox_wrapper
  .checkbox
  input[type='checkbox']:checked
  + .checkbox-label:after {
  -webkit-transform: scale(0.8);
  opacity: 1;
  transform: scale(0.8);
}

.formulario-block .block-wrapper .formulario .btn-wrapper {
  padding: 0;
}

.formulario-block .block-wrapper .formulario .send-btn {
  background: #f2ad00;
  border: 1px solid #f2ad00;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 58px;
  margin: 20px 0 0;
  min-height: 40px;
  outline: none;
  padding: 0 24px;
  position: relative;
  transition: background 0.2s ease-out, color 0.2s ease-out;
  width: 100%;
}

.formulario-block .block-wrapper .formulario .send-btn:hover {
  background: #fff;
  color: #f2ad00;
}

footer {
  margin: 0;
  padding: 0;
}

footer,
footer .footer-info {
  display: block;
  position: relative;
  width: 100%;
}

footer .footer-info {
  background: grey;
  margin: 0 auto;
}

footer .footer-info p {
  box-sizing: border-box;
  color: #000000;
  display: block;
  font-family: Raleway;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin: 0 0 5px;
  padding: 25px 25px 35px;
  position: relative;
  text-align: center;
}

footer .footer-info p a {
  color: #000000;
  text-decoration: underline;
}

footer .footer-info p a:hover {
  color: #f2ad00;
}

body,
footer .footer-info p:last-of-type {
  margin: 0;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #000000;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  word-spacing: normal;
}

body,
body .main-container {
  display: block;
  padding: 0;
  position: relative;
  width: 100%;
}

body .main-container {
  box-sizing: border-box;
  margin: 0 auto;
}

body .page-header {
  box-sizing: border-box;
  position: relative;
}

body .page-header,
body .page-header .image {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #0d0d0d;
  position: relative;
}
body .page-header .image::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1280px) {
  body .page-header {
    height: 110dvh;
  }
}

@media (max-width: 998px) {
  body .page-header {
    height: unset;
  }
}

body .page-header .image {
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

body .page-header .image > video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

body .page-header .image .background-image {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: left;
  position: relative;
  width: 100%;
}

body .page-header .image .license-image {
  display: none;
}

body .page-header > .block-wrapper {
  box-sizing: border-box;
  height: 100%;
  /* margin: 0 auto; */
  /* max-width: 1350px; */
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 2;
  right: 0;
  display: flex;
  justify-content: flex-end;
  /* margin-right: -31px;*/
}

body .page-header > .block-wrapper .license-image {
  -o-object-fit: initial;
  -o-object-position: initial;
  display: block;
  height: auto;
  object-fit: fill;
  object-position: initial;
  position: absolute;
  left: 10%;
  top: 40%;
  width: fit-content;
  z-index: 2;
  color: #ffffff;
  font-size: 60px;
  font-family: 'Raleway', sans-serif;
}

body .page-header > .block-wrapper .license-image h1 {
  color: white;
  font-family: 'Raleway';
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}

body .page-header > .block-wrapper .license-image h2 {
  color: white;
    font-size: 35px;
    margin-top: 36px;
    font-family: 'BentonSans-Regular';
      font-style: normal;
      font-weight: 400;
      line-height: 158%;
    }
@media (max-width: 768px) {
  body .page-header>.block-wrapper .license-image h2 {
    font-size: 20px;
  }
}

body .page-header > .block-wrapper .info-block {
  background: #f1f1f1;
  box-sizing: border-box;
  height: 100%;
  /* margin: 0 50px; */
  /* overflow: hidden; */
  padding: 0;
  transform: translateX(100%);
  transition: 0.6s ease-in-out;
  position: relative;
  width: 450px;
}

body .page-header > .block-wrapper .info-block.active {
  transform: translateY(0);
}

body .mail-btn {
  padding: 10px;
  position: absolute;
  right: 100%;
  top: 45%;
  z-index: 5;
  border-radius: 5px 0 0 5px;
  background-color: black;
}
.footer-video {
  position: relative;
  z-index: 50;
}
body .mail-btn > img {
  height: 40px;
}

@media (max-width: 1280px) {
  body .page-header > .block-wrapper .info-block {
    margin: 0;
  }
}

body .page-header > .block-wrapper .info-block .logo {
  align-items: center;
  background: #f1f1f1;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  margin: 0;
  padding: 35px 20px;
  width: 100%;
}

body .page-header > .block-wrapper .info-block .logo:before {
  -webkit-transform: translateX(-50%);
  background: #fff;
  content: '';
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}

body .page-header > .block-wrapper .info-block .logo .logo-image img {
  display: block;
  margin: 0 auto;
  max-width: 250px;
  position: relative;
}

body .page-header > .block-wrapper .info-block .info-wrapper {
  box-sizing: border-box;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0 50px 40px;
  position: relative;
  width: 100%;
}

body .page-header > .block-wrapper .info-block .info-wrapper .page-title {
  color: #666666;
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0 0;
  /* padding-top: 80px; */
}

@media (max-width: 1280px) {
  body .page-header > .block-wrapper .info-block .info-wrapper .page-title {
    padding-top: 0;
  }
}

body .page-header > .block-wrapper .info-block .info-wrapper .page-title span {
  display: block;
}

body .page-header > .block-wrapper .info-block .info-wrapper .page-description {
  color: #666666;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  margin: 15px 0 0;
}

body .about-block {
  background: #fff;
  display: block;
  margin: 60px auto 0;
  padding: 0;
  position: relative;
  width: 100%;
}

body .about-block .block-wrapper {
  box-sizing: border-box;
  display: flex;
  margin: 0 auto;
  max-width: 1350px;
  padding: 0 25px;
  position: relative;
  width: 100%;
}

body .about-block .block-wrapper:after {
  background: #f2ad00;
  bottom: 0;
  content: '';
  height: 6px;
  margin: 0;
  position: absolute;
  right: 25px;
  width: 75%;
}

body .about-block .block-wrapper .text {
  box-sizing: border-box;
  display: block;
  margin: 0;
  padding: 60px 70px 0 0;
  position: relative;
  width: calc(100% - 730px);
}

body .about-block .block-wrapper .text .block-description {
  color: #1d1d1b;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  margin: 30px auto 0;
  text-align: justify;
}

body .about-block .block-wrapper .text .block-description:first-of-type {
  margin: 0 auto;
}

body .about-block .block-wrapper .text .block-description strong {
  font-weight: 600;
}

body .about-block .block-wrapper .image {
  box-sizing: border-box;
  display: block;
  margin: 0;
  max-width: 730px;
  padding: 0;
  position: relative;
  width: 100%;
}

body .about-block .block-wrapper .image img {
  -o-object-fit: cover;
  -o-object-position: center center;
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center center;
  position: Relative;
  width: 100%;
}

body .more-info-block {
  background: #fff;
  display: block;
  margin: 60px auto 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.more-info-block .galeria .owl-carousel .item {
  height: 50vw;
  max-height: 700px;
}

.more-info-block .galeria .owl-carousel .owl-nav {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: calc(100% - 20px);
}

.more-info-block .galeria .owl-carousel .owl-nav .owl-prev {
  float: left;
  width: 50px;
  pointer-events: all;
}

.more-info-block .galeria .owl-carousel .owl-nav .owl-prev img {
  width: 100%;
  height: 100%;
}

.more-info-block .galeria .owl-carousel .owl-nav .owl-next {
  transform: rotate(180deg);
  float: right;
  width: 50px;
  pointer-events: all;
}

.more-info-block .galeria .owl-carousel .owl-nav .owl-next img {
  width: 100%;
  height: 100%;
}

body .more-info-block .block-wrapper {
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  max-width: 1350px;
  padding: 50px 25px;
  position: relative;
  width: 100%;
}

body .more-info-block .block-wrapper .block-title {
  color: #3c3c3b;
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 70px;
  margin: 0;
  text-align: center;
}

body .more-info-block .block-wrapper .block-subtitle {
  color: #3c3c3b;
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 70px;
  margin: 0;
  text-align: center;
}

body .more-info-block .block-wrapper .block-subtitle span {
  display: block;
}

body .more-info-block .block-wrapper .features {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  list-style: none;
  margin: 50px auto 0;
  padding: 0;
  position: relative;
}

body .more-info-block .block-wrapper .features .feature {
  display: flex;
  flex-flow: column nowrap;
  margin: 0;
  padding: 0;
  position: relative;
  width: 25%;
}

body .more-info-block .block-wrapper .features .feature .image {
  display: block;
  height: 90px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: auto;
}

body .more-info-block .block-wrapper .features .feature .image img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  position: relative;
  width: auto;
}

body .more-info-block .block-wrapper .features .feature .text {
  display: block;
  margin: 0 auto;
  max-width: 240px;
  padding: 0;
  position: relative;
  width: 100%;
}

body .more-info-block .block-wrapper .features .feature .text .title {
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
  margin: 20px auto 0;
  text-align: center;
}

body .more-info-block .block-wrapper .features .feature .text .description {
  color: #605f64;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 25px;
  margin: 10px auto 0;
  text-align: center;
}

body .more-info-block .image {
  display: block;
  margin: 50px auto 0;
  padding: 0;
  position: relative;
  width: 100%;
}

body .more-info-block .image img {
  display: block;
  max-width: 100%;
  position: relative;
}

body .location-block {
  background: #e3e7e8;
  margin: 60px auto 0;
  padding: 0;
}

body .location-block,
body .location-block .block-wrapper {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
}

body .location-block .block-wrapper {
  margin: 0 auto;
  max-width: 1350px;
  padding: 85px 25px;
}

body .location-block .block-wrapper .block-title {
  color: #3c3c3b;
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 55px;
  margin: 0 auto 20px;
  text-align: center;
}

body .location-block .block-wrapper .block-subtitle {
  box-sizing: border-box;
  color: #3c3c3b;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: center;
}

body .location-block .block-wrapper .text-columns {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 60px auto 0;
  padding: 0;
  width: 100%;
}

body .location-block .block-wrapper .text-columns .left,
body .location-block .block-wrapper .text-columns .right {
  box-sizing: border-box;
  display: block;
  margin: 0;
  position: relative;
  width: 50%;
}

body .location-block .block-wrapper .text-columns .left {
  padding: 0 60px 0 0;
}

body .location-block .block-wrapper .text-columns .left:after {
  -webkit-transform: translateY(-50%);
  background: #000;
  content: '';
  height: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

body .location-block .block-wrapper .text-columns .right {
  padding: 0 0 0 60px;
}

body .location-block .block-wrapper .text-columns .text-description {
  color: #1d1d1b;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 30px auto 0;
  text-align: justify;
}

body
  .location-block
  .block-wrapper
  .text-columns
  .text-description:first-of-type {
  margin: 0 auto;
}

body .location-block .block-wrapper .text-columns .features {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

body .location-block .block-wrapper .text-columns .features .feature {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  margin: 0 0 15px;
  padding: 0;
  position: relative;
}

body
  .location-block
  .block-wrapper
  .text-columns
  .features
  .feature:last-of-type {
  margin: 0;
}

body .location-block .block-wrapper .text-columns .features .feature .image {
  display: block;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

body
  .location-block
  .block-wrapper
  .text-columns
  .features
  .feature
  .image
  img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}

body .location-block .block-wrapper .text-columns .features .feature .text {
  box-sizing: border-box;
  color: #646363;
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 22px;
  margin: 0;
  padding: 0 0 0 35px;
}

body
  .location-block
  .block-wrapper
  .text-columns
  .features
  .feature
  .text
  .cursiva {
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

body .location-block .connections-wrapper {
  background: #3c3c3b;
  display: block;
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 100%;
}

body .location-block .connections-wrapper .location-connections-title {
  background: #cdcaca;
  box-sizing: border-box;
  color: #3c3c3b;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  padding: 15px;
  position: relative;
  text-align: center;
  width: 100%;
}

body .location-block .connections-wrapper .block-wrapper {
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  max-width: 1350px;
  padding: 0 25px;
  position: relative;
  width: 100%;
}

.license-image_mobile {
  display: none;
}

body .location-block .connections-wrapper .block-wrapper .connection-features {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 15px 0;
  position: relative;
  width: 100%;
}

body
  .location-block
  .connections-wrapper
  .block-wrapper
  .connection-features
  .connection-feature {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  position: relative;
}

body
  .location-block
  .connections-wrapper
  .block-wrapper
  .connection-features
  .connection-feature
  .feature-text {
  color: #fff;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  margin: 0 0 0 15px;
  position: relative;
}

body .location-block .map-iframe {
  height: 40vw;
  max-height: 675px;
  width: 100%;
}

body .location-block .map-iframe iframe {
  height: 100%;
  width: 100%;
}

@media (max-width: 1280px) {
  body .about-block .block-wrapper .image,
  body .about-block .block-wrapper .text {
    max-width: none;
    width: 50%;
  }

  body .about-block .block-wrapper .text {
    padding: 30px 40px 0 0;
  }
}

@media (max-width: 1170px) {
  body .about-block .block-wrapper .text {
    padding: 30px 25px 0 0;
  }

  body .about-block .block-wrapper .text .block-description {
    line-height: 25px;
    margin: 20px auto 0;
  }

  body .about-block .block-wrapper .text .block-description:first-of-type {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  body .page-header {
    height: fit-content;
  }

  body .page-header .image {
    height: 70vh;
    position: relative;
  }

  body .page-header .image .license-image {
    display: block;
    max-width: 150px;
    position: absolute;
    right: 35px;
    top: 35px;
    z-index: 2;
  }

  body .page-header > .block-wrapper .license-image {
    display: block;
    top: -15%;
    left: 0;
    padding: 0 25px;
    width: 100%;
  }

  body .page-header > .block-wrapper .license-image > h1 {
    font-size: 28px;
  }

  body .page-header > .block-wrapper .license-image br {
    display: none;
  }

  .license-image_mobile {
    display: block;
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 4px;
  }

  .license-image_mobile h1 {
    font-family: 'Avenir';
    font-size: 24px;
  }

  .license-image_mobile h2 {
    font-family: 'Avenir';
    font-size: 18px;
    color: #ffffff;
    font-style: italic;
  }

  body .page-header > .block-wrapper .info-block {
    transform: translateX(0);
    transition: unset;
    width: 100%;
  }

  body .mail-btn {
    display: none;
  }

  body .page-header > .block-wrapper .info-block {
    width: 100%;
  }

  body .page-header > .block-wrapper .info-block .logo {
    margin-bottom: 40px;
    padding: 10px 0;
  }

  body .page-header > .block-wrapper .info-block .logo:before {
    display: none;
  }

  body .page-header > .block-wrapper .info-block .logo .logo-image img {
    max-width: 200px;
  }

  body .page-header > .block-wrapper .info-block .info-wrapper {
    padding: 0 25px 40px;
  }

  body .page-header > .block-wrapper .info-block .info-wrapper .page-title {
    font-size: 35px;
    line-height: 40px;
  }

  body
    .page-header
    > .block-wrapper
    .info-block
    .info-wrapper
    .page-title
    span {
    display: inline;
  }

  body
    .page-header
    > .block-wrapper
    .info-block
    .info-wrapper
    .page-description {
    font-size: 20px;
    line-height: 30px;
  }

  body .about-block {
    margin: 30px auto 0;
  }

  body .about-block .block-wrapper {
    flex-flow: column nowrap;
    padding: 0 50px;
  }

  body .about-block .block-wrapper:after {
    display: none;
  }

  body .about-block .block-wrapper .image,
  body .about-block .block-wrapper .text {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  body .about-block .block-wrapper .image {
    height: 50vw;
    order: 1;
  }

  body .about-block .block-wrapper .text {
    order: 2;
    padding: 50px 0 0;
  }

  body .more-info-block .image {
    height: 40vw;
  }

  body .more-info-block .image img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  body .more-info-block .block-wrapper {
    padding: 50px 50px 0;
  }

  body .more-info-block .block-wrapper .features {
    flex-flow: row wrap;
    margin: 0;
  }

  body .more-info-block .block-wrapper .features .feature {
    margin: 40px 0 0;
    width: 50%;
  }

  body .location-block .block-wrapper {
    padding: 50px;
  }

  body .location-block .block-wrapper .text-columns {
    flex-flow: column nowrap;
  }

  body .location-block .block-wrapper .text-columns .left,
  body .location-block .block-wrapper .text-columns .right {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  body .location-block .block-wrapper .text-columns .left {
    margin: 0 0 75px;
    order: 1;
  }

  body .location-block .block-wrapper .text-columns .left:after {
    -webkit-transform: translateX(-50%);
    bottom: -35px;
    height: 1px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 50%;
  }

  body .location-block .block-wrapper .text-columns .right {
    order: 2;
  }

  body
    .location-block
    .connections-wrapper
    .block-wrapper
    .connection-features {
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
  }

  body
    .location-block
    .connections-wrapper
    .block-wrapper
    .connection-features
    .connection-feature {
    margin: 10px auto;
  }
}

@media (max-width: 767px) {
    body .page-header .image {
      height: 500px;
    }
  body .page-header .image .license-image {
    max-width: 85px;
    right: 25px;
    top: 15px;
  }

  body .page-header > .block-wrapper .license-image {
    top: -60%;
  }

  body .page-header > .block-wrapper .info-block .logo .logo-image img {
    max-width: 150px;
  }

  body .page-header > .block-wrapper .info-block .info-wrapper {
    padding: 0 20px 40px;
  }

  body .page-header > .block-wrapper .info-block .info-wrapper .page-title {
    font-size: 25px;
    line-height: 30px;
  }

  body
    .page-header
    > .block-wrapper
    .info-block
    .info-wrapper
    .page-description {
    font-size: 17px;
    line-height: 22px;
  }

  body .about-block .block-wrapper {
    padding: 30px 25px;
  }

  body .about-block .block-wrapper .text .block-description {
    font-size: 17px;
    line-height: 22px;
  }

  body .more-info-block .block-wrapper {
    padding: 30px 25px;
  }

  body .more-info-block .block-wrapper .block-title {
    font-size: 30px;
    line-height: 40px;
  }

  body .more-info-block .block-wrapper .block-subtitle {
    font-size: 25px;
    line-height: 30px;
    margin: 15px 0;
  }

  body .more-info-block .block-wrapper .features .feature {
    box-sizing: border-box;
    padding: 0 15px;
  }

  body .more-info-block .block-wrapper .features .feature .image {
    height: 70px;
  }

  body .more-info-block .block-wrapper .features .feature .text .title {
    font-size: 20px;
    line-height: 25px;
  }

  body .more-info-block .block-wrapper .features .feature .text .description {
    font-size: 17px;
    line-height: 22px;
  }

  body .location-block .block-wrapper {
    padding: 30px 25px;
  }

  body .location-block .block-wrapper .block-title {
    font-size: 30px;
    line-height: 40px;
  }

  body .location-block .block-wrapper .block-subtitle {
    font-size: 20px;
    line-height: 25px;
  }

  body .location-block .block-wrapper .text-colukns {
    margin: 35px auto 0;
  }

  body .location-block .connections-wrapper .location-connections-title {
    font-size: 20px;
    line-height: 25px;
  }

  body
    .location-block
    .connections-wrapper
    .block-wrapper
    .connection-features {
    align-items: flex-start;
  }

  body
    .location-block
    .connections-wrapper
    .block-wrapper
    .connection-features
    .connection-feature {
    margin: 20px 0;
  }

  body
    .location-block
    .connections-wrapper
    .block-wrapper
    .connection-features
    .connection-feature
    .image {
    position: absolute;
    width: 30px;
  }

  body
    .location-block
    .connections-wrapper
    .block-wrapper
    .connection-features
    .connection-feature
    .feature-text {
    padding: 0 0 0 40px;
  }

  body .location-block .map-iframe {
    height: 90vw;
  }

  .more-info-block .galeria .owl-carousel .owl-nav .owl-prev,
  .more-info-block .galeria .owl-carousel .owl-nav .owl-next {
    width: 28px;
  }
}
@font-face {
  font-family: 'BentonSans-Regular';
  src: url('../../fonts/BentonSans-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'BentonSans-Bold';
  src: url('../../fonts/BentonSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-Thin.ttf) format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-ExtraLight.ttf) format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-Light.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-Italic.ttf) format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-SemiBold.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway/Raleway-BoldItalic.ttf) format('truetype');
  font-weight: 700;
  font-style: italic;
}
