/*----------------------------*/
.footer {
  width: 85%;
  margin: 15vh auto 0;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5vh;
}

@media all and (max-width: 480px) {
  .footer {
    width: 90%;
    margin-top: 8vh;
  }
}

.footer .gotop {
  width: 100%;
  text-align: right;
  border-bottom: 1px solid #fff;
  padding-right: 0.5vw;
  box-sizing: border-box;
  margin-bottom: 1vh;
}

@media all and (max-width: 480px) {
  .footer .gotop {
    margin-bottom: 1.5vh;
    padding-right: 3vw;
  }
}

.footer .gotop a {
  display: inline-block;
  color: #fff;
  padding: 0.5vw 1.5vw 0.5vw 1vw;
  font-size: 1vw;
  font-weight: bold;
  position: relative;
}

@media all and (max-width: 480px) {
  .footer .gotop a {
    padding: 1.5vw 4.5vw;
    font-size: 4vw;
  }
}

.footer .gotop a:hover {
  text-decoration: none;
}

.footer .gotop a:after {
  content: "";
  width: 0.8vw;
  height: 0.8vw;
  border-top: 1px solid #c1c1c1;
  border-left: 1px solid #c1c1c1;
  position: absolute;
  right: 0;
  bottom: 0.5vw;
  transform: rotate(45deg);
}

@media all and (max-width: 480px) {
  .footer .gotop a:after {
    width: 2.5vw;
    height: 2.5vw;
    bottom: 2vw;
  }
}

.footer .language {
  width: 50%;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .footer .language {
    width: 100%;
    font-size: 4.5vw;
    margin-bottom: 1.5vh;
    padding-left: 2vw;
  }
}

.footer .language a {
  color: #fff;
}

.footer .language a:hover {
  color: #fd0d1b;
  text-decoration: none;
}

.footer .language a img {
  width: 1.5vw;
  height: 1.5vw;
  margin-left: 0.5vw;
}

@media all and (max-width: 480px) {
  .footer .language a img {
    width: 5vw;
    height: 5vw;
  }
}

.footer .social {
  width: 50%;
  display: flex;
  justify-content: end;
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .footer .social {
    width: 100%;
    justify-content: start;
    font-size: 4.5vw;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 1.5vh;
    padding-left: 2vw;
  }
}

.footer .social a {
  color: #fff;
}

.footer .social a:hover {
  text-decoration: none;
}

.footer .social .terms-privacy {
  padding: 0 1vw;
}

.footer .social .terms-privacy:first-of-type {
  position: relative;
}

.footer .social .terms-privacy:first-of-type::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 80%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media all and (max-width: 480px) {
  .footer .social .terms-privacy:first-of-type::after {
    display: none;
  }
}

@media all and (max-width: 480px) {
  .footer .social .terms-privacy {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5vh;
  }
}

.footer .social .terms-privacy:hover {
  color: #fd0d1b;
}

.footer .social .social-icon {
  width: 1.8vw;
  height: 1.8vw;
  background-color: #fff;
  border-radius: 5px;
  margin-left: 0.5vw;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .footer .social .social-icon {
    width: 8.5vw;
    height: 8.5vw;
    margin-left: 2vw;
  }

  .footer .social .social-icon:last-of-type {
    margin-right: 2vw;
  }
}

.footer .social .social-icon:hover {
  background-color: #acacac;
}

.footer .social .social-icon img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.footer .copyright {
  color: #fff;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .footer .copyright {
    font-size: 3vw;
    padding-left: 2vw;
  }
}

[dir=rtl] .gotop {
  text-align: left;
}

[dir=rtl] .language {
  text-align: right;
}

@media all and (max-width: 480px) {
  [dir=rtl] .language {
    padding-right: 3vw !important;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .social {
    padding-right: 3vw;
  }
}

[dir=rtl] .social .terms-privacy:first-of-type::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 80%;
  top: 50%;
  left: 0;
  right: unset !important;
  transform: translateY(-50%);
}

@media all and (max-width: 480px) {
  [dir=rtl] .social .terms-privacy:first-of-type::after {
    display: none;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .social .terms-privacy {
    text-align: right;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .social .social-icon:last-of-type {
    margin-right: 0 !important;
  }
}

[dir=rtl] .copyright {
  text-align: right;
}

@media all and (max-width: 480px) {
  [dir=rtl] .copyright {
    padding-right: 3vw;
  }
}

/*---------------*/
/*----------------------------*/
#nav {
  width: 100%;
  position: relative;
}

#nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  top: 100%;
  background-color: #de0a16;
}

@media all and (max-width: 820px) {
  #nav::after {
    display: none;
  }
}

.adata-group {
  width: 100%;
  background-color: #111;
}

@media all and (max-width: 820px) {
  .adata-group {
    display: none;
  }
}

.adata-group ul {
  width: 85%;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: end;
}

@media all and (max-width: 1024px) {
  .adata-group ul {
    width: 90%;
  }
}

.adata-group ul li {
  color: #fff;
  margin-left: 1vw;
  padding: 0.5vw;
}

.adata-group ul li img {
  width: auto;
  height: 25px;
  transition: 0.3s;
}

@media all and (max-width: 1024px) {
  .adata-group ul li img {
    height: 20px;
  }
}

.adata-group ul li img:hover {
  opacity: 0.7;
}

.adata-group ul li .adata {
  height: 15px;
}

.main-nav {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  padding: 0 7.5%;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .main-nav {
    padding: 0 5%;
  }
}

@media all and (max-width: 820px) {
  .main-nav {
    display: none;
  }
}

.main-nav .logo {
  padding: 0.8vw 0;
  box-sizing: border-box;
}

.main-nav .logo img {
  width: auto;
  max-height: 40px;
  height: 4vh;
}

@media all and (max-width: 1024px) {
  .main-nav .logo img {
    max-height: 30px;
    height: 3vh;
  }
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul a {
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  height: 100%;
  box-sizing: border-box;
  line-height: 1;
}

.main-nav .first-nav {
  display: flex;
}

.main-nav .first-nav>li {
  align-items: stretch;
  margin: 0 0 0 1.5vw;
  padding: 0 1vw;
  box-sizing: border-box;
  position: relative;
}

.main-nav .first-nav>li:hover>.second-nav {
  display: block;
}

.main-nav .first-nav>li>a {
  display: inline-block;
  font-size: 1.2vw;
  padding-top: 1.2vw;
}

.main-nav .first-nav>li .second-nav {
  display: none;
  position: absolute;
  left: 0;
  background-color: #000;
  padding-bottom: 1vw;
  z-index: 5;
}

.main-nav .first-nav>li .second-nav .tabcontent {
  height: 100%;
  display: none;
  background-color: #0b0b0b;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.main-nav .first-nav>li .second-nav .tabcontent .nav-feature-area {
  padding: 1vw;
  box-sizing: border-box;
  width: 15vw;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.main-nav .first-nav>li .second-nav .tabcontent .nav-feature-area img {
  width: 100%;
  height: auto;
}

.main-nav .first-nav>li .second-nav .tabcontent .nav-feature-area h5 {
  color: #fff;
  font-size: 1vw;
  font-weight: bold;
  text-align: center;
  margin: 1vw 0;
}

.main-nav .first-nav>li .second-nav .tabcontent .nav-feature-area a {
  border: 1px solid #fff;
  color: #fff;
  padding: 0.3vw 1vw 0.4vw;
  display: inline-block;
  font-size: 0.8vw;
  height: auto;
  transition: 0.3s;
}

.main-nav .first-nav>li .second-nav .tabcontent .nav-feature-area a:hover {
  background-color: #fff;
  color: #000;
}

.main-nav .first-nav>li .second-nav .tabcontent .third-nav {
  background-color: #0b0b0b;
  padding-bottom: 1vw;
}

.main-nav .first-nav>li .second-nav .tabcontent .third-nav li {
  min-width: 10vw;
}

.main-nav .first-nav>li .second-nav .tabcontent .third-nav li:hover {
  background-color: #252525;
}

.main-nav .first-nav>li .second-nav .tabcontent .third-nav li a {
  display: block;
  font-size: 1vw;
  padding: 0.8vw 1.2vw;
}

.main-nav .first-nav>li .second-nav .hover-tab a {
  display: block;
  font-size: 1vw;
  padding: 0.8vw 1.1vw;
}

.main-nav .first-nav>li .second-nav .hover-tab a:hover {
  background-color: #2f2f2f;
}

.main-nav .first-nav>li .second-nav .hover-tab a.active {
  background-color: #2f2f2f;
}

.main-nav .first-nav>li .second-nav>li {
  position: relative;
  min-width: 10vw;
}

.main-nav .first-nav>li .second-nav>li:hover {
  background-color: #2f2f2f;
}

.main-nav .first-nav>li .second-nav>li:hover>.third-nav {
  display: block;
}

.main-nav .first-nav>li .second-nav>li>a {
  display: block;
  font-size: 1vw;
  padding: 0.8vw 1.1vw;
}

[dir=rtl] .adata-group ul li {
  margin-left: 0 !important;
  margin-right: 1vw;
}

[dir=rtl] .first-nav>li {
  margin: 0 1.5vw 0 0;
}

[dir=rtl] .first-nav .second-nav {
  right: 0;
  left: unset !important;
}

[dir=rtl] .first-nav .second-nav .tabcontent {
  left: 0;
  right: unset !important;
  transform: translateX(-100%) !important;
}

[dir=rtl] .first-nav .second-nav .tabcontent .third-nav li {
  text-align: right;
}

[dir=rtl] .first-nav .second-nav .hover-tab a {
  text-align: right;
}

[dir=rtl] .first-nav .second-nav>li>a {
  text-align: right;
}

/*--------------------------------------------------------------------------sp*/
.nav-sp {
  display: none;
}

@media all and (max-width: 820px) {
  .nav-sp {
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    padding-bottom: 2vh;
    position: relative;
  }

  .nav-sp .sp-nav-btn {
    border: none;
    margin: 1.5vh 5vw 0;
    width: 5vw;
    padding: 0;
    background-color: transparent;
  }
}

@media all and (max-width: 820px) and (max-width: 480px) {
  .nav-sp .sp-nav-btn {
    width: 8vw;
  }
}

@media all and (max-width: 820px) {
  .nav-sp .sp-nav-btn span {
    display: block;
    width: 100%;
    height: 3px;
    position: relative;
    background-color: #fff;
  }

  .nav-sp .sp-nav-btn span::before {
    content: "";
    position: absolute;
    width: 5vw;
    height: 3px;
    background-color: #fff;
    left: 0;
    top: -9px;
  }
}

@media all and (max-width: 820px) and (max-width: 480px) {
  .nav-sp .sp-nav-btn span::before {
    width: 8vw;
  }
}

@media all and (max-width: 820px) {
  .nav-sp .sp-nav-btn span::after {
    content: "";
    position: absolute;
    width: 5vw;
    height: 3px;
    background-color: #fff;
    left: 0;
    top: 9px;
  }
}

@media all and (max-width: 820px) and (max-width: 480px) {
  .nav-sp .sp-nav-btn span::after {
    width: 8vw;
  }
}

@media all and (max-width: 820px) {
  .nav-sp .sp-nav-transform {
    transform: translateX(0) !important;
  }

  .nav-sp .logo {
    position: absolute;
    padding: 1.5vh 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-sp .logo img {
    width: auto;
    height: 3.5vh;
  }

  .nav-sp .sp-nav-shop {
    margin: 2vh 5vw 0 0;
    min-height: 25px;
  }

  .nav-sp .sp-nav-shop ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }

  .nav-sp .sp-nav-shop ul li {
    margin-left: 3vw;
  }

  .nav-sp .sp-nav-shop ul li img {
    width: auto;
    height: 25px;
  }

  .nav-sp .sp-first-nav {
    transition: 0.3s;
    transform: translateX(-100%);
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
  }

  .nav-sp .sp-first-nav .sp-nav-close {
    position: fixed;
    border: none;
    top: 2vh;
    right: 5vw;
    background-color: transparent;
  }

  .nav-sp .sp-first-nav .sp-nav-close img {
    width: auto;
    height: 25px;
  }

  .nav-sp .sp-first-nav .sp-member {
    padding: 2vh 5vw 0;
  }

  .nav-sp .sp-first-nav .sp-member img {
    width: auto;
    height: 25px;
  }

  .nav-sp .sp-first-nav>ul {
    list-style: none;
    padding: 2vh 0;
    border-bottom: 1px solid #fff;
  }

  .nav-sp .sp-first-nav>ul>li {
    font-size: 6vw;
    padding: 1vh 5vw;
    line-height: 1;
    margin-bottom: 2vh;
  }

  .nav-sp .sp-first-nav>ul>li>a {
    display: block;
    color: #fff;
    position: relative;
  }

  .nav-sp .sp-first-nav>ul>li>a:hover {
    text-decoration: none;
  }

  .nav-sp .sp-first-nav>ul>li>a::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
  }

  .nav-sp .sp-first-nav>ul>li .sp-first-item:focus+.sp-second-nav {
    transform: translateX(0);
  }

  .nav-sp .sp-first-nav .sp-adata-gp {
    padding-left: 5vw;
  }

  .nav-sp .sp-first-nav .sp-adata-gp img {
    width: 30vw;
    height: auto;
  }

  .nav-sp .sp-first-nav .sp-second-nav {
    transition: 0.3s;
    transform: translateX(200%);
    position: fixed;
    background-color: #1a1a1a;
    top: 7vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 55;
    list-style: none;
    padding: 1vh 0;
  }

  .nav-sp .sp-first-nav .sp-second-nav>a {
    display: block;
    font-size: 6vw;
    padding: 1vh 5vw;
    position: relative;
    line-height: 1;
    margin-bottom: 2vh;
    color: #fff;
  }

  .nav-sp .sp-first-nav .sp-second-nav>a:hover,
  .nav-sp .sp-first-nav .sp-second-nav>a:focus {
    text-decoration: none;
  }

  .nav-sp .sp-first-nav .sp-second-nav .sp-nav-back {
    position: relative;
    padding-left: 12vw;
  }

  .nav-sp .sp-first-nav .sp-second-nav .sp-nav-back::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    left: 5vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(225deg) translateY(50%);
  }

  .nav-sp .sp-first-nav .sp-third-nav {
    transition: 0.3s;
    transform: translateX(200%);
    position: fixed;
    background-color: #1a1a1a;
    top: 7vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 60;
    list-style: none;
    padding: 1vh 0;
  }

  .nav-sp .sp-first-nav .sp-third-nav>a {
    display: block;
    font-size: 6vw;
    padding: 1vh 5vw;
    position: relative;
    line-height: 1;
    margin-bottom: 2vh;
    color: #fff;
  }

  .nav-sp::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    bottom: -5px;
    background-color: #de0a16;
    z-index: 3;
  }
}

[dir=rtl] .sp-first-nav>ul>li {
  text-align: right;
}

[dir=rtl] .sp-first-nav>ul>li a::after {
  top: 50%;
  right: unset;
  margin-right: 2vw;
  transform: rotate(225deg) translateY(50%);
}

[dir=rtl] .sp-first-nav .sp-adata-gp {
  text-align: right;
  padding-right: 5vw;
}

[dir=rtl] .sp-first-nav .sp-second-nav {
  transform: translateX(-100%);
}

[dir=rtl] .sp-first-nav .sp-second-nav .sp-nav-back {
  position: relative;
  padding-right: 10vw;
}

[dir=rtl] .sp-first-nav .sp-second-nav .sp-nav-back::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: unset;
  right: 5vw;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

/*--------------------------------------------------pd-detel-nav*/
.pd-detel-nav {
  width: 100%;
  padding: 0 7.5%;
  background-color: #333;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
  /*PC nav*/
  /*mobile nav*/
}

@media all and (max-width: 1024px) {
  .pd-detel-nav {
    padding: 0 5%;
  }
}

@media all and (max-width: 820px) {
  .pd-detel-nav {
    flex-wrap: wrap;
    padding: 0 5%;
  }
}

@media all and (max-width: 480px) {
  .pd-detel-nav {
    padding: 0;
  }
}

.pd-detel-nav .pd-nav-pdname {
  width: 40%;
  padding: 1.5vw 0 0.8vw;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .pd-detel-nav .pd-nav-pdname {
    padding: 2.5vw 0 2vw;
  }
}

@media all and (max-width: 820px) {
  .pd-detel-nav .pd-nav-pdname {
    padding: 2vw 0;
    width: 100%;
  }
}

@media all and (max-width: 480px) {
  .pd-detel-nav .pd-nav-pdname {
    width: 100%;
    padding: 3.5vw 5vw;
  }
}

.pd-detel-nav .pd-nav-pdname h2 {
  color: #fff;
  font-size: 1.25vw;
  line-height: 1;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 820px) {
  .pd-detel-nav .pd-nav-pdname h2 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-detel-nav .pd-nav-pdname h2 {
    font-size: 4.5vw;
    padding: 2vw 0 0;
    box-sizing: border-box;
  }
}

.pd-detel-nav .pd-nav-pdname .pd-nav-root {
  width: 100%;
  color: #999;
  font-size: 0.7vw;
  line-height: 1;
}

.pd-detel-nav .pd-nav-pdname .pd-nav-root a {
  color: #999;
}

.pd-detel-nav .pd-nav-pdname .pd-nav-root a:hover {
  text-decoration: underline;
  color: #ccc;
}

@media all and (max-width: 1024px) {
  .pd-detel-nav .pd-nav-pdname .pd-nav-root {
    font-size: 0.7vw;
  }
}

@media all and (max-width: 820px) {
  .pd-detel-nav .pd-nav-pdname .pd-nav-root {
    font-size: 1.2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-detel-nav .pd-nav-pdname .pd-nav-root {
    font-size: 3vw;
    line-height: 1.2;
  }
}

.pd-detel-nav .pd-nav-select {
  width: 60%;
  display: flex;
  justify-content: end;
  align-items: center;
}

@media all and (max-width: 820px) {
  .pd-detel-nav .pd-nav-select {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 1vw;
  }
}

.pd-detel-nav .pd-nav-select .pd-nav-list {
  color: #bbb;
  display: block;
  margin-left: 1vw;
  padding: 0.5vw 0.7vw;
  font-size: 0.95vw;
  position: relative;
  transition: 0.3s;
  line-height: 1;
}

@media all and (max-width: 820px) {
  .pd-detel-nav .pd-nav-select .pd-nav-list {
    font-size: 1.8vw;
    margin-left: 0;
    padding: 0.5vw 1.2vw;
  }
}

.pd-detel-nav .pd-nav-select .pd-nav-list:hover {
  text-decoration: none;
  color: #fff;
}

.pd-detel-nav .pd-nav-select .pd-nav-list:hover::after {
  opacity: 1;
}

.pd-detel-nav .pd-nav-select .pd-nav-list::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1vw;
  bottom: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s;
}

.pd-detel-nav .pd-nav-select .pd-nav-list:last-of-type::after {
  display: none;
}

.pd-detel-nav .pd-nav-select .active {
  color: #fff;
}

.pd-detel-nav .pd-nav-select .active::after {
  opacity: 1;
}

.pd-detel-nav .pd-nav-select .pd-buy {
  background-color: #de0a16;
  border-radius: 5px;
  transition: 0.3s;
  color: #fff;
}

.pd-detel-nav .pd-nav-select .pd-buy:hover {
  color: #de0a16;
  background-color: #fff;
}

@media all and (max-width: 480px) {
  .pd-detel-nav .pd-nav-select-sp {
    width: 100%;
    margin-bottom: 3vw;
    display: flex;
    justify-content: space-between;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-nav-list-sp {
    width: 60%;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-nav-list-sp .dropdown button {
    color: #ccc;
    padding: 0 0 0 5vw;
    line-height: 1;
    font-size: 4vw;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-nav-list-sp .dropdown button:focus {
    box-shadow: none;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-nav-list-sp .dropdown .dropdown-menu {
    width: 100vw;
    top: 150% !important;
    left: 0;
    transform: none !important;
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: #666;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-nav-list-sp .dropdown .dropdown-menu .dropdown-item {
    color: #fff;
    font-size: 4vw;
    margin-bottom: 1.5vw;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-nav-list-sp .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #333;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-buy-sp {
    width: 40%;
    text-align: right;
    margin-right: 5%;
  }

  .pd-detel-nav .pd-nav-select-sp .pd-buy-sp a {
    display: inline-block;
    background-color: #de0a16;
    color: #fff;
    font-size: 3.5vw;
    padding: 1vw 2.5vw;
    border-radius: 5px;
  }
}

[dir=rtl] .pd-nav-pdname {
  text-align: right;
}

[dir=rtl] .pd-nav-list-sp {
  text-align: right;
  padding-right: 5vw;
  box-sizing: border-box;
}

[dir=rtl] .pd-nav-list-sp .dropdown-menu {
  right: -5vw;
  left: 0;
}

/*----------------------------- site-search--*/
.site-search {
  width: 100%;
  background-color: #5b0011;
  text-align: center;
  padding: 2.5vw 25%;
  box-sizing: border-box;
  position: relative;
  display: none;
}

@media all and (max-width: 480px) {
  .site-search {
    padding: 2vh 10%;
  }
}

.site-search:target {
  display: block;
}

.site-search input {
  width: 100%;
  background: url(../images/search.svg) no-repeat transparent;
  background-size: auto 80%;
  background-position: 1% 50%;
  border: 1px solid #fff;
  font-size: 1vw;
  padding: 0.3vw 1vw 0.3vw 2.5vw;
  color: #fff;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .site-search input {
    padding-left: 3.5vw;
  }
}

@media all and (max-width: 480px) {
  .site-search input {
    padding: 1vw 2vw 1vw 8vw;
    font-size: 3.5vw;
  }
}

.site-search input:focus {
  border-radius: 0;
  outline: none;
}

.site-search a {
  position: absolute;
  width: 1.5vw;
  top: 50%;
  right: 23%;
  translate: 0 -50%;
}

@media all and (max-width: 480px) {
  .site-search a {
    width: 3.5vw;
    right: 5%;
  }
}

.site-search a img {
  width: 100%;
  height: auto;
}

/*----------------------------*/
/*----------------------------*/
.hp-topbn {
  width: 100%;
  background-color: #fd0c1c;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10vh;
  position: relative;
}

@media all and (max-width: 1024px) {
  .hp-topbn {
    padding-top: 50px;
  }
}

@media all and (max-width: 820px) {
  .hp-topbn {
    padding-top: 0;
  }
}

@media all and (max-width: 480px) {
  .hp-topbn {
    position: relative;
    padding-bottom: 30vh;
  }
}

.hp-topbn .hp-tbn-text {
  width: 50%;
  padding: 22vh 6vw 10vh 5.5vw;
  box-sizing: border-box;
  color: #fff;
}

@media all and (max-width: 1024px) {
  .hp-topbn .hp-tbn-text {
    padding: 10vh 6vw;
  }
}

@media all and (max-width: 480px) {
  .hp-topbn .hp-tbn-text {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 3vh 5.5vw 6vh;
    background-color: #fd0c1c;
  }
}

.hp-topbn .hp-tbn-text h2 {
  font-size: 3.5vw;
  font-weight: bold;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .hp-topbn .hp-tbn-text h2 {
    font-size: 8vw;
    margin-bottom: 2vw;
  }
}

.hp-topbn .hp-tbn-text h3 {
  font-size: 1.3vw;
  line-height: 1.2;
}

@media all and (max-width: 480px) {
  .hp-topbn .hp-tbn-text h3 {
    font-size: 3.5vw;
  }
}

.hp-topbn .hp-tbn-text h4 {
  font-size: 1.5vw;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 480px) {
  .hp-topbn .hp-tbn-text h4 {
    font-size: 5vw;
  }
}

.hp-topbn .hp-tbn-img {
  width: 50%;
  background: url(/images/hp-tbn-img-bg.svg) no-repeat top center;
  background-size: cover;
  text-align: center;
}

@media all and (max-width: 480px) {
  .hp-topbn .hp-tbn-img {
    width: 100%;
    background-size: cover;
  }
}

.hp-topbn .hp-tbn-img img {
  max-width: 35vw;
}

@media all and (max-width: 1024px) {
  .hp-topbn .hp-tbn-img img {
    max-width: 40vw;
  }
}

@media all and (max-width: 820px) {
  .hp-topbn .hp-tbn-img img {
    width: 100%;
    height: auto;
    max-width: 50vw;
  }
}

@media all and (max-width: 480px) {
  .hp-topbn .hp-tbn-img img {
    width: 100%;
    height: auto;
    max-width: 90vw;
  }
}

[dir=rtl] .hp-tbn-text {
  text-align: right;
}

/*--------------------------------------------------slide banner--*/
.hp-slide-bn {
  width: 70%;
  margin: 10vh auto 20vh;
}

@media all and (max-width: 1024px) {
  .hp-slide-bn {
    margin: 5vh auto 10vh;
  }
}

@media all and (max-width: 820px) {
  .hp-slide-bn {
    width: 80%;
  }
}

@media all and (max-width: 480px) {
  .hp-slide-bn {
    width: 100%;
    margin: 0 auto 5vh;
  }
}

.hp-slide-bn .slide-bn {
  border: 1px solid #fd0d1b;
  margin: 0;
  padding: 0;
}

.hp-slide-bn .slide-bn>div {
  line-height: 1;
}

.hp-slide-bn .slide-bn .slide-bn-item {
  position: relative;
}

.hp-slide-bn .slide-bn .slide-bn-item img {
  display: block;
}

.hp-slide-bn .slide-bn .slide-bn-item .slide-bn-text {
  position: absolute;
  z-index: 3;
  color: #fff;
  top: 15%;
  left: 5%;
  text-shadow: 0px 0px 5px #000, 0px 0px 5px #000;
  max-width: 50%;
}

.hp-slide-bn .slide-bn .slide-bn-item .slide-bn-text h2 {
  font-size: 2.8vw;
  line-height: 1;
  font-weight: bold;
}

.hp-slide-bn .slide-bn .slide-bn-item .slide-bn-text p {
  font-size: 1.2vw;
  line-height: 1.2;
  margin-bottom: 0;
}

/*--------------------------------------------------Community Collaboration--*/
.hp-Community {
  width: 100%;
  margin: 0;
  background-image: linear-gradient(to bottom, #7f0305 0%, #f30d1a 70%);
  padding: 10vh 0 15vh;
}

@media all and (max-width: 1024px) {
  .hp-Community {
    padding: 5vh 0 10vh;
  }
}

@media all and (max-width: 480px) {
  .hp-Community {
    padding: 8vh 0 10vh;
  }
}

.hp-Community h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  margin-bottom: 7vh;
  line-height: 1;
  padding: 0;
}

@media all and (max-width: 1024px) {
  .hp-Community h3 {
    font-size: 4vw;
    margin-bottom: 5vh;
  }
}

@media all and (max-width: 820px) {
  .hp-Community h3 {
    margin-bottom: 3.5vh;
  }
}

@media all and (max-width: 480px) {
  .hp-Community h3 {
    font-size: 7vw;
    margin-bottom: 5vh;
  }
}

.hp-Community .community-area {
  width: 70%;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .hp-Community .community-area {
    width: 80%;
  }
}

@media all and (max-width: 480px) {
  .hp-Community .community-area {
    width: 95%;
  }
}

.hp-Community .community-area .community-item {
  width: 90% !important;
  margin: 0 5%;
  box-sizing: border-box;
  position: relative;
}

.hp-Community .community-area .community-item:hover {
  box-shadow: 0px 0px 5px #000;
}

.hp-Community .community-area .community-item:hover .community-text {
  opacity: 1;
}

.hp-Community .community-area .community-item .community-text {
  opacity: 0;
  position: absolute;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.5vw;
  font-weight: 600;
  line-height: 1.5;
  padding: 8%;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .hp-Community .community-area .community-item .community-text {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
  }
}

@media all and (max-width: 480px) {
  .hp-Community .community-area .community-item .community-text {
    font-size: 7vw;
  }
}

[dir=rtl] .community-text {
  top: 0;
  right: 0;
  text-align: right;
}

/*--------------------------------------------------product category--*/
.hp-pd-area {
  width: 70%;
  margin: 10vh auto;
}

@media all and (max-width: 480px) {
  .hp-pd-area {
    width: 95%;
    margin: 8vh auto 10vh;
  }
}

.hp-pd-area h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  margin-bottom: 5vh;
}

@media all and (max-width: 1024px) {
  .hp-pd-area h3 {
    font-size: 4vw;
    margin-bottom: 3vh;
  }
}

@media all and (max-width: 480px) {
  .hp-pd-area h3 {
    font-size: 7vw;
  }
}

.hp-pd-area .hp-pd {
  padding: 1vw;
}

@media all and (max-width: 820px) {
  .hp-pd-area .hp-pd {
    display: none;
  }
}

.hp-pd-area .hp-pd .hp-pd-c-item {
  border: 1px solid #fd0d1b;
  width: 95% !important;
  margin: 0 2.5%;
  padding: 10% 10% 20%;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s;
}

.hp-pd-area .hp-pd .hp-pd-c-item:hover {
  background-color: #fd0d1b;
  border: none;
}

.hp-pd-area .hp-pd .hp-pd-c-item h4 {
  position: absolute;
  color: #fff;
  text-align: center;
  bottom: 5%;
  width: 80%;
  font-size: 0.9vw;
  font-weight: normal;
}

.hp-pd-area .hp-pd-sp {
  display: none;
}

@media all and (max-width: 820px) {
  .hp-pd-area .hp-pd-sp {
    display: flex;
    flex-wrap: wrap;
  }

  .hp-pd-area .hp-pd-sp .hp-pd-c-item {
    border: 1px solid #fd0d1b;
    width: 45%;
    margin: 0 2.5% 2vh;
    padding: 2% 5% 5%;
    box-sizing: border-box;
    position: relative;
  }

  .hp-pd-area .hp-pd-sp .hp-pd-c-item h4 {
    position: absolute;
    color: #fff;
    text-align: center;
    bottom: 5%;
    width: 100%;
    left: 0%;
    font-size: 2vw;
    font-weight: normal;
  }
}

@media all and (max-width: 820px) and (max-width: 480px) {
  .hp-pd-area .hp-pd-sp .hp-pd-c-item h4 {
    font-size: 3.5vw;
  }
}

/*--------------------------------------------------video--*/
.hp-video {
  width: 70%;
  margin: 10vh auto;
  border: 1px solid #fd0d1b;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .hp-video {
    margin: 5vh auto;
  }
}

@media all and (max-width: 820px) {
  .hp-video {
    width: 80%;
  }
}

@media all and (max-width: 480px) {
  .hp-video {
    width: 95%;
    margin: 5vh auto;
  }
}

.hp-video img {
  width: 100%;
  height: auto;
}

#hp-video .modal-content {
  background-color: transparent;
}

/*----------------------------------------------------------------*/
/*new homepage style*/
/*--------------------------------------------------slide banner--*/
#hp-top-slide-banner {
  width: 100%;
  padding-top: 11vh;
}

@media all and (max-width: 1024px) {
  #hp-top-slide-banner {
    padding-top: 10vh;
  }
}

@media all and (max-width: 820px) {
  #hp-top-slide-banner {
    padding-top: 6vh;
  }
}

@media all and (max-width: 480px) {
  #hp-top-slide-banner {
    padding-top: 7vh;
  }
}

#hp-top-slide-banner .carousel-item {
  position: relative;
}

#hp-top-slide-banner .carousel-item img {
  width: 100%;
  height: auto;
}

#hp-top-slide-banner .carousel-item .slide-bn-text {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 40%;
  translate: 0 -50%;
  text-shadow: 0 0 5px #000;
}

@media all and (max-width: 480px) {
  #hp-top-slide-banner .carousel-item .slide-bn-text {
    top: 5%;
    width: 85%;
    left: 7.5%;
    translate: 0 0;
  }
}

#hp-top-slide-banner .carousel-item .slide-bn-text h2 {
  font-size: 3.5vw;
  color: #fff;
  font-weight: bold;
}

@media all and (max-width: 480px) {
  #hp-top-slide-banner .carousel-item .slide-bn-text h2 {
    font-size: 7vw;
  }
}

#hp-top-slide-banner .carousel-item .slide-bn-text p {
  font-size: 1.5vw;
  color: #fff;
}

@media all and (max-width: 480px) {
  #hp-top-slide-banner .carousel-item .slide-bn-text p {
    font-size: 4vw;
  }
}

/*--------------------------------------------------feature banner--*/
.hp-feature-pd-bn {
  width: 100%;
  background-color: #333;
  display: flex;
  flex-wrap: wrap;
  padding: 2.5px 0;
  box-sizing: border-box;
}

.hp-feature-pd-bn .hp-ft-bn-list {
  padding: 2.5px;
  box-sizing: border-box;
  width: 50%;
  position: relative;
}

@media all and (max-width: 480px) {
  .hp-feature-pd-bn .hp-ft-bn-list {
    width: 100%;
    padding: 2.5px 0;
  }
}

.hp-feature-pd-bn .hp-ft-bn-list:nth-child(odd) {
  padding-left: 0;
}

.hp-feature-pd-bn .hp-ft-bn-list:nth-child(even) {
  padding-right: 0;
}

.hp-feature-pd-bn .hp-ft-bn-list img {
  width: 100%;
}

.hp-feature-pd-bn .hp-ft-bn-list .hp-ft-bn-text {
  position: absolute;
  width: 40%;
  left: 10%;
  top: 50%;
  translate: 0 -50%;
  text-shadow: 0 0 5px #000;
}

@media all and (max-width: 480px) {
  .hp-feature-pd-bn .hp-ft-bn-list .hp-ft-bn-text {
    width: 43%;
    left: 7%;
  }
}

.hp-feature-pd-bn .hp-ft-bn-list .hp-ft-bn-text h3 {
  color: #fff;
  font-size: 2vw;
}

@media all and (max-width: 480px) {
  .hp-feature-pd-bn .hp-ft-bn-list .hp-ft-bn-text h3 {
    font-size: 4.5vw;
    margin-bottom: 0.5vh;
  }
}

.hp-feature-pd-bn .hp-ft-bn-list .hp-ft-bn-text p {
  color: #fff;
  font-size: 1.2vw;
}

@media all and (max-width: 480px) {
  .hp-feature-pd-bn .hp-ft-bn-list .hp-ft-bn-text p {
    font-size: 3.5vw;
    line-height: 1;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------product category--*/
.hp-pdcg-area {
  width: 100%;
  margin: 0;
  padding: 3vw 10vw;
  background-color: #333;
}

.hp-pdcg-area h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  margin-bottom: 5vh;
}

@media all and (max-width: 1024px) {
  .hp-pdcg-area h3 {
    font-size: 4vw;
    margin-bottom: 3vh;
  }
}

@media all and (max-width: 480px) {
  .hp-pdcg-area h3 {
    font-size: 7vw;
  }
}

.hp-pdcg-area .hp-pd {
  padding: 1vw;
}

.hp-pdcg-area .hp-pd .hp-pd-c-item {
  width: 95% !important;
  margin: 0 2.5%;
  padding: 10% 10% 20%;
  box-sizing: border-box;
  transition: 0.3s;
}

.hp-pdcg-area .hp-pd .hp-pd-c-item a h4 {
  color: #fff;
  text-align: center;
  bottom: 5%;
  width: 80%;
  margin: 2vh auto;
  font-size: 0.9vw;
  font-weight: normal;
}

@media all and (max-width: 820px) {
  .hp-pdcg-area .hp-pd .hp-pd-c-item a h4 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .hp-pdcg-area .hp-pd .hp-pd-c-item a h4 {
    font-size: 4vw;
  }
}

.hp-pdcg-area .hp-pd .hp-pd-c-item a img {
  background-color: #222;
  border-radius: 50%;
}

.hp-pdcg-area .hp-pd .hp-pd-c-item a:hover {
  text-decoration: none;
}

.hp-pdcg-area .hp-pd .hp-pd-c-item a:hover img {
  outline: 3px solid #de0a16;
}

.hp-pdcg-area .hp-pd-sp {
  display: none;
}

@media all and (max-width: 820px) {
  .hp-pdcg-area .hp-pd-sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hp-pdcg-area .hp-pd-sp .hp-pd-c-item {
    width: 30%;
    margin-bottom: 2vh;
    padding: 2% 5%;
    box-sizing: border-box;
  }
}

@media all and (max-width: 820px) and (max-width: 480px) {
  .hp-pdcg-area .hp-pd-sp .hp-pd-c-item {
    width: 45%;
  }
}

@media all and (max-width: 820px) {
  .hp-pdcg-area .hp-pd-sp .hp-pd-c-item a:hover {
    text-decoration: none;
  }

  .hp-pdcg-area .hp-pd-sp .hp-pd-c-item a h4 {
    color: #fff;
    text-align: center;
    font-size: 2vw;
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 1vh;
  }
}

@media all and (max-width: 820px) and (max-width: 480px) {
  .hp-pdcg-area .hp-pd-sp .hp-pd-c-item a h4 {
    font-size: 3.5vw;
  }
}

@media all and (max-width: 820px) {
  .hp-pdcg-area .hp-pd-sp .hp-pd-c-item a img {
    background-color: #222;
    border-radius: 50%;
  }
}

/*--------------------------------------------------News--*/
.hp-news-ares {
  width: 80%;
  margin: 0 auto;
  padding: 5vh 0;
}

.hp-news-ares h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  margin-bottom: 5vh;
}

@media all and (max-width: 1024px) {
  .hp-news-ares h3 {
    font-size: 4vw;
    margin-bottom: 3vh;
  }
}

@media all and (max-width: 480px) {
  .hp-news-ares h3 {
    font-size: 7vw;
  }
}

.hp-news-ares .hp-news-list {
  width: 85% !important;
  margin: 0 7.5%;
  padding: 1vw;
  box-sizing: border-box;
}

.hp-news-ares .hp-news-list:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.hp-news-ares .hp-news-list img {
  width: 100%;
  height: auto;
  margin-bottom: 1vw;
}

.hp-news-ares .hp-news-list h4 {
  color: #fff;
  font-size: 1.2vw;
  height: 10vh;
  display: block;
}

@media all and (max-width: 820px) {
  .hp-news-ares .hp-news-list h4 {
    height: 6vh;
  }
}

@media all and (max-width: 480px) {
  .hp-news-ares .hp-news-list h4 {
    font-size: 4vw;
    height: 7vh;
  }
}

.hp-news-ares .hp-news-list p {
  color: #999;
  font-size: 0.8vw;
}

/*--------------------------------------------------Qlink--*/
.hp-qlink {
  margin: 5vw 0;
  display: flex;
}

@media all and (max-width: 480px) {
  .hp-qlink {
    flex-wrap: wrap;
  }
}

.hp-qlink .hp-qlink-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4vw 1vw;
  width: 25%;
  transition: 0.3s;
  position: relative;
}

@media all and (max-width: 480px) {
  .hp-qlink .hp-qlink-list {
    width: 50%;
    padding: 5vh 1vw;
  }

  .hp-qlink .hp-qlink-list:first-child,
  .hp-qlink .hp-qlink-list:last-child {
    background-color: #333 !important;
  }

  .hp-qlink .hp-qlink-list:nth-child(2),
  .hp-qlink .hp-qlink-list:nth-child(3) {
    background-color: #222 !important;
  }
}

.hp-qlink .hp-qlink-list:nth-child(odd) {
  background-color: #333;
}

.hp-qlink .hp-qlink-list:nth-child(even) {
  background-color: #222;
}

.hp-qlink .hp-qlink-list:hover {
  background-color: #de0a16 !important;
  text-decoration: none;
}

.hp-qlink .hp-qlink-list:hover span {
  opacity: 1;
  visibility: visible;
}

.hp-qlink .hp-qlink-list:hover span:first-of-type {
  top: 1vw;
  left: 1vw;
}

.hp-qlink .hp-qlink-list:hover span:nth-of-type(2) {
  left: 1vw;
  bottom: 1vw;
}

.hp-qlink .hp-qlink-list:hover span:nth-of-type(3) {
  top: 1vw;
  right: 1vw;
}

.hp-qlink .hp-qlink-list:hover span:last-of-type {
  right: 1vw;
  bottom: 1vw;
}

.hp-qlink .hp-qlink-list img {
  max-width: 10vw;
  height: auto;
  width: 100%;
}

@media all and (max-width: 480px) {
  .hp-qlink .hp-qlink-list img {
    max-width: 20vw;
  }
}

.hp-qlink .hp-qlink-list h4 {
  color: #fff;
  font-size: 1.2vw;
  text-align: center;
}

@media all and (max-width: 480px) {
  .hp-qlink .hp-qlink-list h4 {
    font-size: 3.5vw;
  }
}

.hp-qlink .hp-qlink-list span {
  position: absolute;
  width: 3vw;
  height: 3vw;
  background-color: #ff6565;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 10%, 10% 10%, 10% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 10%, 10% 10%, 10% 100%, 0 100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.hp-qlink .hp-qlink-list span:first-of-type {
  top: 0.8vw;
  left: 0.8vw;
}

.hp-qlink .hp-qlink-list span:nth-of-type(2) {
  left: 0.8vw;
  bottom: 0.8vw;
  rotate: -90deg;
}

.hp-qlink .hp-qlink-list span:nth-of-type(3) {
  top: 0.8vw;
  right: 0.8vw;
  rotate: 90deg;
}

.hp-qlink .hp-qlink-list span:last-of-type {
  right: 0.8vw;
  bottom: 0.8vw;
  rotate: 180deg;
}

/*---------------*/
/*------------------------------------------------------------------------------about--*/
.about-contact-area {
  width: 85%;
  margin: 20vh auto 0;
}

@media all and (max-width: 1024px) {
  .about-contact-area {
    margin: 10vh auto 0;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area {
    margin: 10vh auto 5vh;
  }
}

.about-contact-area h3 {
  width: 24%;
  display: inline-block;
  color: #fff;
  font-size: 2vw;
}

@media all and (max-width: 820px) {
  .about-contact-area h3 {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area h3 {
    width: 100%;
    font-size: 8vw;
    margin-bottom: 3vh;
  }
}

.about-contact-area nav {
  width: 75%;
  display: inline-block;
}

@media all and (max-width: 480px) {
  .about-contact-area nav {
    width: 100%;
  }
}

.about-contact-area nav .nav {
  width: 100%;
  justify-content: end;
  margin-bottom: 2vw;
}

.about-contact-area nav .nav .nav-link {
  min-width: 15vw;
  background-color: #333;
  text-align: center;
  padding: 1vw 2vw;
  box-sizing: border-box;
  margin-left: 1vw;
  font-size: 1vw;
  color: #fff;
  transform: skewX(-25deg);
  position: relative;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .about-contact-area nav .nav .nav-link {
    width: 33%;
    font-size: 1.8vw;
    padding: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area nav .nav .nav-link {
    width: 100%;
    font-size: 4vw;
    padding: 1.5vh;
    margin-bottom: 1.5vh;
    margin-left: 0;
  }
}

.about-contact-area nav .nav .nav-link:hover {
  text-decoration: none;
  background-color: #de0a16;
}

.about-contact-area nav .nav .nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #000;
  transform: translate(-50%, -50%);
}

.about-contact-area nav .nav .nav-link span {
  transform: skewX(25deg);
  display: block;
}

.about-contact-area nav .nav .active {
  background-color: #de0a16;
}

.about-contact-area .tab-content .tab-pane .contact-form {
  width: 90%;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .contact-form {
    width: 100%;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form .ct-form-info {
  color: #ccc;
  font-size: 1vw;
  margin: 2vw 0 0;
  padding: 0 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form .ct-form-info {
    font-size: 4vw;
    margin-bottom: 2vh;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form {
  border-bottom: 1px solid #fff;
  padding: 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form {
    padding: 2.5vh 2vw 2vh;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form h4 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .contact-form form h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form h4 {
    font-size: 6vw;
    margin-bottom: 3vh;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form h4 small {
  color: #ccc;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form h4 small {
    display: block;
    font-size: 3vw;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form h4 small span {
  color: #de0a16;
}

.about-contact-area .tab-content .tab-pane .contact-form form>p {
  color: #ccc;
  font-size: 0.9vw;
  margin: -1vw 0 2vw;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form>p {
    font-size: 4vw;
    margin: -1vh 0 2vh;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form .mr-50 {
  margin-right: 50%;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form .mr-50 {
    margin-right: 0;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form .form-group {
  width: 45%;
  margin-bottom: 1.8vw;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form .form-group {
    width: 100%;
    margin-bottom: 2vh;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form .form-group label {
  color: #fff;
  font-weight: 600;
  font-size: 1.1vw;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .contact-form form .form-group label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form .form-group label {
    font-size: 4.5vw;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form .form-group label span {
  color: #de0a16;
}

.about-contact-area .tab-content .tab-pane .contact-form form .form-group label small {
  font-size: 0.8vw;
  color: #999;
  margin-left: 1vw;
}

.about-contact-area .tab-content .tab-pane .contact-form form .form-group input[type=text],
.about-contact-area .tab-content .tab-pane .contact-form form .form-group select,
.about-contact-area .tab-content .tab-pane .contact-form form .form-group textarea {
  border-radius: 0;
  border: 1px solid #ccc;
}

.about-contact-area .tab-content .tab-pane .contact-form form .form-group p {
  color: #999;
  font-size: 0.8vw;
  line-height: 1.2;
  margin: 0.3vw 0 0;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form .form-group p {
    font-size: 3vw;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form form .form-group a {
  font-size: 0.8vw;
  color: #de0a16;
  display: inline-block;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form form .form-group a {
    font-size: 3.5vw;
    display: block;
    margin: -1vh 0 1vh;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form .validation-area {
  padding: 2vw;
  display: flex;
  align-items: center;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area {
    flex-wrap: wrap;
    margin: 2.5vh 0;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form .validation-area label {
  font-size: 1.1vw;
  font-weight: 600;
  color: #fff;
  margin-right: 1vw;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area label {
    font-size: 4.5vw;
    display: block;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form .validation-area input {
  width: 10vw;
  border-radius: 0;
  border: 1px solid #ccc;
  margin-right: 1vw;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area input {
    width: 20vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area input {
    display: block;
    width: 100%;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form .validation-area p {
  background-color: #333;
  color: #fff;
  font-size: 1vw;
  padding: 0.3vw 1vw;
  margin-bottom: 0;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area p {
    font-size: 3.5vw;
    padding: 1vw 2vw;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form .validation-area a {
  margin-left: 1vw;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area a {
    display: block;
    margin: 1.5vh 3vw;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form .validation-area a img {
  width: 1.2vw;
  height: auto;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area a img {
    width: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form .validation-area a img {
    width: 5vw;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form button {
  border: none;
  background-color: #de0a16;
  color: #fff;
  margin: 0 auto;
  display: block;
  width: 15vw;
  padding: 0.6vw;
  box-sizing: border-box;
  font-size: 1.2vw;
  margin-top: 2vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .contact-form button {
    font-size: 2.5vw;
    width: 35%;
    padding: 0.8vw;
    margin-top: 5vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .contact-form button {
    font-size: 4vw;
    width: 95%;
    padding: 1vh;
  }
}

.about-contact-area .tab-content .tab-pane .contact-form button:hover {
  background-color: #e43f47;
}

.about-contact-area .tab-content .tab-pane .office-region {
  width: 90%;
  margin: 0 auto 1.5vw;
  color: #fff;
  font-size: 1.5vw;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .office-region {
    width: 100%;
    font-size: 2.5vw;
  }

  .about-contact-area .tab-content .tab-pane .office-region:first-of-type {
    margin-top: 3vh;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .office-region {
    font-size: 6vw;
    margin-bottom: 1.5vh;
  }
}

.about-contact-area .tab-content .tab-pane .office-area {
  width: 90%;
  margin: 0 auto 3vw;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .office-area {
    width: 100%;
  }
}

.about-contact-area .tab-content .tab-pane .office-area .office-list {
  background-color: #222;
  padding: 1.5vw;
  box-sizing: border-box;
  width: 30%;
  color: #fff;
  text-align: center;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list {
    width: 100%;
    margin-bottom: 5vh;
    padding: 3vh 3vw;
  }
}

.about-contact-area .tab-content .tab-pane .office-area .office-list:nth-of-type(3n-1) {
  margin-left: 5%;
  margin-right: 5%;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list:nth-of-type(3n-1) {
    margin-left: 0;
    margin-right: 0;
  }
}

.about-contact-area .tab-content .tab-pane .office-area .office-list h5 {
  font-size: 1.2vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list h5 {
    font-size: 2vw;
    margin-bottom: 2vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list h5 {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}

.about-contact-area .tab-content .tab-pane .office-area .office-list .office-add {
  font-size: 1vw;
  min-height: 7vw;
  line-height: 1.5;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list .office-add {
    min-height: unset;
    margin-bottom: 3vw;
  }
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list .office-add {
    font-size: 4vw;
    margin-bottom: 3vh;
  }
}

.about-contact-area .tab-content .tab-pane .office-area .office-list .office-phone {
  font-size: 1vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list .office-phone {
    font-size: 4vw;
    margin-bottom: 1vh;
  }
}

.about-contact-area .tab-content .tab-pane .office-area .office-list .office-mail {
  font-size: 1vw;
  line-height: 1.4;
  margin: 0;
}

@media all and (max-width: 480px) {
  .about-contact-area .tab-content .tab-pane .office-area .office-list .office-mail {
    font-size: 4vw;
  }
}

.about-contact-area .tab-content .tab-pane .office-area .office-list .office-mail a {
  color: #fff;
}

/*------------------------------------------------------------------------------news--*/
.news-carousel-area {
  width: 75%;
  margin: 18vh auto 0;
}

@media all and (max-width: 820px) {
  .news-carousel-area {
    width: 85%;
    margin-top: 10vh;
  }
}

@media all and (max-width: 480px) {
  .news-carousel-area {
    width: 85%;
    margin-top: 10vh;
  }
}

.news-carousel-area .carousel-inner .carousel-item {
  position: relative;
}

.news-carousel-area .carousel-inner .carousel-item img {
  width: 100%;
  height: auto;
}

.news-carousel-area .carousel-inner .carousel-item .news-carousel-text {
  position: absolute;
  width: 100%;
  min-height: 20%;
  background-color: rgba(34, 34, 34, 0.8);
  left: 0;
  bottom: 0;
  padding: 1vw 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .news-carousel-area .carousel-inner .carousel-item .news-carousel-text {
    min-height: 25%;
    padding: 1.5vh 3vw;
  }
}

@media all and (max-width: 480px) {
  .news-carousel-area .carousel-inner .carousel-item .news-carousel-text {
    position: static;
    padding: 2vh 4.5vw 3vh;
    min-height: 20vh;
  }
}

.news-carousel-area .carousel-inner .carousel-item .news-carousel-text p {
  color: #fff;
  font-size: 1vw;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 820px) {
  .news-carousel-area .carousel-inner .carousel-item .news-carousel-text p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .news-carousel-area .carousel-inner .carousel-item .news-carousel-text p {
    font-size: 3.5vw;
    margin-bottom: 1vh;
  }
}

.news-carousel-area .carousel-inner .carousel-item .news-carousel-text h4 {
  color: #fff;
  font-size: 1.3vw;
}

@media all and (max-width: 820px) {
  .news-carousel-area .carousel-inner .carousel-item .news-carousel-text h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .news-carousel-area .carousel-inner .carousel-item .news-carousel-text h4 {
    font-size: 4.5vw;
  }
}

.news-carousel-area .carousel-indicators {
  position: static;
  padding: 1vw;
}

.news-carousel-area .carousel-control-prev {
  width: 3vw;
  height: 3vw;
  top: 45%;
  left: -5%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

@media all and (max-width: 480px) {
  .news-carousel-area .carousel-control-prev {
    width: 8vw;
    height: 8vw;
    left: 0;
    top: 30%;
    transform: translateY(0) rotate(45deg);
  }
}

.news-carousel-area .carousel-control-next {
  width: 3vw;
  height: 3vw;
  top: 45%;
  right: -5%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media all and (max-width: 480px) {
  .news-carousel-area .carousel-control-next {
    width: 8vw;
    height: 8vw;
    right: 0;
    top: 30%;
    transform: translateY(0) rotate(45deg);
  }
}

.news-title {
  color: #fff;
  text-align: center;
  width: 80%;
  margin: 5vw auto 3vw;
  font-size: 2vw;
}

@media all and (max-width: 820px) {
  .news-title {
    font-size: 3.5vw;
  }
}

@media all and (max-width: 480px) {
  .news-title {
    font-size: 8vw;
    margin: 5vh auto;
  }
}

.new-list-area {
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

@media all and (max-width: 820px) {
  .new-list-area {
    width: 85%;
  }
}

.new-list-area .news-list {
  background-color: #222;
  width: 30%;
  margin: 0 5% 3vw 0;
}

.new-list-area .news-list:nth-of-type(3n) {
  margin-right: 0;
}

@media all and (max-width: 480px) {
  .new-list-area .news-list {
    width: 100%;
    margin: 0 0 4vh;
  }
}

.new-list-area .news-list img {
  width: 100%;
  height: auto;
}

.new-list-area .news-list .news-text {
  padding: 1vw 1.5vw 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .new-list-area .news-list .news-text {
    padding: 2vh 4.5vw 3vh;
  }
}

.new-list-area .news-list .news-text p {
  color: #999;
  font-size: 1vw;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 820px) {
  .new-list-area .news-list .news-text p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .new-list-area .news-list .news-text p {
    font-size: 3.5vw;
    margin-bottom: 1vh;
  }
}

.new-list-area .news-list .news-text h5 {
  color: #fff;
  font-size: 1.2vw;
  margin-bottom: 1.5vw;
  min-height: 10vh;
}

@media all and (max-width: 820px) {
  .new-list-area .news-list .news-text h5 {
    font-size: 2.2vw;
  }
}

@media all and (max-width: 480px) {
  .new-list-area .news-list .news-text h5 {
    font-size: 4.5vw;
    min-height: unset;
    margin-bottom: 4vh;
  }
}

.new-list-area .news-list .news-text a {
  display: inline-block;
  background-color: #de0a16;
  color: #fff;
  font-size: 0.9vw;
  padding: 0.5vw 1vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .new-list-area .news-list .news-text a {
    font-size: 1.8vw;
    padding: 1vw 2vw;
  }
}

@media all and (max-width: 480px) {
  .new-list-area .news-list .news-text a {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.new-list-area .news-list .news-text a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #de0a16;
}

.page-style {
  width: 75%;
  margin: 5vh auto;
}

.page-style .page-link {
  background-color: #333;
  color: #fff;
  border: 1px solid #666;
}

.page-style .page-link:hover {
  background-color: #222;
}

.page-style .disabled .page-link {
  background-color: #222;
  color: #de0a16;
  border: 1px solid #666;
}

/*------------------------------------------------------------------------------news detel--*/
.news-detel-title-ares {
  width: 85%;
  margin: 18vh auto 0;
  border-bottom: 1px solid #fff;
  padding: 1.5vh 5% 2.5vh;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .news-detel-title-ares {
    width: 85%;
    margin-top: 8vh;
    padding: 1.5vh 2vw;
  }
}

@media all and (max-width: 480px) {
  .news-detel-title-ares {
    width: 85%;
    margin-top: 10vh;
    padding: 1.5vh 0 1.5vh;
  }
}

.news-detel-title-ares p {
  color: #999;
  font-size: 1vw;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 820px) {
  .news-detel-title-ares p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .news-detel-title-ares p {
    font-size: 3.5vw;
    margin-bottom: 1vh;
  }
}

.news-detel-title-ares h4 {
  color: #fff;
  font-size: 1.5vw;
}

@media all and (max-width: 820px) {
  .news-detel-title-ares h4 {
    font-size: 2.2vw;
  }
}

@media all and (max-width: 480px) {
  .news-detel-title-ares h4 {
    font-size: 4.5vw;
  }
}

.news-editer {
  width: 75%;
  padding: 0;
  margin: 5vh auto;
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .news-editer {
    width: 85%;
    padding: 0 2vw;
    margin: 3vh auto;
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .news-editer {
    padding: 0;
    font-size: 3.5vw;
  }
}

.news-editer img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 480px) {
  .news-editer img {
    width: 100%;
  }
}

.news-editer p {
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .news-editer p {
    margin-bottom: 2vh;
  }
}

@media all and (max-width: 480px) {
  .news-editer p {
    margin-bottom: 3vh;
  }
}

.news-back-btn {
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .news-back-btn {
    margin-bottom: 3vh;
  }
}

.news-back-btn a {
  display: inline-block;
  color: #fff;
  background-color: #de0a16;
  padding: 0.5vw 2vw;
  font-size: 1vw;
  text-align: center;
}

@media all and (max-width: 820px) {
  .news-back-btn a {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .news-back-btn a {
    font-size: 3.5vw;
    padding: 1vh 5vw;
    width: 30%;
  }
}

/*------------------------------------------------------------------------------ privacy + Terms of Use--*/
.privacy-area {
  width: 85%;
  margin: 20vh auto 0;
}

@media all and (max-width: 1024px) {
  .privacy-area {
    margin: 10vh auto 0;
  }
}

@media all and (max-width: 480px) {
  .privacy-area {
    margin: 10vh auto 5vh;
  }
}

.privacy-area h3 {
  font-size: 2vw;
  color: #fff;
  margin-bottom: 10vh;
}

@media all and (max-width: 1024px) {
  .privacy-area h3 {
    margin-bottom: 5vh;
    font-size: 2.5vw;
  }
}

@media all and (max-width: 820px) {
  .privacy-area h3 {
    font-size: 4vw;
  }
}

@media all and (max-width: 480px) {
  .privacy-area h3 {
    font-size: 8vw;
  }
}

.privacy-area .privacy-section {
  margin-bottom: 5vw;
}

@media all and (max-width: 480px) {
  .privacy-area .privacy-section {
    margin-bottom: 5vh;
  }
}

.privacy-area .privacy-section h4 {
  color: #de0a16;
  font-size: 1.3vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .privacy-area .privacy-section h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .privacy-area .privacy-section h4 {
    font-size: 5.5vw;
  }
}

.privacy-area .privacy-section h5 {
  color: #ff8b92;
  font-size: 0.9vw;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 820px) {
  .privacy-area .privacy-section h5 {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .privacy-area .privacy-section h5 {
    font-size: 4vw;
  }
}

.privacy-area .privacy-section p {
  font-size: 0.9vw;
  font-weight: normal;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1vw;
}

.privacy-area .privacy-section p strong {
  color: #ff8b92;
  font-weight: normal;
}

@media all and (max-width: 820px) {
  .privacy-area .privacy-section p {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .privacy-area .privacy-section p {
    font-size: 4vw;
  }
}

.privacy-area .privacy-section a {
  color: #ff8b92;
  text-decoration: underline;
  font-size: 0.9vw;
}

@media all and (max-width: 820px) {
  .privacy-area .privacy-section a {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .privacy-area .privacy-section a {
    font-size: 4vw;
  }
}

.privacy-area .privacy-section a:hover {
  color: #999;
}

/*------------------------------------language-Choose*/
.language-Choose {
  width: 85%;
  margin: 20vh auto 0;
}

@media all and (max-width: 1024px) {
  .language-Choose {
    margin: 10vh auto 0;
  }
}

@media all and (max-width: 480px) {
  .language-Choose {
    margin: 10vh auto 5vh;
  }
}

.language-Choose h2 {
  font-size: 2vw;
  color: #fff;
  margin-bottom: 10vh;
}

@media all and (max-width: 1024px) {
  .language-Choose h2 {
    margin-bottom: 5vh;
    font-size: 2.5vw;
  }
}

@media all and (max-width: 820px) {
  .language-Choose h2 {
    font-size: 4vw;
  }
}

@media all and (max-width: 480px) {
  .language-Choose h2 {
    font-size: 8vw;
  }
}

.language-Choose h5 {
  color: #fff;
  font-size: 1.2vw;
  font-weight: normal;
  margin-bottom: 10vh;
  padding: 0;
}

@media all and (max-width: 480px) {
  .language-Choose h5 {
    font-size: 5vw;
    margin-bottom: 8vh;
  }
}

.language-Choose h5 a {
  color: #fff;
  text-decoration: underline;
}

.language-Choose h5 a:hover {
  color: #ff8b92;
}

.language-Choose .region {
  margin: 0 0 10vh;
}

@media all and (max-width: 820px) {
  .language-Choose .region {
    margin-bottom: 5vh;
  }
}

@media all and (max-width: 480px) {
  .language-Choose .region {
    margin-bottom: 10vh;
  }
}

.language-Choose .region h4 {
  color: #de0a16;
  border-bottom: 1px solid #de0a16;
  font-size: 1.2vw;
  padding: 0.5vw 1vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .language-Choose .region h4 {
    font-size: 5vw;
    padding: 0 0 1vh;
    margin-bottom: 1vh;
  }
}

.language-Choose .region .country {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .language-Choose .region .country {
    padding: 0;
  }
}

.language-Choose .region .country a {
  display: inline-block;
  width: 20%;
  color: #fff;
  font-size: 0.9vw;
  margin-bottom: 1vw;
  line-height: 1.2;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .language-Choose .region .country a {
    width: 25%;
    font-size: 1.2vw;
  }
}

@media all and (max-width: 480px) {
  .language-Choose .region .country a {
    width: 50%;
    font-size: 3.5vw;
    margin-bottom: 2vh;
  }
}

.language-Choose .region .country a:hover {
  text-decoration: none;
  color: #ff8b92;
}

.language-Choose .region .other-country {
  width: 100%;
  padding: 0 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .language-Choose .region .other-country {
    padding: 0;
  }
}

.language-Choose .region .other-country a {
  display: inline-block;
  color: #fff;
  font-size: 0.9vw;
  margin-bottom: 1vw;
  line-height: 1.2;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .language-Choose .region .other-country a {
    font-size: 3.5vw;
    margin-bottom: 2vh;
  }
}

.language-Choose .region .other-country a:hover {
  text-decoration: none;
  color: #ff8b92;
}

.language-Choose .region .other-country a span {
  display: block;
  font-size: 0.7vw;
  color: #999;
}

/*-------------------------------------------------------------------Awards--*/
.about-award {
  width: 85%;
  margin: 20vh auto 0;
}

@media all and (max-width: 1024px) {
  .about-award {
    margin: 10vh auto 0;
  }
}

@media all and (max-width: 480px) {
  .about-award {
    margin: 10vh auto 5vh;
  }
}

.about-award .aw-top-titfit {
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit {
    flex-wrap: wrap;
  }
}

.about-award .aw-top-titfit h2 {
  font-size: 2vw;
  color: #fff;
  margin-bottom: 10vh;
}

@media all and (max-width: 1024px) {
  .about-award .aw-top-titfit h2 {
    margin-bottom: 5vh;
    font-size: 2.5vw;
  }
}

@media all and (max-width: 820px) {
  .about-award .aw-top-titfit h2 {
    font-size: 4vw;
  }
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit h2 {
    font-size: 8vw;
    margin-bottom: 3vh;
  }
}

.about-award .aw-top-titfit .aw-filter {
  display: flex;
  justify-content: end;
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit .aw-filter {
    width: 100%;
    flex-wrap: wrap;
  }
}

.about-award .aw-top-titfit .aw-filter select {
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  width: 15vw;
  text-align: left;
  font-size: 1vw;
  background-color: transparent;
  margin-left: 1vw;
}

@media all and (max-width: 820px) {
  .about-award .aw-top-titfit .aw-filter select {
    width: 20vw;
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit .aw-filter select {
    width: 100%;
    font-size: 4vw;
    margin-bottom: 2vh;
    margin-left: 0;
  }
}

.about-award .aw-top-titfit .aw-filter select option {
  color: #666;
  font-size: 0.9vw;
}

.about-award .aw-top-titfit .aw-filter .dropdown {
  position: relative;
  margin-left: 1vw;
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit .aw-filter .dropdown {
    margin: 0 0 2vh;
    width: 100%;
  }
}

.about-award .aw-top-titfit .aw-filter .dropdown::after {
  content: "";
  position: absolute;
  width: 0.7vw;
  height: 0.7vw;
  top: 0.5vw;
  right: 5%;
  z-index: 2;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  rotate: -45deg;
}

@media all and (max-width: 820px) {
  .about-award .aw-top-titfit .aw-filter .dropdown::after {
    top: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit .aw-filter .dropdown::after {
    width: 2vw;
    height: 2vw;
    top: 3vw;
  }
}

.about-award .aw-top-titfit .aw-filter .dropdown .btn {
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  width: 15vw;
  text-align: left;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .about-award .aw-top-titfit .aw-filter .dropdown .btn {
    width: 20vw;
  }
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit .aw-filter .dropdown .btn {
    width: 100%;
    font-size: 4vw;
  }
}

.about-award .aw-top-titfit .aw-filter .dropdown .dropdown-toggle::after {
  display: none;
}

.about-award .aw-top-titfit .aw-filter .dropdown .dropdown-menu {
  width: 100%;
  border-radius: 0;
  border: 1px solid #fff;
}

.about-award .aw-top-titfit .aw-filter .dropdown .dropdown-menu a {
  color: #666;
}

@media all and (max-width: 820px) {
  .about-award .aw-top-titfit .aw-filter .dropdown .dropdown-menu a {
    font-size: 1.5vw;
    padding: 1vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .about-award .aw-top-titfit .aw-filter .dropdown .dropdown-menu a {
    font-size: 4vw;
    padding: 2.5vw 5vw;
  }
}

.about-award .award-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

@media all and (max-width: 480px) {
  .about-award .award-list {
    justify-content: space-between;
  }
}

.about-award .award-list .aw-list-item {
  width: 18vw;
  margin-right: 3.9vw;
  margin-bottom: 5vw;
}

.about-award .award-list .aw-list-item:nth-child(4n) {
  margin-right: 0;
}

@media all and (max-width: 480px) {
  .about-award .award-list .aw-list-item {
    width: 40vw;
    margin-right: 0;
  }
}

.about-award .award-list .aw-list-item a:hover {
  text-decoration: none;
}

.about-award .award-list .aw-list-item a:hover .aw-img {
  background-color: #333;
}

.about-award .award-list .aw-list-item a .aw-img {
  background-color: #222;
  width: 18vw;
  height: 18vw;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 480px) {
  .about-award .award-list .aw-list-item a .aw-img {
    width: 40vw;
    height: 40vw;
  }
}

.about-award .award-list .aw-list-item a .aw-img img {
  width: auto;
  height: auto;
  max-width: 16vw;
  max-height: 16vw;
}

@media all and (max-width: 480px) {
  .about-award .award-list .aw-list-item a .aw-img img {
    max-width: 35vw;
    max-height: 35vw;
  }
}

.about-award .award-list .aw-list-item a h4 {
  color: #fff;
  text-align: center;
  font-size: 1.2vw;
  margin-top: 0.8vw;
}

@media all and (max-width: 480px) {
  .about-award .award-list .aw-list-item a h4 {
    font-size: 3.5vw;
    line-height: 1;
  }
}

.about-award .award-list .aw-list-item a h3 {
  color: #de0a16;
  text-align: center;
  font-size: 1vw;
  margin-bottom: 0;
  line-height: 1;
}

@media all and (max-width: 480px) {
  .about-award .award-list .aw-list-item a h3 {
    font-size: 3.5vw;
  }
}

.about-award .award-list .aw-list-item a p {
  color: #999;
  text-align: center;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .about-award .award-list .aw-list-item a p {
    font-size: 3vw;
  }
}

/*-------------------------------------------------------------about-career--*/
.about-career {
  width: 70vw;
  margin: 22vh auto 0;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .about-career {
    margin: 10vh auto 0;
    width: 80vw;
  }
}

@media all and (max-width: 480px) {
  .about-career {
    margin: 10vh auto 5vh;
    width: 85vw;
  }
}

.about-career h2 {
  text-align: center;
}

@media all and (max-width: 1024px) {
  .about-career h2 {
    display: none;
  }
}

.about-career h2 img {
  max-width: 13vw;
}

.about-career p {
  color: #fff;
  font-size: 1.5vw;
  line-height: 1.5;
  margin: 5vh 0;
  text-align: justify;
}

@media all and (max-width: 820px) {
  .about-career p {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .about-career p {
    font-size: 4.5vw;
    text-align: left;
  }
}

.about-career a {
  display: inline-block;
  background-color: #de0a16;
  color: #fff;
  font-size: 1.2vw;
  padding: 0.5vw 2vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .about-career a {
    font-size: 2vw;
    padding: 1vw 3vw;
  }
}

@media all and (max-width: 480px) {
  .about-career a {
    font-size: 4vw;
    padding: 1.5vw 5vw;
  }
}

.about-career a:hover {
  text-decoration: none;
  background-color: #e43f47;
}

.career-banner img {
  width: 100%;
  height: auto;
}

/*-----------------------------------------------------------------about us--*/
.xpg-video {
  position: relative;
  width: 100%;
}

@media all and (max-width: 820px) {
  .xpg-video {
    margin-top: 4vh;
  }
}

@media all and (max-width: 480px) {
  .xpg-video {
    margin-top: 6vh;
    height: 60vh;
    overflow-x: hidden;
  }
}

.xpg-video #myVideo {
  width: 100%;
}

@media all and (max-width: 480px) {
  .xpg-video #myVideo {
    height: 100%;
    width: auto;
    translate: -25% 0;
  }
}

.xpg-video .xpg-video-text {
  position: absolute;
  text-align: center;
  max-width: 50vw;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  filter: drop-shadow(0 0 5px #000);
}

@media all and (max-width: 480px) {
  .xpg-video .xpg-video-text {
    max-width: 85%;
    width: 85%;
  }
}

.xpg-video .xpg-video-text .logo {
  margin-bottom: 1.5vw;
}

@media all and (max-width: 480px) {
  .xpg-video .xpg-video-text .logo {
    margin-bottom: 2vh;
  }
}

.xpg-video .xpg-video-text .logo img {
  max-width: 15vw;
  width: 100%;
  height: auto;
}

@media all and (max-width: 820px) {
  .xpg-video .xpg-video-text .logo img {
    max-width: 20vw;
  }
}

@media all and (max-width: 480px) {
  .xpg-video .xpg-video-text .logo img {
    max-width: 35vw;
  }
}

.xpg-video .xpg-video-text h2 {
  color: #fff;
  font-size: 3vw;
  font-style: italic;
  margin-bottom: 1vw;
  text-shadow: 0 0 10px #000;
}

@media all and (max-width: 820px) {
  .xpg-video .xpg-video-text h2 {
    font-size: 3.5vw;
  }
}

@media all and (max-width: 480px) {
  .xpg-video .xpg-video-text h2 {
    font-size: 6vw;
    margin-bottom: 2vh;
  }
}

.xpg-video .xpg-video-text h4 {
  color: #fff;
  font-size: 1.5vw;
  font-weight: normal;
  text-shadow: 0 0 10px #000;
  line-height: 1.8;
}

@media all and (max-width: 820px) {
  .xpg-video .xpg-video-text h4 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .xpg-video .xpg-video-text h4 {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}

.ab-xpg-gttx {
  position: relative;
  margin-top: -8vh;
  width: 100%;
}

@media all and (max-width: 820px) {
  .ab-xpg-gttx {
    margin-top: -3vh;
  }
}

@media all and (max-width: 480px) {
  .ab-xpg-gttx {
    overflow-x: hidden;
    height: 65vh;
  }
}

.ab-xpg-gttx img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .ab-xpg-gttx img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
}

.ab-xpg-gttx .gttx-text-area {
  position: absolute;
  width: 60%;
  left: 50%;
  bottom: 15vh;
  translate: -50% 0;
}

@media all and (max-width: 820px) {
  .ab-xpg-gttx .gttx-text-area {
    width: 80%;
    bottom: 5vh;
  }
}

@media all and (max-width: 480px) {
  .ab-xpg-gttx .gttx-text-area {
    width: 85%;
    bottom: 3vh;
  }
}

.ab-xpg-gttx .gttx-text-area h2 {
  color: #fff;
  font-size: 3vw;
  margin-bottom: 1vw;
  text-align: center;
}

@media all and (max-width: 820px) {
  .ab-xpg-gttx .gttx-text-area h2 {
    font-size: 3.5vw;
  }
}

@media all and (max-width: 480px) {
  .ab-xpg-gttx .gttx-text-area h2 {
    font-size: 5.5vw;
  }
}

.ab-xpg-gttx .gttx-text-area h4 {
  color: #fff;
  font-size: 1.3vw;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
}

@media all and (max-width: 820px) {
  .ab-xpg-gttx .gttx-text-area h4 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .ab-xpg-gttx .gttx-text-area h4 {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}

.ab-history {
  background-color: #333;
  padding: 3.5vw 10%;
}

@media all and (max-width: 820px) {
  .ab-history {
    padding: 3.5vw 7.5vw;
  }
}

@media all and (max-width: 480px) {
  .ab-history {
    padding: 5vh 7.5vw;
  }
}

.ab-history h2 {
  color: #fff;
  font-size: 3vw;
  margin-bottom: 3vw;
  text-align: center;
}

@media all and (max-width: 820px) {
  .ab-history h2 {
    font-size: 3.5vw;
  }
}

@media all and (max-width: 480px) {
  .ab-history h2 {
    font-size: 6vw;
    margin-bottom: 3vh;
  }
}

.ab-history .nav {
  margin-bottom: 2vw;
  width: 100%;
}

@media all and (max-width: 480px) {
  .ab-history .nav {
    margin-bottom: 3vh;
  }
}

.ab-history .nav .nav-link {
  color: #fff;
  padding: 0.3vw 1vw;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .ab-history .nav .nav-link {
    font-size: 4vw;
    padding: 1vw 2vw;
  }
}

.ab-history .nav .active {
  background-color: #de0a16;
}

.ab-history .tab-pane h3 {
  color: #de0a16;
  border-bottom: 1px solid #de0a16;
  margin-bottom: 1.5vw;
  padding: 0.5vw 1vw;
  line-height: 1;
  font-size: 2vw;
  font-style: italic;
}

@media all and (max-width: 820px) {
  .ab-history .tab-pane h3 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .ab-history .tab-pane h3 {
    font-size: 7vw;
  }
}

.ab-history .tab-pane ul {
  list-style: none;
  margin-bottom: 4vw;
}

@media all and (max-width: 820px) {
  .ab-history .tab-pane ul {
    padding-left: 2vw;
  }
}

.ab-history .tab-pane ul li {
  color: #fff;
  font-size: 1vw;
  margin-bottom: 1vw;
  position: relative;
  padding-left: 1vw;
}

@media all and (max-width: 820px) {
  .ab-history .tab-pane ul li {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .ab-history .tab-pane ul li {
    font-size: 4vw;
    margin-bottom: 1.5vh;
    padding-left: 3vw;
  }
}

.ab-history .tab-pane ul li::before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 0.6vw;
  height: 0.6vw;
  -webkit-clip-path: polygon(0 0, 75% 50%, 0 100%);
  clip-path: polygon(0 0, 75% 50%, 0 100%);
  top: 35%;
  left: 0;
}

@media all and (max-width: 820px) {
  .ab-history .tab-pane ul li::before {
    top: 40%;
  }
}

@media all and (max-width: 480px) {
  .ab-history .tab-pane ul li::before {
    width: 2vw;
    height: 2vw;
    top: 1vh;
  }
}

.ab-great-gaming {
  padding: 5vw 0;
}

@media all and (max-width: 480px) {
  .ab-great-gaming {
    padding: 5vh 0;
  }
}

.ab-great-gaming h2 {
  color: #fff;
  font-size: 3vw;
  margin-bottom: 5vw;
  text-align: center;
}

@media all and (max-width: 480px) {
  .ab-great-gaming h2 {
    font-size: 5.5vw;
    margin-bottom: 5vh;
  }
}

.ab-great-gaming .ab-ggli-area {
  width: 85%;
  margin: 0 auto;
  padding: 1vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ab-great-gaming .ab-ggli-area .ab-gg-list {
  width: 48%;
  margin-bottom: 3vw;
  position: relative;
  border: 1px solid #ccc;
}

@media all and (max-width: 480px) {
  .ab-great-gaming .ab-ggli-area .ab-gg-list {
    width: 100%;
  }
}

.ab-great-gaming .ab-ggli-area .ab-gg-list:hover::after {
  background-color: rgba(0, 0, 0, 0.8);
}

.ab-great-gaming .ab-ggli-area .ab-gg-list:hover h4 {
  visibility: hidden;
}

.ab-great-gaming .ab-ggli-area .ab-gg-list:hover .ab-li-text {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.ab-great-gaming .ab-ggli-area .ab-gg-list::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  transition: 0.3s;
}

.ab-great-gaming .ab-ggli-area .ab-gg-list img {
  width: 100%;
  height: auto;
}

.ab-great-gaming .ab-ggli-area .ab-gg-list h4 {
  position: absolute;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  top: 50%;
  translate: 0 -50%;
  text-align: center;
  padding: 0;
  z-index: 10;
  font-size: 3vw;
  text-shadow: 0 0 5px #000;
  visibility: visible;
}

@media all and (max-width: 480px) {
  .ab-great-gaming .ab-ggli-area .ab-gg-list h4 {
    font-size: 7vw;
  }
}

.ab-great-gaming .ab-ggli-area .ab-gg-list .ab-li-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1vw;
  left: 0;
  padding: 2vw 3vw;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.5vw;
  z-index: 10;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

@media all and (max-width: 480px) {
  .ab-great-gaming .ab-ggli-area .ab-gg-list .ab-li-text {
    font-size: 4vw;
  }
}

.ab-exoskeleton {
  position: relative;
}

.ab-exoskeleton img {
  width: 100%;
  height: auto;
}

.ab-exoskeleton .ab-e-text {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 40%;
  text-shadow: 0 0 5px #000;
}

@media all and (max-width: 820px) {
  .ab-exoskeleton .ab-e-text {
    width: 45%;
  }
}

@media all and (max-width: 480px) {
  .ab-exoskeleton .ab-e-text {
    position: static;
    width: 85%;
    margin: 0 auto;
  }
}

.ab-exoskeleton .ab-e-text h3 {
  color: #fff;
  font-size: 3vw;
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .ab-exoskeleton .ab-e-text h3 {
    font-size: 5.5vw;
    margin-bottom: 2vh;
  }
}

.ab-exoskeleton .ab-e-text p {
  color: #fff;
  font-size: 1.4vw;
  line-height: 1.8;
  text-align: justify;
}

@media all and (max-width: 820px) {
  .ab-exoskeleton .ab-e-text p {
    font-size: 1.8vw;
    text-align: left;
  }
}

@media all and (max-width: 480px) {
  .ab-exoskeleton .ab-e-text p {
    font-size: 3.5vw;
    margin-bottom: 2vh;
  }
}

.ab-meet-mera {
  position: relative;
  width: 100%;
}

.ab-meet-mera img {
  width: 100%;
  height: auto;
}

.ab-meet-mera .meet-mera-text {
  position: absolute;
  width: 40%;
  top: 50%;
  right: 15%;
  translate: 0 -50%;
  text-shadow: 0 0 5px #000;
}

@media all and (max-width: 820px) {
  .ab-meet-mera .meet-mera-text {
    width: 55%;
    right: 5%;
  }
}

@media all and (max-width: 480px) {
  .ab-meet-mera .meet-mera-text {
    position: static;
    width: 85%;
    margin: -15vh auto 0;
    translate: 0 0;
  }
}

.ab-meet-mera .meet-mera-text h2 {
  color: #fff;
  font-size: 3vw;
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .ab-meet-mera .meet-mera-text h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.ab-meet-mera .meet-mera-text p {
  color: #fff;
  font-size: 1.2vw;
  line-height: 1.5;
  margin-bottom: 2vw;
}

.ab-meet-mera .meet-mera-text p a {
  color: #de0a16;
}

.ab-meet-mera .meet-mera-text p a:hover {
  text-decoration: none;
  color: #ff8b92;
}

@media all and (max-width: 820px) {
  .ab-meet-mera .meet-mera-text p {
    font-size: 1.8vw;
    text-align: left;
  }
}

@media all and (max-width: 480px) {
  .ab-meet-mera .meet-mera-text p {
    font-size: 3.5vw;
    margin-bottom: 2vh;
  }
}

/*-----------------------------------------------------------------member-center--*/
.member-center {
  padding: 0 7.5%;
  background: url(../images/about/member-bg.png) no-repeat top right;
  background-size: auto 100%;
}

@media all and (max-width: 1024px) {
  .member-center {
    background-size: 70% auto;
  }
}

@media all and (max-width: 820px) {
  .member-center {
    background-size: 100% auto;
  }
}

@media all and (max-width: 480px) {
  .member-center {
    background-position: 0 -10vh;
  }
}

.member-center .mb-ct-login {
  display: flex;
  padding: 10vh 0;
}

@media all and (max-width: 1024px) {
  .member-center .mb-ct-login {
    padding: 3vh 0;
  }
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login {
    flex-wrap: wrap;
    padding: 5vh 0;
  }
}

.member-center .mb-ct-login .mb-login-area {
  width: 45%;
  border-right: 1px solid #fff;
  padding: 5vh 5%;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .member-center .mb-ct-login .mb-login-area {
    padding: 3vh 5% 3vh 0;
  }
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-login-area {
    width: 60%;
    border-right: none;
    padding: 0;
    margin-bottom: 5vh;
  }
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-login-area {
    width: 100%;
  }
}

.member-center .mb-ct-login .mb-login-area h3 {
  color: #fff;
  margin-bottom: 5vh;
  font-size: 1.5vw;
}

@media all and (max-width: 1024px) {
  .member-center .mb-ct-login .mb-login-area h3 {
    margin-bottom: 3vh;
  }
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-login-area h3 {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-login-area h3 {
    font-size: 6vw;
  }
}

.member-center .mb-ct-login .mb-login-area form .form-group {
  margin-bottom: 4vh;
}

@media all and (max-width: 1024px) {
  .member-center .mb-ct-login .mb-login-area form .form-group {
    margin-bottom: 2vh;
  }
}

.member-center .mb-ct-login .mb-login-area form .form-group label {
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-login-area form .form-group label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-login-area form .form-group label {
    font-size: 3.5vw;
  }
}

.member-center .mb-ct-login .mb-login-area form .form-group input[type=text] {
  border-radius: 0;
}

.member-center .mb-ct-login .mb-login-area form .form-group button,
.member-center .mb-ct-login .mb-login-area form .form-group>a {
  width: 45%;
  background-color: #666;
  border-radius: 0;
  font-size: 1vw;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

@media all and (max-width: 820px) {

  .member-center .mb-ct-login .mb-login-area form .form-group button,
  .member-center .mb-ct-login .mb-login-area form .form-group>a {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {

  .member-center .mb-ct-login .mb-login-area form .form-group button,
  .member-center .mb-ct-login .mb-login-area form .form-group>a {
    font-size: 3.5vw;
  }
}

.member-center .mb-ct-login .mb-login-area form .form-group button:hover,
.member-center .mb-ct-login .mb-login-area form .form-group>a:hover {
  background-color: #333;
}

.member-center .mb-ct-login .mb-login-area form .form-group button.red {
  background-color: #de0a16;
}

.member-center .mb-ct-login .mb-login-area form .form-group button.red:hover {
  background-color: #ff8b92;
}

.member-center .mb-ct-login .mb-login-area form .vdcode {
  display: flex;
  flex-wrap: wrap;
}

.member-center .mb-ct-login .mb-login-area form .vdcode label {
  width: 100%;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-login-area form .vdcode label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-login-area form .vdcode label {
    font-size: 3.5vw;
  }
}

.member-center .mb-ct-login .mb-login-area form .vdcode input {
  width: 50%;
}

.member-center .mb-ct-login .mb-login-area form .vdcode .validation {
  display: flex;
  align-items: center;
}

.member-center .mb-ct-login .mb-login-area form .vdcode .validation p {
  margin: 0 1vw;
  background-color: #333;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.3vw 1vw;
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-login-area form .vdcode .validation p {
    margin: 0 3vw;
    font-size: 3.5vw;
    padding: 1vw 3vw;
  }
}

.member-center .mb-ct-login .mb-login-area form .vdcode .validation a img {
  width: 100%;
  height: auto;
  max-width: 1.5vw;
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-login-area form .vdcode .validation a img {
    max-width: 5vw;
  }
}

.member-center .mb-ct-login .mb-login-area form .forgot-password {
  margin-bottom: 4vh;
}

.member-center .mb-ct-login .mb-login-area form .forgot-password a {
  font-size: 0.9vw;
  color: #999;
  text-decoration: underline;
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-login-area form .forgot-password a {
    font-size: 1.5vw;
  }
}

.member-center .mb-ct-login .mb-login-area form .forgot-password a:hover {
  color: #ff8b92;
}

.member-center .mb-ct-login .mb-join-info {
  width: 55%;
  padding: 5vh 5%;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .member-center .mb-ct-login .mb-join-info {
    padding: 3vh 5%;
  }
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-join-info {
    width: 100%;
    padding: 0;
  }
}

.member-center .mb-ct-login .mb-join-info h3 {
  color: #fff;
  margin-bottom: 5vh;
  font-size: 1.5vw;
}

@media all and (max-width: 1024px) {
  .member-center .mb-ct-login .mb-join-info h3 {
    margin-bottom: 3vh;
  }
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-join-info h3 {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-join-info h3 {
    font-size: 6vw;
  }
}

.member-center .mb-ct-login .mb-join-info ul {
  margin: 0;
  padding-left: 1.5vw;
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-join-info ul {
    padding-left: 3vw;
  }
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-join-info ul {
    padding-left: 5vw;
  }
}

.member-center .mb-ct-login .mb-join-info ul li {
  color: #fff;
  font-size: 1.2vw;
  margin-bottom: 1.5vw;
  text-shadow: 1px 1px 3px #000;
  padding-right: 8vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .member-center .mb-ct-login .mb-join-info ul li {
    font-size: 2vw;
    margin-bottom: 1.5vh;
    padding-right: 0;
  }
}

@media all and (max-width: 480px) {
  .member-center .mb-ct-login .mb-join-info ul li {
    font-size: 4vw;
    margin-bottom: 3vh;
  }
}

.member-center .mb-ct-login .mb-join-info ul li a {
  color: #fff;
  text-decoration: underline;
}

.member-center .mb-ct-login .mb-join-info ul li a:hover {
  color: #ff8b92;
}

/*------------------------------------------member-login--*/
.member-content {
  width: 85%;
  margin: 0 auto;
}

.member-content .mb-foggot-pw {
  width: 40%;
  margin: 0 auto 20vh;
  padding-top: 5vh;
}

@media all and (max-width: 820px) {
  .member-content .mb-foggot-pw {
    width: 70%;
  }
}

@media all and (max-width: 480px) {
  .member-content .mb-foggot-pw {
    width: 100%;
  }
}

.member-content .mb-foggot-pw h3 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 2vh;
}

@media all and (max-width: 820px) {
  .member-content .mb-foggot-pw h3 {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .mb-foggot-pw h3 {
    font-size: 6vw;
  }
}

.member-content .mb-foggot-pw h5 {
  color: #999;
  font-size: 0.9vw;
  margin-bottom: 5vh;
}

@media all and (max-width: 480px) {
  .member-content .mb-foggot-pw h5 {
    font-size: 4.5vw;
  }
}

.member-content .mb-foggot-pw form .form-group {
  margin-bottom: 5vh;
}

.member-content .mb-foggot-pw form .form-group label {
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .mb-foggot-pw form .form-group label {
    font-size: 4vw;
  }
}

.member-content .mb-foggot-pw form .form-group input[type=text] {
  border-radius: 0;
}

.member-content .mb-foggot-pw form .form-group button {
  background-color: #de0a16;
  color: #fff;
  font-size: 0.9vw;
  padding: 0.4vw 2vw;
  border-radius: 0;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .member-content .mb-foggot-pw form .form-group button {
    font-size: 3.5vw;
    padding: 1.5vw 5vw;
  }
}

.member-content .mb-foggot-pw form .form-group button:hover {
  background-color: #ff8b92;
}

/*------------------------------------------creator account--*/
.member-content {
  /*---------------------------------------------------------------------------------*/
  /*member-nav*/
  /*member-sp-nav*/
  /*-------------------------------------------------------------------member right content area*/
}

.member-content .three-step {
  width: 85%;
  margin: 5vh auto;
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 820px) {
  .member-content .three-step {
    width: 100%;
  }
}

@media all and (max-width: 480px) {
  .member-content .three-step {
    width: 90%;
  }
}

.member-content .three-step .create-id-step {
  width: 32%;
  color: #999;
  border-bottom: 2px solid #999;
  text-align: center;
  font-size: 1.3vw;
  padding: 0.5vw 0;
}

@media all and (max-width: 820px) {
  .member-content .three-step .create-id-step {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .three-step .create-id-step {
    display: none;
    width: 100%;
    font-size: 4.5vw;
    padding: 1vh 0;
  }
}

.member-content .three-step .create-id-step.active {
  color: #de0a16;
  border-color: #de0a16;
}

@media all and (max-width: 480px) {
  .member-content .three-step .create-id-step.active {
    display: block;
  }
}

.member-content .create-id-form {
  width: 85%;
  margin: 0 auto;
  padding: 1vw 1.5vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .member-content .create-id-form {
    width: 100%;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-id-form {
    width: 90%;
    padding: 0;
  }
}

.member-content .create-id-form h4 {
  margin-bottom: 5vh;
  color: #fff;
  font-size: 1.3vw;
}

@media all and (max-width: 820px) {
  .member-content .create-id-form h4 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-id-form h4 {
    font-size: 4.5vw;
  }
}

.member-content .create-id-form form {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5vh;
}

.member-content .create-id-form form .form-group {
  width: 48%;
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .create-id-form form .form-group {
    width: 100%;
    margin-bottom: 2.5vh;
  }
}

.member-content .create-id-form form .form-group label {
  color: #fff;
  font-size: 1.1vw;
}

@media all and (max-width: 480px) {
  .member-content .create-id-form form .form-group label {
    font-size: 4vw;
  }
}

.member-content .create-id-form form .form-group .form-reset img {
  max-width: 1.5vw;
}

@media all and (max-width: 480px) {
  .member-content .create-id-form form .form-group .form-reset img {
    max-width: 5vw;
  }
}

.member-content .create-id-form form .form-group input,
.member-content .create-id-form form .form-group select {
  border-radius: 0;
}

.member-content .create-id-form form .form-group .v-code-input {
  width: 50%;
}

@media all and (max-width: 480px) {
  .member-content .create-id-form form .form-group .v-code-input {
    width: 100%;
  }
}

.member-content .create-id-form form .form-group.mr-50 {
  margin-right: 50%;
}

.member-content .create-id-form form .form-group.mr-50 p {
  display: inline-block;
  margin: 0 1vw;
  background-color: #333;
  color: #fff;
  font-size: 1vw;
  padding: 0.3vw 1vw;
}

@media all and (max-width: 480px) {
  .member-content .create-id-form form .form-group.mr-50 p {
    margin: 0 5vw 0 0;
    padding: 1vh 3.5vw;
    margin-top: 1.5vh;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-id-form form .form-group.mr-50 {
    margin-right: 0;
  }
}

.member-content .create-id-form .form-check {
  padding: 1.5vw 0;
}

@media all and (max-width: 480px) {
  .member-content .create-id-form .form-check {
    padding: 2vh 0;
  }
}

.member-content .create-id-form .form-check label {
  color: #fff;
  font-size: 1vw;
  position: relative;
  padding-left: 1.5vw;
}

@media all and (max-width: 820px) {
  .member-content .create-id-form .form-check label {
    font-size: 1.8vw;
    padding-left: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-id-form .form-check label {
    font-size: 3.5vw;
    line-height: 1.2;
    padding-left: 5vw;
  }
}

.member-content .create-id-form .form-check label::after {
  content: "";
  position: absolute;
  width: 1vw;
  height: 1vw;
  background-color: #fff;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  border: 2px solid #fff;
}

@media all and (max-width: 820px) {
  .member-content .create-id-form .form-check label::after {
    width: 1.5vw;
    height: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-id-form .form-check label::after {
    width: 3vw;
    height: 3vw;
    top: 30%;
  }
}

.member-content .create-id-form .form-check input[type=checkbox] {
  visibility: hidden;
}

.member-content .create-id-form .form-check input[type=checkbox]:checked+label::after {
  background-color: #de0a16;
}

.member-content .create-id-form .form-check p {
  margin-top: 0.5vw;
  color: #fff;
  font-size: 1vw;
  line-height: 1.5;
}

@media all and (max-width: 820px) {
  .member-content .create-id-form .form-check p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-id-form .form-check p {
    font-size: 3.5vw;
    padding-left: 5vw;
    margin-top: 1.5vh;
  }
}

.member-content .create-id-form .form-check p a {
  color: #de0a16;
}

.member-content .create-id-form .form-check p a:hover {
  text-decoration: underline;
}

.member-content .create-id-form .submit-btn {
  text-align: center;
  margin-top: 5vh;
}

.member-content .create-id-form .submit-btn button {
  width: 12vw;
  font-size: 1vw;
  background-color: #de0a16;
  color: #fff;
  padding: 0.7vw 0;
  line-height: 1;
  margin: 0 1vw;
  transition: 0.3s;
  border: none;
}

@media all and (max-width: 820px) {
  .member-content .create-id-form .submit-btn button {
    width: 30vw;
    font-size: 1.8vw;
    padding: 2vw 0;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-id-form .submit-btn button {
    width: 90%;
    margin: 0 auto 3vh;
    font-size: 4vw;
    padding: 1.5vh 0;
  }
}

.member-content .create-id-form .submit-btn button:hover {
  background-color: #e43f47;
}

.member-content .create-id-form .submit-btn .cancel {
  background-color: #666;
}

.member-content .create-id-form .submit-btn .cancel:hover {
  background-color: #444;
}

.member-content .create-check-email {
  width: 85%;
  margin: 0 auto 15vh;
  text-align: center;
}

.member-content .create-check-email p {
  color: #fff;
  font-size: 1vw;
  line-height: 1.5;
  margin-bottom: 5vh;
}

@media all and (max-width: 820px) {
  .member-content .create-check-email p {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-check-email p {
    font-size: 4.3vw;
  }
}

.member-content .create-check-email a {
  color: #fff;
  background-color: #de0a16;
  font-size: 0.9vw;
  padding: 0.5vw 1.5vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .member-content .create-check-email a {
    font-size: 2vw;
    padding: 1.5vw 3vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .create-check-email a {
    font-size: 4vw;
    padding: 1vh 5vw;
  }
}

.member-content .create-check-email a:hover {
  text-decoration: none;
  background-color: #e43f47;
}

.member-content .member-nav {
  width: 25%;
  background-color: #222;
  margin-top: 5vw;
  padding: 2vw;
  box-sizing: border-box;
}

.member-content .member-nav .member-nav-g {
  border-bottom: 1px solid #6b6b6b;
  padding: 1vw;
  box-sizing: border-box;
  margin-bottom: 1vw;
}

.member-content .member-nav .member-nav-g h4 {
  color: #fff;
  margin-bottom: 1vw;
  font-size: 1.2vw;
}

.member-content .member-nav .member-nav-g h4 a {
  color: #fff;
  transition: 0.3s;
}

.member-content .member-nav .member-nav-g h4 a:hover {
  color: #ff8b92;
  text-decoration: none;
}

.member-content .member-nav .member-nav-g>a {
  display: block;
  color: #ccc;
  font-size: 1vw;
  margin-bottom: 1vw;
  padding-left: 0.5vw;
  line-height: 1.2;
  transition: 0.3s;
}

.member-content .member-nav .member-nav-g>a:hover {
  color: #ff8b92;
  text-decoration: none;
}

.member-content .member-nav .member-nav-g>a.active {
  color: #ff8b92;
}

.member-content .member-nav .member-nav-g .member-photo {
  width: 6vw;
  height: 6vw;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.member-content .member-nav .member-nav-g .member-photo>img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  background-color: #333;
}

.member-content .member-nav .member-nav-g .member-photo a {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  z-index: 10;
  margin: 0;
  text-align: center;
  line-height: 1;
  align-items: center;
}

.member-content .member-nav .member-nav-g .member-photo a img {
  width: 100%;
  height: auto;
  max-width: 1.5vw;
}

.member-content .member-nav .member-nav-g .member-name {
  color: #fff;
  font-size: 1.2vw;
  text-align: center;
  margin-top: 0.8vw;
}

.member-content .member-nav .member-logout {
  padding: 1vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.member-content .member-nav .member-logout a {
  color: #999;
  font-size: 1.2vw;
  font-weight: bold;
  transition: 0.3s;
}

.member-content .member-nav .member-logout a:hover {
  color: #ff8b92;
  text-decoration: none;
}

.member-content .member-nav .member-logout a img {
  max-width: 1.5vw;
  width: 100%;
  height: auto;
  margin-right: 1vw;
}

.member-content .member-sp-nav {
  width: 100%;
  margin-bottom: 1vh;
  margin-top: 3vh;
}

.member-content .member-sp-nav button {
  background-color: #de0a16;
  width: 100%;
  color: #fff;
  border-radius: 0;
}

.member-content .member-sp-nav .dropdown-menu {
  width: 85%;
  border-radius: 0;
  background-color: #333;
  padding: 3vw;
  box-sizing: border-box;
}

.member-content .member-sp-nav .dropdown-menu .member-nav-g {
  border-bottom: 1px solid #6b6b6b;
  margin-bottom: 1.5vh;
  padding: 3vw 3vw 5vw;
  box-sizing: border-box;
}

.member-content .member-sp-nav .dropdown-menu .member-nav-g h4 {
  font-size: 4.5vw;
  color: #fff;
  margin-bottom: 1vh;
}

.member-content .member-sp-nav .dropdown-menu .member-nav-g a {
  color: #999;
  font-size: 4vw;
  display: block;
  padding-left: 3vw;
  margin-bottom: 0.5vh;
}

.member-content .member-sp-nav .dropdown-menu .member-logout {
  padding-bottom: 3vh;
}

.member-content .member-sp-nav .dropdown-menu .member-logout a {
  padding-left: 3vw;
  font-size: 4vw;
  color: #999;
}

.member-content .member-sp-nav .dropdown-menu .member-logout a img {
  width: 100%;
  max-width: 5vw;
  margin-right: 3vw;
}

.member-content .member-ct-area {
  width: 70%;
  margin-top: 5vw;
  /*--member center--*/
  /*A+ member*/
  /*My product*/
  /*Support link icon*/
  /*--------------------*/
  /*--Change password--*/
  /*--Unsubscribe Newsletters--*/
  /*--Delete Account--*/
  /*--Personal Info--*/
  /*--Login Management--*/
  /*--Product Registration--*/
  /*My Product*/
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area {
    width: 100%;
  }
}

.member-content .member-ct-area .aplus-point {
  background-color: #222;
  padding: 2vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point {
    padding: 3vw;
  }
}

.member-content .member-ct-area .aplus-point h4 {
  width: 85%;
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 0;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point h4 {
    width: 75%;
    font-size: 5vw;
  }
}

.member-content .member-ct-area .aplus-point .more-aplus-info {
  display: block;
  width: 15%;
  color: #de0a16;
  text-align: right;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .more-aplus-info {
    width: 25%;
    font-size: 3vw;
  }
}

.member-content .member-ct-area .aplus-point .member-point-area {
  width: 70%;
  margin-top: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .member-point-area {
    width: 100%;
    margin-top: 3vh;
    text-align: center;
  }
}

.member-content .member-ct-area .aplus-point .member-point-area h5 {
  color: #fff;
  font-size: 5vw;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .member-point-area h5 {
    font-size: 15vw;
  }
}

.member-content .member-ct-area .aplus-point .member-point-area h5 span {
  font-size: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .member-point-area h5 span {
    font-size: 5.5vw;
  }
}

.member-content .member-ct-area .aplus-point .member-point-area p {
  color: #999;
  font-size: 1.1vw;
  margin-bottom: 0;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .member-point-area p {
    font-size: 4.5vw;
  }
}

.member-content .member-ct-area .aplus-point .member-medal {
  width: 30%;
  text-align: center;
  margin-top: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .member-medal {
    width: 100%;
    margin-top: 3vh;
  }
}

.member-content .member-ct-area .aplus-point .member-medal p {
  color: #fff;
  font-size: 1.2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .member-medal p {
    font-size: 5vw;
  }
}

.member-content .member-ct-area .aplus-point .member-medal img {
  background-color: #000;
  border-radius: 50%;
  padding: 1vw;
  width: 100%;
  height: auto;
  max-width: 8vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .member-medal img {
    max-width: 35vw;
    padding: 3vw;
  }
}

.member-content .member-ct-area .aplus-point .progress {
  width: 100%;
  background-color: #000;
  border-radius: 50px;
  margin-top: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .progress {
    margin-top: 3vh;
  }
}

.member-content .member-ct-area .aplus-point .progress .progress-bar {
  background-color: #de0a16;
  border-radius: 30px;
  border: 1px solid #de0a16;
}

.member-content .member-ct-area .aplus-point .medal-icon {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .medal-icon {
    margin-top: 1vh;
  }
}

.member-content .member-ct-area .aplus-point .medal-icon img {
  width: 100%;
  max-width: 2vw;
  height: auto;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .aplus-point .medal-icon img {
    max-width: 6vw;
  }
}

.member-content .member-ct-area .member-mypd {
  background-color: #222;
  margin-top: 3vw;
  padding: 2vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd {
    padding: 3vw;
    margin-top: 3vh;
  }
}

.member-content .member-ct-area .member-mypd h4 {
  width: 85%;
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 0;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd h4 {
    width: 75%;
    font-size: 5vw;
  }
}

.member-content .member-ct-area .member-mypd .more-mypd-info {
  display: block;
  width: 15%;
  color: #de0a16;
  text-align: right;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .more-mypd-info {
    width: 25%;
    font-size: 3vw;
  }
}

.member-content .member-ct-area .member-mypd .mypd-list-intro {
  margin-top: 1vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .mypd-list-intro {
    margin-top: 2vh;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd {
  width: 100%;
  padding: 1vw;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd {
    /* width: 48%; */
    margin-bottom: 1.5vh;
  }
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd a {
  display: block;
  position: relative;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd a {
    padding: 3vw;
  }
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd a img {
  width: 100%;
  height: auto;
  rotate: 45deg;
  max-width: 2vw;
  background-color: #222;
  border-radius: 50%;
  transition: 0.3s;
  padding: 0.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd a img {
    max-width: 8vw;
    padding: 2vw;
  }
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd a:hover img {
  background-color: #e43f47;
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd p {
  color: #fff;
  font-size: 1vw;
  margin-top: 0.5vw;
  width: 100%;
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .mypd-list-intro .add-mypd p {
    font-size: 3vw;
    margin-top: 1vh;
  }
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .intro-mypd-item {
  width: 100%;
  padding: 1vw;
  background-color: #000;
  position: relative;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .mypd-list-intro .intro-mypd-item {
    /* width: 48%; */
    margin-bottom: 1.5vh;
  }
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .intro-mypd-item img {
  width: 100%;
  height: auto;
}

.member-content .member-ct-area .member-mypd .mypd-list-intro .intro-mypd-item h5 {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0.5vw;
  width: 100%;
  text-align: center;
  font-size: 1vw;
  font-weight: normal;
  text-shadow: 0px 0px 5px #000;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-mypd .mypd-list-intro .intro-mypd-item h5 {
    font-size: 3vw;
    padding: 2vw;
  }
}

.member-content .member-ct-area .member-sp-li {
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .member-sp-li {
    flex-wrap: wrap;
    margin-top: 3vh;
  }
}

.member-content .member-ct-area .member-sp-li .member-technical,
.member-content .member-ct-area .member-sp-li .member-inquiry {
  background-color: #222;
  padding: 1vw;
  width: 47.5%;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

@media all and (max-width: 480px) {

  .member-content .member-ct-area .member-sp-li .member-technical,
  .member-content .member-ct-area .member-sp-li .member-inquiry {
    width: 100%;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .member-sp-li .member-technical:hover,
.member-content .member-ct-area .member-sp-li .member-inquiry:hover {
  text-decoration: none;
  background-color: #333;
}

.member-content .member-ct-area .member-sp-li .member-technical .mb-sp-rtext h4,
.member-content .member-ct-area .member-sp-li .member-inquiry .mb-sp-rtext h4 {
  color: #fff;
  margin-bottom: 0.5vw;
  font-size: 1.1vw;
}

@media all and (max-width: 480px) {

  .member-content .member-ct-area .member-sp-li .member-technical .mb-sp-rtext h4,
  .member-content .member-ct-area .member-sp-li .member-inquiry .mb-sp-rtext h4 {
    font-size: 5vw;
  }
}

.member-content .member-ct-area .member-sp-li .member-technical .mb-sp-rtext p,
.member-content .member-ct-area .member-sp-li .member-inquiry .mb-sp-rtext p {
  color: #999;
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {

  .member-content .member-ct-area .member-sp-li .member-technical .mb-sp-rtext p,
  .member-content .member-ct-area .member-sp-li .member-inquiry .mb-sp-rtext p {
    font-size: 3vw;
  }
}

.member-content .member-ct-area .member-sp-li .member-technical img,
.member-content .member-ct-area .member-sp-li .member-inquiry img {
  width: 100%;
  height: auto;
  max-width: 5vw;
  margin: 0 1vw;
}

@media all and (max-width: 480px) {

  .member-content .member-ct-area .member-sp-li .member-technical img,
  .member-content .member-ct-area .member-sp-li .member-inquiry img {
    max-width: 15vw;
    margin: 0 3vw;
  }
}

.member-content .member-ct-area .mb-change-pw {
  width: 90%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-change-pw h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-change-pw h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-change-pw form {
  width: 50%;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-change-pw form {
    width: 75%;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-change-pw form {
    width: 100%;
  }
}

.member-content .member-ct-area .mb-change-pw form .form-group {
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-change-pw form .form-group {
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-change-pw form .form-group label {
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-change-pw form .form-group label {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-change-pw form .form-group input[type=text] {
  border-radius: 0;
}

.member-content .member-ct-area .mb-change-pw form .form-group button {
  background-color: #de0a16;
  color: #fff;
  border-radius: 0;
  margin-top: 3vh;
  font-size: 0.9vw;
  padding: 0.5vw 1.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-change-pw form .form-group button {
    font-size: 3.5vw;
    padding: 2vw 3.5vw;
    width: 100%;
    text-align: center;
  }
}

.member-content .member-ct-area .mb-change-pw form .form-group button:hover {
  background-color: #e43f47;
}

.member-content .member-ct-area .mb-change-pw form .form-group p {
  font-size: 1vw;
  color: #999;
  margin-left: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-change-pw form .form-group p {
    font-size: 3.5vw;
  }
}

.member-content .member-ct-area .mb-unsubscribe {
  width: 90%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-unsubscribe h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-unsubscribe h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-unsubscribe form {
  width: 75%;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-unsubscribe form {
    width: 100%;
  }
}

.member-content .member-ct-area .mb-unsubscribe form .form-group p {
  font-size: 1vw;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-unsubscribe form .form-group p {
    font-size: 3.5vw;
    margin-bottom: 2vh;
  }
}

.member-content .member-ct-area .mb-unsubscribe form .form-group input {
  border-radius: 0;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-unsubscribe form .form-group input {
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-unsubscribe form .form-group button {
  color: #fff;
  background-color: #de0a16;
  font-size: 1vw;
  padding: 0.3vw 1.5vw;
  border-radius: 0;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-unsubscribe form .form-group button {
    width: 30%;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-unsubscribe form .form-group button {
    width: 100%;
    font-size: 4vw;
    padding: 2vw;
  }
}

.member-content .member-ct-area .mb-unsubscribe form .form-group button:hover {
  background-color: #e43f47;
}

.member-content .member-ct-area .mb-deleteaccount {
  width: 90%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-deleteaccount h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-deleteaccount h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-deleteaccount form {
  width: 75%;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-deleteaccount form {
    width: 100%;
  }
}

.member-content .member-ct-area .mb-deleteaccount form .form-group p {
  font-size: 1vw;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-deleteaccount form .form-group p {
    font-size: 3.5vw;
    margin-bottom: 2vh;
  }
}

.member-content .member-ct-area .mb-deleteaccount form .form-group textarea {
  border-radius: 0;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-deleteaccount form .form-group textarea {
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-deleteaccount form .form-group button {
  display: inline-block;
  background-color: #de0a16;
  color: #fff;
  border-radius: 0;
  font-size: 0.9vw;
  margin-right: 1vw;
  vertical-align: middle;
}

.member-content .member-ct-area .mb-deleteaccount form .form-group button:hover {
  background-color: #e43f47;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-deleteaccount form .form-group button {
    width: 47%;
    margin-right: 4.5%;
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.member-content .member-ct-area .mb-deleteaccount form .form-group a {
  display: inline-block;
  color: #fff;
  padding: 0.3vw 1.5vw;
  font-size: 0.9vw;
  border: 1px solid #fff;
  vertical-align: middle;
  transition: 0.3s;
  box-sizing: border-box;
}

.member-content .member-ct-area .mb-deleteaccount form .form-group a:hover {
  text-decoration: none;
  background-color: #222;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-deleteaccount form .form-group a {
    padding: 0.7vw 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-deleteaccount form .form-group a {
    width: 47%;
    text-align: center;
    padding: 1.5vw 3vw;
    font-size: 3.5vw;
  }
}

.member-content .member-ct-area .mb-personalinfo {
  width: 100%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-personalinfo h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-personalinfo form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.member-content .member-ct-area .mb-personalinfo form .form-group {
  width: 47.5%;
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .form-group {
    width: 100%;
    margin-bottom: 2vh;
  }
}

.member-content .member-ct-area .mb-personalinfo form .form-group label {
  font-size: 1vw;
  color: #fff;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .form-group label {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-personalinfo form .form-group p {
  color: #999;
  padding-left: 1vw;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .form-group p {
    margin-bottom: 0;
    font-size: 3.5vw;
  }
}

.member-content .member-ct-area .mb-personalinfo form .form-group input,
.member-content .member-ct-area .mb-personalinfo form .form-group select {
  border-radius: 0;
  color: #333;
}

.member-content .member-ct-area .mb-personalinfo form .mr-50 {
  margin-right: 50%;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .mr-50 {
    margin-right: 0;
  }
}

.member-content .member-ct-area .mb-personalinfo form .form-check {
  width: 100%;
  margin-bottom: 3vw;
  padding-left: 0;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .form-check {
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-personalinfo form .form-check label {
  color: #fff;
  font-size: 1vw;
  position: relative;
  padding-left: 1.5vw;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-personalinfo form .form-check label {
    font-size: 1.8vw;
    padding-left: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .form-check label {
    font-size: 3.5vw;
    line-height: 1.2;
    padding-left: 5vw;
  }
}

.member-content .member-ct-area .mb-personalinfo form .form-check label::after {
  content: "";
  position: absolute;
  width: 1vw;
  height: 1vw;
  background-color: #ccc;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  border: 2px solid #ccc;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-personalinfo form .form-check label::after {
    width: 1.5vw;
    height: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .form-check label::after {
    width: 3vw;
    height: 3vw;
    top: 30%;
  }
}

.member-content .member-ct-area .mb-personalinfo form .form-check input[type=checkbox] {
  visibility: hidden;
}

.member-content .member-ct-area .mb-personalinfo form .form-check input[type=checkbox]:checked+label::after {
  background-color: #de0a16;
}

.member-content .member-ct-area .mb-personalinfo form .submit-btn {
  width: 100%;
}

.member-content .member-ct-area .mb-personalinfo form .submit-btn button {
  background-color: #de0a16;
  color: #fff;
  font-size: 0.9vw;
  padding: 0.3vw 1.5vw;
}

@media all and (max-width: 1024px) {
  .member-content .member-ct-area .mb-personalinfo form .submit-btn button {
    border: none;
  }
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-personalinfo form .submit-btn button {
    width: 30%;
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-personalinfo form .submit-btn button {
    width: 100%;
    font-size: 3.5vw;
    padding: 2vw;
  }
}

.member-content .member-ct-area .mb-loginmanagement {
  width: 90%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-loginmanagement h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-loginmanagement h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-loginmanagement .btn-area {
  margin-bottom: 5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-loginmanagement .btn-area {
    margin-bottom: 5vh;
  }
}

.member-content .member-ct-area .mb-loginmanagement .btn-area p {
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-loginmanagement .btn-area p {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-loginmanagement .btn-area a {
  display: inline-block;
  background-color: #de0a16;
  color: #fff;
  padding: 0.3vw 1.5vw;
  font-size: 0.9vw;
  transition: 0.3s;
}

.member-content .member-ct-area .mb-loginmanagement .btn-area a:hover {
  text-decoration: none;
  background-color: #e43f47;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-loginmanagement .btn-area a {
    font-size: 3.5vw;
    padding: 1.5vw 4vw;
  }
}

.member-content .member-ct-area .mb-loginmanagement .btn-area a.active {
  background-color: #333;
}

.member-content .member-ct-area .mb-loginmanagement .btn-area a.active:hover {
  background-color: #e43f47;
}

.member-content .member-ct-area .mb-pd-regist {
  width: 100%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-pd-regist h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-pd-regist>p {
  color: #fff;
  font-size: 1vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist>p {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-pd-regist form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.member-content .member-ct-area .mb-pd-regist form .form-group {
  width: 47.5%;
  margin-bottom: 2vw;
  position: relative;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group {
    margin-bottom: 3.5vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group {
    width: 100%;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group label {
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group label {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group input,
.member-content .member-ct-area .mb-pd-regist form .form-group select {
  border-radius: 0;
}

.member-content .member-ct-area .mb-pd-regist form .form-group .snb-notice {
  position: absolute;
  right: 0;
  bottom: -1.3vw;
  color: #de0a16;
  font-size: 0.8vw;
  line-height: 1;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group .snb-notice {
    bottom: -3vw;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group .snb-notice {
    font-size: 3vw;
    bottom: -5vw;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group input[type=file] {
  opacity: 0;
  border: 1px solid #fff;
}

.member-content .member-ct-area .mb-pd-regist form .form-group label.input-file-style {
  border: 1px solid #fff;
  width: 20%;
  position: relative;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group label.input-file-style {
    width: 70%;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group label.input-file-style span {
  display: block;
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group label.input-file-style span {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group .ip-fi-label {
  font-size: 1vw;
  color: #fff;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group .ip-fi-label {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group .ip-fi-notice {
  font-size: 0.8vw;
  color: #de0a16;
  display: inline;
  padding: 0;
  margin: 0 0 0 0.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group .ip-fi-notice {
    font-size: 3.5vw;
    display: block;
    margin: 0;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group button {
  border: none;
  background-color: #de0a16;
  color: #fff;
  font-size: 1vw;
  padding: 0.3vw 1.5vw;
  margin-top: 2vw;
  width: 20%;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-pd-regist form .form-group button {
    width: 100%;
    font-size: 4vw;
    padding: 2vw;
  }
}

.member-content .member-ct-area .mb-pd-regist form .form-group button:hover {
  background-color: #e43f47;
}

.member-content .member-ct-area .mb-myproduct {
  width: 100%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-myproduct h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-myproduct>p {
  color: #fff;
  font-size: 1vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct>p {
    font-size: 4vw;
    margin-bottom: 5vh;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title {
  display: flex;
  border-bottom: 1px solid #de0a16;
  padding: 0.8vw 0;
  box-sizing: border-box;
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title div {
  font-size: 0.8vw;
  font-weight: bold;
  color: #de0a16;
  line-height: 1;
  padding: 0 0.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title div {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title .mypd-pdname {
  width: 55%;
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title .mypd-serial-nb {
  width: 20%;
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title .mypd-serial-nb {
    display: none;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title .mypd-rs-date {
  width: 15%;
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title .mypd-rs-date {
    display: none;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title .mypd-quantity {
  width: 10%;
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-title .mypd-quantity {
    display: none;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item {
    flex-wrap: wrap;
    padding: 0 0 3vw;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item div {
  font-size: 0.8vw;
  color: #fff;
  line-height: 1;
  padding: 0.5vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item div {
    font-size: 4vw;
    padding: 1.5vw;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item div span {
  display: none;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item div span {
    display: block;
    width: 100%;
    color: #de0a16;
    font-size: 3.5vw;
    line-height: 1.5;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-img {
  width: 10%;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-img {
    width: 30%;
    padding: 0;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-img img {
  width: 100%;
  height: auto;
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-name {
  width: 45%;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-name {
    width: 70%;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-sn {
  width: 20%;
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-sn {
    width: 100%;
    text-align: left;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-rd {
  width: 15%;
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-rd {
    width: 50%;
    text-align: left;
  }
}

.member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-qt {
  width: 10%;
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .mypd-list-area .mypd-list-item .mypd-qt {
    width: 50%;
    text-align: left;
  }
}

.member-content .member-ct-area .mb-myproduct .no-pd {
  font-size: 1vw;
  color: #fff;
  margin: 1vw 0;
  padding-left: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct .no-pd {
    font-size: 4vw;
  }
}

.member-content .member-ct-area .mb-myproduct a.add-mypd {
  display: inline-block;
  color: #fff;
  background-color: #de0a16;
  padding: 0.3vw 1.5vw;
  font-size: 1vw;
  margin-top: 2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-myproduct a.add-mypd {
    width: 100%;
    text-align: center;
    margin-top: 5vh;
    font-size: 4vw;
    padding: 1.5vw 0;
  }
}

.member-content .member-ct-area .mb-myproduct a.add-mypd:hover {
  text-decoration: none;
  background-color: #e43f47;
}

.member-content .member-ct-area .mb-promotions {
  width: 100%;
  margin: 0 auto;
}

.member-content .member-ct-area .mb-promotions h2 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions h2 {
    font-size: 5.5vw;
    margin-bottom: 3vh;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-area {
  display: flex;
  flex-wrap: wrap;
}

.member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 2vw;
  position: relative;
}

.member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list:nth-child(3n) {
    margin-right: 5%;
  }
}

@media all and (max-width: 820px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list {
    width: 45%;
    margin-right: 5%;
  }
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list {
    width: 100%;
    margin-bottom: 2vh;
    margin-right: 0;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list img {
  width: 100%;
  height: auto;
}

.member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list .mb-promo-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1vw;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list .mb-promo-text {
    position: static;
    background-color: transparent;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list .mb-promo-text h4 {
  color: #fff;
  font-size: 1vw;
  margin-bottom: 0.3vw;
  line-height: 1.2;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list .mb-promo-text h4 {
    font-size: 5.5vw;
    margin-bottom: 1vw;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list .mb-promo-text p {
  font-size: 0.8vw;
  color: #ccc;
  margin: 0;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-area .mb-promo-list .mb-promo-text p {
    font-size: 3vw;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info {
  width: 100%;
  background-color: #222;
  padding: 1.5vw;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info {
    padding: 3vw;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-img {
  width: 35%;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info .promo-img {
    width: 100%;
    margin-bottom: 1vh;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-img img {
  width: 100%;
  height: auto;
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content {
  width: 60%;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content {
    width: 100%;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content h4 {
  color: #fff;
  font-size: 1.2vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content h4 {
    font-size: 5.5vw;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content .promo-date {
  color: #ccc;
  font-size: 0.8vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content .promo-date {
    margin-bottom: 1.5vh;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content .promo-info-content {
  margin-bottom: 2.5vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content .promo-info-content {
    margin-bottom: 3.5vh;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content .promo-info-content p {
  color: #ccc;
  font-size: 1vw;
  line-height: 1.3;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content .promo-info-content p {
    font-size: 4vw;
    margin-bottom: 2vh;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content>a {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  font-size: 0.9vw;
  margin-right: 1vw;
  padding: 0.3vw 1vw;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content>a {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
    margin-right: 0;
    display: block;
    margin-bottom: 1.5vh;
    text-align: center;
  }
}

.member-content .member-ct-area .mb-promotions .mb-promo-info .promo-content>a:hover {
  text-decoration: none;
  color: #de0a16;
  background-color: #fff;
}

[dir=rtl] .member-nav .member-nav-g {
  text-align: right;
}

[dir=rtl] .member-nav .member-nav-g>a {
  padding-right: 0.5vw;
}

[dir=rtl] .member-nav .member-logout img {
  margin-left: 1vw;
  margin-right: 0;
}

[dir=rtl] .member-ct-area .aplus-point h4 {
  text-align: right;
}

[dir=rtl] .member-ct-area .aplus-point .more-aplus-info {
  text-align: left;
}

[dir=rtl] .member-ct-area .aplus-point .member-point-area {
  text-align: right;
}

[dir=rtl] .member-ct-area .member-mypd h4 {
  text-align: right;
}

[dir=rtl] .member-ct-area .member-mypd .more-mypd-info {
  text-align: left;
}

[dir=rtl] .member-ct-area .member-sp-li .mb-sp-rtext {
  text-align: right;
}

/*----------------*/
/*---------------*/
/*--------------------------------------------------Category Page*/
.white-bg {
  background-color: #fff;
}

.pd-category-topbn {
  margin: 12vh 0 0;
  padding: 0;
}

@media all and (max-width: 1024px) {
  .pd-category-topbn {
    margin-top: 5vh;
  }
}

@media all and (max-width: 820px) {
  .pd-category-topbn {
    margin-top: 6vh;
  }
}

@media all and (max-width: 480px) {
  .pd-category-topbn {
    margin-top: 7.5vh;
  }
}

.pd-category-topbn .topbn-item {
  position: relative;
}

.pd-category-topbn .topbn-item .category-topbn-text {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 40vw;
  text-shadow: 0px 0px 5px #000;
}

@media all and (max-width: 820px) {
  .pd-category-topbn .topbn-item .category-topbn-text {
    top: 15%;
    left: 5%;
    width: 45vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-topbn .topbn-item .category-topbn-text {
    width: 85vw;
    left: 7%;
    top: 5%;
  }
}

.pd-category-topbn .topbn-item .category-topbn-text h3 {
  color: #fff;
  font-size: 3.5vw;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 2vh;
}

@media all and (max-width: 820px) {
  .pd-category-topbn .topbn-item .category-topbn-text h3 {
    font-size: 4vw;
    margin-bottom: 1vh;
  }
}

@media all and (max-width: 480px) {
  .pd-category-topbn .topbn-item .category-topbn-text h3 {
    font-size: 7vw;
    margin-bottom: 0.5vh;
  }
}

.pd-category-topbn .topbn-item .category-topbn-text p {
  color: #fff;
  font-size: 1.5vw;
  line-height: 1;
}

@media all and (max-width: 820px) {
  .pd-category-topbn .topbn-item .category-topbn-text p {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-topbn .topbn-item .category-topbn-text p {
    font-size: 3.5vw;
  }
}

.pd-category-topbn .topbn-item img {
  width: 100%;
  height: auto;
  display: block;
}

[dir=rtl] .cg-topbn-arabic {
  margin: 12vh 0 0;
  padding: 0;
}

@media all and (max-width: 1024px) {
  [dir=rtl] .cg-topbn-arabic {
    margin-top: 5vh;
  }
}

@media all and (max-width: 820px) {
  [dir=rtl] .cg-topbn-arabic {
    margin-top: 6vh;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .cg-topbn-arabic {
    margin-top: 7.5vh;
  }
}

[dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item {
  position: relative;
}

[dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item img {
  width: 100%;
  height: auto;
}

[dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 40vw;
  text-shadow: 0px 0px 5px #000;
}

@media all and (max-width: 820px) {
  [dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text {
    top: 15%;
    left: 5%;
    width: 45vw;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text {
    width: 85vw;
    left: 7%;
    top: 5%;
  }
}

[dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text h3 {
  color: #fff;
  font-size: 3.5vw;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 2vh;
}

@media all and (max-width: 820px) {
  [dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text h3 {
    font-size: 4vw;
    margin-bottom: 1vh;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text h3 {
    font-size: 7vw;
    margin-bottom: 0.5vh;
  }
}

[dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text p {
  color: #fff;
  font-size: 1.5vw;
  line-height: 1;
}

@media all and (max-width: 820px) {
  [dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text p {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .cg-topbn-arabic .carousel-inner .carousel-item .category-topbn-text p {
    font-size: 3.5vw;
  }
}

.pd-category-type {
  padding: 1vw 0;
  margin-top: -0.5vw;
  background-color: #333;
  display: flex;
  justify-content: center;
}

@media all and (max-width: 820px) {
  .pd-category-type {
    margin-top: -0.8vh;
  }
}

@media all and (max-width: 480px) {
  .pd-category-type {
    margin-top: -0.8vh;
    padding: 1vw 0 3vw;
  }
}

.pd-category-type .pd-type-list {
  width: 10%;
  text-align: center;
  margin: 0 3%;
  opacity: 0.5;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .pd-category-type .pd-type-list {
    width: 20%;
    opacity: 1;
  }
}

.pd-category-type .pd-type-list:hover {
  text-decoration: none;
  opacity: 1;
}

.pd-category-type .pd-type-list p {
  color: #fff;
  font-size: 1vw;
  margin-bottom: 0;
  line-height: 1;
}

@media all and (max-width: 820px) {
  .pd-category-type .pd-type-list p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-type .pd-type-list p {
    font-size: 2.5vw;
  }
}

.pd-category-type .pd-type-list img {
  width: 100%;
  height: auto;
  max-width: 6.5vw;
}

@media all and (max-width: 820px) {
  .pd-category-type .pd-type-list img {
    max-width: 10vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-type .pd-type-list img {
    max-width: 13vw;
  }
}

.add-bn-area {
  padding: 2vw 15%;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #111;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media all and (max-width: 820px) {
  .add-bn-area {
    padding: 2vw 7.5%;
  }
}

@media all and (max-width: 480px) {
  .add-bn-area {
    padding: 3vh 5%;
  }
}

.add-bn-area .add-bn-img {
  width: 55%;
}

.add-bn-area .add-bn-img img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .add-bn-area .add-bn-img {
    width: 100%;
  }
}

.add-bn-area .add-bn-text {
  text-align: center;
  width: 45%;
}

@media all and (max-width: 480px) {
  .add-bn-area .add-bn-text {
    margin-top: 1.5vh;
  }
}

.add-bn-area .add-bn-text h5 {
  color: #fff;
  font-size: 1.1vw;
  font-weight: normal;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .add-bn-area .add-bn-text h5 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .add-bn-area .add-bn-text h5 {
    font-size: 4.5vw;
    margin-bottom: 2vh;
  }
}

.add-bn-area .add-bn-text a {
  border: 1px solid #fff;
  font-size: 0.9vw;
  padding: 0.2vw 1.5vw 0.35vw;
  color: #fff;
  line-height: 1;
  transition: 0.3s;
  text-decoration: none;
}

@media all and (max-width: 480px) {
  .add-bn-area .add-bn-text a {
    font-size: 3.5vw;
    padding: 1vw 4vw 1.2vw;
  }
}

.add-bn-area .add-bn-text a:hover {
  background-color: #fff;
  color: #000;
}

@media all and (max-width: 480px) {
  .add-bn-area .add-bn-text {
    width: 100%;
  }
}

.pd-category-ftpd {
  width: 85%;
  margin: 0 auto;
}

.pd-category-ftpd h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  font-weight: bold;
  margin: 6vw 0 2vw;
}

@media all and (max-width: 820px) {
  .pd-category-ftpd h3 {
    font-size: 4.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-ftpd h3 {
    font-size: 7vw;
    margin: 10vw 0 0;
  }
}

.pd-category-ftpd .category-ftpd-list {
  justify-content: center;
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item {
  width: 90% !important;
  margin: 0 1%;
  padding: 0 1.5vw 1vw;
  box-sizing: border-box;
  transition: 0.3s;
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item:hover {
  text-decoration: none;
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item:hover h4 {
  color: #de0a16;
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item img {
  width: 100%;
  height: auto;
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item h4 {
  color: #fff;
  font-size: 1.25vw;
  text-align: left;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item h4 {
    font-size: 2.25vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item h4 {
    font-size: 5vw;
  }
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul {
  margin: 0;
  padding: 0 0 0 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul {
    padding-left: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul {
    padding-left: 4vw;
  }
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul li {
  font-size: 0.95vw;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.5vw;
  text-align: left;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul li {
    font-size: 3vw;
    margin-bottom: 1vw;
  }
}

.pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item p {
  font-size: 0.95vw;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.5vw;
  text-align: left;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item p {
    font-size: 3vw;
    margin-bottom: 1vw;
  }
}

.pd-category-ftpd .view-all-pd {
  text-align: center;
  margin-top: 2vw;
}

@media all and (max-width: 820px) {
  .pd-category-ftpd .view-all-pd {
    margin-top: 5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-ftpd .view-all-pd {
    margin-top: 8vw;
  }
}

.pd-category-ftpd .view-all-pd a {
  display: inline-block;
  color: #fff;
  background-color: #de0a16;
  padding: 0.5vw 2vw;
  font-size: 0.9vw;
  border-radius: 5px;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .pd-category-ftpd .view-all-pd a {
    font-size: 2vw;
    padding: 1vw 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-category-ftpd .view-all-pd a {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}

.pd-category-ftpd .view-all-pd a:hover {
  text-decoration: none;
  color: #de0a16;
  background-color: #fff;
}

[dir=rtl] .pd-category-ftpd {
  width: 85%;
  margin: 0 auto;
}

[dir=rtl] .pd-category-ftpd h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  font-weight: bold;
  margin: 6vw 0 2vw;
}

@media all and (max-width: 820px) {
  [dir=rtl] .pd-category-ftpd h3 {
    font-size: 4.5vw;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd h3 {
    font-size: 7vw;
    margin: 10vw 0 0;
  }
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list {
  justify-content: center;
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list {
    flex-wrap: wrap;
  }
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item {
  width: 23%;
  margin: 0 1%;
  padding: 0 1.5vw 1vw;
  box-sizing: border-box;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item {
    width: 48%;
  }
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item:hover {
  text-decoration: none;
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item:hover h4 {
  color: #de0a16;
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item img {
  width: 100%;
  height: auto;
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item h4 {
  color: #fff;
  font-size: 1.25vw;
  text-align: right;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item h4 {
    font-size: 2.25vw;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item h4 {
    font-size: 5vw;
  }
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul {
  margin: 0;
  padding: 0 0 0 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul {
    padding-left: 2vw;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul {
    padding-left: 4vw;
  }
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul li {
  font-size: 0.95vw;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.5vw;
  text-align: right;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item ul li {
    font-size: 3vw;
    margin-bottom: 1vw;
  }
}

[dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item p {
  font-size: 0.95vw;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.5vw;
  text-align: right;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .category-ftpd-list .ctgr-ftpd-item p {
    font-size: 3vw;
    margin-bottom: 1vw;
  }
}

[dir=rtl] .pd-category-ftpd .view-all-pd {
  text-align: center;
  margin-top: 2vw;
}

@media all and (max-width: 820px) {
  [dir=rtl] .pd-category-ftpd .view-all-pd {
    margin-top: 5vw;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .view-all-pd {
    margin-top: 8vw;
  }
}

[dir=rtl] .pd-category-ftpd .view-all-pd a {
  display: inline-block;
  color: #fff;
  background-color: #de0a16;
  padding: 0.5vw 2vw;
  font-size: 0.9vw;
  border-radius: 5px;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  [dir=rtl] .pd-category-ftpd .view-all-pd a {
    font-size: 2vw;
    padding: 1vw 2vw;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-category-ftpd .view-all-pd a {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}

[dir=rtl] .pd-category-ftpd .view-all-pd a:hover {
  text-decoration: none;
  color: #de0a16;
  background-color: #fff;
}

.pd-ctgr-preference {
  background-color: #333;
  padding-top: 5vw;
  padding-bottom: 2vw;
  margin-top: 5vw;
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference {
    padding-top: 10vw;
    padding-bottom: 5vw;
    margin-top: 10vw;
  }
}

.pd-ctgr-preference h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  font-weight: bold;
  margin-bottom: 2vw;
}

@media all and (max-width: 820px) {
  .pd-ctgr-preference h3 {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference h3 {
    font-size: 7vw;
    margin-bottom: 8vw;
  }
}

.pd-ctgr-preference .pd-ctgr-filter-area {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .pd-ctgr-filter-area {
    display: block;
    margin-bottom: 10vw;
  }
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown {
  width: 18%;
  margin: 0 1%;
}

@media all and (max-width: 820px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown {
    width: 22%;
    margin: 0 1%;
  }
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown {
    width: 100%;
    margin: 0 auto 2vh;
  }
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown button {
  width: 100%;
  border: 2px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 1vw;
  padding: 0.5vw 0;
}

@media all and (max-width: 820px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown button {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown button {
    font-size: 4vw;
    padding: 1.5vw 0;
  }
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu {
  width: 100%;
  margin-top: 0;
  padding: 1vw 0;
  border-radius: 0;
  border: none;
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check {
  padding: 0.5vw 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check {
    padding: 1.5vw 5vw;
  }
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check:hover {
  background-color: #ddd;
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check input[type=checkbox] {
  opacity: 0;
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check input[type=checkbox]:checked+label::before {
  background-color: #de0a16;
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check label {
  width: 100%;
  position: relative;
  padding-left: 1.5vw;
  font-size: 0.9vw;
}

@media all and (max-width: 820px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check label {
    padding-left: 2.5vw;
    font-size: 1.2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check label {
    padding-left: 5.5vw;
    font-size: 3vw;
  }
}

.pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #333;
}

@media all and (max-width: 820px) {
  .pd-ctgr-preference .pd-ctgr-filter-area .dropdown .dropdown-menu .form-check label::before {
    width: 14px;
    height: 14px;
  }
}

.pd-ctgr-preference .filter-results-pd {
  margin: 3vw auto;
  width: 85%;
}

.pd-ctgr-preference .filter-results-pd .filter-results-item {
  width: 90% !important;
  margin: 0 auto;
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .filter-results-pd .filter-results-item {
    width: 80% !important;
  }
}

.pd-ctgr-preference .filter-results-pd .filter-results-item a {
  color: #fff;
  transition: 0.3s;
}

.pd-ctgr-preference .filter-results-pd .filter-results-item a:hover {
  text-decoration: none;
  color: #666;
}

.pd-ctgr-preference .filter-results-pd .filter-results-item a:hover img {
  background-color: #666;
}

.pd-ctgr-preference .filter-results-pd .filter-results-item img {
  width: 100%;
  height: auto;
  background-color: #222;
  transition: 0.3s;
}

.pd-ctgr-preference .filter-results-pd .filter-results-item h4 {
  text-align: center;
  font-size: 1.2vw;
  margin-top: 1.5vw;
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .filter-results-pd .filter-results-item h4 {
    font-size: 5vw;
    margin-top: 3vw;
  }
}

.pd-ctgr-preference .cg-no-rs {
  width: 100%;
  color: #fff;
  margin-bottom: 5vh;
  font-size: 2vw;
  padding-left: 2vw;
  text-align: center;
}

@media all and (max-width: 820px) {
  .pd-ctgr-preference .cg-no-rs {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-ctgr-preference .cg-no-rs {
    font-size: 6vw;
  }
}

[dir=rtl] .filter-results-pd {
  margin: 3vw auto;
  width: 85%;
}

[dir=rtl] .filter-results-pd .filter-results-item {
  width: 90% !important;
  margin: 0 auto;
}

@media all and (max-width: 480px) {
  [dir=rtl] .filter-results-pd .filter-results-item {
    width: 80%;
  }
}

[dir=rtl] .filter-results-pd .filter-results-item a {
  color: #fff;
  transition: 0.3s;
}

[dir=rtl] .filter-results-pd .filter-results-item a:hover {
  text-decoration: none;
  color: #666;
}

[dir=rtl] .filter-results-pd .filter-results-item a:hover img {
  background-color: #666;
}

[dir=rtl] .filter-results-pd .filter-results-item img {
  width: 100%;
  height: auto;
  background-color: #222;
  transition: 0.3s;
}

[dir=rtl] .filter-results-pd .filter-results-item h4 {
  text-align: center;
  font-size: 1.2vw;
  margin-top: 1.5vw;
}

@media all and (max-width: 480px) {
  [dir=rtl] .filter-results-pd .filter-results-item h4 {
    font-size: 5vw;
    margin-top: 3vw;
  }
}

/*--------------------------------------------------Listing Page*/
.pd-listing {
  width: 85%;
  margin: 15vh auto 0;
  display: flex;
  /*---------pd-list-right*/
}

@media all and (max-width: 1024px) {
  .pd-listing {
    width: 90%;
    margin-top: 8vh;
  }
}

@media all and (max-width: 820px) {
  .pd-listing {
    width: 85%;
    flex-wrap: wrap;
  }
}

@media all and (max-width: 480px) {
  .pd-listing {
    width: 90%;
    margin-top: 7.5vh;
  }
}

.pd-listing .pd-tit-fi {
  width: 25%;
  margin: 0;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi {
    width: 100%;
  }
}

.pd-listing .pd-tit-fi .title-area {
  min-height: 15vh;
  padding-top: 2vw;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 1024px) {
  .pd-listing .pd-tit-fi .title-area {
    min-height: 6vh;
  }
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .title-area {
    min-height: 5vh;
    margin-bottom: 2vh;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-tit-fi .title-area {
    margin-bottom: 3vh;
  }
}

.pd-listing .pd-tit-fi .title-area h2 {
  color: #fff;
  font-size: 1.8vw;
  font-weight: bold;
  margin-bottom: 1vw;
  line-height: 1;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .title-area h2 {
    font-size: 4.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-tit-fi .title-area h2 {
    font-size: 8vw;
    margin-bottom: 1.5vh;
  }
}

.pd-listing .pd-tit-fi .title-area .root {
  color: #ccc;
  font-size: 0.8vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .title-area .root {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-tit-fi .title-area .root {
    font-size: 3.5vw;
  }
}

.pd-listing .pd-tit-fi .title-area .root a {
  color: #ccc;
}

.pd-listing .pd-tit-fi .title-area .root a:hover {
  color: #ccc;
}

.pd-listing .pd-tit-fi .pd-filter {
  background-color: #222;
  width: 85%;
  padding: 1vw 9% 4.5vw;
  box-sizing: border-box;
  color: #fff;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .pd-filter {
    width: 100%;
    padding: 1vw 4% 4.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-tit-fi .pd-filter {
    padding: 1.5vh 5% 4vh;
  }
}

.pd-listing .pd-tit-fi .pd-filter .filter-group {
  border-bottom: 1px solid #666;
}

.pd-listing .pd-tit-fi .pd-filter .filter-group .filter-na {
  color: #fff;
  width: 100%;
  text-align: left;
  border-radius: 0;
  font-size: 1.2vw;
  padding: 0.75vw;
  box-sizing: border-box;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group .filter-na {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group .filter-na {
    font-size: 2.5vw;
    padding: 1vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group .filter-na {
    font-size: 4.5vw;
    padding: 2vw 2vw;
  }
}

.pd-listing .pd-tit-fi .pd-filter .filter-group .filter-na:focus,
.pd-listing .pd-tit-fi .pd-filter .filter-group .filter-na:hover,
.pd-listing .pd-tit-fi .pd-filter .filter-group .filter-na:target {
  outline: none !important;
}

.pd-listing .pd-tit-fi .pd-filter .filter-group .form-check {
  padding-left: 0.75vw;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group .form-check {
    padding-left: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group .form-check {
    padding-left: 2vw;
  }
}

.pd-listing .pd-tit-fi .pd-filter .filter-group .form-check:last-of-type {
  margin-bottom: 2vw;
}

.pd-listing .pd-tit-fi .pd-filter .filter-group input[type=checkbox] {
  opacity: 0;
  margin: 0;
}

.pd-listing .pd-tit-fi .pd-filter .filter-group input[type=checkbox]:checked+label::before {
  background-color: #de0a16;
  border-color: #de0a16;
}

.pd-listing .pd-tit-fi .pd-filter .filter-group label {
  position: relative;
  padding-left: 1.5vw;
  font-size: 1vw;
}

@media all and (max-width: 1024px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group label {
    padding-left: 2.5vw;
  }
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group label {
    padding-left: 3vw;
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group label {
    padding-left: 5.5vw;
    font-size: 3.5vw;
  }
}

.pd-listing .pd-tit-fi .pd-filter .filter-group label::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media all and (max-width: 1024px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group label::before {
    width: 16px;
    height: 16px;
  }
}

@media all and (max-width: 820px) {
  .pd-listing .pd-tit-fi .pd-filter .filter-group label::before {
    width: 14px;
    height: 14px;
  }
}

.pd-listing .pd-right-list {
  width: 75%;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list {
    width: 100%;
  }
}

.pd-listing .pd-right-list .filter-results {
  min-height: 7vh;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .filter-results {
    margin: 2vh 0;
    min-height: unset;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .filter-results {
    margin: 5vh 0 3vw;
  }
}

.pd-listing .pd-right-list .filter-results ul {
  min-height: 15vh;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
}

@media all and (max-width: 1024px) {
  .pd-listing .pd-right-list .filter-results ul {
    min-height: 6vh;
  }
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .filter-results ul {
    min-height: 1vh;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.pd-listing .pd-right-list .filter-results ul li {
  border: 1px solid #de0a16;
  color: #fff;
  font-size: 1vw;
  line-height: 1;
  padding: 0.5vw 1vw;
  margin-right: 0.5vw;
  margin-top: 0.5vw;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .filter-results ul li {
    font-size: 1.8vw;
    margin-bottom: 1vw;
    margin-right: 1vw;
    padding: 1vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .filter-results ul li {
    font-size: 3.5vw;
    margin-bottom: 1.5vw;
    margin-right: 1.5vw;
    padding: 1.5vw 2vw;
  }
}

.pd-listing .pd-right-list .compatibility-icon {
  display: flex;
  justify-content: end;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .compatibility-icon {
    margin-bottom: 3vw;
  }
}

.pd-listing .pd-right-list .compatibility-icon a {
  width: 30%;
  background-color: #de0a16;
  color: #fff;
  display: block;
  text-align: center;
  position: relative;
  font-size: 0.9vw;
  line-height: 2.5vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .compatibility-icon a {
    width: 31%;
    font-size: 1.5vw;
    line-height: 4vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .compatibility-icon a {
    width: 100%;
    font-size: 4vw;
    line-height: 10vw;
  }
}

.pd-listing .pd-right-list .compatibility-icon a::before {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pd-listing .pd-right-list .compatibility-icon a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #de0a16;
}

.pd-listing .pd-right-list .pd-list-area {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area {
    justify-content: space-between;
  }
}

.pd-listing .pd-right-list .pd-list-area .no-rs {
  width: 100%;
  color: #fff;
  margin-bottom: 5vh;
  font-size: 2vw;
  padding-left: 2vw;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .pd-list-area .no-rs {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .no-rs {
    font-size: 6vw;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item {
  width: 30%;
  border: 1px solid #de0a16;
  margin-bottom: 3vw;
  padding: 1vw 0 3vw;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s;
}

@media all and (max-width: 1024px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item {
    padding-bottom: 3.5vh;
  }
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item {
    width: 31%;
    padding-bottom: 4vh;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item {
    width: 48%;
    margin: 0 0 5vw;
    padding-bottom: 5vh;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item:nth-of-type(3n + 2) {
  margin-left: 5%;
  margin-right: 5%;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item:nth-of-type(3n + 2) {
    margin-left: 3.5%;
    margin-right: 3.5%;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item:nth-of-type(3n + 2) {
    margin-left: 0;
    margin-right: 0;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item:hover {
  background-color: #800017;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item:hover>button {
  background-color: #fff;
  color: #de0a16;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a {
  width: 100%;
  display: block;
  padding: 0 2vw;
  box-sizing: border-box;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a:hover {
  text-decoration: none;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a img {
  width: 100%;
  height: auto;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color {
  list-style: none;
  margin: 1vw 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color {
    margin: 1vw 0 2vw;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color li {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0 0.3vw;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color li {
    width: 20px;
    height: 20px;
    margin: 0 1vw;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color .bk {
  background-color: #000;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color .gr {
  background-color: #666;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color .wt {
  background-color: #fff;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-color .rd {
  background-color: #de0a16;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text {
  min-height: 13vh;
}

@media all and (max-width: 1024px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text {
    min-height: 6vh;
  }
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text {
    min-height: 6vh;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text {
    min-height: 8vh;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text h3 {
  text-align: center;
  color: #fff;
  font-size: 1.25vw;
  font-weight: bold;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text h3 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text h3 {
    font-size: 3.5vw;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text h4 {
  text-align: center;
  color: #fff;
  font-size: 0.8vw;
  font-weight: normal;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text .pd-capacity {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text .pd-capacity li {
  color: #fff;
  border: 1px solid #fff;
  padding: 0 0.5vw;
  box-sizing: border-box;
  margin-right: 0.25vw;
  margin-left: 0.25vw;
  margin-bottom: 0.5vw;
  line-height: 1.8;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-text .pd-capacity li {
    margin-bottom: 1vw;
    margin-right: 1vw;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-Compare {
  position: absolute;
  bottom: 1vw;
  left: 50%;
  transform: translateX(-50%);
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-Compare label {
  color: #fff;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item a .pd-list-Compare label {
    font-size: 3.5vw;
  }
}

.pd-listing .pd-right-list .pd-list-area .pd-list-item>button {
  display: block;
  margin: 0.8vw auto 0;
  background-color: #de0a16;
  color: #fff;
  border: none;
  font-size: 1vw;
  padding: 0.2vw 1vw 0.3vw;
}

@media all and (max-width: 820px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item>button {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-listing .pd-right-list .pd-list-area .pd-list-item>button {
    margin-top: 2vh;
    font-size: 4vw;
    padding: 0.8vw 3.5vw 1vw;
  }
}

[dir=rtl] .pd-list-Compare input {
  position: static;
  margin-left: unset;
}

/*--------------------------------------------------pd-comparison*/
.pd-comparison {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  max-height: 25vh;
  background-color: #333;
  padding: 0;
  z-index: 50;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-comparison {
    max-height: 30vh;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison {
    max-height: 45vh;
  }
}

.pd-comparison .pd-comparison-area {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}

@media all and (max-width: 1024px) {
  .pd-comparison .pd-comparison-area {
    width: 90%;
  }
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area {
    flex-wrap: wrap;
  }
}

.pd-comparison .pd-comparison-area .compar-l-Icon {
  width: 25%;
  padding: 1.5vw 1vw 0;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon {
    padding: 1.5vw 1vw 0 0;
    margin-bottom: 2vh;
  }
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon {
    padding: 2vh 0;
    width: 100%;
    margin-bottom: 0;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon {
    padding: 2.5vh 0;
  }
}

.pd-comparison .pd-comparison-area .compar-l-Icon h5 {
  color: #fff;
  font-size: 1.2vw;
  margin-bottom: 1vw;
  line-height: 1;
}

@media all and (max-width: 1024px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon h5 {
    font-size: 2vw;
  }
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon h5 {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon h5 {
    font-size: 5vw;
  }
}

.pd-comparison .pd-comparison-area .compar-l-Icon p {
  color: #fff;
  font-size: 0.8vw;
  line-height: 1.2;
  padding-right: 1vw;
  box-sizing: border-box;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 1024px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon p {
    font-size: 1.2vw;
  }
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon p {
    font-size: 2vw;
    margin-bottom: 2vh;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon p {
    font-size: 3.5vw;
    margin-bottom: 1.5vh;
  }
}

.pd-comparison .pd-comparison-area .compar-l-Icon a {
  color: #fff;
  background-color: #de0a16;
  padding: 0.4vw 1vw;
  font-size: 0.8vw;
  border-radius: 5px;
  transition: 0.3s;
}

@media all and (max-width: 1024px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon a {
    font-size: 1.2vw;
    padding: 0.5vw 1.5vw;
  }
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon a {
    font-size: 2vw;
    padding: 0.8vw 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-l-Icon a {
    font-size: 3.5vw;
    padding: 1.2vw 3.5vw;
  }
}

.pd-comparison .pd-comparison-area .compar-l-Icon a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #de0a16;
}

.pd-comparison .pd-comparison-area .compar-r-list {
  width: 75%;
  display: flex;
  padding-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-r-list {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 1.5vh;
    padding-bottom: 3vh;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-r-list {
    margin-top: 2vh;
    padding-bottom: 2vh;
  }
}

.pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item {
  width: 23%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item {
    width: 50%;
    text-align: left;
    margin-bottom: 1vh;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item {
    width: 100%;
  }
}

.pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item .compar-close {
  position: absolute;
  top: 0.8vw;
  right: 0.5vw;
  width: 1vw;
  height: auto;
  opacity: 0.6;
  transition: 0.3s;
}

.pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item .compar-close:hover {
  opacity: 1;
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item .compar-close {
    top: 0;
    left: 0;
    right: unset;
    border: 1px solid #fff;
    width: 1.8vw;
    height: 1.8vw;
  }

  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item .compar-close img {
    display: block;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item .compar-close {
    width: 14px;
    height: 14px;
  }
}

.pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item img {
  width: 100%;
  height: auto;
  max-width: 9vw;
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item img {
    display: none;
  }
}

.pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item h4 {
  font-size: 0.9vw;
  color: #fff;
  line-height: 1;
  font-weight: normal;
}

@media all and (max-width: 820px) {
  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item h4 {
    font-size: 2vw;
    padding-left: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison .pd-comparison-area .compar-r-list .compar-pd-item h4 {
    font-size: 4vw;
    padding-left: 5.5vw;
    box-sizing: border-box;
  }
}

.pd-comparison input[type=checkbox] {
  opacity: 0;
  transform: translateX(-100%);
  position: absolute;
}

.pd-comparison input[type=checkbox]:checked+.pd-comparison-area {
  height: 1vh;
}

@media all and (max-width: 480px) {
  .pd-comparison input[type=checkbox]:checked+.pd-comparison-area {
    height: 2vh;
  }
}

.pd-comparison label {
  position: absolute;
  background-color: #333;
  top: 0;
  right: 5vw;
  transform: translateY(-80%);
  border-radius: 5px;
  width: 2vw;
  height: 1.5vw;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .pd-comparison label {
    width: 3.5vw;
    height: 2vw;
  }
}

@media all and (max-width: 820px) {
  .pd-comparison label {
    width: 5vw;
    height: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison label {
    width: 10vw;
    height: 5vw;
  }
}

.pd-comparison label::after {
  content: "";
  width: 0.8vw;
  height: 0.8vw;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  top: 5%;
  left: 50%;
}

@media all and (max-width: 820px) {
  .pd-comparison label::after {
    width: 1.5vw;
    height: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-comparison label::after {
    width: 2.5vw;
    height: 2.5vw;
  }
}

/*--------------------------------------------------pd-compare-results*/
.pd-compare-results {
  width: 85%;
  margin: 15vh auto 0;
}

@media all and (max-width: 1024px) {
  .pd-compare-results {
    margin-top: 8vh;
  }
}

@media all and (max-width: 820px) {
  .pd-compare-results {
    width: 85%;
    margin: 3vh auto 0;
    flex-wrap: wrap;
  }
}

@media all and (max-width: 480px) {
  .pd-compare-results {
    width: 90%;
  }
}

.pd-compare-results .title-area {
  padding-top: 2vw;
}

@media all and (max-width: 820px) {
  .pd-compare-results .title-area {
    margin-bottom: 2vh;
  }
}

@media all and (max-width: 480px) {
  .pd-compare-results .title-area {
    margin-bottom: 3vh;
  }
}

.pd-compare-results .title-area h2 {
  color: #fff;
  font-size: 1.8vw;
  font-weight: bold;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-compare-results .title-area h2 {
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-compare-results .title-area h2 {
    font-size: 8vw;
    margin-bottom: 1.5vh;
  }
}

.pd-compare-results .title-area .back {
  display: inline-block;
  font-size: 0.8vw;
  color: #fff;
  background-color: #de0a16;
  padding: 0.4vw 1.5vw 0.4vw 1.3vw;
  transition: 0.3s;
  border-radius: 5px;
}

@media all and (max-width: 820px) {
  .pd-compare-results .title-area .back {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-compare-results .title-area .back {
    font-size: 3.5vw;
    padding: 1.5vw 4.5vw 1.5vw 4vw;
  }
}

.pd-compare-results .title-area .back:hover {
  text-decoration: none;
  background-color: #fff;
  color: #de0a16;
}

.pd-compare-results .cp-rs-area {
  margin-top: 2vw;
}

@media all and (max-width: 480px) {
  .pd-compare-results .cp-rs-area {
    width: 100%;
    overflow-x: auto;
  }
}

.pd-compare-results .cp-rs-area .cp-rs-list {
  width: 100%;
  border-bottom: 1px solid #999;
  padding: 1.5vw 0 0.5vw;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .pd-compare-results .cp-rs-area .cp-rs-list {
    display: block;
    width: 400%;
    padding: 4vw 0 3vw;
  }
}

.pd-compare-results .cp-rs-area .cp-rs-list:first-of-type {
  padding-top: 0;
}

.pd-compare-results .cp-rs-area .cp-rs-list:last-of-type {
  border-bottom: none;
}

.pd-compare-results .cp-rs-area .cp-rs-list:hover {
  background-color: #111;
}

.pd-compare-results .cp-rs-area .cp-rs-list h3 {
  width: 100%;
  color: #fff;
  font-size: 1.3vw;
  font-weight: bold;
  padding: 0 1vw;
  margin-bottom: 0;
}

@media all and (max-width: 820px) {
  .pd-compare-results .cp-rs-area .cp-rs-list h3 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-compare-results .cp-rs-area .cp-rs-list h3 {
    font-size: 4.5vw;
    padding: 0 2vw;
    margin-bottom: 2vw;
  }
}

.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item {
  width: 25%;
  padding: 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item {
    width: 20%;
    margin-right: 2%;
    display: inline-block;
    vertical-align: top;
    padding: 0 2vw;
  }
}

.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item img {
  width: 80%;
  height: auto;
}

.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item h4 {
  color: #fff;
  font-size: 1.3vw;
  font-weight: bold;
}

@media all and (max-width: 820px) {
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item h4 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item h4 {
    font-size: 5vw;
  }
}

.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item p {
  color: #ccc;
  font-size: 0.8vw;
  line-height: 1.5;
}

@media all and (max-width: 820px) {
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item p {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item p {
    font-size: 3.5vw;
  }
}

.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ol,
.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ul {
  margin: 0;
  padding-left: 0.7vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {

  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ol,
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ul {
    padding-left: 2vw;
  }
}

.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ol li,
.pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ul li {
  color: #ccc;
  font-size: 0.8vw;
  line-height: 1.5;
}

@media all and (max-width: 820px) {

  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ol li,
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ul li {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {

  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ol li,
  .pd-compare-results .cp-rs-area .cp-rs-list .cp-rs-item ul li {
    font-size: 3.5vw;
  }
}

/*--------------------------------------------------pd-Description*/
/*------------------------pd-KV*/
.pd-kv-area {
  margin-top: 8vh;
  width: 100%;
  margin-bottom: 5vw;
}

@media all and (max-width: 820px) {
  .pd-kv-area {
    margin-top: 10vh;
  }
}

.pd-kv-area .pd-kv-img img {
  width: 100%;
  height: auto;
}

.pd-kv-area .pd-kv-text {
  width: 70%;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .pd-kv-area .pd-kv-text {
    width: 85%;
  }
}

@media all and (max-width: 480px) {
  .pd-kv-area .pd-kv-text {
    width: 90%;
    margin-top: -15vh;
  }
}

.pd-kv-area .pd-kv-text h2,
.pd-kv-area .pd-kv-text h3 {
  color: #fff;
  text-align: center;
}

.pd-kv-area .pd-kv-text h2 {
  font-size: 3.5vw;
}

@media all and (max-width: 820px) {
  .pd-kv-area .pd-kv-text h2 {
    font-size: 5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-kv-area .pd-kv-text h2 {
    font-size: 9vw;
  }
}

.pd-kv-area .pd-kv-text h3 {
  font-size: 2vw;
  font-weight: normal;
  margin-bottom: 2vw;
}

@media all and (max-width: 820px) {
  .pd-kv-area .pd-kv-text h3 {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-kv-area .pd-kv-text h3 {
    font-size: 6vw;
    margin-bottom: 5vh;
  }
}

.pd-kv-area .pd-kv-text p {
  font-size: 0.95vw;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

@media all and (max-width: 820px) {
  .pd-kv-area .pd-kv-text p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-kv-area .pd-kv-text p {
    font-size: 3.5vw;
  }
}

.kv-white-style {
  background-color: #fff;
  margin-bottom: 0;
  padding-bottom: 5vw;
}

.kv-white-style .pd-kv-text h2,
.kv-white-style .pd-kv-text h3,
.kv-white-style .pd-kv-text p {
  color: #333;
}

/*------------------------pd-feature*/
/*white style*/
.white-style {
  background-color: #fff;
}

.white-style .pd-text-area-type1,
.white-style .pd-text-area-type2,
.white-style .pd-text-area-type3,
.white-style .pd-text-area-type4 {
  color: #fff;
}

@media all and (max-width: 480px) {

  .white-style .pd-text-area-type1,
  .white-style .pd-text-area-type2,
  .white-style .pd-text-area-type3,
  .white-style .pd-text-area-type4 {
    color: #333 !important;
  }
}

@media all and (max-width: 480px) {

  .white-style .pd-text-area-type1 h4,
  .white-style .pd-text-area-type1 p,
  .white-style .pd-text-area-type2 h4,
  .white-style .pd-text-area-type2 p,
  .white-style .pd-text-area-type3 h4,
  .white-style .pd-text-area-type3 p,
  .white-style .pd-text-area-type4 h4,
  .white-style .pd-text-area-type4 p {
    color: #333 !important;
  }
}

@media all and (max-width: 480px) {

  .white-style .pd-text-area-type1 a,
  .white-style .pd-text-area-type2 a,
  .white-style .pd-text-area-type3 a,
  .white-style .pd-text-area-type4 a {
    border: 1px solid #333 !important;
    color: #333 !important;
  }
}

.white-style .pd-text-area-type5 h4,
.white-style .pd-text-area-type5 p,
.white-style .pd-text-area-type6 h4,
.white-style .pd-text-area-type6 p {
  color: #333 !important;
}

.white-style .pd-feature-type7 .pd-ft-icon-tp {
  background-color: rgba(34, 34, 34, 0.1) !important;
}

.white-style .pd-feature-type7 .pd-ft-icon-tp h4,
.white-style .pd-feature-type7 .pd-ft-icon-tp p {
  color: #333 !important;
}

.white-style .pd-sp-ft-type7 {
  background-color: rgba(34, 34, 34, 0.1) !important;
}

.white-style .pd-sp-ft-type7 .pd-sp-ft-icon-tp h4,
.white-style .pd-sp-ft-type7 .pd-sp-ft-icon-tp p {
  color: #333 !important;
}

.pd-feature-area {
  /*type1*/
  /*type2*/
  /*type3*/
  /*type4*/
  /*type5*/
  /*type6*/
  /*type7*/
  /*type8 type9 6:4*/
  /*-------3D---------*/
}

@media all and (max-width: 480px) {
  .pd-feature-area {
    width: 100%;
    overflow-x: hidden;
  }
}

.pd-feature-area .pd-feature-type1 {
  position: relative;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type1 {
    margin-bottom: 5vh;
    width: 100%;
    overflow-x: hidden;
  }
}

.pd-feature-area .pd-feature-type1 img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type1 img {
    width: 130%;
    margin-left: -15%;
  }
}

.pd-feature-area .pd-feature-type1 .pd-text-area-type1 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) !important;
  width: 60%;
  background-color: rgba(34, 34, 34, 0.6);
  padding: 1.5vw 2vw 3vw;
  box-sizing: border-box;
  text-align: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 {
    width: 75%;
    padding: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 {
    position: static;
    transform: none !important;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    padding: 3.5vw 0 5vw;
    background-color: transparent;
  }
}

.pd-feature-area .pd-feature-type1 .pd-text-area-type1 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type1 .pd-text-area-type1 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type1 .pd-text-area-type1 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type1 .pd-text-area-type1 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type1 .pd-text-area-type1 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type1 .pd-text-area-type1 ul,
.pd-feature-area .pd-feature-type1 .pd-text-area-type1 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type1 .pd-text-area-type1 ul li,
.pd-feature-area .pd-feature-type1 .pd-text-area-type1 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type2 {
  position: relative;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type2 {
    margin-bottom: 5vh;
  }
}

.pd-feature-area .pd-feature-type2 img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type2 img {
    width: 130%;
    margin-left: -30%;
  }
}

.pd-feature-area .pd-feature-type2 .pd-text-area-type2 {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) !important;
  width: 40%;
  background-color: rgba(34, 34, 34, 0.6);
  padding: 1.5vw 2vw 3vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 {
    width: 45%;
    padding: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 {
    position: static;
    transform: none !important;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    padding: 3.5vw 0 5vw;
    background-color: transparent;
  }
}

.pd-feature-area .pd-feature-type2 .pd-text-area-type2 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type2 .pd-text-area-type2 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type2 .pd-text-area-type2 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type2 .pd-text-area-type2 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type2 .pd-text-area-type2 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type2 .pd-text-area-type2 ul,
.pd-feature-area .pd-feature-type2 .pd-text-area-type2 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type2 .pd-text-area-type2 ul li,
.pd-feature-area .pd-feature-type2 .pd-text-area-type2 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type3 {
  position: relative;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type3 {
    margin-bottom: 5vh;
    width: 100%;
    overflow-x: hidden;
  }
}

.pd-feature-area .pd-feature-type3 img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type3 img {
    width: 130%;
  }
}

.pd-feature-area .pd-feature-type3 .pd-text-area-type3 {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) !important;
  width: 40%;
  background-color: rgba(34, 34, 34, 0.6);
  padding: 1.5vw 2vw 3vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 {
    width: 45%;
    padding: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 {
    position: static;
    transform: none !important;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    padding: 3.5vw 0 5vw;
    background-color: transparent;
  }
}

.pd-feature-area .pd-feature-type3 .pd-text-area-type3 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type3 .pd-text-area-type3 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type3 .pd-text-area-type3 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type3 .pd-text-area-type3 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type3 .pd-text-area-type3 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type3 .pd-text-area-type3 ul,
.pd-feature-area .pd-feature-type3 .pd-text-area-type3 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type3 .pd-text-area-type3 ul li,
.pd-feature-area .pd-feature-type3 .pd-text-area-type3 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type4 {
  position: relative;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type4 {
    margin-bottom: 5vh;
    width: 100%;
    overflow-x: hidden;
  }
}

.pd-feature-area .pd-feature-type4 img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type4 img {
    width: 130%;
    margin-left: -15%;
  }
}

.pd-feature-area .pd-feature-type4 .pd-text-area-type4 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%) !important;
  width: 60%;
  background-color: rgba(34, 34, 34, 0.6);
  padding: 1.5vw 2vw 3vw;
  box-sizing: border-box;
  text-align: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 {
    width: 75%;
    padding: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 {
    position: static;
    transform: none !important;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    padding: 3.5vw 0 5vw;
    background-color: transparent;
  }
}

.pd-feature-area .pd-feature-type4 .pd-text-area-type4 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type4 .pd-text-area-type4 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type4 .pd-text-area-type4 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type4 .pd-text-area-type4 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type4 .pd-text-area-type4 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type4 .pd-text-area-type4 ul,
.pd-feature-area .pd-feature-type4 .pd-text-area-type4 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type4 .pd-text-area-type4 ul li,
.pd-feature-area .pd-feature-type4 .pd-text-area-type4 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type5 {
  margin-bottom: 5vw;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 {
    margin-bottom: 5vh;
  }
}

.pd-feature-area .pd-feature-type5 img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 img {
    width: 130%;
    margin-left: -15%;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 {
  width: 60%;
  margin: 0 auto;
  padding: 1.5vw 2vw 0;
  box-sizing: border-box;
  text-align: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 {
    width: 85%;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 {
    width: 90%;
    text-align: left;
    padding: 3.5vw 0;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area {
  margin-top: 1.5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area {
    margin-top: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area {
    margin: 3.5vw 0 0;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area .text-box-item {
  width: 30%;
  margin: 0 auto 1vw;
  color: #fff;
  padding: 1vw;
  box-sizing: border-box;
  font-size: 0.9vw;
  line-height: 1.2;
  background-color: rgba(34, 34, 34, 0.6);
  text-align: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area .text-box-item {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area .text-box-item {
    margin-bottom: 3vw;
    font-size: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area .text-box-item span {
  font-size: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area .text-box-item span {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type5 .pd-text-area-type5 .text-box-area .text-box-item span {
    font-size: 4.5vw;
  }
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 ul,
.pd-feature-area .pd-feature-type5 .pd-text-area-type5 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type5 .pd-text-area-type5 ul li,
.pd-feature-area .pd-feature-type5 .pd-text-area-type5 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type6 {
  margin-bottom: 5vw;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 {
    margin-bottom: 5vh;
  }
}

.pd-feature-area .pd-feature-type6 img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 img {
    width: 130%;
    margin-left: -15%;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 {
  width: 60%;
  margin: 0 auto;
  padding: 0 2vw 1.5vw;
  box-sizing: border-box;
  text-align: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 {
    width: 85%;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 {
    width: 90%;
    text-align: left;
    padding: 3.5vw 0;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area {
  margin: 1.5vw 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area {
    margin: 3.5vw 0;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area .text-box-item {
  width: 30%;
  margin: 0 auto 1vw;
  color: #fff;
  padding: 1vw;
  box-sizing: border-box;
  font-size: 0.9vw;
  line-height: 1.2;
  background-color: rgba(34, 34, 34, 0.6);
  text-align: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area .text-box-item {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area .text-box-item {
    margin-bottom: 3vw;
    font-size: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area .text-box-item span {
  font-size: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area .text-box-item span {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type6 .pd-text-area-type6 .text-box-area .text-box-item span {
    font-size: 4.5vw;
  }
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 ul,
.pd-feature-area .pd-feature-type6 .pd-text-area-type6 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type6 .pd-text-area-type6 ul li,
.pd-feature-area .pd-feature-type6 .pd-text-area-type6 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type7 {
  width: 85%;
  margin: 3vw auto 0;
  padding: 1vw 1vw 3vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type7 {
    width: 90%;
  }
}

.pd-feature-area .pd-feature-type7 .pd-ft-icon-tp {
  width: 30%;
  margin: 0 auto;
  background-color: #333;
  padding: 1vw 2vw 2vw;
  box-sizing: border-box;
  text-align: center;
}

.pd-feature-area .pd-feature-type7 .pd-ft-icon-tp img {
  width: 100%;
  height: auto;
  max-width: 350px;
}

.pd-feature-area .pd-feature-type7 .pd-ft-icon-tp h4 {
  color: #fff;
  font-size: 1.25vw;
  line-height: 1.2;
  margin-top: 1vw;
  margin-bottom: 1vw;
  font-weight: bold;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type7 .pd-ft-icon-tp h4 {
    font-size: 2vw;
  }
}

.pd-feature-area .pd-feature-type7 .pd-ft-icon-tp p {
  color: #999;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type7 .pd-ft-icon-tp p {
    line-height: 1.2;
  }
}

.pd-feature-area .pd-sp-ft-type7 {
  width: 85%;
  margin: 0 auto 5vh;
  background-color: #333;
}

.pd-feature-area .pd-sp-ft-type7 .pd-sp-ft-icon-tp {
  width: 100%;
  margin-bottom: 3vh;
  padding: 1vw 3.5vw 4vw;
  box-sizing: border-box;
  text-align: center;
}

.pd-feature-area .pd-sp-ft-type7 .pd-sp-ft-icon-tp img {
  width: 100%;
  height: auto;
}

.pd-feature-area .pd-sp-ft-type7 .pd-sp-ft-icon-tp h4 {
  font-size: 5.5vw;
  font-weight: normal;
  margin-top: 1vw;
  margin-bottom: 3vw;
  color: #fff;
  line-height: 1.2;
}

.pd-feature-area .pd-sp-ft-type7 .pd-sp-ft-icon-tp p {
  font-size: 3.5vw;
  color: #999;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

.pd-feature-area .pd-feature-type8 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3vw;
}

.pd-feature-area .pd-feature-type8 .pd-img-area-type8 {
  width: 60%;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type8 .pd-img-area-type8 {
    width: 50%;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type8 .pd-img-area-type8 {
    width: 100%;
  }
}

.pd-feature-area .pd-feature-type8 .pd-img-area-type8 img {
  width: 100%;
  height: auto;
}

.pd-feature-area .pd-feature-type8 .pd-text-area-type8 {
  width: 40%;
  padding: 2vw 5vw 2vw 2.5vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 {
    width: 50%;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 {
    width: 100%;
    padding: 2vw 5%;
  }
}

.pd-feature-area .pd-feature-type8 .pd-text-area-type8 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type8 .pd-text-area-type8 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type8 .pd-text-area-type8 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type8 .pd-text-area-type8 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type8 .pd-text-area-type8 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type8 .pd-text-area-type8 ul,
.pd-feature-area .pd-feature-type8 .pd-text-area-type8 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type8 .pd-text-area-type8 ul li,
.pd-feature-area .pd-feature-type8 .pd-text-area-type8 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type9 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3vw;
  overflow-x: hidden;
}

.pd-feature-area .pd-feature-type9 .pd-img-area-type9 {
  width: 60%;
  transform: translateX(39.5vw);
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type9 .pd-img-area-type9 {
    width: 50%;
    transform: translateX(100%);
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type9 .pd-img-area-type9 {
    width: 100%;
    transform: translateX(0);
  }
}

.pd-feature-area .pd-feature-type9 .pd-img-area-type9 img {
  width: 100%;
  height: auto;
}

.pd-feature-area .pd-feature-type9 .pd-text-area-type9 {
  width: 40%;
  padding: 2vw 2.5vw 2vw 5vw;
  box-sizing: border-box;
  transform: translateX(-59.5vw);
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 {
    width: 50%;
    transform: translateX(-100%);
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 {
    width: 100%;
    transform: translateX(0);
    padding: 2vw 5%;
  }
}

.pd-feature-area .pd-feature-type9 .pd-text-area-type9 h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type9 .pd-text-area-type9 p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type9 .pd-text-area-type9 .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type9 .pd-text-area-type9 .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type9 .pd-text-area-type9 .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.pd-feature-area .pd-feature-type9 .pd-text-area-type9 ul,
.pd-feature-area .pd-feature-type9 .pd-text-area-type9 ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type9 .pd-text-area-type9 ul li,
.pd-feature-area .pd-feature-type9 .pd-text-area-type9 ol li {
  color: #fff;
}

.pd-feature-area .pd-feature-type-3D {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3vw;
}

.pd-feature-area .pd-feature-type-3D .model-area-3D {
  width: 60%;
  height: auto;
  aspect-ratio: 16/9;
  border: 1px solid #ccc;
}

.pd-feature-area .pd-feature-type-3D .model-area-3D model-viewer {
  width: 100%;
  height: 100%;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type-3D .model-area-3D {
    width: 50%;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type-3D .model-area-3D {
    width: 100%;
  }
}

.pd-feature-area .pd-feature-type-3D .model-area-3D img {
  width: 100%;
  height: auto;
}

.pd-feature-area .pd-feature-type-3D .model-3D-text {
  width: 40%;
  padding: 2vw 2.5vw 2vw 5vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text {
    width: 50%;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text {
    width: 100%;
    padding: 2vw 5%;
  }
}

.pd-feature-area .pd-feature-type-3D .model-3D-text h4 {
  color: #fff;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text h4 {
    font-size: 5.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-feature-area .pd-feature-type-3D .model-3D-text p {
  color: #fff;
  font-size: 0.95vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text p {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}

.pd-feature-area .pd-feature-type-3D .model-3D-text .feature-link {
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.8vw;
  padding: 0.4vw 1vw;
  transition: 0.3s;
  display: inline-block;
}

@media all and (max-width: 820px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text .feature-link {
    font-size: 1.75vw;
    padding: 0.4vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-feature-area .pd-feature-type-3D .model-3D-text .feature-link {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.pd-feature-area .pd-feature-type-3D .model-3D-text .feature-link:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.pd-feature-area .pd-feature-type-3D .model-3D-text ul,
.pd-feature-area .pd-feature-type-3D .model-3D-text ol {
  text-align: left;
}

.pd-feature-area .pd-feature-type-3D .model-3D-text ul li,
.pd-feature-area .pd-feature-type-3D .model-3D-text ol li {
  color: #333;
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type1 .pd-text-area-type1 {
    text-align: right;
  }
}

[dir=rtl] .pd-feature-type2 .pd-text-area-type2 {
  text-align: right;
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type3 img {
    margin-left: unset;
    margin-right: -30%;
  }
}

[dir=rtl] .pd-feature-type3 .pd-text-area-type3 {
  text-align: right;
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type4 img {
    margin-right: -30%;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type4 .pd-text-area-type4 {
    text-align: right;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type5 img {
    margin-right: -30%;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type5 .pd-text-area-type5 {
    text-align: right;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type6 img {
    margin-right: -30%;
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type6 .pd-text-area-type6 {
    text-align: right;
  }
}

[dir=rtl] .pd-feature-type8 .pd-text-area-type8 {
  padding: 2vw 2.5vw 2vw 5vw;
  text-align: right;
}

[dir=rtl] .pd-feature-type9 .pd-img-area-type9 {
  transform: translateX(-39.5vw);
}

@media all and (max-width: 820px) {
  [dir=rtl] .pd-feature-type9 .pd-img-area-type9 {
    transform: translateX(-100%);
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type9 .pd-img-area-type9 {
    width: 100%;
    transform: translateX(0);
  }
}

[dir=rtl] .pd-feature-type9 .pd-text-area-type9 {
  transform: translateX(59.5vw);
  padding: 2vw 5vw 2vw 2.5vw;
  text-align: right;
}

@media all and (max-width: 820px) {
  [dir=rtl] .pd-feature-type9 .pd-text-area-type9 {
    transform: translateX(100%);
  }
}

@media all and (max-width: 480px) {
  [dir=rtl] .pd-feature-type9 .pd-text-area-type9 {
    width: 100%;
    transform: translateX(0);
  }
}

/*------------------------pd-disclaimer*/
.disclaimer-white-style {
  background-color: #fff;
}

.disclaimer-white-style p,
.disclaimer-white-style li {
  color: #333 !important;
}

.pd-disclaimer {
  width: 100%;
  margin: 0 auto;
  padding: 1vw 7.5%;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-disclaimer {
    padding: 2vw 10%;
  }
}

.pd-disclaimer img {
  display: inline-block;
  max-width: 290px;
  height: auto;
}

@media all and (max-width: 820px) {
  .pd-disclaimer img {
    max-width: 200px;
  }
}

@media all and (max-width: 480px) {
  .pd-disclaimer img {
    max-width: 160px;
  }
}

.pd-disclaimer p {
  margin-top: 1vw;
  color: #fff;
  font-size: 0.9vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-disclaimer p {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {
  .pd-disclaimer p {
    font-size: 3.5vw;
    margin-bottom: 3.5vw;
  }
}

.pd-disclaimer ul,
.pd-disclaimer ol {
  margin-top: 1vw;
  padding-left: 2.5vw;
}

@media all and (max-width: 480px) {

  .pd-disclaimer ul,
  .pd-disclaimer ol {
    padding-left: 7vw;
  }
}

.pd-disclaimer ul li,
.pd-disclaimer ol li {
  color: #fff;
  font-size: 0.9vw;
  line-height: 1.2;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {

  .pd-disclaimer ul li,
  .pd-disclaimer ol li {
    font-size: 1.75vw;
  }
}

@media all and (max-width: 480px) {

  .pd-disclaimer ul li,
  .pd-disclaimer ol li {
    font-size: 3.5vw;
    margin-bottom: 3.5vw;
  }
}

[dir=rtl] .pd-disclaimer {
  text-align: right;
}

/*--------------------------------------------------pd-specification*/
.pd-specification {
  width: 85%;
  margin: 25vh auto;
}

@media all and (max-width: 1024px) {
  .pd-specification {
    margin: 15vh auto;
  }
}

@media all and (max-width: 820px) {
  .pd-specification {
    margin: 17vh auto;
  }
}

@media all and (max-width: 480px) {
  .pd-specification {
    margin: 20vh auto;
  }
}

.pd-specification .compatibility-icon {
  display: flex;
  justify-content: end;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 480px) {
  .pd-specification .compatibility-icon {
    margin-bottom: 3vw;
    padding-top: 3vw;
  }
}

.pd-specification .compatibility-icon a {
  width: 18vw;
  background-color: #de0a16;
  color: #fff;
  display: block;
  text-align: center;
  position: relative;
  font-size: 0.9vw;
  line-height: 2.5vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .pd-specification .compatibility-icon a {
    width: 31%;
    font-size: 1.5vw;
    line-height: 4vw;
  }
}

@media all and (max-width: 480px) {
  .pd-specification .compatibility-icon a {
    width: 100%;
    font-size: 4vw;
    line-height: 10vw;
  }
}

.pd-specification .compatibility-icon a::before {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pd-specification .compatibility-icon a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #de0a16;
}

.pd-specification .pd-sf-list {
  border-bottom: 1px solid #fff;
  padding: 2vw;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media all and (max-width: 480px) {
  .pd-specification .pd-sf-list {
    padding: 4vw 3vw;
  }
}

.pd-specification .pd-sf-list:hover {
  background-color: #111;
}

.pd-specification .pd-sf-list .pd-sf-item {
  width: 25%;
  color: #fff;
  font-size: 1.2vw;
  line-height: 1;
  font-weight: bold;
}

@media all and (max-width: 820px) {
  .pd-specification .pd-sf-list .pd-sf-item {
    width: 30%;
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .pd-specification .pd-sf-list .pd-sf-item {
    width: 100%;
    font-size: 5vw;
    margin-bottom: 2vw;
  }
}

.pd-specification .pd-sf-list .pd-sf-info {
  width: 75%;
  color: #fff;
  font-size: 0.9vw;
}

@media all and (max-width: 820px) {
  .pd-specification .pd-sf-list .pd-sf-info {
    width: 70%;
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-specification .pd-sf-list .pd-sf-info {
    width: 100%;
    font-size: 3.5vw;
    line-height: 1.5;
    color: #bbb;
  }
}

[dir=rtl] .pd-specification .pd-sf-list {
  text-align: right;
}

/*--------------------------------------------------pd-gallery*/
.pd-gallery {
  width: 85%;
  margin: 25vh auto 10vh;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .pd-gallery {
    margin-top: 15vh;
  }
}

@media all and (max-width: 820px) {
  .pd-gallery {
    margin-top: 18vh;
  }
}

@media all and (max-width: 480px) {
  .pd-gallery {
    margin-top: 20vh;
  }
}

.pd-gallery::after {
  content: "";
  display: block;
  clear: both;
}

.pd-gallery .pd-gallery-item {
  width: 19%;
  margin: 0.9vh 0.5%;
  float: left;
  padding: 1vw;
  box-sizing: border-box;
  background-color: #111;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .pd-gallery .pd-gallery-item {
    margin: 0.35vh 0.5%;
  }
}

@media all and (max-width: 820px) {
  .pd-gallery .pd-gallery-item {
    width: 32%;
    margin: 0.5vh 0.5%;
  }
}

@media all and (max-width: 480px) {
  .pd-gallery .pd-gallery-item {
    width: 45%;
    margin: 1vh 2.5%;
  }
}

.pd-gallery .pd-gallery-item img {
  width: 100%;
  height: auto;
}

.pd-gallery .pd-gallery-item:first-of-type {
  width: 39%;
}

@media all and (max-width: 820px) {
  .pd-gallery .pd-gallery-item:first-of-type {
    width: 32%;
  }
}

@media all and (max-width: 480px) {
  .pd-gallery .pd-gallery-item:first-of-type {
    width: 45%;
  }
}

.pd-gallery-zoomin {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #000;
  padding-top: 5vh;
  padding-bottom: 40vh;
  visibility: hidden;
}

.pd-gallery-zoomin::after {
  content: "";
  display: block;
  clear: both;
}

@media all and (max-width: 820px) {
  .pd-gallery-zoomin {
    padding-top: 15vh;
  }
}

@media all and (max-width: 480px) {
  .pd-gallery-zoomin {
    padding-top: 25vh;
  }
}

.pd-gallery-zoomin .pd-gl-close {
  width: 2vw;
  position: absolute;
  right: 15%;
  top: 10%;
  cursor: pointer;
}

@media all and (max-width: 820px) {
  .pd-gallery-zoomin .pd-gl-close {
    width: 3.5vw;
    right: 10%;
  }
}

@media all and (max-width: 480px) {
  .pd-gallery-zoomin .pd-gl-close {
    top: 15%;
    width: 5vw;
    right: 10%;
  }
}

.pd-gallery-zoomin .pd-gallery-for {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  max-width: 650px;
}

@media all and (max-width: 820px) {
  .pd-gallery-zoomin .pd-gallery-for {
    width: 70%;
  }
}

@media all and (max-width: 480px) {
  .pd-gallery-zoomin .pd-gallery-for {
    width: 90%;
  }
}

.pd-gallery-zoomin .pd-gallery-for img {
  width: 100%;
  height: auto;
}

.pd-gallery-zoomin .pd-gallery-nav {
  width: 70%;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .pd-gallery-zoomin .pd-gallery-nav {
    width: 80%;
  }
}

.pd-gallery-zoomin .pd-gallery-nav .slick-current .pd-gl-nav-item {
  border: 1px solid #999;
}

.pd-gallery-zoomin .pd-gallery-nav .pd-gl-nav-item {
  width: 90% !important;
  margin: 0 5%;
}

.pd-gallery-zoomin .pd-gallery-nav .pd-gl-nav-item img {
  width: 100%;
  height: auto;
  background-color: #111;
  padding: 0.5vw;
  box-sizing: border-box;
}

.gallery-view {
  visibility: visible;
}

/*--------------------------------------------------pd-faq*/
.pd-faq-area {
  width: 80%;
  margin: 25vh auto 10vh;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .pd-faq-area {
    margin-top: 15vh;
  }
}

@media all and (max-width: 820px) {
  .pd-faq-area {
    width: 85%;
    margin-top: 15vh;
  }
}

@media all and (max-width: 480px) {
  .pd-faq-area {
    width: 90%;
    margin-top: 22vh;
  }
}

.pd-faq-area .pd-faq-list {
  border-bottom: 1px solid #fff;
}

.pd-faq-area .pd-faq-list a {
  display: block;
  color: #fff;
  padding: 1.5vw 2vw;
  box-sizing: border-box;
  font-size: 1vw;
  font-weight: 600;
  position: relative;
}

.pd-faq-area .pd-faq-list a::after {
  content: "";
  position: absolute;
  width: 0.5vw;
  height: 0.5vw;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 2%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .pd-faq-area .pd-faq-list a::after {
    width: 2vw;
    height: 2vw;
  }
}

.pd-faq-area .pd-faq-list a[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(-135deg);
}

@media all and (max-width: 1024px) {
  .pd-faq-area .pd-faq-list a {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 820px) {
  .pd-faq-area .pd-faq-list a {
    font-size: 1.8vw;
    padding: 2vw 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-faq-area .pd-faq-list a {
    padding: 4vw 3.5vw;
    font-size: 4vw;
    line-height: 1.2;
  }
}

.pd-faq-area .pd-faq-list a:hover {
  text-decoration: none;
}

.pd-faq-area .pd-faq-list:hover {
  background-color: #222;
}

.pd-faq-area .pd-faq-ans p {
  color: #ccc;
  padding: 0 2vw 1.5vw;
  font-size: 0.9vw;
  margin-bottom: 0;
}

@media all and (max-width: 1024px) {
  .pd-faq-area .pd-faq-ans p {
    font-size: 1.3vw;
  }
}

@media all and (max-width: 820px) {
  .pd-faq-area .pd-faq-ans p {
    padding: 0 2.5vw 2vw;
    font-size: 1.6vw;
  }
}

@media all and (max-width: 480px) {
  .pd-faq-area .pd-faq-ans p {
    font-size: 3.5vw;
    padding: 0 3.5vw 4vw;
  }
}

.pd-faq-area .pd-faq-ans p a {
  display: inline;
  padding: 0;
  font-weight: normal;
  color: #ff8b92;
}

.pd-faq-area .pd-faq-ans p a:hover {
  text-decoration: underline;
  color: #de0a16;
}

.pd-faq-area .pd-faq-ans p a::after {
  display: none;
}

[dir=rtl] .pd-faq-area {
  text-align: right;
}

/*--------------------------------------------------pd-award_area*/
.pd-award_area {
  width: 80%;
  margin: 25vh auto 10vh;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 1024px) {
  .pd-award_area {
    margin-top: 15vh;
  }
}

@media all and (max-width: 820px) {
  .pd-award_area {
    width: 85%;
    margin-top: 20vh;
  }
}

@media all and (max-width: 480px) {
  .pd-award_area {
    width: 90%;
    margin-top: 25vh;
  }
}

.pd-award_area .pd-award-list {
  width: 15vw;
  margin: 0 0.5% 2vw;
}

.pd-award_area .pd-award-list:hover {
  text-decoration: none;
}

.pd-award_area .pd-award-list:hover img {
  opacity: 0.8;
}

@media all and (max-width: 820px) {
  .pd-award_area .pd-award-list {
    width: 19vw;
    margin: 0 1% 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-award_area .pd-award-list {
    width: 45%;
    margin: 0 2.5% 4vw;
  }
}

.pd-award_area .pd-award-list .pd-aw-li-img {
  width: 15vw;
  height: 15vw;
  background-color: #111;
  position: relative;
  overflow: hidden;
}

@media all and (max-width: 820px) {
  .pd-award_area .pd-award-list .pd-aw-li-img {
    width: 19vw;
    height: 19vw;
  }
}

@media all and (max-width: 480px) {
  .pd-award_area .pd-award-list .pd-aw-li-img {
    width: 40vw;
    height: 40vw;
  }
}

.pd-award_area .pd-award-list .pd-aw-li-img img {
  transition: 0.3s;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 80%;
  max-height: 80%;
}

.pd-award_area .pd-award-list h4 {
  text-align: center;
  color: #fff;
  font-size: 1vw;
  margin: 1vw 0;
}

@media all and (max-width: 820px) {
  .pd-award_area .pd-award-list h4 {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-award_area .pd-award-list h4 {
    font-size: 3.5vw;
    margin: 3vw 0;
  }
}

/*--------------------------------------------------pd-download-area*/
.pd-dl-in {
  width: 100%;
  margin: 20vh auto 0;
  background-color: #222;
  padding: 2vw 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 1024px) {
  .pd-dl-in {
    margin: 10vh auto 0;
  }
}

@media all and (max-width: 820px) {
  .pd-dl-in {
    margin: 13vh auto 0;
  }
}

@media all and (max-width: 480px) {
  .pd-dl-in {
    margin: 18vh auto 0;
    padding: 2vw 5%;
  }
}

.pd-dl-in .pd-dl-in-img {
  width: 20%;
}

@media all and (max-width: 820px) {
  .pd-dl-in .pd-dl-in-img {
    width: 30%;
  }
}

@media all and (max-width: 480px) {
  .pd-dl-in .pd-dl-in-img {
    width: 45%;
  }
}

.pd-dl-in .pd-dl-in-na {
  width: 70%;
  padding: 1vw 2vw 1vw 5vw;
  color: #fff;
  box-sizing: border-box;
  font-size: 1.5vw;
  font-weight: bold;
}

@media all and (max-width: 820px) {
  .pd-dl-in .pd-dl-in-na {
    width: 60%;
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-dl-in .pd-dl-in-na {
    width: 55%;
    font-size: 4vw;
  }
}

.pd-download-area {
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-download-area {
    width: 85%;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area {
    width: 90%;
  }
}

.pd-download-area .nav-pills {
  justify-content: end;
  margin-top: -3vh;
}

@media all and (max-width: 1024px) {
  .pd-download-area .nav-pills {
    margin-top: -1.5vh;
  }
}

@media all and (max-width: 820px) {
  .pd-download-area .nav-pills {
    margin-top: -2vh;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .nav-pills {
    margin-top: 3vh;
  }
}

.pd-download-area .nav-pills .active {
  background-color: #de0a16 !important;
}

.pd-download-area .nav-pills .nav-link {
  width: 20%;
  border-radius: 0;
  margin-left: 1vw;
  padding: 1vw 2vw;
  background-color: #333;
  transform: skewX(-25deg);
  position: relative;
  color: #fff;
  font-size: 1vw;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .pd-download-area .nav-pills .nav-link {
    width: 23.5%;
    padding: 1.5vw 0;
  }
}

@media all and (max-width: 820px) {
  .pd-download-area .nav-pills .nav-link {
    width: 35%;
    padding: 1.5vw 0;
    font-size: 1.8vw;
    margin-bottom: 1vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .nav-pills .nav-link {
    width: 90%;
    margin: 0 auto 2vh;
    padding: 3.5vw 0;
    font-size: 4vw;
  }
}

.pd-download-area .nav-pills .nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #000;
  transform: translate(-50%, -50%);
}

.pd-download-area .nav-pills .nav-link span {
  transform: skewX(25deg);
  display: block;
}

.pd-download-area .tab-content {
  margin-top: 10vh;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content {
    margin-top: 5vh;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content {
    margin-top: 2vh;
  }
}

.pd-download-area .tab-content .pd-dl-dpsl {
  margin-bottom: 5vh;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-dpsl {
    margin-bottom: 3vh;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-dpsl {
    margin-bottom: 5vh;
  }
}

.pd-download-area .tab-content .pd-dl-dpsl .col-lg-3 {
  margin-right: 5vw;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-dpsl .col-lg-3 {
    margin-right: 3vw;
  }
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-dpsl .col-lg-3 {
    margin-right: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-dpsl .col-lg-3 {
    margin-right: 0;
    margin-bottom: 5vw;
  }

  .pd-download-area .tab-content .pd-dl-dpsl .col-lg-3:last-of-type {
    margin-bottom: 0;
  }
}

.pd-download-area .tab-content .pd-dl-dpsl label {
  color: #ccc;
  font-size: 1vw;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-dpsl label {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-dpsl label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-dpsl label {
    font-size: 3.5vw;
  }
}

.pd-download-area .tab-content .pd-dl-dpsl select {
  border-radius: 0;
  background-color: #ccc;
  font-size: 1vw;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-dpsl select {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-dpsl select {
    font-size: 3.5vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc {
  padding: 2vw 3vw 1.5vw;
  box-sizing: border-box;
  background-color: #333;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-slc {
    padding: 2vw 1vw;
  }
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc {
    padding: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc {
    padding: 3vw 1vw 2vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li {
  width: 23%;
  margin: 0 1% 1vw;
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li {
    width: 31%;
    margin: 0 1% 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li {
    width: 48%;
    margin: 0 1% 2.5vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li input[type=checkbox] {
  visibility: hidden;
}

.pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li input[type=checkbox]:checked+label::before {
  background-color: #de0a16;
}

.pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li label {
  color: #fff;
  font-size: 1vw;
  position: relative;
  padding-left: 1.5vw;
  line-height: 1;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li label {
    padding-left: 2.5vw;
  }
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li label {
    font-size: 1.8vw;
    padding-left: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li label {
    padding-left: 5.5vw;
    font-size: 3.5vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  border: 1px solid #ccc;
  background-color: #ccc;
  transform: translateY(-50%);
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc .ps-dl-slc-li label::before {
    width: 14px;
    height: 14px;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs {
  padding-top: 5vh;
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li {
  margin-bottom: 8vh;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li {
    margin-bottom: 5vh;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit {
  display: flex;
  border-bottom: 1px solid #de0a16;
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit {
    margin-bottom: 2vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit>div {
  width: 15%;
  color: #de0a16;
  font-size: 1.1vw;
  font-weight: bold;
  padding: 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit>div {
    width: 16%;
    font-size: 2vw;
    line-height: 1;
    padding: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit>div {
    display: none;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit>div:first-of-type {
  width: 40%;
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit>div:first-of-type {
    width: 36%;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-tit>div:first-of-type {
    width: 100%;
    display: block;
    font-size: 5vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item {
    margin-bottom: 2vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div {
  width: 15%;
  color: #fff;
  font-size: 0.9vw;
  padding: 1vw;
  box-sizing: border-box;
  align-self: center;
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div {
    width: 16%;
    font-size: 1.8vw;
    padding: 1.5vw;
    line-height: 1.5;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div {
    width: 30%;
    font-size: 3.5vw;
    line-height: 1.2;
    padding: 2vw;
  }

  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div:nth-of-type(5) {
    width: 50%;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div:first-of-type {
  width: 40%;
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div:first-of-type {
    width: 36%;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div:first-of-type {
    width: 100%;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div a {
  background-color: #de0a16;
  color: #fff;
  font-size: 0.9vw;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 0.5vw 2vw;
  text-align: center;
  transition: 0.3s;
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div a:hover {
  text-decoration: none;
  color: #de0a16;
  background-color: #fff;
}

@media all and (max-width: 1024px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div a {
    width: 100%;
  }
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div a {
    width: 100%;
    padding: 0.5vw 0;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item>div a {
    width: 100%;
    padding: 2.5vw 2vw;
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }
}

.pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item .dl-slc-li-note {
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 1vw 2vw 1.5vw;
  font-size: 0.8vw;
}

@media all and (max-width: 820px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item .dl-slc-li-note {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .pd-download-area .tab-content .pd-dl-slc-rs .dl-slc-li .dl-slc-li-item .dl-slc-li-note {
    font-size: 3.5vw;
    padding: 2vw 4vw 3vw;
    line-height: 1.5;
    color: #ccc;
  }
}

[dir=rtl] .pd-dl-in-na {
  padding: 1vw 5vw 1vw 2vw;
  text-align: right;
}

[dir=rtl] .pd-dl-slc-rs {
  text-align: right;
}

/*--------------------------------------------------where to buy*/
.pd-buy-bg {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  position: relative;
  z-index: 10;
}

.pd-buy-bg .pd-buy-close {
  position: fixed;
  width: 1.5vw;
  top: 12vh;
  right: 10vw;
  z-index: 20;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .pd-buy-bg .pd-buy-close {
    width: 3vw;
  }
}

@media all and (max-width: 820px) {
  .pd-buy-bg .pd-buy-close {
    width: 3vw;
  }
}

@media all and (max-width: 480px) {
  .pd-buy-bg .pd-buy-close {
    width: 5vw;
  }
}

.pd-buy-bg .pd-buy-close img {
  width: 100%;
  height: auto;
}

.pd-buy-bg .pd-buy-area {
  position: fixed;
  width: 85%;
  top: 50vh;
  left: 50%;
  height: 80vh;
  background-color: #222;
  z-index: 10;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  padding: 2vw 2.5vw 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  .pd-buy-bg .pd-buy-area {
    padding: 3.5vw 2.5vw 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-buy-bg .pd-buy-area {
    padding: 5vh 3.5vw 3vh;
  }
}

.pd-buy-bg .pd-buy-area .pd-hatch-area {
  margin-bottom: 2vw;
}

.pd-buy-bg .pd-buy-area .pd-hatch-area h3 {
  color: #de0a16;
  font-size: 1.2vw;
  border-bottom: 1px solid #de0a16;
  padding: 0.5vw 1vw;
  box-sizing: border-box;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-buy-bg .pd-buy-area .pd-hatch-area h3 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .pd-buy-bg .pd-buy-area .pd-hatch-area h3 {
    font-size: 5vw;
  }
}

.pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list {
  display: flex;
  flex-wrap: wrap;
}

.pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item {
  color: #fff;
  width: 33%;
  border-right: 1px solid #ccc;
  padding: 1vw 1.5vw;
  box-sizing: border-box;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item {
    width: 50%;
    margin-bottom: 3vw;
  }

  .pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item:nth-of-type(odd) {
    border-right: 1px solid #ccc !important;
  }

  .pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item:nth-of-type(even) {
    border-right: none;
  }
}

@media all and (max-width: 480px) {
  .pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item {
    width: 100%;
    border: none !important;
    margin-bottom: 3vh;
  }

  .pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item:nth-of-type(odd) {
    border-right: none !important;
  }
}

.pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item:nth-of-type(3n) {
  border-right: none;
}

.pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item h4 {
  font-size: 1.1vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item h4 {
    font-size: 4vw;
    margin-bottom: 3.5vw;
  }
}

.pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item .pd-buy-cn-list {
  display: flex;
  flex-wrap: wrap;
}

.pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item .pd-buy-cn-list a {
  display: block;
  width: 31%;
  margin: 0 1% 1vw;
}

.pd-buy-bg .pd-buy-area .pd-hatch-area .pd-hatch-list .pd-hatch-item .pd-buy-cn-list a img {
  width: 100%;
  height: auto;
}

.pd-buy-bg .pd-buy-area .pd-sell-partner h3 {
  color: #de0a16;
  font-size: 1.2vw;
  border-bottom: 1px solid #de0a16;
  padding: 0.5vw 1vw;
  box-sizing: border-box;
  margin-bottom: 1vw;
}

@media all and (max-width: 820px) {
  .pd-buy-bg .pd-buy-area .pd-sell-partner h3 {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }
}

@media all and (max-width: 480px) {
  .pd-buy-bg .pd-buy-area .pd-sell-partner h3 {
    font-size: 5vw;
  }
}

.pd-buy-bg .pd-buy-area .pd-sell-partner .pd-sell-pn-list {
  display: flex;
  flex-wrap: wrap;
}

.pd-buy-bg .pd-buy-area .pd-sell-partner .pd-sell-pn-list a {
  width: 12vw;
  height: 12vw;
  display: flex;
  align-items: center;
  margin: 0 0.5vw 1vw;
  background-color: #111;
  justify-content: center;
}

@media all and (max-width: 480px) {
  .pd-buy-bg .pd-buy-area .pd-sell-partner .pd-sell-pn-list a {
    width: 35vw;
    height: 35vw;
    margin: 0 2% 3vw;
  }
}

.pd-buy-bg .pd-buy-area .pd-sell-partner .pd-sell-pn-list a img {
  max-width: 80%;
  max-height: 80%;
}

[dir=rtl] .pd-hatch-area {
  text-align: right;
}

[dir=rtl] .pd-sell-partner {
  text-align: right;
}

/*---------------*/
/*------------------------------------------------------------------------------support--*/
.support-search {
  margin-top: 12vh;
  height: 45vh;
  max-height: 500px;
  background: url(../images/support/sp_sh-bg.jpg) no-repeat bottom left #222;
  background-size: 100% auto;
  padding-top: 13vh;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .support-search {
    height: 30vh;
    margin-top: 6vh;
    padding-top: 10vh;
    background-size: cover;
  }
}

@media all and (max-width: 480px) {
  .support-search {
    margin-top: 7.5vh;
    height: 30vh;
    padding-top: 9vh;
  }
}

.support-search h2 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  margin-bottom: 3vh;
}

@media all and (max-width: 820px) {
  .support-search h2 {
    font-size: 4vw;
  }
}

@media all and (max-width: 480px) {
  .support-search h2 {
    font-size: 6.5vw;
  }
}

.support-search .search-area {
  width: 35vw;
  margin: 0 auto;
}

.support-search .search-area input[type=text] {
  width: 100%;
  padding: 0.5vw 1vw;
  font-style: 1vw;
  border: 2px solid #ccc;
  background: url(../images/support/sp_search.svg) no-repeat #fff;
  background-size: 5% auto;
  background-position: 98% 0.5vh;
}

@media all and (max-width: 480px) {
  .support-search .search-area input[type=text] {
    background-size: 7% auto;
  }
}

@media all and (max-width: 820px) {
  .support-search .search-area {
    width: 50%;
  }
}

@media all and (max-width: 480px) {
  .support-search .search-area {
    width: 75%;
  }
}

[dir=rtl] .search-area input[type=text] {
  background-position: 2% 0.5vh;
}

.select-device {
  background-color: #333;
  padding: 5vh 0;
}

.select-device h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  margin-bottom: 2vh;
}

@media all and (max-width: 820px) {
  .select-device h3 {
    font-size: 4vw;
  }
}

@media all and (max-width: 480px) {
  .select-device h3 {
    font-size: 6.5vw;
  }
}

.select-device h4 {
  color: #fff;
  text-align: center;
  font-size: 1.2vw;
  font-weight: normal;
}

@media all and (max-width: 820px) {
  .select-device h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .select-device h4 {
    font-size: 4vw;
  }
}

.select-device .device-list {
  width: 80%;
  margin: 5vh auto;
}

.select-device .device-list a {
  width: 90% !important;
  display: block;
  margin: 0 0.5vw;
  border-radius: 100px;
  text-align: center;
}

@media all and (max-width: 820px) {
  .select-device .device-list a {
    width: 90% !important;
  }
}

@media all and (max-width: 480px) {
  .select-device .device-list a {
    width: 85% !important;
  }
}

.select-device .device-list a img {
  display: block;
  margin: 0 auto;
  background-color: #222;
  width: 100%;
  height: auto;
  max-width: 200px;
  border-radius: 100px;
}

.select-device .device-list a p {
  margin-top: 2vh;
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .select-device .device-list a p {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .device-list a p {
    font-size: 3.5vw;
  }
}

.select-device .device-list a:hover {
  text-decoration: none;
}

.select-device .device-list a:hover img {
  border: 5px solid #de0a16;
}

.select-device .device-list a:hover p {
  color: #de0a16;
  font-weight: bold;
}

.select-device .device-list .di-sl-active img {
  border: 5px solid #de0a16;
}

.select-device .device-list .di-sl-active p {
  color: #de0a16;
  font-weight: bold;
}

.select-device .sl-device-af .sh-pd-mdl {
  width: 90%;
  margin: 10vh auto;
  padding: 8vh 0 10vh;
  background-color: #222;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .sh-pd-mdl {
    margin: 5vh auto;
    padding: 5vh 0 7vh;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .sh-pd-mdl {
    margin: 6vh auto 3vh;
  }
}

.select-device .sl-device-af .sh-pd-mdl h3 {
  color: #fff;
  font-size: 1.8vw;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .sh-pd-mdl h3 {
    font-size: 4vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .sh-pd-mdl h3 {
    font-size: 6.5vw;
  }
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select2 {
  width: 35vw;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .sh-pd-mdl .pd-mdl-select2 {
    width: 50%;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .sh-pd-mdl .pd-mdl-select2 {
    width: 80%;
  }
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select2 .select2-selection--single {
  border-radius: 0 !important;
  min-height: 1.5vw;
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select2 .select2-selection--single .select2-selection__rendered {
  font-size: 1vw;
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select {
  width: 35vw;
  margin: 0 auto;
  position: relative;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .sh-pd-mdl .pd-mdl-select {
    width: 50%;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .sh-pd-mdl .pd-mdl-select {
    width: 80%;
  }
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select #prod {
  width: 100%;
  padding: 0.5vw 1vw 0.5vw 9%;
  border: 2px solid #ccc;
  background: url(../images/support/sp_search.svg) no-repeat #fff;
  background-size: 5% auto;
  background-position: 2% 0.5vh;
  font-style: 1vw;
  color: #333;
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select span {
  position: absolute;
  color: #333;
  top: 0.8vw;
  right: 0.5vw;
  width: 0.8vw;
  height: 0.8vw;
  background-color: #333;
  -webkit-clip-path: polygon(0 35%, 50% 70%, 100% 35%, 100% 65%, 50% 100%, 0 65%);
  clip-path: polygon(0 35%, 50% 70%, 100% 35%, 100% 65%, 50% 100%, 0 65%);
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select select {
  width: 100%;
  padding: 0.5vw 1vw 0.5vw 9%;
  font-style: 1vw;
  border: 2px solid #ccc;
  background: url(../images/support/sp_search.svg) no-repeat #fff;
  background-size: 5% auto;
  background-position: 2% 0.5vh;
}

.select-device .sl-device-af .sh-pd-mdl .pd-mdl-select select option {
  background-color: #999;
  color: #333;
  font-size: 1vw;
  line-height: 1.5;
}

.select-device .sl-device-af .support-tab-area {
  width: 85%;
  margin: 6vh auto;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area {
    margin: 4vh auto 2vh;
  }
}

.select-device .sl-device-af .support-tab-area .sp-tab-list .nav-tabs {
  border: none;
}

.select-device .sl-device-af .support-tab-area .sp-tab-list .nav a {
  width: 15vw;
  text-align: center;
  background-color: #555;
  color: #fff;
  margin-left: 0.5vw;
  padding: 1vw;
  position: relative;
  transform: skewX(-25deg);
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .sp-tab-list .nav a {
    width: 35%;
    margin-left: 1.5vw;
    padding: 2vw 0;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .sp-tab-list .nav a {
    width: 100%;
    padding: 3vw;
    margin-bottom: 3vw;
  }
}

.select-device .sl-device-af .support-tab-area .sp-tab-list .nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #000;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.select-device .sl-device-af .support-tab-area .sp-tab-list .nav a:hover {
  text-decoration: none;
  background-color: #de0a16;
}

.select-device .sl-device-af .support-tab-area .sp-tab-list .nav a p {
  transform: skewX(25deg);
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .sp-tab-list .nav a p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .sp-tab-list .nav a p {
    font-size: 4vw;
  }
}

.select-device .sl-device-af .support-tab-area .sp-tab-list .nav .active {
  background-color: #de0a16;
}

.select-device .sl-device-af .support-tab-area .tab-content {
  width: 100%;
}

.select-device .sl-device-af .support-tab-area .tab-content h4 {
  font-size: 1.8vw;
  text-align: left;
  font-weight: bold;
  margin-top: -2vw;
  margin-bottom: 3vw;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .tab-content h4 {
    margin-top: 3vw;
    font-size: 3vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content h4 {
    margin-top: 3vw;
    font-size: 5vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list {
  padding: 0 1.5vw 1vw;
  border-bottom: 1px solid #fff;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list {
    padding: 0 1.5vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list {
    padding: 0 3vw 3vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list:first-of-type {
  border-top: 1px solid #fff;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list:hover {
  background-color: #222;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list>a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 1.5vw 0 0.5vw;
  font-size: 1vw;
  font-weight: bold;
  position: relative;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list>a {
    font-size: 2vw;
    padding: 2vw 0 1vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list>a {
    font-size: 3.5vw;
    padding: 3.5vw 0 1vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list>a:hover {
  text-decoration: none;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list>a::after {
  content: "";
  position: absolute;
  width: 0.7vw;
  height: 0.7vw;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list>a::after {
    width: 2vw;
    height: 2vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list a[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(-225deg);
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list .top-faq-ans {
  color: #999;
  font-size: 0.9vw;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list .top-faq-ans>a {
  color: #de0a16;
  text-decoration: underline;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list .top-faq-ans>a:hover {
  color: #ff8b92;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list .top-faq-ans {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-faq-list .top-faq-ans {
    font-size: 3.5vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list>a {
  display: block;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 1.5vw 1vw 1vw;
  font-size: 1vw;
  font-weight: bold;
  position: relative;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list>a {
    font-size: 2vw;
    padding: 2vw 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list>a {
    font-size: 3.5vw;
    padding: 3.5vw 2.5vw 2vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list>a:hover {
  text-decoration: none;
  color: #999;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list>a::after {
  content: "";
  position: absolute;
  width: 1vw;
  height: 1vw;
  background-color: #fff;
  top: 55%;
  right: 1.5%;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list>a::after {
    width: 3vw;
    height: 3vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list a[aria-expanded=true]::after {
  -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
  clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list .top-warranty-ans {
  padding: 0 1vw;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list .top-warranty-ans .wt-ans-edite {
  padding: 1vw 0;
  margin-bottom: 5vh;
  font-size: 0.9vw;
  color: #999;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list .top-warranty-ans .wt-ans-edite>a {
  color: #de0a16;
  text-decoration: underline;
}

.select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list .top-warranty-ans .wt-ans-edite>a:hover {
  color: #ff8b92;
}

@media all and (max-width: 820px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list .top-warranty-ans .wt-ans-edite {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .select-device .sl-device-af .support-tab-area .tab-content .accordion .top-warranty-list .top-warranty-ans .wt-ans-edite {
    font-size: 3.5vw;
    padding: 2vw;
  }
}

.select-device .sl-device-af .support-tab-area .tab-content .sp-more-faq {
  display: block;
  color: #999;
  text-align: center;
  margin-top: 5vh;
  text-decoration: underline;
  transition: 0.3s;
}

.select-device .sl-device-af .support-tab-area .tab-content .sp-more-faq:hover {
  color: #de0a16;
}

[dir=rtl] .support-tab-area .tab-content h4 {
  text-align: right !important;
}

[dir=rtl] .support-tab-area .tab-content .accordion .top-faq-list>a {
  text-align: right;
}

[dir=rtl] .support-tab-area .tab-content .accordion .top-faq-list>a::after {
  right: unset !important;
  left: 0;
}

[dir=rtl] .support-tab-area .tab-content .accordion .top-faq-list .top-faq-ans {
  text-align: right;
}

.autocomplete-suggestions {
  background-color: #999;
  padding: 1vw;
  box-sizing: border-box;
  overflow-y: auto;
}

.autocomplete-suggestions .autocomplete-suggestion {
  margin-bottom: 0.5vw;
  font-size: 1vw;
  color: #333;
}

.autocomplete-suggestions .autocomplete-suggestion strong {
  color: #de0a16;
}

.Service-Support {
  padding: 5vh 0;
}

.Service-Support h3 {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  margin: 5vh 0;
}

@media all and (max-width: 820px) {
  .Service-Support h3 {
    font-size: 4vw;
    margin: 3vh 0;
  }
}

@media all and (max-width: 480px) {
  .Service-Support h3 {
    font-size: 6.5vw;
  }
}

.Service-Support .svsp-list {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

@media all and (max-width: 820px) {
  .Service-Support .svsp-list {
    width: 90%;
  }
}

@media all and (max-width: 480px) {
  .Service-Support .svsp-list {
    width: 90%;
  }
}

.Service-Support .svsp-list .svsp-item {
  width: 28%;
  margin: 4vh 2.5%;
  background-color: #222;
  text-align: center;
  padding: 1.5vw;
  box-sizing: border-box;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .Service-Support .svsp-list .svsp-item {
    margin: 2vh 2.5%;
  }
}

@media all and (max-width: 480px) {
  .Service-Support .svsp-list .svsp-item {
    width: 100%;
    margin: 2vh 0;
    padding: 3.5vw 2vw;
  }
}

.Service-Support .svsp-list .svsp-item:hover {
  background-color: #333;
}

.Service-Support .svsp-list .svsp-item img {
  max-width: 125px;
  height: auto;
}

@media all and (max-width: 820px) {
  .Service-Support .svsp-list .svsp-item img {
    max-width: 100px;
  }
}

@media all and (max-width: 480px) {
  .Service-Support .svsp-list .svsp-item img {
    max-width: 90px;
  }
}

.Service-Support .svsp-list .svsp-item h4 {
  color: #fff;
  font-size: 1.2vw;
  font-weight: bold;
  margin-bottom: 2vh;
}

@media all and (max-width: 820px) {
  .Service-Support .svsp-list .svsp-item h4 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .Service-Support .svsp-list .svsp-item h4 {
    font-size: 4vw;
  }
}

.Service-Support .svsp-list .svsp-item p {
  color: #999;
  font-size: 1vw;
  line-height: 1.2;
  height: 4.5vh;
}

@media all and (max-width: 820px) {
  .Service-Support .svsp-list .svsp-item p {
    font-size: 1.8vw;
    height: unset;
  }
}

@media all and (max-width: 480px) {
  .Service-Support .svsp-list .svsp-item p {
    font-size: 3.5vw;
  }
}

.Service-Support .svsp-list .svsp-item a {
  display: inline-block;
  color: #fff;
  background-color: #de0a16;
  padding: 0.5vw 1vw 0.6vw;
  margin-top: 2vh;
  transition: 0.3s;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .Service-Support .svsp-list .svsp-item a {
    font-size: 1.5vw;
    padding: 1vw 2vw;
  }
}

@media all and (max-width: 480px) {
  .Service-Support .svsp-list .svsp-item a {
    font-size: 3.5vw;
    padding: 1.5vw 3.5vw;
  }
}

.Service-Support .svsp-list .svsp-item a:hover {
  text-decoration: none;
  color: #de0a16;
  background-color: #fff;
}

/*-----------------------------------------------------------------------product support--*/
.sp-pd-breadcrumb {
  margin: 12.5vh auto 0;
  background-color: #333;
  padding: 1vw 0;
}

@media all and (max-width: 1024px) {
  .sp-pd-breadcrumb {
    margin: 6.3vh auto 0;
    padding: 1.5vw 0;
  }
}

@media all and (max-width: 820px) {
  .sp-pd-breadcrumb {
    margin-top: 6.5vh;
  }
}

@media all and (max-width: 480px) {
  .sp-pd-breadcrumb {
    margin: 7.5vh auto 0;
    padding: 2.5vw 0;
  }
}

.sp-pd-breadcrumb ul {
  width: 85%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 480px) {
  .sp-pd-breadcrumb ul {
    width: 90%;
  }
}

.sp-pd-breadcrumb ul li {
  color: #999;
  font-size: 0.9vw;
}

@media all and (max-width: 480px) {
  .sp-pd-breadcrumb ul li {
    font-size: 3.5vw;
  }
}

.sp-pd-breadcrumb ul li::after {
  content: "/";
  color: #999;
  margin: 0 0.5vw;
}

@media all and (max-width: 480px) {
  .sp-pd-breadcrumb ul li::after {
    margin: 0 1.5vw;
  }
}

.sp-pd-breadcrumb ul li:last-of-type::after {
  display: none;
}

.sp-pd-breadcrumb ul li a {
  color: #999;
  text-decoration: none;
}

.sp-pd-breadcrumb ul li a:hover {
  text-decoration: underline;
}

.sp-pd-in {
  width: 100%;
  margin: 0 auto;
  background-color: #222;
  padding: 2vw 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 1024px) {
  .sp-pd-in {
    margin: 0 auto;
  }
}

@media all and (max-width: 820px) {
  .sp-pd-in {
    margin: 0 auto;
  }
}

@media all and (max-width: 480px) {
  .sp-pd-in {
    margin: 0 auto;
    padding: 2vw 5%;
  }
}

.sp-pd-in .sp-pd-in-img {
  width: 20%;
}

@media all and (max-width: 820px) {
  .sp-pd-in .sp-pd-in-img {
    width: 30%;
  }
}

@media all and (max-width: 480px) {
  .sp-pd-in .sp-pd-in-img {
    width: 45%;
  }
}

.sp-pd-in .sp-pd-in-na {
  width: 70%;
  padding: 1vw 2vw 1vw 5vw;
  color: #fff;
  box-sizing: border-box;
  font-size: 1.5vw;
  font-weight: bold;
}

@media all and (max-width: 820px) {
  .sp-pd-in .sp-pd-in-na {
    width: 60%;
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .sp-pd-in .sp-pd-in-na {
    width: 55%;
    font-size: 4vw;
  }
}

.tab-content {
  /*faq*/
  /*warranty*/
}

.tab-content .sp-pd-faq {
  width: 90%;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .tab-content .sp-pd-faq {
    width: 100%;
  }
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-faq {
    width: 95%;
  }
}

.tab-content .sp-pd-faq .sp-pd-faq-list {
  border-bottom: 1px solid #fff;
  padding: 0 1.5vw;
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-faq .sp-pd-faq-list {
    padding: 0 3vw;
  }
}

.tab-content .sp-pd-faq .sp-pd-faq-list:hover {
  background-color: #111;
}

.tab-content .sp-pd-faq .sp-pd-faq-list:first-of-type {
  border-top: 1px solid #fff;
}

.tab-content .sp-pd-faq .sp-pd-faq-list>a {
  display: block;
  padding: 1vw 0;
  font-size: 1vw;
  font-weight: bold;
  color: #fff;
  position: relative;
}

@media all and (max-width: 820px) {
  .tab-content .sp-pd-faq .sp-pd-faq-list>a {
    font-size: 2vw;
    padding: 1.5vw 0;
  }
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-faq .sp-pd-faq-list>a {
    font-size: 4vw;
    padding: 3vw 0;
  }
}

.tab-content .sp-pd-faq .sp-pd-faq-list>a:hover {
  text-decoration: none;
}

.tab-content .sp-pd-faq .sp-pd-faq-list>a::after {
  content: "";
  position: absolute;
  width: 0.7vw;
  height: 0.7vw;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 50%;
  right: -1%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-faq .sp-pd-faq-list>a::after {
    width: 2vw;
    height: 2vw;
  }
}

.tab-content .sp-pd-faq .sp-pd-faq-list a[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(135deg);
}

.tab-content .sp-pd-faq .sp-pd-faq-list .sp-pd-faq-ans p {
  margin: 0;
  padding-bottom: 1.5vw;
  color: #999;
  font-size: 0.9vw;
}

.tab-content .sp-pd-faq .sp-pd-faq-list .sp-pd-faq-ans p>a {
  color: #de0a16;
  text-decoration: underline;
}

.tab-content .sp-pd-faq .sp-pd-faq-list .sp-pd-faq-ans p>a:hover {
  color: #ff8b92;
}

@media all and (max-width: 820px) {
  .tab-content .sp-pd-faq .sp-pd-faq-list .sp-pd-faq-ans p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-faq .sp-pd-faq-list .sp-pd-faq-ans p {
    font-size: 3.5vw;
    padding-bottom: 5vw;
  }
}

.tab-content .sp-pd-warranty {
  width: 90%;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .tab-content .sp-pd-warranty {
    width: 100%;
  }
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-warranty {
    width: 90%;
  }
}

.tab-content .sp-pd-warranty .sp-pd-warranty-list {
  margin-bottom: 5vh;
}

.tab-content .sp-pd-warranty .sp-pd-warranty-list h4 {
  display: block;
  color: #de0a16;
  border-bottom: 1px solid #de0a16;
  padding: 1vw;
  font-size: 1vw;
  font-weight: bold;
}

@media all and (max-width: 820px) {
  .tab-content .sp-pd-warranty .sp-pd-warranty-list h4 {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-warranty .sp-pd-warranty-list h4 {
    font-size: 4vw;
  }
}

.tab-content .sp-pd-warranty .sp-pd-warranty-list .sp-pd-warranty-ans {
  color: #fff;
  padding: 1vw 1vw 2vw;
  font-size: 0.9vw;
}

@media all and (max-width: 820px) {
  .tab-content .sp-pd-warranty .sp-pd-warranty-list .sp-pd-warranty-ans {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .tab-content .sp-pd-warranty .sp-pd-warranty-list .sp-pd-warranty-ans {
    font-size: 3.5vw;
  }
}

/*--------------------------------------support top root--*/
.sp-top-root {
  margin-top: 12.5vh;
  background: url(../images/support/sp_top_bg.svg) no-repeat top center #333;
  background-size: cover;
  max-height: 200px;
  padding: 6vh 0;
}

@media all and (max-width: 1024px) {
  .sp-top-root {
    margin-top: 6vh;
  }
}

@media all and (max-width: 820px) {
  .sp-top-root {
    margin-top: 6.5vh;
  }
}

@media all and (max-width: 480px) {
  .sp-top-root {
    margin-top: 7.5vh;
  }
}

.sp-top-root h3 {
  width: 85%;
  margin: 0 auto;
  color: #fff;
  font-size: 1.8vw;
  margin-bottom: 1vh;
}

@media all and (max-width: 820px) {
  .sp-top-root h3 {
    font-size: 4vw;
  }
}

@media all and (max-width: 480px) {
  .sp-top-root h3 {
    font-size: 6.5vw;
  }
}

.sp-top-root ul {
  width: 85%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.sp-top-root ul li {
  color: #999;
  font-size: 0.9vw;
}

@media all and (max-width: 480px) {
  .sp-top-root ul li {
    font-size: 3.5vw;
  }
}

.sp-top-root ul li::after {
  content: "/";
  margin: 0 0.5vw;
  color: #999;
  font-size: 0.9vw;
}

@media all and (max-width: 480px) {
  .sp-top-root ul li::after {
    font-size: 3.5vw;
    margin: 0 2vw;
  }
}

.sp-top-root ul li:last-of-type::after {
  display: none;
}

.sp-top-root ul li a {
  color: #999;
}

[dir=rtl] .sp-top-root {
  background: url(../images/support/sp_top_bg_rtl-01.svg) no-repeat top left #333;
}

[dir=rtl] .sp-top-root h3 {
  text-align: right;
}

/*-----------------------------------support search results--*/
.sp-sh-results {
  width: 85%;
  margin: 2.5vw auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*-left filter-*/
  /*-right results-*/
}

@media all and (max-width: 820px) {
  .sp-sh-results {
    width: 90%;
  }
}

@media all and (max-width: 480px) {
  .sp-sh-results {
    width: 85%;
    margin: 4vh auto;
  }
}

.sp-sh-results .sh-rs-filter {
  width: 23%;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sh-rs-filter {
    width: 100%;
  }
}

.sp-sh-results .sh-rs-filter .accordion {
  background-color: #333;
  padding: 1.5vw 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sh-rs-filter .accordion {
    padding: 4vw;
  }
}

.sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list {
  padding-bottom: 1.5vw;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list {
    padding-bottom: 3vw;
  }
}

.sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list h4 {
  display: block;
  color: #fff;
  font-size: 1.1vw;
  position: relative;
  cursor: pointer;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list h4 {
    font-size: 4.5vw;
  }
}

.sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list h4::after {
  content: "";
  width: 0.7vw;
  height: 0.7vw;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  translate: 0 -50%;
  position: absolute;
  top: 50%;
  right: 0;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list h4::after {
    width: 2vw;
    height: 2vw;
  }
}

.sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list h4[aria-expanded=true]::after {
  rotate: 225deg;
}

.sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list .sp-ft-item a {
  display: block;
  color: #999;
  font-size: 0.9vw;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list .sp-ft-item a {
    font-size: 3.5vw;
  }
}

.sp-sh-results .sh-rs-filter .accordion .sp-sh-filter-list .sp-ft-item a:last-of-type {
  margin-bottom: 0;
}

.sp-sh-results .sp-sh-rs-list {
  width: 72%;
}

@media all and (max-width: 820px) {
  .sp-sh-results .sp-sh-rs-list {
    width: 73%;
  }
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list {
    width: 100%;
    margin-top: 5vh;
  }
}

.sp-sh-results .sp-sh-rs-list span {
  color: #de0a16;
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-input {
  width: 55%;
  position: relative;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .sp-sh-rs-input {
    width: 100%;
  }
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-input::after {
  content: "";
  width: 1.5vw;
  height: 1.5vw;
  background: url(../images/support/sp_search.svg) no-repeat top center;
  background-size: 100% auto;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .sp-sh-rs-input::after {
    width: 4vw;
    height: 4vw;
  }
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-input input[type=text] {
  width: 100%;
  padding: 0.5vw 0 0.5vw 2.5vw;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .sp-sh-rs-input input[type=text] {
    font-size: 3.5vw;
    padding: 2vw 0 2vw 7vw;
  }
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-input .close-svg {
  position: absolute;
  top: 50%;
  right: 2%;
  z-index: 10;
  transform: translateY(-50%);
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-input .close-svg img {
  width: 1.3vw;
  height: auto;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .sp-sh-rs-input .close-svg img {
    width: 3.5vw;
  }
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-info {
  margin: 2.5vw 0;
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-info h4 {
  color: #fff;
  font-size: 1.5vw;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .sp-sh-rs-info h4 {
    font-size: 6vw;
  }
}

.sp-sh-results .sp-sh-rs-list .sp-sh-rs-info p {
  color: #999;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .sp-sh-rs-info p {
    font-size: 3.5vw;
  }
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item {
  border-bottom: 1px solid #fff;
  padding: 1.2vw;
  box-sizing: border-box;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item {
    padding: 3vw 2vw;
  }
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item:first-of-type {
  border-top: 1px solid #fff;
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item:hover {
  background-color: #111;
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item h6 {
  color: #999;
  font-size: 0.8vw;
  font-weight: normal;
  margin: 0 0 1vw;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item h6 {
    font-size: 3vw;
    margin-bottom: 2vw;
  }
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item a.sp-sh-rs-li-tit {
  display: block;
  color: #fff;
  font-size: 1.1vw;
  font-weight: bold;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item a.sp-sh-rs-li-tit {
    font-size: 4.2vw;
    margin-bottom: 1.5vw;
  }
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item a.sp-sh-rs-li-tit:hover {
  text-decoration: none;
  color: #de0a16;
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item a[data-toggle=collapse] {
  position: relative;
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item a[data-toggle=collapse]::after {
  content: "";
  position: absolute;
  width: 0.7vw;
  height: 0.7vw;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 20%;
  right: 0;
  z-index: 10;
  rotate: 45deg;
  transition: 0.3s;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item a[data-toggle=collapse]::after {
    width: 2.5vw;
    height: 2.5vw;
  }
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item a[aria-expanded=true]::after {
  rotate: -135deg;
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item p {
  color: #999;
  font-size: 0.9vw;
  margin: 0;
  padding: 0;
}

.sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item p a {
  color: #ff8b92;
  text-decoration: underline;
}

@media all and (max-width: 480px) {
  .sp-sh-results .sp-sh-rs-list .rs-item-area .sp-sh-rs-item p {
    font-size: 3.5vw;
  }
}

[dir=rtl] .sp-sh-filter-list {
  text-align: right;
}

[dir=rtl] .sp-sh-filter-list h4::after {
  right: unset !important;
  left: 0;
}

[dir=rtl] .sp-sh-rs-input::after {
  left: unset !important;
  right: 2%;
}

[dir=rtl] .sp-sh-rs-input input[type=text] {
  padding: 0.5vw 2.5vw 0.5vw 0 !important;
}

@media all and (max-width: 480px) {
  [dir=rtl] .sp-sh-rs-input input[type=text] {
    padding: 2vw 7vw 2vw 0 !important;
  }
}

[dir=rtl] .sp-sh-rs-input .close-svg {
  right: unset !important;
  left: 2%;
}

[dir=rtl] .sp-sh-rs-info {
  text-align: right;
}

[dir=rtl] .rs-item-area {
  text-align: right;
}

[dir=rtl] .rs-item-area .sp-sh-rs-item a[data-toggle=collapse]::after {
  right: unset !important;
  left: 0;
}

/*-----------------------------------support warranty check--*/
.sp-top-notices {
  width: 100%;
  margin: 0 auto;
  background-color: #222;
  padding: 2vw;
  box-sizing: border-box;
  color: #fff;
}

@media all and (max-width: 480px) {
  .sp-top-notices {
    padding: 1.8vh 5vw;
    margin: 3vh 0;
  }
}

.sp-top-notices p {
  font-size: 0.9vw;
}

@media all and (max-width: 480px) {
  .sp-top-notices p {
    font-size: 3.5vw;
  }
}

[dir=rtl] .sp-top-notices {
  text-align: right;
}

.sp-warranty-check {
  width: 85%;
  margin: 3vw auto;
  padding: 0 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .sp-warranty-check {
    width: 90%;
  }
}

.sp-warranty-check .sp-wc-input-area {
  padding: 2vw;
  box-sizing: border-box;
  margin-top: 2vw;
  width: 45%;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .sp-wc-input-area {
    width: 60%;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area {
    width: 100%;
  }
}

.sp-warranty-check .sp-wc-input-area .form-group {
  margin-bottom: 2vw;
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area .form-group {
    margin-bottom: 2vh;
  }
}

.sp-warranty-check .sp-wc-input-area .form-group label {
  color: #fff;
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .sp-wc-input-area .form-group label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area .form-group label {
    font-size: 4.5vw;
  }
}

.sp-warranty-check .sp-wc-input-area .form-group input[type=text] {
  border-radius: 0;
}

.sp-warranty-check .sp-wc-input-area .form-group button {
  background-color: #de0a16;
  color: #fff;
  border-radius: 0;
  font-size: 1vw;
  padding: 0.5vw 2.5vw;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .sp-wc-input-area .form-group button {
    font-size: 2vw;
    padding: 0.8vw 3.5vw;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area .form-group button {
    width: 100%;
    font-size: 4vw;
    padding: 1.5vw;
  }
}

.sp-warranty-check .sp-wc-input-area .vdcode {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sp-warranty-check .sp-wc-input-area .vdcode label {
  width: 100%;
}

.sp-warranty-check .sp-wc-input-area .vdcode input {
  width: 65%;
  margin-right: 5%;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .sp-wc-input-area .vdcode input {
    margin-bottom: 1vh;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area .vdcode input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.5vh;
  }
}

.sp-warranty-check .sp-wc-input-area .vdcode .validation {
  width: 30%;
  color: #ccc;
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area .vdcode .validation {
    width: 100%;
    margin-bottom: 5vh;
  }
}

.sp-warranty-check .sp-wc-input-area .vdcode .validation p {
  display: inline-block;
  background-color: #333;
  margin: 0;
  color: #fff;
  padding: 0.3vw 1vw;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area .vdcode .validation p {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.sp-warranty-check .sp-wc-input-area .vdcode .validation a {
  display: inline-block;
  margin-left: 1vw;
}

.sp-warranty-check .sp-wc-input-area .vdcode .validation a img {
  width: 1.5vw;
  height: auto;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .sp-wc-input-area .vdcode .validation a img {
    width: 2vw;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .sp-wc-input-area .vdcode .validation a img {
    width: 5vw;
  }
}

.sp-warranty-check .serial-nb-area {
  margin-top: 2vw;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .serial-nb-area {
    margin-top: 5vw;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .serial-nb-area {
    margin-top: 5vh;
  }
}

.sp-warranty-check .serial-nb-area .serial-nb-item {
  border-bottom: 1px solid #fff;
  padding-top: 2vw;
}

@media all and (max-width: 480px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item {
    padding-top: 2vh;
  }
}

.sp-warranty-check .serial-nb-area .serial-nb-item:first-of-type {
  border-top: 1px solid #fff;
}

.sp-warranty-check .serial-nb-area .serial-nb-item h4 {
  color: #fff;
  font-size: 1.3vw;
  margin-bottom: 1vw;
  padding: 0 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item h4 {
    font-size: 2.3vw;
    margin-bottom: 2vw;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item h4 {
    font-size: 5.5vw;
    margin-bottom: 2.5vh;
  }
}

.sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2vw 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text {
    padding-bottom: 2.5vh;
  }
}

.sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text p {
  color: #fff;
  font-size: 1vw;
  width: 40%;
  line-height: 1.5;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text p {
    width: 50%;
    margin-right: 2vw;
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text p {
    width: 100%;
    font-size: 4vw;
    margin-right: 0;
  }
}

.sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text img {
  max-width: 20vw;
  width: 100%;
  height: auto;
}

@media all and (max-width: 820px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text img {
    max-width: 30vw;
  }
}

@media all and (max-width: 480px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item .serial-nb-text img {
    max-width: unset;
  }
}

.sp-warranty-check .serial-nb-area .serial-nb-item .serial-notice {
  background-color: #111;
  padding: 1vw 2vw;
  font-size: 0.9vw;
  color: #999;
}

@media all and (max-width: 480px) {
  .sp-warranty-check .serial-nb-area .serial-nb-item .serial-notice {
    font-size: 3.5vw;
    padding: 1.5vh 3vw;
  }
}

[dir=rtl] .sp-wc-input-area .form-group {
  text-align: right;
}

[dir=rtl] .sp-wc-input-area .form-group label {
  width: 100%;
}

[dir=rtl] .sp-wc-input-area .vdcode input {
  margin-right: 0;
  margin-left: 5%;
}

[dir=rtl] .serial-nb-item {
  text-align: right;
}

/*-----------------------------------support Contact Us--*/
.sp-contact {
  width: 85%;
  margin: 3vw auto;
  padding: 0 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .sp-contact {
    width: 90%;
  }
}

@media all and (max-width: 480px) {
  .sp-contact {
    width: 85%;
  }
}

.sp-contact .contact-form {
  width: 90%;
  margin: 0 auto;
}

@media all and (max-width: 820px) {
  .sp-contact .contact-form {
    width: 100%;
  }
}

.sp-contact .contact-form .ct-form-info {
  color: #ccc;
  font-size: 1vw;
  margin: 2vw 0 0;
  padding: 0 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form .ct-form-info {
    font-size: 4vw;
    margin-bottom: 2vh;
  }
}

.sp-contact .contact-form form {
  border-bottom: 1px solid #fff;
  padding: 2vw;
  box-sizing: border-box;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form {
    padding: 2.5vh 2vw 2vh;
  }
}

.sp-contact .contact-form form h4 {
  color: #fff;
  font-size: 1.5vw;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .sp-contact .contact-form form h4 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form h4 {
    font-size: 6vw;
    margin-bottom: 3vh;
  }
}

.sp-contact .contact-form form h4 small {
  color: #ccc;
  font-size: 1vw;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form h4 small {
    display: block;
    font-size: 3vw;
  }
}

.sp-contact .contact-form form h4 small span {
  color: #de0a16;
}

.sp-contact .contact-form form>p {
  color: #ccc;
  font-size: 0.9vw;
  margin: -1vw 0 2vw;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form>p {
    font-size: 4vw;
    margin: -1vh 0 2vh;
  }
}

.sp-contact .contact-form form .mr-50 {
  margin-right: 50%;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form .mr-50 {
    margin-right: 0;
  }
}

.sp-contact .contact-form form .form-group {
  width: 45%;
  margin-bottom: 1.8vw;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form .form-group {
    width: 100%;
    margin-bottom: 2vh;
  }
}

.sp-contact .contact-form form .form-group label {
  color: #fff;
  font-weight: 600;
  font-size: 1.1vw;
}

@media all and (max-width: 820px) {
  .sp-contact .contact-form form .form-group label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form .form-group label {
    font-size: 4.5vw;
  }
}

.sp-contact .contact-form form .form-group label span {
  color: #de0a16;
}

.sp-contact .contact-form form .form-group label small {
  font-size: 0.8vw;
  color: #999;
  margin-left: 1vw;
}

.sp-contact .contact-form form .form-group input[type=text],
.sp-contact .contact-form form .form-group select,
.sp-contact .contact-form form .form-group textarea {
  border-radius: 0;
  border: 1px solid #ccc;
}

.sp-contact .contact-form form .form-group input[type=file] {
  color: #999;
}

.sp-contact .contact-form form .form-group p {
  color: #999;
  font-size: 0.8vw;
  line-height: 1.2;
  margin: 0.3vw 0 0;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form .form-group p {
    font-size: 3vw;
  }
}

.sp-contact .contact-form form .form-group a {
  font-size: 0.8vw;
  color: #de0a16;
  display: inline-block;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form form .form-group a {
    font-size: 3.5vw;
    display: block;
    margin: -1vh 0 1vh;
  }
}

.sp-contact .contact-form .validation-area {
  padding: 2vw;
  display: flex;
  align-items: center;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form .validation-area {
    flex-wrap: wrap;
    margin: 2.5vh 0;
  }
}

.sp-contact .contact-form .validation-area label {
  font-size: 1.1vw;
  font-weight: bold;
  color: #fff;
  margin-right: 1vw;
}

@media all and (max-width: 820px) {
  .sp-contact .contact-form .validation-area label {
    font-size: 2vw;
  }
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form .validation-area label {
    font-size: 4.5vw;
    display: block;
  }
}

.sp-contact .contact-form .validation-area input {
  width: 10vw;
  border-radius: 0;
  border: 1px solid #ccc;
  margin-right: 1vw;
}

@media all and (max-width: 820px) {
  .sp-contact .contact-form .validation-area input {
    width: 20vw;
  }
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form .validation-area input {
    display: block;
    width: 100%;
  }
}

.sp-contact .contact-form .validation-area p {
  display: inline;
  background-color: #333;
  margin: 0;
  color: #fff;
  padding: 0.3vw 1vw;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form .validation-area p {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
}

.sp-contact .contact-form .validation-area a {
  margin-left: 1vw;
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form .validation-area a {
    display: block;
    margin: 1.5vh 3vw;
  }
}

.sp-contact .contact-form .validation-area a img {
  width: 1.2vw;
  height: auto;
}

@media all and (max-width: 820px) {
  .sp-contact .contact-form .validation-area a img {
    width: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form .validation-area a img {
    width: 5vw;
  }
}

.sp-contact .contact-form button {
  border: none;
  background-color: #de0a16;
  color: #fff;
  margin: 0 auto;
  display: block;
  width: 15vw;
  padding: 0.6vw;
  box-sizing: border-box;
  font-size: 1.2vw;
  margin-top: 2vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .sp-contact .contact-form button {
    font-size: 2.5vw;
    width: 35%;
    padding: 0.8vw;
    margin-top: 5vw;
  }
}

@media all and (max-width: 480px) {
  .sp-contact .contact-form button {
    font-size: 4vw;
    width: 95%;
    padding: 1vh;
  }
}

.sp-contact .contact-form button:hover {
  background-color: #e43f47;
}

[dir=rtl] .ct-form-info {
  text-align: right;
}

[dir=rtl] form {
  text-align: right;
}

[dir=rtl] form .mr-50 {
  margin-right: 0 !important;
  margin-left: 50%;
}

[dir=rtl] form .mr-50 .mr-5 {
  margin-left: 3rem !important;
  margin-right: 0 !important;
}

/*-----------------------------------support service center--*/
/*service center top tab*/
.sc-top-tab {
  width: 85%;
  margin: 2vw auto;
  box-sizing: border-box;
  display: flex;
  justify-content: end;
}

@media all and (max-width: 820px) {
  .sc-top-tab {
    width: 90%;
  }
}

@media all and (max-width: 480px) {
  .sc-top-tab {
    width: 85%;
    flex-wrap: wrap;
    margin: 2vh auto;
  }
}

.sc-top-tab .sc-tab-list {
  min-width: 15vw;
  background-color: #333;
  text-align: center;
  padding: 1vw 2vw;
  box-sizing: border-box;
  margin-left: 1vw;
  font-size: 1vw;
  color: #fff;
  transform: skewX(-25deg);
  position: relative;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .sc-top-tab .sc-tab-list {
    width: 30%;
    font-size: 1.8vw;
    padding: 2vw 0;
    margin-bottom: 1vh;
  }
}

@media all and (max-width: 480px) {
  .sc-top-tab .sc-tab-list {
    width: 100%;
    padding: 1vh;
    font-size: 4vw;
    margin-bottom: 1vh;
  }
}

.sc-top-tab .sc-tab-list:hover {
  text-decoration: none;
  background-color: #de0a16;
}

.sc-top-tab .sc-tab-list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #000;
  transform: translate(-50%, -50%);
}

.sc-top-tab .sc-tab-list span {
  transform: skewX(25deg);
  display: block;
}

.sc-top-tab .active {
  background-color: #de0a16;
}

/*service center list area*/
.sc-list-area {
  width: 85%;
  margin: 2vw auto;
  padding: 1vw;
  box-sizing: border-box;
}

@media all and (max-width: 820px) {
  .sc-list-area {
    width: 95%;
  }
}

@media all and (max-width: 480px) {
  .sc-list-area {
    width: 90%;
    margin-top: 3vh;
  }
}

.sc-list-area .sc-ls-tit h3 {
  color: #fff;
  font-size: 1.5vw;
}

@media all and (max-width: 820px) {
  .sc-list-area .sc-ls-tit h3 {
    font-size: 2.8vw;
  }
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-ls-tit h3 {
    font-size: 5.5vw;
  }
}

.sc-list-area .sc-ls-tit p {
  color: #999;
  font-size: 0.8vw;
}

@media all and (max-width: 820px) {
  .sc-list-area .sc-ls-tit p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-ls-tit p {
    font-size: 3.5vw;
  }
}

.sc-list-area .sc-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3vw;
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-list {
    margin-top: 2vh;
  }
}

.sc-list-area .sc-list .sc-li-item {
  width: 30%;
  padding: 1.5vw;
  margin: 0 1.5% 2.5vw;
  box-sizing: border-box;
  background-color: #222;
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-list .sc-li-item {
    width: 100%;
    padding: 2vh;
    margin: 0 0 4vh;
  }
}

.sc-list-area .sc-list .sc-li-item img {
  width: 100%;
  height: auto;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-list .sc-li-item img {
    margin-bottom: 1.5vh;
  }
}

.sc-list-area .sc-list .sc-li-item h4 {
  color: #fff;
  font-size: 1.1vw;
  margin-bottom: 1vw;
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-list .sc-li-item h4 {
    font-size: 4.5vw;
    margin-bottom: 1.5vh;
  }
}

.sc-list-area .sc-list .sc-li-item p {
  color: #999;
  font-size: 0.9vw;
  margin-bottom: 0.5vw;
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-list .sc-li-item p {
    font-size: 3.5vw;
    margin-bottom: 1vh;
  }
}

.sc-list-area .sc-list .sc-li-item h6 {
  color: #de0a16;
  font-size: 0.8vw;
}

@media all and (max-width: 480px) {
  .sc-list-area .sc-list .sc-li-item h6 {
    font-size: 3vw;
  }
}

[dir=rtl] .sc-ls-tit {
  text-align: right;
}

[dir=rtl] .sc-li-item {
  text-align: right;
}

/*----------------------------------------------------------xpg-alert-info*/
.xpg-alert {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4901960784);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}

.xpg-alert .xpg-alert-info {
  width: 50%;
  padding: 2vw 2.5vw;
  color: #fff;
  background-color: #222;
  min-height: 30vh;
  position: relative;
}

@media all and (max-width: 820px) {
  .xpg-alert .xpg-alert-info {
    width: 60%;
    padding: 3vw;
  }
}

@media all and (max-width: 480px) {
  .xpg-alert .xpg-alert-info {
    width: 90%;
    padding: 4vw;
  }
}

.xpg-alert .xpg-alert-info h5 {
  font-size: 1.2vw;
}

@media all and (max-width: 820px) {
  .xpg-alert .xpg-alert-info h5 {
    font-size: 2.5vw;
  }
}

@media all and (max-width: 480px) {
  .xpg-alert .xpg-alert-info h5 {
    font-size: 6vw;
  }
}

.xpg-alert .xpg-alert-info p {
  font-size: 1vw;
}

@media all and (max-width: 820px) {
  .xpg-alert .xpg-alert-info p {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .xpg-alert .xpg-alert-info p {
    font-size: 4vw;
  }
}

.xpg-alert .xpg-alert-info .close-alert {
  position: absolute;
  top: -2vw;
  right: -2vw;
}

@media all and (max-width: 820px) {
  .xpg-alert .xpg-alert-info .close-alert {
    top: -5vw;
  }
}

@media all and (max-width: 480px) {
  .xpg-alert .xpg-alert-info .close-alert {
    top: -5vh;
    right: 0;
  }
}

.xpg-alert .xpg-alert-info .close-alert img {
  max-width: 1.5vw;
  height: auto;
  width: 100%;
  width: 20px;
}

@media all and (max-width: 820px) {
  .xpg-alert .xpg-alert-info .close-alert img {
    max-width: 4vw;
    width: 20px;
  }
}

@media all and (max-width: 480px) {
  .xpg-alert .xpg-alert-info .close-alert img {
    max-width: 8vw;
    width: 20px;
  }
}

/*----------------where to buy-------------------*/
.whereToBuy {
  width: 85%;
  margin: 5vh auto 0;
}

.whereToBuy .wtb-tab {
  list-style: none;
  margin: 0;
  padding: 0 2vw 0 0;
  display: flex;
  justify-content: end;
  box-sizing: border-box;
}

.whereToBuy .wtb-tab li {
  min-width: 15vw;
  background-color: #333;
  text-align: center;
  padding: 1vw 2vw;
  box-sizing: border-box;
  margin-left: 1vw;
  font-size: 1vw;
  color: #fff;
  transform: skewX(-25deg);
  position: relative;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .whereToBuy .wtb-tab li {
    width: 20vw;
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .whereToBuy .wtb-tab li {
    min-width: 40vw;
    font-size: 3.5vw;
    padding: 1.8vw 0;
  }
}

.whereToBuy .wtb-tab li span {
  transform: skewX(25deg);
  display: block;
}

.whereToBuy .wtb-tab li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #000;
  transform: translate(-50%, -50%);
}

.whereToBuy .wtb-tab li.active {
  background-color: #de0a16;
}

.whereToBuy .input-region {
  width: 20vw;
  margin-bottom: 1.5vw;
}

@media all and (max-width: 820px) {
  .whereToBuy .input-region {
    width: 40vw;
    margin-bottom: 2vh;
  }
}

@media all and (max-width: 480px) {
  .whereToBuy .input-region {
    width: 100%;
    margin-bottom: 2vh;
  }
}

.whereToBuy .input-region label {
  color: #fff;
  font-size: 1vw;
  display: block;
}

@media all and (max-width: 820px) {
  .whereToBuy .input-region label {
    font-size: 1.8vw;
  }
}

@media all and (max-width: 480px) {
  .whereToBuy .input-region label {
    font-size: 4vw;
  }
}

.whereToBuy .input-region select {
  width: 100%;
  font-size: 0.9vw;
  padding: 0.3vw 0.5vw;
}

@media all and (max-width: 820px) {
  .whereToBuy .input-region select {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .whereToBuy .input-region select {
    font-size: 3.5vw;
    padding: 1vw 3vw;
  }
}

.whereToBuy .channel-tab {
  display: flex;
}

@media all and (max-width: 820px) {
  .whereToBuy .channel-tab {
    flex-wrap: wrap;
  }
}

.whereToBuy .channel-tab button {
  border: 1px solid #de0a16;
  font-size: 0.9vw;
  color: #fff;
  padding: 0.3vw 1vw;
  background-color: transparent;
  margin-right: 1vw;
  transition: 0.3s;
}

@media all and (max-width: 820px) {
  .whereToBuy .channel-tab button {
    margin-bottom: 2vw;
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .whereToBuy .channel-tab button {
    font-size: 3.5vw;
    padding: 1vw 3vw;
    margin-right: 2.5vw;
    margin-bottom: 1vh;
  }
}

.whereToBuy .channel-tab button:hover {
  background-color: #de0a16;
}

.whereToBuy .channel-tab button.active {
  background-color: #de0a16;
}

.whereToBuy .channel-list {
  margin-top: 2vw;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 480px) {
  .whereToBuy .channel-list {
    justify-content: space-between;
  }
}

.whereToBuy .channel-list .ch-li-item {
  width: 18%;
  margin-right: 2%;
  margin-bottom: 3vw;
}

@media all and (max-width: 820px) {
  .whereToBuy .channel-list .ch-li-item {
    width: 23%;
  }
}

@media all and (max-width: 480px) {
  .whereToBuy .channel-list .ch-li-item {
    width: 47%;
    margin-right: 0;
  }
}

.whereToBuy .channel-list .ch-li-item .ch-logo {
  width: 100%;
  padding: 1vw;
  box-sizing: border-box;
  background-color: #222;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 480px) {
  .whereToBuy .channel-list .ch-li-item .ch-logo {
    padding: 2vw;
  }
}

.whereToBuy .channel-list .ch-li-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.whereToBuy .channel-list .ch-li-item h4 {
  font-size: 1vw;
  margin: 0.3vw 0;
  color: #fff;
  text-align: center;
}

@media all and (max-width: 820px) {
  .whereToBuy .channel-list .ch-li-item h4 {
    font-size: 1.5vw;
  }
}

@media all and (max-width: 480px) {
  .whereToBuy .channel-list .ch-li-item h4 {
    font-size: 3.5vw;
  }
}

/*---------------*/
/*----------------------------------------------*/
#ibWebPushOptInDialog {
  z-index: 9999;
}

body {
  background-color: #000;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 820px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

header #header {
  transition: 0.3s;
}

.hide-header {
  opacity: 0;
  height: 0;
  display: none;
}

#footer {
  width: 100%;
}

.show-pc {
  display: block;
}

@media all and (max-width: 480px) {
  .show-pc {
    display: none !important;
  }
}

.show-sp {
  display: none;
}

@media all and (max-width: 480px) {
  .show-sp {
    display: block;
  }
}

.ct-nb-show-pc {
  display: block;
}

@media all and (max-width: 480px) {
  .ct-nb-show-pc {
    display: none !important;
  }
}

.ct-nb-show-sp {
  display: none !important;
}

@media all and (max-width: 480px) {
  .ct-nb-show-sp {
    display: block !important;
  }
}

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