@charset "UTF-8";
@import url("../js/libs/aos/aos.css");
@import url("../js/libs/fontawesome/css/all.css");
@import url("../js/libs/select2/select2.css");
@import url("../js/libs/swiper/swiper-bundle.min.css");
@import url("../js/libs/boxicons-2.1.2/css/boxicons.css");
@import url("../assets/font/Roboto/OTF/stylesheet.css");
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateinv {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes opa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes ring {
  0% {
    transform: rotate(15deg);
    box-shadow: 0px 0px 10px rgba(243, 23, 23, 0.5);
  }
  25% {
    transform: rotate(-15deg);
    box-shadow: 0px 0px 0px rgba(243, 23, 23, 0.5);
  }
  50% {
    transform: rotate(15deg);
    box-shadow: 0px 0px 10px rgba(243, 23, 23, 0.5);
  }
  75% {
    transform: rotate(-15deg);
    box-shadow: 0px 0px 0px rgba(243, 23, 23, 0.5);
  }
  100% {
    transform: rotate(15deg);
    box-shadow: 0px 0px 10px rgba(243, 23, 23, 0.5);
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "SVN-Biennale", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #000000;
}

a {
  text-decoration: none;
}

button,
select {
  border: none;
  outline: none;
}

.main {
  min-height: 68vh;
}
.main.pd {
  padding-top: 112px;
  padding-bottom: 80px;
}

.container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

label {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  cursor: pointer;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none !important;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.btn {
  padding: 12px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.btn img {
  margin-right: 10px;
  z-index: 1;
}
.btn span {
  white-space: nowrap;
  font-weight: bold;
  z-index: 1;
}
.btn p {
  z-index: 1;
}
.btn h3 {
  z-index: 1;
}
.btn-close {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: transparent;
  transition: 0.3s;
  cursor: pointer;
  color: #383838;
}
.btn-close i {
  font-size: 30px;
}
.btn-close:hover {
  color: #383838;
  animation: rotate 1s linear;
}
.btn-close:hover i {
  color: #C83538;
}
.btn-red {
  background-color: #C83538;
  color: #FFFFFF;
  padding: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.btn-red::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #383838;
  z-index: 0;
  transition: 0.3s;
  clip-path: circle(0.5% at 0 100%);
}
.btn-red:hover::after {
  clip-path: circle(111.5% at 24% 71%);
}
.btn-gray {
  background-color: #383838;
  color: #FFFFFF;
  padding: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.btn-gray p {
  z-index: 1;
}
.btn-gray::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #C83538;
  z-index: 0;
  transition: 0.3s;
  clip-path: circle(0.5% at 0 100%);
}
.btn-gray:hover::after {
  clip-path: circle(111.5% at 24% 71%);
}
.btn-wh-bdr {
  background-color: #FFFFFF;
  border: 1px solid #C83538;
  overflow: hidden;
  position: relative;
  max-width: 282px;
}
.btn-wh-bdr span {
  color: #000000;
  z-index: 1;
  margin-right: 5px;
}
.btn-wh-bdr h3 {
  color: #C83538;
  z-index: 1;
}
.btn-wh-bdr:hover span {
  color: #FFFFFF;
}
.btn-wh-bdr:hover h3 {
  color: #FFFFFF;
}
.btn-wh-bdr::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #383838;
  z-index: 0;
  transition: 0.3s;
  clip-path: circle(0.5% at 0 100%);
}
.btn-wh-bdr:hover::after {
  clip-path: circle(111.5% at 24% 71%);
}
.btn-newprice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #C83538;
  color: #FFFFFF;
  box-shadow: 5px 12px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.btn-newprice::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #383838;
  z-index: 0;
  transition: 0.3s;
  clip-path: circle(0.5% at 0 100%);
}
.btn-newprice:hover::after {
  clip-path: circle(111.5% at 24% 71%);
}
.btn-noback {
  background-color: transparent;
}
.btn-noback:hover {
  background-color: #383838;
  color: #FFFFFF;
}
.btn-dkdl {
  background-color: transparent;
  padding: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.btn-dkdl img {
  width: 24px;
}
.btn-dkdl:hover span {
  color: #C83538;
}
.btn-dkdl span {
  color: #C83538;
}
.btn-dkdl::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #f9f5f0;
  z-index: 0;
  transition: 0.3s;
  clip-path: circle(0.5% at 0 100%);
}
.btn-dkdl:hover::after {
  clip-path: circle(111.5% at 24% 71%);
}
.btn-wh {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
}
.btn-wh:hover {
  background-color: #383838;
  color: #FFFFFF;
}

.h36 {
  height: 36px;
}

.footer {
  font-family: "Roboto", sans-serif;
  background-color: #383838;
  padding: 56px 0;
  z-index: 2;
}
.footer-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-logo {
  max-height: 48px;
  max-width: 174px;
  overflow: hidden;
}
.footer-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.footer-ins {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .footer-ins {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-ins ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .footer-ins ul {
    width: calc(50% - 10px);
  }
  .footer-ins ul:nth-child(1) {
    width: 100%;
  }
}
.footer-ins ul h3 {
  color: #FFFFFF;
  text-transform: uppercase;
}
@media screen and (max-width: 390px) {
  .footer-ins ul li {
    flex-wrap: wrap;
    gap: 5px;
  }
  .footer-ins ul li span {
    width: 100%;
  }
}
.footer-ins ul li span {
  color: #a9a9a9;
}
.footer-ins ul li a {
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 350;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-ins ul li a span {
  margin-right: 5px;
}
.footer-line {
  height: 1px;
  width: 70px;
  background-color: #C83538;
  margin: 16px 0;
}
.footer-imgs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .footer-imgs {
    margin-right: auto;
  }
}
.footer-imgs span {
  color: #FFFFFF;
  border-bottom: 1px solid #C83538;
  padding-bottom: 10px;
  margin: 15px 0;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-socials a {
  margin-right: 10px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-socials a:nth-child(1) {
  background-color: white;
  width: 20px;
  height: 20px;
}
.footer-socials a:nth-child(2) {
  background-color: rgb(22, 186, 241);
  width: 20px;
  height: 20px;
}
.footer-socials a:nth-child(3) {
  background-color: white;
  width: 20px;
  height: 20px;
}
.footer-socials a:nth-child(4) {
  background-color: white;
  width: 20px;
  height: 20px;
}
.footer-socials a:nth-child(5) {
  background-color: rgb(250, 100, 227);
  width: 20px;
  height: 20px;
}
.footer-socials a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer-socials a:nth-child(1) i {
  color: #271cc9;
  font-size: 30px;
}
.footer-socials a:nth-child(2) i {
  color: white;
  font-size: 16px;
}
.footer-socials a:nth-child(4) i {
  color: #295df7;
  font-size: 28px;
}
.footer-socials a:nth-child(5) i {
  color: #ffffff;
  font-size: 16px;
}
.footer-img {
  width: 227px !important;
  height: 208px !important;
  overflow: hidden;
}
@media screen and (max-width: 426px) {
  .footer-img {
    height: auto;
  }
  .footer-img iframe {
    width: 100% !important;
    height: auto;
  }
}
.footer-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.footer-cre {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-cre h3 {
  color: #FFFFFF;
  font-weight: 300;
  padding-bottom: 20px;
}
.footer-cre .header-top-social {
  margin-left: auto;
  position: fixed;
  left: 25px;
  bottom: 20px;
  z-index: 99;
}
@media screen and (max-width: 700px) {
  .footer-cre .header-top-social {
    margin: auto;
  }
}
@media screen and (max-width: 400px) {
  .footer-cre .header-top-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}
.footer-cre .header-top-social span {
  color: #FFFFFF;
  display: none;
}
.footer-cre .header-top-social .btn-phone {
  padding: 0;
  border-radius: 50%;
  padding: 2px;
  transition: 0.3s;
  animation: ring 1s linear infinite;
}
.footer-cre .header-top-social .btn-phone img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 0;
}
.footer-cre .header-top-social a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
@media screen and (max-width: 700px) {
  .footer-cre {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.header {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 99;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding: 16px 0;
  transition: 0.3s;
  transform: translateY(0);
}
@media screen and (max-width: 1200px) {
  .header-top {
    transform: translateY(-100%);
    height: 0px;
    overflow: hidden;
    padding: 0;
  }
}
.header-top-logo {
  position: relative;
  height: 48px;
  width: auto;
}
.header-top-logo img {
  height: 100%;
  width: auto;
  object-fit: cover;
}
.header-top-mail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header-top-mail-ins {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-top-mail-ins img {
  margin-right: 5px;
}
.header-top-mail-ins-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.header-top-mail-ins-txt p {
  color: rgba(0, 0, 0, 0.5);
  line-height: 18px;
}
.header-top-mail-ins-txt h3 a {
  color: #000000;
}
.header-top-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.header-top-social-fb {
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: 0.3s;
}
.header-top-social-fb:hover {
  transform: translateY(-3px);
  color: #C83538;
}
.header-top-social-fb img {
  margin-right: 5px;
  width: 24px;
  height: 24px;
}
.header-bottom {
  height: 48px;
  width: 100%;
  background-color: #383838;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 500px) {
  .header-bottom {
    background-color: rgb(220, 220, 220);
  }
}
.header-bottom-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-width: 234px;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgba(220, 220, 220, 0.1);
}
@media screen and (max-width: 510px) {
  .header-bottom-menu {
    min-width: 48px;
  }
  .header-bottom-menu .header-bottom-menu-icon {
    margin: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .header-bottom-menu {
    background-color: rgba(220, 220, 220, 0.1);
  }
}
@media screen and (max-width: 500px) {
  .header-bottom-menu {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.header-bottom-menu:hover {
  background-color: #C83538;
}
.header-bottom-menu:hover .line:nth-child(3) {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .header-bottom-menu:hover {
    background-color: transparent;
  }
  .header-bottom-menu:hover .line:nth-child(3) {
    width: 60%;
  }
}
.header-bottom-menu.active {
  background-color: #C83538;
}
.header-bottom-menu.active .line:nth-child(3) {
  width: 100%;
}
.header-bottom-menu span .css-category {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 510px) {
  .header-bottom-menu span .css-category {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .header-bottom-menu span .css-category {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 360px) {
  .header-bottom-menu .menu-md {
    font-size: 12px !important;
  }
}
.header-bottom-menu-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 12px;
  flex-shrink: 0;
}
.header-bottom-menu-icon .line {
  height: 3px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 100px;
  transition: 0.3s;
}
@media screen and (max-width: 500px) {
  .header-bottom-menu-icon .line {
    background-color: #383838;
  }
}
.header-bottom-menu-icon .line:nth-child(1) {
  margin-bottom: 5px;
}
.header-bottom-menu-icon .line:nth-child(2) {
  margin-bottom: 5px;
}
.header-bottom-menu-icon .line:nth-child(3) {
  width: 60%;
}
.header-bottom-menu span {
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 2px;
}
.header-bottom-logo {
  height: 30px;
  width: auto;
  display: none;
  overflow: hidden;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.header-bottom-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 550px) {
  .header-bottom-logo {
    display: block;
  }
}
.header-bottom-nav {
  width: 100%;
  height: 48px;
  padding: 0;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header-bottom-nav {
    display: none;
  }
}
.header-bottom-nav ul li {
  transition: 0.3s;
}
.header-bottom-nav #menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: stretch;
}
.header-bottom-nav .parent {
  position: relative;
  height: 100%;
  background-color: transparent;
}
.header-bottom-nav .parent a {
  display: flex;
  align-items: center;
  justify-content: stretch;
  text-transform: uppercase;
  padding: 10px 10px !important;
  height: 100%;
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
}
.header-bottom-nav .parent:hover > ul {
  display: block;
  visibility: visible;
  opacity: 1;
  position: absolute;
  transform: translateY(0px);
}
.header-bottom-nav .dropdown {
  position: relative;
  height: 100%;
  background-color: transparent;
}
.header-bottom-nav .dropdown a {
  display: flex;
  align-items: center;
  justify-content: stretch;
  text-transform: uppercase;
  padding: 10px 10px;
  height: 100%;
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
}
.header-bottom-nav .dropdown:hover > ul {
  display: block;
  visibility: visible;
  opacity: 1;
  position: absolute;
  transform: translateY(0px);
}
.header-bottom-nav .dropdown li:hover {
  background-color: #C83538;
  color: #FFFFFF;
}
.header-bottom-nav .dropdown {
  min-width: 92px;
}
.header-bottom-nav .child {
  visibility: hidden;
  box-shadow: 5px 12px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  position: absolute;
  transform: translateY(10px);
  opacity: 0;
}
.header-bottom-nav .child li {
  background-color: #383838;
  width: 100%;
  height: 100%;
}
.header-bottom-nav .child li a {
  color: #FFFFFF;
}
.header-bottom-nav .child li a:hover {
  color: #FFFFFF;
}
.header-bottom-nav ul {
  list-style: none;
  margin: 0;
  padding: 0px;
  min-width: 10em;
}
.header-bottom-nav ul ul ul {
  left: 100%;
  top: 0;
  margin-left: 1px;
}
.header-bottom-nav li:hover {
  background-color: #C83538;
  color: #FFFFFF;
}
.header-bottom-nav .parent li:hover {
  background-color: #C83538;
  color: #FFFFFF;
}
.header-bottom-nav .expand {
  float: right;
  margin-right: 5px;
  margin-left: auto;
}
.header-bottom .menu-icon {
  display: none;
  z-index: 1000;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .header-bottom .menu-icon {
    display: flex;
  }
}
.header-bottom-search {
  min-width: 180px;
  height: 32px;
  transition: 0.3s;
  position: relative;
  margin-left: 10px;
  z-index: 2;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  .header-bottom-search {
    min-width: 100px;
    margin-left: auto;
    margin-right: 10px;
  }
}
@media screen and (max-width: 550px) {
  .header-bottom-search {
    min-width: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header-bottom-search img {
  cursor: pointer;
}
.header-bottom-search form {
  align-items: center;
}
.header-bottom-search form .btnsearchjs img {
  margin-top: 3px;
  margin-left: 1px;
}
.header-bottom-search .ip {
  border: none;
  outline: none;
  width: 100%;
  height: 100% !important;
  transition: 0.3s;
}
.header-bottom-search .ip:focus {
  font-size: 16px;
}
@media screen and (max-width: 550px) {
  .header-bottom-search .ip {
    display: none;
  }
}
.header-bottom-search .search-box-500 {
  position: fixed;
  width: 100%;
  height: 40px;
  background-color: white;
  top: 48px;
  right: 0;
  border-radius: 4px;
  box-shadow: 5px 12px 15px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  transform: translateY(-100%);
}
@media screen and (max-width: 550px) {
  .header-bottom-search .search-box-500.active {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
    transform: translateY(0%);
  }
}
.header-bottom-search .search-box-500 .search-wrap {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.header-bottom-search .search-box-500 .search-wrap form {
  width: 100%;
}
.header-bottom-search .search-box-500 .search-wrap input {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  outline: none;
  border: 1px solid transparent;
  transition: 0.3s;
}
.header-bottom-search .search-box-500 .search-wrap input:focus {
  font-size: 20px;
}
.header-bottom-search .search-box-500 .search-wrap i {
  color: #C83538;
}
.header .menu-choose-cover {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  top: 80px;
  z-index: 0;
  right: 0;
  padding-top: 50px;
  visibility: hidden;
  transition: 0.3s;
  transform: translateY(0px);
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .header .menu-choose-cover {
    top: 0px;
  }
}
.header .menu-choose-cover.active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.header .menu-choose {
  position: relative;
}
.header .menu-choose .meunu-arrow {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background-color: #FFFFFF;
  margin-left: 100px;
  top: 8px;
  position: relative;
}
@media screen and (max-width: 510px) {
  .header .menu-choose .meunu-arrow {
    margin-left: 15px;
  }
}
.header .menu-choose .menu-wrap {
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 5px 12px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.header .menu-choose-link {
  padding: 10px 20px;
  width: 100%;
  display: none;
}
@media screen and (max-width: 500px) {
  .header .menu-choose-link {
    display: block;
    color: #C83538;
  }
}
.header .menu-choose-link span {
  color: #C83538;
}
.header .menu-choose-items {
  padding: 12px;
  width: 25%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  border-left: none;
  position: relative;
}
@media screen and (max-width: 800px) {
  .header .menu-choose-items {
    width: 50%;
  }
}
@media screen and (max-width: 380px) {
  .header .menu-choose-items {
    width: 100%;
  }
}
.header .menu-choose-items::after {
  content: "";
  width: 0%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  background-color: #C83538;
}
.header .menu-choose-items:hover::after {
  width: 100%;
}
.header .menu-choose-items:hover .menu-choose-item-info h3 {
  font-weight: 600;
}
.header .menu-choose-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-decoration: none;
}
.header .menu-choose-item-img {
  overflow: hidden;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  min-width: 56px;
  min-height: 56px;
}
.header .menu-choose-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.header .menu-choose-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.header .menu-choose-item-info h3 {
  color: #000000;
  text-transform: none;
}
.header .menu-choose-item-info p {
  color: #5A5A5A;
}

.mona-wrapper-404 {
  margin-top: 110px !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.mona-wrapper-404 .btn {
  width: 30%;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .mona-wrapper-404 {
    width: 90% !important;
  }
}
@media screen and (max-width: 650px) {
  .mona-wrapper-404 .btn {
    width: 90% !important;
  }
}

.fz12 {
  font-size: 12px;
  line-height: 18px;
}

.fz14 {
  font-size: 14px;
  line-height: 22px;
}

.fz16 {
  font-size: 16px;
  line-height: 22px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz32 {
  font-size: 32px;
}

.fw6 {
  font-weight: 600;
}

.fw5 {
  font-weight: 500;
}

.fw4 {
  font-weight: 400;
}

.itlic {
  font-style: italic;
}

.mona-content {
  line-height: 25px;
}
.mona-content p {
  line-height: 25px;
}

.about-contents-title {
  line-height: 25px;
}
.about-contents-para {
  line-height: 25px;
}
.about-contents-para h3 {
  line-height: 25px;
}

.link {
  font-family: "Roboto", sans-serif;
  width: 100%;
  background-color: #f9f5f0;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .link {
    overflow: auto;
  }
}
.link-wrap {
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.link-wrap a {
  color: #C83538;
}
.link-wrap a:last-child {
  color: #000000;
}
.link-wrap span {
  color: #C83538;
  margin: 0px 5px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.social a {
  color: #FFFFFF;
  text-decoration: none;
}
.social-fb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-fb img {
  margin-right: 5px;
  width: 24px;
  height: 24px;
}
.social-fb span {
  text-transform: uppercase;
  color: #FFFFFF;
}

.comment .comment-author {
  width: 100%;
  padding: 60px 70px;
  background-color: #9A1013;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .comment .comment-author {
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  .comment .comment-author {
    flex-direction: column;
  }
}
.comment .comment-author-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .comment .comment-author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
  }
}
.comment .comment-author-avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.comment .comment-author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 500px) {
  .comment .comment-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.comment .comment-author-info p {
  color: #FFFFFF;
}
.comment .comment-author-info p:nth-child(2) {
  font-weight: 300;
}
.comment .comment-box {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

::-webkit-scrollbar-thumb {
  background-color: #383838;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 100%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  cursor: pointer;
}

.mySwiper .swiper-slide-thumb-active {
  border: 3px solid #C83538;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#swiper {
  max-width: 272px;
  bottom: 0;
  position: absolute;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1140px) {
  #swiper {
    margin: 20px;
    width: 100%;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #swiper {
    height: 120px;
  }
}
@media screen and (max-width: 500px) {
  #swiper {
    height: 50px;
    width: 140px;
    position: absolute;
    padding-left: 5px;
  }
}

.circleSlide {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  max-width: 48px;
  max-height: 48px;
  min-width: 48px;
  min-height: 48px;
  overflow: hidden;
  border: 3px solid white;
}
@media screen and (max-width: 500px) {
  .circleSlide {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    max-width: 20px;
    max-height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid white;
  }
}

.menu-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}
.menu-icon:hover .line:nth-child(3) {
  width: 100%;
}
.menu-icon .line {
  height: 3px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 100px;
  transition: 0.3s;
}
@media screen and (max-width: 500px) {
  .menu-icon .line {
    background-color: #383838;
  }
}
.menu-icon .line:nth-child(1) {
  margin-bottom: 5px;
}
.menu-icon .line:nth-child(2) {
  margin-bottom: 5px;
}
.menu-icon .line:nth-child(3) {
  width: 60%;
}

.woocommerce img, .woocommerce-page img {
  height: 100% !important;
  max-width: 100%;
}

.bgs {
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 999;
  backdrop-filter: blur(5px);
  display: none;
}
@media screen and (max-width: 1200px) {
  .bgs.active {
    display: block;
  }
}

.mobiles-nav {
  font-family: "Roboto", sans-serif;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 20px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(100%);
  display: none;
}
@media screen and (max-width: 1200px) {
  .mobiles-nav {
    display: flex;
    width: 50%;
    left: 50%;
  }
}
@media screen and (max-width: 720px) {
  .mobiles-nav {
    display: flex;
    width: 70%;
    left: 30%;
  }
}
@media screen and (max-width: 500px) {
  .mobiles-nav {
    display: flex;
    width: 100%;
    left: 0%;
  }
}
.mobiles-nav i {
  cursor: pointer;
}
.mobiles-nav.active {
  transform: translateX(0%);
}
.mobiles-nav-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.mobiles-nav-wrap .btn-close {
  position: absolute;
  right: 0px;
  top: 0px;
}
.mobiles-nav-logo {
  max-height: 50px !important;
  margin-right: auto;
}
.mobiles-nav-logo a {
  display: block;
  max-height: 50px;
}
.mobiles-nav-logo img {
  max-height: 50px !important;
  width: auto !important;
}
.mobiles-nav-menu {
  margin: 10px 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  position: relative;
}
.mobiles-nav-menu::-webkit-scrollbar {
  width: 5px !important;
}
.mobiles-nav-menu::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.1);
}
.mobiles-nav-menu .top-opa {
  position: sticky;
  top: 0;
  width: 100%;
  height: 30px;
  z-index: 999;
  background: linear-gradient(to bottom, #FFFFFF, rgba(255, 255, 255, 0.5));
}
.mobiles-nav .sidebar {
  border-bottom: none;
  padding: 0;
}
.mobiles-nav .sidebar .dropdown-menu {
  padding-left: 10px;
  border-left: 1px solid #C83538;
}
.mobiles-nav .sidebar .headside {
  border-bottom: none !important;
}
.mobiles-nav .sidebar .headside:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.mobiles-nav .sidebar .headside:hover .headside .bx-chevron-down {
  color: #C83538;
}
.mobiles-nav .sidebar .headside .sub-menu {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.mobiles-nav .sidebar .headside .sub-menu li {
  border-bottom: none !important;
}
.mobiles-nav .sidebar .headside a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px;
  margin-left: -10px !important;
  border-bottom: none !important;
}
.mobiles-nav .sidebar .headside i {
  margin-left: auto;
  font-size: 20px;
}
.mobiles-nav .line {
  background-color: rgba(0, 0, 0, 0.1);
  width: 90%;
  height: 1px;
  margin: 30px auto;
}
.mobiles-nav-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: auto;
}
.mobiles-nav-info-title {
  color: #383838;
}
.mobiles-nav-info a {
  font-size: 20px;
  color: #383838;
}
.mobiles-nav-info a h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 360px) {
  .mobiles-nav-info a h3 {
    font-size: 14px;
  }
}
.mobiles-nav-info a i {
  font-size: 30px;
  margin-right: 10px;
}
.mobiles-nav-social {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 20px;
  width: 100%;
  gap: 10px;
}
.mobiles-nav-social-item {
  transition: 0.3s;
}
.mobiles-nav-social-item:hover {
  transform: translateY(-5px);
}

.btn-top {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #383838;
  position: fixed;
  right: 25px;
  bottom: 20px;
  box-shadow: 5px 12px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  z-index: 10;
  transform: rotate(45deg);
  transform: translateX(0) rotate(45deg);
  cursor: pointer;
}
.btn-top.disable {
  transform: translateX(65px);
}
.btn-top-arrow {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}
.btn-top-arrow i {
  color: #FFFFFF;
  font-size: 40px;
  padding: 0;
  margin: -15px;
}
.btn-top-arrow i:nth-child(1) {
  animation: opa 2s ease-in-out alternate infinite;
}
.btn-top-arrow i:nth-child(2) {
  animation: opa 2s ease-in-out alternate infinite;
  animation-delay: 1s;
}
.btn-top-arrow i:nth-child(3) {
  animation: opa 2s ease-in-out alternate infinite;
  animation-delay: 2s;
}
.btn-top:hover {
  background-color: #C83538;
}

#ftwp-postcontent p,
#ftwp-postcontent .wp-block-button__link,
#ftwp-postcontent .blocks-gallery-grid {
  margin: 10px 0;
}
#ftwp-postcontent .wp-block-button__link {
  text-transform: uppercase !important;
}

#ftwp-container-outer {
  margin-left: 0 !important;
}

#ftwp-container.ftwp-wrap #ftwp-header {
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  background: #C83538 !important;
}

#ftwp-container.ftwp-wrap #ftwp-contents {
  border-color: rgba(0, 0, 0, 0) !important;
  border-radius: 6px;
  background: #C83538 !important;
}
#ftwp-container.ftwp-wrap #ftwp-contents ::-webkit-scrollbar {
  width: 0px !important;
}

#ftwp-container.ftwp-wrap #ftwp-list {
  color: #C83538 !important;
  background: #FFFFFF !important;
}
#ftwp-container.ftwp-wrap #ftwp-list:hover {
  color: #C83538 !important;
}

#toc_container {
  background: transparent !important;
  border-radius: 4px !important;
  padding: 0px !important;
  width: auto !important;
  display: table !important;
  font-size: 95% !important;
  position: relative !important;
  border: none !important;
  top: 0 !important;
  cursor: pointer !important;
  transition: 0.3s !important;
  min-width: 100% !important;
}
#toc_container .toc_toggle {
  display: none;
}
#toc_container a {
  color: #FFFFFF !important;
}
#toc_container p.toc_title {
  font-size: 16px !important;
  font-weight: 500 !important;
  position: relative !important;
  text-transform: uppercase !important;
  font-family: "Roboto", sans-serif !important;
  padding-left: 45px !important;
  text-align: left !important;
  border-radius: 4px;
  background: #C83538;
  height: 44px !important;
  min-width: 141px !important;
  max-width: 141px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  transition: 0.3s !important;
}
#toc_container p.toc_title:hover {
  background-color: #383838 !important;
}
#toc_container p.toc_title::before {
  content: "";
  background-image: url("../assets/image/svg/list.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 10px;
}
#toc_container p.toc_title + ul.toc_list {
  padding: 16px !important;
  background: #F8F8F8 !important;
  border-radius: 4px;
  margin-top: 8px !important;
  width: 100% !important;
}
#toc_container p.toc_title + ul.toc_list li a {
  color: #383838 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

@media screen and (max-width: 500px) {
  .footer-img {
    width: 100% !important;
  }
  .footer-img .fb_iframe_widget {
    width: 100% !important;
  }
  .footer-img .fb_iframe_widget span {
    width: calc(100vw - 30px) !important;
  }
  .footer-img .fb_iframe_widget span iframe {
    width: 100% !important;
  }
  .footer-img .fb_iframe_widget span iframe ._2p3a {
    width: 100% !important;
  }
  .footer-img .fb_iframe_widget span iframe ._2p3a ._2zfr {
    width: 100% !important;
  }
  .footer-img .fb_iframe_widget span iframe ._2p3a ._2zfr .scaledImageFitHeight {
    width: 100% !important;
    left: 0;
  }
}

.project {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.project-item {
  width: calc(33.33% - 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.project-item-img {
  min-height: 40%;
  width: 100%;
  max-height: 236px;
  overflow: hidden;
}
.project-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.project-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.project-item-info h3 {
  color: #000000;
}
.project-item-info p {
  color: rgba(0, 0, 0, 0.5);
}
.project-item-info a {
  color: #C83538;
}
.project-item:hover .project-item-img img {
  transform: scale(1.1);
}

.product {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.product-item {
  width: 20%;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.product-item-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
.product-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.product-item-info h4 {
  text-align: center;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-item-info p {
  line-height: 25px;
}
.product-item-info p:nth-child(2) {
  color: #C83538;
}
.product-item-info p:nth-child(3) {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
}
@media screen and (min-width: 1200px) {
  .product-item:hover .product-item-img img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.prodctsqr {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.prodctsqr-item {
  position: relative;
  overflow: hidden;
  width: 25%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.1);
  gap: 12px;
}
@media screen and (max-width: 887px) {
  .prodctsqr-item {
    width: 25%;
    padding: 10px;
  }
}
@media screen and (max-width: 670px) {
  .prodctsqr-item {
    width: 33.3%;
  }
}
@media screen and (max-width: 550px) {
  .prodctsqr-item {
    width: 50%;
    padding: 5px;
  }
}
@media screen and (max-width: 320px) {
  .prodctsqr-item {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .prodctsqr-item:hover .prodctsqr-item-img img {
    transform: scale(1.1);
  }
}
.prodctsqr-item:hover .prodctsqr-item-info .fz12 {
  opacity: 0.2;
}
.prodctsqr-item:hover .prodctsqr-item-info .fw6 {
  color: #C83538;
}
.prodctsqr-item:hover .prodctsqr-item-info-btn {
  transform: translateY(0);
}
.prodctsqr-item-img {
  height: 40%;
  width: 100%;
  overflow: hidden;
}
.prodctsqr-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.prodctsqr-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  height: 60%;
}
.prodctsqr-item-info h3 {
  color: #000000;
  transition: 0.3s;
}
.prodctsqr-item-info p {
  transition: 0.3s;
  color: #5A5A5A;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prodctsqr-item-info-btn {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  gap: 12px;
  position: absolute;
  bottom: 20px;
  transform: translateY(200%);
}
.prodctsqr-item-info-btn .btn {
  width: 100%;
}
.prodctsqr-item-info-btn p {
  color: #FFFFFF;
}

.pagination {
  margin: auto;
}
.pagination-wrap {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pagination .btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.sidebar {
  font-family: "Roboto", sans-serif;
  padding: 24px 24px 4px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.sidebar .dropdown .menu img {
  position: absolute;
  width: 30px !important;
  height: 30px !important;
  padding: 9px;
  transition: 0.3s;
  height: 100%;
  cursor: pointer;
  transform-origin: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px !important;
}
.sidebar p {
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
}
.sidebar-wrap {
  width: 100%;
}
.sidebar-item {
  font-weight: 500;
  width: 100%;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sidebar-item:last-child {
  border-bottom: none;
}
.sidebar-item .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}
.sidebar-item .item img {
  margin-right: 16px;
}
.sidebar-item .item:hover {
  color: #C83538;
}
.sidebar-item .item.active {
  color: #C83538;
}
.sidebar-item .sub-wrap {
  width: 100%;
  background: #FFFFFF;
  height: auto;
  transition: 0.3s;
}
.sidebar-item .sub-wrap .sidebar-sub {
  height: 0px;
  overflow: hidden;
}

/* Micro Clearfix */
.cf:before,
.cf:after {
  content: "";
  display: table;
  visibility: hidden;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.wrap {
  text-align: center;
}

.row {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  width: 96%;
}

#header {
  overflow: visible;
  position: relative;
}

#header h1 {
  margin: 5px 0;
}

#primary-nav-button {
  background: transparent;
  display: none;
  border: 1px solid #aaa;
  position: absolute;
  bottom: 5px;
  right: 0;
  padding: 0;
  text-decoration: none;
  color: #333;
  text-align: center;
  font-weight: bold;
  font-size: 0;
}

#primary-nav-button:hover {
  background: rgba(0, 0, 0, 0.05);
}

#primary-nav-button.selected {
  background: rgba(0, 0, 0, 0.1);
}

#primary-nav-button:before {
  content: "≡";
  display: block;
  font-size: 36px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.05;
  height: 1em;
  width: 1em;
  color: inherit;
}

.dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

li.headside.selected img {
  transform: rotate(90deg) !important;
  transition: 0.3s ease-in-out;
  height: 30px !important;
  width: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px !important;
}

.headside {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.headside:last-child {
  border-bottom: none;
}
.headside .downarrow {
  display: none;
}

.sub-menu i {
  font-size: 10px;
  color: inherit;
  margin-left: auto;
}

.menu li {
  float: left;
  margin-right: 10px;
  position: relative;
}

.menu li:last-child {
  margin-right: 0;
}

.menu .sub-menu li {
  width: 100%;
}

.menu li a {
  display: flex;
  text-decoration: none;
}

#primary-nav li a {
  color: #000000;
  font-weight: 500;
  padding: 10px 0;
  font-size: 14px;
}

.sub-menu li a {
  padding: 10px !important;
}

#primary-nav li.active > a,
#primary-nav li > a:hover,
#primary-nav li.selected > a {
  background: #FFFFFF;
  color: #C83538;
}

.downarrow {
  background: none;
  display: inline-block;
  padding: 0;
  text-align: center;
  min-width: 3px;
}

.sub-menu .downarrow {
  position: absolute;
  right: 0;
  padding-right: 10px;
}

.downarrow:before {
  content: "▾";
  color: inherit;
  display: block;
  font-family: sans-serif;
  font-size: 1em;
  line-height: 1.1;
  width: 1em;
  height: 1em;
}

.menu .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  max-height: 1000px;
  width: 100%;
  padding-left: 10px;
}

.menu .sub-menu.hide {
  display: none;
}

#primary-nav .sub-menu {
  background: #FFFFFF;
  min-width: 150px;
}

#primary-nav .sub-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#primary-nav .sub-menu li:last-child {
  border-bottom: 0;
}

#primary-nav .sub-menu .downarrow:before {
  content: "▸";
}

#primary-nav.mobile {
  top: 100%;
  background: #FFFFFF;
  width: 100%;
}

#primary-nav.mobile li {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#primary-nav.mobile li.selected > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#primary-nav.mobile li:last-child {
  border: none;
}

#primary-nav.mobile li a {
  padding: 10px;
  margin-left: 10px;
}

#primary-nav.mobile .sub-menu li a {
  padding-left: 24px;
}

#primary-nav.mobile .sub-menu .submenu li a {
  padding-left: 24px;
}

#primary-nav.mobile .sub-menu .sub-menu .sub-menu li a {
  padding-left: 24px;
}

#primary-nav.mobile .sub-menu {
  float: left;
  position: relative;
  width: 100%;
}

.mobile .downarrow,
.mobile .sub-menu .downarrow {
  position: absolute;
  right: 0;
  padding-right: 5%;
}

#primary-nav.mobile .sub-menu .downarrow:before {
  content: "▾";
}

#primary-nav-button.mobile {
  display: inline-block;
}

.productSide {
  padding: 24px 24px;
}
@media screen and (max-width: 500px) {
  .productSide {
    display: none;
  }
}
.productSide h3 {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
.productSide-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.productSide-item {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1200px) {
  .productSide-item:hover .productSide-item-img img {
    transform: scale(1.1);
  }
}
.productSide-item:last-child {
  border-bottom: none;
}
.productSide-item-img {
  min-width: 40%;
  height: 100%;
  overflow: hidden;
}
.productSide-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.productSide-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}
.productSide-item-info h3 a {
  line-height: 18px;
  color: #000000;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.productSide-item-info p {
  color: #C83538;
}

.work {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.work-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
@media screen and (max-width: 450px) {
  .work-item {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1200px) {
  .work-item:hover .work-item-img img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.work-item-img {
  overflow: hidden;
  width: 35%;
}
@media screen and (max-width: 550px) {
  .work-item-img {
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  .work-item-img {
    width: 100%;
  }
}
.work-item-img a {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
  display: block;
}
.work-item-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.work-item-info {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 550px) {
  .work-item-info {
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  .work-item-info {
    width: 100%;
  }
}
.work-item-info h3 {
  text-transform: uppercase;
}
.work-item-info p {
  color: #5A5A5A;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work-item-info a {
  color: #C83538;
}

.comment.comment-mobile {
  display: none;
}
@media screen and (max-width: 800px) {
  .comment.comment-mobile {
    display: block;
  }
  .comment {
    display: none;
  }
}

.comment-box {
  width: 100%;
}
@media screen and (max-width: 426px) {
  .comment-box {
    padding: 0 15px;
  }
}
.comment-box .comment-rate-title {
  color: #C83538;
  padding: 24px 0;
}
.comment-box .comment-rate .form-cmt {
  width: 100%;
}
.comment-box .comment-rate .form-cmt .logged-in-as {
  padding-bottom: 16px;
}
.comment-box .comment-rate .form-cmt .logged-in-as a {
  color: #5A5A5A;
}
.comment-box .comment-rate .form-cmt .form-gr {
  margin-bottom: 16px;
}
.comment-box .comment-rate .form-cmt .form-gr .form-flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.comment-box .comment-rate .form-cmt .form-gr .form-flex .form-item-2 {
  width: calc(50% - 8px);
}
.comment-box .comment-rate .form-cmt .form-gr .form-flex .form-item-2 input {
  width: 100%;
  height: 44px;
  border-radius: 4px;
  padding: 0 16px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.comment-box .comment-rate .form-cmt .form-gr .form-flex .form-item-2 input:focus {
  border: 1px solid #383838;
  font-size: 20px;
}
.comment-box .comment-rate .form-cmt .form-gr textarea {
  width: 100%;
  border-radius: 4px;
  padding: 16px;
  font-family: "Roboto", sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  transition: 0.3s;
}
.comment-box .comment-rate .form-cmt .form-gr textarea:focus {
  border: 1px solid #383838;
  font-size: 20px;
}
.comment-box .comment-rate .form-cmt .cmt-note p {
  color: #C83538;
  padding: 16px 0;
}
.comment-box .comment-rate .form-cmt .cmt-note button {
  height: 44px;
}
.comment-box .comment-rate .form-cmt .cmt-note button p {
  color: #FFFFFF;
}
.comment-box .comment-rate .cmt-parent {
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.comment-box .comment-rate .cmt-parent .cmt-item {
  padding: 16px 0;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-ava {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-ava-cover {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-ava-cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-ava .cmt-name .cmt-time {
  color: #5A5A5A;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-content {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 23px;
  padding-left: 40px;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-content .cmt-des {
  padding: 16px 0;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-content .cmt-control .cmt-tt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-content .cmt-control .cmt-tt a {
  color: #383838;
  font-weight: 600;
}
.comment-box .comment-rate .cmt-parent .cmt-item .cmt-content .cmt-control .cmt-tt a:hover {
  color: #C83538;
}

.recruitment-popup {
  font-family: "Roboto", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.recruitment-popup .popup-cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruitment-popup.active {
  visibility: visible;
}
.recruitment-popup-wrap {
  width: 100%;
  height: 50vh;
  animation: zoomOut 0.5s ease-in-out;
  transition: 0.3s;
  box-shadow: 5px 12px 15px rgba(0, 0, 0, 0.1);
  padding: 0px;
  gap: 30px;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.recruitment-popup-wrap.active {
  animation: zoomIn 0.5s ease-in-out;
  visibility: visible;
}
.recruitment-popup-wrap iframe {
  width: 100%;
  height: 100%;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 502;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 503;
  position: fixed;
  outline: none !important;
}

.mfp-container {
  height: 100%;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 505;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 504;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 506;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  top: 0;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: solid transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  opacity: 0.8;
  border-top-width: 12px;
  border-bottom-width: 12px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 20px;
  border-bottom-width: 20px;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 12px solid black;
  left: 5px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  border-right: 20px solid white;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 12px solid black;
  left: 3px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 20px solid white;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

.mfp-iframe-holder .mfp-close {
  top: -43px;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure {
  line-height: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-break: break-word;
  padding-right: 36px;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
}
@media all and (max-width: 800px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

.main {
  font-family: "Roboto", sans-serif;
  background-color: #f9f5f0;
}
.main-wrap {
  background-color: #FFFFFF;
}
.main .price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  .main .price-wrap {
    flex-wrap: wrap-reverse;
  }
}
.main .price-left {
  width: 25%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .main .price-left {
    padding-top: 24px;
    width: 100%;
    border-right: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .main .price-left .sidebar {
    width: 100%;
  }
  .main .price-left .productSide {
    width: 100%;
    overflow: auto;
  }
  .main .price-left .productSide-item {
    width: 100%;
  }
  .main .price-left .productSide-item-img {
    max-height: 100px;
    min-width: 100px;
    max-width: 100px !important;
  }
  .main .price-left .price-left-adv {
    width: 100%;
  }
}
@media screen and (max-width: 426px) {
  .main .price-left {
    display: none;
  }
}
.main .price-left-adv {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .main .price-left-adv {
    display: none;
  }
}
.main .price-left-adv-sale {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.main .price-left-adv-sale img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .price-left-adv-long {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.main .price-left-adv-long img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .price-right {
  width: 75%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  .main .price-right {
    width: 100%;
  }
}
@media screen and (max-width: 426px) {
  .main .price-right {
    padding: 0 15px;
  }
}
.main .price-right-head {
  padding: 24px 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main .price-right-head h1 {
  color: #C83538;
  font-size: 18px;
  font-weight: 600;
}
.main .price-right .bg {
  margin-top: 30px;
}
.main .price-right-table {
  width: 100%;
  margin-top: 30px;
  border: 1px solid #FFFFFF;
}
@media screen and (max-width: 1200px) {
  .main .price-right-table {
    overflow-x: auto;
    position: relative;
  }
}
.main .price-right-table h3 {
  text-transform: uppercase;
}
.main .price-right-table table {
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .main .price-right-table table {
    width: 800px;
  }
}
.main .price-right-table td,
.main .price-right-table th {
  border: 1px solid #dddddd;
  border-top: none;
  border-left: none;
  text-align: left;
}
.main .price-right-table td:nth-child(2),
.main .price-right-table th:nth-child(2) {
  background: #FFFFFF;
  position: sticky;
  left: 0;
}
@media screen and (max-width: 600px) {
  .main .price-right-table td:nth-child(2),
.main .price-right-table th:nth-child(2) {
    position: static;
  }
}
.main .price-right-table td:last-child,
.main .price-right-table th:last-child {
  border-right: none;
}
.main .price-right-table td p,
.main .price-right-table th p {
  padding: 8px;
}
.main .price-right-table th p:nth-child(1) {
  font-weight: 600;
}
.main .price-right-table td:nth-child(n+3) p {
  border-bottom: 1px solid #dddddd;
}
.main .price-right-table td:nth-child(n+3) p:last-child {
  border-bottom: none;
}
.main .price-right-result {
  padding: 30px 0;
  max-width: 50%;
}
@media screen and (max-width: 900px) {
  .main .price-right-result {
    max-width: 100%;
  }
}
.main .price-right-result p {
  padding: 16px 0;
  color: #5A5A5A;
}
.main .price-right-collapse {
  width: 100%;
}
.main .price-right-collapse-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.main .price-right-collapse-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main .price-right-collapse-item .collapse {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.main .price-right-collapse-item .collapse .plus-box {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: auto;
  display: none;
}
.main .price-right-collapse-item .collapse .plus-box-line {
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: #C83538;
  transition: 0.3s;
}
.main .price-right-collapse-item .collapse .plus-box-line:nth-child(2) {
  transform: rotate(90deg);
}
.main .price-right-collapse-item .collapse-box {
  overflow: hidden;
  transition: 0.3s;
  height: 0px;
}
.main .price-right-collapse-item .collapse-box.active {
  height: 100px;
}
.main .price-right-collapse-item .collapse-box-item p {
  color: #5A5A5A;
  padding: 10px;
}

.main .constr-head {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 426px) {
  .main .constr-head {
    padding: 15px;
  }
}
.main .constr-head h3 {
  color: #C83538;
}
.main .constr-work {
  padding: 24px;
}
@media screen and (max-width: 426px) {
  .main .constr-work {
    padding: 15px;
  }
}
@media screen and (max-width: 700px) {
  .main .constr-work .project-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 500px) {
  .main .constr-work .project-item {
    width: 100%;
  }
}
.main .constr-listwork {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1050px) {
  .main .constr-listwork .work {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1050px) {
  .main .constr-listwork .work-item {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .main .constr-listwork .work-item-img {
    max-height: 1000px;
    min-width: 30%;
  }
  .main .constr-listwork .work-item-img img {
    object-fit: fill;
  }
}

.main {
  font-family: "Roboto", sans-serif;
  background-color: #FFFFFF;
}
.main-wrap {
  background-color: #FFFFFF;
}
.main .constr-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .main .constr-wrap {
    flex-wrap: wrap-reverse;
  }
}
.main .constr-title {
  padding: 35px 0px 27px 24px;
  text-transform: uppercase;
  color: #C83538;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
@media screen and (max-width: 426px) {
  .main .constr-title {
    padding: 15px;
  }
}
.main .constr-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.main .constr-detail-left {
  width: 75%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .main .constr-detail-left {
    width: 100%;
    border-right: none;
  }
}
@media screen and (max-width: 426px) {
  .main .constr-detail-left {
    padding: 15px;
  }
}
.main .constr-detail-left p {
  color: #5A5A5A;
}
.main .constr-detail-left h3 {
  color: #5A5A5A;
  font-size: 14px !important;
}
.main .constr-detail-left h3 a {
  color: #C83538;
  font-weight: 600;
}
.main .constr-detail-left-ctn {
  width: 100%;
}
.main .constr-detail-left-ctn .btn {
  max-width: 131px;
  text-transform: uppercase;
}
.main .constr-detail-left-ctn .btn span {
  font-weight: 400;
}
.main .constr-detail-left-ctn .ctn {
  padding: 16px;
  background-color: #F8F8F8;
  border-radius: 4px;
  max-height: 230px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .main .constr-detail-left-ctn .ctn {
    max-height: none;
    height: auto;
  }
}
.main .constr-detail-left-ctn .ctn h3 a {
  color: #5A5A5A;
  font-weight: 600;
  line-height: 22px;
}
.main .constr-detail-left-ctn .ctn ol {
  padding-left: 20px;
}
.main .constr-detail-left-ctn .ctn ol li a {
  color: #5A5A5A;
  line-height: 22px;
}
.main .constr-detail-left-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .constr-detail-left-gllry {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.main .constr-detail-left-gllry .btn span {
  font-weight: 400;
  text-transform: uppercase;
}
.main .constr-detail-left-gllry .gllry {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.main .constr-detail-left-gllry .gllry-item {
  overflow: hidden;
  position: relative;
  width: calc(50% - 12px);
  min-height: 200px;
  max-height: 314px;
}
.main .constr-detail-left-gllry .gllry-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .constr-detail-left .constr-detail-right-blog {
  display: none;
}
@media screen and (max-width: 800px) {
  .main .constr-detail-left .constr-detail-right-blog {
    display: block;
    padding: 0;
  }
}
.main .constr-detail-right {
  width: 25%;
}
@media screen and (max-width: 800px) {
  .main .constr-detail-right {
    width: 100%;
  }
}
.main .constr-detail-right-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main .constr-detail-right-info p:nth-child(1) {
  color: rgba(0, 0, 0, 0.5);
}
.main .constr-detail-right-info p.infohead {
  font-weight: 600;
}
.main .constr-detail-right-info .info-box-info {
  font-weight: 700;
}
.main .constr-detail-right-info .info-box-info a {
  color: #C83538;
}
.main .constr-detail-right .sidebar {
  gap: 0px;
  padding: 7px 24px;
}
@media screen and (max-width: 426px) {
  .main .constr-detail-right .sidebar {
    display: none;
  }
}
.main .constr-detail-right-blog {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  padding: 24px;
}
@media screen and (max-width: 800px) {
  .main .constr-detail-right-blog {
    display: none;
  }
}
@media screen and (max-width: 426px) {
  .main .constr-detail-right-blog {
    padding: 15px;
  }
}
.main .constr-detail-right-blog p:nth-child(1) {
  color: rgba(0, 0, 0, 0.5);
}
.main .constr-detail-right-blog .blog-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
@media screen and (max-width: 800px) {
  .main .constr-detail-right-blog .blog-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.main .constr-detail-right-blog .blog-list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .main .constr-detail-right-blog .blog-list-item {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .main .constr-detail-right-blog .blog-list-item {
    width: 100%;
  }
}
.main .constr-detail-right-blog .blog-list-item-img {
  width: 100%;
}
.main .constr-detail-right-blog .blog-list-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .constr-product .title {
  margin: 60px 24px 24px 24px;
  color: #C83538;
}
@media screen and (max-width: 900px) {
  .main .constr-product .product-item {
    width: 25%;
  }
}
@media screen and (max-width: 700px) {
  .main .constr-product .product-item {
    width: 33.3%;
  }
}
@media screen and (max-width: 500px) {
  .main .constr-product .product-item {
    width: 50%;
  }
}
@media screen and (max-width: 400px) {
  .main .constr-product .product-item {
    width: 100%;
  }
}
.main .constr-projct {
  padding: 24px;
}
.main .constr-projct .title {
  margin: 60px 24px 24px 0px;
  color: #C83538;
}
@media screen and (max-width: 700px) {
  .main .constr-projct .project-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 500px) {
  .main .constr-projct .project-item {
    width: 100%;
  }
}

.comment-respond {
  padding-bottom: 20px;
}

.main .category-head {
  padding: 24px;
}
@media screen and (max-width: 426px) {
  .main .category-head {
    padding: 15px;
  }
}
.main .category-head h3 {
  color: #C83538;
}
.main .category-body {
  padding: 0 15px;
}

.main {
  overflow: hidden;
  transition: 0.3s;
  padding-top: 128px;
}
@media screen and (max-width: 1200px) {
  .main {
    padding-top: 48px;
  }
}
@media screen and (max-width: 550px) {
  .main.active {
    padding-top: 88px;
  }
}
.main .home-banner {
  transition: 0.3s;
  height: 29.8611111111vw;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 1140px) {
  .main .home-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 44.9477351916vw;
  }
}
@media screen and (max-width: 768px) {
  .main .home-banner {
    height: 66.5789473684vw;
  }
}
@media screen and (max-width: 426px) {
  .main .home-banner {
    height: 66.6666666667vw;
  }
}
.main .home-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .home-adv {
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.main .home-adv-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .main .home-adv-wrap {
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .main .home-adv-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.main .home-adv-item {
  padding: 24px;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .main .home-adv-item {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 500px) {
  .main .home-adv-item {
    width: 20%;
    transform: scale(0.8);
    border-bottom: none;
    padding: 2px;
  }
  .main .home-adv-item h3 {
    font-size: 13px;
    line-height: 16px;
  }
  .main .home-adv-item p {
    font-size: 13px;
    line-height: 16px;
  }
}
.main .home-adv-item img {
  margin-bottom: 8px;
}
.main .home-adv-item:last-child {
  border-right: none;
}
.main .home-dmsp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 82px;
}
@media screen and (max-width: 500px) {
  .main .home-dmsp-wrap {
    padding-top: 32px;
  }
}
.main .home-dmsp-wrap .fz32 {
  color: #C83538;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 510px) {
  .main .home-dmsp-wrap .fz32 {
    font-size: 20px;
  }
}
@media screen and (max-width: 426px) {
  .main .home-dmsp-wrap .fz32 {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 340px) {
  .main .home-dmsp-wrap .fz32 {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 500px) {
  .main .home-dmsp-wrapmobile {
    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 10px 0;
  }
}
.main .home-dmsp-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 14px 0;
}
@media screen and (max-width: 500px) {
  .main .home-dmsp-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 100%;
    display: none;
    padding: 0;
  }
}
@media screen and (max-width: 375px) {
  .main .home-dmsp-box {
    gap: 10px;
  }
}
@media screen and (max-width: 320px) {
  .main .home-dmsp-box {
    gap: 0px;
  }
}
.main .home-dmsp-box.mobilebox {
  min-width: 100%;
  display: none;
}
@media screen and (max-width: 500px) {
  .main .home-dmsp-box.mobilebox {
    display: flex;
  }
}
.main .home-dmsp-box-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media screen and (max-width: 510px) {
  .main .home-dmsp-box-item {
    flex: 1 1 21%;
  }
}
@media screen and (max-width: 426px) {
  .main .home-dmsp-box-item {
    gap: 0;
  }
}
.main .home-dmsp-box-item h3 {
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 510px) {
  .main .home-dmsp-box-item h3 {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 426px) {
  .main .home-dmsp-box-item h3 {
    line-height: 20px;
  }
}
.main .home-dmsp-box-item .itemcir {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 2px dashed transparent;
}
@media screen and (max-width: 510px) {
  .main .home-dmsp-box-item .itemcir {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
  }
}
.main .home-dmsp-box-item .itemcir:hover {
  border: 2px dashed #C83538;
  animation: rotate 5s linear infinite;
}
.main .home-dmsp-box-item .itemcir:hover .item-cirImg {
  animation: rotateinv 5s linear infinite;
}
.main .home-dmsp-box-item .itemcir .item-cirImg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  min-width: 120px;
  min-height: 120px;
  overflow: hidden;
}
@media screen and (max-width: 510px) {
  .main .home-dmsp-box-item .itemcir .item-cirImg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    min-width: 60px;
    min-height: 60px;
  }
}
.main .home-dmsp-box-item .itemcir .item-cirImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .home-prodct {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}
.main .home-prodct .home-product-wrap {
  background-color: #FFFFFF;
}
.main .home-prodct-titles {
  display: none;
}
@media screen and (max-width: 500px) {
  .main .home-prodct-titles {
    font-size: 20px;
    color: #C83538;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
  }
}
@media screen and (max-width: 340px) {
  .main .home-prodct-titles {
    font-size: 16px;
  }
}
.main .home-prodct-banner {
  position: relative;
  overflow: hidden;
}
.main .home-prodct-banner .square {
  width: 234px;
  height: 234px;
  background-color: #C83538;
  overflow: hidden;
  bottom: 0;
  left: 0;
  position: absolute;
}
.main .home-prodct-banner .square h3 {
  position: absolute;
  color: #FFFFFF;
  bottom: 35px;
  left: 20px;
  max-width: 140px;
}
@media screen and (max-width: 900px) {
  .main .home-prodct-banner .square {
    bottom: 68px;
  }
  .main .home-prodct-banner .square h3 {
    bottom: 10px;
    left: 10px;
  }
}
@media screen and (max-width: 613px) {
  .main .home-prodct-banner .square h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  .main .home-prodct-banner .square {
    width: 30%;
  }
  .main .home-prodct-banner .square img {
    position: absolute;
    bottom: 0;
  }
  .main .home-prodct-banner .square h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .main .home-prodct-banner .square {
    display: none;
  }
}
.main .home-prodct-banner .banner {
  height: 13.6752136752vw;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .main .home-prodct-banner .banner {
    height: 16vw;
  }
}
@media screen and (max-width: 900px) {
  .main .home-prodct-banner .banner {
    height: 17.7777777778vw;
  }
}
@media screen and (max-width: 700px) {
  .main .home-prodct-banner .banner {
    height: 26.6666666667vw;
  }
}
@media screen and (max-width: 426px) {
  .main .home-prodct-banner .banner {
    height: 16.6666666667vw;
  }
}
.main .home-prodct-banner .banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .home-prodct-banner .filterbar {
  height: 68px;
  width: 100%;
  padding: 16px 20px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 635px) {
  .main .home-prodct-banner .filterbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 68px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .main .home-prodct-banner .filterbar {
    padding-left: 0 !important;
  }
}
.main .home-prodct-banner .filterbar-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 635px) {
  .main .home-prodct-banner .filterbar-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    min-width: 600px;
    justify-content: flex-end !important;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 500px) {
  .main .home-prodct-banner .filterbar-box {
    flex-direction: row-reverse;
    justify-content: flex-end !important;
  }
}
.main .home-prodct-list {
  background-color: #FFFFFF;
}
@media screen and (max-width: 500px) {
  .main .home-prodct-list {
    padding-top: 10px;
    margin: 0 -5px;
  }
}
@media screen and (max-width: 900px) {
  .main .home-prodct-list .product-item {
    width: 25%;
  }
}
@media screen and (max-width: 800px) {
  .main .home-prodct-list .product-item {
    width: 25%;
    padding: 5px;
  }
  .main .home-prodct-list .product-item .product-item-info h4 {
    font-size: 13px;
    line-height: 20px;
  }
  .main .home-prodct-list .product-item .product-item-info p {
    font-size: 13px;
  }
}
@media screen and (max-width: 620px) {
  .main .home-prodct-list .product-item {
    width: 25%;
    padding: 5px;
  }
  .main .home-prodct-list .product-item .product-item-info h4 {
    font-size: 13px;
    line-height: 20px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .main .home-prodct-list .product-item .product-item-info p {
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  .main .home-prodct-list .product-item {
    width: calc(25% - 10px);
    border: none;
    gap: 10px;
    padding: 0;
    margin: 0 5px;
  }
  .main .home-prodct-list .product-item .product-item-info {
    padding: 5px;
  }
  .main .home-prodct-list .product-item .product-item-info h4 {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .main .home-prodct-list .product-item .product-item-info p {
    padding: 0;
    font-size: 13px;
    line-height: 15px;
  }
}
.main .home-video {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.main .home-video .video {
  z-index: 2;
}
.main .home-video .video .fz32 {
  font-size: 32px;
  font-weight: 400;
  color: #C83538;
  text-transform: uppercase;
}
.main .home-video .video .fz32.video-titles {
  border-top: 1px solid #C83538;
  padding-top: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .main .home-video .video .fz32 {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 340px) {
  .main .home-video .video .fz32 {
    font-size: 16px !important;
  }
}
.main .home-video .video .fz32 .fz32 {
  font-size: 20px;
  color: #000000;
}
.main .home-video h3 {
  font-size: 20px;
  font-weight: 500;
  padding-top: 10px;
}
@media screen and (max-width: 500px) {
  .main .home-video {
    padding: 0;
  }
}
.main .home-video .imgbg {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  top: -100px;
}
.main .home-video-wrap {
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 -7.5px;
}
@media screen and (max-width: 850px) {
  .main .home-video-wrap {
    flex-wrap: wrap;
    margin: 0 -4px;
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-wrap {
    margin: -5px;
  }
}
.main .home-video-item {
  width: calc(33.3% - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  max-height: 250px;
  margin: 7.5px;
}
.main .home-video-item:hover .bgimg {
  transform: scale(1.1);
}
@media screen and (max-width: 850px) {
  .main .home-video-item {
    width: calc(50% - 16px);
    min-height: 150px;
    margin: 8px;
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-item {
    min-height: 100px;
    margin: 5px;
    width: calc(50% - 10px);
  }
  .main .home-video-item a img {
    width: 30px;
  }
  .main .home-video-item:nth-child(1) {
    width: 100%;
    max-height: 240px;
  }
  .main .home-video-item:nth-child(1) a img {
    width: 50px;
  }
}
@media screen and (max-width: 376px) {
  .main .home-video-item:nth-child(1) {
    height: 200px;
  }
}
.main .home-video-item a {
  z-index: 1;
  position: absolute;
  cursor: pointer;
}
.main .home-video-item .bgimg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}
.main .home-video-info {
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  border-top: 1px solid #C83538;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info {
    flex-wrap: wrap;
    margin-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .main .home-video-info {
    padding-top: 0;
    gap: 0;
    border: none;
  }
}
.main .home-video-info-left {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-left {
    width: 100%;
  }
}
.main .home-video-info-left p {
  color: #C83538;
}
@media screen and (max-width: 500px) {
  .main .home-video-info-left p {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-info-left h3 {
    display: none;
  }
}
.main .home-video-info-left h3 span {
  position: relative;
  overflow: hidden;
}
.main .home-video-info-left h3 span::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 3px;
  left: 0;
  background-color: rgba(200, 53, 55, 0.3);
}
@media screen and (max-width: 500px) {
  .main .home-video-info-left .watchnews {
    display: none !important;
  }
}
.main .home-video-info-left .video-gallery {
  height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-left .video-gallery {
    gap: 30px;
    height: 260px;
  }
}
@media screen and (max-width: 850px) {
  .main .home-video-info-left .video-gallery {
    flex-direction: row;
    height: auto;
    gap: 16px;
    width: calc(100vw - 22px);
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-info-left .video-gallery {
    padding-bottom: 0;
    gap: 0;
    margin: -5px;
    width: calc(100vw - 22px);
  }
}
.main .home-video-info-left .video-gallery-item {
  background: #000;
  width: calc(35% - 8px);
  height: calc(50% - 8px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-left .video-gallery-item {
    width: calc(33.3% - 20px);
    height: 100%;
  }
}
@media screen and (max-width: 850px) {
  .main .home-video-info-left .video-gallery-item {
    width: calc(50% - 12px);
    max-height: 250px;
    position: relative;
    padding-top: 35%;
    flex-shrink: 0;
  }
  .main .home-video-info-left .video-gallery-item img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-info-left .video-gallery-item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-info-left .video-gallery-item {
    width: calc(50% - 10px);
    margin: 5px;
    height: 100px;
    flex-shrink: 1;
  }
}
.main .home-video-info-left .video-gallery-item:nth-child(1) {
  width: calc(65% - 8px);
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-left .video-gallery-item:nth-child(1) {
    width: calc(33.3% - 20px);
    height: 100%;
  }
}
@media screen and (max-width: 850px) {
  .main .home-video-info-left .video-gallery-item:nth-child(1) {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-info-left .video-gallery-item:nth-child(1) {
    height: 230px;
    width: 100%;
  }
}
@media screen and (max-width: 376px) {
  .main .home-video-info-left .video-gallery-item:nth-child(1) {
    height: 200px;
  }
}
.main .home-video-info-left .video-gallery-item:nth-child(n+4) {
  display: none;
}
@media screen and (max-width: 426px) {
  .main .home-video-info-left .video-gallery-item h3 {
    display: block;
  }
}
.main .home-video-info-left .video-gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.main .home-video-info-left .video-gallery-item:hover .video-gallery-item-overlay {
  width: 100%;
  padding: 20px;
}
.main .home-video-info-left .video-gallery-item:hover .video-gallery-item-overlay h3 {
  transform: translateY(0);
  opacity: 1;
}
.main .home-video-info-left .video-gallery-item-overlay {
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(200, 53, 55, 0.8);
  overflow: hidden;
}
.main .home-video-info-left .video-gallery-item-overlay h3 {
  position: absolute;
  color: #FFFFFF;
  bottom: 20px;
  transition: 0.3s;
  font-size: 16px !important;
  transform: translateY(50px);
  opacity: 0;
  max-width: 98px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main .home-video-info-right {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-right {
    width: 100%;
  }
}
.main .home-video-info-right p {
  color: #C83538;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-right p {
    -webkit-line-clamp: 4;
  }
}
.main .home-video-info-right h3 {
  display: none;
}
.main .home-video-info-right h3 span {
  position: relative;
  overflow: hidden;
}
.main .home-video-info-right h3 span::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 3px;
  left: 0;
  background-color: rgba(200, 53, 55, 0.3);
}
.main .home-video-info-right-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-right-title {
    border-top: 1px solid #C83538;
    padding-top: 20px;
    margin-top: 20px;
    height: auto;
  }
}
.main .home-video-info-right-title p {
  font-size: 32px;
  text-transform: uppercase;
}
@media screen and (max-width: 500px) {
  .main .home-video-info-right-title p {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 340px) {
  .main .home-video-info-right-title p {
    font-size: 16px !important;
  }
}
.main .home-video-info-right-title .watchnews.ontop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  display: none;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-right-title .watchnews.ontop span {
    font-size: 20px;
    font-weight: 600;
  }
}
@media screen and (max-width: 500px) {
  .main .home-video-info-right-title .watchnews.ontop {
    display: flex !important;
  }
  .main .home-video-info-right-title .watchnews.ontop span {
    font-size: 16px;
    font-weight: 400;
    color: #C83538 !important;
  }
}
.main .home-video-info-right-title .watchnews.ontop:hover span {
  color: #C83538;
}
.main .home-video-info-right-title .watchnews.ontop:hover img {
  transform: translateX(5px);
}
.main .home-video-info-right-title .watchnews.ontop span {
  color: #000000;
}
.main .home-video-info-right-title .watchnews.ontop img {
  transition: 0.3s;
  height: 16px;
}
.main .home-video-info-right .video-news {
  padding: 24px 0;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-right .video-news {
    height: auto;
  }
}
@media screen and (max-width: 426px) {
  .main .home-video-info-right .video-news {
    padding-bottom: 0;
  }
}
.main .home-video-info-right .video-news-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}
.main .home-video-info-right .video-news-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-right .video-news-item h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 620px) {
  .main .home-video-info-right .video-news-item h3 {
    font-size: 20px;
  }
}
.main .home-video-info-right .video-news-item:hover .video-news-item-info h3 {
  color: #C83538;
}
.main .home-video-info-right .video-news-item:hover .video-news-item-img img {
  transform: scale(1.1);
}
.main .home-video-info-right .video-news-item-img {
  width: 70px;
  height: 70px;
  min-width: 110px !important;
  overflow: hidden;
  min-width: 70px;
}
@media screen and (max-width: 1000px) {
  .main .home-video-info-right .video-news-item-img {
    width: 170px;
    height: 170px;
    min-width: 30% !important;
  }
}
@media screen and (max-width: 620px) {
  .main .home-video-info-right .video-news-item-img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 426px) {
  .main .home-video-info-right .video-news-item-img {
    width: 100px;
    height: 100px;
    min-width: 150px !important;
  }
}
@media screen and (max-width: 320px) {
  .main .home-video-info-right .video-news-item-img {
    width: 100px;
    height: 100px;
    min-width: 100px !important;
  }
}
.main .home-video-info-right .video-news-item-img img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .home-video-info-right .video-news-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.main .home-video-info-right .video-news-item-info h4 {
  color: #C83538;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main .home-video-info-right .video-news-item-info p {
  color: #5A5A5A;
}
.main .home-video-info-right .video-news .watchnews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
@media screen and (max-width: 500px) {
  .main .home-video-info-right .video-news .watchnews {
    display: none;
  }
}
.main .home-video-info-right .video-news .watchnews:hover span {
  color: #C83538;
}
.main .home-video-info-right .video-news .watchnews:hover img {
  transform: translateX(5px);
}
.main .home-video-info-right .video-news .watchnews span {
  color: #000000;
}
.main .home-video-info-right .video-news .watchnews img {
  transition: 0.3s;
  height: 16px;
}
.main .home-brand {
  margin-top: 20px;
}
.main .home-brand .video {
  z-index: 2;
}
.main .home-brand .brandSwiper {
  height: 100px;
}
@media screen and (max-width: 426px) {
  .main .home-brand .brandSwiper {
    height: 50px;
  }
}
.main .home-brand .brandSwiper .swiper-slide {
  width: 100%;
}
.main .home-brand .title-home-brand {
  text-transform: uppercase;
  font-weight: 400 !important;
  border-top: 1px solid #C83538;
  padding-top: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .main .home-brand .title-home-brand {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 340px) {
  .main .home-brand .title-home-brand {
    font-size: 16px !important;
  }
}
.main .home-brand-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 48px 0;
}
@media screen and (max-width: 426px) {
  .main .home-brand-wrap {
    min-width: 100%;
    overflow-x: scroll;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.main .home-brand-item {
  height: 54px;
}
.main .home-brand-item img {
  object-fit: contain;
}

.main .contact {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 950px) {
  .main .contact {
    flex-wrap: wrap-reverse;
  }
}
.main .contact-left {
  width: 25%;
}
@media screen and (max-width: 950px) {
  .main .contact-left {
    width: 100%;
  }
}
.main .contact-left-head {
  padding: 16px 24px;
}
.main .contact-left-body-item {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.main .contact-left-body-item h3 {
  line-height: 20px;
}
.main .contact-left-body-item a {
  color: #C83538;
}
.main .contact-right {
  width: 75%;
}
@media screen and (max-width: 950px) {
  .main .contact-right {
    width: 100%;
  }
}
.main .contact-map {
  width: 100%;
}
.main .contact-form-head {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main .contact-form-body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .main .contact-form-body {
    flex-wrap: wrap;
  }
}
.main .contact-form-body-left {
  width: 40%;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 21px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .main .contact-form-body-left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main .contact-form-body-left {
    width: 100%;
  }
}
.main .contact-form-body-left .contact-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.main .contact-form-body-left .contact-info-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #C83538;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .contact-form-body-left .contact-info-box .line {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 16px 0;
}
.main .contact-form-body-right {
  width: 60%;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .main .contact-form-body-right {
    width: 100%;
  }
}
.main .contact-form-body-right form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.main .contact-form-body-right form input[type=text] {
  width: calc(50% - 8px);
  height: 48px;
  padding: 0 16px;
  border-radius: 4px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 600px) {
  .main .contact-form-body-right form input[type=text] {
    width: 100%;
  }
}
.main .contact-form-body-right form input[type=text]::placeholder {
  font-size: 14px;
}
.main .contact-form-body-right form input[type=text]:focus {
  border: 1px solid #383838;
}
.main .contact-form-body-right form input[type=submit] {
  border: none;
  min-width: 194px;
}
.main .contact-form-body-right form input[type=submit]:hover {
  background-color: #C83538;
}
@media screen and (max-width: 426px) {
  .main .contact-form-body-right form input[type=submit] {
    width: 100%;
    height: 40px;
  }
}
.main .contact-form-body-right form textarea {
  width: 100%;
  height: 80px;
  border-radius: 4px;
  padding: 16px;
  font-size: 14px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Roboto", sans-serif;
}
.main .contact-form-body-right form textarea::placeholder {
  font-size: 14px;
}
.main .contact-form-body-right form textarea:focus {
  border: 1px solid #383838;
}

.main .listsp-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  .main .listsp-wrap {
    flex-wrap: wrap-reverse;
  }
}
.main .listsp-left {
  width: 25%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .main .listsp-left {
    width: 100%;
  }
  .main .listsp-left .productSide {
    width: 100%;
    overflow: auto;
  }
  .main .listsp-left .productSide-item {
    width: 100%;
  }
  .main .listsp-left .productSide-item-img {
    max-height: 100px;
    min-width: 100px;
    max-width: 100px !important;
  }
}
.main .listsp-right {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  .main .listsp-right {
    width: 100%;
  }
}
.main .listsp-right-head {
  padding: 24px 24px 16px 24px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 426px) {
  .main .listsp-right-head {
    padding: 15px;
  }
}
.main .listsp-right-head.black {
  border-bottom: none;
}
.main .listsp-right-head.black h3 {
  color: #000000;
}
.main .listsp-right-head h3 {
  color: #C83538;
}
.main .listsp-right-head .para {
  line-height: 24px;
  color: #5A5A5A;
}
.main .listsp-right-head .para span {
  color: #C83538;
}
.main .listsp-right-body {
  padding: 24px;
}
@media screen and (max-width: 426px) {
  .main .listsp-right-body {
    padding: 15px;
  }
}
.main .listsp-right-body .price-right-collapse-item {
  color: #C83538;
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main .listsp-right-body .price-right-collapse-item h3 {
  font-weight: 600;
}
.main .listsp-right-body-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 0;
}
.main .listsp-right-body-btn .line {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
}
.main .listsp-right-body-btn .btn {
  max-width: 204px;
}
.main .listsp-right-product .product-item {
  width: 25%;
}
@media screen and (max-width: 750px) {
  .main .listsp-right-product .product .product-item {
    width: 33.3%;
  }
}
@media screen and (max-width: 600px) {
  .main .listsp-right-product .product .product-item {
    width: 50%;
  }
}
@media screen and (max-width: 426px) {
  .main .listsp-right-product .product .product-item {
    width: 50%;
  }
}

.main-wrap {
  background-color: #FFFFFF;
}
@media screen and (max-width: 426px) {
  .main-wrap {
    margin: 0 -15px !important;
  }
}
.main .product-detail-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 24px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 850px) {
  .main .product-detail-head {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
}
.main .product-detail-head h3 {
  color: #C83538;
}
.main .product-detail-head .btn {
  margin-left: auto;
}
@media screen and (max-width: 850px) {
  .main .product-detail-head .btn {
    margin: auto;
  }
}
.main .product-detail-body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 950px) {
  .main .product-detail-body {
    flex-wrap: wrap;
  }
}
.main .product-detail-body-left {
  width: 75%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 950px) {
  .main .product-detail-body-left {
    width: 100%;
    border-right: none;
  }
}
.main .product-detail-body-left .product-imagebox {
  padding: 24px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .main .product-detail-body-left .product-imagebox {
    flex-wrap: wrap;
  }
}
.main .product-detail-body-left .product-imagebox-img {
  height: 100%;
  min-width: 40%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .main .product-detail-body-left .product-imagebox-img {
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .main .product-detail-body-left .product-imagebox-img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .main .product-detail-body-left .product-imagebox-img:hover img {
    transform: scale(1.1);
  }
}
.main .product-detail-body-left .product-imagebox-img img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .product-detail-body-left .product-imagebox-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.main .product-detail-body-left .product-imagebox-btn .btn {
  width: 50%;
}
.main .product-detail-body-left .product-imagebox-btn .oldprice {
  width: 50%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main .product-detail-body-left .product-imagebox-btn .oldprice span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5A5A;
}
.main .product-detail-body-left .product-imagebox-btn .oldprice span p {
  text-decoration: line-through;
}
.main .product-detail-body-left .product-imagebox-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 20px;
}
.main .product-detail-body-left .product-imagebox-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.main .product-detail-body-left .product-imagebox-info-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.main .product-detail-body-left .product-imagebox-info-detail p {
  text-transform: uppercase;
  color: #5A5A5A;
  min-width: 150px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.main .product-detail-body-left .product-imagebox-info-detail span {
  font-weight: 600;
  padding: 10px;
}
.main .product-detail-body-left .product-imagebox-info-detail .detail {
  padding: 20px 0;
}
.main .product-detail-body-left .product-imagebox-info-detail .detail-size, .main .product-detail-body-left .product-imagebox-info-detail .detail-thick, .main .product-detail-body-left .product-imagebox-info-detail .detail-surface, .main .product-detail-body-left .product-imagebox-info-detail .detail-abra, .main .product-detail-body-left .product-imagebox-info-detail .detail-made, .main .product-detail-body-left .product-imagebox-info-detail .detail-insur {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main .product-detail-body-left .content-cover h3 {
  color: #C83538;
  padding: 24px;
}
.main .product-detail-body-right {
  width: 25%;
}
@media screen and (max-width: 950px) {
  .main .product-detail-body-right {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .main .product-detail-body-right {
    display: none;
  }
}
.main .product-relate .title {
  color: #C83538;
  padding: 24px;
}
@media screen and (max-width: 900px) {
  .main .product-relate .product-item {
    width: 25%;
  }
}
@media screen and (max-width: 700px) {
  .main .product-relate .product-item {
    width: 33.3%;
  }
}
@media screen and (max-width: 500px) {
  .main .product-relate .product-item {
    width: 50%;
  }
}
@media screen and (max-width: 426px) {
  .main .product-relate .product-item {
    width: 50%;
  }
  .main .product-relate .product-item-info h4,
.main .product-relate .product-item-info p {
    font-size: 10px;
    line-height: 15px;
  }
}

.main .about-banner {
  position: relative;
  height: 23.1481481481vw;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 660px) {
  .main .about-banner {
    height: 50vw;
  }
}
.main .about-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .about-banner-wrap {
  margin: 0 -24px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .main .about-banner-wrap {
    margin: 0;
  }
}
.main .about-banner-title {
  height: 100px;
  width: 100%;
  background-color: #383838;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 321px) {
  .main .about-banner-title {
    height: 60px;
  }
}
.main .about-banner-title img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 660px) {
  .main .about-banner-title img {
    width: 100px;
  }
}
@media screen and (max-width: 321px) {
  .main .about-banner-title img {
    width: 60px;
  }
}
.main .about-banner-title img:nth-child(3) {
  margin-left: auto;
}
.main .about-banner-title h3 {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  padding-top: 32px;
}
@media screen and (max-width: 321px) {
  .main .about-banner-title h3 {
    padding-top: 18px;
    font-size: 20px;
  }
}
.main .about-info-wrap {
  margin: 0 -24px;
  background-color: #FFFFFF;
  height: 550px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .main .about-info-wrap {
    margin: 0;
  }
}
@media screen and (max-width: 500px) {
  .main .about-info-wrap {
    height: calc(100vh - 48px);
  }
}
.main .about-info-left {
  width: 70%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 965px) {
  .main .about-info-left {
    width: 100%;
  }
}
@media screen and (max-width: 625px) {
  .main .about-info-left {
    flex-direction: column;
  }
}
.main .about-info-left input[type=radio] {
  display: none;
}
.main .about-info-left #tab1:checked ~ .about-info-left-tab .tabs {
  margin-top: 0px;
}
.main .about-info-left #tab2:checked ~ .about-info-left-tab .tabs {
  margin-top: 39px;
}
.main .about-info-left #tab3:checked ~ .about-info-left-tab .tabs {
  margin-top: 78px;
}
.main .about-info-left #tab4:checked ~ .about-info-left-tab .tabs {
  margin-top: 117px;
}
.main .about-info-left #tab5:checked ~ .about-info-left-tab .tabs {
  margin-top: 156px;
}
.main .about-info-left #tab6:checked ~ .about-info-left-tab .tabs {
  margin-top: 195px;
}
.main .about-info-left #tab7:checked ~ .about-info-left-tab .tabs {
  margin-top: 234px;
}
.main .about-info-left #tab1:checked ~ .about-info-left-tab .tab-item:nth-child(2) {
  color: #C83538;
  font-weight: 600;
}
@media screen and (max-width: 625px) {
  .main .about-info-left #tab1:checked ~ .about-info-left-tab .tab-item:nth-child(2) {
    border-bottom: 2px solid #C83538;
  }
}
.main .about-info-left #tab2:checked ~ .about-info-left-tab .tab-item:nth-child(3) {
  color: #C83538;
  font-weight: 600;
}
@media screen and (max-width: 625px) {
  .main .about-info-left #tab2:checked ~ .about-info-left-tab .tab-item:nth-child(3) {
    border-bottom: 2px solid #C83538;
  }
}
.main .about-info-left #tab3:checked ~ .about-info-left-tab .tab-item:nth-child(4) {
  color: #C83538;
  font-weight: 600;
}
@media screen and (max-width: 625px) {
  .main .about-info-left #tab3:checked ~ .about-info-left-tab .tab-item:nth-child(4) {
    border-bottom: 2px solid #C83538;
  }
}
.main .about-info-left #tab4:checked ~ .about-info-left-tab .tab-item:nth-child(5) {
  color: #C83538;
  font-weight: 600;
}
@media screen and (max-width: 625px) {
  .main .about-info-left #tab4:checked ~ .about-info-left-tab .tab-item:nth-child(5) {
    border-bottom: 2px solid #C83538;
  }
}
.main .about-info-left #tab5:checked ~ .about-info-left-tab .tab-item:nth-child(6) {
  color: #C83538;
  font-weight: 600;
}
@media screen and (max-width: 625px) {
  .main .about-info-left #tab5:checked ~ .about-info-left-tab .tab-item:nth-child(6) {
    border-bottom: 2px solid #C83538;
  }
}
.main .about-info-left #tab6:checked ~ .about-info-left-tab .tab-item:nth-child(7) {
  color: #C83538;
  font-weight: 600;
}
@media screen and (max-width: 625px) {
  .main .about-info-left #tab6:checked ~ .about-info-left-tab .tab-item:nth-child(7) {
    border-bottom: 2px solid #C83538;
  }
}
.main .about-info-left #tab7:checked ~ .about-info-left-tab .tab-item:nth-child(8) {
  color: #C83538;
  font-weight: 600;
}
@media screen and (max-width: 625px) {
  .main .about-info-left #tab7:checked ~ .about-info-left-tab .tab-item:nth-child(8) {
    border-bottom: 2px solid #C83538;
  }
}
.main .about-info-left .about-content {
  overflow: auto;
}
.main .about-info-left-tab {
  padding-top: 37px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 30%;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 625px) {
  .main .about-info-left-tab {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 625px) {
  .main .about-info-left-tab {
    width: 100%;
    height: 40%;
    border-right: none;
  }
}
.main .about-info-left-tab .tabs {
  height: 39px;
  width: 100%;
  border-right: 4px solid #C83538;
  position: absolute;
  transition: 0.3s;
  z-index: 0;
}
@media screen and (max-width: 625px) {
  .main .about-info-left-tab .tabs {
    display: none;
  }
}
.main .about-info-left-tab .tab-item {
  cursor: pointer;
  height: 39px;
  width: 100%;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-right: 4px solid transparent;
}
@media screen and (max-width: 625px) {
  .main .about-info-left-tab .tab-item {
    width: 33.3%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  .main .about-info-left-tab .tab-item:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 490px) {
  .main .about-info-left-tab .tab-item {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.main .about-info-left-tab .tab-item h3 {
  text-align: right;
  z-index: 1;
}
@media screen and (max-width: 625px) {
  .main .about-info-left-tab .tab-item h3 {
    text-align: center;
  }
}
.main .about-info-left-content {
  width: 80%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 625px) {
  .main .about-info-left-content {
    width: 100%;
  }
}
.main .about-info-left-content .about-content {
  position: absolute;
  z-index: 1;
  padding: 30px 30px;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  transition: 0.3s;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.main .about-info-left-content .about-content .about-contents {
  padding: 16px 0;
  width: 100%;
  z-index: 2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.main .about-info-left-content .about-content .about-contents:last-child {
  border-bottom: none;
}
.main .about-info-left-content .about-content .about-contents a {
  color: #000000;
}
.main .about-info-left-content .about-content .about-contents p {
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .main .about-info-left-content .about-content .about-contents {
    flex-direction: column;
  }
}
.main .about-info-left-content .about-content .about-contents-title {
  min-width: 40%;
  padding-right: 20px;
}
.main .about-info-left-content .about-content .about-contents-para {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .main .about-info-left-content .about-content .about-contents-para {
    width: 100%;
  }
}
.main .about-info-left-content .about-content .about-contents .sub-content-about {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main .about-info-left-content .about-content .about-contents .sub-content-about h3 {
  width: 40%;
  font-size: 16px;
}
@media screen and (max-width: 1203px) {
  .main .about-info-left-content .about-content .about-contents .sub-content-about h3 {
    font-weight: bold;
    width: 100%;
  }
}
@media screen and (max-width: 966px) {
  .main .about-info-left-content .about-content .about-contents .sub-content-about h3 {
    width: 40%;
  }
}
@media screen and (max-width: 800px) {
  .main .about-info-left-content .about-content .about-contents .sub-content-about h3 {
    width: 100%;
  }
}
.main .about-info-left-content .about-content .about-contents .sub-content-about .fz16 {
  width: 60%;
}
@media screen and (max-width: 1203px) {
  .main .about-info-left-content .about-content .about-contents .sub-content-about .fz16 {
    width: 100%;
  }
}
@media screen and (max-width: 966px) {
  .main .about-info-left-content .about-content .about-contents .sub-content-about .fz16 {
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .main .about-info-left-content .about-content .about-contents .sub-content-about .fz16 {
    width: 100%;
  }
}
.main .about-info-left-content .about-content .about-contents .sub-content-about .fz16 h3 {
  width: 100%;
}
@media screen and (max-width: 1203px) {
  .main .about-info-left-content .about-content .about-contents .sub-content-about .fz16 h3 {
    font-weight: 400;
  }
}
.main .about-info-left-content .about-content.active {
  transform: translateX(0%);
}
.main .about-info-right {
  width: 40%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 965px) {
  .main .about-info-right {
    width: 0%;
  }
}
.main .about-info-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.listsp-right-body {
  width: 100%;
}


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