@font-face {
  font-family: WixMadeforDisplay;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('/fonts/WixMadeforDisplay-Regular.woff2') format('woff2');
}
@font-face {
  font-family: WixMadeforDisplay;
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url('/fonts/WixMadeforDisplay-Bold.woff2') format('woff2');
}
@font-face {
  font-family: WixMadeforDisplay;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/WixMadeforDisplay-ExtraBold.woff2') format('woff2');
}
@font-face {
  font-family: FabricMDL2Icons;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('/fonts/fabric-icons.woff') format('woff');
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  background-color: #ffffff;
  color: #303030;
  font-family: WixMadeforDisplay, sans-serif;
  font-size: 20px;
}
body {
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
h1 {
  font-size: 1.6rem;
}
h2 {
  font-size: 1.4rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.9rem;
}
h6 {
  font-size: 0.8rem;
}
dialog {
  background-color: #ffffff;
  border: 0;
  outline: none;
  padding: 0;
  width: 100%;
  max-width: 600px;
}
dialog::backdrop {
  background: transparent;
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}
.flex {
  display: flex;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.fill {
  flex: 1;
}
.fill-w {
  width: 100%;
}
.fill-h {
  height: 100%;
}
button {
  background-color: #ffffff;
  border: 1px solid #0000f0;
  border-radius: 5px;
  color: #333333;
  cursor: pointer;
  display: block;
  font: bold 0.8rem WixMadeforDisplay;
  outline: none;
  padding: 10px 30px;
  width: max-content;
}
button.primary {
  background: #0000f0;
  color: #ffffff;
}
button:disabled {
  background-color: #f0f0f0 !important;
  border-color: #cccccc !important;
  color: #a0a0a0 !important;
}
.form {
  background-color: transparent;
  color: #0000a0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: max-content;
  padding: 50px;
  position: relative;
  user-select: none;
}
.form::before {
  background-color: #c0e0ff;
  border: 2px solid #ffffff;
  content: '';
  opacity: 0.5;
  position: absolute;
  left: 8px;
  right: 0;
  top: 0;
  bottom: 8px;
  z-index: -1;
}
.form::after {
  border: 1px solid #0000f0;
  content: '';
  position: absolute;
  left: 0;
  right: 8px;
  top: 8px;
  bottom: 0;
  z-index: -1;
}
.form label {
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
}
.form span {
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.2s;
}
.form input[type=text],
.form textarea {
  background-color: #ffffff;
  border: 1px solid #c0e0ff;
  font: normal 1rem WixMadeforDisplay;
  outline: none;
  padding: 5px 10px;
  transition: all 0.2s;
}
.form input[type=text]:focus,
.form textarea:focus {
  border-color: #0000f0;
}
.form input[type=text]:focus + span,
.form textarea:focus + span {
  color: #0000f0;
}
.form textarea {
  resize: none;
}
.form .toolbar {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .form {
    padding: 40px 20px;
  }
  .form span {
    font-size: 0.9rem;
  }
}
.page {
  letter-spacing: 1px;
  margin: 0 auto;
  max-width: 900px;
}
.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6 {
  font-weight: 800;
}
.page table {
  border-collapse: collapse;
  font-size: 0.8rem;
  letter-spacing: 0;
  margin: 2em 0;
  min-width: max-content;
}
.page table th,
.page table td {
  border: 1px solid #a0a0a0;
  padding: 10px;
}
.page .table-wrap {
  overflow-x: auto;
}
@media (max-width: 480px) {
  .page {
    padding: 10px;
  }
  .page table {
    font-size: 1rem;
  }
}
header {
  background-color: #ffffff;
  border-bottom: 1px solid #a0a0a0;
  box-shadow: 0 10px 10px -10px #cccccc;
  z-index: 99;
}
header .logo img {
  object-fit: contain;
  width: auto;
}
header nav {
  background-color: #ffffff;
  display: flex;
  gap: 40px;
}
header nav a {
  color: #333333;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;
}
header nav a::before,
header nav a::after {
  background-color: #333333;
  content: '';
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.2s;
  width: 100%;
  height: 1px;
}
header nav a::before {
  left: 0;
  top: 0;
  transform-origin: left;
}
header nav a::after {
  right: 0;
  bottom: 0;
  transform-origin: right;
}
header nav a:hover::before,
header nav a:hover::after {
  transform: scaleX(1);
}
@media (min-width: 481px) {
  header section {
    display: flex;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px;
    max-width: 1440px;
    width: 100%;
  }
  header .menu {
    display: none;
  }
  header .logo img {
    height: 48px;
  }
  header nav {
    font-weight: bold;
  }
}
@media (max-width: 480px) {
  header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 50px;
  }
  header + * {
    margin-top: 50px !important;
  }
  header:has(input:checked) {
    bottom: 0;
    height: unset;
  }
  header:has(input:checked) nav {
    display: flex;
  }
  header .menu {
    position: absolute;
    left: 5px;
    top: 5px;
  }
  header .menu input {
    display: none;
  }
  header .menu span {
    background-image: url('/icons/menu.svg');
    background-size: contain;
    display: block;
    width: 40px;
    height: 40px;
  }
  header .menu input:checked + span {
    background-image: url('/icons/close.svg');
  }
  header .logo {
    position: absolute;
    right: 5px;
    top: 5px;
  }
  header .logo img {
    height: 40px;
  }
  header nav {
    display: none;
    font-size: 1.5rem;
    flex-direction: column;
    position: absolute;
    top: 60px;
    min-width: 50%;
  }
}
footer {
  background: linear-gradient(135deg, #e8eefe 0%, #ffffff 50%, #f9eaea 100%);
  border-top: 1px solid #b0d0f0;
  padding-top: 20px;
}
footer .company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .company .logo img {
  object-fit: contain;
  width: auto;
}
footer .company .email,
footer .company .branch {
  padding-left: 30px;
  position: relative;
}
footer .company .email img,
footer .company .branch img {
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
}
footer .company .branch {
  color: #666666;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .company .branch strong {
  color: #333333;
}
footer .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .links h3 {
  margin: 0;
}
footer .links a {
  color: #666666;
  text-decoration: none;
}
footer .links a:hover {
  text-decoration: underline;
}
footer .social {
  display: flex;
  gap: 20px;
}
footer .social img {
  width: 32px;
  height: 32px;
}
footer .bottom {
  background-color: #00000020;
  padding: 15px 0;
}
@media (min-width: 481px) {
  footer {
    font-size: 0.8rem;
  }
  footer .container {
    display: grid;
    gap: 50px;
    grid-template-columns: 3fr 1fr 1fr 1fr;
  }
  footer .company .logo img {
    height: 48px;
  }
  footer .company .branch {
    margin-right: 50px;
  }
  footer .links {
    margin-top: 60px;
  }
  footer .social {
    border-bottom: 1px solid #d0d0d0;
    height: max-content;
    margin-top: 60px;
    padding-bottom: 20px;
  }
  footer .bottom {
    font-size: 0.7rem;
    margin-top: 50px;
  }
  footer .bottom .container {
    display: flex;
    gap: 50px;
  }
}
@media (max-width: 480px) {
  footer {
    font-size: 0.9rem;
  }
  footer .container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    padding: 0 10px;
  }
  footer .company {
    grid-column: span 2;
  }
  footer .company .logo img {
    height: 40px;
  }
  footer .links {
    display: none;
  }
  footer .social {
    grid-column: span 2;
    margin-left: auto;
  }
  footer .bottom {
    font-size: 0.8rem;
    margin-top: 20px;
  }
  footer .bottom .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.breadcrumb {
  background-color: #f0f0f0;
  margin-top: -50px;
}
.breadcrumb nav {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  padding: 10px 5px;
}
.breadcrumb nav > * {
  display: flex;
  align-items: center;
}
.breadcrumb nav > *::after {
  content: '/';
  margin: 0 5px;
}
.breadcrumb nav > *:last-child {
  font-weight: bold;
}
.breadcrumb nav > *:last-child::after {
  display: none;
}
.breadcrumb nav > * > * {
  padding: 5px;
}
.breadcrumb nav a {
  border-radius: 5px;
  color: #333333;
  text-decoration: none;
}
.breadcrumb nav a:hover {
  background-color: #cccccc;
}
.breadcrumb nav img {
  position: relative;
  top: 2px;
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .breadcrumb nav > *:not(:first-child):not(:last-child) {
    display: none;
  }
}
.hotline {
  display: flex;
  gap: 10px;
  position: fixed;
  right: 0;
  bottom: 10%;
  width: max-content;
  height: max-content;
}
.hotline a {
  text-decoration: none;
}
.hotline .phone {
  background-color: #0000f0;
  border-radius: 24px 0 0 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 0 8px;
  transition: left 0.2s;
  left: calc(100% - 56px);
  height: 48px;
}
.hotline .phone:hover {
  left: 0;
}
#home main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#home .hero {
  display: flex;
}
#home .hero .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
#home .hero .content > h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}
#home .hero .content > p {
  margin: 0;
}
#home .hero .cover img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
#home .generic.reverse > :first-child {
  order: 1;
}
#home .generic .content {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  flex-direction: column;
  gap: 20px;
}
#home .generic .content h2 {
  margin: 0;
}
#home .generic .content h2 a {
  color: #333333;
  text-decoration: none;
}
#home .generic .content h2 a:hover {
  text-decoration: underline;
}
#home .generic .content h2::after {
  content: '\f35f';
  font-family: FabricMDL2Icons;
  font-size: 1rem;
  font-weight: normal;
  margin-left: 10px;
}
#home .generic .content p {
  font-size: 0.9rem;
  margin: 0;
}
#home .generic .content img {
  display: block;
  height: 50px;
  margin-top: auto;
  opacity: 50%;
}
#home .generic .cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
}
#home .generic .cover > img {
  border-radius: 20px;
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}
#home .whyus p {
  text-align: center;
}
#home .whyus ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
#home .whyus ul li {
  background: linear-gradient(135deg, #f7f9ff 0%, #e5edf9 50%, #e1eef5 100%);
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 5px 10px -10px;
  display: flex;
  font-weight: bold;
  flex: 1;
  flex-direction: row;
  gap: 20px;
  padding: 50px 40px;
}
#home .whyus .icon {
  display: block;
  height: max-content;
  padding: 10px;
  position: relative;
}
#home .whyus .icon > img {
  display: block;
  width: 48px;
  height: 48px;
}
#home .whyus .icon::before {
  background: linear-gradient(135deg, #e8eefe 0%, #f9eaea 100%);
  border-radius: 50%;
  box-shadow: 5px 5px 10px -10px;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
#home .whyus .text {
  font-size: 1.2rem;
}
#home .statistics {
  background-color: #f0f0f0;
  display: flex;
}
#home .statistics ul {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
#home .statistics ul li {
  padding: 50px 100px;
  text-align: center;
}
#home .statistics ul li > strong {
  display: block;
  font-size: 2rem;
}
#home .customer {
  display: flex;
  flex-direction: column;
}
#home .customer p {
  text-align: center;
}
#home .customer div img {
  object-fit: cover;
  /*
				filter: opacity(0.75) grayscale(1);
				transition: all .25s;
				*/
  width: 100%;
  /*
				&:hover {
					filter: opacity(1) grayscale(0);
				}
				*/
}
#home .speak {
  background-color: #f0f0f0;
  box-shadow: 20px 20px 40px -40px;
  margin: 50px 0;
  padding: 50px;
}
#home .speak h3 {
  font-size: 2rem;
  font-weight: normal;
  margin: 0;
}
#home .speak div {
  font-size: 0.9rem;
  margin: 0;
}
#home .contact > p {
  text-align: center;
}
#home .tab {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
}
#home .tab > .tab-head {
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 0.2s;
  user-select: none;
}
#home .tab > .tab-head > input {
  display: none;
}
#home .tab > .tab-head > span {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px 20px;
  text-transform: uppercase;
}
#home .tab > .tab-head::after {
  background-color: transparent;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3;
  height: 3px;
}
#home .tab > .tab-head:hover {
  background-color: #f0f0f0;
}
#home .tab > .tab-head:has(input:checked) {
  background-color: #d0f0ff;
  color: #0000a0;
}
#home .tab > .tab-head:has(input:checked)::after {
  background-color: #0000a0;
}
#home .tab > .tab-head:has(input:checked) + .tab-body {
  display: block;
}
#home .tab > .tab-body {
  border-top: 1px solid #cccccc;
  display: none;
  order: 99;
  padding: 10px;
  width: 100%;
}
#home .news > p {
  text-align: center;
}
#home .news .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
#home .news .blog-item {
  border: 1px solid #cccccc;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  text-decoration: none;
}
#home .news .blog-item:hover {
  box-shadow: 5px 5px 10px -5px #cccccc;
}
#home .news .blog-item:hover .cover img {
  transform: scale(1.1);
}
#home .news .blog-item:hover h3 {
  color: #0000a0;
}
#home .news .blog-item .cover {
  aspect-ratio: 5 / 3;
  margin: -20px;
  overflow: hidden;
}
#home .news .blog-item .cover img {
  object-fit: cover;
  transform: scale(1);
  transition: all 0.2s;
  width: 100%;
  height: 100%;
}
#home .news .blog-item h3 {
  color: #333333;
  display: block;
  margin: 40px 0 0 0;
}
#home .news .blog-item .date {
  color: #a0a0a0;
  display: block;
  font-size: 0.8rem;
  margin-top: auto;
}
@media (min-width: 481px) {
  #home .hero .content {
    margin: 0 -100px 0 100px;
    width: 40%;
  }
  #home .hero .cover {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
  }
  #home .hero .cover:before {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff00 20%);
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  #home .hero .cover img {
    border-radius: 20px;
  }
  #home .generic {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    padding: 50px 0;
  }
  #home .generic .content {
    padding: 0px 100px;
  }
  #home .generic .content img {
    display: block;
    height: 50px;
    margin-top: auto;
    opacity: 50%;
  }
  #home .statistics {
    width: 100%;
  }
  #home .customer {
    padding: 0 100px;
  }
  #home .customer div {
    display: grid;
    gap: 50px 100px;
    grid-template-columns: repeat(8, 1fr);
    margin: auto;
  }
  #home .speak {
    display: grid;
    align-items: flex-start;
    gap: 100px;
    grid-template-columns: 3fr 2fr;
  }
}
@media (max-width: 480px) {
  #home .hero {
    flex-direction: column-reverse;
    padding: 0 10px;
  }
  #home .generic {
    padding: 0 10px;
  }
  #home .generic .content {
    margin-bottom: 20px;
  }
  #home .generic .content p {
    font-size: 1rem;
  }
  #home .statistics,
  #home .whyus {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  #home .statistics > ul,
  #home .whyus > ul {
    width: max-content;
  }
  #home .statistics > ul > li,
  #home .whyus > ul > li {
    scroll-snap-align: start;
    width: 100vw;
  }
  #home .whyus > ul > li {
    align-items: center;
  }
  #home .customer div {
    display: grid;
    gap: 20px 50px;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 10px;
  }
  #home .speak {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  #home .speak p {
    font-size: 0.9rem;
  }
  #home .news .blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.catalog-list {
  margin-bottom: 40px;
}
.catalog-list h2 {
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0;
  padding: 10px 0;
  text-transform: uppercase;
}
.catalog-list h2 a {
  color: #0000a0;
}
.catalog-list a {
  color: #333333;
  text-decoration: none;
}
.catalog-list a:hover {
  text-decoration: underline;
}
.catalog-item {
  display: grid;
  gap: 10px;
  align-content: start;
}
.catalog-item h3 {
  letter-spacing: 1px;
  font-weight: normal;
  grid-column: span 2;
}
.catalog-item h3 a {
  color: #0000a0;
}
.catalog-item .lineup {
  line-height: 200%;
  list-style-position: inside;
  list-style-type: square;
  margin: 0;
  padding: 0;
}
.catalog-item .lineup a::after {
  content: '\f35f';
  display: inline-block;
  font-family: FabricMDL2Icons;
  margin-left: 0.5em;
}
.catalog-item .cover > img {
  object-fit: contain;
  width: 100%;
  height: auto;
}
@media (min-width: 481px) {
  .catalog-sublist {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .catalog-item {
    border: 1px solid #cccccc;
    border-width: 1px 1px 0 0;
    grid-template-columns: 1fr 200px;
    padding: 20px;
  }
  .catalog-item:nth-child(2n),
  .catalog-item:last-child {
    border-right: 0;
  }
  .catalog-item h3 {
    background-color: #f0f0f0;
    margin: 0;
  }
  .catalog-item h3 > a {
    background-color: #ffffff;
    padding-right: 10px;
  }
  .catalog-item .lineup {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .catalog-list {
    padding: 0 10px;
  }
  .catalog-sublist {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .catalog-item {
    grid-template-columns: 1fr 150px;
  }
  .catalog-item h3 {
    background-color: #f0f0f0;
    border-top: 1px solid #cccccc;
    margin: 0 -10px;
    padding: 10px;
  }
}
#category h1 {
  color: #0000a0;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}
#category h2 {
  letter-spacing: 1px;
  font-weight: normal;
  margin: 0;
}
#category h2 a {
  color: #0000a0;
}
#category h2 a:hover {
  text-decoration: underline;
}
#category a {
  color: #333333;
  text-decoration: none;
}
#category .lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
#category .lineup li {
  padding: 20px;
  position: relative;
}
#category .lineup li::before {
  background: linear-gradient(45deg, #f0f0f0 0%, #ffffff 40%);
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  left: -20px;
  right: 20px;
  top: 20px;
  bottom: -20px;
  transition: all 0.2s;
  z-index: -1;
}
#category .lineup li:hover::before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
}
#category .lineup a {
  display: flex;
  gap: 20px;
}
#category .lineup a h3 {
  font-weight: normal;
  margin: 0;
}
#category .lineup a img {
  object-fit: contain;
}
@media (min-width: 481px) {
  #category .lineup li {
    border: 1px solid #cccccc;
    border-width: 1px 1px 0 0;
  }
  #category .lineup li:nth-child(3n),
  #category .lineup li:last-child {
    border-right: 0;
  }
  #category .lineup a h3 {
    font-size: 0.9rem;
  }
  #category .lineup a img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 480px) {
  #category h1 {
    margin: 10px;
  }
  #category h2 {
    margin: 10px;
  }
  #category .lineup {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  #category .lineup li {
    border-top: 1px solid #cccccc;
  }
  #category .lineup a h3 {
    font-size: 1rem;
  }
  #category .lineup a img {
    width: 150px;
    height: 150px;
  }
}
#product .product-head {
  display: flex;
}
#product .product-head .gallery {
  padding: 5px;
  scrollbar-width: thin;
}
#product .product-head .gallery img {
  border: 2px solid transparent;
  border-radius: 5px;
  display: block;
}
#product .product-head .gallery img:hover {
  border-color: #333333;
  box-shadow: 0 0 10px -5px #333333;
}
#product .product-head .gallery img.active {
  border-color: #333333;
}
#product .product-head .cover {
  display: flex;
}
#product .product-head .cover img {
  display: block;
  object-fit: contain;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
#product .product-head .info h1 {
  color: #0000a0;
  font-weight: 800;
  text-transform: uppercase;
}
#product .product-head .info .description {
  font-size: 1.2rem;
}
#product .product-head .info .meta {
  border-left: 2px solid #c0e0ff;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 10px;
  padding: 10px 20px;
}
#product .product-head .info .catalog-link {
  border: 1px solid #c0e0ff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 10px;
  margin: 20px 0;
  padding: 10px 20px;
  width: max-content;
}
#product .product-head .info .catalog-link a {
  color: #0000a0;
  position: relative;
  text-decoration: none;
  width: max-content;
}
#product .product-head .info .catalog-link a::after {
  background-color: #c0e0ff;
  border-radius: 4px;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.1s;
  z-index: -1;
}
#product .product-head .info .catalog-link a:hover::after {
  height: 4px;
}
#product .product-head button {
  background-color: transparent;
  border-radius: 0;
  color: #0000f0;
  font-size: 1rem;
  font-weight: bold;
  margin: 20px 0;
  position: relative;
  text-transform: uppercase;
}
#product .product-head button::before {
  background-color: #c0e0ff;
  content: '';
  position: absolute;
  left: 5px;
  right: -6px;
  top: -6px;
  bottom: 5px;
  z-index: -1;
}
#product .page img {
  display: block;
  max-width: 100%;
  margin: 2em 0;
}
#product .page table th {
  background-color: #fffaf0;
}
#product .page table td:first-child {
  background-color: #f0f0f0;
}
#product .page ul {
  list-style-type: square;
}
#product .page ul > li > ul {
  list-style-type: none;
  position: relative;
}
#product .page ul > li > ul > li::before {
  content: '-';
  position: absolute;
  left: 20px;
}
#product .quotation button {
  min-width: 120px;
}
#product .quotation [role="button"] {
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  z-index: 1;
}
#product .quotation [role="button"] img {
  width: 100%;
  height: 100%;
}
#product .message h3 {
  margin: 0;
}
#product .message button {
  margin: 0 auto;
}
@media (min-width: 481px) {
  #product .product-head {
    flex-direction: row-reverse;
    gap: 50px;
    max-height: 500px;
  }
  #product .product-head .info {
    width: 50%;
  }
  #product .product-head .gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    min-width: max-content;
  }
}
@media (max-width: 480px) {
  #product .product-head {
    flex-direction: column;
    padding: 10px;
  }
  #product .product-head .info {
    order: 3;
  }
  #product .product-head .info h1 {
    text-align: center;
  }
  #product .product-head .cover {
    height: calc(100vw - 20px);
  }
  #product .product-head .gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }
  #product .product-head button {
    margin: 20px auto;
  }
}
#about main {
  display: flex;
  flex-direction: column;
  gap: 50px;
  letter-spacing: 1px;
}
#about article {
  margin: 0 auto;
  max-width: 1440px;
}
#about h1 {
  background: linear-gradient(135deg, #0000f0 0%, #333333 50%, #f00000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: normal;
  margin: 0 auto;
  padding: 10px;
  max-width: 700px;
  background-size: 200% 100%;
  animation: flash 10s ease infinite;
}
@keyframes flash {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#about h1::before {
  content: '// ';
  font-size: 70%;
}
#about h1::after {
  content: ' //';
  font-size: 70%;
}
#about h2 {
  margin: 1.5em auto 1em auto;
  text-align: center;
  text-transform: uppercase;
}
#about .intro img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  max-height: 400px;
}
#about .intro p {
  text-align: justify;
  text-indent: 1em;
}
#about .cores h3 {
  font-size: 1.5rem;
}
#about .cores img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  max-height: 400px;
}
#about .cores p {
  text-align: justify;
}
#about .cores ul {
  display: grid;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#about .cores ul li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  position: relative;
}
#about .cores ul li::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 30px;
  transform: rotate(25deg);
  background-color: #c0e0ff;
  opacity: 0.5;
  z-index: -2;
}
#about .cores ul strong {
  color: #0000a0;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
}
#about .cores ul img {
  transform: rotate(-15deg);
  position: absolute;
  z-index: -1;
}
#about .milestones ol {
  display: flex;
  flex-direction: column-reverse;
  font-size: 0.9rem;
  list-style: none;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  max-width: 1000px;
}
#about .milestones ol::after {
  border-left: 1px dashed #0000f0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
}
#about .milestones ol > li {
  position: relative;
}
#about .milestones ol > li::after {
  background-color: #0000a0;
  border-radius: 3px;
  content: '';
  display: block;
  position: absolute;
  width: 11px;
  height: 11px;
}
#about .milestones ol > li > h3 {
  color: #0000a0;
  font-size: 1rem;
  margin: 0;
}
#about .milestones ol > li > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#about .milestones ol > li > ul > li {
  margin-bottom: 1em;
  text-align: justify;
}
#about .milestones ol > li > ul > li::before {
  content: '•';
  margin-right: 0.5em;
}
#about .features {
  background-color: #e8f1fa;
  padding: 20px 0;
}
#about .features ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  max-width: 700px;
}
#about .features ul > li {
  border-left: 4px solid #0000a0;
  padding: 20px;
  text-align: justify;
}
@media (min-width: 481px) {
  #about .intro article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
  }
  #about .cores article {
    display: grid;
    font-size: 1.2rem;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
  }
  #about .cores div:nth-child(3) {
    order: 4;
  }
  #about .cores div:nth-child(4) {
    order: 3;
  }
  #about .cores div:nth-child(5) {
    order: 5;
  }
  #about .cores ul {
    grid-template-columns: repeat(4, 1fr);
  }
  #about .cores ul li::before {
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
  }
  #about .cores ul img {
    left: 10px;
    top: 10px;
    width: 100px;
    height: 100px;
  }
  #about .milestones ol {
    gap: 20px;
  }
  #about .milestones ol::after {
    left: 50%;
  }
  #about .milestones ol > li {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
  #about .milestones ol > li::after {
    left: calc(50% - 5px);
    top: 8px;
  }
  #about .milestones ol > li:nth-child(even) > h3 {
    order: 1;
    text-align: left;
  }
  #about .milestones ol > li:nth-child(even) > ul {
    text-align: right;
  }
  #about .milestones ol > li:nth-child(odd) > h3 {
    order: 0;
    text-align: right;
  }
  #about .milestones ol > li:nth-child(odd) > ul {
    text-align: left;
  }
}
@media (max-width: 480px) {
  #about section {
    padding: 10px;
  }
  #about .intro article,
  #about .cores article {
    display: flex;
    flex-direction: column;
    gap: 20px 50px;
  }
  #about .cores ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #about .cores ul li {
    padding: 20px 0;
  }
  #about .cores ul li::before {
    left: 10px;
    top: 10px;
    width: 90px;
    height: 90px;
  }
  #about .cores ul img {
    left: 20px;
    top: 20px;
    width: 70px;
    height: 70px;
  }
  #about .milestones ol {
    gap: 50px;
  }
  #about .milestones ol::after {
    left: 10px;
  }
  #about .milestones ol > li {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 30px;
  }
  #about .milestones ol > li::after {
    left: -25px;
    top: 4px;
  }
}
#blog .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
#blog .blog-item {
  border: 1px solid #cccccc;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  text-decoration: none;
}
#blog .blog-item:hover {
  box-shadow: 5px 5px 10px -5px #cccccc;
}
#blog .blog-item:hover .cover img {
  transform: scale(1.1);
}
#blog .blog-item:hover h3 {
  color: #0000a0;
}
#blog .blog-item .cover {
  aspect-ratio: 5 / 3;
  margin: -20px;
  overflow: hidden;
}
#blog .blog-item .cover img {
  object-fit: cover;
  transform: scale(1);
  transition: all 0.2s;
  width: 100%;
  height: 100%;
}
#blog .blog-item h3 {
  color: #333333;
  display: block;
  margin: 50px 0 30px 0;
}
#blog .blog-item .date {
  color: #a0a0a0;
  display: block;
  font-size: 0.8rem;
  margin-top: auto;
}
#blog .page h1 {
  text-align: center;
  text-transform: uppercase;
}
#blog .page .date {
  text-align: center;
}
#blog .page article img {
  display: block;
  max-width: 100%;
  margin: 2em auto;
}
#blog .page article img + em {
  color: #0000f0;
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  margin-top: -2em;
  text-align: center;
  text-indent: 0;
}
#blog .page article ul {
  list-style-type: square;
}
#blog .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 40px auto;
  padding: 0;
  user-select: none;
  width: max-content;
}
#blog .pagination li {
  background-color: #ffffff;
  border: 1px solid #0000f0;
  border-radius: 5px;
}
#blog .pagination li:has(span) {
  background-color: #0000f0;
  color: #ffffff;
}
#blog .pagination li > * {
  display: block;
  padding: 5px 15px;
}
#blog .pagination a {
  color: #0000f0;
  text-decoration: none;
}
@media (max-width: 480px) {
  #blog .blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
  }
  #blog .blog-item h3 {
    margin: 40px 0 20px 0;
  }
  #blog .blog-item .date {
    font-size: 1rem;
  }
  #blog .page article img + em {
    font-size: 0.9rem;
  }
}
#contact main {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 100px;
}
#contact .branch-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#contact .branch .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact .branch .info h2 {
  margin: 0;
}
#contact .branch .info div {
  display: flex;
  align-items: center;
  gap: 10px;
}
#contact .branch .info img {
  width: 24px;
  height: 24px;
}
#contact .branch .info a {
  color: #333333;
  text-decoration: none;
}
#contact .branch .info a:hover {
  text-decoration: underline;
}
#contact .branch .map {
  margin-top: 20px;
}
#contact .branch .map img {
  border-radius: 10px;
  box-shadow: 10px 10px 10px -10px #cccccc;
  max-width: 100%;
  transition: all 0.2s;
}
#contact .branch .map:hover img {
  box-shadow: 10px 10px 20px -10px #cccccc;
}
#contact .form button {
  margin-left: auto;
}
#contact .message h3 {
  margin: 0;
}
#contact .message button {
  margin: 0 auto;
}
@media (max-width: 480px) {
  #contact main {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  #contact .branch .info {
    gap: 10px;
  }
}
