/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

html {
    overflow-x: hidden !important;
}

body * {
    font-family: 'PT Sans', sans-serif;
}

a:hover,.main-menu ul li a:hover {
    color: var(--e-global-color-a4d8ddb);
}

.main-menu ul ul {
	border-top: 2px solid #ff4444 !important;
}

.main-menu ul ul li a:hover {
    background-color: var(--e-global-color-a4d8ddb) !important;
}

.main-menu ul li a {
    font-family: "PT Sans", sans-serif !important;
}

body:not(.home) .header-menu-area.sticky-header {
    background: linear-gradient(180deg, #ffffff75, transparent);
    margin: 0 20px;
    border-radius: 20px 20px 0 0;
    top: 50px !important;
    width: calc(100% - 40px);
}

.logo img {
    max-width: 260px;
}

.menu.d-inline-block {
    width: 100%;
    display: flex !important;
    flex-grow: 1;
    justify-content: center;
}

.main-menu ul ul li a:hover {
    background-color: var(--e-global-color-a4d8ddb) !important;
    border-radius: 10px;
}

.col-xl-3.col-lg-3.col-md-6.col-6.d-flex.align-items-center {
    width: max-content;
}

.col-xl-9.col-lg-9.col-md-6.col-6.d-flex.align-items-center.justify-content-end {
    flex-grow: 1;
}

.main-menu ul li a {
    font-size: 19px;
    text-transform: uppercase;
    padding-bottom: 0;
    padding-top: 0;
    font-weight: bold;
    color: #000000b8;
}

.header-menu-area a.theme-btn.icon-left {
    text-transform: uppercase;
    font-size: 16px !important;
}

#herotxt span {
    display: block;
}

.header-menu-area {
    top: 50px !important;
}
.header-menu-area.sticky-header.sticky_menu.animated.fadeIn {
    opacity: 0;
	display: none;
}

ul.sub-menu li a {
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: 14px;
    border-radius: 10px;
}

ul.sub-menu li a:hover {
    background: var(--e-global-color-a4d8ddb);
}

ul.sub-menu {
    border-radius: 10px;
}
i.fas.fa-arrow-up {
    transform: rotate(45deg);
}
a:hover, .main-menu ul li a:hover {
    color: #ffffffb5;
}

/*footer*/
.footer-sec {
    position: relative;
}

.footer-sec::before {
    content: '';
    height: 200px;
    background: #161616;
    position: absolute;
    top: -140px;
    z-index: -1;
    transform: rotate(-3deg);
    width: 100.2%;
    border-radius: 55px 35px 0 0;
    left: -1px;
}

.footer-sec::after {
    content: '';
    height: 200px;
    background: var(--e-global-color-a4d8ddb);
    position: absolute;
    top: -160px;
    z-index: -2;
    transform: rotate(-3deg);
    width: 98%;
    border-radius: 55px 35px 0 0;
    left: 49px;
}

.footer-sec {
    border-radius: 0 !important;
}

.footer-wrapper.background-black {
    background: #161616;
    padding-top: 0px;
    margin: 0;
    border-radius: 0;
}

.footer-sec > .container::after {
    content: '';
    width: 1037px;
    height: 463px;
    position: absolute;
    bottom: 0px;
    right: 200px;
    background-image: url(/wp-content/uploads/2025/09/svet.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
	pointer-events: none;
}

footer.footer.style-2 {
    margin-top: -50px;
    padding-top: 250px;
}
.footer-widget.widget_nav_menu li a, .footer-bottom-area .copyright-text p {
	font-family: "PT Sans", sans-serif !important;
}
.footer-bottom-menu-wrapper.justify-content-center .copyright-text {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

p.copyright-right img {
    width: 74px;
}

p.copyright-right {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}

p.copyright-left {
    width: 40%;
    text-align: left;
}

.theme-btn, .wp-block-loginout a, input.theme-btn, .btn-wrapper .circle-arrow-btn, .scrollup-btn {
    background: var(--e-global-color-a4d8ddb);
    color: #fff;
}

.account-form, .search-btn-wrapper {
    display: none;
}


/**/

/*SLIDES START*/

/* ===== GLOBAL STYLES ===== */

/* Custom Slick Arrow Base Styles */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0;
}

.slick-arrow:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.slick-arrow:before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
}

.slick-prev:before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.slick-next:before {
    transform: rotate(45deg);
    margin-right: 3px;
}

/* Custom Slick Dots Base Styles */
.slick-dots {
    bottom: -60px;
    text-align: center;
}

.slick-dots li {
    margin: 0 8px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    background: #666;
    opacity: 1;
    transform: scale(1.2);
}

/* Button Styles */
.button-icon {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--e-global-color-a4d8ddb);
}

.button-arrow {
    color: var(--e-global-color-a4d8ddb);
    font-size: 18px;
}

/* ===== FACILITIES SLIDER (.facilities) ===== */

.facilities-header {
    max-width: 1400px;
    margin: 0 auto;
}
/* Left fade effect */
/*
.facilities-slider-wrapper::before {
	content: '';
    position: absolute;
    left: 0;
    top: 180px;
    bottom: 90px;
    width: 150px;
    background: linear-gradient(to right, #f5f6f9 0%, rgba(245, 246, 249, 0) 100%);
    z-index: 10;
    pointer-events: none;
}
*/
/* Right fade effect */
/*
.facilities-slider-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to left, #F5F6F9 0%, rgba(245, 246, 249, 0) 100%);
    z-index: 10;
    pointer-events: none;
}
*/
.production-facilities-container {
    border-radius: 0px;
    padding: 0px;
    padding-bottom: 50px;
    padding-top: 51px;
    margin: 0 auto;
}
.facilities-slider.slick-initialized.slick-slider {
    margin-left: 0;
    padding-left: 0px;
}
@media (max-width: 640px) {
    .production-facilities-container {
        border-radius: 30px;
        padding: 20px;
        padding-top: 36px;
        padding-bottom: 100px;
    }
}

.facilities-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.facilities-header a.explore-button {
    margin-right: 10px;
}

@media (min-width: 640px) {
    .facilities-header {
        flex-direction: row;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 1024px) {
    .production-facilities-container .navigation-controls {
        position: absolute;
        right: -14px;
        bottom: -75px;
        background: #fff;
        z-index: 9999;
        padding: 20px;
        border-radius: 0px 0px 0px 30px;
    }
    
    .production-facilities-container .nav-button {
        height: 30px;
        width: 30px;
    }
    
    
    .facilities-header {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        align-items: flex-start;
        position: relative;
    }
	h4.facilities-title {
		font-size: 30px;
		line-height: 1em;
		margin: 0;
	}
	.production-facilities-container .nav-button i {
		font-size: 14px;
	}
}


.header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

@media (min-width: 640px) {
    .header-left {
        flex-direction: row;
        gap: 30px;
    }
}

.our-products-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 60px;
    border: 1px solid var(--dark-border-color, #333);
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text-color, #333);
}

@media (min-width: 640px) {
    .our-products-badge {
        padding: 6px 20px;
        font-size: 16px;
    }
}

@media (min-width: 1280px) {
    .our-products-badge {
        padding: 10px 20px;
        font-size: 18px;
    }
}

.facilities-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--dark-text-color, #333);
    text-align: center;
}

@media (min-width: 640px) {
    .facilities-title {
        font-size: 22px;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .facilities-title {
        font-size: 50px;
    }
}

.explore-button {
    display: inline-flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 60px;
    background: var(--e-global-color-a4d8ddb);
    padding: 5px 24px 5px 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-button-text-color, white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.explore-button:hover {
    background: var(--e-global-color-a4d8ddb);
    transform: translateY(-2px);
}

@media (min-width: 640px) {
    .explore-button:hover {
        transform: translateY(-2px);
    }
}

.facilities-slider-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
}


.our-products-badge {
    border: 1px solid transparent;
    margin: 0px 0px 0px 0px;
    padding: 7px 15px 7px 15px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-a4d8ddb);
    border-radius: 60px;
    font-size: 16px;
}

@media (min-width: 640px) {
    .facilities-slider-wrapper {
        margin: 30px 0;
    }
}

@media (min-width: 768px) {
    .facilities-slider-wrapper {
        margin: 48px 0 40px;
    }
}

.facilities-slider {
    outline: none;
}

.facility-item {
    padding: 0 7.5px;
    outline: none;
}

@media (min-width: 640px) {
    .facility-item {
        padding: 0 6px;
    }
}

@media (min-width: 1024px) {
    .facility-item {
        padding: 0 8px;
    }
}

.facility-card {
    position: relative;
    height: 450px;
    width: 100%
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;
}

.facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img.facility-image {
    height: 450px !important;
}

.facility-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

@media (min-width: 1280px) {
    .facility-title-overlay {
        bottom: 40px;
    }
}

.facility-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--light-text-color, white);
    filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.25));
	font-weight: 600;
    text-transform: uppercase;
	background: rgb(227 225 225 / 30%);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(5px);
    margin-top: auto;
    width: 80%;
    margin: auto;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .facility-title {
        font-size: 24px;
    }
}

@media (min-width: 1536px) {
    .facility-title {
        font-size: 25px;
    }
}

.facility-title.bold {
    font-weight: 700;
}

.facilities-footer {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
}

@media (min-width: 640px) {
    .facilities-footer {
        display: flex;
    }
}

@media (min-width: 768px) {
    .facilities-footer {
        margin-top: 20px;
        gap: 40px;
    }
}

.navigation-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-button {
    display: flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--e-global-color-a4d8ddb);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button.active {
    background: var(--e-global-color-a4d8ddb);
}

.nav-button:hover {
    background: var(--e-global-color-a4d8ddb);
}

.nav-button i {
    color: var(--e-global-color-a4d8ddb);
    font-size: 18px;
}

.nav-button.active i,
.nav-button:hover i {
    color: var(--primary-button-text-color, white);
}

.company-description {
    margin-left: auto;
    max-width: 850px;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--dark-text-color, #333);
}

@media (min-width: 768px) {
    .company-description {
        font-size: 18px;
        line-height: 30px;
    }
}

.facilities-slider .slick-arrow {
    display: none !important;
}

.facilities-slider .slick-dots {
    display: none !important;
}

/* Facilities Responsive */
@media (max-width: 768px) {
    .facility-title {
        font-size: 16px;
    }
}


/* ===== BIG/SMALL SLIDER (.bigsmall) ===== */

.workwear-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.workwear-slider {
    margin: 0 0 0 110px;
}

.workwear-card img.card-image {
    border-radius: 20px 20px 0 0;
    height: 350px;
    object-fit: cover;
}

.slide-content {
    padding: 0 15px;
    outline: none;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    height: 600px;
}

.slide-item.second-item {
    height: 80%;
}

.slide-item {
    position: relative;
    border-radius: 30px;
    background-image: url('/wp-content/uploads/2025/08/public-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 28px;
}

.category-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 60px;
    padding: 8px 32px;
    font-size: 18px;
    font-weight: 400;
    color: white;
    backdrop-filter: blur(10px);
}

.content-box {
    background: rgba(153,153,153,0.3);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(5px);
    margin-top: auto;
}

.content-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-bottom: 12px;
}

.content-description {
    font-size: 16px;
    line-height: 1.4;
    color: white;
    opacity: 0.95;
}

.bottom-text {
    margin-top: 0;
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    padding: 0 15px;
    position: absolute;
    bottom: -80px;
    z-index: 9999;
    display: flex;
    overflow: visible;
    left: 0;
    width: 100%;
    text-align: left;
}

.workwear-slider .slick-arrow {
    top: 40% !important;
}

.workwear-slider .slick-prev {
    left: -25px;
}

.workwear-slider .slick-next {
    right: -25px;
}

/* BigSmall Responsive */
@media (max-width: 1024px) {
    .workwear-slider {
        margin: 0 40px;
    }
    
    .slide-grid {
        height: 500px;
        gap: 20px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .content-description {
        font-size: 14px;
    }
	
	.workwear-slider {
		margin: 0 !important;
	}
}

@media (max-width: 768px) {
    .workwear-slider {
        margin: 0 20px;
    }
    
    .slide-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }
    
    .slide-item {
        height: 400px;
    }
    
    .workwear-slider .slick-prev {
        left: -10px;
    }
    
    .workwear-slider .slick-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .workwear-slider {
        margin: 0 10px;
    }
    
    .slide-item {
        height: 350px;
    }
    
    .slide-overlay {
        padding: 20px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .workwear-slider .slick-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ===== HALF SLIDE CARDS (.halfslide) ===== */

.jugotex-cards-slider-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 80px 0px 0px !important;
    overflow: hidden;
}

.jugotex-cards-slider {
    margin-left: calc(41vw - 395px);
    padding-left: 20px;
    padding-right: 0;
}

@media (min-width: 1280px) {
    .jugotex-cards-slider {
        margin-left: calc(41vw - 505px);
    }
}

@media (min-width: 1536px) {
    .jugotex-cards-slider {
        margin-left: calc(41vw - 610px);
    }
}

.card-item {
    padding: 0 9px 0 0;
    outline: none;
}

.workwear-card {
    width: 450px;
    background: #FFFFFF;
    border: 1px solid rgba(227, 227, 227, 0.8);
    border-radius: 40px;
    padding: 15px;
    padding-bottom: 36px;
    margin-bottom: 0;
}

@media (min-width: 1280px) {
    .workwear-card {
        width: 580px;
    }
}

@media (min-width: 1536px) {
    .workwear-card {
        width: 750px;
    }
}

.card-image {
    width: 100%;
    height: 243px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .card-image.tall {
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .card-image.tall {
        height: 400px;
    }
}

.card-content {
    text-align: left;
    padding: 0 10px 0 16px;
}

@media (min-width: 1280px) {
    .card-content {
        padding: 0 16px;
    }
}

.card-title {
    font-size: 25px;
    font-weight: 500;
    line-height: 40px;
    color: #333;
    margin-bottom: 4px;
    margin-top: 14px;
}

@media (min-width: 640px) {
    .card-title {
        font-size: 28px;
        margin-bottom: 12px;
        margin-top: 24px;
    }
}

@media (min-width: 1280px) {
    .card-title {
        font-size: 34px !important;
        line-height: 52px;
    }
}

h2.card-title {
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2em;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #333;
    margin-bottom: 20px;
}

.card-description.bold {
    font-weight: 500 !important;
	font-family: 'PT Sans', sans-serif !important;
}

@media (min-width: 1536px) {
    .card-description {
        font-size: 18px;
    }
}

.card-button {
    display: inline-flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 30px;
    background: var(--e-global-color-a4d8ddb) !important;
    padding: 5px 10px 5px 32px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-button-text-color, white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-button:hover {
    background: var(--e-global-color-a4d8ddb);
    transform: translateY(-2px);
}

.jugotex-cards-slider .slick-prev {
    left: -25px;
}

.jugotex-cards-slider .slick-next {
    right: 50px;
}

.jugotex-cards-slider .slick-dots {
    text-align: left;
    margin-left: 20px;
}

/* HalfSlide Responsive */
@media (max-width: 1024px) {
    .jugotex-cards-slider-container {
        padding: 60px 0 90px;
    }
    
    .jugotex-cards-slider {
        margin-left: 0;
        padding-left: 20px;
    }
    
    .workwear-card {
        width: 380px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .card-description {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .jugotex-cards-slider {
        padding-left: 15px;
    }
    
    .workwear-card {
        width: 300px;
        border-radius: 25px;
        padding: 10px;
        padding-bottom: 25px;
    }
    
    .card-image {
        height: 180px;
        border-radius: 20px;
    }
    
    .card-content {
        padding: 0 5px 0 10px;
    }
    
    .card-title {
        font-size: 20px;
        line-height: 26px;
        margin-top: 12px;
    }
    
    .card-button {
        height: 50px;
        font-size: 16px;
        padding: 4px 8px 4px 24px;
    }
    
    .button-icon {
        height: 32px;
        width: 32px;
    }
    
    .jugotex-cards-slider .slick-prev {
        left: -15px;
    }
    
    .jugotex-cards-slider .slick-next {
        right: 30px;
    }
}

@media (max-width: 480px) {
    .workwear-card {
        width: 280px;
    }
    
    .jugotex-cards-slider .slick-arrow {
        width: 40px;
        height: 40px;
    }
    
    .jugotex-cards-slider .slick-prev {
        left: -10px;
    }
    
    .jugotex-cards-slider .slick-next {
        right: 20px;
    }
}
/*SLIDES END*/

.footer.style-2 .footer-widget.widget_nav_menu li a:hover, .footer.style-2 .footer-bottom-menu ul li a:hover {
    color: var(--e-global-color-a4d8ddb);
}


/* Slide 1 - First item: Everyday Workwear */
.slide-item.workwear-item {
    background-image: url('/wp-content/uploads/2025/09/1-2.jpg');
}

/* Slide 1 - Second item: Category 2 Protective Clothing */
.slide-item.cateogry-2 {
    background-image: url('/wp-content/uploads/2025/09/2-2.jpg');
}

/* Slide 2 - First item: Category 3 Protective Wear */
.slide-item.category-3 {
    background-image: url('/wp-content/uploads/2025/09/3-2.jpg');
}

/* Slide 2 - Second item: Custom Solutions */
.slide-item.custom-solutions {
    background-image: url('/wp-content/uploads/2025/09/4-2.jpg');
}

/* Slide 3 - First item: Commitment to Quality */
.slide-item.commitment-quality {
    background-image: url('/wp-content/uploads/2025/12/Building-partnerships-min.jpg');
}

/* Slide 3 - Second item: Dedication to Safety */
.slide-item.dedication-safety {
    background-image: url('/wp-content/uploads/2025/09/6-1.jpg');
}


/* CSS - Add this to your styles.css */
.workwear-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}



.slide-content {
    padding: 0 15px;
    outline: none;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    height: 600px;
}

.slide-item.second-item {
    height: 80%;
}

.slide-item {
    position: relative;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 28px;
}

.category-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 60px;
    padding: 8px 32px;
    font-size: 18px;
    font-weight: 400;
    color: white;
    backdrop-filter: blur(10px);
}

.content-box {
    background: rgba(153,153,153,0.3);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(5px);
    margin-top: auto;
}

.content-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-bottom: 12px;
}

.content-description {
    font-size: 16px;
    line-height: 1.4;
    color: white;
    opacity: 0.95;
}

.bottom-text {
    margin-top: 0;
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    padding: 0 15px;
    position: absolute;
    bottom: -100px;
    z-index: 9999;
    display: flex;
    overflow: visible;
    left: 0;
    width: 100%;
    text-align: left;
}

.workwear-slider .slick-arrow {
    top: 40% !important;
}

.workwear-slider .slick-prev {
    left: -25px;
}

.workwear-slider .slick-next {
    right: -25px;
}

/* Background images for slides */
.slide-item.custom-solutions {
    background-image: url('/wp-content/uploads/2025/12/specialized-manufacturing.jpg');
}

.slide-item.commitment-quality {
    background-image: url('/wp-content/uploads/2025/12/Building-partnerships-min.jpg');
}

.slide-item.dedication-safety {
    background-image: url('/wp-content/uploads/2025/10/fr-2.jpg');
}

/* Responsive styles */
@media (max-width: 1024px) {
    .workwear-slider {
        margin: 0 40px;
    }
    
    .slide-grid {
        height: 500px;
        gap: 20px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .content-description {
        font-size: 14px;
    }
	.workwear-slider .slick-dots {
		display: none;
	}
	.workwear-slider-container .slide-item.second-item {
		display: none;
	}
	div#slick-slide00 {
		padding: 0;
	}
}

@media (max-width: 768px) {
    .workwear-slider {
        margin: 0 20px;
    }
    
    .slide-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }
    
    .slide-item {
        height: 400px;
    }
    
    .workwear-slider .slick-prev {
        left: -10px;
    }
    
    .workwear-slider .slick-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .workwear-slider {
        margin: 0 10px;
    }
    
    .slide-item {
        height: 350px;
    }
    
    .slide-overlay {
        padding: 20px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .workwear-slider .slick-arrow {
        width: 40px;
        height: 40px;
    }
}

.page-breadcrumb-area.page-bg::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(153, 153, 153, 0.3), transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
    border-radius: 29px;
    background: rgba(153, 153, 153, 0.3);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(5px);
    margin-top: auto;
}

span.post.post-page.current-item {
    color: #fff;
}

a.home {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-list {
    color: #fff;
}

h1.page-title {
    color: #fff;
    filter: drop-shadow(2px 4px 6px black);
}
.page-area {
    padding-top: 0;
    padding-bottom: 100px;
}

input[type=radio]::before {
	    background-color: var(--e-global-color-a4d8ddb);
}

.main-menu ul li.active > a, .main-menu ul li.current-menu-ancestor > a {
    color: var(--e-global-color-a4d8ddb);
}

.footer.style-2 .footer-widget .social-profile a:hover i {
    color: #d93535;
}

div#custom_html-6 h2.footer-widget-title {
    margin-bottom: 10px;
}

.footer .footer-sec {
    padding-top: 0px !important;
}

footer.elementor.elementor-18112.elementor-location-footer {
    margin-top: 250px;
}


@media only screen and (max-width: 1024px) {
	.footer-sec::after {
		left: 19px;
		top: -70px;
	}

	.footer-sec::before {
		left: -2px;
		top: -50px;
	}

	body {
		overflow-x: hidden;
	}
	footer.elementor.elementor-18112.elementor-location-footer {
		margin-top: 100px;
	}
}
.page-id-18677 .product-card::after {
	content: '';
    position: absolute;
    top: unset;
    right: 10px;
    left: unset;
    bottom: unset;
    top: 30px;
    color: #fff;
    background: red;
    padding: 5px;
    border-radius: 10px;
}

.product-card[data-categories="cat1"]::after {
    content: 'Category 1 Safetywear';
}

.product-card[data-categories="cat2"]::after {
    content: 'Category 2 Safetywear';
}

.product-card[data-categories="cat3"]::after {
    content: 'Category 3 Safetywear';
}

.product-card[data-categories="rainwear"]::after {
    content: 'Rainwear';
}

.product-card {
	position: relative;
}

@media only screen and (max-width: 1024px) {
	.postid-18486 .breadcrumbs {
		display: none;
	}
}


li.flag.en::after {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}
li.flag.en::after {
    background-image: url(/sr/wp-content/uploads/sites/2/2026/01/uk.png);
}
li.flag.sr::after {
    background-image: url(/sr/wp-content/uploads/sites/2/2026/01/serbia.png);
}
li.flag {
    position: relative;
}
nav.elementor-nav-menu--main.elementor-nav-menu__container.elementor-nav-menu--layout-horizontal.e--pointer-underline.e--animation-fade li a {
    padding: 0px 16px;
}

@media only screen and (max-width: 996px) {
    li.flag.en::after {
        right: 30px;
        left: unset;
    }
    li.flag.sr::after {
        right: 30px;
        left: unset;
    }
}