.section__other-header {
  min-height: 100px;
  position: relative;
  background-image: url(../images/section-home-patern.png), linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../images/section-home-bg.jpg);
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: left 0px top 0px, left 0px top 0px, center center;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, scroll;
  padding-top: 0px;
  background-color: rgb(0, 0, 0);
}
@media (max-width: 48em) {
  .section__other-header {
    min-height: 180px;
  }
}

.section__other {
  position: relative;
  margin: 0 0 -80px 0;
}
.section__other:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: -80px;
  background: #fff;
  border-radius: 0 0 0 15px;
  content: "";
  z-index: -1;
}
.section__other h1 {
  text-align: left;
}

.other__container {
  position: relative;
  z-index: 2;
  padding: 10px 45px 30px 45px;
}
.other__container:after {
  position: absolute;
  display: block;
  left: 15px;
  bottom: 0;
  height: 80px;
  width: 100vw;
  background: #fff;
  border-radius: 0 0 0 15px;
  content: "";
  z-index: -1;
}
.other__row {
  display: grid;
  grid-template-columns: auto;
  gap: 30px;
}
@media (min-width: 48.06125em) {
  .other__row {
    grid-template-columns: 1fr 1fr;
  }
}

.category {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 48.06125em) {
  .category {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62.06125em) {
  .category {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 75.06125em) {
  .category {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.category__item {
  display: block;
}
.category__image {
  display: block;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.category__image img {
  display: block;
  width: 100%;
  height: auto;
}
.category__title {
  display: block;
  font-size: 20px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 0 0 15px 15px;
  padding: 10px 10px;
}

.category-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 48.06125em) {
  .category-new {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62.06125em) {
  .category-new {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 75.06125em) {
  .category-new {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.category-new__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  padding: 5px;
  background: #efefef;
}
.category-new__title {
  display: block;
  flex-basis: 100%;
  font-size: 20px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 5px;
  padding: 10px 10px;
}
.category-new__image {
  display: block;
  flex-basis: calc(40% - 5px);
}
.category-new__image img {
  display: block;
  width: 100%;
  height: auto;
}
.category-new__description {
  display: block;
  flex-basis: 60%;
  font-size: 16px;
  color: #000;
  padding: 5px 0 0 0;
}
.category-new__description p {
  margin: 0;
}
.category-new__description button {
  display: block;
  width: auto;
  font-size: 14px;
  color: #fff;
  background: var(--primary-color);
  padding: 5px;
  border: 0;
  margin: 5px 0 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 48.06125em) {
  .contact {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.contact__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-color);
}
.contact__icon span {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
}
.contact__value span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.contact__value a {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}
.contact__value b {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.calc__row {
  display: grid;
  grid-template-columns: auto;
}
@media (min-width: 48.06125em) {
  .calc__row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.calc__column.hidden {
  display: none;
}
.calc__error {
  font-size: 16px;
  color: red;
}

.table {
  width: 100%;
  border-top: 1px solid #000;
}
.table td {
  font-size: 14px;
  border-bottom: 1px solid #000;
  padding: 5px 1px;
}
@media (min-width: 36.06125em) {
  .table td {
    font-size: 16px;
    padding: 5px 5px;
  }
}
@media (min-width: 48.06125em) {
  .table td {
    font-size: 20px;
    padding: 5px 5px;
  }
}
.table th {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid #000;
  padding: 5px 5px;
}
@media (min-width: 36.06125em) {
  .table th {
    font-size: 16px;
    padding: 5px 5px;
  }
}
@media (min-width: 48.06125em) {
  .table th {
    font-size: 20px;
  }
}
@media (min-width: 62.06125em) {
  .table th {
    font-size: 20px;
    font-weight: 700;
  }
}
.table th.center {
  text-align: center;
}
/*# sourceMappingURL=page.min.css.map */
