@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Unbounded:wght@200..900&display=swap");
:root .main-text {
  color: #FFF;
  font-family: Manrope, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}
:root .btn {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: linear-gradient(274deg, #E80070 0%, #FBC204 100%), linear-gradient(274deg, #C00042 -0.46%, #FFBA00 100%), linear-gradient(99deg, #F3DF39 0.59%, #C51150 100.12%);
  color: #FFF;
  text-align: center;
  font-family: Manrope, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 500px) {
  :root .btn {
    font-size: 16px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  :root .btn {
    padding: 8px 16px;
    font-size: 16px;
  }
}
:root .h1 {
  color: #333334;
  font-family: Unbounded, serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1200px) {
  :root .h1 {
    font-size: 24px;
    padding: 24px;
    text-align: center;
  }
}
:root .card {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid rgba(2, 4, 10, 0.05);
  background: #FFF;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
  max-width: 366px;
  margin: 0 10px;
  max-height: 100%;
  height: 100%;
}
:root .card img {
  height: 100%;
  object-fit: contain;
  aspect-ratio: 4/3;
}
@media (max-width: 500px) {
  :root .card {
    gap: 16px;
  }
}
@media (max-width: 800px) {
  :root .card {
    max-width: 100%;
    align-items: center;
  }
}
:root .card .catalog_item_image {
  width: 100%;
  max-height: 282px;
}
:root .card .catalog_item_content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 800px) {
  :root .card .catalog_item_content {
    gap: 8px;
    padding: 8px;
    width: 100%;
    align-items: center;
  }
}
:root .card .catalog_item_content .catalog_item_title {
  color: #333334;
  font-family: Manrope, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 50px;
}
@media (max-width: 500px) {
  :root .card .catalog_item_content .catalog_item_title {
    font-size: 20px;
  }
}
:root .card .catalog_item_content .catalog_item_text {
  color: #414141;
  font-family: Manrope, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.6px;
  height: 60px;
}
@media (max-width: 500px) {
  :root .card .catalog_item_content .catalog_item_text {
    text-align: center;
  }
}
:root #catalog .arrow-pslide {
  width: 60px;
  height: 60px;
  background: #FFF;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
}
@media (max-width: 500px) {
  :root #catalog .arrow-pslide {
    display: none;
  }
}
:root #catalog .prev-btn-psilde {
  left: -2rem;
}
:root #catalog .next-btn-psilde {
  right: -2rem;
}
:root #catalog .page-pagination-pslide {
  width: 12px;
  height: 12px;
}
@media (max-width: 500px) {
  :root #catalog .page-pagination-pslide {
    width: 8px;
    height: 8px;
  }
}
:root #catalog .splide__pagination__page.is-active {
  background: #F9C50C;
}
:root #catalog .splide__pagination__page {
  background: #FFFFFF;
  opacity: 1;
}
@media (max-width: 500px) {
  :root #catalog .splide__pagination__page {
    background: #cccccc;
  }
}
:root #catalog .pagination_catalog-pslide {
  bottom: -2em;
}
:root #image-carousel .splide__pagination {
  bottom: 0.7em;
}
:root #image-carousel .splide__pagination__page.is-active {
  background: #F9C50C;
}
:root #image-carousel .splide__pagination__page {
  background: #FFFFFF;
  opacity: 1;
  height: 12px;
  width: 12px;
}
:root #image-carousel .splide__arrow {
  width: 3em;
  height: 3em;
}
@media (max-width: 500px) {
  :root #image-carousel .splide__arrow {
    display: none;
  }
}
:root .is-hidden {
  display: none !important;
}

body {
  max-width: 1920px;
  padding: 24px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  body {
    padding: 8px;
  }
}
body header {
  max-width: 1872px;
}
body header .nav_wrapper {
  position: relative;
  z-index: 10;
}
body header .nav_wrapper nav.navbar {
  display: flex;
  padding: 24px 64px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
}
@media (max-width: 1200px) {
  body header .nav_wrapper nav.navbar .logo {
    width: 70px;
  }
}
body header .nav_wrapper nav.navbar .nav_links {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  align-items: center;
}
@media (max-width: 1200px) {
  body header .nav_wrapper nav.navbar .nav_links {
    gap: 16px;
  }
}
body header .nav_wrapper nav.navbar .nav_links ul.links {
  display: flex;
  padding: 16px 28px;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1200px) {
  body header .nav_wrapper nav.navbar .nav_links ul.links {
    padding: 8px 14px;
  }
}
body header .nav_wrapper nav.navbar .nav_links ul.links .dropdown-wrapper:hover .dropdown-content {
  display: flex;
}
body header .nav_wrapper nav.navbar .nav_links ul.links .dropdown-wrapper .dropdown-content {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  font-family: Manrope, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  color: black;
}
body header .nav_wrapper nav.navbar .nav_links ul.links .dropdown-wrapper .dropdown-content a:hover {
  color: #f9aa12;
}
@media (max-width: 1200px) {
  body header .nav_wrapper nav.navbar {
    padding: 12px 24px;
  }
}
@media (max-width: 768px) {
  body header .nav_wrapper {
    display: none;
  }
}
body header .nav_wrapper_mobile {
  position: relative;
}
body header .nav_wrapper_mobile .navbar_mobile {
  height: 56px;
  display: flex;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
}
body header .nav_wrapper_mobile .navbar_mobile .logo img {
  height: 40px;
}
body header .nav_wrapper_mobile .menu_mobile {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 110;
  background: #ffffff;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
body header .nav_wrapper_mobile .menu_mobile .links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
body header .nav_wrapper_mobile .menu_mobile .links li a {
  color: #333334;
  text-align: center;
  font-family: Manrope, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body header .nav_wrapper_mobile .menu_mobile .links .dropdown-wrapper .dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 24px;
}
body header .nav_wrapper_mobile .menu_mobile .links .dropdown-wrapper .dropdown-content a::before {
  content: "→";
  padding: 20px;
}
@media (min-width: 800px) {
  body header .nav_wrapper_mobile {
    display: none;
  }
}
body header .banner {
  width: 100%;
  max-height: 840px;
  background-image: image-set("/public/images/banner1x.jpg" 1x, "/public/images/banner2x.jpg" 2x);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 59px;
}
@media (max-width: 1200px) {
  body header .banner {
    max-height: 340px;
  }
}
@media (min-height: 1000px) {
  body header .banner {
    background-size: cover;
  }
}
body header .banner .content_banner {
  width: 687px;
  margin: 180px 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 59px;
}
@media (max-width: 1200px) {
  body header .banner .content_banner {
    gap: 12px;
    margin: 100px 100px;
  }
}
body header .banner .content_banner .text_banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1200px) {
  body header .banner .content_banner .text_banner {
    gap: 12px;
  }
}
body header .banner .content_banner .text_banner .first_text {
  color: #FFF;
  font-family: Manrope, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1200px) {
  body header .banner .content_banner .text_banner .first_text {
    font-size: 22px;
  }
}
body header .banner .content_banner .text_banner .second_text {
  color: #FFF;
  font-family: Unbounded, serif;
  font-size: 84px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  body header .banner .content_banner .text_banner .second_text {
    font-size: 30px;
  }
}
body header .banner .content_banner .text_banner .third_text {
  color: #FFF;
  font-family: Manrope, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1200px) {
  body header .banner .content_banner .text_banner .third_text {
    font-size: 16px;
  }
}
body header .banner .content_banner .btn_banner {
  padding: 40px 44px;
  font-size: 20px;
}
@media (max-width: 1200px) {
  body header .banner .content_banner .btn_banner {
    padding: 20px 22px;
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  body header .banner {
    margin-top: 50px;
    background-image: image-set("/public/images/banner_mobile.jpg" 1x, "/public/images/mobile_banner_2.jpg" 2x);
    height: 622px;
    align-items: center;
    justify-content: center;
    background-size: cover;
    border-radius: 16px;
  }
  body header .banner .content_banner {
    width: 300px;
    margin: 0;
    gap: 24px;
    position: relative;
    align-items: center;
  }
  body header .banner .content_banner .text_banner {
    gap: 16px;
    text-align: center;
    align-items: center;
  }
  body header .banner .content_banner .text_banner .first_text {
    font-size: 18px;
  }
  body header .banner .content_banner .text_banner .second_text {
    font-size: 36px;
  }
  body header .banner .content_banner .text_banner .third_text {
    font-size: 16px;
  }
  body header .banner .content_banner .btn_banner {
    padding: 16px 32px;
    font-size: 16px;
  }
}
body main section.advantages {
  max-height: 100%;
}
body main section.advantages .container {
  background-image: url("/public/images/girl.png");
  background-repeat: no-repeat;
  background-position: left 100%;
  background-size: 45%;
  height: 100%;
  display: flex;
  padding: 64px 0 114px;
}
@media (max-width: 1200px) {
  body main section.advantages .container {
    flex-direction: column;
    padding: 24px 0;
    background: #ffffff none;
  }
}
body main section.advantages .container .advantages_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: flex-end;
  max-height: 1200px;
  height: 100%;
}
@media (max-width: 500px) {
  body main section.advantages .container .advantages_list {
    gap: 16px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
body main section.advantages .container .advantages_list .gray {
  display: flex;
  flex-direction: column;
  height: 380px;
  max-width: 452px;
  padding: 32px 32px 40px 32px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: #F6F6F6;
  width: 100%;
}
@media (max-width: 900px) {
  body main section.advantages .container .advantages_list .gray {
    padding: 24px;
    height: 260px;
    max-width: 100%;
  }
}
body main section.advantages .container .advantages_list .gray .advantage_title {
  color: #333334;
  font-family: Manrope, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.advantages .container .advantages_list .gray .advantage_text {
  color: #414141;
  font-family: Manrope, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}
body main section.advantages .container .advantages_list .violet {
  display: flex;
  flex-direction: column;
  height: 380px;
  max-width: 452px;
  width: 100%;
  padding: 32px 32px 40px 32px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: linear-gradient(326deg, #F9CF5D 0%, #F40092 100%), #F6F6F6;
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.03);
}
@media (max-width: 900px) {
  body main section.advantages .container .advantages_list .violet {
    padding: 24px;
    height: 260px;
    max-width: 100%;
  }
}
body main section.advantages .container .advantages_list .violet .advantage_title {
  color: #FFFFFF;
  font-family: Manrope, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.advantages .container .advantages_list .violet .advantage_text {
  color: #FFFFFF;
  font-family: Manrope, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}
body main section.advantages .container .advantages_list #wood {
  background-image: url("/public/images/wood.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (max-width: 900px) {
  body main section.advantages .container .advantages_list #wood {
    background-image: none;
  }
}
body main section.advantages .container .advantages_list #madeIn {
  background: url("/public/images/nn.png") no-repeat right 110%/90%, linear-gradient(326deg, #A302C3 0%, #F40092 100%), #F6F6F6;
  position: relative;
  top: 50px;
}
@media (max-width: 900px) {
  body main section.advantages .container .advantages_list #madeIn {
    background: linear-gradient(326deg, #A302C3 0%, #F40092 100%), #F6F6F6;
    top: 0;
  }
}
@media (max-width: 1200px) {
  body main section.advantages .container .advantages_list #madeIn {
    top: 0;
  }
}
body main section.advantages .container .advantages_list #facture {
  background: url("/public/images/printer.png") no-repeat center 200%/70%, linear-gradient(326deg, #F9CF5D 0%, #F40092 100%), #F6F6F6;
}
@media (max-width: 900px) {
  body main section.advantages .container .advantages_list #facture {
    background: linear-gradient(326deg, #F9CF5D 0%, #F40092 100%), #F6F6F6;
  }
}
body main section.advantages .container .advantages_list #license {
  background-image: url("/public/images/3kota.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
  top: 50px;
}
@media (max-width: 900px) {
  body main section.advantages .container .advantages_list #license {
    background-image: none;
    top: 0;
  }
}
@media (max-width: 1200px) {
  body main section.advantages .container .advantages_list #license {
    top: 0;
  }
}
body main section.catalog {
  max-height: 856px;
}
body main section.catalog .container {
  border-radius: 24px;
  padding: 64px;
  height: 100%;
  background: url("/public/images/line-background.svg") no-repeat, linear-gradient(180deg, #A302C3 3.29%, #40006B 88.03%), #F6F6F6;
}
@media (max-width: 500px) {
  body main section.catalog .container {
    padding: 24px 16px 48px;
  }
}
body main section.catalog .container .catalog_title {
  color: #FFFFFF;
}
body main section.catalog .container section.splide {
  padding: 64px;
}
@media (max-width: 500px) {
  body main section.catalog .container section.splide {
    padding: 0;
  }
}
body main section.about .container {
  padding: 64px 0;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  border-radius: 24px 24px 0 0;
}
@media (max-width: 1200px) {
  body main section.about .container {
    padding: 24px 0;
    flex-direction: column;
    max-height: 1500px;
  }
}
@media (min-width: 900px) and (max-width: 1200px) {
  body main section.about .container {
    align-items: center;
  }
}
body main section.about .container .content {
  display: flex;
  padding: 64px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  height: 100%;
}
@media (max-width: 1200px) {
  body main section.about .container .content {
    max-height: 1500px;
  }
}
body main section.about .container .content .main-text {
  color: #5B5A5A;
}
@media (max-width: 500px) {
  body main section.about .container .content a {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  body main section.about .container .content {
    padding: 0;
    order: 1;
    align-items: center;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  body main section.about .container .content .h1 {
    padding: 0;
  }
}
body main section.about .container .image {
  max-height: 627px;
  height: 100%;
}
body main section.about .container .image img {
  border-radius: 16px;
}
@media (max-width: 1200px) {
  body main section.about .container .image {
    order: 0;
  }
}

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