:root {
    --primary: #FAC60F;
    --primary-hover: #DBAF12;
    --secondary: #19224E;
    --secondary-hover: #323E7A ;
    --black: #000000;
    --white: #ffffff;
    --gray: #B3B3B3;
    --gray2: #f2f2f2;
    --gray3: #e6e6e6;
    --gray4: #333333;
    --gray5: #333333;
    --custom-danger: #dc3545;
}
@font-face {
    font-family: PINAR-Regular;
    src: url('../fonts/PINAR-REGULAR.TTF');
}
@font-face {
    font-family: PINAR-Bold;
    src: url('../fonts/PINAR-BOLD.TTF');
}
@font-face {
    font-family: PINAR-ExtraBold;
    src: url('../fonts/PINAR-EXTRABOLD.TTF');
}
@font-face {
    font-family: PINAR-SemiBold;
    src: url('../fonts/PINAR-SEMIBOLD.TTF');
}
@font-face {
    font-family: PINAR-Light;
    src: url('../fonts/PINAR-LIGHT.TTF');
}
@font-face {
    font-family: PINAR-Medium;
    src: url('../fonts/PINAR-MEDIUM.TTF');
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none!important;
    list-style-type: none;
    box-sizing: border-box;
    direction: rtl;
    color: var(--secondary);
    outline: none;
}
html , body {
    font-family: PINAR-Medium;
    overflow-x: hidden;
    color: var(--secondary);
    background-color: var(--white);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
}
.main {
    padding: 20px 0 0 0;
    min-height: 60vh;
}
.font-normal {
    font-family: PINAR-Regular;
}
.font-bold {
    font-family: PINAR-Bold;
}
.font-extrabold {
    font-family: PINAR-ExtraBold;
}
.font-semibold {
    font-family: PINAR-SemiBold;
}
.font-light {
    font-family: PINAR-Light;
}
.font-medium {
    font-family: PINAR-Medium;
}
a {
    color: var(--secondary);
}
ul {
    margin: 0;
    padding: 0;
}
.primary-shadow {
    box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
}
.secondary-shadow {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
button {
    border: 0!important;
    border-radius: 5px;
}
a.button-primary,
a.button-secondary {
    border-radius: 5px;
}
.dir-ltr {
    direction: ltr;
    display: inline-block;
}
header {
    padding: 30px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.logo {
    max-width: 100%;
    width: 70%;
}
.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.header-left .fa-shopping-cart {
    color: var(--secondary);
    font-size: 20px;
    transform: translateY(2px);
}
.button-secondary {
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    font-size: 13px;
    gap: 7px;
}
.button-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}
.button-secondary img {
    width: 20px;
}
.vertical-separator {
    background-color: var(--primary);
    display: block;
    width: 2px;
    height: 45px;
    position: relative
}
.text-justify {
    text-align: justify;
}
.button-primary {
    background-color: var(--primary);
    background-image: url("../media/pattern-primary.jpg");
    color: var(--black);
    font-family: PINAR-Medium;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    font-size: 13px;
    gap: 7px;
    background-repeat: no-repeat;
}
.badge-small {
    font-size: 10px;
}
.main-banner-item {
    position: absolute;
    top: 50%;
    width: 220px;
    border-radius: 15px;
}
.main-banner-item:nth-child(1){
    right: 0;
    transform: translateY(-70%) rotate(-20deg);
    z-index: 10;
}
.main-banner-item:nth-child(2){
    right: 50%;
    transform: translate(50%,-30%) rotate(30deg);
    z-index: 5;
}
.main-banner-item:nth-child(3){
    left: 0;
    transform: translateY(-70%) rotate(5deg);
    z-index: 10;
}
.main-cats-item {
    font-size: 26px;
    padding: 0 70px;
}
.main-cats-item a {
    padding: 20px 0;
}
.main-cats-item img {
    width: 40px;
    margin-left: 2px;
}
.bg-secondary {
    background-image: url("../media/pattern-secondary.jpg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}
.bg-primary {
    background-image: url("../media/pattern-primary.jpg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}
.main-hl-products {
    padding: 150px 0;
    background: linear-gradient(to bottom, var(--white) 50%, var(--gray2) 50%);
}
.hl-menu-item {
    background-color: var(--white);
    /*border: 2px solid var(--secondary)!important;*/
    color: var(--secondary);
    padding: 6px;
    min-width: 150px;
}
.hl-menu-item:hover {
    opacity: .8;
}
.hl-menu-item.active {
    background-color: var(--secondary);
    color: var(--white);
}
.product {
    padding: 15px;
}
.product a {
    /*border: 2px solid var(--secondary);*/
    padding: 10px;
}
.product a > span {
    font-size: 14px;
    margin-top: 5px;
}
.product img {
    width: 100%;
}
.main-hl-ws {
    padding: 80px 0 80px 0;
    background: linear-gradient(to bottom, var(--gray2) 30%, var(--primary) 30% 70%, var(--white) 30%);
}
.main-hl-ws img {
    height: 50px;
}
.main-hl-ws h1 {
    font-weight: 1000;
    font-size: 80px;
    line-height: 160px;
}
.main-hl-blog {
    padding: 100px 0;
    background-color: var(--gray2);
}
.blog-item {
    padding: 15px;
}
.blog-item > a {
    height: 100%;
}
.st-item {
    padding: 30px;
}
.blog-img {
    position: relative;
}
.blog-img span {
    color: var(--white);
    background-color: var(--secondary);
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    border: 1px solid var(--white);
}
.main-hl-st {
    padding: 100px 0;
    background-color: var(--white);
}
footer .fa-circle {
    font-size: 4px!important;
}
footer ul li a {
    display: flex;
    width: auto;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}
.footer-right {
    padding: 80px 200px 80px 0;
    border-left: 15px solid var(--white);
}
.footer-left {
    padding: 80px 80px 50px 200px;
}
footer h4 {
    font-size: 16px;
}
.input {
    border: 2px solid var(--secondary);
    padding: 8px;
    border-radius: 7px;
}
.input-group button {
    background-color: var(--primary);
    padding: 0 20px;
    color: var(--secondary);
    font-size: 14px;
}
.section-nl small {
    font-size: 12px;
}
.cursor-pointer {
    cursor: pointer;
}
.mobile-overlay {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 980;
    background-color: rgba(0, 0, 0, .5);
    min-height: 100vh;
    width: 100%;
    content: '';
}
.mobile-nav {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 990;
    background-color: var(--white);
    min-height: 100vh;
    width: 80%;
    padding: 30px;
}
.mobile-nav .logo {
    width: 80%;
    margin-bottom: 20px;
}
.mobile-nav > div {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.mobile-nav nav .menu {
    flex-direction: column;
    font-weight: bold;
}
.mobile-nav .fa-times-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}
.login-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-div {
    background-color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 0;
}
.login-div p {
    font-size: 12px;
}
.login-div .login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    background-color: var(--white);
    padding: 15px;
}
.login-div .login-logo img {
    width: 200px;
}
.primary-input {
    border: 2px solid var(--primary);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    height: 40px;
}
.secondary-input {
    border: 2px solid var(--secondary);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    height: 40px;
}
.login_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.otp-div {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.otp-inp {
    height: 40px;
    width: 40px;
}
.btn-megamenu {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btn-megamenu i {
    font-size: 12px;
    margin-right: 5px;
}

.megamenu {
    display: none;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 20px;
    position: absolute;
    width: calc( 100% - 25px );
    z-index: 999;
    background: white;
}
.close-megamenu {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.megamenu.active {
    display: flex!important;
}
.megamenu-right {
    border-left: 1px solid var(--gray);
    padding: 30px 30px;
    align-self: start;
}
.megamenu-left {
    padding: 30px 30px;
    align-self: start;
}
.megamenu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.megamenu-item {
    background-color: var(--gray2);
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
}
.megamenu-item span {
    text-wrap: nowrap;
}
.megamenu-item.active span {
    color: var(--primary);
}
.megamenu-item.active {
    background-color: var(--secondary);
}
.megamenu-item img {
    height: 25px;
    margin-left: 5px;
}
.megamenu-list-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    gap: 6px;
}
.megamenu-list-item a {
    font-size: 14px;
    color: var(--black);
}
.megamenu-list-item > a:first-child {
    color: var(--secondary);
    font-size: 15px;
    font-weight: bold;
    border-right: 3px solid var(--primary);
    padding-right: 7px;
    margin-bottom: 10px;
}
.megamenu-list-item a:not(:first-child) {
    margin-right: 0;
}
.megamenu-list-d {
    padding: 0 10px;
}
.megamenu-list-d > div {
    margin-bottom: 10px;
}
.megamenu-list-d a {
    position: relative;
}
.megamenu-list-d a::before {
    position: absolute;
    top: 50%;
    right: -9px;
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateY(-55%);
}
.megamenu-left > div {
    display: none;
}
.megamenu-left > div.active {
    display: flex;
}
.breadcrumb-item:first-child {
    padding-right: 0;
}
.breadcrumb-item {
    position: relative;
    padding: 0 20px 0 10px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "⬤";
    color: var(--primary) !important;
    font-size: 5px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    right: -3px;
}
.page-item a {
    margin: 0 10px;
    box-shadow: none!important;
    border-radius: 5px!important;
    width: 30px;
    height: 30px;
    text-align: center;
    color: var(--black);
}
.page-item a:hover,
.page-item a:focus {
    color: var(--secondary);
}
.page-item.disabled a {
    background-color: var(--secondary);
    color: white;
}
.p-gallery img {
    width: 60px;
}
.product-detail p {
    margin-bottom: 15px;
    color: var(--black);
}
.add_to_cart {
    display: flex;
    gap: 5px;
}
.add_to_cart input,
.add_to_cart button {
    height: 30px;
}
.add_to_cart button {
    width: 30px;
    background-color: var(--secondary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.add_to_cart button i {
    color: var(--primary);
    margin: 0;
    font-size: 12px;
}
.add_to_cart input {
    background-color: var(--gray3);
    border: 0;
    width: 100px;
    text-align: center;
    font-weight: bold;
    padding: 5px 0;
    font-size: 12px;
}
.cart_plus {
    border-radius: 0!important;
}
.cart_minus {
    border-radius: 0!important;
}
.add_to_cart_btn {
    font-weight: bold!important;
}
.profile-list {
    margin-top: 40px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.profile-list li a {
    display: flex;
    color: var(--primary);
    align-items: center;
    gap: 5px;
    font-weight: 900;
}
.profile-list li i {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-list li i,
.profile-list li span {
    color: var(--gray4);
}
.profile-list li:last-child i,
.profile-list li:last-child span {
    color: var(--custom-danger);
}
.profile-list li.active i {
    color: var(--primary);
}
.profile-list li.active span {
    color: var(--secondary);
}
.card-heading {
    border-bottom: 3px solid var(--primary);
    padding-bottom: 20px;
}
.card-heading h5 {
    text-wrap: nowrap;
}
.card-body {
    color: var(--gray4);
}
.card-body div,
.card-body span {
    color: var(--gray4);
}
.cart tbody td img {
    width: 40px;
}
.cart thead th {
    color: var(--gray5);
}
.cart tbody td {
    color: var(--secondary);
    font-weight: bold;
}
.cart tbody td {
    padding: 1rem .5rem;
    text-wrap: nowrap;
}
.cart .fa-trash {
    color: var(--custom-danger);
}
.cart button {
    background-color: transparent;
    border: 0;
}
.badge-primary {
    background-color: var(--primary);
    border-radius: 5px;
    padding: 1px 5px;
}
.cart-link {
    color: var(--primary);
}
.p-gallery img {
    cursor: pointer;
    border: 2px solid transparent;
}
.p-gallery img.active {
    border: 2px solid var(--primary);
}
label.error {
    color: var(--custom-danger);
    font-size: 10px;
}
.c_input_section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#toast-container > div {
    box-shadow: none!important;
}
#toast-container .toast-message {
    color: white!important;
}
.main-hl-st img {
    min-height: 70px;
    max-height: 100px;
}
.cart-icon {
    position: relative;
}
.cart-icon .cart-q {
    position: absolute;
    top: -5px;
    right: -5px;
    color: white;
    background-color: var(--secondary);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
}
.workshop > div {
    padding: 10px;
    height: 100%;
}
.workshop img {
    width: 150px;
    margin-left: 25px;
    height: fit-content;
}
.product-detail-alert {
    height: 100%;
    padding: 30px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product-detail-alert span {
    display: inline-block;
    max-width: 115px;
    text-align: center;
}
.product-detail-alert i {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}
.product-detail-alert a {
    margin-top: 13px;
    padding: 8px;
}
.pm-image {
    width: 100%;
}
.active > .page-link, .page-link.active {
    background-color: var(--primary)!important;
    color: var(--secondary)!important;
    border-color: var(--secondary)!important;
    border-width: 2px!important;
}
.font-primary {
    color: var(--primary)!important;
}
.font-secondary {
    color: var(--secondary)!important;
}
.badge-sm {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart_detail_font-sm {
    font-size: 12px;
}
.cartTotal h6 , .c_title {
    color: var(--secondary);
    font-size: 15px;
    font-weight: bold;
    border-right: 3px solid var(--primary);
    padding-right: 7px;
    padding: 10px 7px 10px 0;
}
#slider {
    position: relative;
    overflow: hidden;
    margin: 20px auto 20px auto;
    border-radius: 8px;
    direction: ltr;
}
#slider ul {
    position: relative;
    margin: 0;
    padding: 0;
    height: auto;
    list-style: none;
}
#slider ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    width: auto;
    height: 350px;
    background: #ccc;
    text-align: center;
    line-height: 300px;
}
a.control_prev, a.control_next {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.8;
    cursor: pointer;
    text-align: center;
    border-radius: 50%!important;
}
a.control_prev:hover, a.control_next:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
}
#slider-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#slider-control i {
    font-size: 14px;
    color: var(--primary);
}
.article-body p,
.article-body ul,
.article-body ol {
    margin: 10px 0 30px 0;
    line-height: 35px;
    text-align: justify;
}
.article-body h1,
.article-body h2, 
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    margin: 0 0 0 0;
}
.article-side h6 {
    border-bottom: 3px solid var(--primary);
    padding-bottom: 10px;
    color: var(--secondary);
    padding-right: 15px;
}
.article-side-item .blog-img img {
    max-width: 100px;
}
.article-side-item-date {
    font-size: 12px;
    text-align: left;
}
.article-side-item-name {
    font-size: 14px;
}
.article-side-item  {
    margin: 15px 0;
    background-color: var(--gray2);
    padding: 8px;
    border-radius: 10px;
}
.contact-form > div > div > label {
    font-size: 14px;
}
.contact-form input {
    height: 45px;
}
.contact-item small {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 12px;
}
.badge-medium {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 8px;
    font-size: 14px;
}
.range-slider {
    width: 100%;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    direction: ltr;
}
.range-slider input {
    direction: ltr;
}
.range-slider__range {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
          appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    -webkit-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
    background: var(--primary);
}
.range-slider__range:active::-webkit-slider-thumb {
    background: var(--primary);
}
.range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    -moz-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
    background: var(--primary);
}
.range-slider__range:active::-moz-range-thumb {
    background: var(--primary);
}
.range-slider__range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--primary);
}
.range-slider__value {
    display: inline-block;
    position: relative;
    width: 85px;
    color: #fff!important;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: var(--secondary);
    padding: 5px 10px;
    margin-left: 0;
}
.range-slider__value:before {
    position: absolute;
    bottom: -5px;
    left: 47%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid var(--secondary);
    border-bottom: 7px solid transparent;
    content: "";
    transform: rotate(270deg) translateX(-50%);
}
.range-slider__value:after {
    content: " درصد";
}
::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}
.cart_plus {
    border-radius: 0 5px 5px 0!important;
}
.cart_minus {
    border-radius: 5px 0 0 5px!important;
}
.select-color {
    display: flex;
}
.select-color span {
    margin-left: 10px;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 5px;
}
.select-color .color1 {
    background-color: #FFD700;
}
.select-color .color2 {
    background-color: #FFFFF4;
}
.select-color .color3 {
    background-color: #B76E79;
}
.select-color span.active {
    border: 2px solid var(--secondary);
}
.wm-section input[type=radio] {
    display: none;
}
.wm-section input[type=radio]:checked + .box {
    background-color: var(--primary);
    border: 3px solid var(--secondary);
}
.wm-section input[type=radio]:checked + .box span {
    color: var(--secondary);
}
.wm-section input[type=radio]:checked + .box b {
    color: var(--secondary);
}
.wm-section {
    display: flex;
    margin-bottom: 30px;
}
.wm-section label {
    display: flex;
}
.wm-section .box {
    border: 3px solid transparent;
    background-color: var(--secondary);
    border-radius: 10px;
    transition: all 250ms ease;
    display: flex;
    cursor: pointer;
    font-weight: 900;
    flex-direction: column;
    padding: 10px;
    color: var(--white);
    min-width: 110px;
}
.wm-section .box span {
    transition: all 300ms ease;
    user-select: none;
    color: var(--white);
    font-weight: normal;
}
.wm-section .box b {
    user-select: none;
    color: var(--white);
    margin-top: 5px;
    text-align: left;
}
.select2-container--default .select2-selection--single {
    border: 2px solid var(--primary)!important;
    padding: 5px 10px!important;
    font-size: 14px!important;
    border-radius: 5px!important;
    height: 40px!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px!important;
    left: 5px!important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 35px!important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary)!important;
    color: var(--secondary)!important;
}
.select2-container {
    width: 100%!important;
}
@media screen and (max-width: 567px){
    .product-detail-left {
        border-top: 2px solid var(--primary);
        padding-top: 25px !important;
        padding-bottom: 15px !important;
    }
    .res-flex-column {
        flex-direction: column;
        align-items: start!important;
        gap: 10px!important;
    }
    .res-p-5 {
        padding: 30px 20px!important;
    }
    .res-p-0 {
        padding: 0!important;
    }
    .article {
        padding: 10px;
    }
    .article > div {
        padding: 0px!important;
    }
    .article h2 {
        font-size: 15px;
    }
    .article-detail {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    #slider ul li {
        height: 200px;
    }
    .product-detail-alert {
        width: 100%;
        margin-top: 15px;
    }
    footer ul {
        align-items: center;
    }
    .footer-nl {
        justify-content: center;
    }
    footer {
        text-align: center;
    }
    .res-hl-ws {
        padding: 0 20px!important;
    }
    .res_p {
        font-size: 16px!important;
        line-height: 35px!important;
    }
    .footer-nl input {
        padding: 5px 10px;
        font-size: 14px;
        max-width: 180px;
    }
    .input-group {
        flex-wrap: nowrap;
    }
    .product-detail-div {
        margin-top: 20px;
    }
    .product-image-div {
        padding: 0!important;
    }
    .res-section-inner {
        flex-direction: column!important;
    }
    .res-section-inner > div {
        padding: 0;
    }
    .main-banner-item {
        position: relative;
        margin: 0 10px 50px 10px;
    }
    .main-banner-item {
        right: 0!important;
        left: 0!important;
        transform: none!important;
    }
    .res-gap {
        gap: 10px!important;
    }
    .res-mb-2 {
        margin-bottom: 20px;
    }
    .res-mb-3 {
        margin-bottom: 30px!important;
    }
    .res-menu-toggle {
        justify-content: start!important;
        padding-bottom: 15px;
        overflow: scroll;
    }
    .main-hl-section {
        padding: 0!important;
    }
    .res-hl-ws {
        gap: 0px;
    }
    .main-hl-ws {
        padding: 30px 0;
    }
    .res-hl-blog {
        padding: 0 30px!important;
        gap: 15px;
    }
    .res-hl-st {
        gap: 40px;
        padding: 0 30px!important;
    }
    .main-hl-products , .main-hl-blog , .main-hl-st {
        padding: 50px 0!important;
    }
    .res-hl-t {
        padding: 50px 0!important;
    }
    .res-p {
        padding: 10px 0!important;
    }
    .main-hl-ws h1 {
        font-size: 22px;
        line-height: inherit;
    }
    .main-hl-ws h1 br {
        display: none!important;
    }
    .footer-right {
        border: none;
    }
    .footer-right , .footer-left {
        padding: 50px 30px!important;
    }
    header nav {
        display: none!important;
    }
    .menu-login {
        display: none;
    }
    .mobile-menu-btn {
        display: flex!important;
        font-size: 22px;
    }
    .header-left {
        flex-direction: row-reverse;
    }
    .main-hl-cats {
        padding: 0 30px!important;
    }
    .main-hl-cats .container {
        padding: 0!important;
    }
    .megamenu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        flex-direction: column;
        justify-content: start;
    }
    .megamenu-right {
        border: none;
        width: 100%;
        padding-bottom: 0;
    }
    .megamenu-items {
        flex-direction: row;
        padding-bottom: 15px;
        overflow: scroll;
    }
    .megamenu-item {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 10px !important;
    }
    .megamenu-list-item {
        width: 50%;
        margin-bottom: 20px!important;
    }
}

@media screen and (max-width: 1024px) and (min-width: 568px){
    .footer-nl input {
        padding: 5px 10px;
        font-size: 14px;
        max-width: 180px;
    }
    .input-group {
        flex-wrap: nowrap;
    }
    .footer-left, .footer-right {
        padding: 30px;
    }
    footer ul {
        align-items: center;
        margin-bottom: 30px;
    }
    .footer-nl {
        justify-content: center;
    }
    footer {
        text-align: center;
    }
    header nav {
        display: none!important;
    }
    .menu-login {
        display: none;
    }
    .mobile-menu-btn {
        display: flex!important;
        font-size: 22px;
    }
    .header-left {
        flex-direction: row-reverse;
    }
    .main-hl-cats {
        padding: 0 30px!important;
    }
    .main-hl-cats .container {
        padding: 0!important;
    }
    .megamenu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        flex-direction: column;
        justify-content: start;
    }
    .megamenu-right {
        border: none;
        width: 100%;
        padding-bottom: 0;
    }
    .megamenu-items {
        flex-direction: row;
        padding-bottom: 15px;
        overflow: scroll;
    }
    .megamenu-item {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 10px !important;
    }
    .megamenu-list-item {
        width: 50%;
        margin-bottom: 20px!important;
    }
    .main-hl-ws h1 {
        font-size: 35px !important;
    line-height: 60px !important;
    }
    .main-cats-item {
        padding: 15px !important;
        font-size: 18px!important;
    }
    .main-cats-item img {
        width: 30px!important;
    }
}

@media screen and (max-width: 1600px) and (min-width: 1025px){
    .footer-nl input {
        padding: 5px 10px;
        font-size: 14px;
        max-width: 180px;
    }
    .input-group {
        flex-wrap: nowrap;
    }
    .footer-left, .footer-right {
        padding: 6%;
    }
}