@charset "UTF-8";
:root {
  --font-main: "Open Sans Hebrew", sans-serif;
  --font-second: "Questrial", sans-serif;
  --swiper-navigation-size: 36px;
  --swiper-scrollbar-border-radius: 0;
}

.nav_top_right {
  position: relative;
}
.nav_top_right .swiper_nav {
  position: absolute;
  right: 0;
  top: 0;
}
.nav_top_right .swiper-button-next {
  right: 0;
  top: 10px;
  margin-top: 0;
}
.nav_top_right .swiper-button-prev {
  margin-top: 0;
  top: 10px;
  left: auto;
  right: calc(var(--swiper-navigation-size) + 18px);
}

.swiper_nav {
  --swiper-theme-color: #0D0D0D;
}
.swiper_nav .swiper-button-next,
.swiper_nav .swiper-button-prev {
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  border: 0.5px solid rgba(13, 13, 13, 0.4);
  border-radius: 50%;
}
.swiper_nav .swiper-button-next .swiper-navigation-icon,
.swiper_nav .swiper-button-prev .swiper-navigation-icon {
  display: none;
}

.swiper_nav_white {
  --swiper-navigation-size: 36px;
}
.swiper_nav_white .swiper-button-next {
  background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1141_6236)"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.2061 7.5L9.85306 11.854L9.14505 11.147L12.2921 8L0.999056 8L0.999056 7L12.2921 7L9.14506 3.854L9.85306 3.146L14.2061 7.5Z" fill="%230D0D0D"/></g><defs><clipPath id="clip0_1141_6236"><rect width="15" height="15" fill="white" transform="translate(14.999) rotate(90)"/></clipPath></defs></svg>');
}
.swiper_nav_white .swiper-button-prev {
  background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.792847 7.50009L5.14585 11.8541L5.85385 11.1471L2.70685 8.00009L13.9998 8.00009L13.9998 7.00009L2.70685 7.00009L5.85385 3.85409L5.14585 3.14609L0.792847 7.50009Z" fill="%230D0D0D"/></svg>');
}

.dark-section {
  --swiper-scrollbar-drag-bg-color: #EFEFEF;
  --swiper-scrollbar-bg-color: #9B9B9B99;
}
.dark-section .swiper_nav {
  --swiper-theme-color: #EFEFEF;
}
.dark-section .swiper_nav .swiper-button-next,
.dark-section .swiper_nav .swiper-button-prev {
  border: none;
  background-color: #282828;
}
.dark-section .swiper_nav .swiper-button-next {
  background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1141_6236)"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.2061 7.5L9.85306 11.854L9.14505 11.147L12.2921 8L0.999056 8L0.999056 7L12.2921 7L9.14506 3.854L9.85306 3.146L14.2061 7.5Z" fill="%23EFEFEF"/></g><defs><clipPath id="clip0_1141_6236"><rect width="15" height="15" fill="none" transform="translate(14.999) rotate(90)"/></clipPath></defs></svg>');
}
.dark-section .swiper_nav .swiper-button-prev {
  background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.792847 7.50009L5.14585 11.8541L5.85385 11.1471L2.70685 8.00009L13.9998 8.00009L13.9998 7.00009L2.70685 7.00009L5.85385 3.85409L5.14585 3.14609L0.792847 7.50009Z" fill="%23EFEFEF"/></svg>');
}

.row {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 0px;
}
@media screen and (max-width: 992px) {
  .row {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 14px;
         column-gap: 14px;
    row-gap: 0;
  }
}

.col-1 {
  grid-column: auto/span 12;
}

.col-1-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-11 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2 {
  grid-column: auto/span 12;
}

.col-2-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3 {
  grid-column: auto/span 12;
}

.col-3-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4 {
  grid-column: auto/span 12;
}

.col-4-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5 {
  grid-column: auto/span 12;
}

.col-5-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6 {
  grid-column: auto/span 12;
}

.col-6-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7 {
  grid-column: auto/span 12;
}

.col-7-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8 {
  grid-column: auto/span 12;
}

.col-8-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-9 {
  grid-column: auto/span 12;
}

.col-9-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-9-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-9-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-10 {
  grid-column: auto/span 12;
}

.col-10-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-10-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-11 {
  grid-column: auto/span 12;
}

.col-11-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-12 {
  grid-column: auto/span 12;
}

.col-lg-1 {
  grid-column: auto/span 12;
}

.col-lg-1-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-11 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2 {
  grid-column: auto/span 12;
}

.col-lg-2-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3 {
  grid-column: auto/span 12;
}

.col-lg-3-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4 {
  grid-column: auto/span 12;
}

.col-lg-4-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5 {
  grid-column: auto/span 12;
}

.col-lg-5-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6 {
  grid-column: auto/span 12;
}

.col-lg-6-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7 {
  grid-column: auto/span 12;
}

.col-lg-7-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8 {
  grid-column: auto/span 12;
}

.col-lg-8-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-9 {
  grid-column: auto/span 12;
}

.col-lg-9-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-9-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-9-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-10 {
  grid-column: auto/span 12;
}

.col-lg-10-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-10-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-11 {
  grid-column: auto/span 12;
}

.col-lg-11-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-12 {
  grid-column: auto/span 12;
}

@media screen and (min-width: 992px) {
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-1-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .col-lg-1-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 4;
  }
  .col-lg-1-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 5;
  }
  .col-lg-1-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 6;
  }
  .col-lg-1-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 7;
  }
  .col-lg-1-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 8;
  }
  .col-lg-1-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 9;
  }
  .col-lg-1-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 10;
  }
  .col-lg-1-offset-9 {
    display: flex;
    grid-column-start: 10;
    grid-column-end: 11;
  }
  .col-lg-1-offset-10 {
    display: flex;
    grid-column-start: 11;
    grid-column-end: 12;
  }
  .col-lg-1-offset-11 {
    display: flex;
    grid-column-start: 12;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-2-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .col-lg-2-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .col-lg-2-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 6;
  }
  .col-lg-2-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 7;
  }
  .col-lg-2-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 8;
  }
  .col-lg-2-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 9;
  }
  .col-lg-2-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 10;
  }
  .col-lg-2-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 11;
  }
  .col-lg-2-offset-9 {
    display: flex;
    grid-column-start: 10;
    grid-column-end: 12;
  }
  .col-lg-2-offset-10 {
    display: flex;
    grid-column-start: 11;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-3-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 5;
  }
  .col-lg-3-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 6;
  }
  .col-lg-3-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 7;
  }
  .col-lg-3-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 8;
  }
  .col-lg-3-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 9;
  }
  .col-lg-3-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 10;
  }
  .col-lg-3-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 11;
  }
  .col-lg-3-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 12;
  }
  .col-lg-3-offset-9 {
    display: flex;
    grid-column-start: 10;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-4-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 6;
  }
  .col-lg-4-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 7;
  }
  .col-lg-4-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 8;
  }
  .col-lg-4-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 9;
  }
  .col-lg-4-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 10;
  }
  .col-lg-4-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 11;
  }
  .col-lg-4-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 12;
  }
  .col-lg-4-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-5-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 7;
  }
  .col-lg-5-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 8;
  }
  .col-lg-5-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 9;
  }
  .col-lg-5-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 10;
  }
  .col-lg-5-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 11;
  }
  .col-lg-5-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 12;
  }
  .col-lg-5-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-6-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 8;
  }
  .col-lg-6-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 9;
  }
  .col-lg-6-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 10;
  }
  .col-lg-6-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 11;
  }
  .col-lg-6-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 12;
  }
  .col-lg-6-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-7-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 9;
  }
  .col-lg-7-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 10;
  }
  .col-lg-7-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 11;
  }
  .col-lg-7-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 12;
  }
  .col-lg-7-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-8-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 10;
  }
  .col-lg-8-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 11;
  }
  .col-lg-8-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 12;
  }
  .col-lg-8-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-9 {
    grid-column: span 9;
  }
  .col-lg-9-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 11;
  }
  .col-lg-9-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 12;
  }
  .col-lg-9-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-10 {
    grid-column: span 10;
  }
  .col-lg-10-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 12;
  }
  .col-lg-10-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-11 {
    grid-column: span 11;
  }
  .col-lg-11-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-12 {
    grid-column: span 12;
  }
}
input,
button,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

* {
  outline: 0 !important;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
}
.all_pages ul {
  margin: 0;
  background: #00D2FF;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

.section {
  background-color: #FBF8F5;
}

.dark-section {
  background-color: #171818;
  color: #EFEFEF;
}
.dark-section p,
.dark-section a {
  color: #EFEFEF;
}

.position_relative {
  position: relative;
}

.btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 20px;
  border: 0.6px solid #efefef;
  background: transparent;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.btn.btn-dark {
  border: 0.6px solid #171818;
}
.btn span {
  color: #171818;
}

.btn:not(.btn-arrow) {
  font-size: 15px;
  transition: all 0.25s ease;
}
.btn:not(.btn-arrow):hover {
  background-color: #171818;
  color: #fff;
}

.btn span {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 15px;
  line-height: 1.1;
  color: #efefef;
  white-space: nowrap;
}

.btn-arrow {
  padding-right: 54px;
  background-image: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14" cy="14" r="13.75" stroke="%23171818" stroke-width="0.5"/><g clip-path="url(%23clip0_1141_6344)"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.207 13.5L15.854 17.854L15.146 17.147L18.293 14L7.00003 14L7.00003 13L18.293 13L15.146 9.854L15.854 9.146L20.207 13.5Z" fill="%23171818"/></g><defs><clipPath id="clip0_1141_6344"><rect width="15" height="15" fill="white" transform="translate(21 6) rotate(90)"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center right 20px;
  transition: all 0.35s ease;
}
.btn-arrow:hover {
  background-position: center right 14px;
}

@font-face {
  font-family: "Open Sans Hebrew";
  src: url("../fonts/OpenSansHebrew/OpenSansHebrew-regular.eot");
  src: local("Open Sans Hebrew"), local("Open Sans Hebrew"), url("../fonts/OpenSansHebrew/OpenSansHebrew-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSansHebrew/OpenSansHebrew-regular.woff2") format("woff2"), url("../fonts/OpenSansHebrew/OpenSansHebrew-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Questrial";
  src: url("../fonts/Questrial/Questrial-Regular.eot");
  src: url("../fonts/Questrial/Questrial-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Questrial/Questrial-Regular.woff2") format("woff2"), url("../fonts/Questrial/Questrial-Regular.woff") format("woff"), url("../fonts/Questrial/Questrial-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.row {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 0px;
}
@media screen and (max-width: 992px) {
  .row {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 14px;
         column-gap: 14px;
    row-gap: 0;
  }
}

.col-1 {
  grid-column: auto/span 12;
}

.col-1-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-1-offset-11 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2 {
  grid-column: auto/span 12;
}

.col-2-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-2-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3 {
  grid-column: auto/span 12;
}

.col-3-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-3-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4 {
  grid-column: auto/span 12;
}

.col-4-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-4-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5 {
  grid-column: auto/span 12;
}

.col-5-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-5-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6 {
  grid-column: auto/span 12;
}

.col-6-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-6-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7 {
  grid-column: auto/span 12;
}

.col-7-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-7-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8 {
  grid-column: auto/span 12;
}

.col-8-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-8-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-9 {
  grid-column: auto/span 12;
}

.col-9-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-9-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-9-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-10 {
  grid-column: auto/span 12;
}

.col-10-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-10-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-11 {
  grid-column: auto/span 12;
}

.col-11-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-12 {
  grid-column: auto/span 12;
}

.col-lg-1 {
  grid-column: auto/span 12;
}

.col-lg-1-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-1-offset-11 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2 {
  grid-column: auto/span 12;
}

.col-lg-2-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-2-offset-10 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3 {
  grid-column: auto/span 12;
}

.col-lg-3-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-3-offset-9 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4 {
  grid-column: auto/span 12;
}

.col-lg-4-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-4-offset-8 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5 {
  grid-column: auto/span 12;
}

.col-lg-5-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-5-offset-7 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6 {
  grid-column: auto/span 12;
}

.col-lg-6-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-6-offset-6 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7 {
  grid-column: auto/span 12;
}

.col-lg-7-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-7-offset-5 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8 {
  grid-column: auto/span 12;
}

.col-lg-8-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-8-offset-4 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-9 {
  grid-column: auto/span 12;
}

.col-lg-9-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-9-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-9-offset-3 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-10 {
  grid-column: auto/span 12;
}

.col-lg-10-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-10-offset-2 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-11 {
  grid-column: auto/span 12;
}

.col-lg-11-offset-1 {
  display: flex;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.col-lg-12 {
  grid-column: auto/span 12;
}

@media screen and (min-width: 992px) {
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-1-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .col-lg-1-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 4;
  }
  .col-lg-1-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 5;
  }
  .col-lg-1-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 6;
  }
  .col-lg-1-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 7;
  }
  .col-lg-1-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 8;
  }
  .col-lg-1-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 9;
  }
  .col-lg-1-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 10;
  }
  .col-lg-1-offset-9 {
    display: flex;
    grid-column-start: 10;
    grid-column-end: 11;
  }
  .col-lg-1-offset-10 {
    display: flex;
    grid-column-start: 11;
    grid-column-end: 12;
  }
  .col-lg-1-offset-11 {
    display: flex;
    grid-column-start: 12;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-2-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .col-lg-2-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .col-lg-2-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 6;
  }
  .col-lg-2-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 7;
  }
  .col-lg-2-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 8;
  }
  .col-lg-2-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 9;
  }
  .col-lg-2-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 10;
  }
  .col-lg-2-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 11;
  }
  .col-lg-2-offset-9 {
    display: flex;
    grid-column-start: 10;
    grid-column-end: 12;
  }
  .col-lg-2-offset-10 {
    display: flex;
    grid-column-start: 11;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-3-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 5;
  }
  .col-lg-3-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 6;
  }
  .col-lg-3-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 7;
  }
  .col-lg-3-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 8;
  }
  .col-lg-3-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 9;
  }
  .col-lg-3-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 10;
  }
  .col-lg-3-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 11;
  }
  .col-lg-3-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 12;
  }
  .col-lg-3-offset-9 {
    display: flex;
    grid-column-start: 10;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-4-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 6;
  }
  .col-lg-4-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 7;
  }
  .col-lg-4-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 8;
  }
  .col-lg-4-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 9;
  }
  .col-lg-4-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 10;
  }
  .col-lg-4-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 11;
  }
  .col-lg-4-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 12;
  }
  .col-lg-4-offset-8 {
    display: flex;
    grid-column-start: 9;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-5-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 7;
  }
  .col-lg-5-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 8;
  }
  .col-lg-5-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 9;
  }
  .col-lg-5-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 10;
  }
  .col-lg-5-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 11;
  }
  .col-lg-5-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 12;
  }
  .col-lg-5-offset-7 {
    display: flex;
    grid-column-start: 8;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-6-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 8;
  }
  .col-lg-6-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 9;
  }
  .col-lg-6-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 10;
  }
  .col-lg-6-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 11;
  }
  .col-lg-6-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 12;
  }
  .col-lg-6-offset-6 {
    display: flex;
    grid-column-start: 7;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-7-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 9;
  }
  .col-lg-7-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 10;
  }
  .col-lg-7-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 11;
  }
  .col-lg-7-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 12;
  }
  .col-lg-7-offset-5 {
    display: flex;
    grid-column-start: 6;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-8-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 10;
  }
  .col-lg-8-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 11;
  }
  .col-lg-8-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 12;
  }
  .col-lg-8-offset-4 {
    display: flex;
    grid-column-start: 5;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-9 {
    grid-column: span 9;
  }
  .col-lg-9-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 11;
  }
  .col-lg-9-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 12;
  }
  .col-lg-9-offset-3 {
    display: flex;
    grid-column-start: 4;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-10 {
    grid-column: span 10;
  }
  .col-lg-10-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 12;
  }
  .col-lg-10-offset-2 {
    display: flex;
    grid-column-start: 3;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-11 {
    grid-column: span 11;
  }
  .col-lg-11-offset-1 {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 13;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-12 {
    grid-column: span 12;
  }
}
/* Cart Page Styles */
.woocommerce-cart {
  padding: 120px 0 160px;
}

.cart-title {
  font-family: "Questrial", sans-serif;
  font-size: 34px;
  color: #171818;
  text-align: center;
  margin: 0 0 80px;
  line-height: 1.1;
}

/* Cart Table */
.woocommerce-cart-form__contents {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}

.woocommerce-cart-form__contents thead th {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  color: #171818;
  padding: 20px 0;
  border: none;
  border-bottom: 1px solid #DDDDDD;
  text-align: left;
  font-weight: 400;
  text-transform: none;
}

.woocommerce-cart-form__contents tbody td {
  padding: 30px 0;
  border: none;
  border-bottom: 1px solid #DDDDDD;
  vertical-align: top;
}

/* Product Row */
.cart_item {
  position: relative;
}

.product-thumbnail {
  width: 278px;
  padding-right: 49px !important;
}

.product-thumbnail img {
  width: 100%;
  height: auto;
  max-width: 278px;
}

.product-name {
  width: 331px;
  padding-right: 60px !important;
}

.product-name a {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  color: #171818;
  text-decoration: none;
  line-height: normal;
  margin-bottom: 30px;
  display: block;
}

/* Product Meta Data */
.wc-item-meta {
  margin-top: 30px;
}

.wc-item-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-item-meta-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: normal;
}

.wc-item-meta-label {
  font-family: "Open Sans Hebrew", sans-serif;
  color: #737272;
  width: 180px;
  flex-shrink: 0;
}

.wc-item-meta-value {
  font-family: "Open Sans Hebrew", sans-serif;
  color: #4e4e4e;
}

/* Delivery and Quantity Headers */
.product-delivery,
.product-quantity-header {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  color: #171818;
  line-height: normal;
}

/* Delivery Info */
.product-delivery-info {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  color: #171818;
  line-height: normal;
  margin-top: 56px;
}

/* Quantity Controls */
.product-quantity {
  text-align: center;
  width: 72px;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
}

.qty {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  color: #171818;
  text-align: center;
  background: none;
  border: none;
  width: 20px;
  padding: 0;
  line-height: normal;
}

.quantity-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quantity-btn {
  width: 14px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn img {
  width: 100%;
  height: 100%;
}

/* Total Column */
.product-subtotal {
  text-align: right;
  width: 114px;
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  color: #171818;
  line-height: normal;
}

.product-subtotal .amount {
  margin-top: 56px;
  display: block;
}

/* Remove Product */
.product-remove {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: auto;
  padding: 0 !important;
  border: none !important;
}

.remove-product-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #4e4e4e;
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 14px;
  line-height: normal;
}

.remove-product-link:hover {
  color: #171818;
}

.remove-icon {
  width: 17px;
  height: 17px;
}

/* Cart Actions */
.actions {
  padding: 60px 0 !important;
  border: none !important;
}

.coupon-section {
  background: #efefef;
  padding: 20px 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 399px;
}

.coupon-title {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: normal;
  margin: 0;
}

.coupon-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.coupon-toggle img {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}

/* Shipping Calculator */
.shipping-calculator {
  width: 418px;
  margin-bottom: 30px;
}

.shipping-title {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: normal;
  margin: 0 0 10px;
}

.shipping-description {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 14px;
  color: #4e4e4e;
  line-height: normal;
  margin: 0 0 10px;
}

.shipping-controls {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 10px;
}

.shipping-select {
  width: 261px;
  height: 48px;
  background: #ffffff;
  border: 0.5px solid #737272;
  padding: 0 10px;
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 14px;
  color: #4e4e4e;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shipping-check-btn {
  height: 48px;
  padding: 0 42px;
  background: none;
  border: 0.7px solid #171818;
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 14px;
  color: #171818;
  cursor: pointer;
  line-height: normal;
}

.shipping-result {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 14px;
  color: #349d3f;
  line-height: normal;
  margin: 0;
}

/* Cart Totals */
.cart-collaterals {
  width: 384px;
  margin-left: auto;
}

.cart_totals {
  width: 100%;
}

.cart_totals h2 {
  display: none;
}

.cart_totals .shop_table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 40px;
}

.cart_totals .shop_table tr {
  border: none;
}

.cart_totals .shop_table th,
.cart_totals .shop_table td {
  border: none;
  padding: 5px 0;
  font-family: "Open Sans Hebrew", sans-serif;
  line-height: normal;
}

.cart-subtotal th,
.cart-subtotal td {
  font-size: 16px;
  color: #171818;
}

.cart-discount th,
.cart-discount td {
  font-size: 16px;
  color: #171818;
}

.order-total th {
  font-size: 18px;
  color: #171818;
}

.order-total td {
  text-align: right;
}

.order-total .amount {
  font-size: 18px;
  color: #171818;
  display: block;
  margin-bottom: 4px;
}

.tax-info {
  font-size: 14px;
  color: #171818;
  display: block;
}

/* Checkout Button */
.wc-proceed-to-checkout {
  width: 100%;
}

.checkout-button {
  width: 100%;
  height: 64px;
  background: #171818;
  border: none;
  color: #efefef;
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.checkout-button:hover {
  background: #2d2d2d;
  color: #efefef;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .cart-title {
    font-size: 25px;
    margin-bottom: 60px;
  }
  .woocommerce-cart-form__contents {
    display: block;
  }
  .woocommerce-cart-form__contents thead {
    display: none;
  }
  .woocommerce-cart-form__contents tbody,
  .woocommerce-cart-form__contents tr,
  .woocommerce-cart-form__contents td {
    display: block;
    width: 100%;
  }
  .cart_item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #DDDDDD;
  }
  .product-thumbnail {
    width: 227px;
    padding-right: 49px !important;
    display: inline-block;
    vertical-align: top;
  }
  .product-name {
    width: calc(100% - 276px);
    padding-right: 0 !important;
    display: inline-block;
    vertical-align: top;
  }
  .product-delivery,
  .product-quantity,
  .product-subtotal {
    display: inline-block;
    width: auto;
    margin-top: 30px;
  }
  .product-delivery {
    width: 227px;
    vertical-align: top;
  }
  .product-quantity {
    width: 72px;
    margin-left: 50px;
    text-align: left;
  }
  .product-subtotal {
    width: 227px;
    margin-left: auto;
    text-align: right;
    float: right;
  }
  .product-price {
    display: none;
  }
  .product-remove {
    position: static;
    margin-top: 20px;
  }
  .cart-collaterals {
    width: 100%;
    margin-left: 0;
  }
  .coupon-section {
    width: 406px;
    max-width: 100%;
  }
  .shipping-calculator {
    width: 100%;
  }
}
/* Mobile Styles */
@media (max-width: 576px) {
  .woocommerce-cart {
    padding: 80px 0 120px;
  }
  .cart-title {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .cart_item {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
  .product-thumbnail,
  .product-name {
    display: block;
    width: 100%;
    padding-right: 0 !important;
    margin-bottom: 14px;
  }
  .product-thumbnail {
    width: 101px;
    height: 71px;
    margin-bottom: 14px;
  }
  .product-name {
    margin-bottom: 20px;
  }
  .product-name a {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .wc-item-meta-list li {
    gap: 4px;
    font-size: 14px;
  }
  .wc-item-meta-label {
    width: 180px;
  }
  .product-delivery {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .product-delivery::before {
    content: "Lieferung";
    display: block;
    font-size: 15px;
    color: #171818;
    margin-bottom: 10px;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 10px;
  }
  .product-delivery-info {
    font-size: 15px;
    margin-top: 0;
  }
  .quantity-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  .quantity-section::before {
    content: "Anzahl";
    font-family: "Open Sans Hebrew", sans-serif;
    font-size: 15px;
    color: #171818;
    line-height: normal;
  }
  .quantity-section::after {
    content: "Gesamtsumme";
    font-family: "Open Sans Hebrew", sans-serif;
    font-size: 15px;
    color: #171818;
    line-height: normal;
  }
  .product-quantity,
  .product-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    float: none;
  }
  .quantity {
    margin-top: 0;
    gap: 12px;
  }
  .quantity-controls {
    gap: 18px;
  }
  .quantity-btn {
    width: 21px;
    height: 21px;
  }
  .product-subtotal .amount {
    font-size: 15px;
    margin-top: 0;
    text-align: right;
    width: 80px;
  }
  .shipping-controls {
    flex-direction: column;
    gap: 13px;
  }
  .shipping-select,
  .shipping-check-btn {
    width: 100%;
  }
  .shipping-check-btn {
    height: 56px;
    font-size: 15px;
  }
  .coupon-section {
    width: 100%;
  }
  .checkout-button {
    height: 72px;
    font-size: 15px;
  }
  .cart_totals .shop_table th,
  .cart_totals .shop_table td {
    font-size: 15px;
  }
  .order-total th,
  .order-total .amount {
    font-size: 16px;
  }
  .tax-info {
    font-size: 13px;
  }
}
/* Empty Cart Styles */
.empty-cart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 62px 20px;
  text-align: center;
  width: 100%;
  max-width: 273px;
  margin: 0 auto;
}

.empty-cart-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.empty-cart-title {
  font-family: "Questrial", sans-serif;
  font-size: 34px;
  color: #171818;
  margin: 0;
  line-height: 1.1;
}

.empty-cart-message {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  color: #171818;
  margin: 0;
  line-height: normal;
}

.empty-cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  border: 0.7px solid #171818;
  background: transparent;
  text-decoration: none;
  color: #171818;
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  line-height: 1.1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.empty-cart-button:hover {
  background: #171818;
  color: #ffffff;
}

.empty-cart-button-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-cart-button-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 576px) {
  .empty-cart-container {
    max-width: 100%;
    gap: 30px;
    padding: 40px 20px;
  }
  .empty-cart-title {
    font-size: 28px;
  }
  .empty-cart-message {
    font-size: 15px;
  }
  .empty-cart-button {
    font-size: 15px;
    padding: 12px 18px;
  }
}
/* Footer Styles */
.site-footer {
  background-color: #f5f2f0;
  padding: 60px 0 0;
}
.site-footer p, .site-footer a {
  font-size: 15px;
}
@media screen and (max-width: 992px) {
  .site-footer p, .site-footer a {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .site-footer p, .site-footer a {
    font-size: 16px;
  }
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 42px;
}

.footer-content > .row {
  flex-wrap: nowrap !important;
}

.footer-column-menu {
  padding-left: 30%;
  position: relative;
}

/* Column separator line */
.footer-column-menu::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 1px;
  height: 364px;
  background-color: #a9a9a9;
  opacity: 0.3;
}

/* Typography */
.footer-heading {
  font-family: "Questrial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  color: #4e4e4e;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 992px) {
  .footer-heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .footer-heading {
    font-size: 18px;
  }
}

.footer-subheading {
  font-family: "Questrial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  color: #4e4e4e;
  margin: 32px 0 24px 0;
}
@media screen and (max-width: 992px) {
  .footer-subheading {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .footer-subheading {
    font-size: 18px;
  }
}

.store-heading {
  font-family: "Questrial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  color: #4e4e4e;
  margin: 32px 0 16px 0;
}
@media screen and (max-width: 992px) {
  .store-heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .store-heading {
    font-size: 18px;
  }
}

/* Company Info */
.company-name p {
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  margin: 0 0 8px 0;
}

.company-name p:last-child {
  margin-bottom: 0;
}

/* Store Address */
.store-address {
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  font-style: normal;
  margin: 0 0 24px 0;
}

/* Opening Hours */
.opening-hours p {
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  margin: 0 0 4px 0;
}

.opening-hours p:first-child {
  margin-bottom: 8px;
}

/* Contact Info */
.contact-info p {
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  margin: 0 0 8px 0;
}

.contact-info p:last-child {
  margin-bottom: 24px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 42px;
}

.social-icons a {
  display: block;
  width: 27px;
  height: 27px;
}

/* Footer Menu */
.footer-menu ul,
.footer-legal ul,
.footer-faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li,
.footer-legal li,
.footer-faq li {
  margin-bottom: 8px;
}

.footer-menu li:last-child,
.footer-legal li:last-child,
.footer-faq li:last-child {
  margin-bottom: 0;
}

.footer-menu a,
.footer-legal a,
.footer-faq a {
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  text-decoration: none;
}

.contact-info a {
  color: #000000;
  text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(169, 169, 169, 0.3);
  margin-top: 60px;
  padding: 24px 0;
}

.footer-copyright {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 42px;
  text-align: center;
}

.footer-copyright p {
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  color: #000000;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .d-flex {
    display: flex;
    gap: 20%;
  }
  .footer-content > .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 0px;
    grid-row-gap: 40px;
  }
  .footer-content > .row .footer-column:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .footer-content > .row .footer-column:nth-child(2) {
    grid-area: 2/1/3/12;
  }
  .footer-content > .row .footer-column:nth-child(3) {
    grid-area: 1/2/3/3;
  }
  .footer-content > .row .footer-column:nth-child(4) {
    grid-area: 1/3/3/4;
  }
  .site-footer {
    padding: 50px 0 0;
  }
  .footer-column-menu::before {
    display: none;
  }
  .footer-content {
    padding: 0 20px;
  }
  .footer-copyright {
    padding: 0 20px;
  }
  .footer-column-menu {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
  }
  .footer-bottom {
    margin-top: 40px;
  }
}
@media (max-width: 650px) {
  .footer-content {
    position: relative;
    padding-bottom: 200px;
  }
  .footer_logo_img {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-content > .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-content > .row .footer-column:nth-child(2) {
    order: 1;
  }
  .footer-content > .row .footer-column:nth-child(3) {
    order: 2;
  }
  .footer-content > .row .footer-column:nth-child(4) {
    order: 3;
  }
  .footer-content > .row .footer-column:nth-child(1) {
    order: 4;
  }
  .footer-heading {
    margin-bottom: 20px;
  }
  .social-icons {
    justify-content: center;
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .footer-content {
    padding-inline: 15px;
  }
  .footer-copyright {
    padding: 0 15px;
  }
  .footer-copyright p {
    font-size: 14px;
  }
  .footer-bottom {
    display: none;
  }
}
.footer_logo_img {
  display: block;
  max-width: 126px;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .footer_logo_img {
    bottom: 30px;
  }
}

/* Header Styles */
.header {
  position: absolute;
  top: 10px;
  left: 15px;
  right: 15px;
  z-index: 100;
}

.header-container {
  background: rgba(255, 255, 255, 0.86);
  max-width: 1410px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: 10px;
  padding: 0 26px;
  position: relative;
  z-index: 10;
}

.header-left {
  display: flex;
  gap: 30px;
}

.header-logo {
  margin-block: 12px;
}
@media screen and (max-width: 992px) {
  .header-logo {
    margin-block: 0;
  }
}

.header-logo img {
  display: block;
  width: 87px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.nav-items li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #666666;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.phone-link {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #666666;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  cursor: pointer;
}

.header-icon.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  bottom: 0;
  right: -4px;
  display: flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #171818;
  color: #efefef;
  font-family: "Questrial", sans-serif;
  font-size: 13px;
  border-radius: 50%;
}

/* Page Heading Block */
.page-heading-block {
  background: #737373;
  padding-top: 86px;
  background-size: cover;
}

.page-heading-block--category {
  padding-bottom: 58px;
}

.page-heading-title {
  font-family: "Questrial", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  color: #fff;
  padding: 100px 0 50px;
  margin: 0;
}

.page-heading-title--category {
  text-transform: uppercase;
  padding-top: 73px;
  padding-bottom: 20px;
}

.page-heading-description {
  max-width: 540px;
  margin: 0 auto;
}

.page-heading-description p {
  color: #F5F2F0;
  text-align: center;
  font-size: 16px;
  margin: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.46);
  z-index: 9;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: absolute;
  top: 85px;
  left: 15px;
  right: 15px;
  background: #ffffff;
  border-radius: 10px;
  padding: 26px 20px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateY(0);
}

.mobile-nav-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav-link {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  display: block;
  position: relative;
}

.mobile-nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 19px;
  height: 13px;
  background: url("/wp-content/themes/msv/icons/arrow-right.svg") no-repeat center center;
  background-size: contain;
  top: 1px;
}

.mobile-menu-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.mobile-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-social-icon {
  display: block;
  width: 27px;
  height: 27px;
}

.mobile-social-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.searchsubmit-label {
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-items {
    gap: 15px;
  }
  .header-left {
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .header-left {
    gap: 20px;
  }
  .header-right {
    gap: 20px;
  }
  .burger-menu {
    display: block;
    cursor: pointer;
    width: 90px;
  }
  .burger-menu img {
    width: 21px;
  }
  .header-logo img {
    width: 72px;
    height: 44px;
  }
  .header-icon img {
    width: 22px;
  }
  .header-container {
    padding: 11px 20px;
  }
  .header-icons {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .header-container {
    padding: 10px 20px 10px 10px;
  }
  .header-left {
    gap: 12px;
    margin-left: 42px;
  }
  .header-right {
    gap: 14px;
  }
  .header-icons {
    gap: 14px;
  }
  .header-logo img {
    width: 65px;
    height: 40px;
  }
  .burger-menu {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 12px;
    top: 18px;
  }
  .mobile-menu {
    padding: 20px 15px;
  }
  .mobile-nav-items {
    gap: 25px;
  }
}
/* Hide burger menu on desktop */
@media (min-width: 993px) {
  .burger-menu {
    display: none;
  }
}
.nav-link-category:hover .dropdown,
.dropdown:hover .dropdown {
  cursor: initial;
  opacity: 1;
  pointer-events: initial;
  top: 86px;
}

.dropdown {
  position: absolute;
  right: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  top: 6rem;
  opacity: 0;
  height: -moz-max-content;
  height: max-content;
  transition: top 0.4s, opacity 0.3s ease;
}

.header_menu_wrap {
  width: 100%;
  padding: 12px 26px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  max-width: 1410px;
  transform: translateY(-20px);
}

* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Open Sans Hebrew", "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  color: #171818;
  background: #F8F8F8;
}

button {
  font-family: "Open Sans Hebrew", "Open Sans", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  box-shadow: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 42px);
  padding-right: clamp(20px, 4vw, 42px);
}
@media screen and (max-width: 575px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.small-container {
  width: 100%;
  max-width: 1214px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 42px);
  padding-right: clamp(20px, 4vw, 42px);
}

.mxw-440 {
  max-width: 440px;
}

.wp-block-group.has-background {
  padding: 30px 60px;
}

.has-white-background-color {
  background-color: #fff;
}

.d--none {
  display: none;
}

/* Typography */
.questrial {
  font-family: "Questrial", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 26px;
  margin-bottom: 16px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 0;
}

p {
  color: #171818;
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  p {
    font-size: 16px;
  }
}

a {
  color: #171818;
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.size-32 {
  font-size: 32px;
}

.size-26 {
  font-size: 26px;
}

.size-24 {
  font-size: 24px;
}

.size-22 {
  font-size: 22px;
}

.size-21 {
  font-size: 21px;
}

.size-18 {
  font-size: 18px;
}

.size-16 {
  font-size: 16px;
}

.size-15 {
  font-size: 15px;
}

.size-14 {
  font-size: 14px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.nowrap {
  white-space: nowrap;
}

/* Margins*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-80 {
  margin-top: 80px;
}

figure {
  margin: 0;
}

table {
  text-align: left;
}

tr {
  border-bottom: 1px solid #DDDDDD;
}

th, td {
  padding: 5px;
  border: 1px solid #c5c5c5;
}

th {
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
}

/* Base grid container */
/* Base column styles */
[class*=col-] {
  flex: 0 0 auto;
  box-sizing: border-box;
}

.section,
section,
body {
  overflow-x: clip;
}

/* Breadcrumbs */
.breadcrumbs {
  color: #171818;
  font-size: 14px;
}

.page-breadcrumbs-type-1 {
  padding-top: 120px;
}

/* Notice wrapper */
.woocommerce-notices-wrapper {
  margin: 0;
  padding: 0;
}

.woocommerce-notices-wrapper ul {
  margin: 32px 0 0;
  padding: 12px;
  background-color: #fff;
  border: 1px solid rgba(169, 169, 169, 0.6);
  list-style: none;
}

.woocommerce-error a {
  text-decoration: underline;
}

/* Notice */
.woocommerce-info {
  background: #171818;
  color: #ffffff;
}

/* Contact Form */
.contact-form {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form Field Styles */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--textarea {
  gap: 10px;
}

.form-label {
  color: #4e4e4e;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
}

.form-input {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  padding: 0 15px;
  font-size: 14px;
  color: #171818;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #171818;
}

.form-textarea {
  width: 100%;
  height: 140px;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  padding: 15px;
  font-size: 14px;
  color: #171818;
  resize: vertical;
  box-sizing: border-box;
}

.form-textarea:focus {
  outline: none;
  border-color: #171818;
}

/* Checkbox Styles */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 38px;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #4e4e4e;
  background: transparent;
  flex-shrink: 0;
  margin-top: 1px; /* Align with first line of text */
}

.checkbox-input:checked {
  background-color: #171818;
  border-color: #171818;
}

.checkbox-label {
  color: #4e4e4e;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
  cursor: pointer;
  flex: 1;
}

.privacy-link {
  color: #4e4e4e;
  text-decoration: underline;
  font-weight: 400;
}

.privacy-link:hover {
  color: #171818;
}

/* Submit Button Styles */
.submit-button {
  width: 100%;
  height: 54px;
  background: #171818;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-button:hover {
  background: #2d2d2d;
}

.submit-button:active {
  background: #000000;
}

.button-content {
  color: #efefef;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

/* Responsive Design */
@media (max-width: 576px) {
  .contact-form {
    max-width: 100%;
  }
  .form-checkbox {
    align-items: flex-start;
  }
  .checkbox-label {
    font-size: 13px;
    line-height: 18px;
  }
}
/* Focus and Accessibility */
.form-input:focus,
.form-textarea:focus,
.checkbox-input:focus {
  box-shadow: 0 0 0 2px rgba(23, 24, 24, 0.2);
}

.submit-button:focus {
  outline: 2px solid #4e4e4e;
  outline-offset: 2px;
}

/* Custom checkbox styling for better cross-browser support */
.checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

.checkbox-input:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

/* Cookie Notice */
#cookie-notice .cn-button {
  color: #000000;
  background: #fff;
  padding: 6px 18px;
}

#cn-close-notice {
  display: none;
}

/* Contact Info Block */
.contact-info-block {
  background: #171818;
  display: flex;
  align-items: stretch;
  min-height: 889px;
  position: relative;
  padding: 80px 0;
}

.contact-info-block .row {
  align-items: center;
}

.contact-info-section-white .contact-info-block {
  background: #ffffff;
}

.contact-info-block__image {
  flex: 0 0 555px;
  background: rgba(121, 120, 120, 0.12);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-info-block__image img {
  width: 100%;
}

.contact-info-block__content {
  flex: 1;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-block__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-block__title {
  font-family: "Questrial", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #efefef;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  line-height: 1.1;
  margin: 0;
}

.contact-info-section-white .contact-info-block__title {
  color: #171818;
}

.contact-info-block__address {
  font-family: "Questrial", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #efefef;
  line-height: 1.4;
  margin: 0;
}

.contact-info-section-white .contact-info-block__address {
  color: #171818;
}

.contact-info-block__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-block__section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-block__section-title {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #efefef;
  letter-spacing: 0.32px;
  margin: 0;
}

.contact-info-section-white .contact-info-block__section-title {
  color: #171818;
}

.contact-info-block__section-content p {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #efefef;
  line-height: normal;
  margin: 0;
}

.contact-info-section-white .contact-info-block__section-content p {
  color: #171818;
}

.contact-info-block__description p {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #efefef;
  line-height: 1.58;
  margin: 0;
}

.contact-info-section-white .contact-info-block__description p {
  color: #171818;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .contact-info-block {
    min-height: 679px;
    flex-direction: row;
    align-items: flex-start;
    padding: 100px 30px;
  }
  .contact-info-block__image {
    flex: 0 0 320px;
    height: 479px;
  }
  .contact-info-block__content {
    padding: 0 0 0 30px;
    max-width: 347px;
    gap: 20px;
  }
  .contact-info-block__title {
    font-size: 26px;
    letter-spacing: 0.78px;
  }
  .contact-info-block__address {
    font-size: 16px;
  }
  .contact-info-block__section-title,
  .contact-info-block__section-content p,
  .contact-info-block__description p {
    font-size: 14px;
  }
  .contact-info-block__section-title {
    letter-spacing: 0.28px;
  }
}
/* Mobile Styles */
@media (max-width: 576px) {
  .contact-info-block {
    min-height: auto;
    flex-direction: column;
    padding: 70px 20px 40px;
    gap: 40px;
  }
  .contact-info-block__image {
    flex: none;
    width: 100%;
    height: 290px;
    aspect-ratio: 441/290;
  }
  .contact-info-block__content {
    padding: 0;
    max-width: 100%;
    gap: 20px;
  }
  .contact-info-block__title {
    font-size: 26px;
    letter-spacing: 0.78px;
  }
  .contact-info-block__address {
    font-size: 20px;
  }
  .contact-info-block__section-title,
  .contact-info-block__section-content p,
  .contact-info-block__description p {
    font-size: 16px;
  }
  .contact-info-block__section-title {
    letter-spacing: 0.32px;
  }
}
/* Hero Section */
.hero-section {
  position: relative;
  height: 100dvh;
  min-height: 500px;
  overflow: hidden;
}
.hero-section .swiper {
  height: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 333.29% 100%;
  background-position: 13.09% 0%;
  background-repeat: no-repeat;
}

.hero-content {
  position: absolute;
  left: 20px;
  bottom: 100px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .hero-content {
    bottom: 160px;
  }
}

.hero-title {
  font-size: 34px;
  line-height: 1.34;
  color: #efefef;
  margin: 0;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .hero-title {
    font-size: 34px;
  }
}

.hero-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 20px;
  border: 0.6px solid #efefef;
  background: transparent;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.35s ease;
}
.hero-button:hover {
  gap: 10px;
  padding-right: 16px;
}

.hero-button span {
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 15px;
  line-height: 1.1;
  color: #efefef;
  white-space: nowrap;
}

.hero-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero-pagination {
  position: absolute;
  left: 20px;
  bottom: 83px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 115px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero-pagination {
    bottom: 70px;
    width: auto;
  }
}

.pagination-current,
.pagination-total {
  font-family: "Questrial", sans-serif;
  font-size: 15px;
  line-height: 1.1;
  color: #efefef;
  white-space: nowrap;
}

.pagination-line {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pagination-line-inner {
  position: absolute;
  left: 0;
  top: -0.5px;
  width: 40px;
  height: 5px;
  background: #efefef;
}
@media screen and (max-width: 768px) {
  .pagination-line-inner {
    top: -0.8px;
  }
}

/* Products Section */
.products-section {
  background-color: #171818;
  padding: 70px 0;
  color: #efefef;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 26px;
  letter-spacing: 0.78px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-description {
  font-size: 14px;
  line-height: 1.42;
  color: #efefef;
  margin-bottom: 0;
  max-width: 100%;
}

/* Mobile Layout (Default) */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  width: 213px;
  height: 311px;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 575px) {
  .product-card {
    width: calc(50% - 7px);
  }
}
.product-card:hover .product-arrow {
  opacity: 1;
  transition: all 0.35s ease;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-title {
  font-size: 18px;
  color: #efefef;
  text-shadow: rgba(33, 33, 33, 0.25) 0px 0px 17.8px;
  line-height: 1.46;
  white-space: nowrap;
}

.product-arrow {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.35s ease;
}

.product-arrow img {
  width: 100%;
  height: 100%;
  max-width: none;
}

/* Tablet Layout */
@media (min-width: 768px) {
  .products-section {
    padding: 100px 0;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-description {
    font-size: 14px;
    max-width: 536px;
    margin-left: auto;
    margin-right: auto;
  }
  .products-grid {
    max-width: 708px;
    gap: 14px;
  }
  .product-card {
    width: calc(50% - 7px);
    height: 231px;
    padding: 20px;
  }
  .product-title {
    font-size: 18px;
  }
  /* Hero Section Tablet */
  .hero-background {
    background-size: 117.95% 100%;
    background-position: top;
  }
  .hero-content {
    left: 30px;
    width: 400px;
    gap: 30px;
  }
  .hero-title {
    font-size: 48px;
    line-height: 1.2;
  }
  .hero-button {
    padding: 15px 20px;
    border: 1px solid #efefef;
  }
  .hero-button span {
    font-size: 16px;
  }
  .hero-pagination {
    right: 30px;
    left: auto;
    bottom: 60px;
    width: 150px;
  }
  .pagination-current,
  .pagination-total {
    font-size: 16px;
  }
}
/* Advantages Section */
.advantages-section {
  background-color: #f5f2f0;
  padding: 50px 0;
}

.advantages-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 50px;
  color: #171818;
  line-height: 1.42;
}

.advantages-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 313px;
  margin: 0 auto;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.advantage-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.advantage-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.advantage-title {
  font-size: 18px;
  color: #171818;
  margin: 0;
  line-height: 1.1;
}

.advantage-description {
  font-size: 15px;
  color: #4e4e4e;
  line-height: 1.42;
  margin: 0;
}

.advantage-divider {
  width: 100%;
  display: flex;
  justify-content: center;
}

.advantage-divider img {
  width: 100%;
  height: auto;
}

/* Tablet Layout */
@media (min-width: 768px) {
  .advantages-section {
    padding: 100px 0;
  }
  .advantages-title {
    font-size: 22px;
    margin-bottom: 100px;
  }
  .advantages-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    max-width: none;
  }
  .advantage-card {
    width: 313px;
    gap: 48px;
  }
  .advantage-icon {
    width: 36px;
    height: 36px;
  }
  .advantage-title {
    font-size: 16px;
  }
  .advantage-description {
    font-size: 13px;
  }
}
/* Desktop Layout */
@media (min-width: 1200px) {
  .products-section {
    padding: 100px 0;
  }
  .section-header {
    margin-bottom: 60px;
  }
  .section-title {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
  .section-description {
    font-size: 16px;
    max-width: 625px;
  }
  .products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    max-width: none;
    justify-content: center;
  }
  .product-card {
    width: 325px;
    height: 475px;
    padding: 30px;
  }
  .product-title {
    font-size: 26px;
  }
  /* Hero Section Desktop */
  .hero-section .hero-swiper {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
  }
  .hero-section .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hero-background {
    background-size: cover;
    background-position: center;
  }
  .hero-content {
    left: 40px;
    width: 695px;
    gap: 40px;
  }
  .hero-title {
    font-size: 64px;
    line-height: 1.2;
  }
  .hero-button {
    padding: 14px 20px;
    border: 1px solid #efefef;
    gap: 6px;
  }
  .hero-button span {
    font-size: 16px;
  }
  .hero-arrow {
    width: 28px;
    height: 28px;
  }
  .hero-pagination {
    right: 40px;
    left: auto;
    bottom: 118px;
    width: 229px;
    justify-content: flex-start;
  }
  .pagination-current,
  .pagination-total {
    font-size: 16px;
  }
  /* Advantages Section Desktop */
  .advantages-section {
    padding: 130px 0;
  }
  .advantages-title {
    font-size: 26px;
    margin-bottom: 130px;
  }
  .advantages-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 48px;
    max-width: none;
  }
  .advantage-card {
    width: 313px;
    gap: 48px;
  }
  .advantage-icon {
    width: 44px;
    height: 44px;
  }
  .advantage-title {
    font-size: 21px;
  }
  .advantage-description {
    font-size: 14px;
  }
}
.contact-info-section-gray {
  background-color: #F5F2F0;
}
.contact-info-section-gray .contact-info-block {
  background-color: #F5F2F0;
}

.section {
  padding-block: 100px;
}
@media screen and (max-width: 575px) {
  .section {
    padding-block: 70px;
  }
}

.custom_made_text_wrap {
  text-align: center;
}

.custom_made_text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 93px;
  display: grid;
  grid-template-columns: minmax(auto, 313px) minmax(auto, 313px);
}
@media screen and (max-width: 575px) {
  .custom_made_text {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
}

.custom_made_text_item {
  padding: 44px;
  position: relative;
}
@media screen and (min-width: 575px) {
  .custom_made_text_item {
    min-height: 237px;
  }
  .custom_made_text_item:after, .custom_made_text_item::before {
    content: "";
    position: absolute;
    background-color: #A9A9A9;
    display: block;
  }
  .custom_made_text_item:nth-child(1) {
    padding-top: 20px;
  }
  .custom_made_text_item:nth-child(1):after {
    width: 0.5px;
    height: 100%;
    right: 0;
    top: -17px;
  }
  .custom_made_text_item:nth-child(1):before {
    width: calc(100% - 17px);
    height: 0.5px;
    right: 17px;
    bottom: 0;
  }
  .custom_made_text_item:nth-child(2) {
    padding-top: 20px;
  }
  .custom_made_text_item:nth-child(2):after {
    width: calc(100% - 17px);
    height: 0.5px;
    left: 17px;
    bottom: 0;
  }
  .custom_made_text_item:nth-child(3) {
    padding-bottom: 0;
  }
  .custom_made_text_item:nth-child(3):after {
    width: 0.5px;
    height: 100%;
    right: 0;
    top: 17px;
  }
  .custom_made_text_item:nth-child(4) {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .custom_made_text_item {
    border-bottom: 1px solid #A9A9A9;
    max-width: 313px;
    padding-inline: 0;
    padding-block: 30px;
  }
}
.custom_made_text_item h3 {
  font-size: 21px;
  margin-bottom: 13px;
}
.custom_made_text_item p {
  font-size: 14px;
  line-height: 142%;
}
.custom_made_text_item img {
  max-width: 44px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
  .custom_made_img {
    display: none;
  }
}

.section-gray {
  background-color: #F5F2F0;
}

.sale_swiper {
  margin-top: 70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .sale_swiper {
    margin-top: 40px;
  }
}

.scrollbar_wrap {
  margin-top: 70px;
  display: block;
  height: 10px;
  margin-inline: auto;
  position: relative;
  max-width: 200px;
}

.product_sale,
.product_swiper {
  text-align: center;
}
.product_sale p,
.product_swiper p {
  font-family: var(--font-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 142%;
  text-align: center;
  color: inherit;
}
.product_sale .price,
.product_swiper .price {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 122%;
  letter-spacing: 0%;
}
.product_sale .price s,
.product_swiper .price s {
  color: #A5A5A5;
}
.product_sale .product_sale_img,
.product_swiper .product_sale_img {
  aspect-ratio: 1;
  overflow: hidden;
}
.product_sale .product_sale_img img,
.product_swiper .product_sale_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.35s ease;
}
.product_sale .product_sale_img:hover img,
.product_swiper .product_sale_img:hover img {
  transform: scale(1.1);
}

.collection_swiper_wrap {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .collection_swiper_wrap {
    padding-inline: 8.33333333%;
  }
}
.collection_swiper_wrap .scrollbar_wrap {
  margin-top: 93px;
  margin-bottom: 40px;
}
.collection_swiper_wrap .swiper {
  width: 100%;
}
.collection_swiper_wrap .swiper-slide {
  width: auto;
}
@media screen and (max-width: 768px) {
  .collection_swiper_wrap .swiper-slide {
    width: 100%;
    height: calc((100% - 30px) / 2) !important;
  }
}
.collection_swiper_wrap .product_sale_img {
  width: -moz-fit-content;
  width: fit-content;
  min-height: 540px;
  aspect-ratio: unset;
}
@media screen and (max-width: 768px) {
  .collection_swiper_wrap .product_sale_img {
    min-height: unset;
    width: 100%;
    max-height: 630px;
  }
}
.collection_swiper_wrap .product_sale_img img {
  -o-object-fit: none;
     object-fit: none;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .collection_swiper_wrap .product_sale_img img {
    width: 100%;
    height: auto;
    max-height: 570px;
  }
}
.collection_swiper_wrap .product_swiper .price {
  color: #EFEFEF;
}
.collection_swiper_wrap .product_swiper p {
  color: #EFEFEF;
}
.collection_swiper_wrap a {
  color: #EFEFEF;
}

.collection_title {
  margin-top: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  padding-bottom: 15px;
  border-bottom: 0.52px solid #EFEFEF;
  font-family: "Questrial";
  font-weight: 400;
  font-style: Regular;
  font-size: 21px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.reviews_section .swiper_nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin: 70px 0 40px;
}
.reviews_section .swiper_nav .swiper-button-next,
.reviews_section .swiper_nav .swiper-button-prev {
  position: static;
}
.reviews_section .swiper {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .reviews_section .swiper-slide .review_slide {
    transform: scale(0.9);
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .reviews_section .swiper-slide-active .review_slide {
    transform: none;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}
.reviews_section .review_slide {
  background-color: #f5f2f0;
  padding: 50px 40px 50px 100px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .reviews_section .review_slide {
    padding: 40px;
    padding-left: 86px;
    max-width: 90%;
    margin-inline: auto;
  }
}
.reviews_section .review_slide::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 40px;
  width: 30px;
  height: 30px;
  background-image: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.7503 20.7504C13.7503 19.4035 13.3947 18.2739 12.6835 17.3571C12.1794 16.7265 11.496 16.3117 10.6318 16.1142C9.78139 15.9183 8.97741 15.9045 8.25073 16.0714C8.00335 14.6173 8.40534 13.0775 9.42578 11.4458C10.4462 9.81575 11.7682 8.5882 13.3808 7.76779L10.9363 4.28564C9.69945 4.89177 8.52439 5.66013 7.44211 6.58922C6.34436 7.5183 5.3703 8.58666 4.50447 9.79432C3.63865 11.002 2.98927 12.3657 2.57182 13.9117C2.15437 15.4576 2.03841 17.0341 2.23786 18.6566C2.49761 20.7994 3.19646 22.5137 4.3344 23.7841C5.4708 25.0714 6.8886 25.7142 8.58315 25.7142C10.0752 25.7142 11.3136 25.2703 12.2938 24.3703C13.2648 23.4887 13.7472 22.2811 13.7472 20.7458L13.7503 20.7504ZM27.8571 20.7504C27.8571 19.4035 27.5015 18.2739 26.7903 17.3571C26.2862 16.7142 25.5998 16.2979 24.7386 16.1066C23.8727 15.9168 23.0796 15.9076 22.3576 16.0729C22.1102 14.6341 22.4967 13.0882 23.5202 11.4504C24.5407 9.82799 25.8595 8.6035 27.4721 7.77697L25.0339 4.28564C23.797 4.89177 22.6297 5.66013 21.5396 6.58922C20.4319 7.53207 19.4481 8.60885 18.6113 9.79432C17.7517 11.0035 17.1116 12.3657 16.6941 13.9117C16.2717 15.4567 16.1577 17.0684 16.3586 18.6566C16.6153 20.7994 17.311 22.5137 18.4459 23.7841C19.5792 25.0606 20.9923 25.7004 22.6869 25.7004C24.182 25.7004 25.4204 25.2566 26.4007 24.3581C27.3701 23.4765 27.8571 22.2688 27.8571 20.7336V20.7504Z" fill="%23171818"/></svg>');
  background-size: cover;
}
.reviews_section .review_slide h6 {
  color: #757575;
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .reviews_section .review_slide h6 {
    font-size: 12px;
  }
}
.reviews_section .review_slide p {
  font-size: 18px;
  line-height: 142%;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .reviews_section .review_slide p {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.reviews_section .review_slide strong,
.reviews_section .review_slide b {
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .reviews_section .review_slide strong,
  .reviews_section .review_slide b {
    font-size: 13px;
  }
}

.contact-info-section-gray {
  padding-block: 0;
}
@media screen and (max-width: 992px) {
  .contact-info-section-gray {
    background-color: #FBF8F5;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 575px) {
  .contact-info-section-gray {
    padding-bottom: 70px;
  }
}
.contact-info-section-gray .contact-info-block {
  padding: 0;
  min-height: unset;
}
@media screen and (max-width: 992px) {
  .contact-info-section-gray .contact-info-block {
    background-color: #FBF8F5;
  }
}
.contact-info-section-gray .contact-info-block__image {
  flex: 0 0 40vw;
}
@media screen and (max-width: 1200px) {
  .contact-info-section-gray .contact-info-block__image {
    flex: 0 0 450px;
  }
}
@media screen and (max-width: 992px) {
  .contact-info-section-gray .contact-info-block__image {
    flex: 0 0 45%;
  }
}
.contact-info-section-gray .contact-info-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-info-section-gray .contact-info-block__content {
  flex: 0 0 440px;
  padding: 100px;
  padding-right: 15px;
  padding-left: 135px;
}
@media screen and (max-width: 1200px) {
  .contact-info-section-gray .contact-info-block__content {
    padding-left: 80px;
  }
}
@media screen and (max-width: 992px) {
  .contact-info-section-gray .contact-info-block__content {
    padding-left: 40px;
    padding-block: 0;
  }
}
@media screen and (max-width: 575px) {
  .contact-info-section-gray .contact-info-block__content {
    padding-left: 0;
  }
}
.contact-info-section-gray .contact-info-block__section {
  display: block;
}

.about_section h3 {
  font-weight: 400;
  line-height: 142%;
  letter-spacing: 0%;
}
@media screen and (max-width: 575px) {
  .about_section .col-12 {
    position: relative;
  }
}
.about_section .about_title {
  margin-bottom: 70px;
}
.about_section .instagram_title {
  margin-top: 100px;
}

.about_text {
  max-width: 460px;
  padding-left: 8.333333%;
}
@media screen and (max-width: 992px) {
  .about_text {
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-left: 0;
  }
}
.about_text p {
  margin-bottom: 8px;
}
.about_text .btn {
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .about_text .btn {
    margin-inline: auto;
  }
}

.instagram_links {
  text-align: center;
  position: relative;
  margin-top: 20px;
}
.instagram_links a {
  color: #4E4E4E;
}
@media screen and (max-width: 575px) {
  .instagram_links {
    position: static;
    padding-bottom: 40px;
  }
}

.instagram_link_img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.instagram_link_img::before {
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  transition: all 0.35s ease;
  background-image: url('data:image/svg+xml,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 16C13.5609 16 14.5783 15.5786 15.3284 14.8284C16.0786 14.0783 16.5 13.0609 16.5 12C16.5 10.9391 16.0786 9.92172 15.3284 9.17157C14.5783 8.42143 13.5609 8 12.5 8C11.4391 8 10.4217 8.42143 9.67157 9.17157C8.92143 9.92172 8.5 10.9391 8.5 12C8.5 13.0609 8.92143 14.0783 9.67157 14.8284C10.4217 15.5786 11.4391 16 12.5 16Z" stroke="%234E4E4E" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.5 16V8C3.5 6.67392 4.02678 5.40215 4.96447 4.46447C5.90215 3.52678 7.17392 3 8.5 3H16.5C17.8261 3 19.0979 3.52678 20.0355 4.46447C20.9732 5.40215 21.5 6.67392 21.5 8V16C21.5 17.3261 20.9732 18.5979 20.0355 19.5355C19.0979 20.4732 17.8261 21 16.5 21H8.5C7.17392 21 5.90215 20.4732 4.96447 19.5355C4.02678 18.5979 3.5 17.3261 3.5 16Z" stroke="%234E4E4E" stroke-width="1.2"/><path d="M18 6.51002L18.01 6.49902" stroke="%234E4E4E" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.instagram_link_img:hover::before {
  transform: scale(1.1);
}

.instagram_link {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 575px) {
  .instagram_link {
    top: auto;
    bottom: 0px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.imstagram_photos {
  margin-top: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 575px) {
  .imstagram_photos {
    margin-bottom: 138px;
    margin-right: -20px;
  }
}
.imstagram_photos a {
  display: block;
  overflow: hidden;
}
.imstagram_photos a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.35s ease;
}
.imstagram_photos a:hover img {
  transform: scale(1.1);
}

.why_text {
  max-width: 670px;
  margin-inline: auto;
}
.why_text p {
  margin: 0;
}

@media screen and (max-width: 992px) {
  .contact-info-section {
    padding-inline: 30px;
  }
}

@media screen and (max-width: 575px) {
  .swiper_section .container {
    padding-right: 0;
  }
}

@media screen and (max-width: 575px) {
  .sale_section .swiper_nav {
    display: none;
  }
}

.blog_section {
  padding-top: 116px;
  padding-bottom: 142px;
}
@media screen and (max-width: 992px) {
  .blog_section {
    padding-bottom: 70px;
  }
}
.blog_section h1 {
  margin-top: 40px;
  font-size: 36px;
  font-family: "Questrial";
}
@media screen and (max-width: 992px) {
  .blog_section h1 {
    font-size: 28px;
  }
}

.breacrumbs {
  font-family: "Open Sans Hebrew";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.breacrumbs a:hover {
  color: #979797;
}

.blog_list {
  margin-block: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
}
@media screen and (max-width: 992px) {
  .blog_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 14px;
    margin-block: 50px;
  }
}
.blog_link p {
  font-size: 20px;
  font-family: "Questrial";
  margin-bottom: 4px;
  line-height: 142%;
}
@media screen and (max-width: 992px) {
  .blog_link p {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .blog_link p {
    font-size: 15px;
  }
}
.blog_link span {
  font-size: 14px;
  color: #4e4e4e;
}
@media screen and (max-width: 575px) {
  .blog_link span {
    font-size: 12px;
  }
}

.blog_link_img {
  aspect-ratio: 1.5714;
  overflow: hidden;
}
.blog_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.35s ease;
}
.blog_link_img:hover img {
  transform: scale(1.1);
}

.blog_quantity {
  color: #979797;
}

.load_more_wrap .load_more {
  margin-inline: auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}

.post_section {
  padding-top: 168px;
}
@media screen and (max-width: 992px) {
  .post_section {
    padding-top: 120px;
  }
}
.post_section h1 {
  font-size: 36px;
  line-height: 110%;
  margin-top: 26px;
  font-family: "Questrial";
}
@media screen and (max-width: 575px) {
  .post_section h1 {
    font-size: 25px;
  }
}
.post_section span {
  color: #4E4E4E;
  font-size: 14px;
}

.post_article {
  max-width: 900px;
  margin-inline: auto;
}
.post_article article {
  margin-top: 70px;
}
@media screen and (max-width: 575px) {
  .post_article article {
    margin-top: 40px;
  }
}
.post_article article img {
  display: block;
  margin-block: 60px;
}
@media screen and (max-width: 992px) {
  .post_article article img {
    margin-block: 40px;
  }
}
.post_article article p, .post_article article li, .post_article article a {
  font-family: "Open Sans Hebrew";
  font-weight: 400;
  font-size: 16px;
  line-height: 142%;
}
@media screen and (max-width: 992px) {
  .post_article article p, .post_article article li, .post_article article a {
    font-size: 15px;
  }
}
.post_article article h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .post_article article h3 {
    font-size: 20px;
  }
}
.post_article article ul {
  list-style: disc;
  padding-left: 1rem;
}
.post_article article li {
  margin-bottom: 0.5rem;
}
.post_article article blockquote {
  border: 1px solid #979797;
  padding: 20px;
  padding-left: 30px;
  position: relative;
  margin-inline: 0;
}
.post_article article blockquote::before {
  position: absolute;
  left: 5px;
  top: 20px;
  line-height: 1;
  content: '"';
  font-size: 38px;
  font-family: cursive;
}

.latest_articles_section {
  padding-top: 0;
}
@media screen and (min-width: 992px) {
  .latest_articles_section {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .latest_articles_section {
    padding-bottom: 20px;
  }
}
/*# sourceMappingURL=main.css.map */
