.int {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #252525;
}

/* == fonts == */
.int .f-pps {
    font-family: 'Poppins', sans-serif;
}
.int .f-qs {
    font-family: 'Quicksand', sans-serif;
}

/* == elements == */
.int a {
    text-decoration: none;
}
.int p {
    padding: 0;
    margin: 0;
}
.int img {
    border: 0;
}
.int input, .int textarea {
    font-family: 'Open Sans', sans-serif;
}
.int .contain {
    overflow: hidden;
}
.int .clear {
    clear: both;
}
.int .desktop {
}
.int .mobile {
    display: none!important;
}
#home-screen {
  position: relative;
  width: 100%;
  height: 1px;
  float: left;
  margin: -1px 0 0 0;
}
@media screen and (max-width: 700px) {
    .int .desktop {
        display: none!important;
    }
    .int .mobile {
        display: block!important;
    }
}

/* == colors == */
.int .dark {
  background-color: #252525;
  background-image: url(../image/noise.png);
  background-repeat: repeat;
  background-position: 50% 50%;
  color: #fff;
}
.int .white {
  background-color: #fff;
}
.int .light {
  background-color: #f3f3f3;
  background-image: url(../image/noise.png);
  background-repeat: repeat;
  background-position: 50% 50%;
}
.int .gold {
  background-color: #A78E52;
  background-image: url(../image/noise.png);
  background-repeat: repeat;
  background-position: 50% 50%;
}
.int .f-dark {
  color: #303030;
}
.int .f-white {
  color: #fff;
}
.int .f-light {
  color: #f3f3f3;
}
.int .f-gold {
  color: #A78E52;
}

/* == ico == */
.int .ico {
}
.int .ico::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    content: '';
}
.int .ico.white::before {
    filter: invert(1) brightness(1.5);
}
.int .ico.nav::before {
    background-image: url('../image/ico-nav.svg');
    background-size: 400% 200%;
}
.int .ico.contact::before {
    background-image: url('../image/ico-contact.svg');
    background-size: 400% 200%;
}
.int .ico.hamburger::before {
    background-position: 0 0;
}
.int .ico.close::before {
    background-position: 33.33% 0;
}
.int .ico.plus::before {
    background-position: 66.66% 0;
}
.int .ico.minus::before {
    background-position: 100% 0;
}
.int .ico.direction::before {
    background-position: 66.66% 0;
}
.int .ico.direction.right::before {
    transform: translate(-50%, -50%) rotate(180deg);
}
.int .ico.arrow::before {
    background-position: 33.33% 100%;
}
.int .ico.arrow.left::before {
    transform: translate(-50%, -50%) rotate(180deg);
}
.int .ico.blocked::before {
    background-position: 66.66% 100%;
}
.int .ico.resize::before {
    background-position: 100% 100%;
}
.int .ico.file::before {
    background-position: 66.66% 100%;
}
.int .ico.link::before {
    background-position: 100% 100%;
}

/* == logo == */
.int .logo {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 250px;
    z-index: 30;
}
.int .logo::before {
    display: block;
    position: relative;
    width: 100%;
    padding: 19.9% 0 0 0;
    background-image: url(../image/logo.svg);
    background-size: 100% 100%;
    background-position: 50% 50%;
    content: '';
    transition: all 0.3s ease-in-out;
}
.int .logo a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
@media screen and (max-width: 1350px) {
    .int .logo {
        position: absolute;
        top: 30px;
        left: 30px;
        width: 176px;
        z-index: 30;
    }
}
@media screen and (max-width: 700px) {
    
    .int .logo.on {
        position: fixed;
    }
    .int .logo::after {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 47.3% 0 0 0;
        background-image: url(../image/logo-dark.svg);
        background-size: 100% 100%;
        background-position: 50% 50%;
        content: '';
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }
    .int .logo.on::after {
        opacity: 1;
    }
    .int .logo.on::before {
        opacity:0
    }
    .int .logo::before {
        opacity:1
    }
}

/* == social == */
.int .social {
    position: absolute;
    display: block;
    top: 50px;
    right: 125px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    pointer-events:none;
    transition: all 0.2s ease-in-out;
}
.int .social.on {
    opacity: 1;
    pointer-events:auto;
}
.int .top .social {
}
.int .social a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    float: left;
    border-radius: 3px;
    background: #fff;
    margin: 0 0 0 15px;
    transform-origin: 50% 50%;
    transition: all 0.2s ease-in-out;
}
.int .social.on a {
}
.int .social a::before {
    position: absolute;
    display: block;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    background-size:100%;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    filter: invert(90);
    content: '';
}
.int .social a.fb::before {
    background-image: url('../image/ico-social-fb.svg');
}
.int .social a.insta::before {
    background-image: url('../image/ico-social-insta.svg');
}
.int .social a.book {
    width: auto;
    padding: 0 25px;
    line-height: 46px;
    color: #303030;
    border: 2px solid #303030;
    font-size: 18px;
}
.int .social a.book:hover {
    color: #fff;
    background: #A78E52;
    border: 2px solid #A78E52;
}
@media screen and (max-width: 1350px) {
    .int .social {
        top: 30px;
        right: 85px;
        height: 35px;
        opacity: 0;
        pointer-events:none;
        transition: all 0.3s ease-in-out;
    }
    .int .social a {
        width: 35px;
        height: 35px;
    }
    .int .social.on {
        opacity: 1;
        pointer-events:auto;
    }
    .int .top .social {
        display: block;
    }
    .int .social a {
        background: #fff;
    }
    .int .social a::before {
        filter:invert(100%);
    }
    .int .social a.book {
        line-height: 31px;
        padding: 0 15px;
    }
}
@media screen and (max-width: 500px) {
    .int .social.on {
        opacity: 0;
        pointer-events:none;
    }
}

/* == menu-button == */
.int .menu-button {
    position: fixed;
    top: 50px;
    right:50px;
    width: 50px;
    height: 50px;
    z-index: 30;
    cursor: pointer;
}
.int .menu-button.off {
    display: none;
}
.int .menu-button .ico {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity:0;
    transition: all 0.3s ease-in-out;
    
}
.int .menu-button .ico.on {
    opacity:1;
    transform: translate(-50%, -50%) scale(1);
}
.int .menu-button .ico.nav.close.on {
    filter:invert(1);
}

@media screen and (max-width: 1350px) {
    .int .menu-button.off {
        display: block;
    }
    .int .menu-button {
        top: 30px;
        right:30px;
        width: 35px;
        height: 35px;
    }
}
@media screen and (max-width: 700px) {
    .int .menu-button {
        top: 30px;
        right:30px;
        width: 35px;
        height: 35px;
    }
}

/* == menu == */
.menu {
    position: fixed;
    width: 50%;
    height: 100%;
    top: 0;
    right: -50%;
    background: #333333;
    z-index: 29;
    pointer-events:none;
    transition: all 0.3s ease-in-out;
}
.menu.on {
    right: 0;
    opacity:1;
    pointer-events:auto;
}
.menu ul {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    top: 50%;
    left: 100px;
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.menu.on ul {
    opacity:1;
}
.menu ul::before {
    position: absolute;
    display: block;
    height: calc(100% - 50px);
    width: 2px;
    top: 50%;
    left: -30px;
    background: #A78E52;
    border-radius: 2px;
    transform: translateY(-50%);
    content: '';
}
.menu ul li {
    position: relative;
    display: block;
    min-width: 200px;
    margin: 0 1000px 0 0 ;
    line-height: 50px;
    cursor: pointer;
    clear: both;
}
.menu ul li a {
    position: relative;
    display: block;
    padding: 0 50px 0 0;
    color: #fff;
    font-size: 24px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}
.menu ul li a:hover {
    color: #A78E52;
}
.menu ul li.parent::before {
    position: absolute;
    display: block;
    top: 50%;
    right: -5px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #A78E52 transparent;
    transform: translateY(-50%) rotate(270deg);
    content: '';
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.menu ul li.parent.on::before {
    opacity: 1;
}
.menu ul li.parent::after {
    position: absolute;
    display: block;
    top: 50%;
    left: calc(100% - 25px);
    line-height: 50px;
    width: 50px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    content: '+';
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.menu ul li.parent.on::after {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}
.menu ul li.parent a {
    pointer-events:none;
    cursor: pointer;
}
.menu ul ul {
    position: absolute;
    display: block;
    top: 50%;
    left: 100%;
    padding: 0 0 0 30px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    opacity: 0!important;
    pointer-events:none;
    visibility: hidden;
}
.menu ul li.on ul {
    opacity: 1!important;
    pointer-events:auto;
    visibility: visible;
}
.menu ul ul::before {
    position: absolute;
    display: block;
    width: 2px;
    height: 0;
    top: 50%;
    left:0 ;
    transform: translateY(-50%);
    background: #A78E52;
    content: '';
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.menu ul li.parent.on ul::before {
    height: 100px;
    opacity: 1;
}
.menu ul ul li {
    line-height: 50px;
}
.menu ul ul li a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 18px;
    pointer-events:auto!important;
}
.menu ul li ul li a:hover {
    color: #DC3F96;
}
.menu ul li.contact {
    padding: 50px 0 0 0;
    order: 99;
}
.menu ul li.contact::before {
    position: absolute;
    display: block;
    top: 25px;
    left: -10px;
    width: 100px;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0.5;
}
.menu ul li.contact a {
    font-size: 18px;
}
.menu ul li.contact a .ico {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    margin: 9px 15px 0 0;
    background-position: 50% 50%;
    background-size: 100% 100%;
    filter: invert(100%) brightness(100%);
}
.menu ul li.contact a .ico.phone {
    background-image:url(../image/ico-phone.svg);
}
.menu ul li.contact a .ico.email {
    background-image:url(../image/ico-mail.svg);
}
.menu .form-button {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 35px;
    color: #fff;
    background-color: #303030;
    border-radius: 5px;
    border: 2px solid #DC3F96;
    padding: 0 30px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    float: left;
    margin: 13px 0 0 30px;
}
.menu .form-button:hover {
    background-color: #DC3F96;
}
.menu .form-button::before {
    position: absolute;
    display: block;
    width: calc(100% - 20px);
    height: 20px;
    bottom: -5px;
    left: 10px;
    filter: blur(5px);
    background: #000;
    z-index: -2;
    opacity: 0.5;
    content: '';
}
.menu .form-button::after {
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    top: 50%;
    left: 100%;
    background: #DC3F96;
    border-radius: 0 0 4px 0;
    z-index: -1;
    transform: translate(-50%, -50%) rotate(-45deg);
    content: '';
}
.menu .social {
    position: absolute;
    right: auto;
    top: auto;
    bottom: 50px;
    left: 50px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events:none;
}
.menu .social.on {
    opacity: 1;
    pointer-events:auto;
}
.menu .social a{
    background: #fff;
}
.menu .social a:hover {
    background: #A78E52;
}
.menu .social a::before {
    filter: invert(90);
    transition: all 0.2s ease-in-out;
}
.menu .social a:hover::before {
    filter: invert(0);
}



@media screen and (max-width: 1350px) {
    .menu ul {
        left: 30px;
    }
    .menu ul::before {
        left: 0px;
    }
    .menu ul li a {
        font-size: 18px;
        text-indent: 30px;
    }
    .menu ul ul {
        padding:0;
    }
    .menu ul ul li a {
        font-size: 16px;
    }
    .menu .social {
        bottom: 30px!important;
        left: 20px!important;
    }
}
@media screen and (max-width: 700px) {
    .menu {
        width: 100%;
        right: -100%;
    }
    .menu ul {
        left: 30px;
        width: calc(100% - 60px);
    }
    .menu ul li {
        width: 100%;
    }
    .menu ul li.parent::before, .menu ul li.parent::after {
        display:none;
    }
    .menu ul li.parent a {
        pointer-events:auto;
    }
    .menu ul li a {
        padding: 0;
        text-align: left;
        text-indent: 30px;
    }
    .menu ul ul {
        display: none;
        
    }
    .menu ul::before {
        position: absolute;
        display: block;
        height: calc(100% - 50px);
        width: 2px;
        top: 50%;
        left: 0px;
        background: #A78E52;
        border-radius: 2px;
        transform: translateY(-50%);
        content: '';
    }
}


/* == language == */
.int .language {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    top: 40px;
    right: 120px;
    cursor: pointer;
    z-index: 30;
}
.int .language::before {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0%;
    left: 0%;
    background-image:url('../image/ico-lang.svg');
    background-position: 50% 50%;
    background-size: 100% 100%;
    content: '';
    z-index: 10;
}
.int .language::after {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 100%;
    left: 50%;
    background-image:url('../image/ico-nav.svg');
    background-position: 66.66% 0%;
    background-size: 400% 200%;
    transform: translate(-50%, -50%) rotate(-90deg);
    content: '';
    z-index: 11;
}
.int .language .box {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    border-radius: 3px;
    float: left;
    order: 2;
    opacity: 0;
    pointer-events:none;
    color: #fff;
    background: #333;
    transition: all 0.2s ease-in-out;
}
.int .language:hover .box {
    opacity: 1;
    pointer-events:auto;
}
.int .language .box:hover {
    background: #EC008C;
    color: #fff;
}
.int .language .box.on {
    order: 1;
    opacity: 1;
    background: #fff;
    color: #333;
}
@media screen and (max-width: 700px) {
    .int .language {
      width: 40px;
      height: 40px;
      top: 30px;
      right: 90px;
    }
    .int .language .box {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/* == line == */
.int .line {
    position: relative;
    width: 100%;
    float: left;
}
.int .line.backg-left {
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 50% auto;
}
.int .line.backg-right {
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 50% auto;
}
.int .line.backg-center {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.int .line.backg-down-center {
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: contain;
}
.int .at-top {
    overflow: visible;
}
.int .line.in-front {
    z-index: 20;
}
.int .line.in-back {
    z-index: -1;
}
.int .line.fixed {
    position: fixed;
}
.int .line.full-height {
    height: 100%;
}
.int .at-top + .line.full-height {
    height: calc(100% - 150px);
}
.int .at-top + .line.full-height + .line.full-height {
    height: calc(100% - 150px);
}
.int .line.panel {
    position: absolute;
    width: 600px;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1350px) {
  .int .at-top + .line.full-height {
      height: calc(100% - 95px);
  }
  .int .at-top + .line.full-height + .line.full-height {
      height: calc(100% - 95px);
  }
  .int .line.panel {
      position: absolute;
      width: calc(100% - 60px);
      left: 30px;
  }
}
@media screen and (max-width: 700px) {
  .int .line.backg-left {
      background-image: none!important;
  }
  .int .line.backg-right {
      background-image: none!important;
  }
  .int .line.backg-down-center {
      background-repeat: no-repeat;
      background-position: 50% 100%;
      background-size: cover;
  }
  
}


/* == line - backg == */
.int .line .backg {
    position: absolute;
    top: 5%;
    height: 90%;
}
.int .line .backg.half {
    width: 50%;
}
.int .line .backg.left {
    left:0;
}
.int .line .backg.right {
    right:0;
}
.int .line.backg-left {
    background-position: 0 50%;
    background-size: cover;
}
.int .line.backg-right {
    background-position: 100% 50%;
    background-size: cover;
}
.int .line.backg-center {
    background-position: 50% 50%;
    background-size: cover;
}
.int .line.backg-down-center {
    background-position: 50% 100%;
    background-size: cover;
}
@media screen and (max-width: 700px) {
}

/* == line - bar == */
.int .line .bar {
    position: absolute;
    height: 2px;
    border-radius: 1px;
    z-index: 10;
    pointer-events:none;
    transform: translateY(-50%);
}
.int .line .bar.left {
    left:0;
}
.int .line .bar.right {
    right:0;
}
.int .line .bar.half {
    width: 50%;
}
.int .line .bar.third {
    width: 33.33%;
}
.int .line .bar.bt {
    top:0;
}
.int .line .bar.bb {
    top: 100%;
}
@media screen and (max-width: 1000px) {

}
@media screen and (max-width: 700px) {

}

/* == line - top == */
.int .line .top {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    float: left;
}
@media screen and (max-width: 1350px) {
    .int .line .top {
        height: 95px;
    }
}


/* == line - content == */
.int .line .content {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    z-index: 3;
}
.int .line .content.padding-small {
    padding: 100px 0;
}
.int .line .content.padding-medium {
    padding: 150px 0;
}
.int .line .content.padding-big {
    padding: 200px 0;
}
.int .line .content.panel {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    z-index: 3;
}
.int .line .content.padding-top {
    padding: 150px 0 0 0;
}
.int .line .content .box {
    position: relative;
    float: left;
    margin: 30px;
    padding: 30px 0;
    border-radius: 5px;
    text-align: justify;
}
.int .content .box.backg {
    padding: 30px;
}
.int .content .box.one-one {
    width: calc(100% - 60px);
    float: none;
    max-width: 1000px;
    margin: 30px auto;
}
.int .content .box.one-one.backg {
    width: calc(100% - 120px);
}
.int .content .box.one-one.full {
    max-width:100%;
}
.int .content .box.one-two {
    width: calc(50% - 60px);
}
.int .content .box.one-two.backg {
    width: calc(50% - 120px);
}
.int .content .box.one-three {
    width: calc(33.33% - 60px);
}
.int .content .box.one-three.backg {
    width: calc(33.33% - 120px);
}
.int .content .box.two-three {
    width: calc(66.66% - 60px);
}
.int .content .box.one-four {
    width: calc(25% - 60px);
}
.int .content .box.one-four.backg {
    width: calc(25% - 120px);
}
.int .line .content .box.right {
}
.int .line .content .box.left h1, .int .line .content .box.left h2, .int .line .content .box.left h3, .int .line .content .box.left h4 {
    text-align: left;
}
.int .line .content .box.right h1, .int .line .content .box.right h2, .int .line .content .box.right h3, .int .line .content .box.right h4 {
    text-align: right;
}
@media screen and (max-width: 1600px) {
    .int .line .content.padding-small {
        padding: 40px 0;
    }
    .int .line .content.padding-medium {
        padding: 80px 0;
    }
    .int .line .content.padding-big {
        padding: 120px 0;
    }
    .int .line .content.padding-top {
        padding: 120px 0 80px 0;
    }
    .int .line .content .box {
        margin: 25px;
        padding: 0px 0;
    }
    .int .line .content .box.backg {
        padding: 25px;
    }
    .int .content .box.one-one {
        width: calc(100% - 50px);
        margin: 25px auto;
    }
    .int .content .box.one-one.backg {
        width: calc(100% - 100px);
    }
    .int .content .box.one-two {
        width: calc(50% - 50px);
    }
    .int .content .box.one-two.backg {
        width: calc(50% - 100px);
    }
    .int .content .box.one-three {
        width: calc(33.33% - 50px);
    }
    .int .content .box.one-three.backg {
        width: calc(33.33% - 100px);
    }
    .int .content .box.one-four {
        width: calc(25% - 50px);
    }
    .int .content .box.one-four.backg {
        width: calc(25% - 100px);
    }
}
@media screen and (max-width: 1400px) {
    .int .line .content {
        width: calc(100% - 40px);
    }
    .int .line .content .box {
        margin: 20px;
        padding: 0px 0;
    }
    .int .line .content .box.backg {
        padding: 20px;
    }
    .int .content .box.one-one {
        width: calc(100% - 40px);
        margin: 20px auto;
    }
    .int .content .box.one-one.backg {
        width: calc(100% - 80px);
    }
    .int .content .box.one-two {
        width: calc(50% - 40px);
    }
    .int .content .box.one-two.backg {
        width: calc(50% - 80px);
    }
    .int .content .box.one-three {
        width: calc(33.33% - 40px);
    }
    .int .content .box.one-three.backg {
        width: calc(33.33% - 80px);
    }
    .int .content .box.one-four {
        width: calc(25% - 40px);
    }
    .int .content .box.one-four.backg {
        width: calc(25% - 80px);
    }
}
@media screen and (max-width: 1000px) {
    .int .line .content {
        width: calc(100% - 30px);
    }
    .int .line .content.padding-small {
        padding: 30px 0;
    }
    .int .line .content.padding-medium {
        padding: 60px 0;
    }
    .int .line .content.padding-big {
        padding: 90px 0;
    }
    .int .line .content .box {
        margin: 15px;
        padding: 0px 0;
    }
    .int .line .content .box.backg {
        padding: 20px;
    }
    .int .content .box.one-one {
        width: calc(100% - 30px);
        margin: 15px auto;
    }
    .int .content .box.one-one.backg {
        width: calc(100% - 70px);
    }
    .int .content .box.one-two {
        width: calc(50% - 30px);
    }
    .int .content .box.one-two.backg {
        width: calc(50% - 70px);
    }
    .int .content .box.one-three {
        width: calc(50% - 30px);
    }
    .int .content .box.two-three {
        width: calc(50% - 30px);
    }
    .int .content .box.one-three.backg {
        width: calc(50% - 70px);
    }
    .int .content .box.one-four {
        width: calc(25% - 30px);
    }
    .int .content .box.one-four.backg {
        width: calc(25% - 70px);
    }
}
@media screen and (max-width: 700px) {
    .int .line .content {
        width: calc(100% - 20px);
    }
    .int .line .content .box {
        margin: 10px;
        padding: 0px 0;
    }
    .int .line .content.padding-top {
        padding: 120px 0 60px 0;
    }
    .int .content .box.one-one {
        width: calc(100% - 20px);
        margin: 15px auto;
    }
    .int .content .box.one-one.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.one-two {
        width: calc(100% - 20px);
    }
    .int .content .box.one-two.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.one-three {
        width: calc(100% - 20px);
    }
    .int .content .box.two-three {
        width: calc(100% - 20px);
    }
    .int .content .box.one-three.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.one-four {
        width: calc(25% - 20px);
    }
    .int .content .box.one-four,backg {
        width: calc(25% - 60px);
    }
}


/* == line - content - box - call == */
.int .line .content .box .call {
    position: relative;
    display: block;
    font-size: 24px;
    margin: 0 0 30px 0;
}
.int .line .content .box.center .call {
    text-align: center;
}



/* == line - content - box - heading == */
.int .white h1,
.int .white h2,
.int .white h3,
.int .white h4,
.int .white h5 {
    color:#303030;
}
.int .line .content .box h1,
.int .line .content .box h2,
.int .line .content .box h3,
.int .line .content .box h4,
.int .line .content .box h5 {
    position: relative;
    display: block;
    width: 100%;
    float: left;
    margin: 0 0 10px 0;
    padding: 0;
    font-weight: 200;
    text-align: left;
}
.int .line .content .box h1.underline,
.int .line .content .box h1.underline,
.int .line .content .box h2.underline,
.int .line .content .box h2.underline,
.int .line .content .box h3.underline,
.int .line .content .box h3.underline,
.int .line .content .box h4.underline,
.int .line .content .box h4.underline,
.int .line .content .box h5.underline,
.int .line .content .box h5.underline {
    padding: 0 0 35px 0; 
}
.int .line .content .box h1.underline::before,
.int .line .content .box h1.underline::after,
.int .line .content .box h2.underline::before,
.int .line .content .box h2.underline::after,
.int .line .content .box h3.underline::before,
.int .line .content .box h3.underline::after,
.int .line .content .box h4.underline::before,
.int .line .content .box h4.underline::after,
.int .line .content .box h5.underline::before,
.int .line .content .box h5.underline::after {
    position: absolute;
    display: block;
    width: 230px;
    height: 2px;
    border-radius: 2px;
    left: 50%;
    bottom:17px;
    transform: translate(-50%, 0);
    background: #A78E52;
    content: '';
}
.int .line .content .box.right h1.underline::before,
.int .line .content .box.right h2.underline::before,
.int .line .content .box.right h3.underline::before,
.int .line .content .box.right h4.underline::before,
.int .line .content .box.right h5.underline::before {
    right: -30px;
    left: auto;
    transform: translate(0, 0);
}
.int .line .content .box.left h1.underline::before,
.int .line .content .box.left h2.underline::before,
.int .line .content .box.left h3.underline::before,
.int .line .content .box.left h4.underline::before,
.int .line .content .box.left h5.underline::before {
    left: -30px;
    transform: translate(0, 0);
}
.int .line .content .box h1.underline::after,
.int .line .content .box h2.underline::after,
.int .line .content .box h3.underline::after,
.int .line .content .box h4.underline::after,
.int .line .content .box h5.underline::after {
    width: 15px;
    height: 15px;
    bottom:11px;
    border-radius: 100%;
}
.int .line .content .box.right h1.underline::after,
.int .line .content .box.right h2.underline::after,
.int .line .content .box.right h3.underline::after,
.int .line .content .box.right h4.underline::after,
.int .line .content .box.right h5.underline::after {
    right:-17px;
    left: auto;
}
.int .line .content .box.left h1.underline::after,
.int .line .content .box.left h2.underline::after,
.int .line .content .box.left h3.underline::after,
.int .line .content .box.left h4.underline::after,
.int .line .content .box.left h5.underline::after {
    left:0px;
}

.int .line .content .box.left h1,
.int .line .content .box.left h2,
.int .line .content .box.left h3,
.int .line .content .box.left h4,
.int .line .content .box.left h5 {
    text-align: left;
}
.int .line .content .box.right h1,
.int .line .content .box.right h2,
.int .line .content .box.right h3,
.int .line .content .box.right h4,
.int .line .content .box.right h5 {
    text-align: right;
}
.int .line .content .box.center h1,
.int .line .content .box.center h2,
.int .line .content .box.center h3,
.int .line .content .box.center h4,
.int .line .content .box.center h5 {
    text-align: center;
}
.int .line .content .box h1.big,
.int .line .content .box h2.big,
.int .line .content .box h3.big,
.int .line .content .box h4.big,
.int .line .content .box h5.big {
    font-size: 100px;
    line-height: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}
.int .line .content .box h1.medium,
.int .line .content .box h2.medium,
.int .line .content .box h3.medium,
.int .line .content .box h4.medium,
.int .line .content .box h5.medium {
    font-size: 62px;
    line-height: 62px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}
.int .line .content .box h1.small,
.int .line .content .box h2.small,
.int .line .content .box h3.small,
.int .line .content .box h4.small,
.int .line .content .box h5.small {
    font-size: 32px;
    line-height: 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.int .line .content .box h1.tiny,
.int .line .content .box h2.tiny,
.int .line .content .box h3.tiny,
.int .line .content .box h4.tiny,
.int .line .content .box h5.tiny {
    font-size: 24px;
    line-height: 28px;
}
.int .line .content .box h1.big small,
.int .line .content .box h2.big small,
.int .line .content .box h3.big small,
.int .line .content .box h4.big small,
.int .line .content .box h5.big small,
.int .line .content .box h1.medium small,
.int .line .content .box h2.medium small,
.int .line .content .box h3.medium small,
.int .line .content .box h4.medium small,
.int .line .content .box h5.medium small,
.int .line .content .box h1.small small,
.int .line .content .box h2.small small,
.int .line .content .box h3.small small,
.int .line .content .box h4.small small,
.int .line .content .box h5.small small,
.int .line .content .box h1.tiny small,
.int .line .content .box h2.tiny small,
.int .line .content .box h3.tiny small,
.int .line .content .box h4.tiny small,
.int .line .content .box h5.tiny small {
    text-transform: lowercase;
    font-size: 18px;
    font-weight: 700;
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1350px) {
}
@media screen and (max-width: 700px) {

  .int .line .content .box h1.big,
  .int .line .content .box h2.big,
  .int .line .content .box h3.big,
  .int .line .content .box h4.big,
  .int .line .content .box h5.big {
      font-size: 42px;
      line-height: 42px;
  }
  .int .line .content .box h1.medium,
  .int .line .content .box h2.medium,
  .int .line .content .box h3.medium,
  .int .line .content .box h4.medium,
  .int .line .content .box h5.medium {
      font-size: 32px;
      line-height: 32px;
  }
  .int .line .content .box h1.small,
  .int .line .content .box h2.small,
  .int .line .content .box h3.small,
  .int .line .content .box h4.small,
  .int .line .content .box h5.small {
      font-size: 22px;
      line-height: 22px;
  }
  .int .line .content .box h1.tiny,
  .int .line .content .box h2.tiny,
  .int .line .content .box h3.tiny,
  .int .line .content .box h4.tiny,
  .int .line .content .box h5.tiny {
      font-size: 18px;
      line-height: 18px;
  }
  .int .right h1,
  .int .right h2,
  .int .right h3,
  .int .right h4,
  .int .right h5 {
      text-align: left!important;
  }
  .int .line .content .box.right h1.underline::before,
  .int .line .content .box.right h2.underline::before,
  .int .line .content .box.right h3.underline::before,
  .int .line .content .box.right h4.underline::before,
  .int .line .content .box.right h5.underline::before {
      right: -20px;
  }
}


/* == line - content - banner == */
.int .line .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    overflow: hidden;
    opacity:0;
    pointer-events:none;
    transition: all 0.5s ease-in-out;
}
.int .line .slide.on {
    opacity:1;
    pointer-events:auto;
}
.int .line .slide .image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events:none;
}
.int .line .slide .image.placement-bottom-right {
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    right: 0;
    top: auto;
    bottom:0;
    z-index: 1;
    overflow: hidden;
    pointer-events:none;
}
.int .line .slide img {
    position: absolute;
    display: block;
    height: 100%;
}
.int .line .slide img.half-right {
    left:50%;
}
.int .line .slide img.full-right {
    right:0%;
}
.int .line .slide img.center {
    left:50%;
    transform: translateX(-50%);
}
.int .line .slide .glow {
    position: absolute;
    width: 39%;
    left: 65%;
    top: 35%;
    z-index: 1;
    transform: translate(-50%,-50%);
    filter: blur(100px);
}
.int .line .slide .glow::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 93.8% 0 0 0;
    background-image: url(../image/banner-glow.svg);
    background-position: 50% 50%;
    background-size: 100% 100%;
    opacity: 0.06;
    content: '';
}
.int .line .slide .backg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.int .line .slide .backg.top {
    top: 0;
    bottom: auto;
}
.int .line .slide .backg.bottom {
    bottom: 0;
    top: auto;
}
.int .line .slide .backg.left {
    left: 0;
}
.int .line .slide .backg.right {
    right: 0;
}
.int .line .slide .backg.half-vertical {
    height: 50%;
}
.int .line .slide .backg.half-horizontal {
    width: 50%;
}
.int .line .slide .content.banner {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.int .line .slide .content.banner.bottom {
    top: auto;
    bottom: 10%;
    transform: translate(-50%, 0);
}
.int .line .slide .content.banner .box.one-one {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}
.int .line .slide .content.banner .box.image::before {
    display: none;
}
.int .line .slide .content.banner .image {
    margin: 0 auto 30px auto;
    position: relative;
    pointer-events:auto;
}
.int .line .slide .content.banner .image img {
    position: relative;
    display: block;
    width: 90%;
    margin: auto;
    max-height: 50%;
    top: auto;
    left: auto;
    transform: none;
    box-shadow: none;
}
.int .line .slide .content.banner .box .buttons {
    padding: 30px 0 0 0;
}
.int .line .slide .content.banner .button.mouse {
    position: absolute;
    top: calc(100% + 50px);
    left: 50%;
    width: 30px;
    height: 50px;
    transform: translate(-50%, -50%);
}
.int .line .slide .content.banner .button.mouse::before {
    position: absolute;
    display: block;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url(../image/ico-mouse.svg);
    background-position: 50% 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: '';
    z-index: 1;
}
.int .line .pages {
    position: absolute;
    bottom: 30px;
    left: 30px;
    height: 20px;
}
.int .line .pages .page {
    position: relative;
    float: left;
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
    cursor: pointer;
    z-index: 20;
}
.int .line .pages .page::before {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    content: '';
    transition: all 0.3s ease-in-out;
}
.int .line .pages .page.on::before {
    height: 20px;
    background: #A78E52;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
}


@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1450px) {
  .int .line .slide .content.banner {
        max-width: 80%;
    }
}
@media screen and (max-width: 1000px) {
    .int .line .slide .content.banner .box.txt.center .buttons .button.mouse {
        display: none;
    }
    .int .line .slide .content.banner .box.txt.center .buttons .button {
        display: block;
        margin: 0 auto 20px auto;
    }
    .int .line .slide .content.banner .box.txt.center .buttons .button {
        display: block;
        margin: 0 auto 20px auto;
        width: 80%;
        padding: 0;
        height: 34px;
        line-height: 40px;
        font-size: 16px;
        min-height: 40px;
    }
}
@media screen and (max-width: 700px) {
    .int .line .slide .content.banner {
        width: calc(100% - 40px);
        max-width: 100%;
        transform: translate(-50%, -50%);
    }
    .int .line .slide .content.banner::before, .int .line .slide .content.banner::after {
        height: 80px;
    }
    .int .line .slide .content.banner::before {
        top:calc(100% - 50px);
    }
    .int .line .slide .content.banner::after {
        bottom:calc(80% - 50px);
    }
    .int .line .slide .content.banner .image {

    }
    .int .line .slide .content.banner .image img {
        width: 200%;
        left: -20%;
    }
    .int .line .slide .content.banner .box.txt {

    }
    .int .line .slide .content.banner .box .buttons {
        padding:30px 0 0 0;
    }
    .int .line .slide .content.banner .box.txt.center .buttons .button {
        display: block;
        margin: 0 auto 20px auto;
        width: 80%;
        padding: 0;
        height: 31px;
        line-height: 35px;
        font-size: 16px;
        min-height: 35px;
    }
    .int .line .slide .content.banner .box.txt.left .buttons .button {
        padding: 0 80px 0 30px;
        width: auto!important;
        float: left;
    }
    .int .line .slide .content.banner .box.txt.right .buttons .button {
        padding: 0 30px 0 80px;
        width: auto!important;
        float: right;
    }
    .int .line .slide .content.banner .button.mouse {
        top: calc(100% - 100px);
    }
    .int .line .pages {
        position: absolute;
        bottom: 30px;
        left: 30px;
        height: 30px;
    }
}

/* == line - content - txt == */
.int .line .content .box.txt {
    font-size: 18px;
    color: #727272;
}
.int .line .content .box.txt p {
    margin: 20px 0 0 0;
}
.int .line .content .box.txt .block {
    position: relative;
    float: left;
    width: 100%;
}
.int .line .content .box.txt ul {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.int .line .content .box.txt ul li {
    position: relative;
    display: block;
    margin: 0;
    width: calc(100% - 20px);
    padding: 0 0 10px 20px;
}
.int .line .content .box.txt ul li::before {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    left: 0;
    top: 8px;
    border-radius:4px;
    background-color: #A78E52;
    content: '';
}
.int .line .content .box.txt ul li .ico {
    position: relative;
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
}
.int .line .content .box.txt ul li .ico::before {
   position: absolute;
   display: block;
   width: 100%;
   height: 100%;
   top: 50%;
   left: 50%;
   background-image: url(../image/ico-engine.svg);
   background-size:400% 100% ;
   transform: translate(-50%, -50%);
   content: '';
}
.int .line .content .box.txt ul li .ico.transmission::before {
   background-position: 0 0;
}
.int .line .content .box.txt ul li .ico.engine::before {
   background-position: 33.33% 0;
}
.int .line .content .box.txt ul li .ico.seats::before {
   background-position: 66.66% 0;
}
.int .line .content .box.txt ul li .ico.gas::before {
   background-position: 100% 0;
}
.int .line .content .box.txt .modification {
  position: relative;
  margin: 30px 30px 0 0;
  float: left;
}
.int .line .content .box.txt .modification::after {
  position: absolute;
  display: block;
  width: 156px;
  height: 4px;
  left: 0;
  bottom: -40px;
  background-image: url('../image/ico-car-dashed.svg');
  background-size: 100% 100%;
  background-position: 50% 50%;
  content: '';
}
.int .line .content .box.txt .modification .graph {
  position: absolute;
  display: block;
  width: 88px;
  height: 60px;
  top: 50%;
  left: calc(100% + 30px);
  transform: translate(0, -50%);
}
.int .line .content .box.txt .modification .graph::before {
  position: absolute;
  display: block;
  width: 100%;
  padding: 68% 0 0 0;
  top: 0;
  left: 0;
  background-image: url('../image/ico-car-graph.svg');
  background-size: 100% 100%;
  background-position: 50% 50%;
  content: '';
}
.int .line .content .box.txt .modification .row {
  position: relative;
  width: 100%;
  line-height: 40px;
}
.int .line .content .box.txt .modification .row span {
  position: relative;
  display: block;
  float: left;
  width: 160px;
  text-align: right;
  padding: 0 20px 0 0;
}
.int .line .content .box.txt .contact-box {
    position: relative;
    display: block;
    width:100%;
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 30px 0;
}
.int .line .content .box.txt .contact-box a {
    position: relative;
    display: block;
    float: left;
    color: #303030;
    width:100%;
    font-size: 18px;
    line-height: 30px;
    margin: 10px 0 10px 0;
}
.int .line .content .box.txt.right .contact-box {
    text-align: right;
}
.int .line .content .box.txt .contact-box .ico {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 3px;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
}
.int .line .content .box.txt .contact-box .ico::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-position: 50% 50%;
    background-size: 100% 100%;
    filter:invert(0.9);
    content:'';
}
.int .line .content .box.txt .contact-box .ico.map::after {
    background-image:url(../image/ico-contact-map.svg);
    top: 50%;
    left: 50%;
}
.int .line .content .box.txt .contact-box .ico.clock::after {
    background-image:url(../image/ico-contact-clock.svg);
    top: 50%;
    left: 50%;
}
.int .line .content .box.txt .contact-box .ico.phone::after {
    background-image:url(../image/ico-contact-phone.svg);
    top: 50%;
    left: 50%;
}
.int .line .content .box.txt .contact-box .ico.email::after {
    background-image:url(../image/ico-contact-mail.svg);
    top: 50%;
    left: 50%;
}
.int .line .content .box.txt .contact-box .title {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    float: left;
    font-size: 24px;
    padding: 0 0 0 40px;
    margin: 0 0 10px 0;
}
@media screen and (max-width: 1500px) {

}
@media screen and (max-width: 700px) {
    .int .line .content .box.txt {
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    .int .line .content .box.txt {
        font-size: 14px;
    }
}

/* == line - content - txt - button == */
.int .line .content .box.txt .buttons {
    position: relative;
    display: block;
    width: 100%;
    float: left;
}
.int .line .content .box.txt.center .buttons {
    text-align: center;
}
.int .line .content .box.txt .buttons .button {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 70px;
    min-height: 70px;
    color: #fff;
    background-color: #A78E52;
    border-radius: 3px;
    padding: 0 50px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    float: left;
}
.int .line .content .box.txt.left .buttons .button {
    padding: 0 150px 0 50px;
}
.int .line .content .box.txt.right .buttons .button {
    padding: 0 50px 0 150px;
}
.int .line.dark .content .box.txt .buttons .button:hover {
    color: #fff;
    background-color: #252525;
}
.int .line .content .box.txt.right .buttons .button {
    float: right;
}
.int .line .content .box.txt.center .buttons .button {
    float: none;
    display: inline-block;
}
.int .line .content .box.txt .buttons .button:hover {
    background-color: #303030;
}
@media screen and (max-width: 700px) {
    .int .line .content .box.txt p {
        margin: 20px 0 0 0;
    }
    .int .line .content .box.txt .buttons {
        text-align: center;
    }
    .int .line .content .box.txt .buttons .button {
        float: none;
        text-align: center;
        font-size: 16px;
        line-height: 40px;
        min-height: 40px;
    }
    .int .line .content .box.txt.left .buttons .button, .int .line .content .box.txt.right .buttons .button {
        padding: 0;
    }
}


/* == line - content - image == */
.int .line .content .box.image {
    transform-origin: 50% 50%;
}
.int .line .content .box.image img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    border-radius:3px;
    transform-origin: 50% 50%;
}
.int .line .content .box.image.expand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.int .line .content .box.image .markers {
    position: absolute;
    top: -25px;
    right: -25px;
    height: 50px;
    z-index: 10;
}
.int .line .content .box.image .markers div {
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    margin: 0 0 0 10px;
}
.int .line .content .box.image .promo {
    line-height: 50px;
    text-align: center;
    color: #303030;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background-image: url(../image/ico-promo.svg);
    background-size: 100% 100%;
    background-position: 50% 50%;
}
.int .line .content .box.image .featured {
    background-image: url(../image/ico-star.svg);
    background-size: 100% 100%;
    background-position: 50% 50%;
}

@media screen and (max-width: 1500px) {
    .int .line .content .box.image .markers {
        position: absolute;
        top: -20px;
        right: 20px;
        height: 40px;
    }
    .int .line .content .box.image .markers div {
        position: relative;
        width: 40px;
        height: 40px;
    }
    .int .line .content .box.image .promo {
        line-height: 40px;
        font-size: 18px;
    }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.image::before {
      position: relative;
      display: block;
      width: 100%;
      padding: 100% 0 0 0;
      content: '';
  }
  .int .line .content .box.image .markers {
        position: absolute;
        top: -15px;
        right: 15px;
        height: 30px;
    }
    .int .line .content .box.image .markers div {
        position: relative;
        width: 30px;
        height: 30px;
    }
    .int .line .content .box.image .promo {
        line-height: 30px;
        font-size: 14px;
    }

}

/* == line - content - image - slideshow == */
.int .line .content .box.image .slideshow {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
.int .line .content .box.image.expand .slideshow {
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    border-radius:3px;
    transform-origin: 50% 50%;
    box-shadow:2px 3px 8px rgba(0, 0, 0, 0.1);
}
.int .line .content .box.image .slideshow::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 100% 0 0 0;
    float: left;
    content: '';
}
.int .line .content .box.image .slideshow .slide {
    opacity:0;
    transition: all 0.3s ease-in-out;
    pointer-events:none;
}
.int .line .content .box.image .slideshow .slide.on {
    opacity:1;
    pointer-events:auto!important;
}
.int .line .content .box.image .slideshow img {
}
.int .line .content .box.image .slideshow img.on {
    opacity:1;
}
.int .line .content .box.image.left .slideshow {
    transform: translate(-50%, -60%) rotate(-3.7deg);
}
.int .line .content .box.image.right .slideshow {
    transform: translate(-50%, -60%) rotate(3.7deg);
}
.int .line .content .box.image.left .slideshow img {
    transform: translate(-50%, -50%);
}
.int .line .content .box.image.right .slideshow img {
    transform: translate(-50%, -50%);
}
.int .line .content .box.image .slideshow .navigation {
    position: absolute;
    display: block;
    width: 100px;
    height: 50px;
    bottom:20px;
    transform: none;
    z-index: 4;
}
.int .line .content .box.image.left .slideshow .navigation {
    right:20px;
}
.int .line .content .box.image.right .slideshow .navigation {
    left:20px;
}
.int .line .content .box.image .slideshow .navigation .click.on:last-of-type, .int .line .content .box.image .slideshow .navigation .click.on:first-of-type {
    opacity:0.5;
}
.int .line .content .box.image .slideshow .navigation .prev, .int .line .content .box.image .slideshow .navigation .next {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    float: left;
    cursor: pointer;
}
.int .line .content .box.image .slideshow .navigation .prev::before,
.int .line .content .box.image .slideshow .navigation .prev::after,
.int .line .content .box.image .slideshow .navigation .next::before,
.int .line .content .box.image .slideshow .navigation .next::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../image/ico-direction.svg');
    background-size: 100%;
    content: '';
}
.int .line .content .box.image .slideshow .navigation .prev::before,
.int .line .content .box.image .slideshow .navigation .prev::after {
    transform:rotate(180deg);
}
.int .line .content .box.image .slideshow .navigation .prev::before,
.int .line .content .box.image .slideshow .navigation .next::before {
    filter: invert(100%) blur(3px);
    opacity:0.1;
}
@media screen and (max-width: 700px) {
    .int .line .content .box.image::before {
      position: relative;
      display: block;
      width: 100%;
      padding: 100% 0 0 0;
      content: '';
  }
  
  .int .line .content .box.image .slideshow {
      width: 80%;
  }
  .int .line .content .box.image.left .slideshow {
      transform: translate(-50%, -50%) rotate(-3.7deg);
  }
  .int .line .content .box.image.right .slideshow {
      transform: translate(-50%, -50%) rotate(3.7deg);
  }
  .int .line .content .box.image .slideshow img {
      width: 100%;
      height: auto;
  }
}

/* == line - content - movie == */
.int .line .content .box.movie {
}
.int .line .content .box.movie::after {

}
.int .line .content .box.movie::before {
    padding: 56.3% 0 0 0!important;
}
.int .line .content .box.movie iframe {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius:3px;
    transform-origin: 50% 50%;
    z-index: 2;
}


/* == line - content - map == */
.int .line .content .box.map {
    transform-origin: 50% 50%;
}
.int .line .slide .content .box.map {
    position: absolute;
    height: calc(100% - 120px);
    right: 0;
}
.int .line .content .box.map::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 0% 0 0 0;
    content: '';
}
.int .line .content .box.map iframe {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    border-radius:3px;
    transform-origin: 50% 50%;
    box-shadow:2px 3px 8px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%);
}
.int .line .content .box.map.big iframe {
    width: 100%;
    height: 100%;
}
.int .line .content .box.map.left iframe {
    transform: translate(-50%, -60%) rotate(-3.7deg);
}
.int .line .content .box.map.right iframe {
    transform: translate(-50%, -60%) rotate(3.7deg);
}
@media screen and (max-width: 1600px) {
  .int .line .content .box.map.left iframe {
      transform: translate(-50%, -50%) rotate(-3.7deg);
  }
  .int .line .content .box.map.right iframe {
      transform: translate(-50%, -50%) rotate(3.7deg);
  }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.map::before {
      position: relative;
      display: block;
      width: 100%;
      padding: 100% 0 0 0;
      content: '';
  }
  .int .line .content .box.map.big iframe {
      width: 80%;
      height: 80%;
  }
  .int .line .content .box.map.left iframe {
      transform: translate(-50%, -50%) rotate(-3.7deg);
  }
  .int .line .content .box.map.right iframe {
      transform: translate(-50%, -50%) rotate(3.7deg);
  }
}


/* == list == */
.int .list {

}
.int .line .content.list .box h1,
.int .line .content.list .box h2,
.int .line .content.list .box h3,
.int .line .content.list .box h4,
.int .line .content.list .box h5 {
    position: relative;
    width: 100%;
    display: block;
    float: left;
    margin: 10px 0 0 0;
}

.int .list .box.backg {
    top: auto;
    height: auto;
    position: relative;
}
.int .list .box .icon {
    position: relative;
    display: block;
    width: 30%;
    float: left;
    margin: 50px 35%;
}
.int .list .box .icon::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.3;
    filter: blur(70px);
    border-radius: 100%;
    content:'';
    transition: all 0.2s ease-in-out;
    pointer-events:none;
    z-index: 1;
}
.int .list .box .icon::after {
    position: relative;
    display: block;
    width: 100%;
    padding: 100% 0 0 0;
    float: left;
    content: '';
}
.int .list .box .icon img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    object-fit: contain;
    z-index: 2;
}

.int .list .box .block {
    position: relative;
    display: block;
    width: 100%;
    float: left;
    text-align: justify;
    font-size: 18px;
}
.int .list .box a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}
.int .list .box .marker {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius:3px;
    bottom: 10px;
    right: 10px;
}
.int .list .box.blue .marker, .int .list .box.dark .marker, .int .list .box.white .marker {
    background: #E9865F;
}
.int .list .box.orange .marker, .int .list .box.light .marker {
    background: #1B171A;
}
.int .list .box .marker .ico {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.int .list .box.orange .marker .ico, .int .list .box.light .marker .ico {
    filter:invert(1) brightness(300%);
}
.int .list .box.txt .buttons .button {
    padding: 0!important;
}
.int .list .box.txt.full .buttons .button {
    padding: 0!important;
    width: calc(33% - 40px);
}
@media screen and (max-width: 1600px) {
    .int .list .box.txt.full .buttons .button {
        padding: 0!important;
        width: calc(33% - 30px);
    }
}
@media screen and (max-width: 1400px) {
    .int .list .section-title .arrow {
      width: 30px;
      height: 30px;
    }
    .int .list .section-title h3 {
      font-size: 18px;
      line-height: 30px;
    }
    .int .list .box.txt.full .buttons .button {
        padding: 0!important;
        width: calc(33% - 20px);
    }
}
@media screen and (max-width: 1000px) {
    .int .list .box.one-two, .int .list .box.one-two.backg {
        width: calc(50% - 70px);
    }
    .int .list .box.one-three, .int .list .box.one-three.backg {
        width: calc(33.33% - 70px);
    }
    .int .list .box.one-four, .int .list .box.one-four.backg {
        width: calc(50% - 70px);
    }
    .int .list .box.one-five, .int .list .box.one-five.backg {
        width: calc(50% - 70px);
    }
}
@media screen and (max-width: 700px) {
    .int .list .box {
    }
    .int .list .box.one-two, .int .list .box.one-two.backg {
        width: calc(50% - 60px);
    }
    .int .list .box.one-three, .int .list .box.one-three.backg {
        width: calc(50% - 60px);
    }
    .int .list .box.one-four, .int .list .box.one-four.backg {
        width: calc(100% - 60px);
    }
    .int .list .box.one-five, .int .list .box.one-five.backg {
        width: calc(100% - 60px);
    }
    .int .list .box .title {
      font-size: 14px;
    }
    .int .list .box .title .block {
      width:100%;
      margin: 0;
      font-size: 16px;
    }
    .int .list .box .title h3 {
      font-size: 18px;
    }
    .int .list .box .marker {
      width: 30px;
      height: 30px;
    }
    .int .list .box .icon {
        width: 50%;
        margin: 50px 25%;
    }
    .int .list .box.txt.full .buttons .button {
        padding: 0!important;
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .int .list .box .icon {
        width: 50%;
        margin: 30px 25%;
    }
    .int .list .box .title .block {
      font-size: 14px;
    }
}


/* == line - content - gallery == */
.int .line .content.gallery {
   
}
.int .line .content.gallery .box {
    padding: 0;
}
.int .line .content.gallery .box::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 100% 0 0 0;
    float: left;
    content: '';
}
.int .line .content.gallery .box::after {
    position: absolute;
    display: block;
    width: calc(100% - 20px);
    height: 20px;
    bottom: -5px;
    left: 10px;
    filter: blur(5px);
    background: #000;
    z-index: -2;
    opacity: 0.5;
    content: '';
}
.int .line .content.gallery .box a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.int .line .content.gallery .box a h4 {
    position: absolute;
    display: block;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.int .line .content.gallery .box:hover a h4 {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.int .line .content.gallery .box a h4 span {
    display: block;
    width: 100%;
    line-height: 50px;
    font-weight: 300;
}
.int .line .content.gallery .box a h4::before {
    position: absolute;
    display: block;
    width: 10%;
    height: 4px;
    top: 50%;
    left: 50%;
    background-color: #EC008C;
    border-radius:2px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    content: '';
}
.int .line .content.gallery .box:hover a h4::before {
    width: 50%;
}
.int .line .content.gallery .box img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 700px) {
    .int .line .content.gallery .box a h4 {
        width: 90%;
        font-size: 16px;
    }
}

/* == box - price-list == */
.int .line .content .box.price-list {
    padding: 0 0 20px 0;
    margin: 0 auto;
}
.int .line .content .box.price-list .block {
    display: block;
    width: 100%;
    font-size:16px;
    margin: 10px 0 0 0;
}
.int .line .content .box.price-list .block p {
    margin: 0;
}
.int .line .content .box.price-list .block.title {
    width: calc(100% - 50px);
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 24px;
}
.int .line .content .box.price-list .block.title::before {
    position: absolute;
    display: block;
    width: calc(100% - 50px);
    height: 1px;
    border-bottom:1px dashed #303030;
    top: 11px;
    left: 50px;
    transform: translateY(-50%);
    content: '';
    opacity: 0.5;
    z-index: -1;
}
.int .line .content .box.price-list .block.title span {
    display: block;
    float: left;
    padding: 0 50px 0 0;
    background: #fff;
}
.int .line .content .box.price-list .block.price {
    position: absolute;
    width: auto;
    top: 0;
    right: 0;
    background: #fff;
    padding: 0 15px 0 30px;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    float: right;
    margin: 0;
    line-height: 24px;
}
.int .line .content .box.price-list .block.price::after {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    content: 'zł';
}
.int .line .content .box.price-list .nav a {
    position: relative;
    display: block;
    float: left;
    border-radius: 2px;
    color: #fff;
    line-height: 30px;
    padding: 0 20px;
    margin: 0 15px 15px 0;
    background-color: #A78E52;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.price-list .nav a:hover {
    background-color: #303030;
}
@media screen and (max-width: 700px) {
    .int .line .content .box.price-list .block.title, .int .line .content .box.price-list .block.title p {
        font-size: 16px;
        line-height: 18px;
        text-align: left;
    }
    .int .line .content .box.price-list .block.title span {
        padding: 0 20px 0 0;
    }
    .int .line .content .box.price-list .block.price {
        padding: 0 15px 0 20px;
        font-size: 18px;
        line-height: 18px;
    }
    .int .line .content .box.price-list .block p {
        font-size: 14px;
        line-height: 16px;
        text-align: left;
    }
}
@media screen and (max-width: 500px) {
    .int .line .content .box.price-list .block.title, .int .line .content .box.price-list .block.title p {
        font-size: 14px;
        line-height: 16px;
    }
    .int .line .content .box.price-list .block.title span {
        padding: 0 10px 0 0;
    }
    .int .line .content .box.price-list .block.price {
        padding: 0 15px 0 10px;
        font-size: 16px;
        line-height: 16px;
    }
}


/* == form - button == */
.int .form-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    right: 50px;
    z-index: 28;
    background: #303030;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.int .form-button .ico {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}
.int .form-button .ico::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    content: '';
    background-image: url('../image/ico-button-mail.svg');
    background-size: 100% 100%;
    background-position: 50% 50%;
}
@media screen and (max-width: 1350px) {
    .int .form-button {
        position: fixed;
        width: 35px;
        height: 35px;
        bottom: 30px;
        right: 30px;
    }
}

/* == form - panel - close == */
.int .form-panel-close {
    position: fixed;
    display: none;
    width: 50px;
    height: 50px;
    top: 50px;
    right: 50px;
    z-index: 30;
    cursor: pointer;
}
.int .form-panel.on .form-panel-close {
    display: block;
}
.int .form-panel-close .ico {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    filter:invert(1);
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1350px) {
    .int .form-panel-close {
        width: 35px;
        height: 35px;
        top: 30px;
        right: 30px;
    }
}

/* == form - panel == */
.int .form-panel {
    position: fixed;
    width: 50%;
    height: 100%;
    top: 0;
    right: -50%;
    z-index: 30;
    background: #303030;
    transition: all 0.3s ease-in-out;
}
.int .form-panel.on {
    right: 0;
}
.int .form-panel .line .content .box {
    padding: 0;
    margin: 0;
}
.int .form-panel .line .content .box.form .row {
    position: relative;
    margin: 0 0 10px 0;
}
.int .form-panel .line .content .box.form .row::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    background: #A78E52;
    content: '';
}
.int .form-panel .line .content .box.form .row:nth-of-type(4)::after {
    display: none;
}
.int .form-panel .line .content .box.form .row input, .int .form-panel .line .content .box.form .row textarea {
    height: 16px;
    font-size: 16px;
    background: #303030;
    color: #fff;
    font-weight: 300;
}
.int .form-panel .line .content .box.form .row:first-of-type input, .int .form-panel .line .content .box.form .row:first-of-type textarea {
    border-radius: 3px 3px 0 0;
}
.int .form-panel .line .content .box.form .row.error input, .int .form-panel .line .content .box.form .row.error textarea {
    background: #303030;
}
.int .form-panel .line .content .box.form .row.error::after {
    display: block;
    position: absolute;
    top:20px;
    right: 20px;
    left: auto;
    width: 25px;
    height: 25px;
    border-radius:100%;
    background: #B12727;
    color: #fff;
    line-height: 25px;
    font-size: 15px;
    text-align: center;
    content: '!';
}
.int .form-panel .line .content .box.form .row textarea {
    min-height: 150px;
}
.int .form-panel .line .content .box.form .buttons {
    width: 50%;
    margin: 0;
    padding:0;
}
.int .form-panel .line .content .box.form .buttons .button {
    line-height: 50px;
    min-height: 50px;
}
.int .form-panel .content .box.form .buttons .button:hover {
    color: #303030;
    background: #fff!important;
}
.int .form-panel .line .content .box.form #enquiry-nr, .int .form-panel .line .content .box.form #availability-nr {
    position: absolute;
    background: #303030;
}
@media screen and (max-width: 1350px) {
    .int .form-panel .line .content .box.one-one {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .int .form-panel {
        width: 100%;
        right: -100%;
    }
    .int .form-panel .line .content .box.form .row input, .int .form-panel .line .content .box.form .row textarea {
        padding: 10px 20px;
        height: 14px;
        font-size: 14px;
    }
    .int .form-panel .line .content .box.form .buttons {
        width: 100%;
    }
}

/* == line - content - form == */
.int .line .content .box.form {
}
.int .line .content .box.form .col {
    width: calc(33.33% - 20px);
    margin: 0 40px 0 0;
    float: left;
}
.int .line .content .box.form .col + .col {
    width: calc(66.66% - 20px);
    margin: 0;
    float: left;
}
.int .line .content .box.form .row {
    width: 100%;
    margin: 0 0 40px 0;
    float: left;
}
.int .line .content .box.form .row.one-two {
    width: 50%;
}
.int .line .content .box.form .row.one-three {
    width: calc(33.33% - 26.7px);
}
.int .line .content .box.form .row.one-three:nth-of-type(2) {
    margin: 0 40px;
}
.int .line .content .box.form .row.cont {
    width: 33.33%
}
.int .line .content .box.form .row.cont input {
    border-radius: 5px 0 0 5px;
}
.int .line .content .box.form .row.cont + .row.cont input {
    border-radius: 0!important;
}
.int .line .content .box.form .row.cont + .row.cont + .row.cont input {
    border-radius: 0 5px 5px 0!important;
}
.int .line .content .box.form .row.zero {
    margin: 0;
    height: 0;
    overflow: hidden;
}
.int .line .content .box.form .row input, .int .line .content .box.form .row textarea {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    width: calc(100% - 40px);
    height: 20px;
    padding: 20px;
    border-radius: 3px;
    border: 0;
    background: #f3f3f3;
}
.int .line .content .box.form .row span {
    position: relative;
    display: block;
    width: calc(50% - 40px);
    padding: 0 20px;
    line-height: 60px;
    text-align: right;
    float: left;
}
.int .line .content .box.form .row input[type="date"] {
    width: calc(50% - 40px);
    float: left;
}
.int .line .content .box.form .row.error input, .int .line .content .box.form .row.error textarea {
    background: #DA4444;
    color: #fff;
}
.int .line .content .box.form .row textarea {
    min-width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-height: 220px;
}
.int .line .content .box.form #enquiry-nr, .int .line .content .box.form #availability-nr {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 5px;
    height: 5px;
    border: 0;
}
.int .line .content .box.form .success {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.int .line .content .box.form .success.on {
    max-height: 3000px;
    opacity: 1;
}
.int .line .content .box.form .buttons {
    position: relative;
    display: block;
    width: calc(33.33% - 40px);
    margin: 0 auto;
    overflow: hidden;
}
.int .line .content .box.form .buttons .button {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 60px;
    min-height: 60px;
    color: #fff;
    background: #A78E52;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    float: left;
}
.int .line.dark .content .box.form .buttons .button:hover {
    color: #303030;
    background-color: #fff;
}
.int .line .content .box.form.right .buttons .button {
    float: right;
}
.int .line .content .box.form.center .buttons {
    text-align: center;
}
.int .line .content .box.form.center .buttons .button {
    float: none;
    display: inline-block;
}
.int .line .content .box.form .buttons .button:hover {
    background-color: #303030;
}

@media screen and (max-width: 700px) {
  .int .line .content .box.form .row.one-three {
      width: 100%;
  }
  .int .line .content .box.form .row.one-three:nth-of-type(2) {
      margin: 0 0 40px 0;
  }
  .int .line .content .box.form .row.cont {
      width: 100%
  }
  .int .line .content .box.form .row.cont input {
      border-radius: 5px!important;
  }
  .int .line .content .box.form .row.cont + .row.cont input {
      border-radius: 5px!important;
  }
  .int .line .content .box.form .row.cont + .row.cont + .row.cont input {
      border-radius: 5px!important;
  }
  .int .line .content .box.form .col {
      width: 100%;
      margin: 0;
      float: left;
  }
  .int .line .content .box.form .col + .col {
      width: 100%;
      margin: 0;
      float: left;
  }
  .int .line .content .box.form .buttons {
      width: 100%;
  }
}

@media screen and (max-width: 450px) {
    .int .line .content .box.form .row span {
        width: calc(40% - 40px);
    }
    .int .line .content .box.form .row input[type="date"] {
        width: calc(60% - 40px);
    }
}

/* == question == */
.question {
    position: fixed;
    width: 600px;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    z-index: 30;
    transition: all 0.4s ease-in-out;
    pointer-events:none;
}
.question.on {
    top: 50%;
    pointer-events:auto;
}
.question .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 30;
}
.question .close::before, .question .close::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 6px;
    background: #303030;
    top: 50%;
    left: 50%;
    content: '';
}
.question .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.question .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 700px) {
    .question {
      width: 100%;
      height: 100%;
      border-radius: 0px;
  }
  .question .line {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
  }
}

/* == bottom == */
.bottoms {
  position: absolute;
  right: 45px;
  bottom: 45px;
}


.footer {
    position: relative;
    font-size: 18px;
    line-height: 50px;
}
.footer .cpr {
    float: left;
}
.footer .spacer {
    display: block;
    float: left;
    margin: 0 15px 0 40px;
}
.footer a {
    position: relative;
    float: left;
    display: block;
    color: #303030;
    padding: 0 25px;
    transition: all 0.2s ease-in-out;
}
.footer a:hover {
    color: #A78E52;
}
.footer a::before {
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: calc(50% + 5px);
    left: 100%;
    transform: translate(-50%, 0%);
    background-image: url(../image/ico-menu-spacer.svg);
    background-position: 50% 50%;
    background-size: 100% 100%;
    pointer-events: none;
    content: '';
}
.footer .contact {
    position: relative;
    float: right;
}
.footer .contact a .ico {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    float: left;
    margin: 0 10px 0 0;
}
.footer .contact a .ico::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-position: 50% 50%;
    background-size: 100% 100%;
    content: '';
}
.footer .contact a .ico.email::after {
    background-image: url(../image/ico-footer-mail.svg);
    top: 50%;
    left: 50%;
}
.footer .contact a .ico.phone::after {
    background-image: url(../image/ico-footer-phone.svg);
    top: 50%;
    left: 50%;
}
.footer .contact a::before {
    display: none;
}
@media screen and (max-width: 1350px) {
    .footer {
        text-align: center;
    }
    .footer .cpr {
        width: 100%;
        text-align: center;
        padding: 0 0 40px 0;
    }
    .footer .spacer {
        display: none;
    }
    .footer a {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .footer a::before {
        display: none;
    }
    .footer .contact {
        display: none;
    }
}
@media screen and (max-width: 700px) {
    .footer {
        text-align: center;
    }
    .footer .cpr {
        width: 100%;
        text-align: center;
        padding: 0 0 50px 0;
    }
    .footer .spacer {
        display: none;
    }
    .footer a {
        width: 100%;
        text-align: center;
        padding: 0 0 25px 0;
    }
}

/* == warning == */
.warning {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
.warning::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #303030;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    opacity: 0.8;
    z-index: 1;
    content: '';
}
.warning .inner {
    position: absolute;
    width: 500px;
    max-width: calc(80% - 60px);
    top: 50%;
    left: 50%;
    padding: 30px;
    background: #fff;
    color: #303030;
    font-size: 16px;
    transform: translate(-50%, -50%);
    text-align: justify;
    border-radius: 3px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.warning .inner h1 {
    position: relative;
    display: block;
    padding: 0 0 20px 0;
    margin: 0;
    color: #303030;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
}
.warning .inner h2 {
    position: relative;
    display: block;
    padding: 0 0 20px 0;
    margin: 0;
    color: #303030;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.warning .inner ul {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.warning .inner ul li {
    position: relative;
    display: block;
    margin: 0;
    width: calc(100% - 20px);
    padding: 0 0 10px 20px;
}
.warning .inner ul li::before {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    left: 0;
    top: 8px;
    border-radius:4px;
    background-color: #A78E52;
    content: '';
}
.warning .inner .buttons {
    position: relative;
    padding: 30px 0 0 0;
    overflow: hidden;
}
.warning .inner .button {
    position: relative;
    display: block;
    float: left;
    width: calc(50% - 15px);
    text-align: center;
    font-size: 16px;
    line-height: 50px;
    background-color: #A78E52;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.warning .inner .button:hover {
    background-color: #303030;
}
.warning .inner .button + .button {
    float: right;
}
.warning .inner .info {
    position: relative;
    width: 100%;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 18px;
    color: #BC3838;
}
@media screen and (max-width: 550px) {
    .warning .inner {
        max-width: calc(80% - 40px);
        padding: 20px;
        background: #fff;
        color: #303030;
        font-size: 14px;
    }
    .warning .inner h1 {
        padding: 0 0 20px 0;
        font-size: 16px;
    }
    .warning .inner h2 {
        padding: 0 0 20px 0;
        font-size: 14px;
    }
    .warning .inner .button {
        width: 100%;
        font-size: 16px;
        line-height: 35px;
        margin: 0 0 20px 0;
    }
    .warning .inner .button + .button {
        margin: 0;
    }
    .warning .inner .info {
        padding: 20px 0 0 0;
        font-size: 16px;
    }
}

/* == cookies == */
.freeprivacypolicy-com---nb {
  z-index: 29!important;
  
}
.freeprivacypolicy-com---nb-simple {
	bottom: 30px!important;
	right: 30px!important;
	width: 450px!important;
	overflow: hidden;
	border-radius: 4px;
}
.freeprivacypolicy-com---nb .cc-nb-main-container {
	padding: 30px!important;
}
.cc-nb-buttons-container button {
	width: 100%!important;
	padding: 0!important;
	line-height: 40px!important;
	color: #fff!important;
  background: #A78E52!important;
	border-radius: 2px!important;
	font-weight: 300!important;
	margin: 0 0 10px 0!important;
}
.cc-nb-buttons-container button:nth-of-type(1) {
	margin: 0 10px 10px 0!important;
}
.cc-nb-buttons-container button:nth-of-type(1), .cc-nb-buttons-container button:nth-of-type(2) {
	width: calc(50% - 5px)!important;
}
.cc-nb-buttons-container button:last-of-type {
	margin: 0!important;
	background: #303030!important;
}
.cc-nb-buttons-container button.cc-nb-changep {
	background: #303030!important;
}
.cc-cp-foot-button button {
	width: 100%!important;
	padding: 0 20px!important;
	line-height: 40px!important;
	color: #fff!important;
  background: #A78E52!important;
	border-radius: 2px!important;
	font-weight: 300!important;
	margin: 0 10px 0 0!important;
	float: right;
}
.freeprivacypolicy-com---pc-dialog {
	overflow: hidden;
	border-radius: 4px;
}
@media screen and (max-width: 700px) {
  .freeprivacypolicy-com---nb-simple {
    bottom: 0px!important;
    right: 0px!important;
    width: 100%!important;
    max-width: 100%!important;
    border-radius: 0px;
    height: auto!important;
  }
  .freeprivacypolicy-com---nb .cc-nb-main-container {
    padding: 20px!important;
    overflow: hidden;
  }
  .cc-nb-buttons-container button {
    width: 100%!important;
    padding: 0!important;
    line-height: 30px!important;
    margin: 0 0 10px 0!important;
    float: left;
  }
  .cc-nb-title {
    font-size: 16px!important;
  }
  .cc-nb-text {
    font-size: 14px!important;
  }
}