:root {
  --font: "Merriweather", serif;
  --font-sans: "Merriweather Sans", sans-serif;
  --color-acc: #CF505C;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1330px;
  }
}
.product-carousel,
.catalog-carousel,
.product-slider {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.product-carousel.slick-initialized,
.catalog-carousel.slick-initialized,
.product-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}

ul, ol {
  margin: 0;
  padding: 0;
}
ul li, ol li {
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  text-underline-position: under;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

body {
  font-optical-sizing: auto;
  background-color: #F5F5F5;
  font-family: var(--font-sans);
}

.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--color-acc);
}

.section-super {
  margin-bottom: 100px;
}

.hero {
  height: 920px;
  background: url("../img/intro.avif") center 0 no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  margin-bottom: 60px;
}
.hero.hero-small {
  height: auto;
  padding-bottom: 48px;
  margin-bottom: 0;
}
.hero a {
  color: #fff;
}
.hero .btn-cat {
  background-color: #fff;
  color: #000;
  padding: 16px 20px;
}
.hero .btn-cat .icon {
  stroke: #000;
}
.hero .btn-cat:hover {
  background-color: #F5F5F5;
}

.btn-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: var(--color-acc);
  color: #fff;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font);
  letter-spacing: 2px;
  font-weight: 700;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-style: normal;
  position: relative;
}
.btn-cat .icon {
  width: 14px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  stroke: #fff;
}
.btn-cat:hover {
  background-color: #b9333f;
}

.header {
  font-size: 16px;
  line-height: 20px;
}

.btn {
  background-color: var(--color-acc);
  color: #fff;
  border-radius: 12px;
  padding: 12px 22px;
  font-family: var(--font);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.btn:hover {
  background-color: #F1707C;
}
.btn.btn-dark {
  background-color: #000;
}
.btn.btn-dark:hover {
  background-color: #585858;
}

@media (max-width: 1399px) {
  .btn {
    letter-spacing: 1px;
  }
}
.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
}

.header-locate {
  position: relative;
  padding-left: 24px;
}
.header-locate .icon {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  fill: #fff;
  left: 0;
  top: 0;
}

.footer .header-locate .icon {
  fill: #000;
}

.menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -16px;
}
.menu-top > li {
  padding: 0 16px;
}
.menu-top > li > a {
  text-decoration: none;
  text-underline-position: under;
}
.menu-top > li > a:hover {
  text-decoration: underline;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown .icon {
  width: 8px;
  height: 6px;
}

.dropdown-menu {
  max-width: 260px;
}
.dropdown-menu a {
  color: #000;
}

.header-btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-lft, .header-rht {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 416px;
          flex: 0 0 416px;
  max-width: 416px;
}

.header-mdl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-mdl .logo {
  margin-top: -7px;
}
.header-mdl .logo img {
  max-width: 100%;
}

.cont-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
}

.cont-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 12px;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cont-link:not(:last-child) {
  margin-right: 12px;
}
.cont-link .icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  max-width: 20px;
}
.cont-link:hover {
  background-color: #fff;
  color: #000;
}

.cont-inf .icon {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  max-width: 20px;
  display: block;
  margin-right: 4px;
  fill: #fff;
}
.cont-inf address, .cont-inf .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-sans);
}

.header-rht-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 39px;
}

.msngr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -12px;
}
.msngr span {
  display: block;
  padding: 0 12px;
  position: relative;
}
.msngr span:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, 0.4);
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.msngr .icon {
  width: 30px;
  height: 30px;
}

.search {
  position: relative;
}
.search:has(.search-control:focus) .icon {
  stroke: #000;
}

.search-control {
  background-color: rgba(255, 255, 255, 0.2);
  height: 44px;
  color: #fff;
  padding: 12px 42px 12px 12px;
  border: 0;
  width: 100%;
  border-radius: 12px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-family: var(--font-sans);
}
.search-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-family: var(--font-sans);
}
.search-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-family: var(--font-sans);
}
.search-control:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-family: var(--font-sans);
}
.search-control::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-family: var(--font-sans);
}
.search-control::placeholder {
  color: #fff;
  opacity: 1;
  font-family: var(--font-sans);
}
.search-control:focus {
  background-color: #fff;
  border: 0 !important;
  outline: none;
  color: #000;
}
.search-control:focus::-webkit-input-placeholder {
  color: #000;
}
.search-control:focus::-moz-placeholder {
  color: #000;
}
.search-control:focus:-ms-input-placeholder {
  color: #000;
}
.search-control:focus::-ms-input-placeholder {
  color: #000;
}
.search-control:focus::placeholder {
  color: #000;
}

.btn-srch {
  padding: 0;
  border: 0;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 12px 12px 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.btn-srch .icon {
  width: 15px;
  height: 16px;
  stroke: #fff;
}
.btn-srch:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-inner {
  text-align: center;
  padding-top: 117px;
}

.hero-title {
  font-size: 96px;
  line-height: 95px;
  font-weight: 400;
  padding-bottom: 21px;
  position: relative;
  margin-bottom: 70px;
}
.hero-title:after {
  width: 420px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hero-title span {
  font-style: italic;
  font-family: var(--font);
  font-weight: 300;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 25px;
  font-style: italic;
  font-family: var(--font);
}
.hero-sub p {
  margin: 0 0 16px 0;
}

.about {
  padding: 111px 0;
  position: relative;
  min-height: 800px;
  overflow: hidden;
  z-index: 1;
}
.about .lab {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about .about-nav {
  margin-bottom: 0;
}

.decor {
  position: absolute;
  left: 0px;
  top: 23px;
  z-index: -1;
}

.about-inf {
  max-width: 750px;
}

.section-wide {
  margin-bottom: 60px;
  overflow: hidden;
}

.section {
  font-size: 16px;
  line-height: 20px;
}
.section h1, .section .h1 {
  font-size: 96px;
  line-height: 95px;
  letter-spacing: -4px;
  margin: 0 0 40px 0;
  overflow-wrap: break-word;
}
.section h1 span, .section .h1 span {
  font-family: var(--font);
  font-style: italic;
}
.section h2, .section h3, .section h4, .section h5, .section .h2, .section .h3, .section .h4, .section .h5 {
  font-size: 64px;
  line-height: 64px;
  margin: 0 0 30px 0;
  letter-spacing: -2px;
}
.section h2 span, .section h3 span, .section h4 span, .section h5 span, .section .h2 span, .section .h3 span, .section .h4 span, .section .h5 span {
  font-family: var(--font);
  font-style: italic;
}

h2, h3, h4, h5, .h2, .h3, .h4, .h5 {
  letter-spacing: -2px;
}
h2 span, h3 span, h4 span, h5 span, .h2 span, .h3 span, .h4 span, .h5 span {
  font-family: var(--font);
  font-style: italic;
}

.about strong {
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hamb-toggler {
  display: none;
  top: 5px;
  right: 0px;
  padding: 0;
  border-radius: 3px;
  background: var(--color-acc);
  width: 34px;
  height: 30px;
  overflow: hidden;
  z-index: 40;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  outline: none !important;
  position: absolute;
  border: 0;
}

.hamb-toggler span {
  display: block;
  position: absolute;
  left: 7px;
  height: 2px;
  width: 20px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamb-toggler span:first-child {
  top: 7px;
}

.hamb-toggler span:nth-child(2) {
  top: 14px;
}

.hamb-toggler span:last-child {
  top: 21px;
}

.nav-active {
  overflow: hidden;
}

.nav-active .hamb-toggler span:first-child {
  top: 14px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-active .hamb-toggler span:last-child {
  top: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-active .hamb-toggler span:nth-child(2) {
  left: 150px;
}

.nav-active .backdrop {
  z-index: 50;
  opacity: 1;
}

.backdrop {
  opacity: 0;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100vh;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

@media (max-width: 1399px) {
  .header-lft, .header-rht {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 360px;
            flex: 0 0 360px;
    max-width: 360px;
  }
  .cont-link {
    font-size: 14px;
  }
  .hero-title {
    font-size: 76px;
    line-height: 75px;
  }
  .msngr .icon {
    width: 24px;
    height: 24px;
  }
  .header-mdl {
    padding: 0 50px;
  }
}
@media (max-width: 1199px) {
  .header-lft, .header-rht {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 340px;
            flex: 0 0 340px;
    max-width: 340px;
  }
  .menu-top > li {
    padding: 0 10px;
    font-size: 14px;
  }
  .menu-top {
    margin: 0 -10px;
  }
  .header-top {
    margin-bottom: 30px;
  }
  .cont-link {
    padding: 6px 10px;
  }
  .header-rht-top {
    margin-bottom: 24px;
  }
  .cont-list {
    margin-bottom: 24px;
  }
  .msngr span {
    padding: 0 8px;
  }
  .msngr {
    margin: 0 -8px;
  }
  .btn {
    font-size: 14px;
    line-height: 18px;
  }
  .cont-inf {
    font-size: 14px;
  }
  .hero-inner {
    padding-top: 80px;
  }
  .hero-title {
    font-size: 56px;
    line-height: 55px;
    margin-bottom: 40px;
  }
  .hero-sub {
    max-width: 400px;
    font-size: 16px;
    line-height: 20px;
  }
  .hero {
    height: 720px;
  }
  .header-locate {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #F5F5F5;
    padding: 20px;
    width: 80%;
    z-index: 20;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    overflow: auto;
    z-index: 60;
  }
  .nav-active .header-nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .menu-top {
    display: block;
  }
  .menu-top li {
    font-size: 24px;
    line-height: 28px;
  }
  .menu-top li:not(:last-child) {
    margin-bottom: 10px;
  }
  .menu-top a {
    color: #000;
  }
  .header-mdl {
    padding: 0 50px;
  }
  .header-lft, .header-rht {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
    max-width: 220px;
  }
  .cont-link {
    font-size: 0;
    padding: 5px;
  }
  .cont-link .icon {
    width: 30px;
    height: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    max-width: 30px;
    margin: 0;
  }
  .header-rht-top .btn {
    width: 100%;
    padding: 12px;
  }
  .header-rht-top, .cont-list {
    margin-bottom: 12px;
  }
  .msngr {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .search {
    margin-bottom: 12px;
  }
  .hero-inner {
    padding-top: 50px;
  }
  .hero-title {
    font-size: 46px;
    line-height: 45px;
    margin-bottom: 30px;
  }
  .hamb-toggler {
    display: block;
  }
  .header-top {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-rht {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
            flex: 0 0 190px;
    max-width: 190px;
  }
  .header-lft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
    max-width: 170px;
  }
  .header-mdl {
    padding: 0 30px;
  }
  .header-mdl .logo {
    margin-top: 0;
  }
  .cont-inf {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .header-btm {
    display: block;
  }
  .header-lft {
    max-width: 100%;
    margin-bottom: 25px;
  }
  .cont-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cont-link {
    font-size: 14px;
    padding: 4px 10px;
  }
  .header-top {
    margin-bottom: 20px;
  }
  .cont-link .icon {
    width: 20px;
    height: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    max-width: 20px;
    margin-right: 4px;
  }
  .header .cont-inf {
    display: none;
  }
  .header-rht {
    max-width: 100%;
  }
  .header-mdl {
    margin-bottom: 24px;
  }
  .header-mdl .logo {
    max-width: 120px;
  }
  .hero-inner {
    padding-top: 30px;
  }
  .hero-title {
    font-size: 36px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .hero-title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 25px;
  font-style: italic;
  font-family: var(--font);
  margin-bottom: 52px;
}
.statistic span {
  display: block;
  font-size: 96px;
  line-height: 95px;
  color: var(--color-acc);
  margin-bottom: 16px;
  font-weight: 300;
}
.statistic li {
  position: relative;
}
.statistic li:first-child {
  padding-right: 50px;
}
.statistic li:nth-child(2) {
  padding: 0 72px 0 20px;
}
.statistic li:last-child {
  padding-left: 20px;
}
.statistic li:not(:last-child):after {
  height: 138px;
  width: 1px;
  background-color: #DBDBDB;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #DBDBDB;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 20px;
  line-height: 25px;
  font-family: var(--font);
  font-style: italic;
  margin: 0 -24px 40px -24px;
}
.about-nav li {
  display: block;
  padding: 0 24px;
  position: relative;
}
.about-nav li:not(:last-child):after {
  content: "";
  width: 4px;
  height: 12px;
  background-color: #DBDBDB;
  position: absolute;
  right: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about-nav li a {
  color: #CF505C;
  text-decoration: none;
  text-underline-position: under;
}
.about-nav li a:hover {
  text-decoration: underline;
}

@media (max-width: 1660px) {
  .about .lab {
    max-width: 600px;
  }
}
@media (max-width: 1460px) {
  .about .lab {
    max-width: 420px;
  }
}
@media (max-width: 1199px) {
  .about .lab {
    display: none;
  }
  .about-inf {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .statistic {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 32px;
  }
  .statistic span {
    font-size: 76px;
    line-height: 75px;
  }
  .statistic li:nth-child(2) {
    padding: 0 20px 0 20px;
  }
  .statistic li:not(:last-child):after {
    height: 100px;
  }
  .section h1, .section h2, .section h3, .section h4, .section h5, .section .h1, .section .h2, .section .h3, .section .h4, .section .h5 {
    font-size: 54px;
    line-height: 54px;
  }
  .statistic li:first-child {
    padding-right: 20px;
  }
  .about {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .statistic {
    font-size: 16px;
    line-height: 20px;
  }
  .statistic span {
    font-size: 56px;
    line-height: 55px;
  }
  .about-nav {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 22px;
    margin: 0 0px;
  }
  .about-nav li {
    padding: 0 12px;
  }
  .about strong {
    font-size: 22px;
    line-height: 28px;
  }
  .section h1, .section h2, .section h3, .section h4, .section h5, .section .h1, .section .h2, .section .h3, .section .h4, .section .h5 {
    font-size: 44px;
    line-height: 44px;
  }
  .about {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .about strong {
    font-size: 20px;
    line-height: 26px;
  }
  .statistic span {
    font-size: 36px;
    line-height: 35px;
  }
  .statistic li:nth-child(2) {
    padding: 0 15px;
  }
  .statistic li:first-child {
    padding-right: 15px;
  }
  .statistic li:last-child {
    padding-left: 15px;
  }
}
.footer {
  padding-bottom: 54px;
  position: relative;
  padding-top: 40px;
  z-index: 1;
}
.footer .header-top {
  margin-bottom: 16px;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #000;
}
.footer .cont-inf .icon {
  fill: #DBDBDB;
}
.footer .cont-list {
  margin-bottom: 0;
}
.footer .cont-link {
  border-color: #000;
}

.footer-mdl {
  border-bottom: 1px solid #000;
  padding: 0 0 16px 0;
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.footer-mdl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-mdl ul li {
  padding: 0 32px;
  position: relative;
}
.footer-mdl ul li:not(:last-child):after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer-mdl ul li a {
  text-decoration: none;
  text-underline-position: under;
}
.footer-mdl ul li a:hover {
  text-decoration: underline;
}

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-row.footer-btm-foot {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.footer-lft {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 450px;
          flex: 0 0 450px;
  max-width: 450px;
  text-wrap: balance;
}
.footer-lft img {
  max-width: 100%;
}

.footer-rht {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 55px;
}

.footer-btm-head {
  padding-bottom: 30px;
}
.footer-btm-head .footer-rht-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-rht-l {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.footer-rht-r {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer-rht-l {
  padding-right: 15px;
}

.mailer-form {
  position: relative;
}
.mailer-form .form-control {
  height: 54px;
  padding: 0 388px 0 24px;
  border-radius: 16px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none;
  border-color: #DBDBDB;
}
.mailer-form .form-control:focus {
  border-color: #a8a8a8;
}
.mailer-form .btn {
  position: absolute;
  right: 4px;
  top: 4px;
}

@media (max-width: 1399px) {
  .footer-rht {
    padding-left: 22px;
  }
  .footer-lft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 360px;
            flex: 0 0 360px;
    max-width: 360px;
  }
  .mailer-form .form-control {
    padding: 0 360px 0 20px;
  }
}
@media (max-width: 1199px) {
  .mailer-form .form-control {
    padding: 0 330px 0 15px;
  }
  .footer-lft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
    max-width: 260px;
    padding-right: 15px;
  }
  .footer-rht {
    padding-left: 0px;
  }
  .footer-mdl ul li {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .footer-row {
    display: block;
  }
  .footer-lft, .footer-rht {
    max-width: 100%;
    text-align: center;
  }
  .footer-rht-l, .footer-rht-r {
    max-width: 100%;
    padding: 0;
  }
  .footer-rht-r {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-btm-head {
    padding-bottom: 10px;
  }
  .footer .cont-inf {
    text-align: center;
    padding: 15px 0 10px 0;
  }
  .footer .cont-inf .icon {
    display: none;
  }
  .footer .cont-inf address, .footer .cont-inf .time {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer {
    padding-bottom: 20px;
  }
  .footer-lft {
    padding: 0;
  }
  .footer-rht {
    margin-bottom: 15px;
  }
  .footer-mdl ul li {
    padding: 0 15px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer-mdl {
    display: none;
  }
}
@media (max-width: 575px) {
  .menu-top li {
    font-size: 20px;
    line-height: 24px;
  }
  .mailer-form .btn {
    position: static;
    width: 100%;
  }
  .mailer-form .form-control {
    padding: 0 15px;
    height: 44px;
    margin-bottom: 10px;
  }
  .footer .cont-list {
    display: block;
  }
  .footer .cont-link:not(:last-child) {
    margin: 0 0 12px 0;
  }
  .footer-lft {
    font-size: 14px;
  }
  .about-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 374px) {
  .header .cont-link .icon {
    display: none;
  }
}
.main {
  padding-bottom: 100px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.breadcrumb {
  font-size: 13px;
  line-height: 16px;
  margin: 0;
  padding: 0;
}
.breadcrumb a {
  text-decoration: none;
  text-underline-position: under;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .icon {
  width: 10px;
  height: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  max-width: 10px;
  display: inline-block;
  margin-right: 4px;
}

.breadcrumb-item.active {
  color: #949494;
}

.breadcrumb-item + .breadcrumb-item::before {
  position: static;
  display: inline-block;
  color: #949494;
}

nav:has(.breadcrumb) {
  background-color: #fff;
  padding: 7px 0;
  margin-bottom: 40px;
}

.icon-decor {
  position: absolute;
  left: 60px;
  top: 0;
  width: 733px;
  height: 496px;
  z-index: -1;
}

.section-main {
  position: relative;
  z-index: 1;
}

.tab-nav {
  background-color: #fff;
  border: 1px solid #DBDBDB;
  padding: 15px 20px;
  border-radius: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: var(--font);
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 35px;
}
.tab-nav .nav-link {
  padding: 0;
  font-style: italic;
  color: #000;
}
.tab-nav .nav-link.active {
  color: var(--color-acc);
}
.tab-nav .nav-item:first-child {
  padding: 0 24px 0 0;
  position: relative;
}
.tab-nav .nav-item:first-child:after {
  content: "";
  height: 12px;
  width: 4px;
  background-color: #DBDBDB;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tab-nav .nav-item:last-child {
  padding: 0 0 0 24px;
}

.contact-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
.contact-line a[href^="tel:"] {
  font-size: 36px;
  line-height: 36px;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: -3px;
  margin-right: 20px;
}
.contact-line .cont-link {
  border-color: #000;
}

.contact-map {
  height: 558px;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: -90px;
}

.contact-inner {
  padding-right: 35px;
}

.req-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 12px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #000;
}
.req-list li span {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  max-width: 42%;
  padding-right: 15px;
}

@media (max-width: 1399px) {
  .contact-line a[href^="tel:"] {
    font-size: 28px;
    line-height: 28px;
  }
  .contact-map {
    height: 460px;
  }
  .section h1, .section .h1 {
    font-size: 76px;
    line-height: 75px;
    letter-spacing: -3px;
  }
  .icon-decor {
    width: 560px;
    height: 379px;
  }
}
@media (max-width: 1199px) {
  .contact-line a[href^="tel:"] {
    font-size: 24px;
    line-height: 24px;
  }
  .contact-map {
    height: 460px;
  }
  .contact-inner {
    padding-right: 0px;
  }
  .section h1, .section .h1 {
    font-size: 56px;
    line-height: 55px;
    letter-spacing: -2px;
  }
  .icon-decor {
    width: 360px;
    height: 244px;
  }
}
@media (max-width: 991px) {
  .contact-map {
    margin-top: 0;
  }
  .icon-decor {
    width: 220px;
    height: 149px;
    left: 20px;
  }
  .section h1, .section .h1 {
    font-size: 46px;
    line-height: 45px;
    letter-spacing: 0px;
  }
  .main {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section h1, .section .h1 {
    font-size: 36px;
    line-height: 35px;
  }
  .main {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .tab-nav {
    font-size: 18px;
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  .contact-line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-line .cont-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 10px;
  }
  .contact-line a[href^="tel:"] {
    margin: 10px 10px 0 0;
  }
}
.search-result h1, .search-result .h1 {
  margin-bottom: 27px;
}

.search-qty {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 74px;
}
.search-qty span {
  font-family: var(--font);
  font-style: italic;
  color: var(--color-acc);
}

.item-list {
  margin: 0 -5px 60px -5px;
}
.item-list div[class^=col-] {
  padding: 0 5px;
  margin-bottom: 10px;
}

.item-img {
  height: 320px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.item-img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.item-cnt {
  padding: 24px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  text-align: center;
}

.item-name {
  margin-bottom: 10px;
  font-weight: 700;
}

.item-price {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 24px;
}

@media (max-width: 1399px) {
  .item-img {
    height: 280px;
  }
  .search-qty {
    margin-bottom: 54px;
  }
}
.result-menu {
  font-size: 36px;
  line-height: 36px;
  font-style: italic;
}
.result-menu li:not(:last-child) {
  margin-bottom: 16px;
}
.result-menu a {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font);
  text-underline-position: under;
}
.result-menu a:hover {
  text-decoration: underline;
}
.result-menu .icon {
  width: 24px;
  height: 8px;
  display: inline-block;
  margin-left: 16px;
}

@media (max-width: 1199px) {
  .search-qty {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 28px;
  }
  .result-menu {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .item-img {
    height: 220px;
  }
  .item-cnt {
    padding: 12px;
  }
  .item-price {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .search-result h1, .search-result .h1 {
    font-size: 32px;
    line-height: 32px;
  }
  .result-menu {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 400px) {
  .item-list div[class^=col-] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.search-title {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 15px;
}

.search-form-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 860px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 16px;
  padding: 4px 4px 4px 8px;
  border: 1px solid #DBDBDB;
}
.search-form-form .form-control {
  height: 42px;
  border: 0;
  width: 100%;
  border-radius: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-family: var(--font-sans);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.search-form-form .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.search-form-form .form-group:first-child:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 20px;
  width: 2px;
  background-color: #CED0DF;
}
.search-form-form .btn {
  width: 100%;
  display: block;
}

.agree {
  max-width: 860px;
  margin-top: 20px;
}
.agree a {
  text-underline-position: under;
}
.agree a:hover {
  text-decoration: none;
}

@media (max-width: 1399px) {
  .search-title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 1199px) {
  .search-title {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .search-title {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .search-title {
    font-size: 20px;
    line-height: 20px;
  }
  .search-form-form {
    display: block;
    padding: 4px;
  }
  .search-form-form .form-group:first-child:after {
    height: 1px;
    width: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}
.forbidden {
  height: 100vh;
  background: url("../img/404.jpg") center 0 no-repeat;
  background-size: cover;
  color: #fff;
  padding: 165px 0 0 0;
}

.header-404 {
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
  margin-bottom: 120px;
}

.content-404 p {
  font-size: 20px;
  line-height: 25px;
  font-family: var(--font);
  font-style: italic;
}
.content-404 a {
  color: #fff;
}
.content-404 a:hover {
  text-decoration: none;
}

.oops {
  font-size: 96px;
  line-height: 95px;
  margin-bottom: 30px;
}
.oops span {
  font-family: var(--font);
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 1399px) {
  .forbidden {
    padding: 100px 0 0 0;
  }
  .header-404 {
    margin-bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .forbidden {
    padding: 60px 0 0 0;
  }
  .header-404 {
    margin-bottom: 60px;
  }
  .oops {
    font-size: 76px;
    line-height: 75px;
  }
}
@media (max-width: 991px) {
  .forbidden {
    padding: 40px 0 0 0;
  }
  .header-404 {
    margin-bottom: 40px;
  }
  .oops {
    font-size: 56px;
    line-height: 55px;
  }
}
@media (max-width: 575px) {
  .forbidden {
    padding: 30px 0 0 0;
  }
  .header-404 {
    margin-bottom: 30px;
  }
  .logo-404 img {
    max-width: 120px;
  }
  .oops {
    font-size: 36px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .content-404 p {
    font-size: 16px;
    line-height: 22px;
  }
  .header-404 {
    text-align: center;
  }
}
.people-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

.people-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 162px;
          flex: 0 0 162px;
  max-width: 162px;
  height: 162px;
  border-radius: 12px;
  overflow: hidden;
}
.people-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.people-cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 0 0 26px;
}

.people-name {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 26px;
  position: relative;
  margin-bottom: 26px;
}
.people-name:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 310px;
  background-color: #000;
}
.people-name span {
  display: block;
  padding-top: 8px;
  line-height: 20px;
  text-transform: uppercase;
  color: #949494;
  font-size: 20px;
  font-family: var(--font);
}

.people-inf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.people-inf a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.people-inf a:not(:last-child) {
  margin-right: 16px;
}
.people-inf a:hover {
  text-decoration: underline;
}
.people-inf .icon {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  max-width: 20px;
}

@media (max-width: 1399px) {
  .people-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    max-width: 120px;
    height: 120px;
  }
  .people-cnt {
    padding-top: 0;
  }
  .people-name {
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .people-name span {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .people-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    max-width: 100px;
    height: 100px;
  }
  .people-cnt {
    padding-left: 15px;
  }
}
@media (max-width: 575px) {
  .people-inf {
    display: block;
  }
  .people-inf a:not(:last-child) {
    margin: 0 0 6px 0;
  }
  .people-name:after {
    width: 100%;
  }
  .people-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    max-width: 80px;
    height: 80px;
  }
  .people-name {
    font-size: 18px;
    line-height: 22px;
  }
  .people-name span {
    font-size: 16px;
    line-height: 16px;
  }
}
.article {
  font-size: 16px;
  line-height: 20px;
}
.article:not(:last-child) {
  margin-bottom: 95px;
}
.article h2, .article .h2 {
  margin-bottom: 20px;
}
.article h3, .article .h3 {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 20px;
}
.article h4, .article .h4 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}
.article ul {
  margin-bottom: 38px;
}
.article ul li {
  display: block;
  padding-left: 36px;
  position: relative;
}
.article ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  top: 10px;
  height: 1px;
  width: 16px;
  background-color: #000;
}
.article ul li + li {
  margin-top: 8px;
}
.article figure {
  margin: 38px 0;
  display: block;
}
.article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.article figcaption {
  background-color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 0 0 12px 12px;
  display: block;
}
.article ol {
  list-style: none;
  counter-reset: point;
  margin-bottom: 38px;
}
.article ol li {
  display: block;
  position: relative;
  padding-left: 36px;
}
.article ol li:not(:last-child) {
  margin-bottom: 8px;
}
.article ol li:before {
  content: counter(point) ".";
  counter-increment: point 1;
  font-family: var(--font-sans);
  position: absolute;
  left: 8px;
  top: 0;
}

.table-box {
  overflow: auto;
}

.table th {
  background-color: #000;
  color: #fff;
  padding: 13px 28px;
}
.table th:first-child {
  border-radius: 12px 0 0 0;
}
.table th:last-child {
  border-radius: 0 12px 0 0;
}
.table td {
  padding: 13px 28px;
}

blockquote {
  background-color: #fff;
  border-left: 4px solid var(--color-acc);
  padding: 32px 32px 32px 16px;
  font-size: 20px;
  line-height: 25px;
  margin: 38px 0;
  font-family: var(--font);
}
blockquote:last-child {
  margin-bottom: 0;
}
blockquote p {
  margin: 0;
}
blockquote span {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-family: var(--font-sans);
}

p.big {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 38px;
}

.side-menu {
  position: sticky;
  top: 20px;
}
.side-menu > li {
  display: block;
}
.side-menu > li:not(:last-child) {
  margin-bottom: 12px;
}
.side-menu > li > a {
  font-size: 24px;
  line-height: 30px;
}
.side-menu > li a:hover {
  text-decoration: underline;
}
.side-menu > li ul {
  padding-top: 10px;
}
.side-menu > li ul li {
  font-size: 16px;
  line-height: 20px;
}
.side-menu > li ul li + li {
  margin-top: 8px;
}

@media (max-width: 1399px) {
  .article h2, .article .h2 {
    font-size: 54px;
    line-height: 54px;
  }
  .article h3, .article .h3 {
    font-size: 32px;
    line-height: 32px;
  }
  p.big {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 32px;
  }
}
@media (max-width: 1199px) {
  .article h2, .article .h2 {
    font-size: 44px;
    line-height: 44px;
  }
  .article h3, .article .h3 {
    font-size: 28px;
    line-height: 28px;
  }
  p.big {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 24px;
  }
  blockquote {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .article h2, .article .h2 {
    font-size: 34px;
    line-height: 34px;
  }
  .article h3, .article .h3 {
    font-size: 24px;
    line-height: 24px;
  }
  p.big {
    font-size: 18px;
    line-height: 22px;
  }
  blockquote {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .table th, .table td {
    padding: 10px;
  }
}
@media (max-width: 374px) {
  .table th, .table td {
    font-size: 12px;
    line-height: 14px;
  }
}
.list {
  margin: 0 -10px;
}
.list div[class^=col-] {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.news-block-img {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}
.news-block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-block-title {
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -2px;
  font-weight: 300;
  margin-bottom: 10px;
}
.news-block-title span {
  font-family: var(--font);
  font-style: italic;
}

.news-block-cnt {
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .news-block-title {
    font-size: 32px;
    line-height: 32px;
  }
  .news-block-img {
    height: 220px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .news-block-title {
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1px;
  }
  .news-block-img {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .news-block-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.carousel {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}
.carousel .news-block {
  padding: 0 10px;
}

.slick-btn {
  width: 52px;
  height: 52px;
  background-color: #000;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  border: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 15;
}
.slick-btn .icon {
  width: 11px;
  height: 18px;
  position: relative;
}

.slick-prev {
  left: -80px;
}
.slick-prev .icon {
  left: -2px;
}

.slick-next {
  right: -80px;
}
.slick-next .icon {
  left: 2px;
}

.block:not(:last-child) {
  margin-bottom: 80px;
}

@media (max-width: 1540px) {
  .carousel .slick-btn {
    -webkit-transform: none;
            transform: none;
    top: 100px;
  }
  .carousel .slick-prev {
    left: -15px;
  }
  .carousel .slick-next {
    right: -15px;
  }
}
@media (max-width: 1399px) {
  .carousel .slick-btn {
    top: 80px;
  }
  .article:not(:last-child), .block:not(:last-child) {
    margin-bottom: 65px;
  }
}
@media (max-width: 1199px) {
  .carousel .slick-btn {
    top: 70px;
  }
  .article:not(:last-child), .block:not(:last-child) {
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .carousel .slick-prev {
    left: 0px;
  }
  .carousel .slick-next {
    right: 0px;
  }
}
.info-block {
  display: block;
  height: 340px;
  position: relative;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-size: 20px;
  line-height: 25px;
  font-family: var(--font);
  font-style: italic;
  position: relative;
}
.info-block:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.info-block span {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-family: var(--font-sans);
  font-style: normal;
  margin-bottom: 7px;
}
.info-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.info-block .inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 26px 12px 0 12px;
  z-index: 1;
}
.info-block:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 575px) {
  .info-block {
    font-size: 18px;
    line-height: 22px;
    height: 300px;
  }
}
.cat-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 540px;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  font-family: var(--font);
  font-style: italic;
}
.cat-item:after {
  content: "";
  display: block;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  inset: 0;
}
.cat-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cat-item .inner {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 36px;
  z-index: 2;
}
.cat-item .inner span {
  display: block;
  font-family: var(--font-sans);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0.4;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
}
.cat-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cat-item:hover .inner span {
  opacity: 0.7;
}
.cat-item.cat-item-big {
  font-size: 64px;
  line-height: 64px;
}
.text h2, .text h3, .text h4, .text h5 {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
}
.text h2:not(:last-child), .text h3:not(:last-child), .text h4:not(:last-child), .text h5:not(:last-child) {
  margin-top: 65px;
}
.text h2 span, .text h3 span, .text h4 span, .text h5 span {
  font-family: var(--font);
  font-style: italic;
}
.text ul {
  margin: 1rem;
}
.text ul li {
  display: list-item;
  list-style-position: inside;
}

.teaser {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.slide-controls {
  position: absolute;
  left: 14px;
  bottom: 30px;
  z-index: 5;
  height: 32px;
  padding: 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slide-controls .slick-prev {
  left: 0;
}
.slide-controls .slick-next {
  right: 0;
}
.slide-controls .slick-btn {
  background: none;
  width: 32px;
  height: 32px;
}

.slide-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
}
.slick-dots li {
  display: block;
  margin: 0 6px;
  line-height: 6px;
  height: 6px;
}
.slick-dots li button {
  height: 6px;
  line-height: 1px;
  width: 40px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border: 0;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
}
.slick-dots li button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.slick-dots li.slick-active button {
  background-color: white;
}

.feedback {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 830px;
          flex: 0 0 830px;
  max-width: 830px;
  padding: 40px 40px 40px 68px;
  background-color: var(--color-acc);
  color: #fff;
  position: relative;
  z-index: 1;
}
.feedback h2, .feedback .h2 {
  margin-bottom: 13px;
}
.feedback p {
  margin-bottom: 32px;
}
.feedback img {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
}
.feedback .agree {
  color: #fff;
  font-size: 13px;
  line-height: 16px;
  margin-top: 100px;
}
.feedback .agree a {
  color: #fff;
  text-decoration: underline;
}

.feedback-inner {
  max-width: 512px;
}

.teser-slider .slide {
  position: relative;
  height: 500px;
}
.teser-slider .slide:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.teser-slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-content {
  color: #fff;
  position: absolute;
  left: 32px;
  top: 40px;
  max-width: 654px;
  z-index: 2;
}
.slide-content h2, .slide-content h3, .slide-content h4, .slide-content h5, .slide-content .h2, .slide-content .h3, .slide-content .h4, .slide-content .h5 {
  margin-bottom: 13px;
}

@media (max-width: 1600px) {
  .feedback {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 760px;
            flex: 0 0 760px;
    max-width: 760px;
    padding: 30px 30px 30px 40px;
  }
  .feedback img {
    max-width: 200px;
  }
  .feedback .agree {
    margin-top: 70px;
  }
  .teser-slider .slide {
    height: 460px;
  }
  .slide-content {
    max-width: 530px;
  }
  .slide-content h2, .slide-content h3, .slide-content h4, .slide-content h5, .slide-content .h2, .slide-content .h3, .slide-content .h4, .slide-content .h5 {
    font-size: 54px;
    line-height: 54px;
  }
}
@media (max-width: 1399px) {
  .feedback {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 600px;
            flex: 0 0 600px;
    max-width: 600px;
  }
  .feedback img {
    display: none;
  }
  .slide-content {
    max-width: none;
    right: 40px;
  }
}
@media (max-width: 1199px) {
  .feedback {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 460px;
            flex: 0 0 460px;
    max-width: 460px;
    padding: 20px;
  }
  .slide-content {
    top: 20px;
    left: 20px;
    right: 20px;
  }
  .feedback img {
    display: none;
  }
  .slide-content {
    max-width: none;
    right: 40px;
  }
  .slide-content h2, .slide-content h3, .slide-content h4, .slide-content h5, .slide-content .h2, .slide-content .h3, .slide-content .h4, .slide-content .h5 {
    font-size: 44px;
    line-height: 44px;
  }
  .feedback h2, .feedback h3, .feedback h4, .feedback h5, .feedback .h2, .feedback .h3, .feedback .h4, .feedback .h5 {
    font-size: 44px;
    line-height: 44px;
  }
  .feedback .agree {
    margin-top: 30px;
  }
  .teser-slider .slide {
    height: 380px;
  }
}
@media (max-width: 991px) {
  .teaser, .feedback {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .feedback-inner {
    max-width: 620px;
  }
  .feedback img {
    display: block;
    max-width: 160px;
  }
}
@media (max-width: 860px) {
  .feedback img {
    max-width: 160px;
  }
  .feedback-inner {
    max-width: 560px;
  }
}
@media (max-width: 767px) {
  .feedback-inner {
    max-width: 420px;
  }
  .feedback img {
    max-width: 130px;
  }
}
@media (max-width: 575px) {
  .feedback img {
    display: none;
  }
  .feedback-inner {
    max-width: 100%;
  }
  .slide-content h2, .slide-content h3, .slide-content h4, .slide-content h5, .slide-content .h2, .slide-content .h3, .slide-content .h4, .slide-content .h5 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 374px) {
  .slide-content h2, .slide-content h3, .slide-content h4, .slide-content h5, .slide-content .h2, .slide-content .h3, .slide-content .h4, .slide-content .h5 {
    font-size: 28px;
    line-height: 28px;
  }
}
.map {
  height: 500px;
  position: relative;
  z-index: 1;
}
.map .container {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.map-canvas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.map-caption {
  width: 420px;
  padding: 58px 40px 40px 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.map-caption h4, .map-caption .h4 {
  font-size: 36px;
  line-height: 36px;
  margin: 0 0 28px 0;
}
.map-caption address {
  margin: 0;
  min-height: 130px;
  padding-bottom: 15px;
}

@media (max-width: 575px) {
  .map-caption {
    width: 320px;
    padding: 25px;
  }
  .map-caption address {
    min-height: auto;
  }
  .map-caption h4, .map-caption .h4 {
    margin-bottom: 20px;
  }
}
@media (max-width: 374px) {
  .map-caption {
    width: auto;
    left: 15px;
    right: 15px;
    padding: 20px;
  }
}
.carousel-holder {
  position: relative;
}
.carousel-holder .slide {
  padding: 0 6px;
}
.carousel-holder .slick-next {
  right: 40px;
}
.carousel-holder .slick-prev {
  left: 40px;
}

.catalog-carousel .cat-item {
  width: 320px;
}
.catalog-carousel .cat-item.cat-item-big {
  width: 910px;
}

.partners {
  margin: 0 -10px 60px -10px;
}
.partners div[class^=col-] {
  padding: 0 10px;
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .catalog-carousel .cat-item.cat-item-big {
    width: 600px;
  }
}
@media (max-width: 1360px) {
  .catalog-carousel .cat-item.cat-item-big {
    width: 320px;
  }
  .cat-item.cat-item-big {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 1199px) {
  .cat-item {
    height: 340px;
  }
  .carousel-holder .slick-prev {
    left: 20px;
  }
  .carousel-holder .slick-next {
    right: 20px;
  }
  .catalog-carousel .cat-item,
  .catalog-carousel .cat-item.cat-item-big {
    width: auto !important;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .section-super {
    margin-bottom: 60px;
  }
  .partners {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .section h1, .section h2, .section h3, .section h4, .section h5, .section .h1, .section .h2, .section .h3, .section .h4, .section .h5 {
    font-size: 32px;
    line-height: 32px;
    margin: 0 0 20px 0;
  }
  .section-wide {
    margin-bottom: 30px;
  }
  .section-super {
    margin-bottom: 40px;
  }
  .carousel-holder .slick-prev {
    left: 2px;
  }
  .carousel-holder .slick-next {
    right: 2px;
  }
  .partners {
    margin-bottom: 20px;
  }
  .partners div[class^=col-] {
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .slick-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }
  .hero {
    margin-bottom: 40px;
  }
}
.product-inf {
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
}
.product-inf ul {
  list-style-position: inside;
  margin: 15px 10px;
}
.product-inf ul li {
  display: list-item;
}

.product-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}
.product-type input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.product-type label {
  position: relative;
  color: #CF505C;
  cursor: pointer;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 32px;
  margin-right: 4px;
}
.product-type label:has(input[type=radio]:checked) {
  background-color: #000;
  color: #fff;
}

.product-slider {
  max-width: 640px;
  position: relative;
}
.product-slider .slide {
  border-radius: 12px;
  overflow: hidden;
}
.product-slider .slide img {
  max-width: 100%;
  border-radius: 12px;
}

.slick-a {
  width: 35px;
  height: 61px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  border: 0;
  z-index: 5;
  background: none;
}
.slick-a .icon {
  width: 100%;
  height: 100%;
}
.slick-a.slick-prev {
  left: -55px;
}
.slick-a.slick-next {
  right: -55px;
}

.product-slider-box {
  position: relative;
  margin-bottom: 64px;
  padding-bottom: 26px;
}

.product-slider-box .prod-label{
  display: none;
}

.product-slider-box .slick-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 20px;
  margin-left: -6px;
  margin-right: -6px;
}
.product-slider-box .slick-dots li button {
  background: rgba(0, 0, 0, 0.2);
}
.product-slider-box .slick-dots li.slick-active button {
  background: black;
}

.prod-label {
  position: absolute;
  left: 40px;
  bottom: 64px;
  z-index: 18;
  pointer-events: none;
}
.prod-label img {
  max-width: 100%;
}

.row-prod {
  margin-bottom: 56px;
}

.prod-txt {
  line-height: 20px;
}
.prod-txt ul {
  list-style-position: inside;
  margin: 20px 10px;
}
.prod-txt ul li {
  display: list-item;
}
.prod-txt h2, .prod-txt h3, .prod-txt h4, .prod-txt h5, .prod-txt .h2, .prod-txt .h3, .prod-txt .h4, .prod-txt .h5 {
  font-size: 36px;
  line-height: 36px;
  margin: 0 0 30px 0;
  letter-spacing: -2px;
}
.prod-txt h2 span, .prod-txt h3 span, .prod-txt h4 span, .prod-txt h5 span, .prod-txt .h2 span, .prod-txt .h3 span, .prod-txt .h4 span, .prod-txt .h5 span {
  font-family: var(--font);
  font-style: italic;
}

.prod-price {
  position: relative;
  padding-top: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.prod-price:last-child {
  margin-bottom: 0;
}
.prod-price:before {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  height: 1px;
  left: 0;
  top: 0;
  background-color: #DBDBDB;
}
.prod-price strong {
  display: block;
  font-size: 20px;
  line-height: 25px;
  font-style: italic;
  font-family: var(--font);
  margin-top: 8px;
  font-weight: 400;
}
.prod-price .btn {
  min-width: 276px;
  max-width: 100%;
}
.prod-price .btn-area {
  margin-left: -5px;
  margin-right: -5px;
}
.prod-price .btn-area div[class^=col-] {
  padding: 0 5px;
}
.prod-price .btn-area .btn {
  min-width: auto;
  max-width: 100%;
  width: 100%;
}

.prod-price-none {
  margin-bottom: 16px;
}

.prod-status {
  font-weight: 700;
  margin-bottom: 16px;
}

.prod-price-val {
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -4px;
  margin-bottom: 6px;
}
.prod-price-val span {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -2px;
  font-family: var(--font);
}

.prod-price {
  margin-bottom: 32px;
}
.prod-price b {
  display: block;
  margin-bottom: 16px;
}

.prod-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 28px;
}
.prod-filter div {
  padding: 0 2px;
  margin-bottom: 4px;
}
.prod-filter div a {
  display: inline-block;
  border: 1px solid #DBDBDB;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 32px;
  padding: 10px 16px;
  font-weight: 700;
  color: #CF505C;
}
.prod-filter div a:hover {
  background-color: #CF505C;
  color: #fff;
}

.prod-foot {
  font-size: 13px;
  color: #949494;
}

.prod-carousel {
  margin-left: -5px;
  margin-right: -5px;
}
.prod-carousel .slide {
  padding: 0 5px;
}

.prod-tabs-inf {
  margin-bottom: 65px;
}

@media (max-width: 1460px) {
  .product-slider-box .slick-a {
    display: none !important;
  }
}
@media (max-width: 1540px) {
  .prod-carousel .slick-btn {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 1199px) {
  .product-inf {
    padding: 20px;
  }
  .product-type {
    margin-bottom: 16px;
  }
  .prod-price {
    margin-bottom: 20px;
  }
  .prod-price {
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .prod-price-val {
    font-size: 42px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .product-slider-box {
    margin-bottom: 32px;
  }
  .product-inf {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .product-type {
    display: block;
  }
  .product-type label + label {
    margin-top: 6px;
  }
  .prod-label {
    max-width: 120px;
    left: 10px;
    bottom: 40px;
  }
}
.category-slider {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 75px;
}
.category-slider .slide {
  text-align: center;
  padding: 0 20px;
}
.category-slider a {
  display: block;
}
.category-slider .cat-img {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 12px auto;
}
.category-slider .cat-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cat-aside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 284px;
          flex: 0 0 284px;
  max-width: 284px;
}

.cat-sidebar {
  background-color: #fff;
}

.cat-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 46px;
}

.cat-title {
  padding: 20px 42px 20px 16px;
  border: 0;
  background: none;
  position: relative;
  font-size: 20px;
  line-height: 25px;
  font-style: italic;
  font-family: var(--font);
  width: 100%;
  display: block;
  outline: none;
  text-align: left;
}
.cat-title:not(.collapsed) .icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.cat-title .icon {
  width: 10px;
  height: 7px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #DBDBDB #fff;
}

*::-webkit-scrollbar {
  width: 4px;
}

.cat-unit:not(:last-child) {
  border-bottom: 1px solid #DBDBDB;
}

.cat-body {
  padding: 0 16px 16px 16px;
  font-weight: 300;
}
.cat-body ul {
  max-height: 150px;
  overflow: auto;
}
.cat-body ul li {
  display: block;
}
.cat-body ul li:not(:last-child) {
  margin-bottom: 10px;
}
.cat-body label {
  display: block;
  padding: 0 0 0 32px;
  position: relative;
  font-weight: 600;
  cursor: pointer;
}
.cat-body label sup {
  font-weight: 400;
  color: #949494;
}
.cat-body label:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #DBDBDB;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
}
.cat-body label:after {
  content: "";
  display: block;
  height: 6px;
  width: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 5px;
  top: 5px;
}
.cat-body label:has(input[type=checkbox]:checked, input[type=radio]:checked):before {
  background-color: #CF505C;
  border-color: #CF505C;
}
.cat-body label:has(input[type=checkbox]:disabled, input[type=radio]:disabled) {
  cursor: not-allowed;
  opacity: 0.3;
}
.cat-body input[type=checkbox], .cat-body input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.cat-table {
  margin-bottom: 36px;
}

.cat-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #4C2A77;
}

.cat-table-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  line-height: 25px;
  font-style: italic;
  font-family: var(--font);
  padding-right: 20px;
}
.cat-table-name a {
  color: #CF505C;
}

.cat-table-price {
  font-size: 24px;
  line-height: 30px;
  padding: 0 20px;
}
.cat-table-price span {
  font-size: 20px;
  line-height: 25px;
  font-style: italic;
  font-family: var(--font);
}

.cat-table-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  max-width: 200px;
}
.cat-table-btn .btn {
  width: 100%;
}

.pagination {
  font-family: var(--font);
  font-style: italic;
  margin: 0 -4px 60px -4px;
}
.pagination a {
  color: #CF505C;
}
.pagination a:hover {
  color: #000;
  background-color: #fff;
}
.pagination li {
  padding: 0 4px;
}

.page-link {
  padding: 8px 16px;
  border-radius: 12px !important;
  border: 0;
}

span.page-link {
  pointer-events: none;
}

.active > .page-link, .page-link.active {
  background-color: #000;
  color: #fff;
}

@media (max-width: 1360px) {
  .cat-table-row {
    padding: 15px 0;
  }
  .cat-table-name {
    font-size: 18px;
    line-height: 23px;
  }
  .cat-table-price {
    font-size: 20px;
    line-height: 26px;
    padding: 0 10px;
  }
}
@media (max-width: 1199px) {
  .cat-table-row {
    padding: 10px 0;
  }
  .cat-table-name {
    font-size: 16px;
    line-height: 20px;
  }
  .cat-table-price {
    font-size: 18px;
    line-height: 22px;
  }
  .cat-table-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    max-width: 180px;
  }
  .cat-title {
    padding: 15px 40px 15px 15px;
    font-size: 18px;
    line-height: 22px;
  }
  .cat-aside {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    max-width: 250px;
  }
}
@media (max-width: 991px) {
  .category-layout {
    display: block;
  }
  .cat-content {
    padding-left: 0;
  }
  .category-slider .cat-img {
    width: 140px;
    height: 140px;
  }
  .cat-aside {
    max-width: 100%;
  }
  .category-slider {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cat-table-row {
    display: block;
    padding: 15px 0;
  }
  .cat-table-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
  .cat-table-price {
    margin-bottom: 10px;
  }
  .page-link {
    padding: 6px 6px;
    font-size: 14px;
    border-radius: 6px !important;
  }
  .pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .category-slider .slide {
    text-align: center;
    padding: 0 10px;
  }
  .category-slider {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 400px) {
  .btn-area div[class^=col-] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .btn-area div[class^=col-] + div[class^=col-] {
    margin-top: 10px;
  }
}
.modal-content {
  padding: 64px 16px 16px 16px;
}

.btn-close {
  width: 24px;
  height: 24px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
}
.btn-close .icon {
  width: 8px;
  height: 8px;
}

.modal-title {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 24px;
  text-align: center;
}
.modal-title span {
  font-family: var(--font);
  font-style: italic;
}

.modal-form .form-group {
  margin-bottom: 24px;
}
.modal-form .btn {
  display: block;
  width: 100%;
}

.form-control {
  height: 44px;
  border-color: #DBDBDB;
  padding-left: 24px;
  padding-right: 24px;
  font-family: var(--font-sans);
  border-radius: 12px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.form-control:focus {
  border-color: #a8a8a8;
}

.is-sticky {
  position: sticky;
  top: 20px;
}

.form-agree {
  font-size: 13px;
  line-height: 16px;
  color: #949494;
}
.form-agree a {
  color: #949494;
  text-decoration: underline;
}
.form-agree a:hover {
  text-decoration: none;
}

.modal-name {
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-acc);
  margin-bottom: 12px;
}

.modal-price {
  text-align: center;
  margin-bottom: 24px;
}

@media (max-width: 400px) {
  .modal-name {
    font-size: 20px;
    line-height: 26px;
  }
  .modal-content {
    padding: 54px 16px 16px 16px;
  }
}
/*# sourceMappingURL=style.css.map */