@charset "UTF-8";
h1 {
  font-size: 3.9vw;
  line-height: 1.5vw; }

h2 {
  font-size: 3.2vw;
  line-height: 6.4vw;
  font-weight: 600;
  color: #444444; }

h3 {
  font-size: 1.8vw;
  line-height: 3.4vw;
  color: #000; }

h4 {
  font-size: 1.55vw;
  color: #444444;
  line-height: 3.1vw; }

h5 {
  font-size: 1.3vw;
  line-height: 2.6vw; }

h6 {
  font-size: 1vw;
  line-height: 2vw;
  color: #444444; }

p {
  font-size: 1.4vw;
  line-height: 2.6vw; }

input {
  font-size: 1.3vw; }

textarea {
  font-size: 1.3vw; }
.lang-item img {
    width: 1.3vw;
    height: auto;
}
.branch {
  margin-bottom: 3%; }

.tle {
  font-style: italic; }

.mobile_button {
  display: none;
  z-index: 9999999; }

.mob-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #444141;
  z-index: 999999; }
  .mob-block .container {
    width: 100%;
    margin: 0 auto;
    margin-top: 25%;
    padding-bottom: 4%;
    height: 100%; }
    .mob-block .container ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      height: 80%; }

.dropdown {
  position: relative; }
  .dropdown a {
    display: block;
    color: white;
    background: #444141;
    padding: 3%;
    font-size: 5vw; }
  .dropdown [data-toggle="dropdown"]:before {
    position: absolute;
    display: block;
    content: '\25BC';
    font-size: 0.7em;
    color: #fff;
    top: 13px;
    right: 10px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  .dropdown .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%, 0%;
    -ms-transform-origin: 50%, 0%;
    transform-origin: 50%, 0%;
    -webkit-animation: hideAnimation .1s ease-out;
    animation: hideAnimation .1s ease-out; }
    .dropdown .dropdown-menu li {
      padding: 0; }
      .dropdown .dropdown-menu li a {
        display: block;
        color: #6f6f6f;
        background: #EEE;
        padding: 10px 10px; }
  .dropdown input[type="checkbox"] {
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer; }
    .dropdown input[type="checkbox"]:checked ~ .dropdown-menu {
      max-height: 9999px;
      display: block;
      -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
      transform: scaleY(1);
      -webkit-animation: showAnimation .5s ease-in-out;
      animation: showAnimation .5s ease-in-out; }

.dropdown > input[type="checkbox"]:checked + a[data-toggle="dropdown"]:before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }

.mobile {
  display: none; }

body {
  font-family: 'Playfair Display', serif; }

header {
  width: 100%;
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.logo {
  margin-top: 1%;
  margin-bottom: 2%; }
  .logo img {
    width: 20vw;
    height: auto; }

nav {
  z-index: 99999;
  margin: 0 auto;
  width: 63%;
  margin-bottom: 2.5%; }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    nav ul li {
      position: relative;
      display: inline-block;
      margin-right: -4px;
      text-align: center; }
      nav ul li:nth-child(6) ul {
        width: 14vw; }
      nav ul li a {
        font-size: 1.05vw;
        font-style: italic;
        text-transform: uppercase;
        display: block;
        color: #CF9D79;
        padding-bottom: 0.5vw;
        -webkit-transition: 0.2s linear;
        -o-transition: 0.2s linear;
        transition: 0.2s linear; }
        nav ul li a:hover {
          color: #B76E79; }
      nav ul li ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 8vw;
        height: auto;
        -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16); }
        nav ul li ul li {
          display: block;
          width: 100%;
          text-align: left; }
          nav ul li ul li a {
            display: block;
            background: #fff;
            padding: 10px 15px;
            color: #B76E79; }
            nav ul li ul li a:first-child {
              width: auto;
              border-left: 4px solid transparent; }
            nav ul li ul li a:hover {
              border-left: 4px solid #B76E79; }

.sub-menu ul {
  display: none; }

.sub-menu:hover ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.mobile_button {
  display: none; }

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.line {
  fill: none;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  -o-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round; }

.ham3 .top {
  stroke-dasharray: 40 130; }

.ham3 .middle {
  stroke-dasharray: 40 140; }

.ham3 .bottom {
  stroke-dasharray: 40 205; }

.ham3.active .top {
  stroke-dasharray: 75 130;
  stroke-dashoffset: -63px; }

.ham3.active .middle {
  stroke-dashoffset: -102px; }

.ham3.active .bottom {
  stroke-dasharray: 110 205;
  stroke-dashoffset: -86px; }

.lvl:after {
  position: absolute;
  content: '›';
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: -1vw;
  font-weight: 700;
  top: -10%;
  font-family: sans-serif;
  font-size: 1.5vw;
  font-style: normal; }

#home {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  background: #DDD9D4;
  color: #fff; }
  #home h1 {
    margin-bottom: 5%; }
   #home .breadcrumbs {
       display: flex;
       margin: 0 auto;
       width: 14%;
       justify-content: space-between;
       align-items: center;
   }   
  #home .crumb-one {
    text-transform: uppercase;  
  }    
  #home .crumb-two {
    text-transform: uppercase;
    position: relative; }
    #home .crumb-two:after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 2.5%;
      width: 90%;
      height: 3%;
      background: #fff; }
    #home .crumb-marker {
      width: 1vw;
      height: 1vw;
      border-radius: 50%;
      background: #B76E79; }

.image-container {
  margin-bottom: -0.5%;
  width: 100%;
  height: auto; }
  .image-container img {
    width: 100%;
    height: auto; }

.blackout {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%; }

.slide-content {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

#text {
  padding-top: 5%;
  width: 100%; }
  #text .text-container {
    width: 80%;
    margin: 0 auto;
    text-align: left; }

#counter {
  position: relative;
  width: 100%;
  height: auto; }
  #counter .img-container-count {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    #counter .img-container-count img {
      width: 100%;
      height: auto; }
  #counter .count-container {
    padding: 8% 0;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 10% auto; }
    #counter .count-container .count {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      z-index: 999999; }
      #counter .count-container .count h2 {
        color: #fff;
        font-size: 5vw;
        margin-bottom: 2%; }
      #counter .count-container .count h4 {
        color: #fff;
        opacity: 0.7;
        text-shadow: rgba(0, 0, 0, 0.16) 1px 1px 0, rgba(0, 0, 0, 0.16) -1px -1px 0, rgba(0, 0, 0, 0.16) -1px 1px 0, rgba(0, 0, 0, 0.16) 1px -1px 0; }

#blog {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #blog .blog-container {
    margin-top: 5%;
    width: 95%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    #blog .blog-container .post {
      text-align: center;
      width: 31%;
      margin-bottom: 5%; }
      #blog .blog-container .post .blog-block {
        width: 100%;
        overflow: hidden;
        height: 20vw; }
        #blog .blog-container .post .blog-block img {
          width: auto;
          height: 100%; }
        #blog .blog-container .post .blog-block h3 {
          width: 100%; }

footer {
  width: 100%;
  background: #444444; }
  footer h5 {
    color: #ffffff; }
  footer .foot-container {
    padding-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 5%; }
    footer .foot-container .foot-info {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      width: 35%;
      margin-right: 10%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      footer .foot-container .foot-info img {
        width: 55%;
        margin-bottom: 2%; }
      footer .foot-container .foot-info p {
        color: #9E9E9E;
        font-size: 1.1vw;
        line-height: 1.6vw; }
      footer .foot-container .foot-info .ftext {
        width: 85%; }
      footer .foot-container .foot-info hr {
        margin-top: 5%;
        margin-bottom: 5%;
        margin-left: 0;
        width: 40%; }
    footer .foot-container .foot-func {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 55%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      footer .foot-container .foot-func h5 {
        margin-bottom: 3%; }
      footer .foot-container .foot-func input[type='text'] {
        border: 1px solid #707070;
        background: #535252;
        padding: 2% 0;
        padding-left: 5%;
        width: 77%;
        color: #fff;
        border-radius: 5px; }
        footer .foot-container .foot-func input[type='text']::-webkit-input-placeholder {
          color: #D8D5D5; }
        footer .foot-container .foot-func input[type='text']:-ms-input-placeholder {
          color: #D8D5D5; }
        footer .foot-container .foot-func input[type='text']::-ms-input-placeholder {
          color: #D8D5D5; }
        footer .foot-container .foot-func input[type='text']::placeholder {
          color: #D8D5D5; }
      footer .foot-container .foot-func input[type='submit'] {
        border: 1px solid #ffffff;
        background: transparent;
        border-radius: 10px;
        font-size: 1vw;
        margin-left: 2%;
        color: #fff;
        width: 23%; }
      footer .foot-container .foot-func .subscribe {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 5%; }
      footer .foot-container .foot-func .foot-search {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      footer .foot-container .foot-func .cont-container {
        width: 100%;
        margin-top: 5%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        footer .foot-container .foot-func .cont-container .contact {
          width: 50%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; }
          footer .foot-container .foot-func .cont-container .contact .phone {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; }
            footer .foot-container .foot-func .cont-container .contact .phone img {
              margin-right: 4%; }
            footer .foot-container .foot-func .cont-container .contact .phone p {
              color: #fff; }
          footer .foot-container .foot-func .cont-container .contact .em {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; }
            footer .foot-container .foot-func .cont-container .contact .em img {
              margin-right: 4%; }
            footer .foot-container .foot-func .cont-container .contact .em p {
              color: #fff; }
        footer .foot-container .foot-func .cont-container .soc-network {
          width: 50%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; }
          footer .foot-container .foot-func .cont-container .soc-network .net {
            margin-top: 5%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            width: 50%; }
          footer .foot-container .foot-func .cont-container .soc-network p {
            font-size: 1.1vw;
            color: #9E9E9E;
            line-height: 1.6vw; }
          footer .foot-container .foot-func .cont-container .soc-network a {
            width: 25%;  margin-right: 10px;}
  footer .copyright {
    width: 100%;
    text-align: center; }
    footer .copyright h4 {
      color: #9E9E9E; }
      footer .copyright h4 a {
        color: #9E9E9E;
        font-weight: 900; }

@media screen and (max-width: 900px) {
  .desktop {
    display: none; }
  .mobile {
    display: block; }
  h1 {
    font-size: 7vw;
    line-height: 3.5vw; }
  h2 {
    font-size: 4.2vw;
    line-height: 8.4vw; }
  h3 {
    font-size: 3vw;
    line-height: 5vw; }
  h4 {
    font-size: 2.55vw;
    color: #444444;
    line-height: 4.1vw; }
  h5 {
    font-size: 2.3vw;
    line-height: 4.6vw; }
  h6 {
    font-size: 2vw;
    line-height: 3vw; }
  p {
    font-size: 1.9vw;
    line-height: 3.2vw; }
  input {
    font-size: 1.8vw; }
  textarea {
    font-size: 1.8vw; }
  header {
    background: #444141; }
    header .logo img {
      width: 24vw;
      height: auto; }
  nav {
    display: none; }
  .mobile_button {
    display: block; }
    #home .breadcrumbs {
       width: 24%;
   }   
    #home .crumb-marker {
      width: 1.5vw;
      height: 1.5vw;}
  #counter .count-container {
    padding: 8% 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10% auto; }
    #counter .count-container .count {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      z-index: 999999;
      margin-bottom: 10%; }
      #counter .count-container .count h2 {
        color: #fff;
        font-size: 10vw;
        margin-bottom: 2%; }
  #blog .blog-container .post {
    width: 48%; }
    #blog .blog-container .post .blog-block {
      width: 100%;
      overflow: hidden;
      height: 30vw; }
      #blog .blog-container .post .blog-block img {
        width: auto;
        height: 100%; }
      #blog .blog-container .post .blog-block h3 {
        width: 100%; }
  footer .foot-container {
    padding-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 5%; }
    footer .foot-container .foot-info {
      text-align: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 90%;
      margin-right: 10%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      footer .foot-container .foot-info img {
        width: 45%;
        margin-bottom: 2%; }
      footer .foot-container .foot-info p {
        color: #9E9E9E;
        font-size: 2.2vw;
        line-height: 3.2vw; }
      footer .foot-container .foot-info .ftext {
        width: 85%; }
      footer .foot-container .foot-info hr {
        margin: 5% auto;
        width: 60%; }
    footer .foot-container .foot-func {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-bottom: 15%; }
      footer .foot-container .foot-func input[type='text'] {
        width: 65%; }
      footer .foot-container .foot-func input[type='submit'] {
        font-size: 1.8vw;
        width: 23%; }
      footer .foot-container .foot-func .cont-container .soc-network p {
        font-size: 1.6vw;
        line-height: 3.2vw; } }

@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
    line-height: 5vw; }
  h2 {
    font-size: 5.2vw;
    line-height: 10.4vw; }
  h3 {
    font-size: 6vw;
    line-height: 8vw; }
  h4 {
    font-size: 3.2vw;
    color: #444444;
    line-height: 6.4vw; }
  h5 {
    font-size: 3.3vw;
    line-height: 6.6vw; }
  h6 {
    font-size: 2.5vw;
    line-height: 3.5vw; }
  p {
    font-size: 3.8vw;
    line-height: 6.4vw; }
  input {
    font-size: 2.5vw; }
  textarea {
    font-size: 2.5vw; }
  .lang-item img {
    width: 4.3vw;
    height: auto;
  }    
  header .logo img {
    width: 41vw; }
      #home .breadcrumbs {
       width: 35%;
   }   
    #home .crumb-marker {
      width: 2vw;
      height: 2vw;}
  #blog .blog-container .post {
    margin-bottom: 10%;
    width: 100%; }
    #blog .blog-container .post .blog-block {
      width: 100%;
      overflow: hidden;
      height: 65vw; }
      #blog .blog-container .post .blog-block img {
        width: auto;
        height: 100%; }
      #blog .blog-container .post .blog-block h3 {
        width: 100%; }
  footer h5 {
    font-size: 3vw;
    line-height: 6vw; }
  footer .foot-container {
    padding-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 5%; }
    footer .foot-container .foot-info {
      text-align: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
      margin-right: 10%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      footer .foot-container .foot-info img {
        width: 45%;
        margin-bottom: 2%; }
      footer .foot-container .foot-info p {
        color: #9E9E9E;
        font-size: 3vw;
        line-height: 6vw; }
      footer .foot-container .foot-info .ftext {
        width: 85%; }
      footer .foot-container .foot-info hr {
        margin: 5% auto;
        width: 60%; }
    footer .foot-container .foot-func {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-bottom: 15%; }
      footer .foot-container .foot-func input[type='text'] {
        width: 65%; }
      footer .foot-container .foot-func input[type='submit'] {
        font-size: 2.5vw;
        width: 28%; }
      footer .foot-container .foot-func .cont-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center; }
        footer .foot-container .foot-func .cont-container .contact {
          margin-bottom: 5%;
          width: 60%; }
          footer .foot-container .foot-func .cont-container .contact .phone {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin: 0 auto;
            width: 100%; }
          footer .foot-container .foot-func .cont-container .contact .em {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin: 0 auto;
            width: 100%; }
        footer .foot-container .foot-func .cont-container .soc-network {
          width: 80%; }
          footer .foot-container .foot-func .cont-container .soc-network a {
            width: 45%; }
          footer .foot-container .foot-func .cont-container .soc-network .net {
            margin: 5% auto; }
          footer .foot-container .foot-func .cont-container .soc-network p {
            font-size: 3vw;
            line-height: 5vw; } }

@media screen and (max-width: 425px) {
  h1 {
    font-size: 10vw;
    line-height: 15vw; }
  h2 {
    font-size: 6.2vw;
    line-height: 12.4vw; }
  h3 {
    font-size: 7vw;
    line-height: 12vw; }
  h4 {
    font-size: 4.6vw;
    color: #444444;
    line-height: 9.2vw; }
  h5 {
    font-size: 4.3vw;
    line-height: 8.6vw; }
  h6 {
    font-size: 4vw;
    line-height: 8vw; }
  p {
    font-size: 4.5vw;
    line-height: 9vw; }
  input {
    font-size: 4.5vw; }
  textarea {
    font-size: 4.5vw; }
  .lang-item img {
    width: 7.3vw;
    height: auto;
  }    
  header .logo img {
    width: 45vw;
    height: auto; }
      #home .breadcrumbs {
       width: 45%;
   }   
    #home .crumb-marker {
      width: 2.5vw;
      height: 2.5vw;}
  .slide-content {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  footer h5 {
    font-size: 4.3vw;
    line-height: 8.6vw; }
  footer .foot-container {
    padding-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 5%; }
    footer .foot-container .foot-info {
      text-align: left;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      width: 100%;
      margin-right: 10%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      footer .foot-container .foot-info img {
        width: 55%;
        margin-bottom: 2%; }
      footer .foot-container .foot-info p {
        color: #9E9E9E;
        font-size: 4vw;
        line-height: 7vw; }
      footer .foot-container .foot-info .ftext {
        width: 100%; }
      footer .foot-container .foot-info hr {
        margin-top: 5%;
        margin-bottom: 5%;
        margin-left: 0;
        width: 40%; }
    footer .foot-container .foot-func {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-bottom: 15%; }
      footer .foot-container .foot-func input[type='text'] {
        width: 100%;
        margin-bottom: 5%;
        padding: 5% 0;
        padding-left: 5%;
        margin-left: -2.5%; }
      footer .foot-container .foot-func input[type='submit'] {
        font-size: 4vw;
        width: 105%;
        padding: 5% 0;
        padding-left: 5%;
        margin-left: -2.5%; }
      footer .foot-container .foot-func .subscribe {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
      footer .foot-container .foot-func .foot-search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
      footer .foot-container .foot-func .cont-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left; }
        footer .foot-container .foot-func .cont-container .contact {
          margin-bottom: 5%;
          width: 60%; }
          footer .foot-container .foot-func .cont-container .contact .phone {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            margin: 0;
            width: 100%; }
          footer .foot-container .foot-func .cont-container .contact .em {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            margin: 0;
            width: 100%; }
        footer .foot-container .foot-func .cont-container .soc-network {
          width: 80%; }
          footer .foot-container .foot-func .cont-container .soc-network a {
            width: 30%; }
          footer .foot-container .foot-func .cont-container .soc-network .net {
            width: 60%;
            margin: 0;
            margin-top: 5%; }
          footer .foot-container .foot-func .cont-container .soc-network p {
            font-size: 4vw;
            line-height: 7vw; } }
