:root {
    --container-width: 1290px;
    --blue: #32828D;
    --blue-light: #EFF3F3;
    --green: #2ED522;
    --red: #FF0043;
    --grey: #a5a5a5;
    --grey-dark: #6f6f6f;
    --font: 'sofia-pro', Arial, Helvetica, sans-serif;
    --font-huge: 38px;
    --font-big: 28px;
    --font-medium: 22px;
}

body {
    width: 100%;
    margin: 0;
    padding: 97px 0 0;
    background-color: #f9f9f9;
    color: #000;
    font-family: 'sofia-pro', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    overflow-x: hidden;
}

.container-full {
    clear: both;
    position: relative;
    width: 100%;
}

.container {
    clear: both;
    position: relative;
    width: var(--container-width);
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--blue);
    background-color: #fff;
    z-index: 26;
}
header.fixed {
}

.header-top {
    background-color: var(--blue);
    color: #fff;
    font-size: 14px;
}
.header-top .container {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-top: 4px;
    padding-bottom: 6px;
}
.header-top p {
    margin: 0;
}
.header-top a, .header-top a:hover {
    margin-left: 15px;
    text-decoration: none;
}
.header-top img {
    margin-right: 2px;
}

header > .container {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    padding-top: 2px;
    padding-bottom: 2px;
}

.logo {
}
.logo img {
    height: 20px;
}

header nav {
}
header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
header nav ul li {
    position: relative;
    display: inline-block;
}
header nav ul li a {
    display: block;
    padding: 20px 17px;
    color: var(--blue);
    text-decoration: none;
}
header nav ul li.active a, header nav ul li a:hover {
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    text-decoration-color: var(--red);
}
header nav > p {
    display: none;
}

.nav-submenu {
    display: none;
    position: fixed;
    top: 87px;
    left: 0;
    width: 100%;
    padding: 5px 0 15px;
    border-bottom: 1px solid var(--blue);
    background-color: #f9f9f9;
    color: var(--blue);
    text-align: left;
    z-index: 111;
}
.nav-submenu .font13 {
    display: none;
}
.nav-submenu .font13 img {
    margin-left: 5px;
}
.nav-submenu-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.nav-submenu-list a {
    padding: 5px 0;
    text-align: center;
}
.nav-submenu-list span {
    display: block;
    margin-bottom: 7px;
}
.nav-submenu-list span img {
    height: 40px;
}

#search_form {
    position: relative;
    font-size: 12px;
}
#search_form input {
    width: 100%;
    height: 36px;
    padding: 0 10px 0 35px;
    border: 0;
    border-radius: 3px;
    background-color: #eaeaea;
    font-size: 13px;
}
#search_form input::placeholder {
    font-size: 13px;
}
#search_form button {
    position: absolute;
    top: 7px;
    left: 10px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
#search_form button:hover {
}
#search_form button img {
    height: 12px;
    transition: all 350ms linear;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0 25px;
}

.menu-responsive {
    display: none;
    position: absolute;
    top: 26px;
    right: 1.5vw;
    width: 26px;
    height: 20px;
    font-size: 0;
    z-index: 49;
}
.menu-responsive span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--blue);
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menu-responsive span:nth-child(1) {
    top: 0;
}
.menu-responsive span:nth-child(2), .menu-responsive span:nth-child(3) {
    top: 8px;
}
.menu-responsive span:nth-child(4) {
    top: 16px;
}
.menu-responsive.active span:nth-child(1) {
    top: 8px;
    left: 50%;
    width: 0;
}
.menu-responsive.active span:nth-child(2) {
    transform: rotate(45deg);
}
.menu-responsive.active span:nth-child(3) {
    transform: rotate(-45deg);
}
.menu-responsive.active span:nth-child(4) {
    top: 8px;
    left: 50%;
    width: 0;
}

#inquiryModal .h3, #inquiryModal2 .h3 {
    text-align: center;
}
#priceRequestForm, #inquiryModal2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
    color: var(--blue);
}
#priceRequestForm > *:nth-child(6), #priceRequestForm > *:nth-child(7),
#inquiryModal2 > *:nth-child(6), #inquiryModal2 > *:nth-child(7) {
    grid-column: 1 / -1;
}
#priceRequestForm p, #inquiryModal2 p {
    margin: 5px 0;
}
#priceRequestForm input:not([type='checkbox']),
#inquiryModal2 input:not([type='checkbox']) {
    width: 100%;
    height: 32px;
    margin-top: 8px;
    border: 1px solid #dcdcdc;
}
#priceRequestForm textarea, #inquiryModal2 textarea {
    width: 100%;
    height: 120px;
    margin-top: 8px;
    padding: 5px 10px;
    border: 1px solid #dcdcdc;
}
#priceRequestForm > *:last-child, #inquiryModal2 > *:last-child {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 25px;
    padding: 10px 0;
}
#priceRequestForm .font13 input {
    position: relative;
    top: 1px;
    left: -3px;
}
#priceRequestForm .g-recaptcha {
    margin-top: 10px;
}

.site-home {
}
.home-img {
    margin: 0;
}
.site-home > .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    color: #fff;
    transform: translateY(-50%);
    z-index: 2;
}
.site-home h1 {
    max-width: 645px;
    margin: auto;
    padding-bottom: 25px;
    color: #fff;
    text-shadow: 0 3px 6px #00000066;
}
.site-home h1 + p {
    max-width: 645px;
    margin: auto;
    margin-bottom: 25px;
}
.site-home hr {
    height: 2px;
    margin: 70px auto 40px;
    padding: 0;
    border: 0;
    background-color: #fff;
    opacity: .6;
}
.home-assets {
    display: flex;
    justify-content: space-evenly;
}
.home-assets strong {
    font-size: 20px;
    text-shadow: 0 3px 6px #00000066;
}

.site-image {
    text-align: left;
}
.image-img {
    margin: 0;
}
.site-image > .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    color: #fff;
    z-index: 2;
}
.site-image h1 {
    color: #fff;
    text-shadow: 0 3px 6px #00000066;
}
.site-image .breadcrumbs {
    color: #fff;
}

.site-offer {
    padding-top: 20px;
    padding-bottom: 35px;
    text-align: left;
}
.site-offer .h1 + .link {
    position: absolute;
    top: 55px;
    right: 0;
}

.file-upload-display {
    position: relative;
    height: 32px;
    margin-top: 8px;
    border: 1px solid #dcdcdc;
}
.placeholder-file {
    padding: 5px 0 0;
}
.selected-file {
    padding: 4px 0 0;
}
.file-select-btn {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}
.file-select-btn img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 6px 10px;
    background-color: var(--blue);
    text-align: center;
}
.file-name {
    display: block;
    max-width: 363px;
    word-wrap: break-word;
}
.remove-file {
    position: relative;
    top: 5px;
    margin: -20px 0 0 5px;
    border: 0;
    background: transparent;
    color: var(--red);
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 5%;
    padding: 15px 0;
}
.products > div {
    position: relative;
}
.products a {
    display: block;
    padding: 0 0 10px;
    border-radius: 10px;
    text-decoration: none;
}
.products a:hover {
    box-shadow: 0 0 15px #dedede;
    text-decoration: none;
}
.products-tag {
    position: absolute;
    top: -5px;
    right: 0;
    padding: 3px 8px;
    color: #fff;
    font-size: 12px;
    z-index: 2;
}
.products-img {
    height: 250px;
    border-bottom: 2px solid var(--blue);
    text-align: center;
}
.products-img img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.products h2 {
    padding: 0 15px;
    font-size: 18px;
}
.products-date {
    padding: 0 15px;
    color: var(--grey);
}
.products-text {
    display: none;
    height: 87px;
    margin: -10px 0 0;
    overflow: hidden;
}
.products .red {
    padding-left: 35px;
    background: url("../img/arrow-red.svg") 15px 7px no-repeat;
}

.site-tradition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #fff url("../img/bg-spring-1.png") 5% 25% no-repeat;
    text-align: left;
}
.site-tradition .h1 {
    margin: 15px 0;
}
.site-tradition > *:first-child {
    font-size: 18px;
    line-height: 1.6;
}
.site-tradition > *:first-child > div {
    float: right;
    max-width: calc(var(--container-width)/2);
    padding-right: 100px;
}
.site-tradition .link {
    padding-top: 10px;
}
.tradition-img {
    position: relative;
    margin: 0;
}

.site-experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: -3px;
    background: url("../img/bg-spring-2.png") 95% 10% no-repeat, url("../img/bg-spring-3.svg") 90% 75% no-repeat, #fff;
    text-align: left;
}
.site-experience .h1 {
    margin: 15px 0;
}
.site-experience > *:last-child {
    font-size: 18px;
    line-height: 1.6;
}
.site-experience > *:last-child > div {
    max-width: calc(var(--container-width)/2);
    padding-left: 100px;
}
.site-experience .link {
    padding-top: 10px;
}
.experience-img {
    position: relative;
    margin: 0;
}

.site-logos {
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: left;
}
.logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 10px;
}
.logos p {
    display: flex;
    align-items: center;
    height: 100px;
    padding: 10px 25px;
    box-shadow: 0 3px 10px #0000000D;
}
.logos img {
    max-width: 200px;
    max-height: 55px;
}

.site-articles {
    padding-top: 15px;
    padding-bottom: 35px;
    text-align: left;
}
.site-articles .title {
    color: var(--blue);
}
.articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 15px;
    padding-bottom: 30px;
}
.articles a, .articles a:hover {
    text-decoration: none;
}
.articles > div {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 3fr;
    background-color: #fff;
}
.articles > div:after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 67px;
    height: 67px;
    background: url("../img/mn.svg") 0 0 no-repeat;
    content: "";
    z-index: 2;
}
.articles-img {
    position: relative;
    width: 100%;
    margin: 0;
}
.articles-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 100%;
    margin: auto;
    z-index: 2;
}
.articles-img + * {
    position: relative;
    padding: 5px 20px;
}
.articles-text {
    height: 110px;
    margin-top: -15px;
    overflow: hidden;
}
.articles-date {
    position: absolute;
    left: 20px;
    bottom: -10px;
    color: var(--grey);
    font-size: 12px;
    text-transform: uppercase;
    z-index: 2;
}
.site-articles .link {
    text-align: center;
}

.site-content {
    padding-top: 15px;
    padding-bottom: 45px;
    text-align: left;
}

.gallery {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
    padding: 20px 0;
}
.gallery p {
    margin: 0;
}
.gallery p:first-child {
    grid-row: span 3;
}
.gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.white-box {
    margin: 25px 0;
    padding: 10px 35px 20px;
    background-color: #fff;
    box-shadow: 0 0 10px var(--blue-light);
}

.list-bg span {
    display: inline-block;
    margin: 5px 0;
    padding: 2px 7px 4px;
    background-color: var(--blue-light);
    color: var(--blue);
}

.order-example {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4%;
    padding: 25px 0 20px;
    color: var(--blue);
    font-weight: bold;
    line-height: 1.6;
}
.order-example > div {
    position: relative;
    padding: 5px 20px;
    box-shadow: 0 3px 10px #0000000D;
}
.order-example > div:first-child:after {
    /*position: absolute;
    top: 50%;
    right: -35px;
    content: "=";
    color: var(--red);
    font-size: 36px;
    font-weight: bold;
    transform: translateY(-50%);*/
}
.order-example > div:last-child {
    background-color: var(--blue-light);
}
.order-example > p {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    color: var(--red);
    font-size: 36px;
    font-weight: bold;
    transform: translate(-50%,-50%);
}

.site-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1000px;
    margin: 30px auto 35px;
    padding: 25px 25px 0;
    border-radius: 10px;
    background-color: #fff;
    color: var(--blue);
    font-weight: bold;
    text-align: left;
}
.calculator-left input,
.calculator-left select {
    width: 100%;
    height: 33px;
    margin: 3px 0;
    padding: 0 10px;
    border: 1px solid #DCDCDC;
    border-radius: 2px;
    background-color: #fff;
}
.calculator-left select {
    max-width: 300px;
}
.calculator-input p {
    position: relative;
}
.calculator-input input {
    width: 48%;
}
.calculator-input input[type="number"] {
    -moz-appearance: textfield;
}
.calculator-input input[type="number"]::-webkit-outer-spin-button,
.calculator-input input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.calculator-input .non_editable input {
    background-color: #f3f3f3;
    pointer-events: none;
}
.calculator-input .non_editable span {
}
.calculator-input.halves input {
    width: 100%;
}
.calculator-input label {
    display: block;
}
.calculator-input span {
    position: relative;
    left: -60px;
    display: inline-block;
    width: 50px;
    text-align: right;
    opacity: .5;
}
.calculator-input.halves p:first-child {
    padding-bottom: 10px;
}
.calculator-input.halves span {
    position: absolute;
    bottom: 10px;
    left: auto;
    right: 10px;
}
.calculator-input em {
    position: relative;
    margin-left: -35px;
    font-style: normal;
    opacity: .5;
}
.calculator-input.halves > div:last-child p + p {
    opacity: .5;
}
.calculator-input .atype_label em {
    position: absolute;
    bottom: 12px;
    left: calc(100% + 50px);
    white-space: nowrap;
}
.calculator-right {
    position: relative;
}
.calculator-fixed {
    position: sticky;
    top: 120px;
    padding-top: 1px;
    border-radius: 10px;
    background-color: #f7f7f7;
    box-shadow: 0 3px 10px #00000014;
    z-index: 2;
}
.calculator-fixed .h3 {
    padding: 0 20px;
}
.calculator-fixed hr {
    width: calc(100% - 40px);
    height: 1px;
    margin: 15px auto 25px;
    border: 0;
    background-color: #dcdcdc;
}
.calculator-check {
    padding: 5px 20px;
}
.calculator-check p {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: end;
    gap: 0 15px;
    margin: 5px 0;
    padding: 5px 10px;
    border: 1px solid #DCDCDC;
    border-radius: 2px;
    background-color: #fff;
    text-align: right;
}
.calculator-check p span + span {
    text-align: left;
}
.calculator-result {
    padding: 5px 20px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: var(--blue);
    color: #fff;
    text-align: center;
}
.calculator-result .h3 {
    margin-top: 15px;
    color: #fff;
}
.calculator-result button {
    padding: 6px 15px 8px;
    border: 1px solid #fff;
    border-radius: 20px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    transition: all 350ms linear;
    cursor: pointer;
}
.calculator-result button:hover {
    background-color: #fff;
    color: var(--blue);
}
/* tisk:*/
#clone_temp{
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 35px auto 35px;
    padding: 20px 20px 0;
    border-radius: 10px;
    background-color: #fff;
    color: var(--blue);
    font-weight: bold;
    text-align: left;
    visibility: hidden;
}
#clone_temp button{
    display: none;
}
#clone_temp span {
    position: static;
}
#clone_temp .calculator-check span{
    text-align: left;
}
#clone_temp select{
    background: white;
    border: none;
}

.site-zig-zag {
    padding-top: 20px;
    padding-bottom: 35px;
    text-align: left;
}
.zig-zag-1 {
    display: grid;
    grid-template-columns: 14fr 16fr;
    gap: 5%;
    padding: 15px 0;
    background: url("../img/bg-spring-1.png") 40% 100% no-repeat;
}
.zig-zag-2 {
    display: grid;
    grid-template-columns: 15fr 14fr;
    gap: 5%;
    padding: 15px 0;
    background: url("../img/bg-spring-2.png") 50% 50% no-repeat;
}
.site-zig-zag .h3 {
    padding-top: 15px;
}

.site-process {
    padding-top: 35px;
    padding-bottom: 45px;
}
.site-process:before {
    position: absolute;
    top: 40%;
    left: -200px;
    width: 126px;
    height: 173px;
    background: url("../img/bg-spring-1.svg") 0 0 no-repeat;
    content: "";
    opacity: .5;
}
.site-process:after {
    position: absolute;
    top: 15%;
    right: -17vw;
    width: 114px;
    height: 139px;
    background: url("../img/bg-spring-2.svg") 0 0 no-repeat;
    content: "";
    opacity: .7;
}
.process {
    overflow: auto;
}
.process img {
    max-height: 160px;
}
.process > * {
    float: left;
    position: relative;
    width: 50%;
    padding: 0 5%;
}
.process > *:nth-child(3n) {
    width: 100%;
    margin: -10px 0 0;
    text-align: center;
}
.process > *:nth-child(2), .process > *:nth-child(4),
.process > *:nth-child(8), .process > *:nth-child(10),
.process > *:nth-child(14), .process > *:nth-child(16),
.process > *:nth-child(20), .process > *:nth-child(22) {
    text-align: left;
}

.contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 25px 0;
    color: var(--blue);
}
.contacts > div {
    position: relative;
    padding: 45px;
}
.contacts > div:nth-child(odd) {
    background-color: var(--blue);
    color: #fff;
}
.contact-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--blue);
    text-align: center;
}
.contact-border span {
    position: relative;
    top: -8px;
    display: inline-block;
    padding: 0 5px;
    background-color: #f9f9f9;
}
.contacts > div:nth-child(4) .contact-border {
    top: auto;
    bottom: -18px;
}
.contact-map {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    padding: 25px 0;
    color: var(--blue);
}
.contact-map-left > div {
    padding: 10px 30px;
}
.contact-map-left > div:nth-child(odd) {
    background-color: var(--blue);
    color: #fff;
}
#map {
    width: 100%;
    height: 400px;
}

.menu {
    list-style-type: none;
}
.menu li {
    padding: 5px 0 5px 20px;
    background: url("../img/arrow-red.svg") 0 12px no-repeat;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 5%;
    padding: 15px 0;
}
.grid-2-cols > * {
    position: relative;
}

.breadcrumbs {
    width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    color: var(--blue);
    font-size: 12px;
    text-align: left;
}
.breadcrumbs a {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}
.breadcrumbs a:after {
    position: absolute;
    top: 1px;
    right: -15px;
    content: "/";
    font-size: 12px;
}

.blocker {
    z-index: 111;
}

.modal {
    max-width: 800px;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 2;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}
.slick-dots li button {
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    border: 1px solid var(--purple);
    background: var(--purple);
}
.slick-dots li button:before {
    display: none;
}

/* Arrows */
.slick-prev, .slick-next {
    position: absolute;
    top: 45%;
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
    z-index: 3;
}
.slick-prev:before, .slick-next:before {
    display: none;
}
.slick-prev:hover, .slick-next:hover {
    color: var(--ocre);
}
.slick-prev {
    left: -75px;
}
.slick-next {
    right: -75px;
}
.slick-prev:after, .slick-next:after {
    display: block;
    padding: 34px;
    content: '';
    box-shadow: -2px -2px 0 0 #fff;
    transform: rotate(-45deg);
    transition: .3s;
    cursor: pointer;
}
.slick-prev:hover:after {
    box-shadow:-2px -2px 0 0 var(--blue-light);
}
.slick-next:after {
    box-shadow: 2px 2px 0 0 #fff;
}
.slick-next:hover:after {
    box-shadow: 2px 2px 0 0 var(--blue-light);
}

.title {
    font-family: var(--font);
    font-size: var(--font-big);
    font-weight: bold;
}

.link > *, .link-red > * {
    display: inline-block;
    padding: 8px 15px 10px 30px;
    border: 1px solid var(--red);
    border-radius: 25px;
    background: url("../img/arrow-red.svg") 10px center no-repeat;
    color: var(--red);
    font-size: 14px;
    font-weight: normal;
    transition: all 350ms linear;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}
.link > *:hover,
.link-red > *:hover {
    background: var(--red) url("../img/arrow-white.svg") 10px center no-repeat;
    color: #fff;
    text-decoration: none;
}
.link > * + * {
    margin-left: 20px;
}
.link-red > *,
.site-home .link > *:first-child,
.site-image .link > * {
    background: var(--red) url("../img/arrow-white.svg") 10px center no-repeat;
    color: #fff;
}
.link-red > *:hover,
.site-home .link > *:first-child:hover,
.site-image .link > *:hover {
    background: #fff url("../img/arrow-red.svg") 10px center no-repeat;
    color: var(--red);
}
.site-home .link > * + * {
    padding-left: 15px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}
.site-home .link > * + *:hover {
    background-color: #fff;
    color: var(--blue);
}

.halves {
    display: flex;
    justify-content: space-between;
}
.halves > * {
    width: 48%;
}

.thirds {
    display: flex;
    justify-content: space-between;
}
.thirds > * {
    width: 30%;
}

hr {
    width: 100%;
    height: 2px;
    margin: 25px 0;
    padding: 0;
    border: 0;
    background-color: var(--blue-light);
}

footer {
    position: relative;
    padding-top: 30px;
    background-color: var(--blue-light);
    color: var(--blue);
    text-align: left;
}

footer ul {
    margin: 15px 0;
    padding: 0;
    list-style-type: none;
}

footer li {
    padding-bottom: 15px;
}

footer li a {
    text-decoration: none;
}

.footer-title {
    padding-bottom: 10px;
    font-weight: bold;
}

.footer-img {
    overflow: auto;
}
.footer-img img {
    float: left;
    max-height: 40px;
    margin-right: 15px;
    border-radius: 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 35px;
}

.footer-bottom {
    position: relative;
    background-color: #f9f9f9;
    text-align: center;
}
.footer-bottom:before, .footer-bottom:after {
    position: absolute;
    top: 0;
    left: -50vw;
    width: 50vw;
    height: 100%;
    background-color: #f9f9f9;
    content: "";
    z-index: 2;
}
.footer-bottom:after {
    left: auto;
    right: -50vw;
}
.footer-bottom p {
    padding-top: 15px;
}

.container:after,
.container-full:after {
    clear: both;
    display: block;
    content: '';
}

.clear, .cleaner {
    clear: both;
    display: block;
    height: 1px;
    border: 0;
    font-size: 0;
}

.black {
    color: #000;
}

.white {
    color: #fff;
}

.blue {
    color: var(--blue);
}

.red {
    color: var(--red);
}

.green {
    color: var(--green);
}

.grey {
    color: var(--grey);
}

.uppercase {
    text-transform: uppercase;
}

.hidden {
    display: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

h1, .h1 {
    clear: both;
    margin-top: .7em;
    margin-bottom: .5em;
    color: var(--blue);
    font-family: var(--font);
    font-size: var(--font-huge);
    font-weight: bold;
    line-height: 1.2em;
}

h2, .h2 {
    clear: both;
    margin-top: .8em;
    margin-bottom: .6em;
    color: var(--blue);
    font-family: var(--font);
    font-size: var(--font-big);
    font-weight: bold;
    line-height: 1.2em;
}

h3, .h3 {
    margin-top: 1em;
    margin-bottom: .8em;
    color: var(--blue);
    font-family: var(--font);
    font-size: var(--font-medium);
    font-weight: bold;
    line-height: 1.2em;
}

h4 {
    clear: both;
    margin: 25px 0 15px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2em;
}

.font {
    font-family: var(--font);
}

.font10 {
    font-size: 10px;
}

.font11 {
    font-size: 11px;
}

.font12 {
    font-size: 12px;
}

.font13 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font15 {
    font-size: 15px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font28 {
    font-size: 28px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.no-margin {
    margin: 0;
    padding: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--blue);
    font-size: 15px;
}
::-moz-placeholder { /* Firefox 19+ */
    color: var(--blue);
    opacity: 1;
    font-size: 15px;
}
:-ms-input-placeholder { /* IE 10+ */
    color: var(--blue);
    font-size: 15px;
}
:-moz-placeholder { /* Firefox 18- */
    color: var(--blue);
    font-size: 15px;
}

input, textarea, select, option, button {
    color: var(--blue);
    font-family: var(--font);
    font-size: 14px;
}

textarea {
    max-width: 100%;
    resize: none;
}

ul {
    margin: 15px 0;
    padding: 0;
    list-style-position: inside;
}

p {
    margin: 15px 0;
    padding: 0;
}

a {
    color: inherit;
    transition: all 250ms linear;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    border: 0;
}

*:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}

@media (max-width: 1380px) {
    :root {
        --container-width: 100%;
    }
    .container {
        padding-left: 3vw;
        padding-right: 3vw;
    }
    .home-img {
        height: 400px;
        overflow: hidden;
    }
    .home-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .site-home h1, .site-home h1 + p {
        max-width: none;
        margin: 0 0 20px;
        padding: 0;
    }
    .site-home hr {
        margin: 25px 0 0;
    }
    .image-img {
        height: 400px;
        overflow: hidden;
    }
    .image-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .site-image h1 {
        padding-top: 0;
    }
    .site-tradition > :first-child > div {
        float: none;
        max-width: none;
        padding: 0 3vw;
    }
    .site-experience > :last-child > div {
        max-width: none;
        padding: 0 3vw;
    }
}

@media (max-width: 1086px) {
    body {
        padding: 0;
    }
    header {
        position: static;
    }
    .menu-responsive {
        display: block;
    }
    header nav {
        position: fixed;
        top: 0;
        left: 0;
        float: none;
        display: block;
        width: 100vw;
        height: 100vh;
        padding: 45px 0 0;
        background-color: #fff;
        transform: translateX(-100%);
        transition: all 350ms linear;
        touch-action: none;
        z-index: 48;
    }
    header nav.active {
        transform: translateX(0);
    }
    header nav ul {
        text-align: left;
    }
    header nav ul li {
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    header nav ul li a {
        padding: 10px 17px;
    }
    header nav ul ul {
        display: block;
        position: static;
        width: auto;
        margin: 0;
        padding: 10px 0 0 20px;
    }
    header nav ul li:hover ul {
        display: block;
    }
    .nav-submenu {
        display: block;
        position: static;
        border-bottom: 0;
        background-color: transparent;
    }
    .nav-submenu .font13 {
        display: none;
    }
    .nav-submenu-list {
        display: block;
        margin: 0;
    }
    .nav-submenu-list a {
        padding: 0;
    }
    .nav-submenu-list span {
        width: 30px;
        height: 30px;
    }
    header nav > p {
        display: block;
        padding: 0 17px;
        color: var(--blue);
        text-align: left;
    }
    header nav > p img {
        position: relative;
        top: 1px;
        width: 12px;
        margin-right: 3px;
        filter: invert(.3);
    }
    header nav > p a {
        text-decoration: none;
    }
    .header-right {
        padding-right: 30px;
    }
    .header-top .container {
        display: block;
    }
    .header-top {
        display: none;
        position: absolute;
        top: 425px;
        left: 0;
        right: 0;
        max-width: 295px;
        margin: auto;
        padding: 5px 0;
        border-radius: 30px;
        background-color: #fff;
        color: var(--blue);
        box-shadow: 0 10px 5px #ddd;
        z-index: 3;
    }
    .header-top p:first-child {
        display: none;
    }
    .header-top a, .header-top a:hover {
        display: block;
        margin: 10px 0;
    }
    .header-top img {
        filter: invert(.5);
    }
    .home-assets {
        display: none;
    }
    .site-offer {
        padding-top: 45px;
    }
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacts {
        display: block;
    }
    .contact-border {
        display: none;
    }
    .contact-map {
        display: block;
    }
    .calculator-fixed {
        top: 20px;
    }
    .halves {
        display: block;
    }
    .halves > * {
        width: auto;
    }
    .site-calculator .halves {
        display: flex;
    }
    .site-calculator .halves > * {
        width: 48%;
    }
    .thirds {
        display: block;
    }
    .thirds > * {
        width: auto;
    }
    footer {
        width: 100vw;
        overflow-x: hidden;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        display: block;
        padding: 10px 0;
    }
    .footer-bottom p:nth-child(2), .footer-bottom p:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --font-huge: 30px;
        --font-big: 24px;
        --font-medium: 22px;
    }
    .container {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .header-top .container {
        display: block;
    }
    .site-tradition {
        display: block;
    }
    .tradition-img {
        padding: 20px 0;
    }
    .site-experience {
        grid-template-columns: repeat(1, 1fr);
    }
    .experience-img {
        order: 2;
        padding: 20px 0;
    }
    .products {
        grid-template-columns: repeat(1, 1fr);
    }
    .site-calculator {
        gap: 15px;
        font-size: 12px;
    }
    .calculator-input input {
        width: 100%;
    }
    .calculator-input span {
        position: absolute;
        top: 30px;
        left: auto;
        right: 5px;
    }
    .calculator-input em {
        margin-left: 0;
    }
    .calculator-fixed hr {
        margin: 5px auto -1px;
    }
    .calculator-input .atype_label em {
        left: calc(100% + 10px);
    }
    .white-box {
        padding: 1px 15px 10px;
    }
    .zig-zag-1 {
        display: block;
    }
    .zig-zag-2 {
        grid-template-columns: 1fr;
    }
    .zig-zag-2 > *:first-child {
        order: 2;
    }
    .zig-zag-2 + * {
        padding-top: 40px;
    }
}

@media (max-width: 555px) {
    .header-top a {
        display: block;
    }
    .logo img {
        height: 13px;
    }
    .header-right {
        gap: 0 5px;
    }
    #priceRequestForm > :last-child, #inquiryModal2 > :last-child {
        display: block;
    }
    #priceRequestForm .link {
        padding-top: 15px;
    }
    .link > * {
        padding: 8px 15px 10px;
        background: none;
    }
    .link-red > * {
        padding: 8px 15px 10px;
        background: var(--red) none;
    }
    .link > *:hover {
        background: var(--red) none;
    }
    .link-red > *:hover {
        background: #fff none;
    }
    .footer-top {
        grid-template-columns: repeat(1, 1fr);
    }
}
