.int {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #343F33;
}

/* == fonts == */

.int .f-ab {
    font-family: "Anybody", sans-serif;
}

/* == | elements | == */
.int input, .int textarea {
    font-family: 'Open Sans', sans-serif;
}

/* == | anm | == */
.int .anm.off {
    bottom: -30px;
    opacity: 0;
    transition-delay: 0.5s;
    transition: all 0.5s ease-in-out;
}
.int .anm.on {
    bottom: 0;
    opacity: 1;
}

/* == | colors | == */
.int .dark {
  background-color: #343F33;
  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 .red {
  background-color: #C13340;
  background-image: url(../image/noise.png);
  background-repeat: repeat;
  background-position: 50% 50%;
}
.int .f-dark {
  color: #343F33;
}
.int .f-white {
  color: #fff;
}
.int .f-light {
  color: #f3f3f3;
}
.int .f-red {
  color: #C13340;
}

/* == | logo | == */
.int .logo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 262px;
    transform: translate(0, -50%);
    z-index: 30;
}
.int .logo::before {
    display: block;
    position: relative;
    width: 100%;
    padding: 15.5% 0 0 0;
    background-image: url(../image/logo.svg);
    background-size: 100% 100%;
    background-position: 50% 50%;
    content: '';
    z-index: 2;
    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: 1500px) {
    .int .logo {
        left: 0px;
        transform: translate(0, -50%);
    }
}
@media screen and (max-width: 1350px) {
    .int .logo {
        width: 220px;
        left: 30px;
    }
}
@media screen and (max-width: 700px) {

}
@media screen and (max-width: 500px) {
    .int .logo {
        left: 20px;
    }
}

/* == | menu | == */
.menu {
    position: relative;
    float: right;
    transition: all 0.3s ease-in-out;
}
.menu ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 20px 0 0;
    list-style: none;
    transition: all 0.3s ease-in-out;
}
.menu ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.menu ul li a {
    position: relative;
    display: block;
    padding: 0 20px;
    color: #343F33;
    font-size: 18px;
    line-height: 100px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}
.menu ul li a:hover {
    color: #C13340;
}
.menu ul li.parent::before {
    position: absolute;
    display: block;
    top: calc(50% + 18px);
    left:50%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #C13340 transparent;
    transform: translate(-50%, 0%) rotate(180deg);
    content: '';
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.menu ul li.parent:hover::before {
    top: calc(50% + 20px);
    opacity: 1;
}
.menu ul li.parent::after {
    position: absolute;
    display: block;
    top: calc(50% + 20px);
    left: 50%;
    width: calc(50% - 30px);
    height: 4px;
    border-radius: 4px;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-color: #C13340;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
    opacity: 0;
    content: '';
}
.menu ul li.parent:hover::after {
    top: calc(50% + 20px);
    width: calc(100% - 30px);
    opacity: 1;
}
.menu ul ul {
    position: absolute;
    display: flex;
    top: calc(100% - 20px);
    left: 50%;
    border-radius:3px;
    overflow: hidden;
    transform: translate(-50%, 0);
    background-color: #f3f3f3;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    z-index: 30;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events:none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.menu ul li:hover ul {
    top: calc(100% - 15px);
    opacity: 1;
    visibility: visible;
    pointer-events:auto
}
.menu ul ul li {
    float: none;
}
.menu ul ul li a {
    width: calc(100% - 60px);
    padding: 0 30px;
    font-size: 16px;
    line-height: 40px;
    color: #343F33;
    text-transform: lowercase;
}
.menu ul ul li:hover a {
    color: #343F33;
}
.menu ul ul li a::before {
    position: absolute;
    display: block;
    top: 50%;
    left:15px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #C13340 transparent;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.5);
    content: '';
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.menu ul ul li:hover a::before {
    transform: translate(-50%, -50%) rotate(90deg) scale(1);
    opacity: 1;
}
.menu .panel {
    position: absolute;
    display: flex;
    top: calc(100% - 20px);
    left: 50%;
    border-radius:3px;
    overflow: hidden;
    transform: translate(-50%, 0);
    z-index: 30;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events:none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.menu li:hover .panel {
    top: calc(100% - 15px);
    opacity: 1;
    visibility: visible;
    pointer-events:auto
}
.menu .panel .column {
    display: block;
    width: 270px;
    float: left;
    background-color: #E5E5E5;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    padding: 0 0 10px 0;
}
.menu .panel .column:nth-of-type(odd) {
    background-color: #f3f3f3;
}
.menu .panel .column .title {
    position: relative;
    width: calc(100% - 60px);
    padding: 0 30px;
    margin: 0 0 10px 0;
    color: #343F33;
    font-weight: 600;
    font-size: 16px;
    line-height: 70px;
    text-transform: uppercase;
}
.menu .panel .column .title .ico {
    position: absolute;
    display: block;
    top: 50%;
    right: 20px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
}
.menu .panel .column .title .ico::before {
    filter: none;
}
.menu .panel .column .underline {
    position: absolute;
    display: block;
    width: 100%;
    height: 20px;
    top: 100%;
    left: 30px;
    transform: translate(0, -50%);
    content: '';
    z-index: 8;
    pointer-events:none;
    opacity: 0.25;
}
.menu .panel .column .title .underline::before {
    position: absolute;
    display: block;
    left: 0;
    top: 2px;
    width: calc(100% - 60px);
    color: #343F33;
    font-size: 10px;
    line-height: 10px;
    overflow: hidden;
    content: '. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .';
}
.menu .panel .column .row a {
    width: calc(100% - 60px);
    padding: 0 30px;
    font-size: 16px;
    line-height: 40px;
    color: #343F33;
    text-transform: lowercase;
}
.menu .panel .column .row a::before {
    position: absolute;
    display: block;
    top: 50%;
    left:15px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #C13340 transparent;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.5);
    content: '';
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.menu .panel .column .row a:hover::before {
    transform: translate(-50%, -50%) rotate(90deg) scale(1);
    opacity: 1;
}
.menu .panel .column .row a b {
    font-weight: 600;
}
.menu .contact {
    display: none;
}

@media screen and (max-width: 1350px) {
    .menu ul li a {
        font-size: 18px;
        line-height: 80px;
    }
    .menu ul ul {
    }
    .menu ul ul li a {
        font-size: 16px;
    }
}
@media screen and (max-width: 1000px) {
    .menu {
        position: fixed;
        width: 50%;
        height: 100%;
        top: 0;
        left:100%;
        float: none;
        z-index: 29;
        pointer-events:none;
        transition: all 0.5s ease-in-out;
    }
    .menu.on {
        left:50%;
        pointer-events:auto;
    }
    .menu::before {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left:0;
        background-color: #343F33;
        background-image: url(../image/noise.png);
        background-repeat: repeat;
        z-index: 1;
        content: '';
        transition: all 0.5s ease-in-out;
    }
    .menu.on::before {
        left:0;
    }
    .menu .inner {
        position: absolute;
        width: calc(100% - 115px);
        height: 100%;
        right: 95px;
        z-index: 2;
    }
    .menu ul {
        position: absolute;
        top: 50%;
        margin: 0;
        transform: translateY(-50%);
        z-index: 2;
    }
    .menu ul li {
        float: none;
        width: 100%;
    }
    .menu ul li a {
        color:#fff;
        line-height: 50px;
    }
    .menu ul li:hover a {
        color:#fff;
    }
    .menu ul li.parent::before {
        width: 20px;
        height: 20px;
        line-height: 20px;
        top: 25px!important;
        left: calc(100% - 50px)!important;
        text-align: center;
        color: #fff;
        border-radius: 100%;
        border: 0;
        transform: translate(-50%, -50%);
        background-repeat: repeat;
        background-color: #C13340;
        opacity: 1;
        content: '+';
        transition: all 0.3s ease-in-out;
    }
    .menu ul li.parent.on::before {
        content: '-';
    }
    .menu ul li.parent::after {
        display: none;
    }
    .menu ul li ul {
        position: relative;
        width: 100%!important;
        top: auto!important;
        left: auto!important;
        transform: none!important;
        max-height: 0;
        background: none;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    .menu ul li.on ul {
        max-height: 1000px;
    }
    .menu ul li ul li a {
        width: calc(100% - 40px);
        padding: 0 20px;
    }
    .menu ul li ul li a::before {
        position: relative;
        display: block;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        float: left;
        margin: 0 10px 0 0;
        line-height: 40px;
        text-align: left;
        color: #fff;
        transform: none;
        opacity: 1;
        border:0;
        content: '-';
    }
    .menu .panel {
        position: relative;
        display: block;
        max-height: 0;
        top: auto!important;
        left: auto!important;
        border-radius:3px;
        overflow: hidden;
        transform: none;
        opacity: 0!important;
        visibility: hidden!important;
        pointer-events:none!important;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    .menu li.parent.on .panel {
        opacity: 1!important;
        visibility: visible!important;
        pointer-events:auto!important;
        max-height: 800px;
    }
    .menu li.parent .panel .column {
        float: right;
        background-color: transparent!important;
        background-image: none!important;
        padding: 0;
    }
    .menu li.parent .panel .column .ico {
        display: none;
    }
    .menu li.parent .panel .column .underline {
        display: none;
    }
    .menu li.parent .panel .column .title {
        line-height: 40px;
        padding: 0 20px;
        margin: 0;
        width: calc(100% - 40px);
        font-weight: 300;
        font-size: 16px;
        text-transform: none;
        color: #fff;
    }
    .menu li.parent .panel .column .title::before {
        display: block;
        float: left;
        margin: 0 10px 0 0;
        line-height: 40px;
        text-align: left;
        color: #fff;
        content: '-';
    }
    .menu li.parent .panel .row {
        display: none;
    }
    .menu .contact {
        display: block;
        position: absolute;
        width: calc(100% - 20px);
        right: 0;
        text-align: left;
        line-height: 35px;
        bottom: 30px;
        z-index: 2;
    }
    .menu .contact::before, .menu .contact::after {
        display: block;
        position: absolute;
        width: 30px;
        height: 4px;
        top: 50%;
        left: 0;
        border-radius: 4px;
        transform: translate(0, -50%);
        background: #fff;
        content: '';
    }
    .menu .contact::after {
        left: 40px;
    }
    .menu .contact .mail {
        position: relative;
        display: block;
        margin: 0 0 20px 0;
        font-size: 18px;
        color: #fff;
    }
    .menu .contact .phone {
        position: relative;
        display: block;
        margin: 0 0 0 0;
        font-size: 24px;
        color: #fff;
    }
    .menu .social {
        position: fixed;
        top: 0%;
        right: -95px;
        width: 95px;
        height: 100%;
        background-image: url(../image/noise.png);
        background-repeat: repeat;
        background-color: #C13340;
        transition: all 0.3s ease-in-out;
        z-index: 2;
        transition-delay: 0.25s;
    }
    .menu .social a {
        position: absolute;
        display: block;
        width: 35px;
        height: 35px;
        right: 30px;
        bottom: 30px;
        background: #fff;
        border-radius:3px;
        transition: all 0.2s ease-in-out;
        transition-delay: 0s;
        opacity: 0;
    }
    .menu.on .social a {
        opacity:1;
        transition-delay: 0.25s;
    }
    .menu .social a + a {
        bottom: 95px;
    }
    .menu.on .social {
        right: 0;
        transition-delay: 0s;
    }
}
@media screen and (max-width: 700px) {
    .menu {
        width: 100%;
        left: 100%;
    }
    .menu.on {
        left: 0%;
    }
    .menu .inner {
        position: absolute;
        width: calc(100% - 50px);
        height: 100%;
        right: 100px;
        z-index: 2;
    }
    .menu ul {
        width: calc(100% - 60px);
        top: calc(50% - 100px);
        left:30px;
    }
    .menu ul li a {
        text-align: right;
        padding: 0;
    }
    .menu ul li ul li a {
        text-align: right;
        padding: 0;
        width: 100%;
    }
    .menu ul li ul li a::before {
        float: right;
        margin: 0 0 0 10px;
        content: 'L';
        transform: rotateX(180deg)  rotateZ(180deg);
        text-transform: uppercase;
        opacity: 0.5;
    }
    .menu ul li.parent::before {
        left: calc(100% + 25px)!important;
    }
    .menu li.parent .panel .column .title {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .menu li.parent .panel .column .title a {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .menu li.parent .panel .column .title::before {
        float: right;
        margin: 0 0 0 10px;
        content: 'L';
        transform: rotateY(180deg);
        opacity: 0.5;
    }
    .menu .contact {
        display: block;
        position: absolute;
        width: 100%;
        right: 0;
        text-align: right;
        line-height: 35px;
        bottom: 20px;
        z-index: 2;
    }
    .menu .contact::before, .menu .contact::after {
        left: auto;
        right: 0;
    }
    .menu .contact::after {
        right: 40px;
        left: auto;
    }
    .menu .social {
        right: -75px;
        width: 75px;
    }
    .menu .social a {
        right: 20px;
        bottom: 20px;
    }
    .menu .social a + a {
        bottom: 75px;
    }
}

/* == | menu-button | == */
.int .menu-button {
    position: fixed;
    display: none;
    top: 50px;
    right:50px;
    width: 50px;
    height: 50px;
    z-index: 30;
    cursor: pointer;
}
.int .menu-button.off {
    display: none;
}
.int .menu-button::before, .int .menu-button::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 33%;
    left: 50%;
    border-radius: 3px;
    transform: translate(-50%, 0%);
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transition: all 0.3s ease-in-out;
    content: '';
}
.int .menu-button::before {
    top: 0;
}
.int .menu-button::after {
    top: 67%;
}
.int .menu-button.on::before, .int .menu-button.on::after {
    top: 50%!important;
    border-radius: 3px;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
}
.int .menu-button.on::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.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: 1000px) {
    .int .menu-button {
        display: block;
    }
    .int .menu-button {
        top: 22.5px;
        right:30px;
        width: 35px;
        height: 35px;
    }
}
@media screen and (max-width: 700px) {
    .int .menu-button {
        top: 22.5px;
        right:20px;
        width: 35px;
        height: 35px;
    }
}
@media screen and (max-width: 500px) {
    .int .menu-button {
        top: 17.5px;
        right:20px;
        width: 35px;
        height: 35px;
    }
}

/* == | quote-button | == */
.int .top .quote-button {
    position: relative;
    float: right;
    line-height: 35px;
    padding: 0 20px;
    margin: 33px 0 0 0;
    color: #fff;
    border-radius: 3px;
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transition: all 0.3s ease-in-out;
}
.int .top .quote-button .no {
    position: absolute;
    display: block;
    line-height: 25px;
    width: 25px;
    top: 0;
    left: 0;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background-color: #C13340;
    font-size: 14px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.int .top .quote-button .no.on {
    opacity: 1;
}
@media screen and (max-width: 1000px) {
    .int .top .quote-button {
        position: fixed;
        float: none;
        line-height: 35px;
        padding: 0 20px;
        margin:0;
        top: 20px;
        left: calc(50% + 40px);
        z-index: 30;
        opacity: 0;
        background-color: #fff;
        color: #343F33;
        pointer-events:none;
    }
    .int .top .quote-button.on {
        opacity: 1;
        pointer-events:auto;
    }
}
@media screen and (max-width: 700px) {
    .int .top .quote-button {
        top: auto;
        bottom: 125px;
        left: auto;
        right: 100px;
    }
}

/* == | ico | == */
.int .ico {
    border-radius: 3px;
}
/* == | ico - nav | == */
.int .ico.nav::before {
    background-image: url(../image/ico/ico-nav.svg);
    background-size: 600% 200%;
    filter: invert(100%) brightness(200%);
}
.int .ico.nav.zoom::before {
    background-position: 0% 0%;
}
.int .ico.nav.zoom-small::before {
    background-position: 0% 100%;
}
.int .ico.nav.arrow-right::before {
    background-position: 20% 0%;
}
.int .ico.nav.arrow-right-small::before {
    background-position: 20% 100%;
}
.int .ico.nav.arrow-left::before {
    background-position: 20% 0%;
    transform: translate(-50%, -50%) rotate(180deg);
}
.int .ico.nav.arrow-left-small::before {
    background-position: 20% 100%;
    transform: translate(-50%, -50%) rotate(180deg);
}
.int .ico.nav.dash::before {
    background-position: 40% 0%;
}
.int .ico.nav.dash-small::before {
    background-position: 40% 100%;
}
.int .ico.nav.plus::before {
    background-position: 60% 0%;
}
.int .ico.nav.plus-small::before {
    background-position: 60% 100%;
}
.int .ico.nav.close::before {
    background-position: 60% 0%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.int .ico.nav.close-small::before {
    background-position: 60% 100%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.int .ico.nav.swipe-right::before {
    background-position: 80% 0%;
}
.int .ico.nav.swipe-right-small::before {
    background-position: 80% 100%;
}
.int .ico.nav.swipe-left::before {
    background-position: 80% 0%;
    transform: translate(-50%, -50%) rotate(180deg);
}
.int .ico.nav.swipe-left-small::before {
    background-position: 80% 100%;
    transform: translate(-50%, -50%) rotate(180deg);
}
.int .ico.nav.refresh::before {
    background-position: 100% 0%;
}
.int .ico.nav.refresh-small::before {
    background-position: 100% 100%;
}

/* == | ico - button | == */
.int .ico.links::before {
    background-size: 500% 200%;
    background-image: url(../image/ico/ico-button.svg);
}
.int .ico.links.list::before {
    background-position: 0% 0%;
}
.int .ico.links.list.fat::before {
    background-position: 0% 100%;
}
.int .ico.links.file::before {
    background-position: 25% 0%;
}
.int .ico.links.file.fat::before {
    background-position: 25% 100%;
}
.int .ico.links.movie::before {
    background-position: 50% 0%;
}
.int .ico.links.movie.fat::before {
    background-position: 50% 100%;
}
.int .ico.links.infos::before {
    background-position: 75% 0%;
}
.int .ico.links.infos.fat::before {
    background-position: 75% 100%;
}
.int .ico.links.catalog::before {
    background-position: 0% 0%;
}
.int .ico.links.catalog.fat::before {
    background-position: 0% 100%;
}

/* == | ico - installation | == */
.int .ico.installation::before {
    background-size: 100% 100%;
}
.int .ico.installation.concrete::before {
    background-image: url(../image/ico/installation/ico-installation-concrete.svg);
}
.int .ico.installation.screw::before {
    background-image: url(../image/ico/installation/ico-installation-screw.svg);
}
.int .ico.installation.socket-metal::before {
    background-image: url(../image/ico/installation/ico-installation-socket-metal.svg);
}
.int .ico.installation.socket-plastic::before {
    background-image: url(../image/ico/installation/ico-installation-socket-plastic.svg);
}

/* == | ico - feature | == */
.int .ico.feature::before {
    background-size: 100% 100%;
}
.int .ico.feature.certificate::before {
    background-image: url(../image/ico/features/ico-feature-certificate.svg);
}
.int .ico.feature.collision::before {
    background-image: url(../image/ico/features/ico-feature-collision.svg);
}
.int .ico.feature.eco::before {
    background-image: url(../image/ico/features/ico-feature-eco.svg);
}
.int .ico.feature.foundation::before {
    background-image: url(../image/ico/features/ico-feature-foundation.svg);
}
.int .ico.feature.installation::before {
    background-image: url(../image/ico/features/ico-feature-installation.svg);
}
.int .ico.feature.longevity::before {
    background-image: url(../image/ico/features/ico-feature-longevity.svg);
}
.int .ico.feature.protection::before {
    background-image: url(../image/ico/features/ico-feature-protection.svg);
}
.int .ico.feature.size::before {
    background-image: url(../image/ico/features/ico-feature-size.svg);
}
.int .ico.feature.speed::before {
    background-image: url(../image/ico/features/ico-feature-speed.svg);
}
.int .ico.feature.weather::before {
    background-image: url(../image/ico/features/ico-feature-weather.svg);
}
.int .ico.feature.weight::before {
    background-image: url(../image/ico/features/ico-feature-weight.svg);
}

/* == | ico - category | == */
.int .ico.cat::before {
    width: 70%;
    background-size: 100% 100%;
}
.int .ico.cat.quickflex::before {
    background-image: url(../image/ico/products/ico-cat-bollard-quickflex.svg);
}
.int .ico.cat.ret::before {
    background-image: url(../image/ico/products/ico-cat-bollard-ret.svg);
}
.int .ico.cat.x-last::before {
    background-image: url(../image/ico/products/ico-cat-bollard-x-last.svg);
}
.int .ico.cat.antiterrorist::before {
    background-image: url(../image/ico/products/ico-cat-bollard-x.svg);
}
.int .ico.cat.curb::before {
    background-image: url(../image/ico/products/ico-cat-curb.svg);
}
.int .ico.cat.flanged-pipe::before {
    background-image: url(../image/ico/products/ico-cat-flanged-pipe.svg);
}
.int .ico.cat.flow-meter::before {
    background-image: url(../image/ico/products/ico-cat-flow-meter.svg);
}
.int .ico.cat.pipe-clamp::before {
    background-image: url(../image/ico/products/ico-cat-pipe-clamp.svg);
}
.int .ico.cat.post::before {
    background-image: url(../image/ico/products/ico-cat-post.svg);
}
.int .ico.cat.pylon::before {
    background-image: url(../image/ico/products/ico-cat-pylon.svg);
}
.int .ico.cat.separator::before {
    background-image: url(../image/ico/products/ico-cat-separator.svg);
}
.int .ico.cat.socket-metal::before {
    background-image: url(../image/ico/products/ico-cat-socket-metal.svg);
}
.int .ico.cat.socket-plastic::before {
    background-image: url(../image/ico/products/ico-cat-socket-plastic.svg);
}
.int .ico.cat.well::before {
    background-image: url(../image/ico/products/ico-cat-well.svg);
}
.int .ico.cat.touch-plate::before {
    background-image: url(../image/ico/products/ico-cat-touch-plate.svg);
}
.int .ico.cat.fluo::before {
    background-image: url(../image/ico/products/ico-cat-fluo.svg);
}

/* == | lines | == */
.int .line {
    border-radius: 1px;
}

/* == | lines - bar | == */
.int .line .bar.bf::before, .int .line .bar.af::after {
    position: absolute;
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(../image/bar-mrk.svg);
    background-size: 100% 100%;
    background-position: 0 0;
    content: '';
}
.int .line .bar.white.bf::before, .int .line .bar.white.af::after {
    filter: invert(100) brightness(200%);
}
.int .line .bar::before {
    top: -1px;
}
.int .line .bar::after {
    bottom: -1px;
    right: 0;
    transform: rotate(90deg);
}
@media screen and (max-width: 1000px) {
    .int .line .bar.bf::before, .int .line .bar.af::after {
        width: 15px;
        height: 15px;
    }
}

/* == | lines - content - box - info | == */
.int .content .box.info {
    margin: 15px;
    border-radius: 10px;
}
.int .content .box.info.one-one {
    width: calc(100% - 30px);
    margin: 15px auto;
}
.int .content .box.one-one.backg {
    width: calc(100% - 80px);
}
.int .content .box.info.one-two {
    width: calc(50% - 30px);
}
.int .content .box.info.one-two.backg {
    width: calc(50% - 80px);
}
.int .content .box.info.one-three {
    width: calc(33.33% - 30px);
}
.int .content .box.info.one-three.backg {
    width: calc(33.33% - 80px);
}
.int .content .box.info.two-three {
    width: calc(66.66% - 30px);
}
.int .content .box.info.one-four {
    width: calc(25% - 30px);
}
.int .content .box.info.one-four.backg {
    width: calc(25% - 80px);
}
.int .content .box.info.one-five {
    width: calc(20% - 30px);
}
.int .content .box.info.one-five.backg {
    width: calc(20% - 80px);
}
.int .content .box.info.two-five {
    width: calc(40% - 30px);
}
.int .content .box.info.two-five.backg {
    width: calc(40% - 80px);
}
.int .content .box.info.three-five {
    width: calc(60% - 30px);
}
.int .content .box.info.three-five.backg {
    width: calc(60% - 80px);
}
.int .content .box.info .ico {
    position: relative;
    width: 80px;
    height: 80px;
    float: left;
    clear: both;
    margin: 0 0 20px 0;
}
.int .content .box.info .check {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 30px;
    right: 30px;
    background-image: url(../image/ico/ico-check-mark.svg);
    background-size: 100% 100%;
    background-position: 0 0;
}
.int .content .box.info .nav {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    margin: 0;
}
.int .content .box.info a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}
@media screen and (max-width: 1600px) {

}
@media screen and (max-width: 1400px) {
    
}
@media screen and (max-width: 1000px) {
    .int .content .box.info {
        margin: 10px;
    }
    .int .content .box.info.one-one {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .int .content .box.one-one.backg {
        width: calc(100% - 80px);
    }
    .int .content .box.info.one-two {
        width: calc(50% - 20px);
    }
    .int .content .box.info.one-two.backg {
        width: calc(50% - 80px);
    }
    .int .content .box.info.one-three {
        width: calc(50% - 20px);
    }
    .int .content .box.info.one-three.backg {
        width: calc(50% - 80px);
    }
    .int .content .box.info.two-three {
        width: calc(66.66% - 20px);
    }
    .int .content .box.info.one-four {
        width: calc(25% - 20px);
    }
    .int .content .box.info.one-four.backg {
        width: calc(25% - 80px);
    }
    .int .content .box.info.one-five {
        width: calc(20% - 20px);
    }
    .int .content .box.info.one-five.backg {
        width: calc(20% - 80px);
    }
    .int .content .box.info.two-five {
        width: calc(40% - 20px);
    }
    .int .content .box.info.two-five.backg {
        width: calc(40% - 80px);
    }
    .int .content .box.info.three-five {
        width: calc(60% - 20px);
    }
    .int .content .box.info.three-five.backg {
        width: calc(60% - 80px);
    }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.info {
        margin: 10px;
    }
    .int .content .box.info.one-one {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .int .content .box.info.one-one.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.info.one-two {
        width: calc(100% - 20px);
    }
    .int .content .box.info.one-two.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.info.one-three {
        width: calc(100% - 20px);
    }
    .int .content .box.info.two-three {
        width: calc(100% - 20px);
    }
    .int .content .box.info.one-three.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.info.one-four {
        width: calc(25% - 20px);
    }
    .int .content .box.info.one-four.backg {
        width: calc(25% - 60px);
    }
    .int .content .box.info.one-five {
        width: calc(20% - 20px);
    }
    .int .content .box.info.one-five.backg {
        width: calc(20% - 60px);
    }
    .int .content .box.info.two-five {
        width: calc(40% - 20px);
    }
    .int .content .box.info.two-five.backg {
        width: calc(40% - 60px);
    }
    .int .content .box.info.three-five {
        width: calc(60% - 20px);
    }
    .int .content .box.info.three-five.backg {
        width: calc(60% - 60px);
    }
}
@media screen and (max-width: 700px) {
    
}

/* == | lines - content - box - heading | == */
.int .line .content .box h1.underline,
.int .line .content .box h2.underline,
.int .line .content .box h3.underline,
.int .line .content .box h4.underline,
.int .line .content .box h5.underline,
.int .line .content .box .heading.underline {
    padding: 0 0 40px 0; 
}
.int .line .content .box h1.underline::before,
.int .line .content .box h2.underline::before,
.int .line .content .box h3.underline::before,
.int .line .content .box h4.underline::before,
.int .line .content .box h5.underline::before,
.int .line .content .box .heading.underline::before {
    position: absolute;
    display: block;
    width: 30px; 
    height: 6px;
    border-radius: 3px;
    bottom: 15px;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #C13340;
    content: '';
}
.int .line .content .box.center h1.underline::before,
.int .line .content .box.center h2.underline::before,
.int .line .content .box.center h3.underline::before,
.int .line .content .box.center h4.underline::before,
.int .line .content .box.center h5.underline::before,
.int .line .content .box.center .heading.underline::before {
    bottom: 7px;
}
.int .line.dark .content .box h1.underline::before,
.int .line.dark .content .box h2.underline::before,
.int .line.dark .content .box h3.underline::before,
.int .line.dark .content .box h4.underline::before,
.int .line.dark .content .box h5.underline::before,
.int .line.dark .content .box .heading.underline::before {
    background: #C13340;
}
.int .line .content .box.center h1.underline::before,
.int .line .content .box.center h2.underline::before,
.int .line .content .box.center h3.underline::before,
.int .line .content .box.center h4.underline::before,
.int .line .content .box.center h5.underline::before,
.int .line .content .box.center .heading.underline::before {
    left: calc(50% - 10px);
}
.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,
.int .line .content .box.right .heading.underline::before {
    left: calc(100% - 10px);
    transform: translate(-50%, -50%) rotate(45deg);
}
.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,
.int .line .content .box.left .heading.underline::before {
    left: 12px;
}
.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,
.int .line .content .box .heading.underline::after {
    position: absolute;
    display: block;
    width: 30px; 
    height: 6px;
    border-radius: 3px;
    bottom: 15px;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #C13340;
    content: '';
}
.int .line .content .box.center h1.underline::after,
.int .line .content .box.center h2.underline::after,
.int .line .content .box.center h3.underline::after,
.int .line .content .box.center h4.underline::after,
.int .line .content .box.center h5.underline::after,
.int .line .content .box.center .heading.underline::after {
    left: calc(50% + 10px);
    bottom: 7px;
}
.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
.int .line .content .box.right .heading.underline::after {
    left: calc(100% - 32px);
    transform: translate(-50%, -50%) rotate(45deg);
}
.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,
.int .line .content .box.left .heading.underline::after {
    left:32px;
}
@media screen and (max-width: 1600px) {
    
}
@media screen and (max-width: 1350px) {
    .int .line .content .box h1.underline,
    .int .line .content .box h2.underline,
    .int .line .content .box h3.underline,
    .int .line .content .box h4.underline,
    .int .line .content .box h5.underline,
    .int .line .content .box .heading.underline {
        padding: 0 0 30px 0; 
    }
    .int .line .content .box h1.underline::before,
    .int .line .content .box h2.underline::before,
    .int .line .content .box h3.underline::before,
    .int .line .content .box h4.underline::before,
    .int .line .content .box h5.underline::before,
    .int .line .content .box .heading.underline::before,
    .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,
    .int .line .content .box .heading.underline::after {
        bottom: 5px;
    }
}
@media screen and (max-width: 700px) {

  .int .line .content .box h1.underline,
    .int .line .content .box h1.underline,
    .int .line .content .box h2.underline,
    .int .line .content .box h3.underline,
    .int .line .content .box h4.underline,
    .int .line .content .box h5.underline,
    .int .line .content .box .heading.underline {
        padding: 0 0 20px 0; 
    }
  .int .line .content .box h1.underline::before,
  .int .line .content .box h2.underline::before,
  .int .line .content .box h3.underline::before,
  .int .line .content .box h4.underline::before,
  .int .line .content .box h5.underline::before,
  .int .line .content .box .heading.underline::before,
  .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,
  .int .line .content .box .heading.underline::after {
      width: 20px;
      bottom: 0;
      transform: translate(-50%, -50%) rotate(-45deg)!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,
  .int .line .content .box.right .heading.underline::before {
      left: 10px;
  }
  .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,
  .int .line .content .box.right .heading.underline::after {
      left: 30px;
  }
  .int .line .content .box.center h1.underline::before,
  .int .line .content .box.center h2.underline::before,
  .int .line .content .box.center h3.underline::before,
  .int .line .content .box.center h4.underline::before,
  .int .line .content .box.center h5.underline::before,
  .int .line .content .box.center .heading.underline::before {
      bottom: -3px;
  }
  .int .line .content .box.center h1.underline::after,
  .int .line .content .box.center h2.underline::after,
  .int .line .content .box.center h3.underline::after,
  .int .line .content .box.center h4.underline::after,
  .int .line .content .box.center h5.underline::after,
  .int .line .content .box.center .heading.underline::after {
      bottom: -3px;
  }
}
@media screen and (max-width: 500px) {
  .int .right h1,
  .int .right h2,
  .int .right h3,
  .int .right h4,
  .int .right h5,
  .int .right .heading {
      text-align: left!important;
  }
}

/* == | lines - content - box - heading - ico | == */
.int .line .content .box h1 .ico,
.int .line .content .box h2 .ico,
.int .line .content .box h3 .ico,
.int .line .content .box h4 .ico,
.int .line .content .box h5 .ico,
.int .line .content .box .heading .ico {
    position: relative;
    width: 40px;
    height: 40px;
    float: left;
    margin: 0 20px 0 0;
}
.int .line .content .box h1 .ico::before,
.int .line .content .box h2 .ico::before,
.int .line .content .box h3 .ico::before,
.int .line .content .box h4 .ico::before,
.int .line .content .box h5 .ico::before,
.int .line .content .box .heading .ico::before {
    width: 70%;
}

/* == | lines - content - box - txt - block | == */
.int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 3px;
}
.int .line .content .box.txt .block.white p, .int .line .content .box.txt .block.light p, .int .line .content .box.txt .block.red p, .int .line .content .box.txt .block.dark p  {
    margin: 0;
}
.int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 3px;
    content: '';
    z-index: -1;
}
.int .line .content .box.txt.left .block::before {
    top: 50%;
    left: 5px;
}
.int .line .content .box.txt.right .block::before {
    top: 50%;
    left: calc(100% - 5px);
}
.int .line .content .box.txt.center .block::before {
    top: 5px;
    left: 50%;
}
.int .line .content .box.txt .block.white::before  {
    background-color: #fff;
}
.int .line .content .box.txt .block.light::before  {
    background-color: #f3f3f3;
}
.int .line .content .box.txt .block.red::before  {
    background-color: #C13340;
}
.int .line .content .box.txt .block.dark::before  {
    background-color: #303030;
}
.int .line .content .box.txt.center .block ul.horizontal {
    text-align: center;
}

.int .line .content .box.txt .block ul.horizontal li {
    display: inline-block;
    width: auto;
    float: left;
    margin: 0 5px;
}
.int .line .content .box.txt.center .block ul.horizontal li {
    float: none;
}
.int .line .content .box.txt .block.selectable  {
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 3px;
    cursor: pointer;
}
.int .line .content .box.txt .block.selectable.on  {
    background-color: #C13340;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    color: #fff;
}
.int .line .content .box.txt .block.selectable.on p  {
    margin: 0;
}
.int .line .content .box.txt .block.selectable.on::before  {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 3px;
    content: '';
    z-index: -1;
    background-color: #C13340;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
}
.int .line .content .box.txt.left .block.selectable.on::before  {
    left: calc(100% - 5px);
}
.int .line .content .box.txt.right .block.selectable.on::before  {
    left: 5px;
}
@media screen and (max-width: 1400px) {
    .int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
        width: calc(100% - 30px);
        padding: 15px;
    }
    .int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        transform: translate(-50%, -50%) rotate(45deg);
        border-radius: 3px;
        content: '';
        z-index: -1;
    }
    .int .line .content .box.txt.left .block::before {
        top: 50%;
        left: 5px;
    }
    .int .line .content .box.txt.right .block::before {
        top: 50%;
        left: calc(100% - 5px);
    }
    .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 1400px) {
    .int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
        width: calc(100% - 30px);
        padding: 15px;
    }
    .int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        transform: translate(-50%, -50%) rotate(45deg);
        border-radius: 3px;
        content: '';
        z-index: -1;
    }
    .int .line .content .box.txt.left .block::before {
        top: 50%;
        left: 5px;
    }
    .int .line .content .box.txt.right .block::before {
        top: 50%;
        left: calc(100% - 5px);
    }
    .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 1000px) {
    .int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
        width: calc(100% - 20px);
        padding: 10px;
    }
    .int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
        width: 20px;
        height: 20px;
    }
    .int .line .content .box.txt.left .block::before {
        left: 5px;
    }
    .int .line .content .box.txt.right .block::before {
        left: calc(100% - 5px);
    }
    .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.txt.left .block::before, .int .line .content .box.txt.right .block::before, .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 600px) {
}

/* == | lines - content - box - txt - icon | == */
.int .line .content .box.txt .icon  {
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    clear: both;
}
.int .line .content .box.txt .icon .ico  {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 3px;
}


/* == | lines - content - box - txt - buttons | == */
.int .line .content .box .buttons .button {
    font-size: 18px;
    line-height: 50px;
    min-height: 50px;
    padding: 0 70px 0 20px;
    border-radius:3px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    float: left;
}
.int .line .content .box .buttons .button + .button {
    margin: 0 0 0 20px;
}
.int .line .content .box .buttons .button::before {
    position: absolute;
    display: block;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background-image: url(../image/ico-nav.svg);
    background-position: 66% 0%;
    background-size: 400% 200%;
    filter: invert(100%) brightness(200%);
    content: '';
}
.int .line .content .box.left .buttons .button::before, .int .line .content .box.right .buttons .button::before {
    right: 15px;
}
.int .line .content .box.center .buttons .button::before {
    display: none;
}
.int .line .content .box .buttons .button.ico-list::before {
    background-image: url(../image/ico/ico-buttons.svg);
    background-position: 0% 100%;
    background-size: 500% 200%;
    filter: none;
}
.int .line .content .box .buttons .button.ico-file::before {
    background-image: url(../image/ico/ico-buttons.svg);
    background-position: 25% 100%;
    background-size: 500% 200%;
    filter: none;
}
.int .line .content .box .buttons .button.ico-movie::before {
    background-image: url(../image/ico/ico-buttons.svg);
    background-position: 50% 100%;
    background-size: 500% 200%;
    filter: none;
}
.int .line .content .box .buttons .button.ico-infos::before {
    background-image: url(../image/ico/ico-buttons.svg);
    background-position: 75% 100%;
    background-size: 500% 200%;
    filter: none;
}
.int .line .content .box .buttons .button.ico-catalog::before {
    background-image: url(../image/ico/ico-buttons.svg);
    background-position: 100% 100%;
    background-size: 500% 200%;
    filter: none;
}
@media screen and (max-width: 1400px) {
    .int .line .content .box .buttons .button {
        font-size: 16px;
        line-height: 40px;
        min-height: 40px;
    }
}
@media screen and (max-width: 700px) {
    .int .line .content .box .buttons .button {
        font-size: 16px;
        line-height: 35px;
        min-height: 35px;
    }
    .int .line .content .box .buttons .button + .button {
        margin: 20px 0 0 0;
        clear: both;
    }
    .int .line .content .box .buttons .button::before {
        width: 20px;
        height: 20px;
    }
}

/* == | lines - slide | == */
.int .line .slide {
    overflow: hidden;
}
.int .line .slide img.parallax {
    height: 120%;
}
.int .line .slide.transparent img {
    opacity: 0.1;
    filter: grayscale(100%);
}
.int .line .slide.transparent::before {
    position: absolute;
    display: block;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/background-cover-dark.png);
    background-position: 0 100%;
    background-repeat: repeat-x;
    content: '';
    z-index: 2;
}
.int .line .slide.transparent::after {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/noise.png);
    background-position: 0 0;
    background-repeat: repeat;
    content: '';
    z-index: 2;
}
.int .line .slide .arrow {
    position: absolute;
    top: 90%;
    left: 50%;
    width: 85px;
    height: 35px;
    border-radius: 3px;
    transform: translate(-50%, -50%);
    background-color: #C13340;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    z-index: 3;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}
.int .line .slide .arrow:hover {
    width: 85px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.int .line .slide .arrow::before {
    position: absolute;
    display: block;
    top: 25%;
    left: 50%;
    width: 70px;
    height: 70px;
    background-image: url(../image/ico-nav.svg);
    background-size: 600% 200%;
    background-position: 60% 0%;
    transform: translate(-50%, -50%) rotate(90deg);
    filter: invert(100%) brightness(200%);
    content: '';
    transition: all 0.2s ease-in-out;
    pointer-events:none;
}
.int .line .slide .arrow:hover::before {
    top: 75%;
}
@media screen and (max-width: 1000px) {
    .int .line .slide .arrow {
        width: 50px;
        height: 25px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    .int .line .slide .arrow:hover {
        height: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .int .line .slide .arrow::before {
        width: 40px;
        height: 40px;
    }
    .int .line .slide .arrow:hover::before {
        top: 80%;
    }
}


/* == | lines - content - banner | == */
.int .line .content.banner {
}
.int .line.full-height .content.banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
    .int .line.full-height .content.banner {
        top: 40%;
    }
}

/* == | lines - content - box - txt - icons | == */
.int .line .content .box.txt .icons {
    position: absolute;
    bottom: 10px;
    right: 0;
}
.int .line .content .box.txt .icons .ico {
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    margin: 0 0 0 10px;
}
@media screen and (max-width: 1000px) {
    .int .line .content .box.txt .icons {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 10px 0 0 0;
        float: left;
    }
    .int .line .content .box.txt .icons .ico {
        margin: 0 10px 0 0;
        width: 35px;
        height: 35px;
    }
}

/* == | lines - content - box - image | == */
.int .line .content .box.image .buttons {
    position: absolute;
    z-index: 3;
    bottom: 30px;
}
.int .line .content .box.image.extended .buttons {
    width: 80%;
    left: 10%;
}
.int .line .content .box.image.right .buttons .button {
    float: right;
}
.int .line .content .box.image.left .buttons .button {
    float: left;
}

/* == | lines - content - box - image - selactable | == */
.int .line .content .box.image.selectable-image img {
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.image.selectable-image img.on {
    opacity: 1;
}

/* == | lines - content - category | == */
.int .content.category .box::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 30% 0 0 0;
    float: left;
    content: '';
}
.int .content.category .box::after {
    position: absolute;
    display: block;
    width: calc(100% - 20px);
    height: 50px;
    left: 50%;
    top: calc(100% + 1px);
    background-color: #000;
    transform: translate(-50%, -100%);
    filter: blur(5px);
    opacity: 0.5;
    content: '';
    z-index: 1;
}
.int .content.category .box img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    object-fit: cover;
    z-index: 2;
}
.int .content.category .box .buttons {
    position: absolute;
    bottom: 30px;
    right: -20px;
    z-index: 3;
}
.int .content.category .box .ico {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 30px;
    z-index: 3;
}
.int .content.category .box .title {
    position: absolute;
    top: 30px;
    left: -20px;
    padding: 20px;
    border-radius: 3px;
    background-color: #f3f3f3;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    z-index: 3;
}
.int .content.category .box:first-of-type .title {
    background-color: #fff;
}
.int .content.category .box .title .heading {
    width: auto;
    clear: both;
}
@media screen and (max-width: 1000px) {
    .int .content.category .box::before {
        padding: 60% 0 0 0;
    }
}
@media screen and (max-width: 700px) {
    .int .content.category .box .title {
        position: absolute;
        top: 20px;
        left: -10px;
        padding: 10px;
    }
    .int .content.category .box .ico {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
    .int .content.category .box .buttons {
        bottom: 20px;
        right: 20px;
    }
}

/* == | lines - content - box - product | == */
.int .line .content .box.product {
  
}
.int .line .content .box.product .add-to-quote {
    position: absolute;
    display: block;
    top: 20px;
    left: 20px;
    font-size: 14px;
    line-height: 25px;
    padding: 0 10px;
    cursor: pointer;
    border-radius: 3px;
    z-index: 5;
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.product .add-to-quote:hover {
    background-color: #C13340;
    color: #fff;
}
.int .line .content .box.product .add-to-quote .modify {
    display: none;
}
.int .line .content .box.product.in-quote .add-to-quote .add {
    display: none;
}
.int .line .content .box.product.in-quote .add-to-quote .modify {
    display: block;
}
.int .line .content .box.product .active {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 0;
    left: 100%;
    border-radius: 100%;
    background-color: #72BB52;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}
.int .line .content .box.product .active::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-add-to-list.svg);
    background-size: 300% 100%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    content: '';
}
.int .line .content .box.product .active.on {
    opacity: 1;
}
.int .line .content .box.product .image {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    float: left;
}
.int .line .content .box.product .image::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 100% 0 0 0;
    content: '';
}
.int .line .content .box.product .image img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 2;
}
.int .line .content .box.product h3 {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.int .line .content .box.product h4 {
    position: relative;
    display: block;
    font-size: 18px;
    margin: 20px 0 0 0;
}
.int .line .content .box.product .desc {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 0;
    float: left;
}
.int .line .content .box.product .desc::before {
    position: absolute;
    display: block;
    width: 20px;
    height: 4px;
    top: 15px;
    left: 0%;
    border-radius: 4px;
    transform: translate(0%, -50%);
    background: #343F33;
    content: '';
}
.int .line .content .box.product .button {
    position: relative;
    display: block;
    width: calc(100% - 100px);
    float: left;
    line-height: 50px;
    padding: 0 50px;
    border-radius: 3px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    background-color: #C13340;
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.product .button:hover {
    background-color: #343F33;
}
.int .line .content .box.product .button::before {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    background-image: url(../image/ico-files.svg);
    background-size: 200% 100%;
    background-position: 100% 100%;
    content: '';
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.product .button.brochure::before {
    background-position: 0% 100%;
}
.int .line .content .box.product .variant-pop {
    position: fixed;
    width: calc(100% - 60px);
    max-width: 1300px;
    max-height: calc(100% - 60px);
    padding: 30px;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 19;
    opacity: 0;
    pointer-events:none;
    transition: all 0.3s ease-in-out;
}
.int .line .content .box.product .variant-pop.on {
    pointer-events:auto;
    opacity: 1;
}
.int .line .content .box.product .variant-pop-cover {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    opacity: 0;
    z-index: 18;
    pointer-events:none;
    transition: all 0.3s ease-in-out;
    content: '';
}
.int .line .content .box.product .variant-pop.on + .variant-pop-cover {
    opacity: 0.3;
    pointer-events:auto;
}
.int .line .content .box.product .variant-pop .box {
    float: left;
}
.int .line .content .box.product .variant-pop .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 100%;
    border-radius: 100%;
    border: 3px solid #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #343F33;
    cursor: pointer;
}
.int .line .content .box.product .variant-pop .close::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-add-to-list.svg);
    background-size: 300% 100%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) rotate(45deg);
    content: '';
}
@media screen and (max-width: 700px) {
    .int .line .content .box.product h3 {
        font-size: 18px;
    }
    .int .line .content .box.product h4 {
        font-size: 14px;
        margin: 10px 0 0 0;
    }
    .int .line .content .box.product .desc {
        padding: 20px 0 20px 0;
        font-size: 14px;
    }
    .int .line .content .box.product .desc::before {
        position: absolute;
        display: block;
        width: 20px;
        height: 4px;
        top: 10px;
    }
    .int .line .content .box.product .variant-pop .close {
        width: 30px;
        height: 30px;
        top: 30px;
        left: calc(100% - 30px);
    }
}


/* == | product - list | == */
.int .line.product-wrap {
    margin: 20px 30px 0 30px;
    max-height: 80px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.int .line.product-wrap.on {
    max-height: 2500px;
}
.int .line .content.product {
    padding: 0;
}
.int .line .content.product .box.one-one {
    width: 100%;
}
.int .line .content.product .product-name {
    position: relative;
    line-height: 50px;
    border-radius: 3px;
    background: #f3f3f3;
    padding: 15px 0;
    margin: 0;
    cursor: pointer;
}
.int .line .content.product .product-name .ico {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 0 0 15px;
    float: left;
}
.int .line .content.product .product-name .char {
    position: relative;
    width: 120px;
    float: left;
    font-size: 18px;
    font-weight: 800;
}
.int .line .content.product .product-name .title {
    position: relative;
    float: left;
    padding: 0 0 0 25px;
    font-size: 18px;
    font-weight: 800;
}
.int .line .content.product .product-name .title::before {
    position: absolute;
    display: block;
    width: 4px;
    height: 24px;
    top: 50%;
    left: 0%;
    border-radius: 4px;
    background: #343F33;
    transform: translate(-50%, -50%);
    content: '';
}
.int .line .content.product .product-name .title.no-char::before {
    display: none;
}
.int .line .content.product .product-name .title .category-name {
    position: relative;
    float: left;
    padding: 0 50px 0 0;
    font-size: 18px;
}
.int .line .content.product .product-name .title .category-name::before {
    position: absolute;
    display: block;
    width: 4px;
    height: 24px;
    top: 50%;
    left: calc(100% - 27px);
    border-radius: 4px;
    background: #343F33;
    transform: translate(-50%, -50%);
    content: '';
}
.int .line .content.product .product-name .arrow {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 15px 0 0;
    background: #fff;
    border-radius: 3px;
    float: right;
}
.int .line .content.product .product-name .arrow::before {
    position: absolute;
    display: block;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-list.svg);
    background-size: 500% 200%;
    background-position: 100% 100%;
    filter: invert(100);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    content: '';
}
.int .line.on .content.product .product-name .arrow::before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.int .line .content.product .product-info .image {
    position: relative;
    float: left;
    overflow: hidden;
    border-radius: 3px;
}
.int .line .content.product .product-info {
    padding: 0;
}
.int .line .content.product .product-info .title {
    position: relative;
    float: left;
    width: calc(100% - 210px);
    margin: 0 0 0 30px;
    padding: 0 0 50px 0;
    font-size: 18px;
}
.int .line .content.product .product-info .title::before {
    position: absolute;
    display: block;
    width: 24px;
    height: 4px;
    top: calc(100% - 25px);
    left: 0%;
    border-radius: 4px;
    background: #343F33;
    transform: translate(0, -50%);
    content: '';
}
.int .line .content.product .product-info .desc {
    position: relative;
    width: calc(100% - 210px);
    float: left;
    margin: 0 0 0 30px;
    font-size: 16px;
}
.int .line .content.product .product-links {
    margin: 0 30px;
    padding: 0 0 30px 0;
}
.int .line .content.product .product-links::before{
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    top: calc(100% - 15px);
    left: 50%;
    border-bottom: 1px dashed #343F33;
    transform: translate(-50%, -50%);
    opacity:0.5;
    content: '';
}
.int .line .content.product .product-links .button {
    position: relative;
    display: block;
    float: right;
    line-height: 50px;
    padding: 0 50px 0 50px;
    border-radius: 3px;
    margin: 0 0 0 15px;
    font-size: 16px;
    color: #fff;
}
.int .line .content.product .product-links .button.brochure {
    background-color: #C13340;
}
.int .line .content.product .product-links .button::before {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    background-image: url(../image/ico-files.svg);
    background-size: 200% 100%;
    background-position: 100% 100%;
    content: '';
    transition: all 0.2s ease-in-out;
}
.int .line .content.product .product-links .button.brochure::before {
    background-position: 0% 100%;
}
.int .line .content.product .product-end {
    margin: 0 30px;
    padding: 0;
    height: 50px;
}
.int .line .content.product .product-end::before, .int .line .content.product .product-end::after {
    position: absolute;
    display: block;
    width: calc(50% - 75px);
    height: 1px;
    top: 50%;
    border-bottom: 1px dashed #343F33;
    transform: translate(0%, -50%);
    opacity:0.5;
    content: '';
}
.int .line .content.product .product-end::before {
    left: 0;
}
.int .line .content.product .product-end::after {
    right: 0;
}
.int .line .content.product .product-end .close {
    position: absolute;
    display: block;
    width: 100px;
    height: 20px;
    top: 50%;
    left: 50%;
    border-radius: 3px;
    transform: translate(-50%, -50%);
    background: #343F33;
    cursor: pointer;
    content: '';
}
.int .line .content.product .product-end .close::before {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-image: url(../image/ico-list.svg);
    background-size: 500% 200%;
    background-position: 100% 100%;
    content: '';
}
@media screen and (max-width: 1350px) {
    .int .line.product-wrap {
        max-height: 50px;
    }
    .int .line .content.product .product-name {
        line-height: 30px;
        padding: 10px 0;
        margin: 0 20px;
    }
    .int .line .content.product .product-name .ico {
        width: 30px;
        height: 30px;
        margin: 0 0 0 15px;
    }
    .int .line .content.product .product-name .arrow {
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
    }
    .int .line .content.product .product-info .title {
        font-size: 16px;
    }
    .int .line .content .box.product-links {
        width: calc(100% - 40px);
        margin: 20px auto;
    }
}
@media screen and (max-width: 700px) {
    .int .line.product-wrap {
        margin:10px 20px 0 20px;
    }
    .int .line .content.product {
        width: 100%;
        margin: 0;
    }
    .int .line .content.product .product-name {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .int .line .content.product .product-info .image {
        width: 100px;
    }
    .int .line .content.product .product-info .image img {
        width: 100%;
    }
    .int .line .content.product .product-info .title {
        width: calc(100% - 120px);
        margin: 0 0 0 20px;
        padding: 0 0 30px 0;
        font-size: 16px;
    }
    .int .line .content.product .product-info .title::before {
        height: 2px;
        top: calc(100% - 15px);
    }
    .int .line .content.product .product-info .desc {
        width: 100%;
        margin: 20px 0 30px 0;
    }
    .int .line .content.product .product-info .desc span {
        display: block;
    }
    .int .line .content .box.product-links {
        width: calc(100% - 20px);
    }
}
@media screen and (max-width: 500px) {
    .int .line.product-wrap {
        margin:10px 10px 0 10px;
    }
    .int .line .content.product {
        width: 100%;
        margin: 0;
    }
    .int .line .content.product .product-name {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .int .line .content.product .product-name .title {
        font-size: 14px;
        padding: 0 0 0 20px;
    }
    .int .line .content.product .product-name .title::before {
            width: 4px;
            height: 15px;
            transform: translate(-50%, -50%) rotate(90deg);
    }
    .int .line .content.product .product-name .char {
        font-size: 14px;
        width: auto;
        padding: 0 20px 0 0;
    }
    .int .line .content.product .product-info .title {
        width: 100%;
        margin: 20px 0 0 0;
        padding: 0 0 30px 0;
        font-size: 16px;
    }
    .int .line .content.product .product-info .desc {
        width: 100%;
        margin: 0 0 20px 0;
    }
}


/* == | variants | == */
.int .line .content .box.variant-title {
    position: relative;
    max-width: 100%;
    padding: 0;
    margin: 0 30px 10px 30px;
}
.int .line .content .box.variant-title .name {
    position: relative;
    float: left;
    text-indent: 20px;
}
.int .line .content .box.variant-title div {
    position: relative;
    width: 50%;
    float: right;
}
.int .line .content .box.variant-title .spec {
    position: relative;
    width: 50%;
    float: left;
    text-align: center;
}
.int .line .content .box.variant {
    position: relative;
    padding: 0;
    background: #f3f3f3;
    border-radius: 3px;
    margin: 10px 30px;
}
.int .line .content .box.variant .title {
    position: relative;
    width: calc(50% - 20px);
    float: left;
    padding: 0 0 0 20px;
    line-height: 50px;
    font-size: 18px;
    font-weight: 600;
}
.int .line .content .box.variant .variable {
    position: relative;
    width: 25%;
    float: left;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
}
.int .line .content .box.variant .variable::before {
    position: absolute;
    display: block;
    width: 2px;
    height: 20px;
    border-radius: 2px;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    background: #000;
    opacity: 0.25;
    content: '';
}
.int .line .content .box.variant .question-add {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: calc(100% - 15px);
    transform: translate(0, -50%);
    cursor: pointer;
}
.int .line .content .box.variant .question-add .add {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
    border-radius: 100%;
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
.int .line .content .box.variant.on .question-add .add{
    transform: translate(-50%, -50%) scale(0.9);
}
.int .line .content .box.variant .question-add .active {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
    border-radius: 100%;
    background-color: #72BB52;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events:none;
}
.int .line .content .box.variant.on .question-add .active {
    opacity: 1;
}
.int .line .content .box.variant .question-add .add::before, .int .line .content .box.variant .question-add .remove::before, .int .line .content .box.variant .question-add .active::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-add-to-list.svg);
    background-size: 300% 100%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    content: '';
}
.int .line .content .box.variant .question-add .add::before {
    background-position: 0 0;
}
.int .line .content .box.variant .question-add .active::before {
    background-position: 100% 0;
}
.int .line .content .box.variant .question-add .remove::before {
    background-position: 50% 0;
}
.int .line .content .box.variant .question-add .nfo {
    position: absolute;
    display: block;
    max-width: 10px;
    left: 5px;
    line-height: 30px;
    padding: 0 10px 0 0;
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    font-size: 12px;
    color: #fff;
    border-radius:15px;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.2s linear;
}
.int .line .content .box.variant .question-add:hover .nfo {
    max-width: 100px;
    padding: 0 20px 0 40px;
}
.int .line .content .box.variant.on .question-add:hover .nfo {
    display: none;
}
.int .line .content .box.variant .question-add .nfo span {
    position: relative;
    display: block;
    float: right;
    opacity: 0;
    transition: all 0.2s linear;
}
.int .line .content .box.variant .question-add:hover .nfo span {
    opacity: 1;
}
.int .line .content .box.variant .question-add .remove {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
    border-radius: 100%;
    background-color: #C13340;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: all 0.2s ease-in-out;
    pointer-events:none;
    opacity: 0;
}
.int .line .content .box.variant.on .question-add:hover .remove {
    opacity: 1;
    pointer-events:auto;
}
@media screen and (max-width: 1350px) {
    .int .line .content .box.variant {
        width: calc(100% - 40px);
        margin: 5px auto;
    }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.variant-title {
        width: calc(100% - 40px);
        margin: 5px auto;
    }
    .int .line .content .box.variant-title div {
        position: relative;
        width: auto;
        float: left;
    }
    .int .line .content .box.variant-title .name {
        padding: 0 10px 0 10px;
        text-indent: 0px;
    }
    .int .line .content .box.variant-title .spec {
        float: left;
        padding: 0 10px 0 10px;
        text-indent: 0px;
        text-align: left;
        width: auto;
    }
    .int .line .content .box.variant-title .name::before, .int .line .content .box.variant-title .spec::before {
        position: absolute;
        display: block;
        line-height: 16px;
        top: 50%;
        left: 100%;
        font-size: 14px;
        text-indent: 0;
        transform: translate(-50%, -50%);
        content: '/';
    }
    .int .line .content .box.variant {
        width: calc(100% - 20px);
        margin: 5px auto;
        padding: 5px 0;
    }
    .int .line .content .box.variant .title {
        width: calc(100% - 20px);
        line-height: 20px;
        font-size: 16px;
    }
    .int .line .content .box.variant .variable {
        width: auto;
        line-height: 20px;
        text-align: left;
        padding: 0 20px 0 20px;
        font-size: 14px;
    }
    .int .line .content .box.variant .variable::before {
        width: auto;
        height: 14px;
        font-size: 14px;
        background: none;
        opacity: 1;
        content: '/';
    }
    .int .line .content .box.variant .variable:nth-of-type(2)::before {
        display: none;
    }
    .int .line .content .box.variant .question-add {
        width: 25px;
        height: 25px;
        left: calc(100% - 40px);
    }
    .int .line .content .box.variant .question-add .add, .int .line .content .box.variant .question-add .active, .int .line .content .box.variant .question-add .remove {
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
    }
    .int .line .content .box.variant .question-add .nfo {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .int .line .content .box.variant {
        width: calc(100% - 20px);
        margin: 5px auto;
        padding: 5px 0;
    }
    .int .line .content .box.variant .title {
        width: calc(100% - 20px);
        line-height: 20px;
        font-size: 14px;
    }
    .int .line .content .box.variant .variable {
        width: auto;
        line-height: 20px;
        text-align: left;
        padding: 0 20px 0 20px;
        font-size: 14px;
    }
    .int .line .content .box.variant .variable:nth-of-type(2)::before {
        display: none;
    }
    .int .line .content .box.variant .question-add {
        width: 25px;
        height: 25px;
        left: calc(100% - 40px);
    }
    .int .line .content .box.variant .question-add .add, .int .line .content .box.variant .question-add .active, .int .line .content .box.variant .question-add .remove {
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
    }
    .int .line .content .box.variant .question-add .nfo {
        display: none;
    }
}

/* == | popup - content | == */
.int .popup {
    position: fixed;
    width: calc(100% - 60px);
    max-width: 1200px;
    max-height: calc(100% - 60px);
    padding: 30px;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 19;
    opacity: 0;
    pointer-events:none;
    transition: all 0.3s ease-in-out;
}
.int .popup.on {
    pointer-events:auto;
    opacity: 1;
}
.int .popup .inner {
    position: relative;
    width: 100%;
}
.int .popup-cover {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    opacity: 0;
    z-index: 18;
    pointer-events:none;
    transition: all 0.3s ease-in-out;
    content: '';
}
.int .popup.on + .popup-cover {
    opacity: 0.3;
    pointer-events:auto;
}
.int .popup .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 100%;
    border-radius: 100%;
    border: 3px solid #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #343F33;
    cursor: pointer;
}
.int .popup .close::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-add-to-list.svg);
    background-size: 300% 100%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) rotate(45deg);
    content: '';
}
@media screen and (max-width: 700px) {
    .int .popup {
        z-index: 35;
        height: calc(100% - 60px);
        overflow: hidden;
    }
    .int .popup .inner {
      overflow-y: scroll;
      height: 100%;
    }
    .int .popup .inner .content {
      margin: 0;
      width: 100%;
    }
    .int .popup .close {
        position: fixed;
        width: 30px;
        height: 30px;
        top: 30px;
        left: calc(100% - 30px);
    }
}


/* == | line - content - box - product list | == */
.int .line .content .box.product-list {
}
.int .line .content .box.product-list .category {
   position: relative;
   width: 100%;
}
.int .line .content .box.product-list .category .title {
   position: relative;
   width: 100%;
   line-height: 50px;
   font-size: 24px;
   font-weight: bold;
}
.int .line .content .box.product-list .category .child {
   position: relative;
   width: calc(100% - 35px);
   padding: 0 0 0 35px;
   line-height: 50px;
   font-size: 18px;
   font-weight: 300;
   cursor: pointer;
}
.int .line .content .box.product-list .category .child::before {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: #f3f3f3;
    content: '';
}
.int .line .content .box.product-list .category .child::after {
    position: absolute;
    display: block;
    width: 20px;
    height: 15px;
    left: 5px;
    top: calc(50% - 4px);
    transform: translate(0, -50%);
    background-image: url(../image/ico-checkbox.svg);
    background-position: 0 0;
    background-size: 100% 100%;
    content: '';
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.int .line .content .box.product-list .category .child.selected::after {
    opacity: 1;
}
@media screen and (max-width: 1400px) {
    .int .line .content .box.product-list .category .title {
        font-size: 18px;
     }
     .int .line .content .box.product-list .category .child {
        font-size: 16px;
     }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.product-list .category .title {
        font-size: 18px;
        line-height: 40px;
     }
     .int .line .content .box.product-list .category .child {
        font-size: 16px;
        line-height: 30px;
     }
     .int .line .content .box.product-list:first-of-type {
        padding: 30px 0 0 0;
     }
     .int .line .content .box.product-list:last-of-type {
        padding: 0 0 30px 0;
     }
}

/* | == quote == | */
.quote {
    position: relative;
    width: calc(100% - 60px);
    padding: 30px;
    background: #f3f3f3;
    border-radius:3px;
    float: left;
}
.quote::before {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: calc(100% - 10px);
    left: 50%;
    background-color: #f3f3f3;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    content: '';
}
.quote .form-container {
    position: relative;
    width: 100%;
    float: left;
}
.quote .form-container .title {
    position: relative;
    width: calc(100% - 150px);
    margin: 0 0 10px 0;
    line-height: 30px;
    border-radius: 3px;
    background: #fff;
    float: left;
}
.quote .form-container .title .item {
    position: relative;
    display: block;
    width: calc(100% - 20px);
    margin: 0 0 0 10px;
    font-size: 16px;
}
.quote .form-container .title .hidden {
    display: none;
}
.quote .form-container .title .qty {
    position: absolute;
    top: 0;
    left: calc(100% + 30px);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border-radius: 3px;
    text-indent: 0;
    pointer-events:none;
}
.quote .form-container .title .qty .add, .quote .form-container .title .qty .sub {
    position: absolute;
    display: block;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    pointer-events:auto;
}
.quote .form-container .title .qty .add {
    left: 30px;
}
.quote .form-container .title .qty .sub {
    left: -30px;
}
.quote .form-container .title .qty .add::before, .quote .form-container .title .qty .sub::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.quote .form-container .title .qty .add::before {
    content: '+';
}
.quote .form-container .title .qty .sub::after {
    content: '-';
}
.quote .form-container .title .remove {
    position: absolute;
    display: block;
    top: 0;
    width: 30px;
    height: 30px;
    left:calc(100% + 120px);
    background: #C13340;
    border-radius: 3px;
    cursor: pointer;
}
.quote .form-container .title .remove::before {
    position: absolute;
    display: block;
    width: 130%;
    height: 130%;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-trash.svg);
    background-size: 100% 100%;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    pointer-events:none;
    content: '';
}
@media screen and (max-width: 1000px) {
    .quote .form-container .title .item {
        font-size: 14px;
    }
}
@media screen and (max-width: 700px) {
    .quote {
        position: relative;
        width: 100%;
        padding: 0;
        background: none;
        border-radius:3px;
        float: left;
    }
    .quote::before {
        display: none;
    }
    .quote .form-container .title {
        width: calc(100% - 20px);
        padding: 10px 10px 50px 10px;
        margin: 0 0 10px 0;
        line-height: 20px;
        text-indent: 0px;
        background: #f3f3f3;
        border-radius:3px;
    }
    .quote .form-container .title .item {
        width: 100%;
        margin: 0;
        font-size: 14px;
    }
    .quote .form-container .title .qty {
        position: absolute;
        top: auto;
        bottom: 10px;
        left: 30px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .quote .form-container .title .remove {
        position: absolute;
        display: block;
        top: auto;
        bottom: 10px;
        width: 30px;
        height: 30px;
        left:calc(100% - 40px);
        background: #C13340;
        border-radius: 3px;
        cursor: pointer;
    }
}

/* == | product - select | == */
.product-select {
    position: relative;
    overflow: hidden;
}
.product-select .category {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 10px 0;
}
.product-select .category .title {
    position: relative;
    width: 100%;
    line-height: 40px;
    border-radius: 3px;
    background: #f3f3f3;
    text-indent: 20px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.product-select .category .title.on {
    background: #343F33;
    color: #fff;
}
.product-select .category.child .title {
    text-transform: none;
    font-weight: 300;
}
.product-select .product .title {
    text-indent: 0;
}
.product-select .product .title::before {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    float: left;
    content: 'L';
}
.product-select .category .title::after {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    background-image: url('../image/ico-list.svg');
    background-size: 500% 200%;
    background-position: 100% 0;
    transform: rotate(90deg);
    filter: invert(100);
    content: '';
    transition: all 0.3s ease-in-out;
}
.product-select .category .category .title::after {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
    background-image: url('../image/ico-list.svg');
    background-size: 500% 200%;
    background-position: 100% 0;
    transform: rotate(90deg);
    filter: invert(100);
    content: '';
    transition: all 0.3s ease-in-out;
}
.product-select .category .title.on::after {
    transform: rotate(-90deg);
    filter: invert(0);
}
.product-select .category .product .variant .title::after {
    display: none;
}
.product-select .category .inner {
    position: relative;
    display: none;
    overflow: hidden;
    width: 100%;
    margin: 10px 0 0 0;
    opacity: 0;
    pointer-events:none;
}
.product-select .category .inner.on {
    opacity: 1;
    pointer-events:auto;
}
.product-select .product .inner .variant {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 15px 10px 15px;
}
.product-select .product .inner .variant .title::before {
    display: none;
}
.product-select .product .inner .variant .title {
    text-indent: 20px;
}
.product-select .product .inner .variant .title.on {
    color:#343F33;
    background: #f3f3f3;
}
.product-select .product .inner .variant .question-add {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: calc(100% - 15px);
    transform: translate(0, -50%);
    cursor: pointer;
}
.product-select .product .inner .variant .question-add .add {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
    border-radius: 100%;
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
.product-select .product .inner .variant.on .question-add .add{
    transform: translate(-50%, -50%) scale(0.9);
}
.product-select .product .inner .variant .question-add .active {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
    border-radius: 100%;
    background-color: #72BB52;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events:none;
}
.product-select .product .inner .variant.on .question-add .active {
    opacity: 1;
}
.product-select .product .inner .variant .question-add .add::before, .product-select .product .inner .variant .question-add .remove::before, .product-select .product .inner .variant .question-add .active::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-add-to-list.svg);
    background-size: 300% 100%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    content: '';
}
.product-select .product .inner .variant .question-add .add::before {
    background-position: 0 0;
}
.product-select .product .inner .variant .question-add .active::before {
    background-position: 100% 0;
}
.product-select .product .inner .variant .question-add .remove::before {
    background-position: 50% 0;
}
.product-select .product .inner .variant .question-add .remove {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
    border-radius: 100%;
    background-color: #C13340;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: all 0.2s ease-in-out;
    pointer-events:none;
    opacity: 0;
}
.product-select .product .inner .variant.on .question-add:hover .remove {
    opacity: 1;
    pointer-events:auto;
}


/* == | line - content - contact | == */
.int .line .content .box.contact {
    line-height: 30px;
}
.int .line .content .box.contact .social-accounts {
    position: relative;
    display: block;
    padding: 0 0 0 40px;
    margin: 0 0 20px 0;
}
.int .line .content .box.contact .social-accounts .ico {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background-color: #343F33;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
}
.int .line .content .box.contact .social-accounts .ico::before {
    position: absolute;
    display: block;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: 100%;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    content: '';
}
.int .line .content .box.contact .social-accounts.fb .ico::before {
    background-image: url(../image/ico-social-fb.svg);
}
.int .line .content .box.contact .social-accounts.insta .ico::before {
    background-image: url(../image/ico-social-insta.svg);
}
.int .line .content .box.contact .social-accounts.linkedin .ico::before {
    background-image: url(../image/ico-social-linkedin.svg);
}

/* == | 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);
  }
}

/* == | line - content - staff | == */
.int .line .content .box.staff {
    transition: all 0.2s ease-in-out;
    color: #343F33;
    text-align: left;
}
.int .line .content .box.staff:hover {
    background: #C13340;
    color: #fff;
}
.int .line .content .box.staff .image {
    position: relative;
    width: calc(100% + 60px);
    left: -30px;
    top: -30px;
}
.int .line .content .box.staff .image img {
    position: relative;
    display: block;
    width: 100%;
}
.int .line .content .box.staff .name {
    position: relative;
    width: 100%;
    font-size: 18px;
    padding: 0 0 8px 0;
}
.int .line .content .box.staff .job {
    position: relative;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding: 0 0 25px 0;
    margin: 0 0 30px 0;
    color:#C13340;
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.staff:hover .job {
    color:#fff;
}
.int .line .content .box.staff .job::before {
    position: absolute;
    display: block;
    width: 30px;
    height: 6px;
    border-radius: 3px;
    left: 0;
    bottom: -10px;
    transform: translate(0, -50%);
    background: #C13340;
    content: '';
}
.int .line .content .box.staff a {
    color: inherit;
    line-height: 30px;
}
@media screen and (max-width: 1600px) {
  .int .line .content .box.staff .image {
      width: calc(100% + 50px);
      left: -25px;
      top: -25px;
  }
}
@media screen and (max-width: 1400px) {
    .int .line .content .box.staff .image {
      width: calc(100% + 40px);
      left: -20px;
      top: -20px;
  }
    .int .line .content .box.staff .name {
      position: relative;
      width: 100%;
      font-size: 20px;
      text-transform: uppercase;
      padding: 0 0 8px 0;
  }
  .int .line .content .box.staff .job {
      font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
    .int .line .content .box.staff .name {
      font-size: 18px;
  }
  .int .line .content .box.staff .job {
      font-size: 14px;
  }
}

/* == | line - content - image - scroll | == */
.int .line .content.image-scroll .inner {
    width: 100%;
    aspect-ratio: 4 / 1;
    overflow: hidden;
}
.int .line .content.image-scroll .box {
}
.int .line .content.image-scroll .box {
    width: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}
.int .line .content.image-scroll .box.on {
    width: calc(25% - 50px);
    margin: 25px;
}
.int .line .content.image-scroll .box.image::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 100% 0 0 0;
    content: '';
}
.int .line .content.image-scroll .box.image img {
    position: absolute;
    display: block;
    max-width: 50%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}
.int .line .content.image-scroll .box.image:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.int .line .content.image-scroll .directions {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.int .line .content.image-scroll .directions div {
    position: absolute;
    top: 0%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.int .line .content.image-scroll .directions div.prev {
    left: -50px;
}
.int .line .content.image-scroll .directions div.next {
    left: calc(100% + 50px);
}
.int .line .content.image-scroll .directions div.prev::before, .int .line .content.image-scroll .directions div.next::before {
    position: absolute;
    display: block;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../image/ico-nav.svg);
    background-size: 600% 200%;
    background-position: 59% 0%;
    content: '';
}
.int .line .content.image-scroll .directions div.prev::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* == 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: #C13340!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: #C13340!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;
  }
}