/*--------------------------------------------------------*/
/* TABLE OF CONTENTS: */
/*--------------------------------------------------------*/
/*00 - FONTS IMPORT*/
/*01 - RESET*/
/*02 - GLOBAL SETTINGS*/
/*03 - TYPOGRAPHY*/
/*04 - BUTTONS*/
/*05 - HEADER*/
/*06 - TOP BANER CONTENT */
/*07 - ANIMATIONS */
/*08 - COLORS*/
/*--------------------------------------------------------*/
/* 00 - FONTS IMPORT: */
/*--------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700&display=swap&subset=cyrillic");
/*--------------------------------------------------------------------------------------------------------------*/
/* 01 - RESET */
/*--------------------------------------------------------------------------------------------------------------*/
html {
  overflow-y: scroll;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
}

button {
  background-color: transparent;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

.clear {
  clear: both;
  overflow: hidden;
  height: 0;
  font-size: 0;
  display: block;
}

html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) *::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) *::-webkit-scrollbar-track {
  background: #68686b;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) *::-webkit-scrollbar-thumb {
  background: #ff671e;
}

:focus, :hover, :active, :visited {
  outline: none;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* main */
html {
  height: 100%;
}

body {
  height: 100%;
  overflow: hidden;
}

#content-block {
  overflow: hidden;
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

html.overflow-hidden body {
  overflow: hidden;
}

section, .section {
  position: relative;
}

.swiper-slide:not(:first-child) {
  display: none;
}

.container {
  max-width: 1600px;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.bg-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.cell-view {
  display: table-cell;
  vertical-align: middle;
  width: 10000px;
}

.full-size {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* spacers */
[class*="spacer"] {
  clear: both;
  width: 100% !important;
}

.spacer-lg {
  height: 180px;
}

.spacer-md {
  height: 60px;
}

.spacer-sm {
  height: 45px;
}

.spacer-xs {
  height: 20px;
}

.content-section {
  padding: 80px 0;
}

.content-section-inner {
  padding: 160px 0;
  margin: 80px 0;
}

.top-banner + .content-section {
  padding-top: 160px;
}

footer {
  margin-top: 80px;
}

.section-title {
  margin-bottom: 60px;
}

/* breakpoints */
@media (max-width: 1629px) {
  .spacer-md {
    height: 40px;
  }
  .content-section {
    padding: 60px 0;
  }
  .content-section-inner {
    padding: 120px 0;
    margin: 60px 0;
  }
  .top-banner + .content-section {
    padding-top: 120px;
  }
  footer {
    margin-top: 60px;
  }
  .section-title {
    margin-bottom: 50px;
  }
}

@media (max-width: 1199px) {
  .content-section {
    padding: 50px 0;
  }
  .content-section-inner {
    padding: 100px 0;
    margin: 50px 0;
  }
  .top-banner + .content-section {
    padding-top: 100px;
  }
  footer {
    margin-top: 50px;
  }
  .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .spacer-md {
    height: 40px;
  }
  .content-section {
    padding: 40px 0;
  }
  .content-section-inner {
    padding: 80px 0;
    margin: 40px 0;
  }
  .top-banner + .content-section {
    padding-top: 80px;
  }
  footer {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .spacer-md {
    height: 30px;
  }
  .spacer-sm {
    height: 20px;
  }
  .content-section {
    padding: 30px 0;
  }
  .content-section-inner {
    padding: 60px 0;
    margin: 30px 0;
  }
  .top-banner + .content-section {
    padding-top: 60px;
  }
  footer {
    margin-top: 30px;
  }
  .section-title {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .row.m30-xl {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.m30-xl > div[class*="col"] {
    padding: 0 30px;
  }
}

/* backgrounds */
.bg-additional {
  background-color: #373739;
}

.bg-white {
  background-color: #fff;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - TYPOGRAPHY */
/*-------------------------------------------------------------------------------------------------------------------------------*/
body {
  font-family: 'Roboto', sans-serif;
  color: #68686b;
  font-weight: 100;
  font-size: 18px;
  line-height: 1;
}

b, strong {
  font-weight: 700;
}

a {
  color: inherit;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.text {
  font-size: 18px;
  line-height: 1.67em;
  letter-spacing: 0.54px;
}

.text-lg {
  font-size: 20px;
  line-height: 1.6em;
  letter-spacing: 0.6px;
}

.text-md {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.48px;
}

.text-sm {
  font-size: 14px;
  line-height: 1.57em;
  letter-spacing: 0.42px;
}

.text-xs {
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.36px;
}

.article > * {
  margin-bottom: 20px;
}

.article > *:last-child {
  margin-bottom: 0;
}

.article img {
  max-width: 100%;
  height: auto;
  display: block;
}

.article ol {
  counter-reset: number;
}

.article ol li {
  margin-bottom: 10px;
}

.article ol li:last-child {
  margin-bottom: 0;
}

.article ol li:before {
  counter-increment: number;
  content: counter(number) ".";
  margin-right: 5px;
  color: #ff671e;
  font-weight: 400;
}

.article ul li {
  margin-bottom: 10px;
}

.article ul li:last-child {
  margin-bottom: 0;
}

.article ul li:before {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #dbdbdb;
  content: "";
  vertical-align: middle;
  margin: 0 15px 0 0;
}

.article ul ul, ol ol, ul ol, ol ul {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-left: 20px;
}

.article b, .article strong {
  font-weight: 500;
  color: #48484a;
}

.article a:not(.btn) {
  position: relative;
  color: #ff671e;
  font-weight: 700;
  text-decoration: underline;
}

.article i, .article cite, .article em, .article address {
  font-style: italic;
}

.article blockquote {
  position: relative;
  padding: 10px 0 10px 20px;
  margin-left: 15px;
}

.article blockquote:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #ff671e;
}

.article blockquote cite {
  font-size: .9em;
}

.article dt {
  font-weight: 500;
  font-size: 1.1em;
  margin-bottom: .5em;
  color: #48484a;
}

.article dd {
  margin-bottom: 1em;
}

.article abbr {
  text-decoration: none;
}

.article code, .article kbd {
  background-color: #3E3E3E;
  padding: 0.125em 0.25em;
  font-family: monospace;
  color: #fff;
}

.article ins {
  text-decoration: underline;
}

.article pre {
  border: 1px solid #A8A8A8;
  padding: 1.75em;
  font-family: monospace;
}

.article sub, .article sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.article sup {
  top: -0.5em;
}

.article sub {
  bottom: -0.25em;
}

.article table {
  width: 100%;
}

.article td, .article th {
  border: 1px solid #3E3E3E;
  padding: 10px;
}

.article tr:nth-child(even) {
  background-color: #dedede;
}

.article tr:nth-child(odd) {
  background-color: #eeeeee;
}

.article th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #000;
  color: #fff;
}

.article br {
  line-height: 1em;
}

@media (min-width: 1200px) {
  .article a:not(.btn):focus {
    text-decoration: none;
  }
  html:not(.touch-screen) .article a:not(.btn):hover {
    text-decoration: none;
  }
}

.color-white, .color-white h1, .color-white .h2, .color-white h2, .color-white .h3, .color-white h3, .color-white .h4, .color-white h4, .color-white .h5, .color-white h5, .color-white .h6, .color-white h6, .color-white .h1, .color-white h1, .color-white b, .color-white h1, .color-white strong {
  color: #fff;
}

.color-white .color-secondary, .color-white h1 .color-secondary, .color-white .h2 .color-secondary, .color-white h2 .color-secondary, .color-white .h3 .color-secondary, .color-white h3 .color-secondary, .color-white .h4 .color-secondary, .color-white h4 .color-secondary, .color-white .h5 .color-secondary, .color-white h5 .color-secondary, .color-white .h6 .color-secondary, .color-white h6 .color-secondary, .color-white .h1 .color-secondary, .color-white h1 .color-secondary, .color-white b .color-secondary, .color-white h1 .color-secondary, .color-white strong .color-secondary {
  color: #ff671e;
}

.title, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #48484a;
}

.subtitle {
  font-weight: 500;
}

h1, .h1 {
  font-size: 72px;
  line-height: 1.17em;
  letter-spacing: 2.16px;
}

h2, .h2 {
  font-size: 48px;
  line-height: 1.29em;
  letter-spacing: 1.44px;
}

h3, .h3 {
  font-size: 42px;
  line-height: 1.2em;
  letter-spacing: 1.26px;
}

h4, .h4 {
  font-size: 34px;
  line-height: 1.24em;
  letter-spacing: 1.02px;
}

h5, .h5 {
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.72px;
}

h6, .h6 {
  font-size: 20px;
  line-height: 1.67em;
  letter-spacing: 0.6px;
}

@media (max-width: 1629px) {
  .text {
    font-size: 16px;
  }
  .text-lg {
    font-size: 18px;
  }
  .text-md {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 50px;
    letter-spacing: 1.46px;
  }
  h2, .h2 {
    font-size: 38px;
    letter-spacing: 1.2px;
  }
  h3, .h3 {
    font-size: 36px;
    letter-spacing: 1.1px;
  }
  h4, .h4 {
    font-size: 30px;
    letter-spacing: 0.9px;
  }
}

@media (max-width: 767px) {
  .text-lg {
    font-size: 17px;
  }
  h1, .h1 {
    font-size: 40px;
    letter-spacing: 1.2px;
  }
  h2, .h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  h3, .h3 {
    font-size: 28px;
    letter-spacing: 0.9px;
  }
  h4, .h4 {
    font-size: 26px;
    letter-spacing: 0.8px;
  }
  h5, .h5 {
    font-size: 22px;
  }
  h6, .h6 {
    font-size: 18px;
  }
}

.text-uppercase {
  text-transform: uppercase;
}

.text-truncate {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.w-thin {
  font-weight: 100;
}

.w-light {
  font-weight: 300;
}

.w-regular {
  font-weight: 400;
}

.w-medium {
  font-weight: 500;
}

.w-bold {
  font-weight: 700;
}

@media (min-width: 0) {
  .text-xs-left {
    text-align: left;
  }
  .text-xs-center {
    text-align: center;
  }
  .text-xs-right {
    text-align: right;
  }
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - BUTTONS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.btn {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  line-height: 20px;
  vertical-align: bottom;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid #ff671e;
  padding: 16px 30px;
  background: none;
  min-width: 180px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  z-index: 1;
}

.btn:before, .btn:after, .btn span:before, .btn span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 25%;
  z-index: -1;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

.btn:after {
  left: 25%;
}

.btn span {
  display: inline-block;
}

.btn span:before {
  left: 50%;
}

.btn span:after {
  left: 75%;
}

.btn-primary {
  color: #fff;
}

.btn-primary:before, .btn-primary:after, .btn-primary span:before, .btn-primary span:after {
  background: #ff671e;
}

.btn-primary.btn-primary-white {
  background-color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #ff671e;
}

.btn-secondary:before, .btn-secondary:after, .btn-secondary span:before, .btn-secondary span:after {
  background: #ff671e;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

.btn-icon {
  padding: 8px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-icon .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 66px;
  height: 46px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.btn-icon .icon:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
  background: #ff671e;
}

.btn-icon .icon svg {
  position: relative;
  display: inline-block;
  max-width: 22px;
  max-height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -2px;
}

.btn-icon .stroke {
  stroke: #fff;
}

.btn-icon span {
  width: 100%;
  padding: 0 30px;
}

.btn-icon:before, .btn-icon:after, .btn-icon span:before, .btn-icon span:after {
  width: calc(25% - 15px);
}

.btn-icon:before {
  left: 65px;
}

.btn-icon:after {
  left: calc(25% + 65px - 16px);
}

.btn-icon span:before {
  left: calc(50% + 65px - 32px);
}

.btn-icon span:after {
  left: calc(75% + 65px - 48px);
}

.btn-icon.btn-sm .icon {
  height: 36px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-close {
  width: 56px;
  height: 56px;
  font-size: 20px;
  line-height: 52px;
  text-align: center;
  cursor: pointer;
  background-color: #ff671e;
  color: #fff;
  border: 2px solid #ff671e;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.btn-close:before {
  content: "\02715";
}

.btn:not(:disabled):active,
.btn-close:active {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

@media (min-width: 1200px) {
  /* focus */
  .btn:focus:before, .btn:focus:after, .btn:focus span:before, .btn:focus span:after {
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
  }
  .btn:focus.btn-secondary {
    color: #fff;
  }
  .btn:focus.btn-secondary:before, .btn:focus.btn-secondary:after, .btn:focus.btn-secondary span:before, .btn:focus.btn-secondary span:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
  .btn:focus span:before {
    -webkit-transition-delay: .05s;
         -o-transition-delay: .05s;
            transition-delay: .05s;
  }
  .btn:focus:after {
    -webkit-transition-delay: .1s;
         -o-transition-delay: .1s;
            transition-delay: .1s;
  }
  .btn:focus:before {
    -webkit-transition-delay: .15s;
         -o-transition-delay: .15s;
            transition-delay: .15s;
  }
  .btn:focus.btn-primary {
    color: #ff671e;
  }
  .btn-close:focus {
    color: #ff671e;
    background-color: #fff;
  }
  .btn:disabled {
    opacity: .7;
  }
  /* hover */
  html:not(.touch-screen) .btn:not([disabled]):hover:before, html:not(.touch-screen) .btn:not([disabled]):hover:after, html:not(.touch-screen) .btn:not([disabled]):hover span:before, html:not(.touch-screen) .btn:not([disabled]):hover span:after {
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
  }
  html:not(.touch-screen) .btn:not([disabled]):hover.btn-secondary {
    color: #fff;
  }
  html:not(.touch-screen) .btn:not([disabled]):hover.btn-secondary:before, html:not(.touch-screen) .btn:not([disabled]):hover.btn-secondary:after, html:not(.touch-screen) .btn:not([disabled]):hover.btn-secondary span:before, html:not(.touch-screen) .btn:not([disabled]):hover.btn-secondary span:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
  html:not(.touch-screen) .btn:not([disabled]):hover span:before {
    -webkit-transition-delay: .05s;
         -o-transition-delay: .05s;
            transition-delay: .05s;
  }
  html:not(.touch-screen) .btn:not([disabled]):hover:after {
    -webkit-transition-delay: .1s;
         -o-transition-delay: .1s;
            transition-delay: .1s;
  }
  html:not(.touch-screen) .btn:not([disabled]):hover:before {
    -webkit-transition-delay: .15s;
         -o-transition-delay: .15s;
            transition-delay: .15s;
  }
  html:not(.touch-screen) .btn:not([disabled]):hover.btn-primary {
    color: #ff671e;
  }
  html:not(.touch-screen) .btn:not([disabled]):hover.btn-icon .icon {
    border-right-color: transparent;
  }
  html:not(.touch-screen) .btn-close:hover {
    color: #ff671e;
    background-color: #fff;
  }
}

@media (max-width: 575px) {
  .btn {
    padding: 13px 20px;
  }
  .btn-icon {
    padding: 3px 0;
  }
  .btn-icon .icon {
    width: 56px;
  }
  .btn-icon span {
    padding: 0 20px;
  }
  .btn-icon:before, .btn-icon:after, .btn-icon span:before, .btn-icon span:after {
    width: calc(25% - 12px);
  }
  .btn-icon:before {
    left: 55px;
  }
  .btn-icon:after {
    left: calc(25% + 55px - 14px);
  }
  .btn-icon span:before {
    left: calc(50% + 55px - 28px);
  }
  .btn-icon span:after {
    left: calc(75% + 55px - 42px);
  }
  .btn-close {
    width: 46px;
    height: 46px;
    line-height: 42px;
  }
}

/* vertical button */
.vert-button {
  position: absolute;
  bottom: -35px;
  left: 55px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: #fff;
  cursor: pointer;
  padding: 15px;
}

.vert-button span {
  display: block;
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.vert-button span:before {
  content: '';
  position: relative;
  display: inline-block;
  left: -2px;
  bottom: 20px;
  width: 9px;
  height: 80px;
  background-color: #ff671e;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 1200px) {
  .vert-button:focus span {
    color: #ff671e;
  }
  .vert-button:focus span:before {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  html:not(.touch-screen) .vert-button:hover span {
    color: #ff671e;
  }
  html:not(.touch-screen) .vert-button:hover span:before {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@media (max-width: 1710px) {
  .vert-button {
    left: 0;
  }
  .safari .vert-button {
    left: 15px;
  }
}

@media (max-width: 991px) {
  .vert-button {
    display: none;
  }
}

/* end of vertical button */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*05 - HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 120px;
  width: 100%;
  z-index: 100;
  padding: 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: height .25s, background .25s, -webkit-box-shadow .25s;
  transition: height .25s, background .25s, -webkit-box-shadow .25s;
  -o-transition: height .25s, box-shadow .25s, background .25s;
  transition: height .25s, box-shadow .25s, background .25s;
  transition: height .25s, box-shadow .25s, background .25s, -webkit-box-shadow .25s;
}

.logo {
  position: relative;
  display: block;
  width: 140px;
  z-index: 2;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.naw-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav {
  position: relative;
  font-weight: 400;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

nav a {
  position: relative;
  display: inline-block;
  margin-right: 90px;
  padding: 5px 0;
}

nav a:last-child {
  margin-right: 0;
}

nav a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  background-color: #ff671e;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

nav a.active {
  color: #fff;
}

nav a.active:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.nav-btn {
  position: absolute;
  right: 190px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.lang {
  position: relative;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.lang .current {
  position: relative;
  padding: 10px 25px 10px 15px;
}

.lang .current:before {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 2.5px 0 2.5px;
  border-color: currentColor transparent transparent transparent;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.lang ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  color: #68686b;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
          transform: translateX(15px);
  opacity: 0;
  visibility: hidden;
}

.lang ul a {
  display: block;
  padding: 10px;
}

header.scrolled {
  height: 96px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  color: #68686b;
}

header.scrolled .logo {
  width: 114px;
}

header.scrolled nav a.active {
  color: #373739;
}

header.scrolled .lang {
  color: #68686b;
}

header.scrolled .lang ul {
  background: #373739;
  color: #fff;
}

header.scrolled .mobile-button:before, header.scrolled .mobile-button:after, header.scrolled .mobile-button span {
  background-color: #373739;
}

header.show-more .nav-btn {
  opacity: 1;
  visibility: visible;
}

header.show-more nav {
  -webkit-transform: translateX(-170px);
      -ms-transform: translateX(-170px);
          transform: translateX(-170px);
}

/*mobile-button*/
.mobile-button {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-button span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.mobile-button:before, .mobile-button:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  margin-top: 8px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.mobile-button:before {
  margin-top: -10px;
}

.mobile-button.active:before, .mobile-button.active:after {
  -webkit-transform: translateY(9px) rotate(45deg);
      -ms-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}

.mobile-button.active:after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
      -ms-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}

.mobile-button.active span {
  -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
}

.nav-layer {
  position: fixed;
  top: 70px;
  width: 100%;
  bottom: -100px;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  -o-transition: opacity .5s, transform .5s;
  transition: opacity .5s, transform .5s;
  transition: opacity .5s, transform .5s, -webkit-transform .5s;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

header.active .nav-layer {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 1200px) {
  /* focus */
  nav a:focus {
    color: #fff;
  }
  nav a:focus:before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
  header.scrolled nav a:focus {
    color: #373739;
  }
  /* hover */
  .lang:hover .current:before, .lang:focus .current:before {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .lang:hover ul, .lang:focus ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  html:not(.touch-screen) nav a:hover {
    color: #fff;
  }
  html:not(.touch-screen) nav a:hover:before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
  html:not(.touch-screen) .lang ul a:hover {
    color: #ff671e;
  }
  html:not(.touch-screen) header.scrolled nav a:hover {
    color: #373739;
  }
}

@media (max-width: 1710px) {
  header {
    padding: 0 15px;
  }
  nav a {
    margin-right: 50px;
  }
  .nav-btn {
    right: 100px;
  }
  header.show-more nav {
    -webkit-transform: translateX(-130px);
        -ms-transform: translateX(-130px);
            transform: translateX(-130px);
  }
}

@media (max-width: 1300px) {
  nav a {
    margin-right: 30px;
  }
}

/* responive header */
@media (max-width: 1199px) {
  header {
    height: 70px;
    color: #68686b;
  }
  header.scrolled {
    height: 70px;
  }
  header.show-more nav {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  header.scrolled .lang ul {
    background: #fff;
    color: #68686b;
  }
  .logo {
    width: 114px;
  }
  .naw-wrap {
    position: fixed;
    display: block;
    top: 70px;
    width: 50%;
    bottom: 0;
    left: 0;
    padding-bottom: 50px;
    background-color: #fff;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    z-index: 1;
    overflow: auto;
  }
  nav {
    border-top: 1px solid #ededed;
  }
  nav a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #ededed;
    margin-right: 0;
  }
  nav a.active {
    color: #373739;
  }
  .nav-btn {
    position: relative;
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    right: 0;
    opacity: 1;
    visibility: visible;
    margin: 50px 15px 0 15px;
  }
  header.active {
    background-color: #fff;
  }
  header.active .naw-wrap {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  header.active .mobile-button:before, header.active .mobile-button:after, header.active .mobile-button span {
    background-color: #373739;
  }
  .lang {
    margin-top: 30px;
    color: #68686b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lang .current {
    display: inline-block;
    color: #ff671e;
  }
  .lang .current:before {
    content: none;
  }
  .lang ul {
    position: relative;
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    opacity: 1;
    visibility: visible;
    width: auto;
  }
}

@media (max-width: 991px) {
  .naw-wrap {
    width: 65%;
  }
}

@media (max-width: 575px) {
  .naw-wrap {
    width: calc(100% - 60px);
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 06 - TOP BANNER CONTENT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.top-banner {
  position: relative;
  background-color: #373739;
}

.home .top-banner {
  background: transparent;
}

@media (max-width: 991px) {
  .home .top-banner-cta {
    background-color: #373739;
  }
}

body:not(.home) .top-banner:not(.top-banner-small) .swiper-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/overlay.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
/*
.home .top-banner .swiper-slide:before {
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.home .top-banner.animated .swiper-slide:before {
  opacity: 1;
  -webkit-transition: opacity .3s 2.4s;
  transition: opacity .3s 2.4s;
}*/

.top-banner .slide-wrap>.fade-anime:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/overlay.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

.home .top-banner .slide-wrap>.fade-anime:before {
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.home .top-banner .slide-wrap>.fade-anime:before {
  opacity: 1;
  -webkit-transition: opacity .3s 2.4s;
  transition: opacity .3s 2.4s;
}


.top-banner .container {
  position: relative;
  z-index: 1;
}

.top-banner .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-banner .cell-view {
  height: calc(100vh - 40px);
  vertical-align: bottom;
  padding: 200px 0 100px;
}

.top-banner .styled-title {
  max-width: 700px;
}

.top-banner .styled-title .title {
  margin-bottom: 30px;
}

.top-banner-cta {
  position: absolute;
  max-width: 340px;
  bottom: 100px;
  right: 19%;
  z-index: 3;
}

.top-banner-cta .btn {
  margin-top: 20px;
}

.styled-title {
  position: relative;
  padding-top: 40px;
  padding-left: 60px;
}

.styled-title:before, .styled-title:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.styled-title:before {
  top: -60px;
  height: calc(100% + 60px);
  width: 1px;
}

.styled-title:after {
  left: -50px;
  width: calc(100% - 50px);
  height: 1px;
}

.styled-title:not(.color-white):before, .styled-title:not(.color-white):after {
  background-color: #e1e1e1;
}

.styled-title .title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #ff671e;
}

@media (min-width: 992px) {
  html:not(.ie) .parallax-bg-wrap .rellax {
    height: 130%;
    top: -15%;
    will-change: transform;
  }
}

@media (max-width: 1660px) {
  .top-banner .styled-title {
    margin-left: 50px;
  }
  .styled-title {
    padding-top: 30px;
    padding-left: 40px;
  }
  .top-banner-cta {
    right: 70px;
  }
}

@media (min-width: 992px) and (max-height: 850px), (max-width: 991px) {
  .top-banner .cell-view {
    padding-bottom: 40px;
  }
  .top-banner-cta {
    bottom: 40px;
  }
}

@media (orientation: portrait) {
  .top-banner .cell-view {
    height: 60vh;
  }
}

@media (max-width: 991px) {
  .top-banner .cell-view {
    padding-top: 120px;
  }
  .top-banner .styled-title {
    margin-left: 15px;
    margin-right: 30px;
  }
  .top-banner .styled-title .title {
    margin-bottom: 20px;
  }
  .styled-title {
    padding: 20px 0 0 20px;
  }
  .styled-title:before {
    top: -30px;
    height: 100%;
  }
  .styled-title:after {
    left: -15px;
  }
  .styled-title .title:before {
    width: 15px;
    height: 15px;
  }
  .top-banner-cta {
    position: relative;
    right: 0;
    bottom: 0;
    padding: 30px 15px;
    max-width: 100%;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-banner-cta .btn {
    margin-top: 0;
    margin-left: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .styled-title:not(.type-2) {
    padding: 0;
  }
  .styled-title:not(.type-2):before, .styled-title:not(.type-2):after,
  .styled-title:not(.type-2) .title:before {
    content: none;
  }
  .top-banner .cell-view {
    height: 60vh;
  }
  .top-banner .styled-title {
    margin-left: 0;
  }
  .top-banner-cta {
    padding: 20px 15px;
  }
}

@media (max-width: 565px) {
  .top-banner-cta .btn {
    min-width: unset;
  }
  .top-banner-cta .btn .icon {
    border-right: 0;
  }
  .top-banner-cta .btn span {
    display: none;
  }
}

/* top-banner full */
.top-banner-full .cell-view {
  height: 100vh;
  vertical-align: middle;
  padding: 150px 0 50px;
}

.thank-you .title {
  margin-bottom: 15px;
}

.thank-you .btn {
  margin-top: 35px;
}

.thank-you .icon {
  display: inline-block;
  width: 120px;
  margin-bottom: 35px;
}

.thank-you .icon svg, .thank-you .icon img {
  display: block;
  width: 100%;
  height: auto;
}

.thank-you-2 .title {
  margin-bottom: 15px;
}

.thank-you-2 .subtitle {
  line-height: 1.2;
}

.thank-you-2 .visit-date {
  padding: 10px 15px;
  margin: 20px 0;
  background-color: #eee;
}

.thank-you-2 .small-title {
  font-size: 14px;
  margin-bottom: 5px;
}

.thank-you-2 .arrow-line {
  overflow-x: hidden;
}

.thank-you-2 .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 auto 20px;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background-color: #ff671e;
  padding: 11px 9px 9px;
}

.thank-you-2 .icon:before, .thank-you-2 .icon:after {
  position: absolute;
  content: '';
  top: 50%;
  height: 1px;
  width: 500px;
  background-color: #ff671e;
}

.thank-you-2 .icon:before {
  right: 120%;
}

.thank-you-2 .icon:after {
  left: 120%;
}

.thank-you-2 .icon svg {
  max-width: 100%;
  height: auto;
}

.thank-you-2 .ty-bottom {
  background-color: #ff671e;
  padding: 10px 15px 15px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .top-banner-full .cell-view {
    padding: 100px 0 40px;
  }
  .thank-you .icon {
    width: 80px;
    margin-bottom: 20px;
  }
  .top-banner .swiper-slide {
    height: auto;
  }
  .top-banner .container {
    height: 100%;
  }
  .top-banner .cell-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 60vh;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

/* simple article section */
.simple-article-section {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .simple-article-section {
    margin-top: 90px;
  }
}

/*--------------------------------------------------------*/
/* 07 - ANIMATIONS: */
/*--------------------------------------------------------*/
.fade-anime {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  -o-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
}

.fade-anime-speed2 {
  -webkit-transition: opacity 1s, visibility 1s;
  -o-transition: opacity 1s, visibility 1s;
  transition: opacity 1s, visibility 1s;
}



.styled-title:before {
  -webkit-transition: .5s .25s;
  -o-transition: .5s .25s;
  transition: .5s .25s;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}

.styled-title:after {
  -webkit-transition: .5s .25s;
  -o-transition: .5s .25s;
  transition: .5s .25s;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

.animated .fade-anime {
  opacity: 1;
  visibility: visible;
}

.animated .styled-title:before {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.animated .styled-title:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.delay1 {
  -webkit-transition-delay: .3s;
       -o-transition-delay: .3s;
          transition-delay: .3s;
}

.delay2 {
  -webkit-transition-delay: .6s;
       -o-transition-delay: .6s;
          transition-delay: .6s;
}

.delay3 {
  -webkit-transition-delay: .9s;
       -o-transition-delay: .9s;
          transition-delay: .9s;
}

.delay4 {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.delay5 {
  -webkit-transition-delay: 1.5s;
       -o-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.delay6 {
  -webkit-transition-delay: 1.8s;
       -o-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.delay7 {
  -webkit-transition-delay: 2.1s;
       -o-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

.delay8 {
  -webkit-transition-delay: 2.4s;
       -o-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.delay9 {
  -webkit-transition-delay: 2.7s;
       -o-transition-delay: 2.7s;
          transition-delay: 2.7s;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* COLORS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.color-primary {
  color: #68686b;
}

.color-title {
  color: #48484a;
}

.color-secondary {
  color: #ff671e;
}

.color-additional {
  color: #373739;
}

.color-white {
  color: #fff;
}

.color-lighter {
  color: rgba(255, 255, 255, 0.7);
}

.color-grey {
  color: #b1b1b1;
}

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