@media screen and (max-width: 786px) {
  .content,
  .content_big {
    padding: 0 1.2rem;
  }
  .swiper_content {
    padding: 10px 1.2rem;
  }
  .obly_mobile {
    display: block;
  }
  .head .subtitle {
    font-size: 14px;
  }
  .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .head h2 {
    font-size: 22px;
    line-height: 1.5;
  }
  .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .button,
  .button_r,
  .button_more {
    font-size: 14px;
    min-width: 120px;
    padding: 12px 50px 12px 20px;
    border-radius: 6px;
  }
  .button::before,
  .button_r::before,
  .button_more::before {
    width: 2rem;
    height: 2rem;
    right: 5px;
    border-radius: 6px;
  }
  .button::after,
  .button_r::after,
  .button_more::after {
    width: 12px!important;
    height: 12px!important;
    right: 15px!important;
  }
  .button:hover,
  .button_more:hover {
    padding: 12px 35px;
  }
  .swiper_btns.full div {
    width: 2.5rem;
    height: 2.5rem;
  }
  header {
    position: sticky;
    top: -4rem;
  }
  header.sticky {
    top: 0;
  }
  header .header_top {
    display: none;
  }
  header .header_main {
    width: 100%;
    padding: 12px 1.2rem;
    border-radius: 0;
  }
  header .header_products {
    display: none;
  }
  header .header_main .left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header_main .left .logo {
    top: 0;
  }
  header .header_main .left .logo img {
    height: 40px;
  }
  header .header_main .left .flex {
    align-items: center;
    gap: 1.2rem;
  }
  header .header_main .left .icon_menu {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / contain;
  }
  header .header_main .left .icon_search {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/search.svg) no-repeat center / contain;
  }
  header .header_main .left .overlay_m {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 9999;
  }
  header .header_main .left .overlay_m.active {
    display: block;
  }
  header .header_main nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75vw;
    height: 100vh;
    background-color: #fff;
    z-index: 19999;
    transition: all 0.3s;
    display: block;
    overflow: auto;
  }
  header .header_main nav.active {
    left: 0;
  }
  header .header_main nav .close {
    padding: 2rem 1.2rem 1.2rem;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header .header_main nav .close span {
    display: inline-block;
    width: 15px;
    filter: brightness(0);
    height: 15px;
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
  }
  header .header_main nav div > ul {
    display: block;
  }
  header .header_main nav div > ul > li::before {
    display: none;
  }
  header .header_main nav div > ul > li > a {
    color: var(--title_color);
    line-height: 4rem;
    padding: 0;
    font-size: 16px;
    padding-left: 4rem;
    position: relative;
  }
  header .header_main nav div > ul > li > a::before {
    content: "";
    width: 23px;
    height: 23px;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: url('../img/mobile-menu/menu-default.svg') no-repeat center / contain;
  }
  header .header_main nav div > ul > li.menu-item-home > a::before {
    background-image: url(../img/mobile-menu/menu-home.svg);
  }
  header .header_main nav div > ul > li.product-icon > a::before {
    background-image: url(../img/mobile-menu/menu-product.svg);
  }
  header .header_main nav div > ul > li.about-icon > a::before {
    background-image: url(../img/mobile-menu/menu-about.svg);
  }
  header .header_main nav div > ul > li.blog-icon > a::before {
    background-image: url(../img/mobile-menu/menu-blog.svg);
  }
  header .header_main nav div > ul > li.service-icon > a::before {
    background-image: url(../img/mobile-menu/menu-service.svg);
  }
  header .header_main nav div > ul > li.contact-icon > a::before {
    background-image: url(../img/mobile-menu/menu-contact.svg);
  }
  header .header_main nav div > ul > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header .header_main nav div > ul > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 2rem);
    top: 26px;
    transition: all 0.3s;
  }
  header .header_main nav div > ul > li.active::after {
    transform: rotate(180deg);
  }
  header .header_main nav div > ul > li ul {
    position: static;
    visibility: visible;
    padding: 1rem 1rem 0.8rem;
    background-color: #f8f8f8;
    margin: 0 2rem;
    box-shadow: none;
    border-radius: 5px;
    display: none;
    transform: translate(0);
    opacity: 1;
    pointer-events: all;
    transition: none;
  }
  header .header_main nav div > ul > li ul li a {
    color: var(--title_color);
    padding: 0.5rem 0;
    white-space: wrap;
    font-size: 14px;
  }
  header .header_main .right {
    display: none;
  }
  footer .cta {
    padding: 2rem 0;
  }
  footer .cta .head {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .cta .head h2 {
    line-height: 1.5;
  }
  footer .footer_main {
    padding: 2rem 0;
  }
  footer .footer_main .content > .flex {
    display: block;
  }
  footer .footer_main .slide_obj strong {
    font-size: 15px;
    line-height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 1.2rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 500;
  }
  footer .footer_main .slide_obj strong::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/select.svg) no-repeat center / contain;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    transition: all 0.3s;
  }
  footer .footer_main .slide_obj.active strong::after {
    transform: translateY(-50%) rotate(0);
  }
  footer .footer_main .slide_obj > div {
    display: none;
    padding: 0 1.2rem 1.2rem;
  }
  footer .footer_main .slide_obj > div li {
    margin-bottom: 0;
  }
  footer .footer_main .slide_obj > div a {
    font-size: 14px;
    line-height: 2rem;
    display: block;
  }
  footer .footer_main .slide_obj > div p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  footer .footer_main .subscribe {
    width: 100%;
  }
  footer .footer_main .subscribe p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  footer .footer_main .subscribe form {
    margin-top: 1.2rem;
  }
  footer .footer_main .subscribe form input[type="email"] {
    font-size: 14px;
    padding-bottom: 0.7rem;
  }
  form#sytech-newsletter-subscription p.failed, form#sytech-newsletter-subscription p.success{
    left: -1.3rem!important;
  }
  footer .footer_bottom {
    padding: 2rem 0;
  }
  footer .footer_bottom .content > .flex {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  footer .footer_bottom .logo img {
    width: 150px;
  }
  footer .footer_bottom ul {
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
  }
  footer .footer_bottom ul li {
    height: 2rem;
  }
  footer .footer_bottom ul li img {
    max-width: 4rem;
  }
  footer .copyright {
    padding: 10px 0;
  }
  footer .copyright p {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }
  footer .copyright .flex div {
    display: none;
  }
  .home_banner {
    padding: 4rem 0 3rem;
  }
  .home_banner .content > .flex {
    min-height: unset;
    padding: 0;
  }
  .home_banner .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .home_banner .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_banner .head .button {
    font-size: 14px;
    min-width: 120px;
    padding: 12px 50px 12px 20px;
    border-radius: 6px;
    margin-top: 1.2rem;
  }
  .home_banner .head .button::before {
    width: 2rem;
    height: 2rem;
    right: 5px;
    border-radius: 6px;
  }
  .home_banner .head .button::after {
    width: 12px;
    height: 12px;
    right: 15px;
  }
  .home_banner .head .button:hover {
    padding: 12px 35px;
  }
  .home_banner ul {
    display: flex;
    overflow: auto;
    gap: 1rem;
    margin-top: 2rem;
  }
  .home_banner ul li {
    min-width: 35%;
  }
  .home_banner ul li p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .home_nums {
    padding: 4rem 0;
  }
  .home_nums ul {
    flex-wrap: wrap;
    gap: 2rem 0;
  }
  .home_nums ul li {
    flex: unset;
    width: 50%;
    padding: 0 10px;
  }
  .home_nums ul li::after {
    display: none !important;
  }
  .home_nums ul li span {
    font-size: 1.8rem;
    line-height: 1;
  }
  .home_nums ul li p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
  }
  .home_fabric {
    padding: 4rem 0;
  }
  .home_fabric .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_fabric .main {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    overflow: auto;
  }
  .home_fabric .main .item {
    min-width: 75%;
  }
  .home_fabric .main .item .img {
    height: 150px;
  }
  .home_fabric .main .item strong {
    font-size: 1rem;
    line-height: 1.5;
    padding: 12px 1rem;
  }
  .home_fabric .main .item ul {
    padding: 1rem 0 2rem 1rem;
  }
  .home_fabric .main .item ul li {
    padding-right: 1rem;
  }
  .home_fabric .main .item ul li a {
    font-size: 14px;
    line-height: 1.5;
  }
  .home_expert {
    padding: 4rem 0 3rem;
  }
  .home_expert .flex {
    padding: 0;
    display: block;
  }
  .home_expert .home_expert_swiper {
    width: 80%;
    margin: 0 auto;
  }
  .home_expert .home_expert_swiper .swiper-slide {
    opacity: 1 !important;
    pointer-events: all !important;
  }
  .home_expert .head {
    padding: 2rem 0 0;
  }
  .home_expert .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_expert .head ul {
    margin-top: 1.2rem;
  }
  .home_expert .head ul li {
    gap: 12px;
    width: calc(50% - 6px);
  }
  .home_expert .head ul li span {
    font-size: 14px;
    line-height: 1.5;
  }
  .home_expert .head ul li i {
    width: 2.2rem;
    height: 2.2rem;
  }
  .home_expert .head .button {
    margin-top: 1.6rem;
  }
  .home_partner {
    padding: 3rem 0 4rem;
  }
  .home_partner .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_partner .home_partner_swiper {
    margin-top: 2rem;
  }
  .home_category {
    padding: 4rem 0;
  }
  .home_category .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_category .main {
    margin-top: 2rem;
  }
  .home_category .main ul {
    gap: 1.2rem 12px;
    grid-template-columns: repeat(4, 1fr);
  }
  .home_category .main ul li p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
  }
  .home_blog {
    padding: 4rem 0 5rem;
  }
  .home_blog .head {
    gap: 1.2rem;
  }
  .home_blog .head .nav ul li {
    font-size: 14px;
    padding: 9px 1rem;
    min-width: unset;
    border-radius: 6px;
  }
  .home_blog .swiper_box {
    margin-top: 22px;
  }
  .home_blog .swiper_box .swiper_btns {
    display: none;
  }
  .home_blog .button_more {
    margin-top: 2rem;
  }
  .posts .post a {
    border-radius: 10px;
  }
  .posts .post .img {
    height: 180px;
  }
  .posts .post .img span {
    font-size: 12px;
  }
  .posts .post .info {
    margin: 0 1rem;
    padding: 1rem 0;
  }
  .posts .post .info span {
    font-size: 13px;
  }
  .posts .post .info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
  .posts .post .info strong {
    font-size: 14px;
    margin-top: 1.6rem;
  }
  .about_banner .flex {
    min-height: unset;
  }
  .about_banner .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .about_banner .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .about_banner .banner {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
  }
  .about_banner .banner::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .about_banner .link a {
    position: static;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.5;
    padding: 1.2rem;
    min-width: unset;
    min-height: unset;
    gap: 10px;
  }
  .about_intro {
    margin: 0;
    padding: 4rem 0;
  }
  .about_intro::after {
    width: 100%;
    height: 100%;
  }
  .about_intro .head span {
    font-size: 14px;
    margin-top: 0.5rem;
  }
  .about_intro .flex {
    display: block;
    margin-top: 2rem;
  }
  .about_intro .img {
    width: 100%;
    border-radius: 10px;
  }
  .about_intro .info {
    margin-top: 1.2rem;
  }
  .about_intro .info p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    padding-bottom: 0.5rem;
  }
  .about_intro .info .button {
    margin-top: 0.7rem;
  }
  .about_endorsed {
    padding: 4rem 0 3rem;
  }
  .about_endorsed ul {
    display: flex;
    overflow: auto;
    gap: 1rem;
    margin-top: 2rem;
  }
  .about_endorsed ul li {
    min-width: 35%;
  }
  .about_endorsed ul li .img {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .about_endorsed ul li p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .about_culture {
    padding: 3rem 0 4rem;
  }
  .about_culture .main {
    margin-top: 2rem;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .about_culture .main .img {
    width: 100%;
    border-radius: 10px;
  }
  .about_culture .main .left ul li {
    gap: 10px;
    margin-bottom: 1.2rem;
  }
  .about_culture .main .left ul li:last-child {
    margin-bottom: 0;
  }
  .about_culture .main .left ul li i {
    width: 2.5rem;
    height: 2.5rem;
  }
  .about_culture .main .left ul li strong {
    font-size: 1rem;
    line-height: 1.5;
  }
  .about_culture .main .left ul li p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0;
  }
  .about_offer {
    padding: 3rem 0 4rem;
  }
  .about_offer .about_offer_swiper {
    margin-top: 2rem;
  }
  .about_offer .about_offer_swiper .swiper-slide {
    padding: 2rem 1rem 1.2rem;
    background-color: #f7f7f7;
    border-radius: 10px;
  }
  .about_offer .about_offer_swiper .swiper-slide i {
    width: 3rem;
    height: 3rem;
  }
  .about_offer .about_offer_swiper .swiper-slide strong {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 1.2rem;
  }
  .about_offer .about_offer_swiper .swiper-slide p {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin-top: 0.5rem;
  }
  .about_gallery {
    padding: 4rem 0;
  }
  .about_gallery .swiper_box {
    margin-top: 2rem;
    padding: 0 1.2rem;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .img {
    height: 200px;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .info {
    padding: 1.2rem 0;
    flex-direction: column;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .info .left {
    padding: 0 1.2rem;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .info .left strong {
    font-size: 18px;
    line-height: 1.5;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .info .left p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .info .right {
    width: 100%;
    text-align: right;
    padding: 0 1.2rem;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .info .right span {
    font-size: 1.8rem;
  }
  .about_gallery .about_gallery_swiper .swiper-slide .info .right p {
    font-size: 14px;
    margin-top: 0.5rem;
  }
  .about_global {
    padding: 4rem 0 5rem;
  }
  .about_global img {
    margin: 2rem 0;
  }
  .about_global ul li::after {
    height: 100% !important;
  }
  .about_global ul li span {
    font-size: 1.6rem;
  }
  .about_global ul li p {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
  .blog_banner {
    padding: 4rem 0;
  }
  .blog_banner .flex {
    padding: 0;
    min-height: unset;
  }
  .blog_banner .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .blog_banner .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .blog_latest {
    padding: 4rem 0 3rem;
  }
  .blog_latest .blog_latest_swiper {
    width: calc(100% - 3rem);
    border-radius: 0;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a {
    padding: 0 1.5rem;
    border-radius: 0 2rem 0 2rem;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a .flex {
    width: 100%;
    flex-direction: column-reverse;
    gap: 0;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a .img {
    width: 100%;
    height: 200px;
    top: -1.2rem;
    border-radius: 8px 8px 0 8px;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a .img span {
    font-size: 12px;
    padding: 9px 1rem;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a .info span {
    font-size: 14px;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a .info strong {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-weight: 600;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a .info p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .blog_latest .blog_latest_swiper .swiper-slide a .info i {
    font-size: 14px;
    padding: 11px 1rem;
    margin-top: 1rem;
  }
  .blog_latest .swiper_box {
    margin: 0 auto;
  }
  .blog_latest .swiper_box .swiper_btns {
    width: calc(100% - 1rem);
  }
  .blog_latest .swiper_box .swiper_btns div {
    width: 2rem;
    height: 2rem;
  }
  .blog_main {
    padding: 3rem 0 5rem;
  }
  .blog_main .head {
    gap: 1.2rem;
  }
  .blog_main .head .nav ul li a {
    padding: 9px 1rem;
    font-size: 14px;
    border-radius: 6px;
    min-width: unset;
  }
  .blog_main .main {
    margin-top: 2rem;
  }
  .blog_main .main ul {
    margin-bottom: 2rem;
    gap: 1rem 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog_main .main ul li .img {
    height: 160px;
  }
  .blog_main .main ul li .info {
    margin: 0 12px;
    padding: 10px 0 1rem;
  }
  .blog_main .main ul li .info strong {
    font-size: 13px;
    margin-top: 14px;
  }
  .blog_main .main .button_more {
    min-width: 120px;
  }
  .category_banner {
    padding: 4rem 0 3rem;
  }
  .category_banner > .content > .breadcrumbs {
    margin-bottom: 1rem;
    font-size: 12px;
    line-height: 1.4;
  }
  .category_banner .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .category_banner .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .category_banner .head i {
    margin-top: 1.2rem;
  }
  .category_banner .category_banner_swiper {
    margin-top: 2rem;
  }
  .category_banner .category_banner_swiper .swiper-slide p {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 8px;
  }
  .category_intro {
    padding: 2rem 0;
  }
  .category_intro .syeditorlist > li {
    padding: 2rem 0;
    display: block;
  }
  .category_intro .syeditorlist > li .img {
    width: 100%;
  }
  .category_intro .syeditorlist > li .head {
    margin-top: 1.2rem;
  }
  .category_intro .syeditorlist > li .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .category_intro .syeditorlist > li .head ul {
    margin-top: 1.2rem;
  }
  .category_intro .syeditorlist > li .head ul li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 1rem;
  }
  .category_intro .syeditorlist > li .head ul li::before {
    width: 10px;
    height: 10px;
    top: 4px;
  }
  .category_intro .syeditorlist > li .head .button {
    margin-top: 1.6rem;
  }
  .category_main {
    padding: 2rem 0 5rem;
  }
  .category_main .left {
    position: fixed;
    right: 0;
    top: 0;
    width: 80vw;
    height: 100vh;
    z-index: 999;
    background-color: #fff;
    max-width: unset;
    transition: all 0.3s ease-in-out;
    margin: 0;
    flex: unset;
    padding: 4rem 1.6rem;
    overflow: auto;
    transform: translateX(100%);
  }
  .category_main .left.active {
    transform: translate(0);
  }
  .category_main .left .widget {
    margin-bottom: 1.6rem;
  }
  .category_main .left .widget strong {
    font-size: 18px;
  }
  .category_main .left .widget strong::after {
    width: 12px;
    height: 12px;
    min-width: 12px;
  }
  .category_main .left .widget .terms li {
    font-size: 14px !important;
    gap: 10px !important;
  }
  .category_main .left .widget .terms li::before {
    top: 2px !important;
  }
  .category_main .left .widget .terms li a {
    font-size: 14px;
  }
  .category_main .right h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 22px;
    line-height: 1.5;
  }
  .category_main .right .icon_menu_p {
    min-width: 20px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/mobile-menu/nav-btn-p.svg) no-repeat center / contain;
  }
  .category_main .right .main {
    margin-top: 2rem;
  }
  .category_main .right .main ul {
    margin-bottom: 3rem;
    gap: 2rem 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .products .product .more {
    font-size: 14px;
    width: calc(100% - 2rem);
    bottom: 1rem;
    transform: translate(-50%, calc(100% + 20px)); 
  }
  .products .product .info span {
    margin: 10px 0;
    font-size: 15px;
  }
  .products .product .info p {
    font-size: 1.05rem;
    line-height: 1.4;
  }
  .contact_main {
    padding: 10rem 0 5rem;
  }
  .contact_main .flex {
    display: block;
  }
  .contact_main .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .contact_main .head p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .contact_main .head ul {
    margin-top: 2rem;
  }
  .contact_main .head ul li {
    margin-bottom: 1.2rem;
    gap: 10px;
  }
  .contact_main .head ul li i {
    width: 3rem;
    height: 3rem;
  }
  .contact_main .head ul li a,
  .contact_main .head ul li strong {
    font-size: 18px;
    line-height: 1.5;
  }
  .contact_main .head ul li p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact_main .inquiry_form {
    width: 100%;
    margin-top: 2rem;
    padding: 2rem 1.2rem 1.6rem;
  }
  .contact_main .inquiry_form form {
    gap: 1rem 0;
  }
  .contact_main .inquiry_form form strong {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .contact_main .inquiry_form form input,
  .contact_main .inquiry_form form textarea {
    font-size: 14px;
    padding: 0.7rem 1rem;
  }
  .contact_main .inquiry_form form select{
    font-size: 14px;
    padding: 0.7rem 1rem;
  }
  .contact_main .inquiry_form form textarea {
    height: 120px;
  }
  .contact_main .inquiry_form form input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
  }
  .contact_main .inquiry_form form p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 5px;
  }
  .contact_main .inquiry_form form p a {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .contact_main .inquiry_form form input[type="submit"] {
    font-size: 14px;
    padding: 12px 1rem;
  }
  .contact_main .inquiry_form form input[type="submit"] ~ i {
    width: 2rem;
    height: 2rem;
    right: 5px;
    top: 5px;
  }
  .post_main {
    padding: 2rem 0 3rem;
  }
  .post_main h1 {
    font-size: 22px;
    line-height: 1.5rem;
  }
  .post_main .main_img {
    height: auto;
    margin-top: 2rem;
  }
  .post_main .main_img .pic {
    position: static;
    height: auto;
    border-radius: 10px;
  }
  .post_main .main_img .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .post_main .flex {
    margin-top: 1rem;
    padding: 0;
    flex-direction: column-reverse;
  }
  .post_main .left {
    width: 100%;
    padding-top: 3rem;
  }
  .post_main .left strong {
    font-size: 18px;
    line-height: 1.5;
  }
  .post_main .left .infos {
    margin-bottom: 2rem;
  }
  .post_main .left .infos li {
    font-size: 14px;
    gap: 8px;
  }
  .post_main .left .infos li i {
    width: 1rem;
    height: 1rem;
  }
  .post_main .left .cate {
    margin-bottom: 2rem;
  }
  .post_main .left .cate li {
    margin-bottom: 0.6rem;
    padding-left: 1rem;
  }
  .post_main .left .cate li a {
    font-size: 14px;
  }
  .post_main .left .tags {
    margin-bottom: 2rem;
  }
  .post_main .left .tags ul {
    margin-top: 1.2rem;
  }
  .post_main .left .tags ul li {
    font-size: 14px;
    padding: 9px 1rem;
    min-width: unset;
  }
  .post_main .left .share .social {
    margin-top: 1.2rem;
  }
  .post_main .right .excerpt {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .post_main .right .post_detail h2 {
    font-size: 18px;
    line-height: 1.5;
    padding-top: 2rem;
  }
  .post_main .right .post_detail p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    padding-top: 1rem;
    font-family: initial;
  }
  .post_main .right .post_detail img {
    padding-top: 1rem;
  }
  .post_main .right .post_detail ul {
    padding: 0;
  }
  .post_main .right .post_detail ul li {
    font-size: 0.9rem;
    line-height: 1.5rem;
    padding-top: 0.5rem;
  }
  .post_main .right .post_detail ul li::before {
    width: 6px;
    height: 6px;
    top: 18px;
  }
  .post_blog {
    padding: 3rem 0 5rem;
  }
  .post_blog .swiper_btns {
    display: none;
  }
  .post_blog .swiper_box {
    margin: 22px 0 0;
  }
  .post_blog .button_more {
    margin-top: 2rem;
    min-width: 120px;
  }
  .product_preview {
    padding: 2rem 0;
  }
  .product_preview .flex {
    flex-direction: column-reverse;
  }
  .product_preview .right {
    width: 100%;
    padding-bottom: 90%;
  }
  .product_preview .left {
    padding: 1rem 0 0;
  }
  .product_preview .left span {
    font-size: 14px;
  }
  .product_preview .left h1 {
    font-size: 22px;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
  .product_preview .left p {
    font-size: .9rem;
    line-height: 1.5rem;
    margin-top: 12px;
  }
  .product_preview .left ul {
    margin-top: 1.2rem;
  }
  .product_preview .left ul li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 1rem;
  }
  .product_preview .left ul li::before {
    width: 10px;
    height: 10px;
    top: 4px;
  }
  .product_preview .left .button {
    margin-top: 1.2rem;
  }
  .product_preview .like {
    margin-top: 2rem;
    padding-top: 1rem;
  }
  .product_preview .like a {
    font-size: 14px;
    padding-left: 1.6rem;
    background-size: 1rem;
  }
  .product_attr {
    padding: 2rem 0;
  }
  .product_attr ul {
    border-radius: 2rem 0 2rem 0;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
    gap: 1.6rem 10px;
  }
  .product_attr ul li {
    gap: 8px;
  }
  .product_attr ul li i {
    width: 2rem;
    height: 2rem;
  }
  .product_attr ul li strong {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .product_attr ul li span {
    font-size: 14px;
  }
  .product_intro {
    padding: 2rem 0;
  }
  .product_intro li {
    padding: 2rem 0;
    flex-direction: column-reverse;
  }
  .product_intro li .img {
    width: 100%;
    order: 2;
  }
  .product_intro li .info h2 {
    font-size: 22px;
    line-height: 1.5;
  }
  .product_intro li .info p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .product_box {
    padding: 3rem 0 5rem;
  }
  .product_box .swiper_btns {
    display: none;
  }
  .product_box .swiper_box {
    margin: 2rem 0 3rem;
  }

  .product_inquiry {
    padding: 3rem 0;
  }

  .product_inquiry .inquiry_form {
    margin-top: 2rem;
  }

  .video_pop .pop_content video {
    min-width: unset;
    min-height: 193.5px;
    width: 90vw;
  }

  .wpcf7-not-valid-tip {
    font-size: 14px !important;
  }

  body .wpcf7 form.invalid .wpcf7-response-output,
  body .wpcf7 form.unaccepted .wpcf7-response-output,
  body .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 14px !important;
    line-height: 22px;
  }



  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  div.search-block input[type='text'] {
    flex: 1;
  }

  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    /* background: url(../img/page_home-header_search.svg) no-repeat center; */
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    display: none!important;
    outline: none;
  }

  div.search-block div.content {
    position: unset;
  }

  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }

  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }

  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    display: none;
  }

  div.search-block.active {
    top: 20%;
    display: block;
    height: 80%;
    transform: translateY(0);
  }

  .search-block input[type="submit"]:not(:disabled):hover {
    /* background: url(../img/page_home-header_search.svg) no-repeat center; */
    background-size: 1.4rem;
    border: none;
  }
  body.search  h1{
    font-size: 18px;
  }
  body.search  .filter span{
    font-size: 14px;
  }

  .page_banner{
    padding: 4rem 0;
  }
  .page_banner .head h1{
    font-size: 25px;
  
  }

  
  .privacy-policy .blog_details h1 {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 1rem;
    padding-bottom: 0;
  }

  .privacy-policy .blog_details {
    padding: 20px 0 50px;
  }
  
  .privacy-policy .blog_details h1 {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 1rem;
    padding-bottom: 0;
  }

  .privacy-policy .blog_details .blog_detail h2 {
    font-size: 1.125rem;
    padding-top: 20px;
  }
  
  .privacy-policy .blog_details .blog_detail p,
  .blog_details li {
    padding-top: 20px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .page_banner .head p{
    font-size: 16px;
    line-height: 24px;
  }
  
  
  .quote-content .left{
    display: none;
  }
  .modal .modalcontent{
    width: 100%;
    
    height: 100%;
  }
  .quote-content .right{
    padding: 1.2rem;
    width: 100%;
  }
  .quote-content{
    height: 100%;
    padding-top: 3rem;
    border-radius: 0;
  }
  .services-all li{
    width: 100%;
    margin-right: 0;
  }
  .services-all .head p{
    max-width: 100%;
  }
  .services-all ul li div.img{
    height: 150px;
  }
  .services-all ul li strong{
    font-size: 17px;
  }
  .services-all ul li p{
    font-size: 0.9rem;
  }
  .modal .modalcontent{
    border-radius: 0;
    height: auto;
    top: unset;
    bottom: -200%;
    transform: translate(-50%,0);
  }
  .modal-q .modal .modalcontent{
    bottom: 0;
    top: unset;
    max-height: 90vh;
    overflow: auto;
    transform: translate(-50%,0);
  }
  .quote-content{
    max-height: unset;
  }

  
  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  div.search-block input[type='text'] {
      flex: 1;
  }

  div.search-block input[type='submit'] {
      width: 1.5rem;
      height: 1.5rem;
      margin: 0 2.2vw 0 1.2vw;
      /* background: url(../img/page_home-header_search.svg) no-repeat center; */
      background-size: 1.4rem;
      display: inline-block;
      vertical-align: middle;
      transition: 0.3s all ease;
      cursor: pointer;
      border: none;
      outline: none;
  }

  div.search-block div.content {
      position: unset;
  }

  div.search-block .searchform input[type='text'] {
      font-size: 22px;
      height: 70px;
  }

  .wd-action-btn {
      width: 25px;
      height: 25px;
      top: unset;
      right: 2rem;
      bottom: 2rem;
  }

  div.search-block {
      height: 100%;
      width: 100%;
      top: 120%;
      bottom: unset;
      display: block!important; 
    transform: translateY(150px);
  }

  div.search-block.active {
    top: 20%;
    display: block;
    height: 80%;
    transform: translateY(0);
  }

  .search-block input[type="submit"]:not(:disabled):hover {
      /* background: url(../img/page_home-header_search.svg) no-repeat center; */
      background-size: 1.4rem;
      border: none;
  }
  form#sytech-newsletter-subscription p.failed.active, form#sytech-newsletter-subscription p.success.active{
    font-size: 12px; 
  } 
  .product_spec .right table tr td:first-child{
    min-width: 82px;
  }
  
  .empty_img~p{
    font-size: 16px;
    margin-bottom: 1rem;
  } 

  header .header_main nav div > ul > li ul{
    display: block;
  }
  .category_intro .syeditorlist>li:nth-of-type(1) .img img{
    display: none;
  }
  .category_intro .syeditorlist>li .head p{
    font-size: 1rem !important;
  }
  .category_intro .syeditorlist>li .head ul li{
    font-size: 1rem !important;
  }
  .category_intro .syeditorlist>li .head ul li::before{
    height: 17px !important;
  }

  .category_main {
    padding: 50px 0;
  }
  .category_main .head {
    padding-bottom: 0;
  }
  .category_main .main .main_row {
    margin-top: 30px;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);

  }
  .category_main .main .main_row a .img {
    height: 160px;
  }
  .category_main .main .main_row a .info {
    padding: 0.5rem 0;
  }
  .category_main .main .main_row a .info h3 {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
  }
  .category_main .main .main_row a .info p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .category_main .main .main_row a .info strong {
    font-size: 14px;
  }
  .post_main .main_img .pic{
    width: 100%;
    height: 200px;
  }
  .box404_content h1{
    font-size: 24px;
  }
  .product_silder{
    position: unset;
  }
  .product_silder ul li{
    width: 80px;
    height: 80px;
  }
  .product_silder ul {
    display: flex;
    gap: 1rem;
  }
  .product_silder ul li img{
    width: 80px;
    height: 80px;
  }
  .product_silder ul li.video {
    margin-top: 0px;
  }
  .product_silder ul li.video img{
    width: 40px;
    height: 40px;
  }

  .video_pop {
    padding: 0;
  }
  .video_pop .pop_content video {
    min-width: 90vw;
    min-height: 194px;
  }
  .video_pop .mask .close {
    right: 1rem;
  }
  .product_preview > .content_big > .flex{
    align-items: start;
  }
  .video_pop .pop_content iframe{
    min-width: 100%;
    min-height: unset;
  }
 
  .product_preview .right a .open_more{
    width: 50px;
    height: 50px;
    bottom: 3.5rem
  }
  .product_preview .right a .open_more img{
    width: 20px;
    height: 20px;
  }
 
  .post_main .right .post_detail p a{
    font-size: 0.9rem;
  }

  .catalogue{
    padding: 2rem 1rem;
  }
  .catalogue > span{
    font-size: 1.1rem;
  }
  .catalogue > div{
    padding-top: 0.5rem;
  }
  .catalogue a{
    font-size: 0.9rem;
  }
  .catalogue a::before{
    top: 0.2rem;
  }
  .yarn_quality .flex{
    flex-flow: wrap !important;
  }
  .category_banner{
    min-height: unset !important;
  }

  .category_banner .category_banner_swiper .swiper-slide{
    width: 73px;
    height: 73px;
    margin-right: 16px;
  }

  .post_main .right .post_detail h4{
    font-size: 15px;
    padding-top: 1rem;
    margin-bottom: -0.5rem;
  }
}
