@font-face {
  font-family: 'Rubik';
  src: url("../fonts/rubik/Rubik-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap; }
.menu {
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: start;
  gap: 20px; }
  .menu a {
    color: white;
    position: relative;
    text-decoration: none; }
    .menu a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -2px;
      width: 0;
      height: 2px;
      background-color: currentColor;
      transition: width 0.3s ease, left 0.3s ease; }
    .menu a:hover::after, .menu a.active::after {
      width: 100%;
      left: 0; }
  @media (max-width: 768px) {
    .menu {
      display: none; } }

.hamburger {
  display: none; }

@media (max-width: 768px) {
  .hamburger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: space-between;
    cursor: pointer;
    z-index: 3; }
    .hamburger span {
      display: block;
      width: 100%;
      height: 4px;
      background: #fff;
      transition: 0.4s ease-in-out; }
    .hamburger.active span {
      background: #fff; }
      .hamburger.active span:nth-child(1) {
        transform: translateY(12px) rotate(-45deg); }
      .hamburger.active span:nth-child(2) {
        opacity: 0; }
      .hamburger.active span:nth-child(3) {
        transform: translateY(-12px) rotate(45deg); }

  .menu {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.4s ease-in-out;
    pointer-events: none; }
    .menu a {
      color: #000;
      font-size: 24px;
      text-decoration: none;
      transition: 0.3s; }

  .hamburger.active + .menu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all; } }
body {
  direction: rtl;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0; }

a {
  text-decoration: none; }

section {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; }

.decoration {
  transform: translateX(50%);
  position: absolute;
  right: -150px;
  bottom: 0;
  height: 300px;
  animation: rotate 60s linear infinite; }
  @media (max-width: 768px) {
    .decoration {
      width: 100px;
      height: 100px;
      margin: 20px;
      position: static; } }

.decoration2 {
  position: absolute;
  left: -75px;
  top: -75px;
  height: 150px;
  filter: contrast(100%) brightness(0%); }
  @media (max-width: 768px) {
    .decoration2 {
      top: -40px;
      height: 80px;
      left: 20px; } }

.decoration3 {
  transform: translateX(50%);
  position: absolute;
  right: -150px;
  z-index: 1;
  bottom: -150px;
  height: 300px; }
  @media (max-width: 768px) {
    .decoration3 {
      height: 150px;
      margin: 20px;
      position: static; } }

.decoration4 {
  transform: translateX(50%);
  position: absolute;
  height: 100px;
  left: -30px;
  top: -50px;
  z-index: 1; }
  @media (max-width: 768px) {
    .decoration4 {
      position: absolute; } }

.rotate-left {
  animation: rotate-left 60s linear infinite; }

.rotate-right {
  animation: rotate-right 60s linear infinite; }

@keyframes rotate-left {
  from {
    transform: rotate(360deg); }
  to {
    transform: rotate(0deg); } }
@keyframes rotate-right {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
section h2 {
  color: #fff;
  text-align: center;
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 38px;
  margin: 50px 0;
  width: fit-content; }
  @media (max-width: 768px) {
    section h2 {
      font-size: 24px;
      line-height: 24px; } }
  section h2:before {
    content: ' ';
    width: 4px;
    height: 100%;
    background-color: #d72121;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translatey(-50%); }

section.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  background-image: url("../images/bg.jpg");
  background-size: 100vw 90vh;
  background-position: center;
  background-repeat: no-repeat; }
  @media (max-width: 768px) {
    section.hero {
      background-size: cover; } }
  section.hero header {
    width: 100vw;
    height: 80px;
    top: 0;
    position: fixed;
    z-index: 100;
    padding-right: 50px;
    background: linear-gradient(black, rgba(0, 0, 0, 0));
    align-items: stretch;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between; }
    @media (max-width: 768px) {
      section.hero header {
        padding-right: 0;
        background: black;
        height: 70px;
        align-content: center; } }
    section.hero header .logo {
      object-fit: contain; }
    @media (max-width: 768px) {
      section.hero header .logo {
        width: 40%; } }
    section.hero header .phone {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 20px;
      min-width: 250px;
      color: #fff;
      background-color: #d72121; }
      @media (max-width: 768px) {
        section.hero header .phone {
          min-width: unset;
          width: 40%;
          gap: 0;
          flex-direction: row;
          flex-wrap: wrap;
          padding: 4px; } }
      section.hero header .phone a {
        font-size: 20px;
        line-height: 20px;
        font-weight: 600; }
    section.hero header a {
      color: #fff; }
  section.hero h1 {
    color: #fff;
    font-weight: 400;
    font-size: 40px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/lazer.png");
    background-size: 50vw;
    background-repeat: no-repeat;
    background-position: center right; }
    @media (max-width: 768px) {
      section.hero h1 {
        font-size: 22px; } }
  section.hero .content {
    max-width: 700px;
    color: #fff;
    text-align: center; }

section.suppliers {
  background-color: #242423;
  min-height: 300px; }
  section.suppliers .suppliers-slider-container {
    max-width: 1600px;
    width: 80%;
    margin-top: 50px;
    margin-bottom: 100px; }
  section.suppliers .suppliers-slider {
    z-index: 1; }
    section.suppliers .suppliers-slider .slide {
      margin: 0 20px;
      height: 150px; }
      section.suppliers .suppliers-slider .slide .supplier {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 100%;
        background-color: #fff; }
        section.suppliers .suppliers-slider .slide .supplier .description {
          display: none; }
        section.suppliers .suppliers-slider .slide .supplier .description {
          display: flex;
          position: absolute;
          top: 0;
          left: 0;
          background: #d22;
          text-align: center;
          opacity: 0;
          transition: opacity 0.5s ease;
          height: 100%;
          width: 100%;
          max-width: 300px;
          justify-content: center;
          align-items: center; }
          section.suppliers .suppliers-slider .slide .supplier .description .content {
            color: #fff;
            padding: 10px; }
        section.suppliers .suppliers-slider .slide .supplier:hover .description {
          opacity: 1;
          transition: opacity 0.5s ease; }
  section.suppliers ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding-right: 0; }
    section.suppliers ul a {
      color: #fff; }
      section.suppliers ul a.active {
        color: #d22; }
    section.suppliers ul li:not(:last-child)::after {
      content: ' | ';
      color: #fff; }

section.services h2 {
  color: #000; }
section.services .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative; }
  section.services .items .service {
    z-index: 1;
    display: flex;
    flex-direction: column; }
    section.services .items .service a {
      font-size: 24px;
      color: #000;
      background-color: #fff;
      border-bottom: 4px solid #d22; }
      section.services .items .service a div {
        padding: 4px; }
      section.services .items .service a:hover {
        background-image: url("../images/arrow-left.svg");
        background-position: bottom 10px left 10px;
        background-size: 20px;
        background-repeat: no-repeat; }
        @media (max-width: 768px) {
          section.services .items .service a:hover {
            background-size: 15px; } }
    @media (max-width: 768px) {
      section.services .items .service {
        width: 80vw; }
        section.services .items .service img {
          object-fit: cover;
          max-height: 150px;
          width: 100%; }
        section.services .items .service a {
          font-size: 16px; } }

section.machines .inner {
  width: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  section.machines .inner h2 {
    align-self: start;
    color: #000; }
  @media (max-width: 768px) {
    section.machines .inner {
      flex-direction: column;
      justify-content: center; }
      section.machines .inner h2 {
        align-self: center; } }
  section.machines .inner .nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    direction: rtl; }
    @media (max-width: 768px) {
      section.machines .inner .nav-menu {
        flex-direction: column; } }
    section.machines .inner .nav-menu li {
      position: relative;
      padding: 0 10px; }
      section.machines .inner .nav-menu li a {
        color: #000; }
      section.machines .inner .nav-menu li.active a {
        font-weight: bold;
        color: #d22; }
      @media (min-width: 768px) {
        section.machines .inner .nav-menu li:not(:last-child)::after {
          content: '|';
          position: absolute;
          left: -5px;
          color: #555; } }
section.machines .machines-slider-container {
  max-width: 1620px;
  width: 80vw;
  position: relative; }
  section.machines .machines-slider-container .machines-slider {
    margin: 0 auto; }
    section.machines .machines-slider-container .machines-slider .content {
      max-width: 480px;
      width: 100%;
      min-height: 450px;
      background-color: #fff;
      border-bottom: 4px solid #d22; }
      section.machines .machines-slider-container .machines-slider .content .description {
        padding: 20px; }
      section.machines .machines-slider-container .machines-slider .content h3 {
        font-size: 28px; }
      section.machines .machines-slider-container .machines-slider .content .picture {
        margin-top: 75px;
        display: flex;
        justify-content: center; }
        section.machines .machines-slider-container .machines-slider .content .picture img {
          width: 90%;
          max-height: 280px;
          object-fit: contain;
          margin-top: -75px; }
      section.machines .machines-slider-container .machines-slider .content ul {
        padding-right: 20px; }
      section.machines .machines-slider-container .machines-slider .content.featured {
        background-color: #242423;
        color: #fff;
        border-bottom: none;
        height: 680px;
        display: flex;
        flex-direction: column;
        justify-content: end; }
        section.machines .machines-slider-container .machines-slider .content.featured h3 {
          font-size: 34px; }
        section.machines .machines-slider-container .machines-slider .content.featured a {
          color: #fff;
          height: 30px;
          display: inline-block;
          font-weight: bold;
          border-bottom: 2px solid #d22; }
      @media (max-width: 768px) {
        section.machines .machines-slider-container .machines-slider .content {
          max-width: 100%;
          width: 80vw; } }

section.about {
  display: flex;
  overflow: hidden;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto; }
  @media (max-width: 768px) {
    section.about {
      flex-direction: column-reverse; } }
  section.about .images {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    background-color: #f9f9f9;
    padding-top: 100px; }
    section.about .images .image-group {
      position: relative;
      display: flex;
      gap: 20px;
      align-items: flex-start; }
      section.about .images .image-group .right-img {
        top: -10%; }
      section.about .images .image-group .left-img,
      section.about .images .image-group .right-img {
        position: relative;
        width: 50%;
        height: auto;
        object-fit: cover; }
      section.about .images .image-group .highlight-box {
        position: absolute;
        width: 30%;
        height: 30%;
        bottom: -10%;
        left: 22%;
        background-color: #d72121;
        color: #fff;
        padding: 20px 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
        section.about .images .image-group .highlight-box .number {
          text-align: right;
          font-size: 70px;
          font-weight: bold;
          line-height: 1; }
        section.about .images .image-group .highlight-box .text {
          text-align: right;
          font-size: 16px;
          margin-top: 10px;
          line-height: 1.4; }
        @media (max-width: 768px) {
          section.about .images .image-group .highlight-box {
            width: 40%; }
            section.about .images .image-group .highlight-box .number {
              font-size: 40px; } }
  section.about .description {
    flex-basis: 50%; }
    section.about .description h2 {
      color: #000; }
    section.about .description .text {
      max-width: 400px; }
    section.about .description a {
      color: #000;
      font-weight: bold;
      border-bottom: 4px solid #d22; }
    @media (max-width: 768px) {
      section.about .description {
        width: 85%; }
        section.about .description .text {
          padding: 20px; } }

section.icons {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff; }
  section.icons .icon {
    padding: 20px;
    width: 300px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    section.icons .icon img {
      height: 60px; }
    section.icons .icon div {
      font-weight: 600;
      font-size: 24px; }
  @media (max-width: 768px) {
    section.icons {
      gap: 20px; }
      section.icons .icon {
        gap: 10px; }
        section.icons .icon div {
          font-weight: 400;
          font-size: 18px; } }

section.footer {
  background-color: #242423;
  min-height: 430px;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  color: white; }
  @media (max-width: 768px) {
    section.footer {
      flex-direction: column; } }
  section.footer a {
    color: #fff; }
  section.footer .footer-column {
    padding: 20px;
    flex-grow: 1; }
    section.footer .footer-column ul {
      list-style: none;
      padding-right: 0; }
  section.footer .contact-form {
    background-image: url("../images/footer.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    section.footer .contact-form h3 {
      margin: 0; }
    @media (max-width: 768px) {
      section.footer .contact-form {
        width: 100%; } }
    section.footer .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 390px; }
      @media (max-width: 768px) {
        section.footer .contact-form form {
          width: 90%;
          padding: 0; } }
      section.footer .contact-form form button[type="submit"] {
        background: none;
        border: none;
        border-bottom: 4px solid #000;
        color: #fff;
        font-weight: bold;
        width: fit-content;
        align-self: end;
        font-size: 24px;
        display: inline; }
      section.footer .contact-form form input {
        background: transparent;
        border: none;
        border-bottom: 1px solid white;
        padding: 8px;
        color: white;
        font-size: 14px; }
        section.footer .contact-form form input::placeholder {
          color: white; }
  section.footer .social-icons {
    display: flex;
    gap: 10px; }
    section.footer .social-icons img {
      width: 30px;
      height: 30px;
      object-fit: contain; }

section.copy {
  flex-direction: row;
  justify-content: space-between; }
  section.copy a {
    color: #000;
    margin: 0 auto; }
  section.copy div {
    flex-basis: 50%;
    text-align: center; }
  @media (max-width: 768px) {
    section.copy {
      font-size: 14px;
      flex-direction: column; } }

.slick-prev-custom, .slick-next-custom {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; }

.slick-prev-custom {
  left: -40px; }

.slick-next-custom {
  right: -40px; }

.slick-prev-custom img, .slick-next-custom img {
  width: 20px;
  height: auto; }
  .slick-prev-custom img.negative, .slick-next-custom img.negative {
    filter: invert(1); }

.suppliers-slider-container {
  position: relative; }

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