/* Nexa Black */
@font-face {
  font-family: "Nexa Black";
  src: url("./fonts/NexaBlack.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/* Nexa Light */
@font-face {
  font-family: "Nexa Light";
  src: url("./fonts/NexaLight.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Nexa Regular */
@font-face {
  font-family: "Nexa Regular";
  src: url("./fonts/NexaRegular.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Abril Fatface */
@font-face {
  font-family: "Abril Fatface";
  src: url("./fonts/AbrilFatface-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Nexa-Trial-LightItalic */
@font-face {
  font-family: "Nexa-Trial-LightItalic";
  src: url("./fonts/Nexa-Trial-LightItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Poppins Black */
@font-face {
  font-family: "Poppins Black";
  src: url("./fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


* {
  -webkit-tap-highlight-color: transparent;
}

a,
a:link,
a:visited,
a:hover,
a:focus,
a:active {
  outline: none !important;
  background-color: transparent !important;
}

a {
  -webkit-touch-callout: none;  /* iOS: blokuje menu po przytrzymaniu */
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: sans-serif;
}
.container-section {
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
  @media (min-width: 1024px) {
    padding: 0 20px;
  }
}
.container {
  overflow-x: clip;
}

.scroll-wrapper {
  // scrollbar-width: thin; 
  scrollbar-color: #fdc543 transparent; 
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  height: 885px;
  @media (min-width: 1024px) {
    height: 400px;
  }
  @media (min-width: 1366px) {
    height: 600px;
  }
  @media (min-width: 1600px) {
    height: 885px;
  }
}

.image-wrapper {
  position: relative;
  width: 2000px;
  height: 885px;
  text-align: center;  
  @media (min-width: 1024px) {
    width: 100%;
    height: 400px;
  }
  @media (min-width: 1366px) {
    height: 600px;
  }
  @media (min-width: 1600px) {
    height: 885px;
  }
}

.image-header {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

section {
  h3 {
    font-size: 25px;
    margin-top: -9px;
    letter-spacing: 1.5px;
    font-family: "Nexa Black";
    span {
      color: #fdc543;
    }
    @media (max-width: 767px) {
      padding-top: 30px;
    }
  }
  p {
    font-size: 16px;
    font-family: "Nexa Regular";
    color: #323232;
    line-height: 30px;
    padding-bottom: 40px;
  }
  @media (min-width: 768px) {
    margin-top: 100px;
    h3 {
      font-size: 36px;
    }
  }
}

/* HOTSPOT */
.hotspot {
  box-sizing: border-box;
  text-decoration: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.178);
  backdrop-filter: blur(8px);
  border: 2px solid #ffffff69;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s all ease;
  &:hover {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
    &::after {
      background-color: #fdc543;
    }
  }

  &::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 35%;
    background: white;
    transform: translate(-50%, -50%);
  }

  .tooltip {
    text-decoration: none;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease 0.2s,
      visibility 0.5s linear 0.2s;
    @media (min-width: 1024px) {
      transition:
        opacity 0.3s ease 0.2s,
        visibility 0.2s linear 0.2s;
    }

    position: relative;
    width: 100%;
    max-width: 400px;
    padding-left: 220%;
    padding-bottom: 20%;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    transform: rotate(-45deg);
    z-index: 5;
  }

  &:hover .tooltip {
    opacity: 1;
    // display: block;
    visibility: visible;
    transition-delay: 0.5s;
    @media (min-width: 1024px) {
      transition-delay: 0.2s;
    }

    z-index: -1;
  }
}

.highlight {
  font-size: 19px;
  color: #fff;
  font-weight: lighter;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: "Abril Fatface";
}

.tooltip small {
  text-align: left;
  font-size: 15px;
  width: 200px;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: lighter;
  font-family: "Nexa Light";
  border-bottom: 2px solid white;
  display: inline-block;
}
.title {
  position: absolute;
  z-index: 999;
  left: 50%;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  transform: translateX(-50%);
  h1 {
    font-family: "Nexa Regular";
    color: white;
    letter-spacing: 1px;
    font-size: 35px;
    @media (min-width: 768px) {
      font-size: 40px;
    }
    text-shadow: 0px 0px 15px #201e26b6;
  }
  p {
    margin-top: -3px;
    font-family: "Nexa Light";
    letter-spacing: 0.2px;
    font-weight: 100;
    font-style: italic;
    font-size: 18px;
    color: rgb(255, 255, 255);
    text-shadow: 0px 3px 15px #201e26b6;
  }
}
.section-1 {
  margin-top: 80px;
  border-bottom: 1px solid black;
  .container-section {
    justify-items: center;
    @media (min-width: 768px) {
      justify-items: stretch;
    }
    margin: auto;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr;
    @media (min-width: 768px) {
      grid-template-columns: 35% 1fr;
    }

    .column-1 {
      display: flex;
      align-items: flex-end;
      width: 100%;
      position: relative;
      max-width: 479px;
      @media (min-width: 768px) {
        border-right: 1px solid black;
      }
      video {
        width: 100%;
        height: 360px;
        object-fit: none;
        display: block;
        @media (min-width: 768px) {
          height: 348px;
          margin-top: 100px;
        }
        @media (min-width: 1366px) {
          height: 479px;
        }
      }
      &::after {
        content: url("./images/gold.png");
        position: absolute;
        bottom: -5px;
        right: 0;
        @media (min-width: 768px) {
          right: -55px;
        }
      }
    }
    .column-2 {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      @media (min-width: 768px) {
        padding-left: 70px;
		padding-top: 100px;
      }
      @media (min-width: 1024px) {
        padding-left: 80px;
		padding-top: 100px;
      }
      @media (min-width: 1366px) {
        padding-left: 100px;
		padding-top: 100px;
      }
      &::after {
        content: url("./images/DIAMENCKIK-line.png");
        position: absolute;
        bottom: -16px;
        right: 24%;
      }
    }
  }
}
.section-2 {
  padding-bottom: 30px;
  padding-left: 0;
  @media (min-width: 768px) {
    padding-bottom: 100px;
  }
  .container-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 40px 10px;
    justify-items: center;
    @media (min-width: 768px) {
      justify-items: stretch;
      gap: 50px;
    }
    @media (min-width: 1024px) {
      padding: 0 20px;
    }
  }
  border-bottom: 1px solid black;

  .nav {
    display: flex;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 874px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    button {
      padding: 10px 20px;
      border: none;
      background: #fff;
      cursor: pointer;
      font-family: "Nexa Light";
      letter-spacing: 1px;
      font-size: 18px;

      &.active {
        background: #323232;
        color: #ffffffcc;
        font-family: "Nexa Light";
        font-weight: bold;
        letter-spacing: 1px;
        font-size: 18px;
      }
    }
  }

  .products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 40px;
    max-width: 1350px;
    margin: auto;
    gap: 20px;
    .product {
      text-decoration: none;
      margin: 10px;
      text-align: left;
      padding: 10px;
      display: none;
      position: relative;
      scale: 1;
      transition: 0.3s all ease;
      &:hover {
        transition: 0.3s all ease;
        scale: 1.15;
      }
      p {
        padding-bottom: 0;
        font-size: 12px;
      }
      .model {
        font-size: 14px;
        font-family: "Nexa Black";
      }
      .diament {
        &::before {
          content: url("./images/OBRYS-DIAMENT.png");
          top: 100px;
          position: absolute;
          right: -20px;
        }
      }
      .years-2 {
        &::after {
          content: url("./images/gwarancja-2.jpg");
        }
      }
      .years-5 {
        &::after {
          content: url("./images/gwarancja-5.jpg");
        }
      }
      .years-10 {
        &::after {
          content: url("./images/gwarancja-10.jpg");
        }
      }
      .img-product {
        position: relative;
        width: 260px;
        height: 260px;
        &::after {
          position: absolute;
          top: -20px;
          right: -20px;
        }
      }
      img {
        width: 100%;
      }
    }
  }
}

.section-3 {
  z-index: 5;
  border-bottom: 1px solid black;
  .container-section {
    padding-top: 40px;
    padding-bottom: 70px;
    gap: 52px;
    @media (min-width: 768px) {
      gap: 20px;
      flex-direction: row;
    }
    @media (max-width: 768px) {
      flex-direction: column!important;
    }	
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    .column-1 {
      width: 100%;
      max-width: 300px;
      margin: auto;
      @media (min-width: 768px) {
        max-width: 295px;
        margin: 0;
      }
      h3 {
        text-align: center;
        margin-top: 5px;
        position: relative;
        @media (min-width: 768px) {
          text-align: left;
          &::before {
            top: -40px;
            position: absolute;
            content: url("./images/DIAMENCKIK.png");
          }
        }
      }
    }
    .column-2 {
      width: 100% !important;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      @media (min-width: 768px) {
        gap: 15px;
        width: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
      }

      @media (min-width: 1366px) {
        gap: 70px;
        justify-content: flex-end;
      }
      .block {
        width: 295px;
        @media (min-width: 768px) {
          width: 201px;
          align-items: flex-start;
        }
        @media (min-width: 860px) {
          width: 240px;
        }
        @media (min-width: 1024px) {
          width: 295px;
        }
        div {
          margin-bottom: 10px;
          max-width: 207px;
        }
        img {
          width: 100%;
          margin-bottom: 5px;
        }
        p {
          font-size: 14px;
          padding-bottom: 0;
          margin-bottom: -8px;
        }
        a {
          font-family: "Nexa Regular";
          font-weight: bold;
          text-decoration: none;
          font-size: 18px;
          color: #fdc543;
          position: relative;
          &::after {
            content: url("./images/arrow.png");
            position: absolute;
            margin-left: 7px;
            z-index: 999;
          }
        }
      }
    }
  }
}
.section-4 {
  z-index: 0;
  padding-bottom: 100px;
  border-bottom: 1px solid black;
  @media (min-width: 768px) {
    margin-top: 0;
    // padding: 0 20px;
  }
  .block-image {
    display: flex;
    img {
      width: 100%;
    }
    @media (min-width: 768px) {
      img {
        height: 100%;
      }
    }
    position: relative;
    p {
      span {
        font-family: "Nexa Black";
      }
      left: -158px;
      top: 180px;
      position: absolute;
      transform: rotate(90deg);
    }
  }
  .container-section {
    padding-top: 100px;
    gap: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    @media (min-width: 768px) {
      padding-left: 20px;
      padding-right: 20px;
      justify-content: space-between;
    }
    @media (min-width: 992px) {
      flex-wrap: nowrap;
    }
    .column-1 {
      width: 100%;
      max-width: 295px;
      @media (min-width: 768px) {
        max-width: 240px;
      }
      display: flex;
      gap: 40px;
      flex-direction: column;
      position: relative;
      &::before {
        content: "";
        position: absolute;
        width: 1px;
        top: -100px;
        right: 40px;
        height: 100px;
        background-color: black;
      }
      .border {
        position: relative;
      }
      .border::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: -300px;
        width: 595px;
        height: 1px;
        background-color: black;
        @media (min-width: 768px) {
          width: 600px;
        }
      }
    }
    .column-2 {
      width: 100%;
      margin-top: 30px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      max-width: 295px;
      @media (min-width: 768px) {
        max-width: 440px;
        margin-top: 0;
      }
      .block-image {
        display: flex;
        &::after {
          top: -15px;
          right: -15px;
          position: absolute;
          content: url("./images/WIRTUALNA\ KUCHNIA_BIALY\ 1.jpg");
        }
        &::before {
          content: "";
          position: absolute;
          bottom: 0px;
          left: -58px;
          width: 800px;
          height: 1px;
          background-color: black;
        }
      }
      p {
        left: auto;
        right: -106px;
        top: auto;
        bottom: 85px;
      }
    }
    .column-3 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      margin-top: 47px;
      p {
        margin-left: 0px;
        padding-bottom: 0;
      }
      @media (min-width: 768px) {
        p {
          margin-left: 20px;
          padding-bottom: 40px;
        }
        align-items: flex-end;
      }
      h3 {
        max-width: 280px;
        position: relative;
      }
      h3::before {
        content: url("./images/DIAMENCKIK.png");
        position: absolute;
        left: 0;
        top: -5px;
        @media (min-width: 768px) {
          top: -40px;
          left: auto;
          right: 0;
        }
      }
      width: 100%;
      // max-width: 420px;
      text-align: left;
      @media (min-width: 768px) {
        text-align: right;
      }
      a {
        font-family: "Nexa Regular";
        font-weight: bold;
        text-decoration: none;
        font-size: 18px;
        color: #fdc543;
        @media(min-width:768px){margin-right: 45px;}
        position: relative;
        &::after {
          content: url("./images/arrow.png");
          position: absolute;
          margin-left: 7px;
          z-index: 999;
        }
      }
    }
  }
}
.section-5 {
  .container-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  h3 {
    text-align: center;
    position: relative;
    &::after {
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      content: url("./images/DIAMENCKIK.png");
    }
  }
  p {
    text-align: center;
    max-width: 815px;
    margin: 50px auto;
    margin-bottom: 0;
  }
  .check {
    font-family: "Nexa Regular";
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    color: #fdc543;
    position: relative;
    &::after {
      content: url("./images/arrow.png");
      position: absolute;
      margin-left: 7px;
      z-index: 999;
    }
  }
  .product-block {
    .years-2 {
      position: relative;
    }
    .years-2 {
      &::after {
        position: absolute;
        top: -20px;
        right: -20px;
        content: url("./images/gwarancja-2.jpg");
      }
    }
    text-decoration: none;
    margin: 10px;
    text-align: left;
    padding: 10px;
    position: relative;
    scale: 1;
    transition: 0.3s all ease;
    &:hover {
      transition: 0.3s all ease;
      scale: 1.15;
    }
    p {
      text-align: left;
      padding-bottom: 0;
      font-size: 12px;
    }
    .model {
      text-align: left;
      margin-top: 0;
      font-size: 14px;
      font-family: "Nexa Black";
    }
  }
}

.text{
color: #000;
font-family: "Nexa Regular";
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 185%; /* 22.2px */
padding-top: 60px;
}

.text a{
	color: #000;
}

footer {
  width: 100%;
  margin-top: 100px;
  height: 290px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center center;
  }
}
