/* ----------------------------------------
    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; }

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 .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: whitesmoke;
  width: 100%;
  padding: 30px 0 0px 0; }
  .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;
        margin-bottom: 90px; }
      .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%); }
      .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; }
      .footer .wrap .col ul li:last-of-type {
        margin-bottom: 0; }

/* ----------------------------------------
    COPYRIGHT
---------------------------------------- */
.copyright {
  background-color: whitesmoke;
  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 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; }

/* ----------------------------------------
    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);
    opacity: 0.3; }
  .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: 120px;
    height: 2px; }
    .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;
      opacity: 0.5; }
    .counter .lines .line-2 {
      background-color: white;
      position: absolute;
      z-index: 2;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      display: block;
      width: calc(100% / 3);
      height: 2px; }

/* ----------------------------------------
    SLIDER
---------------------------------------- */
.slider {
  background-image: url("../assets/images/demo/slider3.jpg");
  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%;
  aspect-ratio: 54 / 20; }
  .slider .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%; }
  .slider .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; }
    .slider .wrap .content h1 {
      font-family: "Mulish";
      font-weight: 700;
      font-size: 88px;
      line-height: 80px;
      letter-spacing: 0.05em;
      color: white; }
    .slider .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; }
    .slider .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; }
    .slider .wrap .content a:hover {
      background-color: black;
      color: white;
      background-color: white;
      color: black; }
    .slider .wrap .counter {
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 3vw;
      left: 0; }
      .slider .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 {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px; }
  .dynamic-list .items .item {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: calc(100% / 3);
    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: 65px;
      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%; }
    .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); }

/* ----------------------------------------
    CERTIFICATE LIST
---------------------------------------- */
.certificate-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px; }
  .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: 120px; }
      .certificate-list .certificate .logo .horizontal {
        width: 120px; }
    .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: 40px 30px;
  flex-wrap: wrap;
  width: 100%; }
  .product-list .product {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: calc((100% / 2) - 15px);
    aspect-ratio: 1 / 1; }
    .product-list .product .info {
      background-color: rgba(50, 95, 34, 0.65);
      position: absolute;
      z-index: 1;
      top: auto;
      right: auto;
      bottom: 0;
      left: 0;
      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; }
      .product-list .product .info .subtitle {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        font-family: "Mulish";
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
        color: white; }
      .product-list .product .info .list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        flex-wrap: wrap;
        width: 100%; }
        .product-list .product .info .list span {
          display: block;
          width: 50%;
          margin-bottom: 3px;
          font-family: "Mulish";
          font-weight: 400;
          font-size: 10px;
          line-height: normal;
          letter-spacing: 0.03em;
          color: white; }

/* ----------------------------------------
    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 {
          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; }
          .page-category .wrap .sort p a .arrow-down {
            width: 8px;
            margin-top: 3px;
            transform: rotate(90deg);
            filter: brightness(0) saturate(100%); }
    .page-category .wrap .product-list {
      margin-bottom: 40px; }

/* ----------------------------------------
    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 .item:last-of-type {
          margin-bottom: 0; }

/* ----------------------------------------
    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: 5px; }
              .page-contact .wrap .form form .right-side .agreement .radio-box .radio-button span {
                background-color: #325f22;
                display: block;
                width: 8px;
                height: 8px;
                border-radius: 2px; }
            .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 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 .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 strong {
      font-weight: 700; }
    .page-text .content img {
      max-width: 100%; }
    .page-text .content .no-margin {
      margin-bottom: 0; }

/* ----------------------------------------
    RWD - NAVIGATION
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .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 .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: 1200px) {
  .burger {
    display: block; } }
/* ----------------------------------------
    RWD - FOOTER
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .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; } }
/* ----------------------------------------
    RWD - SLIDER
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .slider {
    aspect-ratio: 1 / 1; }
    .slider .wrap {
      max-width: 100%;
      padding-left: 15px;
      padding-right: 15px; }
      .slider .wrap .content h1 {
        font-size: calc(88px * 0.6);
        line-height: calc(80px * 0.6); }
      .slider .wrap .content p {
        font-size: calc(14px * 0.9);
        line-height: calc(24px * 0.9); }
      .slider .wrap .counter {
        left: 15px; } }
/* ----------------------------------------
    RWD - PARALLAX
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .parallax .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .parallax .wrap .content h1 {
      font-size: calc(88px * 0.5);
      line-height: calc(80px * 0.5); }
    .parallax .wrap .content h2 {
      font-size: calc(48px * 0.6);
      line-height: calc(40px * 0.8); }
    .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: 1200px) {
  .static-list {
    flex-direction: column; }
    .static-list .col {
      width: 100%;
      min-height: auto; }
      .static-list .col .content-1 {
        gap: 24px; }
    .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: 1200px) {
  .dynamic-list .header .content {
    flex-direction: column; }
  .dynamic-list .header .counter {
    display: none; }
  .dynamic-list .items {
    flex-direction: column; }
    .dynamic-list .items .item {
      width: 100%; } }
/* ----------------------------------------
    RWD - MIXED ITEM
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .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: 1200px) {
  .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: 1200px) {
  .certificate-list {
    flex-wrap: wrap;
    gap: 15px; }
    .certificate-list .certificate {
      width: calc((100% / 2) - 7.5px); } }
/* ----------------------------------------
    RWD - CONTACT BANNER
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .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: 1200px) {
  .product-list {
    flex-direction: column; }
    .product-list .product {
      width: 100%; }
      .product-list .product .info .title {
        font-size: calc(36px * 0.6);
        line-height: calc(40px * 0.6); }
      .product-list .product .info .subtitle {
        font-size: 10px;
        line-height: normal; } }
/* ----------------------------------------
    RWD - REALIZATION LIST
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .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: 1200px) {
  .page-home .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - CATEGORY
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .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: 1200px) {
  .page-destiny .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - REALIZATIONS
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .page-realizations .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - ABOUT US
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .page-about-us .wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }
/* ----------------------------------------
    RWD - FOR ARCHITECT
---------------------------------------- */
@media only screen and (max-width: 1200px) {
  .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: 1200px) {
  .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: 1200px) {
  .page-text {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; } }

/*# sourceMappingURL=style.css.map */
