* {
  margin: 0;
  padding: 0;
}

/* Reset-ish */
*, *::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, li, ol {
  list-style: none;
}

input, button,
input:focus,
button:focus,
textarea:focus,
select:focus,
details:focus,
[href]:focus,
[tabindex]:not([tabindex="-1"]):focus,
[contenteditable=true]:focus {
  outline: none;
}

.container {
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.txt-center {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .deskNone {
    display: none;
  }
}

.moNone {
  display: none;
}
@media screen and (min-width: 800px) {
  .moNone {
    display: block;
  }
}

.section-title {
  letter-spacing: -0.7px;
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 18px;
  color: #0e1224;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

body {
  font-size: 14px;
  line-height: 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #504f4f;
  margin-top: 0;
}
@media screen and (min-width: 800px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

.dropdown-menu {
  display: none;
}
.dropdown-menu.is-open {
  display: block;
  position: absolute;
  background: #fff;
  padding: 10px;
  min-width: 120px;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0509803922);
}

/* Sections */
section {
  padding: 40px 0 0;
}
@media screen and (min-width: 800px) {
  section {
    padding: 60px 0 0;
  }
}

.section-sub {
  margin: 0 0 28px;
}
@media screen and (min-width: 800px) {
  .section-sub {
    font-size: 18px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 1rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #0e1224, #0c1430);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.1s ease-in;
}
.btn:hover {
  background: #fff;
  border: 1px solid #0e1224;
  color: #0e1224;
  transition: 0.1s ease-in;
}

.divider {
  width: 300px;
  border-top: 2px solid #006EAD;
  margin: 40px auto;
  position: relative;
}
@media screen and (min-width: 800px) {
  .divider {
    margin: 60px auto;
  }
}
.divider::before, .divider::after {
  content: "";
  position: absolute;
  width: 70%;
  left: 15%;
  height: 2px;
  background: #0e1224;
}
.divider::before {
  top: -7px;
  border-radius: 2px 2px 0 0;
}
.divider::after {
  bottom: -5px;
  border-radius: 0 0 2px 2px;
}

.pencil-banner {
  background: #0e1224;
  padding: 7px 0;
}
.pencil-banner .container > .flex {
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .pencil-banner .moNone {
    display: inline-block;
  }
}
.pencil-banner .pencil-social span {
  color: #fff;
  font-weight: 600;
}
.pencil-banner a {
  color: #fff;
}
.pencil-banner a:not(:first-child) {
  padding-left: 20px;
}
.pencil-banner img {
  display: inline-block;
  vertical-align: sub;
}

/* ----- Header -----*/
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0509803922);
}
header .container > .flex {
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  header .container > .flex {
    flex-direction: row;
  }
}

.brand {
  max-width: 100%;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
}
.brand img {
  max-width: 60px;
}
@media screen and (min-width: 800px) {
  .brand {
    max-width: 150px;
  }
  .brand img {
    max-width: 150px;
  }
}
@media screen and (max-width: 799px) {
  .brand .togglemenu, .brand .togglemenu::before,
  .brand .togglemenu:after {
    background: #006EAD;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 32px;
    right: 0;
  }
  .brand .togglemenu::before {
    top: calc(50% - 8px);
  }
  .brand .togglemenu:after {
    top: calc(50% + 6px);
  }
  .brand .togglemenu.is-open {
    background: transparent;
  }
  .brand .togglemenu.is-open::before {
    transform: rotate(45deg);
  }
  .brand .togglemenu.is-open::after {
    transform: rotate(-45deg);
    top: -6px;
  }
}

@media screen and (max-width: 799px) {
  .menu {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    height: calc(100vh - 64px);
    -webkit-overflow-scrolling: touch;
    right: 0;
    top: 64px;
    z-index: 20;
    background: #f2f2f2;
  }
  .menu.is-open {
    display: block;
  }
}
.menu .menu-ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  .menu .menu-ul {
    align-items: center;
    flex-direction: row;
  }
}
.menu .menu-ul .navPages {
  display: block;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  color: #0e1224;
  transition: 0.3s ease-in-out;
}
.menu .menu-ul .navPages:hover, .menu .menu-ul .navPages.active {
  color: #006EAD;
  transition: 0.3s ease-in-out;
}
.menu .menu-ul .navPages:hover .fas, .menu .menu-ul .navPages.active .fas {
  color: #006EAD;
}
.menu .menu-ul .navPages .fas {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .menu .menu-ul .navPages {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }
  .menu .menu-ul .navPages.lang {
    padding: 0 15px;
    margin-inline: 0;
  }
}

/* Footer */
footer {
  background: #0e1224;
  padding: 40px 0;
}
@media screen and (min-width: 800px) {
  footer {
    padding: 60px 0;
  }
}

.foot {
  display: grid;
  gap: 18px;
  grid-template-columns: 185px 1fr;
}
@media screen and (min-width: 600px) {
  .foot {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media screen and (min-width: 800px) {
  .foot {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1000px) {
  .foot {
    grid-template-columns: minmax(290px, 1fr) 0.7fr 0.7fr 0.7fr minmax(175px, 1fr);
    gap: 25px;
  }
}
.foot .ftr-brand-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}
.foot .ftr-support img {
  display: inline-block;
  vertical-align: middle;
}
.foot p {
  color: #fff;
  padding: 0.25rem 0;
  font-size: clamp(14px, 2vw, 18px);
  font-style: italic;
}
.foot .ftr-tlt {
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin: 0 0 10px;
}
.foot a {
  display: block;
  color: #fff;
  padding: 1px 0;
  font-size: clamp(14px, 1vw, 18px);
}

.copyright {
  background: #fff;
  color: #0e1224;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  /*.devlop {
    margin-top: 10px;
    @include media(450px){
      float: right;
      margin-top: 0;
    }
    a{
      color: $main-color;
      font-weight: 600;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }
  }*/
}

nav[aria-label=Breadcrumb] {
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
nav[aria-label=Breadcrumb] a {
  text-decoration: none;
  transition: color 0.2s ease;
  margin-right: 10px;
}
nav[aria-label=Breadcrumb] a:not(:first-child) {
  margin-left: 10px;
}
nav[aria-label=Breadcrumb] a:hover {
  color: #006EAD;
  text-decoration: underline;
}
nav[aria-label=Breadcrumb] span {
  color: #006EAD;
  margin-left: 10px;
}

section.product {
  padding: 30px 0 40px;
}
@media screen and (min-width: 800px) {
  section.product {
    padding: 30px 0 60px;
  }
}

.product-view {
  justify-content: space-between;
  padding-top: 30px;
}

.product-image {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .product-image {
    width: calc(50% - 25px);
  }
}

.img-container {
  border-radius: 4px;
  padding: 8px;
  border: 1px solid #f2f2f2;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  .img-container {
    min-height: 400px;
  }
}
.img-container img {
  border-radius: 4px;
}

.prd-slider {
  margin-top: 10px;
  position: relative;
}
.prd-slider .slick-list {
  margin: 0 25px;
}
.prd-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0e1224;
  color: #fff;
  font-size: 0;
  border: none;
  border-radius: 3px;
  padding: 7px 5px 5px 5px;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 900px) {
  .prd-slider .slick-arrow {
    padding: 7px 10px 5px 10px;
  }
}
.prd-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.prd-slider .slick-arrow.slick-next {
  right: 0;
}
.prd-slider .slick-arrow.slick-next::before {
  content: ">";
  font-size: 16px;
  font-weight: 600;
}
.prd-slider .slick-arrow.slick-prev {
  left: 0;
}
.prd-slider .slick-arrow.slick-prev::before {
  content: "<";
  font-size: 16px;
  font-weight: 600;
}
.prd-slider .thumbnail {
  border-radius: 3px;
  padding: 5px;
  border: 1px solid #f2f2f2;
  margin: 0 5px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.prd-slider .thumbnail:hover, .prd-slider .thumbnail.active {
  border: 2px solid #006EAD;
  transition: 0.3s ease-in;
}
.prd-slider .thumbnail img {
  border-radius: 3px;
  max-height: 100%;
}

.product-detail {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 800px) {
  .product-detail {
    width: calc(50% - 25px);
    margin-top: 0;
  }
}

.productView-info {
  margin-top: 20px;
  display: none;
  grid-template-columns: 1fr 2fr;
}
.productView-info .productView-info-name {
  font-weight: 500;
  font-size: 14px;
  color: #0e1224;
}
.productView-info .productView-info-value {
  font-size: 14px;
}

.product-detail-sction {
  margin-top: 20px;
  display: none;
}
.product-detail-sction .inner-title {
  font-size: 18px;
  color: #0e1224;
  font-weight: 500;
}
.product-detail-sction ul {
  margin: 10px 0 10px 18px;
}
.product-detail-sction ul li {
  list-style: square;
}
.product-detail-sction ul li::marker {
  color: #006EAD;
}/*# sourceMappingURL=product.css.map */