@media (max-width: 1400px) {
    .new-product-title {
        font-size: 12px;
    }
    .new-product-read-more {
        font-size: 11px;
    }
}
@media (max-width: 1200px) {
    .main-navigation .page_item > a {
        font-size: 11px;
    }

}
@media (max-width: 980px) {
    .html-overflow-hidden {
        overflow: hidden;
    }
    .header {
        height: 60px;
        padding: 0 3vw;
    }
    .custom-logo {
        height: 30px !important;
    }
    .logo {
        margin-right: 10px;
        width: 70px;
    }

    .main-navigation {
        display: none;
        visibility: hidden;
    }

    .header-search {
        height: 35px;
        margin-right: 10px;
    }
    .header-search input {
        width: 50vw;
        border-radius: 5px 0 0 5px;
    }
    .header-search button {
        width: 40px;
        border-radius: 0 5px 5px 0;
    }

    .change-language {
        display: none;
        visibility: hidden;
    }

    .social-icons {
        display: none;
        visibility: hidden;
    }

    .mobile-menu-toggle {
        width: 30px;
        height: 26px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        background: transparent;
        flex-direction: column;
    }
    .mobile-menu-toggle button, .mobile-menu-toggle button:active, .mobile-menu-toggle button:checked {
        background: transparent;
    }
   .mobile-menu-toggle span {
        height: 3px;
        width: 24px;
        border-radius: 1px;
        background: var(--bg-color);
    }
    .mobile-menu-toggle:before, .mobile-menu-toggle:after {
        content: " ";
        height: 3px;
        width: 24px;
        border-radius: 1px;
        background: var(--bg-color);
        transition: .3s;
    }
    .mobile-menu-toggle-expand span {
        visibility: hidden;
    }
    .mobile-menu-toggle-expand:before {
        transform: translate(0, 9px) rotate(45deg);
        transform-origin: center center;
    }
    .mobile-menu-toggle-expand:after {
        transform: translate(0, -6px) rotate(-45deg);
        transform-origin: center center;
    }
    .mobile-menu-box {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg--color-light);
        z-index: 100;
        transition: all .3s;
        border-top: 1px solid var(--border-color);
        transform: translate(-100vw);
        overflow: hidden scroll;
        padding: 0 15px;
    }
    .mobile-menu-box-active {
        display: block;
    }
    .mobile-menu-box-active-css {
        transform: translate(0);
    }

    .telephone-contact {
        padding: 20px 10px;
        border-bottom: 1px solid var(--border-color);
        font-weight: bold;
        display: flex;
        justify-content: space-between;
    }
    .telephone-contact .phone-number {
        letter-spacing: 1px;
        display: flex;
        align-items: center;
    }
    .telephone-contact .call-now {
        padding: 5px 15px;
        background: var(--bg-color);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 3px;
        color: white;
        white-space: nowrap;
    }
    .mobile-main-navigation {
        background: white;
        box-shadow: 1px 1px 3px #dddcdc;
        border-radius: 5px;
    }

    .mobile-main-navigation ul ul {
        padding-left: 20px;
    }
    .mobile-main-navigation ul a {
        color: var(--dark-color);
        font-weight: bold;
        height: 55px;
    }
    .mobile-main-navigation ul .page_item_has_children > a {
        margin-right: 60px;
    }
    .mobile-main-navigation ul li a {
        display: block;
        padding: 15px;
    }
    .mobile-main-navigation ul li {
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-main-navigation ul li:last-child {
        border-bottom: none;
    }
    .mobile-main-navigation ul ul li {
        margin-right: 20px;
    }
    .mobile-main-navigation .page_item_has_children ul {
        border-top: 1px solid var(--border-color);
        display: none;
        overflow: hidden;
        height: 0;
        transition: .3s;
    }
    .mobile-main-navigation .page_item_has_children .menu-children-box-visible {
        display: block;
    }
    .mobile-main-navigation .expand-children-btn {
        display: none;
        visibility: hidden;
        background: transparent;
    }
    .page_item_has_children > .expand-children-btn {
        display: block;
        visibility: visible;
        border-top: 3px solid var(--svg-fill-color);
        border-right: 3px solid var(--svg-fill-color);
        height: 10px;
        width: 10px;
        position: absolute;
        top: 20px;
        right: 25px;
        transform: rotate(135deg);
        transition: .2s;
    }
    .page_item_has_children > .expand-children-btn-expand {
        transform: rotate(-45deg);
    }

    .mobile-change-language {
        padding: 25px 10px;
        margin-bottom: 30px;
    }
    .select-language-description {
        font-weight: bold;
        font-size: 17px;
    }
    .mobile-language-box {
        margin-top: 10px;
    }
    .mobile-language-box {
        display: flex;
        flex-wrap: wrap;
    }
    .mobile-language-box .language-item {
        width: calc(33.33% - 10px);
        margin: 5px 5px;
    }
    .mobile-language-box .language-item button {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        background: white;
        box-shadow: 1px 1px 3px #e7e7e7;
        border: 2px solid transparent;
    }
    .mobile-language-box .language-item-active button {
        border: 2px solid var(--bg-color);
    }
    .mobile-language-box .language-item button img {
        height: 32px;
        width: 50px;
    }

    .mobile-social-media {
        margin-top: 20px;
    }
    .mobile-social-media-description {
        font-weight: bold;
        font-size: 17px;
    }
    .mobile-social-icons {
        margin-top: 5px;
    }
    .mobile-social-icons a {
        padding: 10px;
        display: flex;
        align-items: center;
        font-size: 17px;
        font-weight: bold;
        position: relative;
        border-bottom: 1px solid var(--border-color);
    }
    .mobile-social-icons li:last-child a {
        border-bottom: none;
    }
    .mobile-social-icons img {
        height: 35px;
        width: auto;
        margin-right: 15px;
    }
    .mobile-social-icons a::after {
        transform: rotate(45deg);
        width: 8px;
        height: 8px;
        top: calc(50% - 4px);
        right: 5px;
        border-top: 3px solid #adadad;
        border-right: 3px solid #848484;
    }
    .media-contact-box {
        gap: 0;
        justify-content: left;
        border: none;
        flex-direction: row;
        width: 100%;
        padding-bottom: 15px;
    }
    .media-contact-box li a:hover {
        background: inherit;
    }
    .media-contact-box li a {
        padding: 0;
    }
    .media-contact-box li .point-to::after {
        display: none;
    }
    .media-contact-box li span {
        display: none;
    }

    .common-contact-box {
        width: 100%;
    }
    .common-contact-box li a:hover, .common-contact-box li p:hover {
        opacity: .7;
    }

    .content {
        margin-top: 60px;
    }
    .footer {
        padding-bottom: 60px;
    }
    .progress-wrap {
        bottom: 10vh;
        right: 5vw;
    }
    .info-box {
        flex-direction: column;
        padding: 15px 5vw 15px 5vw;
    }
    .mail-box {
        min-width: 0;
        width: 100%;
        padding: 0;
    }
    .fixed-mail-box {
        width: calc(100% - 10vw);
        left: 50%;
        transform: scale(.8) translateX(-50%);
        max-width: 400px;
        transform-origin: 0 100%;
    }
    .fixed-mail-box-active-css {
        transform: scale(1) translateX(-50%);
    }

    .fixed-box .visible-inquiry {
        display: none;
    }

    .address-tel-email {
        display: none;
    }
    .menu-footer {
        width: 100%;
        height: 60px;
        box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.1);
        position: fixed;
        left: 0;
        bottom: 0;
        background: var(--bg-color);
        z-index: 99;
        display: flex;
    }
    .menu-footer li {
        flex: 1;
    }
    .mobile-page_item_active_route {
        background: rgb(255 255 255 / 14%);
    }
    .menu-footer li svg {
        height: 26px;
        width: 26px;
        fill: white;
    }
    .menu-footer li > * {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        user-select: none;
        color: white;
        padding-top: 3px;
        background: transparent;
    }
    .menu-footer li .title-menu {
        font-size: 13px;
        line-height: 20px;
    }
    .products-more-box {
        margin-right: 0;
        width: 100%;
    }
    .products-content {
        width: 100%;
    }
    .products-content h1 {
        margin-top: 10px;
        font-size: 28px;
        text-align: center;
    }
    .products-more-all-wrap {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        height: auto !important;
    }
    .products-cat-title {
        border-radius: 5px;
        transition: .3s;
    }
    .products-cat-title img {
        display: none;
    }
    .products-cat-title::after {
        content: " ";
        display: block;
        border-top: 3px solid white;
        border-right: 3px solid white;
        height: 8px;
        width: 8px;
        transform: rotate(135deg);
        transition: .3s;
    }
    .products-categories {
        height: 0;
        overflow: hidden;
        transition: .3s;
        border-color: transparent;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .products-categories li:hover {
        background: white;
    }
    .products-categories li:hover a {
        color: var(--text-color-drak2);
    }
    .products-cat-box-active .products-categories {
        border-color: var(--border-color);
    }
    .products-cat-box-active .products-cat-title::after {
        transform: rotate(-45deg);
    }
    .products-cat-box-active .products-cat-title {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .new-products-box {
        display: none;
    }
    .product-more-box {
        margin-right: 0;
        width: 100%;
    }
    .product-content {
        width: 100%;
    }
    .product-more-all-wrap {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        height: auto !important;
    }
    .product-cat-title {
        border-radius: 5px;
        transition: .3s;
    }
    .product-cat-title img {
        display: none;
    }
    .product-cat-title::after {
        content: " ";
        display: block;
        border-top: 3px solid white;
        border-right: 3px solid white;
        height: 8px;
        width: 8px;
        transform: rotate(135deg);
        transition: .3s;
    }
    .product-categories {
        height: 0;
        overflow: hidden;
        transition: .3s;
        border-color: transparent;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .product-categories li:hover {
        background: white;
    }
    .product-categories li:hover a {
        color: var(--text-color-drak2);
    }
    .product-cat-box-active .product-categories {
        border-color: var(--border-color);
    }
    .product-cat-box-active .product-cat-title::after {
        transform: rotate(-45deg);
    }
    .product-cat-box-active .product-cat-title {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .new-product-box {
        display: none;
    }

    .pagination button:hover .se-pagination button:hover {
        background: var(--bg-color-lt);
        color: var(--text-color-drak2);
    }
    .pagination button, .se-pagination button  {
        width: calc(12.5% - 9px);
        aspect-ratio: 1 / 1;
        height: auto;
    }

    /*.layout-item:hover {*/
    /*    background: white;*/
    /*}*/
    /*.layout-item:hover img:first-child {*/
    /**    opacity: 1;*/
    /*}*/
    /*.layout-item:hover img:last-child {*/
    /*    opacity: 0;*/
    /*}*/

    .frame-top-wrap {
        height: 25vw;
    }
    .frame-top-title {
        font-size: 18px;
    }
    .frame-nav-wrap, .frame-content-box-wrap {
        margin: 0 5vw;
    }
    .frame-nav-wrap, .frame-nav-wrap a {
        font-size: 10px;
    }
    .frame-nav-wrap a:hover {
        color: var(--text-color-light);
    }
    .frame-nav-wrap a:hover.point-to::after {
        border-color: var(--svg-fill-color);
    }
    .frame-content-box-wrap {
        display: block;
    }
    .frame-content {
        width: 100%;
    }

}

@media (max-width: 370px) {
    .fixed-mail-box {
        width: calc(100% - 5vw);
        left: 5px;
    }
    .header-search input {
        width: 40vw;
    }
}