@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Unbounded:wght@200..900&display=swap");
:root {
  --dark: #333334;
  --white: #FFF;
}
: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;
}
@media (max-width: 800px) {
  :root .main-text {
    font-size: 16px;
  }
}
:root .breadcrumbs_list {
  display: flex;
  align-items: center;
  gap: 16px;
}
:root .breadcrumbs_list .active:after {
  color: #F9C50C;
  content: "●";
  padding-left: 16px;
}
: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: 0;
    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 .is-hidden {
  display: none !important;
}

body {
  max-width: 1920px;
  padding: 0 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: 16px 64px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  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 li a {
  color: #333334;
}
body header .nav_wrapper nav.navbar .nav_links .dropdown-wrapper:hover .dropdown-content {
  display: flex;
}
body header .nav_wrapper nav.navbar .nav_links .dropdown-wrapper .dropdown-content {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
}
body header .nav_wrapper nav.navbar .nav_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;
  gap: 24px;
  align-items: flex-start;
}
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;
  }
}
@media (max-width: 900px) {
  body main section.catalog {
    margin-top: 60px;
  }
}
body main section.catalog .container {
  display: flex;
  padding: 64px;
  flex-direction: column;
  gap: 32px;
  border-radius: 24px;
  background: url("/public/images/line-background.svg"), linear-gradient(180deg, #A302C3 3.29%, #40006B 88.03%);
}
@media (max-width: 900px) {
  body main section.catalog .container {
    padding: 24px 16px;
    gap: 24px;
  }
}
body main section.catalog .container h1 {
  color: #ffffff;
}
body main section.catalog .container .catalog_wrapper {
  display: flex;
  gap: 32px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 719px) {
  body main section.catalog .container .catalog_wrapper {
    justify-content: center;
  }
}
body main section.seo_text {
  padding: 64px;
  display: flex;
  gap: 32px;
}
@media (max-width: 1200px) {
  body main section.seo_text {
    padding: 24px 0;
  }
}
body main section.seo_text .container {
  border-radius: 16px;
  border: 1px solid #02040A;
  background: #FFF;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
@media (max-width: 1200px) {
  body main section.seo_text .container {
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
  }
}
body main section.seo_text .container .image {
  width: 700px;
  height: auto;
}
@media (max-width: 1200px) {
  body main section.seo_text .container .image {
    width: 100%;
  }
}
body main section.seo_text .container .text {
  color: #414141;
}
body main section.seo_text .container .text h2 {
  font-size: 40px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  body main section.seo_text .container .text h2 {
    font-size: 24px;
    padding: 24px 0;
    margin-bottom: 0;
  }
}

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