/* ----------------------------------------
    CSS RESET
---------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap");
html {
  color: #000;
  background: #FFF; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0;
  font-variant: normal; }

sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%; }

legend {
  color: #000; }

#yui3-css-stamp.cssreset {
  display: none; }

/* ----------------------------------------
    FONTS
---------------------------------------- */
@font-face {
  font-family: Quadon;
  font-weight: 400;
  src: url("../assets/fonts/quadon-regular.otf") format("opentype"); }
@font-face {
  font-family: Quadon;
  font-weight: 700;
  src: url("../assets/fonts/quadon-bold.otf") format("opentype"); }
/* ----------------------------------------
    COLORS
---------------------------------------- */
/* ----------------------------------------
    SIZES
---------------------------------------- */
/* ----------------------------------------
    MIXINS
---------------------------------------- */
/* ----------------------------------------
    GLOBAL
---------------------------------------- */
* {
  box-sizing: border-box;
  outline: none; }

html {
  scroll-behavior: smooth; }

html,
body {
  width: 100%;
  height: 100%; }

body {
  padding-top: 84px; }

a {
  text-decoration: none;
  cursor: pointer; }

.page {
  padding-top: 80px;
  padding-bottom: 80px; }

.clear {
  clear: both; }

/* ----------------------------------------
    LOADER
---------------------------------------- */
#loader img {
  width: 150px; }

#loader {
  background: white;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-shadow: 3rem 0 0 rgba(0, 0, 0, 0.75); }
  #loader img {
    -webkit-animation-name: loader;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: forwards;
    -webkit-animation-timing-function: 1;
    -webkit-animation-direction: alternate;
    animation-name: loader;
    animation-duration: 1s;
    animation-iteration-count: forwards;
    animation-timing-function: 1;
    animation-direction: alternate; }

@keyframes loader {
  0% {
    opacity: 0;
    -webkit-transform: scale(2) rotateY(-180deg);
    -moz-transform: scale(2) rotateY(-180deg);
    -ms-transform: scale(2) rotateY(-180deg);
    -o-transform: scale(2) rotateY(-180deg); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); } }
@-webkit-keyframes loader {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
    -webkit-filter: blur(0.5rem);
    -moz-filter: blur(0.5rem);
    -ms-filter: blur(0.5rem);
    -o-filter: blur(0.5rem);
    filter: blur(0.5rem); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: blur(0rem);
    -moz-filter: blur(0rem);
    -ms-filter: blur(0rem);
    -o-filter: blur(0rem);
    filter: blur(0rem); } }
/* ----------------------------------------
    NAVIGATION
---------------------------------------- */
.navigation {
  background-color: white;
  position: fixed;
  z-index: 100;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  padding: 26px 0 26px 0;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1); }
  .navigation .wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0;
    max-width: 1110px;
    height: 32px;
    margin: auto; }
    .navigation .wrap .logo {
      position: relative;
      z-index: 140;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      display: block;
      height: 100%; }
      .navigation .wrap .logo img {
        height: 100%; }
    .navigation .wrap ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      height: 100%; }
      .navigation .wrap ul li .dropdown {
        display: inline-block; }
        .navigation .wrap ul li .dropdown .link {
          display: flex;
          justify-content: start;
          align-items: center;
          gap: 8px;
          height: 100%;
          font-family: "Mulish";
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0.05em;
          color: black;
          cursor: pointer; }
          .navigation .wrap ul li .dropdown .link .arrow-down {
            width: 8px;
            margin-top: 3px;
            transform: rotate(90deg);
            filter: brightness(0) saturate(100%); }
        .navigation .wrap ul li .dropdown .dropdown-content {
          position: absolute;
          z-index: 1;
          top: auto;
          right: auto;
          bottom: auto;
          left: auto;
          padding-top: 31px;
          visibility: hidden;
          opacity: 0;
          transition: visibility 0s, opacity 0.3s linear; }
          .navigation .wrap ul li .dropdown .dropdown-content .wrap {
            background-color: white;
            height: auto;
            -webkit-box-shadow: 0px 0px 50px 6px rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0px 0px 50px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 50px 6px rgba(0, 0, 0, 0.1); }
        .navigation .wrap ul li .dropdown .dropdown-content-1 .wrap {
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 64px;
          padding: 32px; }
          .navigation .wrap ul li .dropdown .dropdown-content-1 .wrap .category-box {
            width: 160px;
            text-align: center; }
            .navigation .wrap ul li .dropdown .dropdown-content-1 .wrap .category-box .category-title {
              font-family: "Mulish";
              font-weight: 400;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0.05em;
              color: black; }
            .navigation .wrap ul li .dropdown .dropdown-content-1 .wrap .category-box img {
              width: 100%; }
        .navigation .wrap ul li .dropdown .dropdown-content-2 {
          left: 0;
          width: 100%; }
          .navigation .wrap ul li .dropdown .dropdown-content-2 .wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            max-width: 100%; }
            .navigation .wrap ul li .dropdown .dropdown-content-2 .wrap .content {
              display: flex;
              justify-content: space-between;
              align-items: start;
              gap: 48px;
              max-width: 1110px;
              padding: 32px 0; }
              .navigation .wrap ul li .dropdown .dropdown-content-2 .wrap .content .category-box {
                width: calc(100% / 4); }
                .navigation .wrap ul li .dropdown .dropdown-content-2 .wrap .content .category-box .category-title {
                  display: block;
                  width: 100%;
                  margin-bottom: 24px;
                  font-family: "Mulish";
                  font-weight: 700;
                  font-size: 14px;
                  line-height: normal;
                  letter-spacing: 0.05em;
                  color: black; }
                .navigation .wrap ul li .dropdown .dropdown-content-2 .wrap .content .category-box a {
                  display: block;
                  margin-bottom: 16px;
                  font-family: "Mulish";
                  font-weight: 400;
                  font-size: 14px;
                  line-height: 24px;
                  letter-spacing: 0em;
                  color: #505050; }
                .navigation .wrap ul li .dropdown .dropdown-content-2 .wrap .content .category-box a:last-of-type {
                  margin-bottom: 0; }
      .navigation .wrap ul li .dropdown:hover .dropdown-content {
        visibility: visible;
        opacity: 1; }
      .navigation .wrap ul li .static-link {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 8px;
        height: 100%;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.05em;
        color: black; }
        .navigation .wrap ul li .static-link .arrow-down {
          width: 8px;
          margin-top: 3px;
          transform: rotate(90deg);
          filter: brightness(0) saturate(100%); }
      .navigation .wrap ul .mobile {
        display: none; }
    .navigation .wrap .language-selector {
      display: flex;
      justify-content: start;
      align-items: center;
      gap: 0;
      height: 100%; }
      .navigation .wrap .language-selector .dropdown {
        position: relative;
        z-index: 1;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        display: inline-block; }
        .navigation .wrap .language-selector .dropdown .link {
          display: flex;
          justify-content: start;
          align-items: center;
          gap: 8px;
          height: 100%;
          font-family: "Mulish";
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0.05em;
          color: black;
          cursor: pointer; }
          .navigation .wrap .language-selector .dropdown .link .arrow-down {
            width: 8px;
            margin-top: 3px;
            transform: rotate(90deg);
            filter: brightness(0) saturate(100%); }
        .navigation .wrap .language-selector .dropdown .dropdown-content {
          position: absolute;
          z-index: 1;
          top: auto;
          right: auto;
          bottom: auto;
          left: auto;
          padding-top: 31px;
          visibility: hidden;
          opacity: 0;
          transition: visibility 0s, opacity 0.3s linear; }
          .navigation .wrap .language-selector .dropdown .dropdown-content .content {
            background-color: white;
            display: block;
            padding: 20px 32px;
            -webkit-box-shadow: 0px 0px 50px 6px rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0px 0px 50px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 50px 6px rgba(0, 0, 0, 0.1); }
            .navigation .wrap .language-selector .dropdown .dropdown-content .content a {
              display: block;
              margin-bottom: 16px;
              font-family: "Mulish";
              font-weight: 400;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0.05em;
              color: black; }
            .navigation .wrap .language-selector .dropdown .dropdown-content .content a:last-of-type {
              margin-bottom: 0; }
      .navigation .wrap .language-selector .dropdown:hover .dropdown-content {
        visibility: visible;
        opacity: 1; }
    .navigation .wrap .ue {
      height: 100%; }
      .navigation .wrap .ue img {
        height: 100%; }

/* ----------------------------------------
    BURGER
---------------------------------------- */
.burger {
  position: absolute;
  z-index: 150;
  top: 31px;
  right: 0;
  bottom: auto;
  left: auto;
  display: none;
  width: 2rem;
  height: 2rem;
  margin: 0 1rem;
  cursor: pointer; }
  .burger span {
    background: black;
    position: absolute;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 0.15rem;
    transform-origin: center center;
    transition: 0.20s;
    cursor: pointer; }
  .burger span.rotate1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg); }
  .burger span.rotate2 {
    top: 10px !important;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg); }
  .burger span.none {
    display: none; }
  .burger span:nth-child(2) {
    top: 10px; }
  .burger span:nth-child(3) {
    top: 20px; }
  .burger span:nth-child(4) {
    top: 30px; }

/* ----------------------------------------
    FOOTER
---------------------------------------- */
.footer {
  background-color: transparent;
  width: 100%;
  padding: 30px 0 0px 0;
  border-top: solid 1px whitesmoke; }
  .footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    max-width: 1110px;
    margin: auto;
    padding-bottom: 48px; }
    .footer .wrap .col {
      width: calc(100% / 6); }
      .footer .wrap .col .logo {
        width: 128px; }
      .footer .wrap .col .socials {
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 16px;
        width: 100%; }
        .footer .wrap .col .socials img {
          height: 16px;
          filter: brightness(0) saturate(100%);
          margin-top: 10px; }
      .footer .wrap .col .title {
        margin-bottom: 24px;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.05em;
        color: black; }
      .footer .wrap .col ul li {
        margin-bottom: 16px; }
        .footer .wrap .col ul li a {
          font-family: "Mulish";
          font-weight: 400;
          font-size: 10px;
          line-height: normal;
          letter-spacing: 0.03em;
          color: black;
          font-size: 11px; }
      .footer .wrap .col ul li:last-of-type {
        margin-bottom: 0; }
    .footer .wrap .col-10 {
      display: flex;
      align-items: center;
      gap: 50px;
      height: 35px; }
    .footer .wrap .col-7 {
      display: none; }

/* ----------------------------------------
    COPYRIGHT
---------------------------------------- */
.copyright {
  background-color: transparent;
  width: 100%;
  padding-bottom: 24px; }
  .copyright .wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0;
    max-width: 1110px;
    margin: auto; }
    .copyright .wrap p {
      font-family: "Mulish";
      font-weight: 400;
      font-size: 10px;
      line-height: normal;
      letter-spacing: 0.03em;
      color: rgba(0, 0, 0, 0.5); }
    .copyright .wrap .kodigo a {
      display: flex;
      gap: 4px; }
      .copyright .wrap .kodigo a span {
        font-family: "Mulish";
        font-weight: 400;
        font-size: 10px;
        line-height: normal;
        letter-spacing: 0.03em;
        font-size: 10px;
        line-height: 10px;
        color: rgba(0, 0, 0, 0.5); }
      .copyright .wrap .kodigo a img {
        position: relative;
        top: 1px;
        display: block;
        height: 8px;
        filter: brightness(0) saturate(100%) invert(51%) sepia(9%) saturate(13%) hue-rotate(12deg) brightness(97%) contrast(98%); }

/* ----------------------------------------
    COUNTER
---------------------------------------- */
.counter {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  display: none; }
  .counter .arrow img {
    position: relative;
    z-index: 1;
    top: 3px;
    right: auto;
    bottom: auto;
    left: auto;
    width: 8px; }
  .counter .arrow-prev img {
    transform: rotate(-180deg); }
  .counter .number {
    font-family: "Mulish";
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.05em;
    color: white; }
  .counter .lines {
    position: relative;
    z-index: 1;
    top: 1px;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: 60px;
    height: 2px;
    opacity: 0.2; }
    .counter .lines .line-1 {
      background-color: white;
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 1px; }
    .counter .lines .line-2 {
      background-color: white;
      position: absolute;
      z-index: 2;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      display: block;
      width: 0;
      height: 2px; }

/* ----------------------------------------
    SLIDER
---------------------------------------- */
.slider-wrap {
  width: 100%;
  height: 100%; }

.regular33 {
  position: relative;
  width: 100%;
  height: 100%; }
  .regular33 .slick-list {
    width: 100%;
    height: 100%; }
    .regular33 .slick-list .slick-track {
      width: 100%;
      height: 100%; }
      .regular33 .slick-list .slick-track .slick-slide {
        width: 100%;
        height: 100%;
        margin: 0; }
        .regular33 .slick-list .slick-track .slick-slide div {
          width: 100%;
          height: 100%; }
          .regular33 .slick-list .slick-track .slick-slide div .slider-wrap {
            width: 100%;
            height: 100%; }

.scroll-bar {
  width: 40px;
  position: absolute;
  z-index: 999;
  left: 50%;
  bottom: 24px;
  margin-left: -20px;
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(161deg) brightness(93%) contrast(119%); }
  @media only screen and (max-width: 950px) {
    .scroll-bar {
      display: none; } }

.scroll-bar-2 {
  display: none;
  width: 40px;
  position: absolute;
  z-index: 999;
  left: 50%;
  bottom: 24px;
  margin-left: -20px;
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(161deg) brightness(93%) contrast(119%); }
  @media only screen and (max-width: 950px) {
    .scroll-bar-2 {
      display: block; } }

.slider2 {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /*animation: backgroundeffect 15s;*/ }
  .slider2 .overlay {
    background: black;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 65%);
    position: absolute;
    z-index: 1;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%; }
  .slider2 .photo {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background-image: url("../assets/images/demo/slider3.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    animation: backgroundeffect 40s;
    animation-iteration-count: infinite; }
  .slider2 .wrap {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0;
    max-width: 1110px;
    height: 100%;
    margin: auto; }
    .slider2 .wrap .content {
      height: auto !important; }
      .slider2 .wrap .content h1 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 88px;
        line-height: 80px;
        letter-spacing: 0.05em;
        color: white; }
      .slider2 .wrap .content p {
        margin: 8px 0 48px 0;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: white;
        font-size: 17px;
        line-height: 20px; }
      .slider2 .wrap .content a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        float: left;
        padding: 14px 28px;
        transition: 0.3s;
        border: solid 1px black;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.05em;
        color: black;
        border-color: white;
        color: white; }
      .slider2 .wrap .content a:hover {
        background-color: black;
        color: white;
        background-color: white;
        color: black; }
    .slider2 .wrap .counter {
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 3vw;
      left: 0; }
      .slider2 .wrap .counter .arrow {
        display: none; }

/* ----------------------------------------
    PARALLAX
---------------------------------------- */
.parallax {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 400px; }
  .parallax .overlay {
    background: black;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 65%);
    position: absolute;
    z-index: 1;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%; }
  .parallax .wrap {
    position: relative;
    z-index: 2;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0;
    max-width: 1110px;
    height: 100%;
    margin: auto; }
    .parallax .wrap .content {
      width: 100%; }
      .parallax .wrap .content * {
        color: white; }
      .parallax .wrap .content h1 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 88px;
        line-height: 80px;
        letter-spacing: 0.05em; }
      .parallax .wrap .content h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 48px;
        line-height: 40px;
        letter-spacing: 0em; }
      .parallax .wrap .content p {
        margin-top: 8px;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em; }

/* ----------------------------------------
    STATIC LIST
---------------------------------------- */
.static-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px; }
  .static-list .col {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% / 4);
    min-height: 440px;
    overflow: hidden; }
    .static-list .col .background {
      position: absolute;
      z-index: 1;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: cover;
      width: 100%;
      height: 100%;
      transition: transform 0.3s ease-in-out; }
    .static-list .col .content-1 {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 0;
      flex-wrap: wrap;
      flex-direction: column;
      height: 100%; }
      .static-list .col .content-1 h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black; }
      .static-list .col .content-1 p {
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #505050; }
      .static-list .col .content-1 .button {
        display: flex;
        justify-content: start;
        align-items: end;
        gap: 0; }
        .static-list .col .content-1 .button a {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 0;
          float: left;
          padding: 14px 28px;
          transition: 0.3s;
          border: solid 1px black;
          font-family: "Mulish";
          font-weight: 700;
          font-size: 14px;
          line-height: normal;
          letter-spacing: 0.05em;
          color: black; }
        .static-list .col .content-1 .button a:hover {
          background-color: black;
          color: white; }
    .static-list .col .content-2 .overlay {
      background: black;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 65%);
      position: absolute;
      z-index: 1;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      width: 100%;
      height: 100%; }
    .static-list .col .content-2 a {
      position: absolute;
      z-index: 2;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      display: block;
      width: 100%;
      height: 100%; }
      .static-list .col .content-2 a .title {
        position: absolute;
        z-index: 1;
        top: auto;
        right: auto;
        bottom: 16px;
        left: 16px;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 16px;
        line-height: normal;
        letter-spacing: 0.01em;
        color: white; }
  .static-list .col:hover .background {
    transform: scale(1.2); }

/* ----------------------------------------
    DYNAMIC LIST
---------------------------------------- */
.dynamic-list .header {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  margin-bottom: 30px; }
  .dynamic-list .header .content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px; }
    .dynamic-list .header .content .col {
      width: calc(100% / 3); }
      .dynamic-list .header .content .col h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black; }
      .dynamic-list .header .content .col p {
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: black; }
    .dynamic-list .header .content .col:last-of-type {
      width: calc(((100% / 3) + 15px) * 2); }
  .dynamic-list .header .counter {
    position: absolute;
    z-index: 1;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto; }
    .dynamic-list .header .counter .number {
      color: black; }
    .dynamic-list .header .counter .lines .line-1 {
      background-color: black; }
    .dynamic-list .header .counter .lines .line-2 {
      background-color: black; }
.dynamic-list .items {
  width: 100%; }
  .dynamic-list .items .item {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden; }
    .dynamic-list .items .item .background {
      position: absolute;
      z-index: 1;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: cover;
      width: 100%;
      height: 100%;
      transition: transform 0.3s ease-in-out; }
    .dynamic-list .items .item .overlay {
      background: black;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 65%);
      position: absolute;
      z-index: 1;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      width: 100%;
      height: 100%; }
    .dynamic-list .items .item .title {
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 16px;
      left: 16px;
      width: 50%;
      font-family: "Mulish";
      font-weight: 700;
      font-size: 16px;
      line-height: normal;
      letter-spacing: 0.01em;
      color: white; }
  .dynamic-list .items .item:hover .background {
    transform: scale(1.2); }

/* ----------------------------------------
    MIXED ITEM
---------------------------------------- */
.mixed-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  min-height: 350px; }
  .mixed-item .col {
    width: 50%;
    order: 1; }
    .mixed-item .col .content {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 30px;
      flex-wrap: wrap;
      flex-direction: column;
      height: 100%; }
      .mixed-item .col .content h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black; }
      .mixed-item .col .content p {
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #505050; }
      .mixed-item .col .content ul {
        padding-left: 14px;
        list-style-type: disc;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #505050; }
        .mixed-item .col .content ul strong {
          font-family: "Mulish";
          font-weight: 700;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0em; }
      .mixed-item .col .content .button {
        display: flex;
        justify-content: start;
        align-items: end;
        gap: 0; }
        .mixed-item .col .content .button a {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 0;
          float: left;
          padding: 14px 28px;
          transition: 0.3s;
          border: solid 1px black;
          font-family: "Mulish";
          font-weight: 700;
          font-size: 14px;
          line-height: normal;
          letter-spacing: 0.05em;
          color: black; }
        .mixed-item .col .content .button a:hover {
          background-color: black;
          color: white; }
  .mixed-item .photo {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    order: 2; }

/* ----------------------------------------
    PANEL LIST
---------------------------------------- */
.panel-list {
  background-image: url("../assets/images/demo/panel.jpg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: 440px; }
  .panel-list a {
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: calc(100% / 6);
    padding: 16px;
    border-right: solid 1px white;
    transition: all 0.5s ease; }
    .panel-list a span {
      font-family: "Mulish";
      font-weight: 700;
      font-size: 16px;
      line-height: normal;
      letter-spacing: 0.01em; }
    .panel-list a span:nth-of-type(1) {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.65); }
    .panel-list a span:nth-of-type(2) {
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 85px;
      left: 16px;
      color: rgba(255, 255, 255, 0.65); }
    .panel-list a span:nth-of-type(3) {
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 16px;
      left: 16px;
      color: white; }
      .panel-list a span:nth-of-type(3) span {
        display: none;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: white; }
  .panel-list a:last-of-type {
    border-right: none; }
  .panel-list a:hover {
    background-color: rgba(0, 0, 0, 0.65); }
  .panel-list .big-panel {
    background-color: #325f22;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    width: 40% !important; }
    .panel-list .big-panel span:nth-of-type(1) {
      display: none; }
    .panel-list .big-panel span:nth-of-type(2) {
      display: none; }
    .panel-list .big-panel span:nth-of-type(3) {
      position: relative;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      opacity: 0;
      font-family: "Mulish";
      font-weight: 700;
      font-size: 36px;
      line-height: 40px;
      letter-spacing: 0.01em; }
      .panel-list .big-panel span:nth-of-type(3) span {
        display: block;
        margin-top: 24px; }
    .panel-list .big-panel .show-span {
      opacity: 1 !important; }
  .panel-list .big-panel:hover {
    background-color: #325f22; }
  .panel-list .small-panel {
    width: clac(60%/5); }

.panel-list2 {
  background-image: url("../assets/images/demo/panel.jpg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: 440px; }
  .panel-list2 a {
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: calc(100% / 5);
    padding: 16px;
    border-right: solid 1px white;
    transition: all 0.5s ease; }
    .panel-list2 a span {
      font-family: "Mulish";
      font-weight: 700;
      font-size: 16px;
      line-height: normal;
      letter-spacing: 0.01em; }
    .panel-list2 a span:nth-of-type(1) {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.65); }
    .panel-list2 a span:nth-of-type(2) {
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 65px;
      left: 16px;
      color: rgba(255, 255, 255, 0.65); }
    .panel-list2 a span:nth-of-type(3) {
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 16px;
      left: 16px;
      color: white; }
      .panel-list2 a span:nth-of-type(3) span {
        display: none;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: white; }
  .panel-list2 a:last-of-type {
    border-right: none; }
  .panel-list2 a:hover {
    background-color: rgba(0, 0, 0, 0.65); }
  .panel-list2 .big-panel {
    background-color: #325f22;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    width: 40% !important; }
    .panel-list2 .big-panel span:nth-of-type(1) {
      display: none; }
    .panel-list2 .big-panel span:nth-of-type(2) {
      display: none; }
    .panel-list2 .big-panel span:nth-of-type(3) {
      position: relative;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      opacity: 0;
      font-family: "Mulish";
      font-weight: 700;
      font-size: 36px;
      line-height: 40px;
      letter-spacing: 0.01em; }
      .panel-list2 .big-panel span:nth-of-type(3) span {
        display: block;
        margin-top: 24px; }
    .panel-list2 .big-panel .show-span {
      opacity: 1 !important; }
  .panel-list2 .big-panel:hover {
    background-color: #325f22; }
  .panel-list2 .small-panel {
    width: clac(60%/5); }

/* ----------------------------------------
    CERTIFICATE LIST
---------------------------------------- */
.certificate-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 60px; }
  .certificate-list .certificate {
    width: calc(100% / 6); }
    .certificate-list .certificate .logo {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      width: 100%;
      aspect-ratio: 1 / 1;
      border: solid 1px #dadada; }
      .certificate-list .certificate .logo .vertical {
        height: 60px; }
      .certificate-list .certificate .logo .horizontal {
        width: 90px; }
    .certificate-list .certificate p {
      padding: 24px 10px 0 10px;
      text-align: center;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 10px;
      line-height: normal;
      letter-spacing: 0.03em;
      color: black; }

/* ----------------------------------------
    CONTACT BANNER
---------------------------------------- */
.contact-banner {
  background-color: rgba(50, 95, 34, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 60px 80px; }
  .contact-banner .row h2 {
    margin: 10px 0;
    font-family: "Mulish";
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.01em;
    color: #325f22; }
  .contact-banner .row p {
    font-family: "Mulish";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0em;
    color: #325f22; }
  .contact-banner .row a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    float: left;
    padding: 14px 28px;
    transition: 0.3s;
    border: solid 1px black;
    font-family: "Mulish";
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.05em;
    color: black;
    border-color: #325f22;
    color: #325f22; }
  .contact-banner .row a:hover {
    background-color: black;
    color: white;
    background-color: #325f22;
    color: white; }

/* ----------------------------------------
    PRODUCT LIST
---------------------------------------- */
.product-list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 25px 15px;
  flex-wrap: wrap;
  width: 100%; }
  .product-list .product {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: calc((100% / 3) - 15px);
    aspect-ratio: 1 / 1;
    border: solid 1px #325f22;
    background-size: 70%;
    padding-bottom: 57px;
    position: realtive; }
    .product-list .product .photo {
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: 85%;
      width: 100%;
      aspect-ratio: 1 / 1; }
    .product-list .product .info {
      background-color: #325f22;
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 16px; }
      .product-list .product .info .title {
        display: block;
        width: 100%;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: white;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px; }
      .product-list .product .info .subtitle {
        display: block;
        width: 100%;
        margin-bottom: 0px;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: white;
        display: none; }
    .product-list .product .list {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: rgba(50, 95, 34, 0.7);
      height: calc(100% - 60px);
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease-in-out; }
      .product-list .product .list span {
        display: block;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 10px;
        line-height: normal;
        letter-spacing: 0.03em;
        line-height: 17px;
        color: white;
        font-size: 14px;
        line-height: 28px; }
  .product-list .product:hover .list {
    opacity: 1 !important; }

.product-list2 {
  display: block;
  width: calc(100% + 20px);
  margin-left: -10px; }
  .product-list2 .product {
    width: 100%; }
  .product-list2 .counter {
    position: relative;
    margin-bottom: 20px;
    justify-content: end;
    padding-right: 10px; }
    .product-list2 .counter .lines {
      background-color: black; }

.product-list3 {
  display: block;
  width: calc(100% + 20px);
  margin-left: -10px; }
  .product-list3 .product {
    width: 100%; }
  .product-list3 .counter {
    position: relative;
    margin-bottom: 20px;
    justify-content: end;
    padding-right: 10px; }
    .product-list3 .counter .lines {
      background-color: black; }

/* ----------------------------------------
    REALIZATION LIST
---------------------------------------- */
.realization-list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px 30px;
  flex-wrap: wrap; }
  .realization-list .item {
    background-color: whitesmoke;
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: calc((100% / 3) - 20px);
    aspect-ratio: 35 / 22;
    overflow: hidden; }
    .realization-list .item .background {
      position: absolute;
      z-index: 1;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: cover;
      width: 100%;
      height: 100%;
      transition: transform 0.3s ease-in-out; }
  .realization-list .item:hover .background {
    transform: scale(1.2); }

/* ----------------------------------------
    HOME
---------------------------------------- */
.page-home {
  width: 100%;
  padding-top: 0; }
  .page-home .wrap {
    max-width: 1110px;
    margin: auto; }
    .page-home .wrap .static-list {
      margin-top: 80px; }
    .page-home .wrap .dynamic-list {
      margin-top: 64px; }
    .page-home .wrap .mixed-list {
      margin-top: 64px; }
      .page-home .wrap .mixed-list .mixed-item {
        margin-bottom: 64px; }
      .page-home .wrap .mixed-list .mixed-item:nth-of-type(odd) .col {
        order: 2; }
      .page-home .wrap .mixed-list .mixed-item:nth-of-type(odd) .photo {
        order: 1; }
      .page-home .wrap .mixed-list .mixed-item:nth-of-type(even) .col {
        order: 1; }
      .page-home .wrap .mixed-list .mixed-item:nth-of-type(even) .photo {
        order: 2; }
      .page-home .wrap .mixed-list .mixed-item:last-of-type {
        margin-bottom: 0; }
    .page-home .wrap .contact-banner {
      margin-top: 64px; }

/* ----------------------------------------
    CATEGORY
---------------------------------------- */
.page-category {
  width: 100%; }
  .page-category .wrap {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 1110px;
    margin: auto; }
    .page-category .wrap .sort {
      position: absolute;
      z-index: 1;
      top: -56px;
      right: 0;
      bottom: auto;
      left: auto; }
      .page-category .wrap .sort p {
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 8px;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.05em;
        color: rgba(0, 0, 0, 0.5); }
        .page-category .wrap .sort p a {
          position: relative;
          top: -2px;
          cursor: pointer; }
          .page-category .wrap .sort p a select {
            font-family: "Mulish";
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0.05em;
            color: black;
            background: none;
            border: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            width: 150px;
            height: 24px;
            cursor: pointer;
            position: relative;
            top: 2px; }
          .page-category .wrap .sort p a img {
            position: absolute;
            top: 8px;
            right: 3px;
            pointer-events: none;
            width: 8px;
            transform: rotate(90deg);
            filter: brightness(0) saturate(100%); }
    .page-category .wrap .product-list {
      margin-bottom: 40px; }

/* ----------------------------------------
    PRODUCT
---------------------------------------- */
.page-product {
  width: 100%; }
  .page-product .wrap {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 1110px;
    margin: auto; }
    .page-product .wrap .product-card {
      display: flex;
      justify-content: space-between; }
      .page-product .wrap .product-card .photos {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        width: 422px; }
        .page-product .wrap .product-card .photos .big-photo {
          width: 350px;
          height: 350px;
          background-size: cover;
          background-position: center center;
          display: flex;
          border: solid 1px #325f22; }
          .page-product .wrap .product-card .photos .big-photo model-viewer {
            width: 100%;
            height: 100%; }
        .page-product .wrap .product-card .photos .thumbnails {
          position: relative;
          height: 309px;
          width: 61px;
          margin-top: 19px;
          padding: 0; }
          .page-product .wrap .product-card .photos .thumbnails section {
            height: 300px; }
          .page-product .wrap .product-card .photos .thumbnails .small-photo {
            /*background-color: blue;*/
            width: 48px;
            height: 48px;
            margin-top: 4px;
            margin-bottom: 4px;
            background-size: cover;
            background-position: center center; }
            @media only screen and (max-width: 950px) {
              .page-product .wrap .product-card .photos .thumbnails .small-photo {
                margin: 0; } }
          .page-product .wrap .product-card .photos .thumbnails .active {
            border: solid 1px #000; }
          @media only screen and (max-width: 950px) {
            .page-product .wrap .product-card .photos .thumbnails {
              height: 48px;
              width: calc(100% - 20px);
              margin: 0 10px 0 10px; }
              .page-product .wrap .product-card .photos .thumbnails .slick-prev222 {
                position: absolute;
                top: 15px;
                left: -10px; }
                .page-product .wrap .product-card .photos .thumbnails .slick-prev222 img {
                  transform: rotate(-180deg); }
              .page-product .wrap .product-card .photos .thumbnails .slick-next222 {
                position: absolute;
                top: 15px;
                left: auto;
                right: -12px; }
                .page-product .wrap .product-card .photos .thumbnails .slick-next222 img {
                  transform: rotate(0deg); }
              .page-product .wrap .product-card .photos .thumbnails .slick-slide {
                width: 44px;
                margin: 0px 8px; } }
      .page-product .wrap .product-card .data {
        width: 635px; }
        .page-product .wrap .product-card .data h1 {
          font-family: "Mulish";
          font-weight: 700;
          font-size: 36px;
          line-height: 40px;
          letter-spacing: 0.01em;
          color: black;
          text-transform: uppercase; }
        .page-product .wrap .product-card .data .subtitle {
          font-family: "Mulish";
          font-weight: 700;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          color: #325f22;
          margin-bottom: 16px;
          text-transform: uppercase; }
        .page-product .wrap .product-card .data .short-description {
          font-family: "Mulish";
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0em;
          color: #505050;
          margin-bottom: 24px; }
        .page-product .wrap .product-card .data .params {
          display: flex;
          justify-content: start;
          gap: 40px; }
          .page-product .wrap .product-card .data .params .keys {
            font-family: "Mulish";
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0em;
            line-height: 27px;
            color: black; }
          .page-product .wrap .product-card .data .params .values {
            font-family: "Mulish";
            font-weight: 700;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0em;
            color: black;
            line-height: 27px; }
            .page-product .wrap .product-card .data .params .values a {
              color: #325f22; }
    .page-product .wrap .sub-menu {
      width: 100%;
      padding: 24px 0;
      border-top: solid 1px whitesmoke;
      border-bottom: solid 1px whitesmoke;
      margin: 48px 0 48px 0; }
      .page-product .wrap .sub-menu ul {
        width: 100%;
        display: flex;
        justify-content: space-between; }
        .page-product .wrap .sub-menu ul li a {
          font-family: "Mulish";
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0.05em;
          color: black;
          text-transform: uppercase;
          font-size: 13px; }
    .page-product .wrap .sub-menu-fixed {
      padding: 12px 0;
      position: fixed;
      top: 36px;
      background-color: white;
      z-index: 99;
      background-color: #fff;
      left: 0;
      border-bottom-color: #d0d0d0; }
      .page-product .wrap .sub-menu-fixed ul {
        max-width: 1110px;
        margin: auto; }
    .page-product .wrap .technical-data {
      position: relative; }
      .page-product .wrap .technical-data h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black;
        margin-bottom: 24px; }
      .page-product .wrap .technical-data .list {
        width: 100%;
        display: flex;
        justify-content: space-between; }
        .page-product .wrap .technical-data .list .col:nth-of-type(1) {
          width: 445px; }
        .page-product .wrap .technical-data .list .col:nth-of-type(2) {
          width: 540px; }
        .page-product .wrap .technical-data .list .col .row {
          width: 100%;
          display: flex;
          justify-content: space-between;
          margin-bottom: 8px; }
          .page-product .wrap .technical-data .list .col .row span:nth-of-type(1) {
            font-family: "Mulish";
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0em;
            color: #505050; }
          .page-product .wrap .technical-data .list .col .row span:nth-of-type(2) {
            font-family: "Mulish";
            font-weight: 700;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0em;
            color: #505050;
            text-align: right; }
    .page-product .wrap hr {
      background-color: whitesmoke;
      width: 100%;
      height: 1px;
      margin: 40px 0 40px 0;
      border: none; }
    .page-product .wrap .product-destiny {
      position: relative; }
      .page-product .wrap .product-destiny h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black;
        margin-bottom: 24px; }
      .page-product .wrap .product-destiny .box {
        background-color: transparent;
        width: 100%;
        padding: 0px; }
        .page-product .wrap .product-destiny .box .row {
          width: 100%;
          display: flex;
          justify-content: space-between; }
          .page-product .wrap .product-destiny .box .row .col {
            display: flex;
            justify-content: start;
            gap: 8px;
            align-items: center;
            width: calc(100%/4); }
            .page-product .wrap .product-destiny .box .row .col .icon {
              width: 40px;
              height: 40px;
              display: flex;
              align-items: center;
              justify-content: center; }
              .page-product .wrap .product-destiny .box .row .col .icon img {
                height: 36px;
                filter: brightness(0) saturate(100%) invert(24%) sepia(0%) saturate(3251%) hue-rotate(144deg) brightness(113%) contrast(81%); }
            .page-product .wrap .product-destiny .box .row .col p {
              font-family: "Mulish";
              font-weight: 400;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em;
              color: #505050; }
        .page-product .wrap .product-destiny .box .row:first-of-type {
          margin-bottom: 24px; }
    .page-product .wrap .main-information {
      position: relative; }
      .page-product .wrap .main-information h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black;
        margin-bottom: 24px; }
      .page-product .wrap .main-information .box {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 24px; }
        .page-product .wrap .main-information .box .col {
          width: 50%; }
          .page-product .wrap .main-information .box .col p {
            margin-bottom: 24px; }
          .page-product .wrap .main-information .box .col * {
            font-family: "Mulish";
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0em;
            color: #505050; }
          .page-product .wrap .main-information .box .col ul {
            list-style: disc;
            padding-left: 13px;
            margin-bottom: 24px; }
    .page-product .wrap .files {
      position: relative;
      margin-bottom: 24px; }
      .page-product .wrap .files h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black;
        margin-bottom: 24px; }
      .page-product .wrap .files .box {
        width: 100%;
        display: flex;
        gap: 30px;
        justify-align: space-between; }
        .page-product .wrap .files .box .col {
          width: 50%; }
          .page-product .wrap .files .box .col .row {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin-bottom: 16px; }
            .page-product .wrap .files .box .col .row p {
              font-family: "Mulish";
              font-weight: 400;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0.05em;
              color: black;
              text-transform: uppercase; }
            .page-product .wrap .files .box .col .row a {
              display: flex;
              gap: 5px;
              font-family: "Mulish";
              font-weight: 700;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em;
              color: #325f22;
              align-items: center; }
              .page-product .wrap .files .box .col .row a img {
                height: 16px;
                filter: brightness(0) saturate(100%) invert(31%) sepia(14%) saturate(1712%) hue-rotate(60deg) brightness(99%) contrast(99%); }
    .page-product .wrap .package-information {
      position: relative;
      margin-top: 40px; }
      .page-product .wrap .package-information h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black;
        margin-bottom: 24px; }
      .page-product .wrap .package-information .box {
        display: flex;
        justify-content: start;
        gap: 125px; }
        .page-product .wrap .package-information .box .col:nth-of-type(1) {
          width: 445px; }
          .page-product .wrap .package-information .box .col:nth-of-type(1) .row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px; }
            .page-product .wrap .package-information .box .col:nth-of-type(1) .row span:nth-of-type(1) {
              font-family: "Mulish";
              font-weight: 400;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em;
              color: #505050; }
            .page-product .wrap .package-information .box .col:nth-of-type(1) .row span:nth-of-type(2) {
              font-family: "Mulish";
              font-weight: 700;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em;
              color: #505050; }
    .page-product .wrap h3 {
      font-family: "Mulish";
      font-weight: 700;
      font-size: 36px;
      line-height: 40px;
      letter-spacing: 0.01em;
      color: black;
      margin-bottom: 24px;
      position: relative; }
    .page-product .wrap .product-banner {
      background-image: url("../assets/images/demo/realization.jpg");
      background-size: cover;
      background-position: center center;
      width: 100%;
      height: 350px;
      display: flex;
      align-items: center;
      position: relative; }
      .page-product .wrap .product-banner .overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 65%);
        position: absolute;
        z-index: 1;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 100%; }
      .page-product .wrap .product-banner .content {
        position: relative;
        z-index: 2;
        padding-left: 100px; }
        .page-product .wrap .product-banner .content p:first-of-type {
          font-family: "Mulish";
          font-weight: 700;
          font-size: 48px;
          line-height: 40px;
          letter-spacing: 0em;
          line-height: 48px;
          color: #FFF;
          font-size: 43px; }
        .page-product .wrap .product-banner .content p:last-of-type {
          font-family: "Mulish";
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0.05em;
          color: #FFF;
          margin-top: 10px; }
    .page-product .wrap .product-form {
      position: relative;
      background-color: rgba(50, 95, 34, 0.05);
      width: 100%;
      padding: 45px 0 40px 0; }
      .page-product .wrap .product-form .content {
        padding: 0 95px;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap; }
        .page-product .wrap .product-form .content h2 {
          font-family: "Mulish";
          font-weight: 700;
          font-size: 36px;
          line-height: 40px;
          letter-spacing: 0.01em;
          color: #325f22; }
        .page-product .wrap .product-form .content p {
          font-family: "Mulish";
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0em;
          color: #325f22; }
        .page-product .wrap .product-form .content a {
          width: 216px;
          height: 46px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-family: "Mulish";
          font-weight: 700;
          font-size: 14px;
          line-height: normal;
          letter-spacing: 0.05em;
          color: #325f22;
          margin-top: 32px;
          border: solid 1px #325f22; }
      .page-product .wrap .product-form img {
        position: absolute;
        top: -50px;
        right: 80px; }
    .page-product .wrap .kotwica {
      display: block;
      width: 3px;
      height: 3px;
      position: absolute;
      top: -168px; }

.send-form {
  -webkit-box-shadow: 6px 0px 18px -14px #42445a;
  -moz-box-shadow: 6px 0px 18px -14px #42445a;
  box-shadow: 6px 0px 18px -14px #42445a;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 509px;
  height: 100%;
  background-color: white;
  padding: 32px;
  display: none; }
  .send-form .close img {
    width: 24px;
    position: absolute;
    top: 32px;
    right: 32px; }
  .send-form .a {
    font-family: "Mulish";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0em;
    color: #505050;
    margin-bottom: 16px; }
  .send-form .b {
    font-family: "Mulish";
    font-weight: 700;
    font-size: 48px;
    line-height: 40px;
    letter-spacing: 0em;
    color: black; }
  .send-form .form {
    margin-top: 48px;
    width: 100%; }
    .send-form .form input {
      width: 100%;
      height: 52px;
      border: solid 1px #dadada;
      margin-bottom: 24px;
      padding: 0 24px;
      color: black;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em; }
    .send-form .form textarea {
      width: 100%;
      height: 142px;
      border: solid 1px #dadada;
      padding: 24px 24px;
      color: black;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em;
      resize: none; }
    .send-form .form .agreement2 {
      display: flex;
      justify-content: start;
      align-items: center;
      gap: 8px;
      padding: 16px 0 16px 0; }
      .send-form .form .agreement2 .radio-box .radio-button {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        width: 16px;
        height: 16px;
        border: solid 1px #325f22;
        border-radius: 50px; }
        .send-form .form .agreement2 .radio-box .radio-button span {
          background-color: #325f22;
          display: block;
          width: 8px;
          height: 8px;
          border-radius: 20px; }
      .send-form .form .agreement2 .text p {
        margin: 0;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 10px;
        line-height: normal;
        letter-spacing: 0.03em;
        text-align: left;
        text-transform: uppercase;
        color: black; }
    .send-form .form a {
      display: flex;
      width: 100%;
      height: 46px;
      border: solid 1px black;
      justify-content: center;
      align-items: center;
      font-family: "Mulish";
      font-weight: 700;
      font-size: 14px;
      line-height: normal;
      letter-spacing: 0.05em;
      color: black; }

/* ----------------------------------------
    DESTINY
---------------------------------------- */
.page-destiny {
  width: 100%; }
  .page-destiny .wrap {
    max-width: 1110px;
    margin: auto; }
    .page-destiny .wrap .mixed-items .mixed-item {
      margin-bottom: 64px; }
      .page-destiny .wrap .mixed-items .mixed-item .col .content {
        justify-content: center; }
    .page-destiny .wrap .mixed-items-v1 .mixed-item:nth-of-type(odd) .col {
      order: 1; }
    .page-destiny .wrap .mixed-items-v1 .mixed-item:nth-of-type(odd) .photo {
      order: 2; }
    .page-destiny .wrap .mixed-items-v1 .mixed-item:nth-of-type(even) .col {
      order: 2; }
    .page-destiny .wrap .mixed-items-v1 .mixed-item:nth-of-type(even) .photo {
      order: 1; }
    .page-destiny .wrap .mixed-items-v2 .mixed-item:nth-of-type(odd) .col {
      order: 2; }
    .page-destiny .wrap .mixed-items-v2 .mixed-item:nth-of-type(odd) .photo {
      order: 1; }
    .page-destiny .wrap .mixed-items-v2 .mixed-item:nth-of-type(even) .col {
      order: 1; }
    .page-destiny .wrap .mixed-items-v2 .mixed-item:nth-of-type(even) .photo {
      order: 2; }
    .page-destiny .wrap .product-list {
      margin: 40px 0 64px; }
    .page-destiny .wrap .realization-list {
      margin-top: 24px; }
    .page-destiny .wrap h3 {
      font-family: "Mulish";
      font-weight: 700;
      font-size: 36px;
      line-height: 40px;
      letter-spacing: 0.01em;
      color: black; }

/* ----------------------------------------
    REALIZATIONS
---------------------------------------- */
.page-realizations {
  width: 100%; }
  .page-realizations .wrap {
    max-width: 1110px;
    margin: auto; }
    .page-realizations .wrap .header {
      width: 100%;
      padding-bottom: 48px; }
      .page-realizations .wrap .header h1 {
        margin-bottom: 48px;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black; }
      .page-realizations .wrap .header p {
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #505050; }

/* ----------------------------------------
    ABOUT US
---------------------------------------- */
.page-about-us {
  width: 100%; }
  .page-about-us .wrap {
    max-width: 1110px;
    margin: auto; }
    .page-about-us .wrap .mixed-items .mixed-item {
      margin-bottom: 64px; }
      .page-about-us .wrap .mixed-items .mixed-item .col .content {
        justify-content: center;
        gap: 24px; }
    .page-about-us .wrap .mixed-items-v1 .mixed-item:nth-of-type(odd) .col {
      order: 2; }
    .page-about-us .wrap .mixed-items-v1 .mixed-item:nth-of-type(odd) .photo {
      order: 1; }
    .page-about-us .wrap .mixed-items-v1 .mixed-item:nth-of-type(even) .col {
      order: 1; }
    .page-about-us .wrap .mixed-items-v1 .mixed-item:nth-of-type(even) .photo {
      order: 2; }
    .page-about-us .wrap .mixed-items-v2 .mixed-item:nth-of-type(odd) .col {
      order: 2; }
    .page-about-us .wrap .mixed-items-v2 .mixed-item:nth-of-type(odd) .photo {
      order: 1; }
    .page-about-us .wrap .mixed-items-v2 .mixed-item:nth-of-type(even) .col {
      order: 1; }
    .page-about-us .wrap .mixed-items-v2 .mixed-item:nth-of-type(even) .photo {
      order: 2; }
    .page-about-us .wrap .our-company {
      width: 100%;
      margin-bottom: 64px; }
      .page-about-us .wrap .our-company .header h2 {
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black; }
      .page-about-us .wrap .our-company .header p {
        margin: 24px 0 24px 0;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: black; }
    .page-about-us .wrap .static-list {
      margin-bottom: 64px; }
      .page-about-us .wrap .static-list .col .content-1 {
        justify-content: center; }
        .page-about-us .wrap .static-list .col .content-1 h2 {
          margin-bottom: 24px; }
    .page-about-us .wrap .certificates h2 {
      margin-bottom: 24px;
      font-family: "Mulish";
      font-weight: 700;
      font-size: 36px;
      line-height: 40px;
      letter-spacing: 0.01em;
      color: black; }

/* ----------------------------------------
    FOR ARCHITECT
---------------------------------------- */
.page-for-architect {
  width: 100%; }
  .page-for-architect .wrap {
    max-width: 1110px;
    margin: auto; }
    .page-for-architect .wrap .header p {
      margin-bottom: 24px;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em;
      color: #505050; }
    .page-for-architect .wrap .header .contact a {
      font-family: "Mulish";
      font-weight: 700;
      font-size: 36px;
      line-height: 40px;
      letter-spacing: 0.01em;
      color: #325f22; }
    .page-for-architect .wrap .list {
      width: 100%;
      padding-top: 64px; }
      .page-for-architect .wrap .list h2 {
        margin-bottom: 32px;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0.01em;
        color: black; }
      .page-for-architect .wrap .list .items {
        width: 100%; }
        .page-for-architect .wrap .list .items .item {
          display: flex;
          justify-content: start;
          align-items: center;
          gap: 0;
          width: 100%;
          margin-bottom: 16px;
          padding: 16px;
          border: solid 1px #dadada;
          font-family: "Mulish";
          font-weight: 700;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          color: black; }
        .page-for-architect .wrap .list .items .active {
          background-color: #505050;
          color: white; }
        .page-for-architect .wrap .list .items .content {
          display: flex;
          justify-content: space-between;
          align-items: stretch;
          width: 100%;
          gap: 30px;
          overflow: hidden;
          height: 0;
          transition: transform 0.26s ease; }
          .page-for-architect .wrap .list .items .content .separator {
            width: 1px;
            background-color: #e3e3e3; }
          .page-for-architect .wrap .list .items .content .content-l {
            width: 350px;
            text-align: center; }
            .page-for-architect .wrap .list .items .content .content-l img {
              margin: auto;
              width: 65%; }
            .page-for-architect .wrap .list .items .content .content-l .info {
              text-align: left;
              width: 100%; }
              .page-for-architect .wrap .list .items .content .content-l .info p {
                width: 100%;
                display: flex;
                justify-content: space-between;
                margin-bottom: 5px; }
                .page-for-architect .wrap .list .items .content .content-l .info p span:nth-of-type(1) {
                  display: block;
                  font-family: "Mulish";
                  font-weight: 400;
                  font-size: 10px;
                  line-height: normal;
                  letter-spacing: 0.03em;
                  color: black;
                  width: 250px;
                  text-transform: uppercase; }
                .page-for-architect .wrap .list .items .content .content-l .info p span:nth-of-type(2) {
                  display: block;
                  font-family: "Mulish";
                  font-weight: 400;
                  font-size: 10px;
                  line-height: normal;
                  letter-spacing: 0.03em;
                  color: black;
                  text-transform: uppercase;
                  text-align: right; }
          .page-for-architect .wrap .list .items .content .content-r {
            width: calc(100% - 350px); }
            .page-for-architect .wrap .list .items .content .content-r p {
              font-family: "Mulish";
              font-weight: 400;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em;
              color: #505050;
              margin-bottom: 55px; }
            .page-for-architect .wrap .list .items .content .content-r .files {
              width: 100%; }
              .page-for-architect .wrap .list .items .content .content-r .files p {
                margin-bottom: 5px;
                color: black;
                display: flex; }
                .page-for-architect .wrap .list .items .content .content-r .files p img {
                  height: 3px; }
                .page-for-architect .wrap .list .items .content .content-r .files p .tit {
                  display: block;
                  width: 400px; }
                .page-for-architect .wrap .list .items .content .content-r .files p .type {
                  display: block;
                  width: 70px;
                  color: #b7b7b7; }
                .page-for-architect .wrap .list .items .content .content-r .files p .size {
                  display: block;
                  width: 120px;
                  color: #b7b7b7; }
                .page-for-architect .wrap .list .items .content .content-r .files p a {
                  color: #325f22; }
                  .page-for-architect .wrap .list .items .content .content-r .files p a img {
                    height: 16px;
                    filter: brightness(0) saturate(100%) invert(31%) sepia(14%) saturate(1712%) hue-rotate(60deg) brightness(99%) contrast(99%);
                    position: relative;
                    top: 3px;
                    margin-right: 5px; }

/* ----------------------------------------
    CONTACT
---------------------------------------- */
.page-contact {
  width: 100%;
  padding-top: 0; }
  .page-contact .header-map {
    background-image: url("../assets/images/demo/contact/header-map.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1110px;
    aspect-ratio: 54 / 25;
    margin: auto; }
  .page-contact .wrap {
    max-width: 1110px;
    margin: auto;
    padding-top: 80px; }
    .page-contact .wrap .section-1 {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 30px;
      width: 100%;
      margin-bottom: 64px; }
      .page-contact .wrap .section-1 .content {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 30px;
        flex-direction: column; }
        .page-contact .wrap .section-1 .content p:nth-of-type(1) {
          font-family: "Mulish";
          font-weight: 700;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0em;
          color: black; }
        .page-contact .wrap .section-1 .content p:nth-of-type(2) {
          font-family: "Mulish";
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0em;
          color: black; }
        .page-contact .wrap .section-1 .content p:nth-of-type(3) {
          font-family: "Mulish";
          font-weight: 700;
          font-size: 28px;
          line-height: normal;
          letter-spacing: 0.01em; }
          .page-contact .wrap .section-1 .content p:nth-of-type(3) a {
            color: #325f22; }
      .page-contact .wrap .section-1 .map {
        background-color: #dadada;
        width: 730px;
        height: 340px; }
    .page-contact .wrap .section-2 {
      width: 100%;
      margin-bottom: 64px; }
      .page-contact .wrap .section-2 .row {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 30px;
        width: 100%; }
        .page-contact .wrap .section-2 .row .col {
          width: calc(100% / 3); }
          .page-contact .wrap .section-2 .row .col .title {
            font-family: "Mulish";
            font-weight: 700;
            font-size: 28px;
            line-height: normal;
            letter-spacing: 0.01em;
            color: black; }
          .page-contact .wrap .section-2 .row .col .person {
            margin-bottom: 40px; }
            .page-contact .wrap .section-2 .row .col .person p:nth-of-type(1) {
              font-family: "Mulish";
              font-weight: 700;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em;
              color: black; }
            .page-contact .wrap .section-2 .row .col .person p:nth-of-type(2) {
              font-family: "Mulish";
              font-weight: 400;
              font-size: 10px;
              line-height: normal;
              letter-spacing: 0.03em;
              color: #505050; }
            .page-contact .wrap .section-2 .row .col .person p:nth-of-type(3) {
              margin-top: 8px;
              font-family: "Mulish";
              font-weight: 700;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em; }
              .page-contact .wrap .section-2 .row .col .person p:nth-of-type(3) a {
                color: #325f22; }
            .page-contact .wrap .section-2 .row .col .person p:nth-of-type(3).address {
              font-family: "Mulish";
              font-weight: 400;
              font-size: 14px;
              line-height: 24px;
              letter-spacing: 0em; }
          .page-contact .wrap .section-2 .row .col .person:last-of-type {
            margin-bottom: 0; }
      .page-contact .wrap .section-2 hr {
        background: whitesmoke;
        width: 100%;
        height: 1px;
        margin: 40px 0 40px 0;
        border: none; }
    .page-contact .wrap .form {
      background: whitesmoke;
      width: 100%;
      padding: 54px 95px; }
      .page-contact .wrap .form p {
        margin-bottom: 16px;
        text-align: center;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #505050; }
      .page-contact .wrap .form h2 {
        text-align: center;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 48px;
        line-height: 40px;
        letter-spacing: 0em;
        color: black; }
      .page-contact .wrap .form form {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 30px;
        margin-top: 48px; }
        .page-contact .wrap .form form .left-side {
          width: 50%; }
          .page-contact .wrap .form form .left-side input {
            width: 100%;
            margin-bottom: 16px;
            padding: 14px 24px;
            border: solid 1px #dadada;
            font-family: "Mulish";
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0em;
            color: black; }
          .page-contact .wrap .form form .left-side input:last-of-type {
            margin-bottom: 0; }
          .page-contact .wrap .form form .left-side input::placeholder {
            opacity: 1;
            color: black; }
          .page-contact .wrap .form form .left-side input:valid {
            border-color: #325f22; }
        .page-contact .wrap .form form .right-side {
          width: 50%; }
          .page-contact .wrap .form form .right-side textarea {
            width: 100%;
            height: 194px;
            padding: 14px;
            border: solid 1px #dadada;
            resize: none;
            font-family: "Mulish";
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0em;
            color: black; }
          .page-contact .wrap .form form .right-side textarea::placeholder {
            opacity: 1;
            color: black; }
          .page-contact .wrap .form form .right-side textarea:valid {
            border-color: #325f22; }
          .page-contact .wrap .form form .right-side .agreement {
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 8px;
            padding: 16px 0 16px 0; }
            .page-contact .wrap .form form .right-side .agreement .radio-box .radio-button {
              display: flex;
              justify-content: center;
              align-items: center;
              gap: 0;
              width: 16px;
              height: 16px;
              border: solid 1px #325f22;
              border-radius: 50px; }
              .page-contact .wrap .form form .right-side .agreement .radio-box .radio-button span {
                background-color: #325f22;
                display: block;
                width: 8px;
                height: 8px;
                border-radius: 20px; }
            .page-contact .wrap .form form .right-side .agreement .text p {
              margin: 0;
              font-family: "Mulish";
              font-weight: 400;
              font-size: 10px;
              line-height: normal;
              letter-spacing: 0.03em;
              text-align: left;
              text-transform: uppercase;
              color: black; }
          .page-contact .wrap .form form .right-side button {
            background: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            float: left;
            padding: 14px 28px;
            transition: 0.3s;
            border: solid 1px black;
            font-family: "Mulish";
            font-weight: 700;
            font-size: 14px;
            line-height: normal;
            letter-spacing: 0.05em;
            color: black;
            width: 100%;
            cursor: pointer; }
          .page-contact .wrap .form form .right-side button:hover {
            background-color: black;
            color: white; }

/* ----------------------------------------
    TEXT
---------------------------------------- */
.page-text {
  max-width: 700px;
  margin: auto; }
  .page-text hr {
    background-color: #e1dfdf;
    width: 100%;
    height: 1px;
    border: none;
    margin-bottom: 70px; }
  .page-text h1 {
    font-family: "Mulish";
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.01em;
    color: black; }
  .page-text .content {
    padding-top: 48px; }
    .page-text .content p {
      margin-bottom: 24px;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em;
      color: black; }
    .page-text .content h4 {
      margin-bottom: 24px;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em;
      color: black;
      font-family: "Mulish";
      font-weight: 700; }
    .page-text .content .title {
      font-family: "Mulish";
      font-weight: 700;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em;
      color: black; }
    .page-text .content ol {
      margin-bottom: 24px;
      padding-left: 14px;
      list-style-type: numeric;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em;
      color: black; }
      .page-text .content ol ul {
        padding-left: 14px;
        list-style-type: disc;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: black; }
    .page-text .content ul {
      margin-bottom: 24px;
      padding-left: 14px;
      list-style-type: numeric;
      font-family: "Mulish";
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0em;
      color: black; }
      .page-text .content ul ul {
        padding-left: 14px;
        list-style-type: disc;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: black; }
    .page-text .content strong {
      font-weight: 700; }
    .page-text .content img {
      max-width: 100%; }
    .page-text .content .no-margin {
      margin-bottom: 0; }
    .page-text .content a {
      color: #325f22; }
    .page-text .content .button {
      display: flex;
      justify-content: start;
      align-items: end;
      gap: 0; }
      .page-text .content .button a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        float: left;
        padding: 14px 28px;
        transition: 0.3s;
        border: solid 1px black;
        font-family: "Mulish";
        font-weight: 700;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.05em;
        color: black; }
      .page-text .content .button a:hover {
        background-color: black;
        color: white; }

/* ----------------------------------------
    RWD - NAVIGATION
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .navigation .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .navigation .wrap ul {
      background: white;
      position: fixed;
      z-index: 130;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      flex-direction: column;
      gap: 0;
      display: none;
      width: 100%;
      height: 100%;
      padding-top: 84px;
      padding-bottom: 62px; }
      .navigation .wrap ul li {
        width: 100%;
        height: calc(100% / 6); }
        .navigation .wrap ul li .dropdown {
          width: 100%;
          height: 100%; }
          .navigation .wrap ul li .dropdown .link {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            border-top: solid 1px whitesmoke;
            width: 100%;
            height: 100%; }
            .navigation .wrap ul li .dropdown .link img {
              display: none; }
          .navigation .wrap ul li .dropdown .dropdown-content {
            display: none !important; }
        .navigation .wrap ul li .static-link {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 0;
          border-top: solid 1px whitesmoke;
          height: 100%; }
          .navigation .wrap ul li .static-link img {
            display: none; }
      .navigation .wrap ul .mobile {
        display: block; }
      .navigation .wrap ul .no-mobile {
        display: none; }
    .navigation .wrap .language-selector {
      position: fixed;
      z-index: 135;
      top: 30px;
      right: auto;
      bottom: auto;
      left: 50%;
      display: none;
      height: auto;
      margin-left: -17px; }
      .navigation .wrap .language-selector .dropdown .dropdown-content {
        padding-top: 10px; }
    .navigation .wrap .ue {
      position: fixed;
      z-index: 135;
      top: auto;
      right: auto;
      bottom: 0;
      left: 0;
      display: none;
      width: 100%;
      height: 63px;
      border-top: solid 1px whitesmoke; }
      .navigation .wrap .ue a {
        display: block;
        margin: 15px auto 0 auto; }
        .navigation .wrap .ue a img {
          display: block;
          height: 32px;
          margin: auto; } }
/* ----------------------------------------
    RWD - BURGER
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .burger {
    display: block; } }
/* ----------------------------------------
    RWD - FOOTER
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .footer .wrap {
    flex-wrap: wrap;
    gap: 30px 0;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .footer .wrap .col {
      width: calc(100% / 2); }
      .footer .wrap .col .logo {
        margin-bottom: 24px; }
    .footer .wrap .col-7 {
      display: block;
      padding-top: 6px; }
      .footer .wrap .col-7 .logo {
        margin-bottom: 4px; }
    .footer .wrap .col-10 {
      display: none;
      padding-top: 20px; }
  .footer .wrap:last-of-type {
    display: none; } }
/* ----------------------------------------
    RWD - SLIDER
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .slider2 {
    aspect-ratio: 1 / 1; }
    .slider2 .wrap {
      max-width: 100%;
      padding-left: 15px;
      padding-right: 15px; }
      .slider2 .wrap .content h1 {
        font-size: calc(88px * 0.4);
        line-height: calc(80px * 0.4); }
      .slider2 .wrap .content p {
        font-size: calc(17px * 1);
        line-height: calc(20px * 1); }
      .slider2 .wrap .counter {
        left: 15px; } }
/* ----------------------------------------
    RWD - PARALLAX
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .parallax .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .parallax .wrap .content h1 {
      font-size: calc(88px * 0.4);
      line-height: calc(80px * 0.4); }
    .parallax .wrap .content h2 {
      font-size: calc(48px * 0.6);
      line-height: calc(40px * 0.9) !important; }
    .parallax .wrap .content p {
      font-size: calc(14px * 0.9);
      line-height: calc(24px * 0.9); } }
/* ----------------------------------------
    RWD - STATIC LIST
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .static-list {
    flex-direction: column; }
    .static-list .col {
      width: 100%;
      min-height: auto; }
      .static-list .col .content-1 {
        gap: 24px; }
      .static-list .col .content-2 a .title {
        font-size: 27px;
        width: 100%; }
    .static-list .col-2 {
      aspect-ratio: 1 / 1; }
    .static-list .col-3 {
      aspect-ratio: 1 / 1; }
    .static-list .col-4 {
      aspect-ratio: 1 / 1; } }
/* ----------------------------------------
    RWD - DYNAMIC LIST
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .dynamic-list .header .content {
    flex-direction: column; }
    .dynamic-list .header .content .col {
      width: 100%; }
    .dynamic-list .header .content .col:last-of-type {
      width: 100%; }
  .dynamic-list .header .counter {
    display: none; }
  .dynamic-list .items {
    display: flex;
    gap: 30px;
    flex-direction: column; }
    .dynamic-list .items .item {
      width: 100%; }
      .dynamic-list .items .item .title {
        font-size: 27px;
        width: 100%; } }
/* ----------------------------------------
    RWD - MIXED ITEM
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .mixed-item {
    flex-direction: column; }
    .mixed-item .col {
      width: 100%;
      order: 2 !important; }
    .mixed-item .photo {
      aspect-ratio: 1 / 1;
      order: 1 !important; } }
/* ----------------------------------------
    RWD - PANEL LIST
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .panel-list {
    flex-direction: column;
    min-height: auto; }
    .panel-list a {
      width: 100%;
      aspect-ratio: 3 / 1;
      border-right: none;
      border-bottom: solid 1px white; }
      .panel-list a span:nth-of-type(2) {
        bottom: 40px; }
    .panel-list .big-panel {
      width: 100%; } }
/* ----------------------------------------
    RWD - CERTIFICATE LIST
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .certificate-list {
    flex-wrap: wrap;
    gap: 15px; }
    .certificate-list .certificate {
      width: calc((100% / 3) - 15px); } }
/* ----------------------------------------
    RWD - CONTACT BANNER
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .contact-banner {
    flex-direction: column;
    gap: 24px;
    padding-left: 15px;
    padding-right: 15px; }
    .contact-banner .row {
      text-align: center; } }
/* ----------------------------------------
    RWD - PRODUCT LIST
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .product-list {
    flex-direction: column; }
    .product-list .product {
      width: 100%; }
      .product-list .product .info .title {
        font-size: calc(36px * 0.55);
        line-height: calc(40px * 0.55); }
      .product-list .product .info .subtitle {
        font-size: 10px;
        line-height: normal; }
      .product-list .product .info .list {
        display: block !important;
        height: 100px !important;
        opacity: 1 !important;
        top: auto;
        bottom: 54px; } }
/* ----------------------------------------
    RWD - REALIZATION LIST
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .realization-list {
    flex-wrap: wrap;
    gap: 15px 15px; }
    .realization-list .item {
      width: calc((100% / 2) - 7.5px); } }
/* ----------------------------------------
    RWD - HOME
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-home .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - CATEGORY
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-category .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .page-category .wrap .sort {
      right: 15px; } }
/* ----------------------------------------
    RWD - DESTINY
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-destiny .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - REALIZATIONS
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-realizations .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - ABOUT US
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-about-us .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - FOR ARCHITECT
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-for-architect .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .page-for-architect .wrap .header .contact a {
      font-size: calc(36px * 0.9);
      line-height: calc(40px * 0.9); } }
/* ----------------------------------------
    RWD - CONTACT
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-contact .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .page-contact .wrap .section-1 {
      flex-direction: column; }
      .page-contact .wrap .section-1 .map {
        width: 100%; }
    .page-contact .wrap .section-2 .row {
      flex-direction: column; }
      .page-contact .wrap .section-2 .row .col {
        width: 100%; }
        .page-contact .wrap .section-2 .row .col .person-hidden {
          display: none; }
    .page-contact .wrap .form {
      padding-left: 15px;
      padding-right: 15px; }
      .page-contact .wrap .form p {
        line-height: 18px; }
      .page-contact .wrap .form h2 {
        font-size: calc(48px * 0.6);
        line-height: calc(40px * 0.8); }
      .page-contact .wrap .form form {
        flex-direction: column;
        gap: 15px; }
        .page-contact .wrap .form form .left-side {
          width: 100%; }
        .page-contact .wrap .form form .right-side {
          width: 100%; } }
/* ----------------------------------------
    RWD - TEXT
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .page-text {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - COPYRIGHT
---------------------------------------- */
@media only screen and (max-width: 950px) {
  .copyright {
    background-color: whitesmoke;
    width: 100%;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px; }
    .copyright .wrap {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 0;
      max-width: 1110px;
      margin: auto; }
      .copyright .wrap p {
        font-family: "Mulish";
        font-weight: 400;
        font-size: 10px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: rgba(0, 0, 0, 0.5); }
        .copyright .wrap p a {
          font-family: "Quadon";
          font-weight: 400;
          font-size: 11px;
          line-height: normal;
          color: rgba(0, 0, 0, 0.5); }
          .copyright .wrap p a span {
            font-family: "Quadon";
            font-weight: 700;
            font-size: 11px;
            line-height: normal; } }
.slider {
  width: 100%; }

.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: pointer;
  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; }

.slick-slide {
  margin: 0px 10px; }

.dynamic-list2 .items {
  width: calc(100% + 20px);
  margin-left: -10px; }

.slick-slide {
  margin: 0px 10px; }

@keyframes backgroundeffect {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.5); }
  100% {
    transform: scale(1); } }
@media only screen and (max-width: 950px) {
  .dynamic-list .header .counter {
    bottom: -20px; }

  .page-for-architect .wrap .list .items .content {
    flex-direction: column; }

  .page-for-architect .wrap .list .items .content .content-l {
    width: 100%; }

  .page-for-architect .wrap .list .items .content .content-r {
    width: 100%; }

  .page-for-architect .wrap .list .items .content .separator {
    width: 100%;
    height: 1px; }

  .page-for-architect .wrap .list .items .content .content-r .files p a {
    width: 105px; }

  .page-for-architect .wrap .list .items .content .content-r .files p .tit {
    width: 240px; }

  .page-text .content {
    padding-top: 0; }

  .page-destiny .wrap .mixed-items .mixed-item:last-of-type {
    margin-bottom: 0; }

  .page-product .wrap {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .page-product .wrap .product-card {
      width: 100%;
      flex-direction: column; }
      .page-product .wrap .product-card .photos {
        width: 100%;
        flex-direction: column;
        order: 2; }
        .page-product .wrap .product-card .photos .big-photo {
          width: 100%; }
          .page-product .wrap .product-card .photos .big-photo .thumbnails {
            width: 100%; }
      .page-product .wrap .product-card .data {
        width: 100%;
        margin-bottom: 50px;
        order: 1; }
    .page-product .wrap .sub-menu {
      display: none; }
    .page-product .wrap .technical-data .list {
      flex-direction: column; }
      .page-product .wrap .technical-data .list .col {
        width: 100% !important; }
    .page-product .wrap .product-destiny .box .row {
      margin-bottom: 0;
      flex-wrap: wrap;
      gap: 20px; }
      .page-product .wrap .product-destiny .box .row .col {
        justify-content: start;
        width: calc((100% / 2) - 20px); }
    .page-product .wrap .main-information .box {
      flex-direction: column; }
      .page-product .wrap .main-information .box .col {
        width: 100%; }
    .page-product .wrap .files .box {
      flex-direction: column;
      gap: 0; }
      .page-product .wrap .files .box .col {
        width: 100%; }
    .page-product .wrap .package-information .box {
      gap: 0;
      flex-direction: column; }
      .page-product .wrap .package-information .box .col {
        width: 100% !important; }
      .page-product .wrap .package-information .box .col:last-of-type {
        text-align: center;
        padding-top: 20px; }
    .page-product .wrap .product-form {
      text-align: center;
      padding-bottom: 0; }
      .page-product .wrap .product-form .content {
        padding: 10px; }
        .page-product .wrap .product-form .content a {
          margin: 20px auto 0 auto; }
      .page-product .wrap .product-form img {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0 auto; }
    .page-product .wrap .product-banner {
      height: auto; }
      .page-product .wrap .product-banner .content {
        padding: 25px 25px 25px 25px; }
        .page-product .wrap .product-banner .content p:first-of-type {
          font-size: 24px;
          line-height: 30px;
          margin-bottom: 10px; }
        .page-product .wrap .product-banner .content p:last-of-type {
          line-height: 20px; }

  .page-product .wrap .product-destiny .box .row .col:nth-of-type(5) {
    display: none; }

  .send-form {
    width: 100%;
    overflow-y: auto; }

  .page-product .wrap .product-form .content {
    padding: 5px; }

  .product-list .product .list span {
    font-size: 15px; } }
@media only screen and (max-width: 950px) {
  .mixed-item .col {
    order: 1 !important; }

  .mixed-item .photo {
    order: 2 !important; } }
.counter {
  display: none !important; }

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-top: 20px; }
  .slick-dots li {
    display: block;
    width: 13px;
    height: 13px; }
    .slick-dots li button {
      background-color: white;
      width: 13px;
      height: 13px;
      border: solid 1px #325f22;
      display: block;
      border: solid 1px #325f22;
      content: " " !important;
      font-size: 0;
      overflow: hidden;
      cursor: pointer; }
  .slick-dots .slick-active button {
    background-color: #325f22; }

@media only screen and (max-width: 950px) {
  .certificate-list .certificate .logo .vertical {
    height: auto;
    width: 65%; } }
.ue2 {
  display: none; }

.mobile-prev,
.mobile-next {
  display: none; }

.mobile-prev3,
.mobile-next3 {
  display: none; }

@media only screen and (max-width: 950px) {
  .ue {
    display: none !important; }

  .ue2 {
    position: fixed;
    z-index: 135;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 63px;
    background-color: #FFF;
    padding: 0 10px; }
    .ue2 a {
      display: block;
      margin: 15px 0 0 0; }
      .ue2 a img {
        display: block;
        height: 32px;
        margin: auto; }

  .ue2 {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    justify-content: end; }

  #example {
    width: 100%;
    height: 50%; }
    #example model-viewer {
      width: 100% !important;
      height: 100% !important; }

  .slider {
    position: relative; }

  .mobile-prev,
  .mobile-next,
  .mobile-prev3,
  .mobile-next3 {
    display: block;
    position: absolute;
    z-index: 999;
    top: 50%;
    margin-top: -20px;
    left: 20px; }
    .mobile-prev img,
    .mobile-next img,
    .mobile-prev3 img,
    .mobile-next3 img {
      height: 40px;
      filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7489%) hue-rotate(297deg) brightness(96%) contrast(104%); }

  .mobile-next,
  .mobile-next3 {
    left: auto;
    right: 20px; }

  .mobile-prev,
  .mobile-prev3 {
    transform: rotate(-180deg); }

  .mobile-prev2 img,
  .mobile-next2 img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1578%) hue-rotate(212deg) brightness(116%) contrast(100%); }

  .product-list .product .list {
    display: flex !important;
    height: 100px !important;
    opacity: 1 !important;
    top: auto;
    bottom: 54px;
    justify-content: start;
    padding-left: 20px; }

  .product-list .product {
    padding-bottom: 0; }

  .product-list .product .list {
    bottom: 0;
    position: relative;
    display: block; }

  .product-list .product .info {
    bottom: 0;
    position: relative;
    display: block; }

  .product-card {
    margin-bottom: 30px; }

  .panel-list {
    flex-direction: column !important;
    min-height: auto !important; }
    .panel-list a {
      width: 100% !important;
      aspect-ratio: 3 / 1 !important;
      border-right: none !important;
      border-bottom: solid 1px white !important; }
      .panel-list a span:nth-of-type(2) {
        bottom: 40px !important; }
    .panel-list .big-panel {
      width: 100% !important; }

  .panel-list2 {
    flex-direction: column !important;
    min-height: auto !important; }
    .panel-list2 a {
      width: 100% !important;
      aspect-ratio: 3 / 1 !important;
      border-right: none !important;
      border-bottom: solid 1px white !important; }
      .panel-list2 a span:nth-of-type(2) {
        bottom: 40px !important; }
    .panel-list2 .big-panel {
      width: 100% !important; }

  .product-list .product .list span {
    font-size: 12px;
    line-height: 25px; }

  .page-product .wrap .product-banner .content p:first-of-type {
    font-size: 14px;
    line-height: 21px; }

  .page-product .wrap .product-banner .content p:last-of-type {
    line-height: 13px; }

  .page-for-architect .wrap .list h2 {
    font-size: 30px; }

  .page-for-architect .wrap .header .contact a {
    font-size: calc(36px * 0.8);
    line-height: calc(40px * 0.8); } }

/*# sourceMappingURL=style.css.map */
.wcag {
	background-color: #FFF;
	position: fixed;
	z-index: 900;
	top: 50%;
	right: -200px;
	width: 200px;
	margin-top: -26px;
	padding: 20px;
	border: solid 1px #4870CC;
	font-family: 'Mulish';
	font-weight: 400;
	font-size: 14px;
	transition: all 0.5s ease;
}

.wcag .button {
	background-color: #4870CC;
	width: 52px;
	height: 52px;
	position: absolute;
	top: -1px;
	left: -52px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wcag .button img {
	width: 30px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(242deg) brightness(101%) contrast(101%);
}

.wcag .title {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 16px;
}

.wcag ul li {
	margin: 10px 0 10px 0;
}

.wcag ul li .active {
	font-weight: 700;
}

.wcag ul li a:hover {
	text-decoration: underline;
}

.wcag-open {
	right: 0;
}


.radio-box {
  display: block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .radio-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }

.radio-box input:checked ~ .checkmark {
    background-color: transparent;
}

.radio-box input:checked ~ .checkmark:after {
    display: block;
}

.radio-box .checkmark {
	position: absolute;
	top: -4px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: transparent;
	border: solid 1px #325f22;
	border-radius: 16px; 
	cursor: pointer;
}

.radio-box .checkmark:after {
    content: "";
    position: absolute;
    display: none; 
}

.radio-box .checkmark:after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #325f22; 
}

.radio-box .checkbox:hover input ~ .checkmark {
  background-color: transparent; 
}

.page-contact .wrap .form form .right-side .agreement .text p {
	text-align: justify;
}
