.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  background: #ffffff40;
  box-shadow: inset 0 0 10px #eee;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.header.header-hidden {
  transform: translateY(-100%);
}
.header.header-scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.header .line {
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
}
.header .line .span {
  width: 50%;
  height: 6px;
  background: #11dab5;
}
.header .line .span:last-child {
  background: #000;
}
.header .nav {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.header .nav .logo {
  width: 150px;
}
.header .nav .logo img {
  display: block;
  width: 100%;
}
.header .nav .menu {
  width: calc(100% - 500px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .nav .menu a {
  display: flex;
  align-items: center;
  margin: 0 30px;
}
.header .nav .menu a span {
  font-size: 18px;
  color: #656565;
  transition: 0.5s;
}
.header .nav .menu a img {
  width: 20px;
  height: 20px;
  display: block;
}
.header .nav .menu a:hover span {
  color: #11DAB5;
}
.header .nav .menu .menu-item {
  position: relative;
  margin: 0 30px;
}
.header .nav .menu .menu-item.has-sub > a {
  margin: 0;
}
.header .nav .menu .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(10px);
  z-index: 10;
}
.header .nav .menu .menu-item .sub-menu a {
  display: block;
  margin: 0;
  padding: 10px 24px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
}
.header .nav .menu .menu-item .sub-menu a:hover {
  color: #11DAB5;
  background: #f5f5f5;
}
.header .nav .menu .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header .nav .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .nav .actions .search {
  width: 20px;
  height: 20px;
  margin-right: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.header .nav .actions .search img {
  display: block;
  width: 100%;
  height: 100%;
}
.header .nav .actions .search:hover {
  opacity: 0.6;
  transform: scale(1.15);
}
.header .nav .actions .lang {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.header .nav .actions .lang img {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 5px;
}
.header .nav .actions .lang span {
  color: #3e3d50;
  font-size: 14px;
  transition: 0.3s;
  white-space: nowrap;
}
.header .nav .actions .lang:hover {
  opacity: 0.6;
  transform: scale(1.15);
}
.header .nav .actions .contact_btn {
  cursor: pointer;
  background: #11dab5;
  border-radius: 100px;
  font-size: 20px;
  color: #fff;
  padding: 15px 30px;
  transition: 0.3s;
}
.header .nav .actions .contact_btn:hover {
  background: #0fc4a3;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(17, 218, 181, 0.4);
}
.product-dropdown {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.product-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.product-dropdown .product-dropdown-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.product-dropdown .product-dropdown-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-right: 30px;
}
.product-dropdown .product-dropdown-cats a {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  color: #333;
  white-space: nowrap;
  transition: color 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.product-dropdown .product-dropdown-cats a::after {
  content: '';
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 6px;
  height: 2px;
  background: #11DAB5;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.product-dropdown .product-dropdown-cats a:hover,
.product-dropdown .product-dropdown-cats a.active {
  color: #000;
}
.product-dropdown .product-dropdown-cats a:hover::after,
.product-dropdown .product-dropdown-cats a.active::after {
  transform: scaleX(1);
}
.product-dropdown .product-dropdown-covers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-left: 30px;
  border-left: 1px solid #e5e5e5;
}
.product-dropdown .product-dropdown-covers a {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
  text-decoration: none;
}
.product-dropdown .product-dropdown-covers a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.product-dropdown .product-dropdown-covers a:hover img {
  transform: scale(1.08);
}
.button {
  width: 240px;
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.button .span {
  width: calc(100% - 55px);
  height: 100%;
  font-size: 20px;
  color: #fff;
  background: #11DAB5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  box-sizing: border-box;
}
.button .icon {
  width: 55px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 100px;
}
.button .icon img {
  width: 60%;
  display: block;
}
.button:hover .span {
  width: 100%;
}
.button:hover .icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.contact {
  width: 100%;
  padding-bottom: 180px;
  background: #f6f6f6;
}
.contact .title {
  width: 100%;
  text-align: center;
  padding: 120px 0;
}
.contact .title h2 {
  font-size: 64px;
  color: #000;
  margin-bottom: 60px;
}
.contact .title .span {
  font-size: 24px;
  color: #000;
}
.contact .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.contact .content .text {
  width: 20%;
}
.contact .content .text .label {
  width: 100%;
  font-size: 24px;
  color: #515151;
  margin-bottom: 20px;
  font-weight: 600;
}
.contact .content .text .value {
  width: 100%;
}
.contact .content .text .value .p {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #A8A8A8;
  padding: 10px 0;
  padding-left: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.contact .content .text .value .p img {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 15px;
}
.contact .content .text .value .p span {
  font-size: 14px;
  color: #000;
}
.contact .content .text .value .p:hover span {
  color: #11DAB5;
}
.contact .content .text .codes {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.contact .content .text .codes .icon {
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contact .content .text .codes .icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.contact .content .text .codes .icon:last-child img {
  width: 70%;
  height: 70%;
}
.contact .content .text .codes .icon .tips {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.contact .content .text .codes .icon .tips .tips-inner {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px;
  box-sizing: border-box;
  position: relative;
}
.contact .content .text .codes .icon .tips .tips-inner img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
}
.contact .content .text .codes .icon .tips .tips-inner::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  filter: drop-shadow(0 -2px 1px rgba(0, 0, 0, 0.1));
}
.contact .content .text .codes .icon:hover .tips {
  opacity: 1;
}
.contact .content .form {
  width: 35%;
}
.contact .content .form .form_item {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #4E4E4E;
  overflow: hidden;
}
.contact .content .form .form_item input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #000;
  display: block;
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 0 10px;
  font-family: 'Inter_18pt';
  background: none;
}
.contact .content .form .form_item textarea {
  width: 100%;
  display: block;
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 10px;
  resize: none;
  font-family: 'Inter_18pt';
  background: none;
}
.contact .content .form .form_item.required {
  display: flex;
  align-items: center;
}
.contact .content .form .form_item.required .req_star {
  color: #11DAB5;
  font-size: 18px;
  line-height: 1;
  padding: 0 6px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 16px;
}
.contact .content .form .form_item.required input,
.contact .content .form .form_item.required textarea {
  flex: 1;
  width: auto;
}
.contact .content .form .submit {
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  border-radius: 20px;
  background: #191919;
  cursor: pointer;
  transition: 0.5s;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .content .form .submit:hover {
  background: #11DAB5;
}
.contact .content .upload_files {
  width: 30%;
  border-radius: 10px;
  border: 1px solid #4e4e4e;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-evenly;
  cursor: pointer;
}
.contact .content .upload_files:hover .img {
  transform: scale(1.1);
}
.contact .content .upload_files .text {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  font-size: 30px;
}
.contact .content .upload_files .img {
  width: 150px;
  margin: 0 auto 30px;
  transition: 0.5s;
}
.contact .content .upload_files .img img {
  display: block;
  width: 100%;
}
.contact .content .upload_files .span {
  font-size: 14px;
  color: #000;
  line-height: 20px;
  padding: 0 40px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.contact .content .upload_files .span em {
  color: #11DAB5;
  font-style: normal;
}
.contact .content .upload_files .tips {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .content .upload_files .tips img {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 10px;
}
.contact .content .upload_files .tips span {
  font-size: 12px;
  color: #000;
}
.contact .content .upload_files.drag-over {
  border-color: #11DAB5;
  background: rgba(226, 0, 5, 0.04);
}
.contact .content .upload_files #uploadedFileList {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.contact .content .upload_files #uploadedFileList .upload-file-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  box-sizing: border-box;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 6px;
}
.contact .content .upload_files #uploadedFileList .upload-file-item span {
  font-size: 13px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 20px);
}
.contact .content .upload_files #uploadedFileList .upload-file-item em {
  font-style: normal;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}
.contact .content .upload_files #uploadedFileList .upload-file-item em:hover {
  color: #11DAB5;
}
.footer {
  width: 100%;
  background: #ffffff;
  position: relative;
}
.footer .line {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer .line img {
  width: 100%;
  display: block;
}
.footer .footer_wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 80px;
}
.footer .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
.footer .content .logo {
  width: 450px;
}
.footer .content .logo img {
  display: block;
  width: 100%;
}
.footer .content .nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer .content .nav a {
  font-size: 20px;
  color: #656565;
  margin: 0 25px;
}
.footer .content .nav a:hover {
  color: #11DAB5;
}
.footer .footer_text {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer_text .icons {
  display: flex;
  align-items: center;
}
.footer .footer_text .icons a {
  margin: 0 10px;
}
.footer .footer_text .icons a img {
  width: 26px;
  height: 26px;
  display: block;
  transition: 0.5s;
}
.footer .footer_text .icons a:hover img {
  transform: scale(1.1);
}
.footer .footer_text .lang {
  width: 98px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 2px solid #565656;
  box-sizing: border-box;
  cursor: pointer;
}
.footer .footer_text .lang span {
  font-size: 18px;
  color: #565656;
  margin-right: 10px;
  font-weight: 600;
}
.footer .footer_text .lang img {
  width: 36px;
  height: 36px;
  display: block;
}
.footer .footer_text .lang:hover {
  border: 2px solid #11DAB5;
}
.footer .footer_text .lang:hover span {
  color: #11DAB5;
}
.footer .bottom {
  width: 100%;
  border-top: 1px solid #11DAB5;
}
.footer .bottom .bottom_wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
}
.footer .bottom .bottom_wrap .a {
  display: flex;
  align-items: center;
}
.footer .bottom .bottom_wrap .a a {
  margin-right: 10px;
}
.footer .bottom .bottom_wrap a {
  font-size: 14px;
  color: #666;
}
.footer .bottom .bottom_wrap a:hover {
  color: #11DAB5;
}
/* ── Mobile Navigation ── */
.mobile-actions {
  display: none;
  align-items: center;
}
.mobile-actions .mobile-lang {
  width: 28px;
  height: 28px;
  margin-right: 16px;
  cursor: pointer;
}
.mobile-actions .mobile-lang img {
  width: 100%;
  height: 100%;
  display: block;
}
.mobile-actions .mobile-hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.mobile-actions .mobile-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-actions .mobile-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-actions .mobile-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.mobile-actions .mobile-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer .mobile-drawer-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-drawer .mobile-drawer-logo {
  width: 100px;
}
.mobile-drawer .mobile-drawer-logo img {
  display: block;
  width: 100%;
}
.mobile-drawer .mobile-drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.mobile-drawer .mobile-drawer-close:hover {
  background: #f5f5f5;
}
.mobile-drawer .mobile-drawer-close svg {
  display: block;
}
.mobile-drawer .mobile-drawer-menu {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}
.mobile-drawer .mobile-drawer-menu .mobile-drawer-item {
  display: block;
  width: 100%;
  padding: 16px 24px;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
  transition: background 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}
.mobile-drawer .mobile-drawer-menu .mobile-drawer-item::after {
  content: '';
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #11DAB5;
  transition: width 0.3s ease;
}
.mobile-drawer .mobile-drawer-menu .mobile-drawer-item:hover,
.mobile-drawer .mobile-drawer-menu .mobile-drawer-item:active {
  color: #11DAB5;
  background: #f9fffe;
}
.mobile-drawer .mobile-drawer-menu .mobile-drawer-item:hover::after,
.mobile-drawer .mobile-drawer-menu .mobile-drawer-item:active::after {
  width: calc(100% - 48px);
}
.searchDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  z-index: 2001;
  display: none;
  backdrop-filter: blur(8px);
}
.searchDialog .searchDialog-inner {
  width: 90%;
  max-width: 1200px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 5% 5%;
  position: relative;
  overflow: hidden;
}
.searchDialog .searchDialog-inner .searchDialog-close {
  position: absolute;
  cursor: pointer;
  width: 160px;
  height: 160px;
  top: -80px;
  right: -80px;
  background: #11DAB5;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
}
.searchDialog .searchDialog-inner .searchDialog-close svg {
  width: 34px;
  height: 34px;
  margin: 0 0 26px 26px;
}
.searchDialog .searchDialog-inner .searchDialog-title {
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin-bottom: 36px;
  line-height: 30px;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner {
  width: 100%;
  height: 42px;
  position: relative;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input {
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  transition: 0.5s;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input:focus {
  font-weight: 400;
  outline: none;
  font-size: 24px;
  color: #333333;
  line-height: 42px;
  border: none;
  border-bottom: 1px solid #333;
  transition: 0.5s;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .icon-searchIcon {
  width: 32px;
  height: 32px;
  font-size: 24px;
  color: #ccc;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.langDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  z-index: 2001;
  display: none;
}
.langDialog .langDialog-inner {
  width: 90%;
  max-width: 1200px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 5% 5%;
  position: relative;
  overflow: hidden;
}
.langDialog .langDialog-inner .langDialog-close {
  position: absolute;
  width: 160px;
  height: 160px;
  cursor: pointer;
  top: -80px;
  right: -80px;
  background: #11DAB5;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
}
.langDialog .langDialog-inner .langDialog-close svg {
  width: 34px;
  height: 34px;
  margin: 0 0 26px 26px;
}
.langDialog .langDialog-inner .langDialog-title {
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin-bottom: 16px;
  line-height: 30px;
}
.langDialog .langDialog-inner .langDialog-main {
  display: flex;
  flex-wrap: wrap;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one {
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  border: 1px solid #EFEFEF;
  margin-right: 5%;
  height: 60px;
  border-radius: 30px;
  margin-top: 20px;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one p {
  width: 10px;
  height: 10px;
  background: #999999;
  border-radius: 50%;
  margin-right: 10px;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:hover {
  background: #11DAB5;
  border: 1px solid #11DAB5;
  color: #fff;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:hover p {
  background: #fff;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:nth-of-type(3n) {
  margin-right: 0;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one-active {
  background: #11DAB5;
  border: 1px solid #11DAB5;
  color: #fff;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one-active p {
  background: #fff;
}
.contact_dialog_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact_dialog_overlay.show {
  opacity: 1;
  visibility: visible;
}
.contact_dialog {
  width: 830px;
  border-radius: 30px;
  background: #ffffff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 80px;
  box-sizing: border-box;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact_dialog.show {
  opacity: 1;
  visibility: visible;
}
.contact_dialog .close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s ease;
}
.contact_dialog .close::before,
.contact_dialog .close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #333;
  transition: background 0.3s ease;
}
.contact_dialog .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.contact_dialog .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.contact_dialog .close:hover {
  transform: scale(1.1);
}
.contact_dialog .close:hover::before,
.contact_dialog .close:hover::after {
  background: #000;
}
.contact_dialog .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 40px;
}
.contact_dialog .title .text {
  width: 65%;
}
.contact_dialog .title .text .strong {
  width: 100%;
  color: #000000;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
}
.contact_dialog .title .text .p {
  font-size: 20px;
  color: #3d3d3d;
  font-weight: 600;
}
.contact_dialog .title .text .p em {
  font-style: normal;
  color: #11DAB5;
}
.contact_dialog .title .logo {
  width: 35%;
}
.contact_dialog .title .logo img {
  width: 100%;
  display: block;
}
.contact_dialog .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.contact_dialog .content .side {
  width: 240px;
}
.contact_dialog .content .side .contacts {
  width: 100%;
  border-radius: 6px;
  background: #e6e6e6;
  margin-bottom: 2px;
  padding: 20px 30px;
  box-sizing: border-box;
}
.contact_dialog .content .side .contacts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.contact_dialog .content .side .contacts a img {
  width: 18px;
  height: 18px;
  display: block;
}
.contact_dialog .content .side .contacts a span {
  width: calc(100% - 30px);
  color: #000000;
  font-size: 12px;
  display: block;
  border-bottom: 1px solid #a8a8a8;
  padding-bottom: 4px;
}
.contact_dialog .content .side .contacts a:last-child {
  margin-bottom: 0;
}
.contact_dialog .content .side .contacts a:hover span {
  color: #11DAB5;
}
.contact_dialog .content .side .upload_file {
  width: 100%;
  border-radius: 6px;
  background: #e6e6e6;
  padding: 20px 0;
  cursor: pointer;
}
.contact_dialog .content .side .upload_file .label {
  width: 100%;
  color: #000000;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
}
.contact_dialog .content .side .upload_file .img {
  width: 50px;
  margin: 0 auto 10px;
}
.contact_dialog .content .side .upload_file .img img {
  display: block;
  width: 100%;
}
.contact_dialog .content .side .upload_file .tips {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
}
.contact_dialog .content .side .upload_file .tips img {
  width: 16px;
  display: block;
  margin-right: 10px;
}
.contact_dialog .content .side .upload_file .tips span {
  font-size: 12px;
  color: #000;
}
.contact_dialog .content .form {
  width: calc(100% - 290px);
}
.contact_dialog .content .form .form_item {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #4E4E4E;
  overflow: hidden;
}
.contact_dialog .content .form .form_item input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #000;
  display: block;
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 0 10px;
  font-family: 'Inter_18pt';
}
.contact_dialog .content .form .form_item textarea {
  width: 100%;
  display: block;
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 10px;
  resize: none;
  font-family: 'Inter_18pt';
}
.contact_dialog .content .form .form_item.required {
  display: flex;
  align-items: center;
}
.contact_dialog .content .form .form_item.required .req_star {
  color: #11DAB5;
  font-size: 18px;
  line-height: 1;
  padding: 0 6px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 16px;
}
.contact_dialog .content .form .form_item.required input,
.contact_dialog .content .form .form_item.required textarea {
  flex: 1;
  width: auto;
}
.contact_dialog .content .form .submit {
  width: 130px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  border-radius: 20px;
  background: #191919;
  cursor: pointer;
  transition: 0.5s;
  box-sizing: border-box;
  margin: 0 auto;
}
.contact_dialog .content .form .submit:hover {
  background: #11DAB5;
}
#dialogUploadedFileList {
  margin-top: 10px;
}
#dialogUploadedFileList .file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 5px;
  font-size: 12px;
}
#dialogUploadedFileList .file-item span:first-child {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#dialogUploadedFileList .file-item .delete {
  cursor: pointer;
  color: #ff4444;
  font-weight: bold;
  margin-left: 10px;
  transition: color 0.3s ease;
}
#dialogUploadedFileList .file-item .delete:hover {
  color: #cc0000;
}
@media only screen and (max-width: 1700px) {
  .header .wrap {
    max-width: 94%;
  }
}
@media only screen and (max-width: 1470px) {
  .header .nav {
    max-width: 96%;
  }
  .header .nav .actions .contact_btn {
    font-size: 14px;
  }
  .header .nav .menu a span {
    font-size: 14px;
  }
  .product-dropdown .product-dropdown-inner {
    max-width: 80%;
  }
  .button {
    width: 200px;
    height: 42px;
  }
  .button .icon {
    width: 46px;
  }
  .button .span {
    width: calc(100% - 46px);
    font-size: 14px;
  }
  .contact .title h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .contact .title .span {
    font-size: 14px;
  }
  .contact {
    padding-bottom: 80px;
  }
  .footer .footer_wrap {
    padding: 50px 0;
  }
  .footer .content .logo {
    width: 300px;
  }
  .footer .content .nav a {
    font-size: 12px;
  }
  .footer .content {
    max-width: 70%;
    margin: 0 auto 30px;
  }
  .footer .content .text {
    padding-top: 50px;
  }
  .footer .content .text .company {
    font-size: 24px;
  }
  .footer .content .text .p p {
    font-size: 12px;
    line-height: 32px;
  }
  .footer .content .text .p a {
    font-size: 12px;
    line-height: 32px;
  }
  .footer .content .text .p {
    margin-bottom: 50px;
  }
  .footer .content .img {
    width: 30%;
  }
  .footer .footer_text {
    width: 70%;
    margin: 0 auto;
  }
  .footer .footer_text .lang {
    width: 88px;
    height: 36px;
  }
  .footer .footer_text .lang img {
    width: 20px;
    height: 20px;
  }
  .footer .footer_text .lang span {
    font-size: 12px;
  }
  .footer .footer_text .text em {
    font-size: 20px;
  }
  .footer .footer_text .text span {
    font-size: 20px;
  }
  .footer .bottom .bottom_wrap {
    max-width: 96%;
  }
  .sideitemOther {
    transform: scale(0.65);
  }
}
@media only screen and (max-width: 1280px) {
  .header {
    padding-top: 20px;
  }
  .header .nav .logo {
    width: 100px;
  }
  .header .wrap .logo {
    width: 60px;
    height: 60px;
  }
  .header .nav .menu {
    width: calc(100% - 300px);
  }
  .header .nav .actions .contact_btn {
    padding: 5px 10px;
    font-size: 12px;
  }
  .header .nav .menu a span {
    font-size: 12px;
  }
  .header .nav .contact a span {
    font-size: 12px;
  }
  .header .wrap .contact a span {
    font-size: 12px;
  }
  .header .nav .contact a img {
    width: 18px;
    margin-right: 10px;
  }
  .header .wrap .contact a img {
    width: 18px;
    margin-right: 10px;
  }
  .header .wrap .contact a:last-child img {
    width: 24px;
  }
  .product-dropdown .product-dropdown-cats a {
    font-size: 12px;
  }
  .header .nav .menu .menu-item .sub-menu a {
    font-size: 12px;
  }
  .contact .content {
    flex-wrap: wrap;
    width: 94%;
    margin: 0 auto;
    justify-content: center;
  }
  .contact .content .text {
    width: 100%;
  }
  .contact .content .form {
    margin-right: 50px;
  }
  .contact {
    padding-bottom: 80px;
  }
  .contact .title {
    padding: 60px 0;
  }
  .footer .bottom .bottom_wrap a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact .content .form {
    width: 80%;
    margin: 0;
    margin-bottom: 30px;
  }
  .contact .content .upload_files {
    width: 80%;
    margin: 0;
  }
  .contact .content .text {
    margin-bottom: 60px;
  }
  .footer .content {
    flex-wrap: wrap;
  }
  .footer .content .text {
    width: 100%;
    padding-top: 10px;
  }
  .footer .content .img1 {
    display: none;
  }
  .footer .content .img2 {
    display: block;
  }
  .sideitemOther {
    transform: scale(0.6);
    bottom: 15%;
  }
}
@media only screen and (max-width: 800px) {
  .header .nav .menu {
    display: none;
  }
  .header .nav .actions {
    display: none;
  }
  .header .nav .mobile-actions {
    display: flex;
  }
  .header .nav .logo {
    width: 100px;
  }
  .header {
    padding: 8px 0;
  }
  .header .nav {
    max-width: 94%;
  }
  .header .nav .contact {
    display: none;
  }
  .header .wrap .contact {
    display: none;
  }
  .contact {
    padding-bottom: 20px;
  }
  .contact .content .upload_files {
    padding: 10px 0;
  }
  .contact .content .upload_files .text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact .content .upload_files .span {
    font-size: 12px;
  }
  .contact .content .upload_files .img {
    width: 100px;
    margin-bottom: 10px;
  }
  .contact_dialog {
    width: 96%;
    padding: 0 10px;
  }
  .contact_dialog .title {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .contact_dialog .title .logo {
    display: none;
  }
  .contact_dialog .title .text .p {
    display: none;
  }
  .contact_dialog .content {
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .contact_dialog .title .text .strong {
    margin-bottom: 0;
  }
  .contact_dialog .content .side {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact_dialog .content .side .contacts {
    display: none;
  }
  .contact_dialog .content .form {
    width: 100%;
  }
  .contact_dialog .content .form .form_item {
    margin-bottom: 10px;
  }
  .sideitemOther {
    transform: scale(0.55);
    bottom: 10%;
    right: -16px;
  }
  .footer .content {
    max-width: 80%;
  }
  .footer .footer_text {
    width: 80%;
  }
}
@media only screen and (max-width: 640px) {
  .contact .title {
    padding: 30px 0;
  }
  .contact .title h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .contact .title .span {
    font-size: 12px;
    position: relative;
    z-index: 5;
  }
  .contact .content .form {
    width: 100%;
  }
  .contact .content .upload_files {
    width: 100%;
  }
  .contact .content .text .label {
    font-size: 14px;
  }
  .footer .content .logo {
    width: 100px;
  }
  .footer .content .nav {
    display: none;
  }
  .footer .content .text .company {
    font-size: 16px;
  }
  .footer .content .text .p p {
    font-size: 12px;
  }
  .footer .content .text .p a {
    font-size: 12px;
  }
  .footer .footer_text .text span {
    font-size: 12px;
  }
  .footer .bottom .bottom_wrap {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .footer .bottom .bottom_wrap .a {
    width: 100%;
  }
  .footer .bottom .bottom_wrap a {
    width: 100%;
    display: block;
  }
  .footer .footer_text .text em {
    font-size: 12px;
  }
  .sideitemOther {
    transform: scale(0.5);
    right: -20px;
    bottom: 8%;
  }
  .langDialog .langDialog-inner .langDialog-main {
    justify-content: space-between;
  }
  .langDialog .langDialog-inner .langDialog-main .langDialog-one {
    width: 48%;
    margin-right: 0;
  }
}
.sidefixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  z-index: 998;
  display: flex;
  width: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sidefixed .sideitemBase {
  border-radius: 23px;
}
.sidefixed .sideitemTop {
  background: #11DAB5;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.sidefixed .sideitemTop .icon-box {
  z-index: 801;
  padding: 10px 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 58px;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.sidefixed .sideitemTop .icon-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.sidefixed .sideitemTop .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
  color: #fff;
  word-break: break-word;
  font-weight: 400;
}
.sidefixed .sideitemTop svg {
  width: 19px;
  height: 19px;
}
.sidefixed .sideitemTop:hover {
  background: #0fc4a3;
}
.sidefixed .sideitem3 {
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: #11DAB5;
  transition: 0.5s;
  position: relative;
  right: 0;
}
.sidefixed .sideitem3:first-child {
  border-radius: 0;
}
.sidefixed .sideitem3:hover {
  background: #0fc4a3;
  right: 160px;
  border-radius: 10px !important;
}
.sidefixed .sideitem3:hover .icon-box {
  border-radius: 10px 0 0 10px !important;
  background: #0fc4a3;
}
.sidefixed .sideitem3:hover .sideins {
  border-radius: 0 10px 10px 0;
}
.sidefixed .sideitem3 .icon-box {
  z-index: 801;
  padding: 10px 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 58px;
  position: relative;
}
.sidefixed .sideitem3 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
  color: #fff;
  word-break: break-word;
  font-weight: 400;
}
.sidefixed .sideitem3 .icon-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.sidefixed .sideitem3 svg {
  width: 19px;
  height: 19px;
}
.sidefixed .sideitem3 .sideins {
  width: 180px;
  background: #0fc4a3;
  padding: 10px;
  color: #fff;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
}
.sidefixed .sideitem3 .sideins .contactWays-value {
  position: relative;
  color: #fff;
}
.sidefixed .sideitem3 .sideins .contactWays-value::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.5s;
}
.sidefixed .sideitem3 .sideins .contactWays-value:hover::after {
  width: 100%;
}
.sidefixed .sideitem3 .sideins p {
  line-height: 20px;
  padding: 8px 0;
  white-space: nowrap;
}
.sidefixed .sideitem3 .p a {
  color: #fff;
  width: 100%;
  display: block;
}
.sidefixed .sideitem3 .p a span {
  white-space: wrap;
}
.sidefixed .sideitem4:hover {
  right: 180px;
}
.sidefixed .sideitem4 .sideins {
  width: 180px;
}
.sidefixed .sideitem2 {
  cursor: pointer;
  width: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  background: #11DAB5;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}
.sidefixed .sideitem2:hover {
  background: #0fc4a3;
}
.sidefixed .sideitem2 .icon-box {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.sidefixed .sideitem2 .icon-box svg {
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.sidefixed .sideitem2 .icon-box p {
  font-size: 12px;
  background: transparent !important;
}
.sidefixed .sideitemOther {
  display: flex;
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 20px;
  transform: scale(0.7);
  transform-origin: top right;
  width: 100px;
  overflow: hidden;
  transition: width 0.3s;
}
.sidefixed .sideitemOther:hover {
  width: 210px;
}
.sidefixed .sideitemOther .sideitemOther-title {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  padding: 14px 10px;
  width: 100px;
  text-align: center;
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
  box-sizing: border-box;
}
.sidefixed .sideitemOther .sideitem-chat {
  width: 100%;
  min-width: 100px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
  position: relative;
}
.sidefixed .sideitemOther .sideitem-chat:last-child {
  border-bottom: none;
}
.sidefixed .sideitemOther .sideitem-chat .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 12px;
  opacity: 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.sidefixed .sideitemOther .sideitem-chat .link:hover {
  background: #EFEFEF;
}
.sidefixed .sideitemOther .sideitem-chat .link span {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  text-decoration: underline;
  white-space: nowrap;
}
.sidefixed .sideitemOther .sideitem-chat .link img {
  display: block;
  width: 50px;
}
.sidefixed .sideitemOther .sideitem-chat .gif {
  display: block;
  width: 76px;
  margin: 0 auto;
  transition: 0.3s;
  transform: scale(0.9);
  opacity: 1;
}
.sidefixed .sideitemOther:hover .sideitem-chat .link {
  opacity: 1;
}
.sidefixed .sideitemOther:hover .sideitem-chat .gif {
  opacity: 0;
}
/* ── Sidefixed Mobile ──────────────────────────────────────────── */
.sidefixedM {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 998;
  left: 0;
  display: none;
  justify-content: space-between;
  background: #11DAB5;
}
.sidefixedM .sideitem1 {
  width: 20%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sidefixedM .sideitem1:hover {
  overflow: visible;
}
.sidefixedM .sideitem1:hover .sideins {
  bottom: calc(105%);
  opacity: 1;
}
.sidefixedM .sideitem1 .icon-box {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.sidefixedM .sideitem1 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  word-break: break-word;
  background: transparent !important;
}
.sidefixedM .sideitem1 svg {
  width: 20px;
  height: 20px;
}
.sidefixedM .sideitem1 .sideins {
  border-radius: 6px;
  background: #0fc4a3;
  padding: 5px 5px;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.sidefixedM .sideitem1 .sideins p {
  line-height: 50px;
  white-space: nowrap;
}
.sidefixedM .sideitem1 .sideins p a {
  color: #fff;
}
.sidefixedM .sideitem2 {
  width: 20%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: .5s;
  overflow: hidden;
  position: relative;
}
.sidefixedM .sideitem2 .icon-box {
  padding: 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.sidefixedM .sideitem2 .icon-box svg {
  width: 15px;
  height: 10px;
  margin-bottom: 2px;
  margin-top: 5px;
}
.sidefixedM .sideitem2 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
}
.sideitemOther {
  display: flex;
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  right: 0;
  bottom: -200px;
  transform: scale(0.7);
  transform-origin: top right;
  z-index: 99;
  width: 100px;
  overflow: hidden;
  transition: width 0.3s;
}
.sideitemOther:hover {
  width: 210px;
}
.sideitemOther:hover .sideitem-chat .link {
  opacity: 1;
}
.sideitemOther:hover .sideitem-chat .gif {
  opacity: 0;
}
.sideitemOther .sideitemOther-title {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  text-align: center;
  padding: 15px 10px;
  width: 100px;
  box-sizing: border-box;
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
}
.sideitemOther .sideitem-chat {
  width: 100%;
  min-width: 100px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border-bottom: 1px solid #EFEFEF;
  transition: 0.3s;
  position: relative;
}
.sideitemOther .sideitem-chat:last-child {
  border-bottom: none;
}
.sideitemOther .sideitem-chat:last-child:hover::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #EFEFEF;
  position: absolute;
  top: -1px;
  left: 0;
}
.sideitemOther .sideitem-chat .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  left: 10px;
}
.sideitemOther .sideitem-chat .link:hover {
  background: #EFEFEF;
}
.sideitemOther .sideitem-chat .link:focus {
  background: #EFEFEF;
}
.sideitemOther .sideitem-chat .link span {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-decoration: underline;
  white-space: nowrap;
}
.sideitemOther .sideitem-chat .link img {
  display: block;
  width: 50px;
}
.sideitemOther .sideitem-chat .gif {
  display: block;
  width: 76px;
  margin: 0 auto;
  transition: 0.5s;
  transform: scale(0.9);
  opacity: 1;
}
/* PC shows sidefixed, hides sidefixedM */
@media only screen and (min-width: 1025px) {
  .sidefixed {
    display: flex;
  }
  .sidefixedM {
    display: none !important;
  }
}
/* Mobile shows sidefixedM, hides sidefixed */
@media only screen and (max-width: 1024px) {
  .sidefixed {
    display: none !important;
  }
  .sidefixedM {
    display: flex;
  }
  .footer .bottom {
    padding-bottom: 60px;
  }
  .contact {
    padding-bottom: 80px;
  }
}
