:root {
  --green: #64b94b;
  --greenDark: #4c963c;
  --grey: rgba(244, 244, 242);
  --primary: var(--green);
  --primaryDark: var(--greenDark);
}

.text-primary {
  color: var(--primary);
}

.font-weight-bold {
  font-weight: 700 !important;
}

.container.-lg {
  max-width: 1400px;
  width: 100%;
}

a.button .button_icon {
  color: var(--primary);
}

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #000;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #000;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(17, 17, 17, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

input, select {
  max-width: 100%;
  width: 100% !important;
}

.topMenu {
  padding: 5px 0;
  text-align: right;
}
.topMenu li {
  display: inline-block;
  margin: 0 10px;
  font-size: 0.8em;
}
.topMenu li:last-child {
  margin-right: 0;
}

#Top_bar.is-sticky #logo img {
  width: auto;
  max-height: 85%;
}
#Top_bar.is-sticky .menuToggleButton {
  top: 10px;
}
#Top_bar #logo {
  padding-top: 10px;
}
#Top_bar #logo img {
  width: 190px;
  max-height: unset;
}
@media (max-width: 768px) {
  #Top_bar #logo img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }
}
#Top_bar .menu > li > a {
  padding-top: 10px;
}

.homeOffer__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  justify-content: center;
  grid-gap: 1rem;
  padding: 20px;
}

.offerHomeItem__thumb {
  margin-bottom: 0.5rem;
}
.offerHomeItem__thumb img {
  display: block;
  max-width: 100%;
}
.offerHomeItem__content {
  padding: 0 16px;
}

.headWhite h2 {
  color: #fff;
}

.offer {
  padding: 100px 15px;
}
.offer__container {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-column-gap: 140px;
}
@media (max-width: 1200px) {
  .offer__container {
    grid-template-columns: 1fr;
  }
}
.offer__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 36px;
  margin-bottom: 80px;
}
@media (max-width: 567px) {
  .offer__items {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-gap: 18px;
  }
}
.offer__items.-xs {
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
}
@media (max-width: 567px) {
  .offer__items.-xs {
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  }
}
.offer__items.-sm {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (max-width: 567px) {
  .offer__items.-sm {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
  }
}
.offer__items.-lg {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media (max-width: 567px) {
  .offer__items.-lg {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 567px) {
  .i-offer {
    font-size: 0.85em;
  }
}
.i-offer.-lg .i-offer__thumb {
  padding-top: 120%;
}
.i-offer__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 155%;
  background-color: var(--grey);
  margin-bottom: 10px;
  overflow: hidden;
}
.i-offer__thumb:hover img {
  transform: scale(1.05);
}
.i-offer__thumb img {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: block;
  object-fit: contain;
  object-position: center;
  width: calc(100% - 32px) !important;
  height: calc(100% - 32px) !important;
  max-width: calc(100% - 32px) !important;
  max-height: calc(100% - 32px) !important;
  transition: 200ms ease;
}
.i-offer__content {
  padding: 0 12px;
}
.i-offer__title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0;
}
.i-offer__subtitle, .i-offer__price {
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 0;
}
.i-offer__subtitle p, .i-offer__price p {
  margin-bottom: 0;
}

.i-offerSubcategory__thumb {
  overflow: hidden;
}
.i-offerSubcategory__thumb:hover img {
  transform: scale(1.04);
}
.i-offerSubcategory__thumb img {
  display: block;
  aspect-ratio: 1.4/2;
  object-fit: contain;
  transition: 200ms ease;
  margin-bottom: 0.65rem;
}

.i-gallery {
  position: relative;
  display: block;
  background-color: var(--grey);
  overflow: hidden;
  padding: 16px;
}
.i-gallery:hover img {
  transform: scale(1.05);
}
.i-gallery img {
  display: block;
  max-width: 100%;
  transition: 200ms ease;
  border: none !important;
}

.offerSidebar {
  display: block;
}
@media (max-width: 1200px) {
  .offerSidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #fff;
    padding: 16px;
    z-index: 2000;
  }
  .offerSidebar.-active {
    display: block;
  }
}
.offerSidebar__toggleButton {
  display: none;
}
@media (max-width: 1200px) {
  .offerSidebar__toggleButton {
    display: inline-block;
  }
}
.offerSidebar__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: none;
}
@media (max-width: 1200px) {
  .offerSidebar__close {
    display: inline-block;
  }
}
.offerSidebar__group {
  margin-bottom: 50px;
}
.offerSidebar__title {
  font-size: 2em;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.offerSidebar__list li {
  position: relative;
}
.offerSidebar__list li::before {
  content: "-";
}
.offerSidebar__list li.-active::before {
  font-weight: 500;
}
.offerSidebar__list li.-active > a {
  color: var(--greenDark);
  font-weight: 500;
}
.offerSidebar__list ul {
  padding-left: 1rem;
}

.filters__group.-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}

.editArea h1, .editArea h2, .editArea h3, .editArea h4, .editArea h5, .editArea h6 {
  font-weight: 500;
}
.editArea h1 b, .editArea h1 strong, .editArea h2 b, .editArea h2 strong, .editArea h3 b, .editArea h3 strong, .editArea h4 b, .editArea h4 strong, .editArea h5 b, .editArea h5 strong, .editArea h6 b, .editArea h6 strong {
  font-weight: 700;
}
.editArea ul {
  list-style-type: circle;
  padding-left: 1.5em;
  margin-bottom: 1rem;
}
.editArea b, .editArea strong {
  font-weight: 500;
}

.pagination .page-item.active .page-link {
  border-color: #000;
  background-color: #000;
}
.pagination .page-link {
  color: #000;
}

.sliderText {
  padding-top: 25px;
}
.sliderText h1, .sliderText h2, .sliderText h3, .sliderText h4 {
  font-weight: 700;
  line-height: 1.3;
}
.sliderText h2 {
  font-size: 60px;
}
.sliderText h3 {
  font-size: 45px;
}

.menuToggleButton {
  display: none;
  width: 35px;
  height: 35px;
  text-align: center;
  position: absolute;
  top: 28px;
  right: 10px;
  padding: 10px;
  color: #000;
  font-size: 20px;
}
@media (max-width: 1240px) {
  .menuToggleButton {
    display: block;
  }
}

@media (max-width: 1240px) {
  #mainMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 16px;
    background: #fff;
    z-index: 2000;
    overflow-y: auto;
  }
  #mainMenu ul li {
    display: block;
    float: none !important;
  }
  #mainMenu ul li a {
    padding: 16px 0 !important;
  }
  #mainMenu ul li a::after {
    display: none !important;
  }
  #mainMenu ul li a span {
    line-height: 40px !important;
  }
}
#mainMenu.-active {
  display: block;
}
#mainMenu .mainMenu__close {
  display: none;
}
@media (max-width: 1240px) {
  #mainMenu .mainMenu__close {
    display: block;
    position: absolute;
    top: 10px;
    right: 16px;
  }
}

@media screen and (max-width: 500px) {
  li.page-item {
    display: none;
  }

  .page-item:first-child,
.page-item:nth-child(2),
.page-item:nth-last-child(2),
.page-item:last-child,
.page-item.active,
.page-item.disabled {
    display: block;
  }
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
  width: auto !important;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  font-size: 0.85em;
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.05rem;
  font-size: 0.75em;
  line-height: 1.5;
  color: #dc3545;
  padding-left: 0.75rem;
}

.d-block {
  display: block;
}

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