/*
//
//	ALL CUSTOM CSS KEEP HERE
//	UPDATE WILL NOT DELETE OR MODIFY THIS FILE
//
/*

/*-----------------------------------------*\
				MAIN
\*-----------------------------------------*/

	/* OWN BUTTON STYLING */
	/* .pure-button-style #woocommerce .product #review_form_wrapper .form-submit .submit, */
	/* .pure-button-style .woocommerce-pagination ul li a, */
	/* .pure-button-style .woocommerce-pagination ul li span, */
	/* .pure-button-style .woocommerce-ordering-wrap button, */
	/* .pure-button-style form .button, */
	/* .pure-button-style form input[type=submit], */
	/* .pure-button-style .button, */
	/* .pure-button-style .example_button, */
	/* .pure-button-style .elementor-button, */
	/* .pure-button-style .woocommerce .button, */
	/* .pure-button-style #woocommerce .button{} */
	
	/* OWN BUTTON HOVER STYLING */
	/* .pure-button-style #woocommerce .product #review_form_wrapper .form-submit .submit:hover, */
	/* .pure-button-style .woocommerce-pagination ul li a:hover, */
	/* .pure-button-style .woocommerce-pagination ul li span:hover, */
	/* .pure-button-style .woocommerce-ordering-wrap button:hover, */
	/* .pure-button-style form .button:hover, */
	/* .pure-button-style form input[type=submit]:hover, */
	/* .pure-button-style .button:hover, */
	/* .pure-button-style .example_button:hover, */
	/* .pure-button-style .elementor-button:hover, */
	/* .pure-button-style .woocommerce .button:hover, */
	/* .pure-button-style #woocommerce .button:hover{} */

/*-----------------------------------------*\
				TYPOGRAPHY
\*-----------------------------------------*/


/*-----------------------------------------*\
				STRUCTURE
\*-----------------------------------------*/



.pure-button-style #woocommerce .product #review_form_wrapper .form-submit .submit, .pure-button-style .woocommerce-pagination ul li a, .pure-button-style .woocommerce-pagination ul li span, .pure-button-style .woocommerce-ordering-wrap button, .pure-button-style form .button, .pure-button-style form input[type=submit], .pure-button-style .button, .pure-button-style .example_button, .pure-button-style .elementor-button, .pure-button-style .woocommerce .button, .pure-button-style #woocommerce .button{
	position: relative;
}

.pure-button-style #woocommerce .product #review_form_wrapper .form-submit .submit:after,
.pure-button-style .woocommerce-pagination ul li a:after,
.pure-button-style .woocommerce-pagination ul li span:after,
.pure-button-style .woocommerce-pagination .current,
.pure-button-style form input[type=submit]:after,
.pure-button-style form .button:after,
.pure-button-style .button:after,
.pure-button-style .example_button.after,
.pure-button-style .elementor-button:after,
.pure-button-style .woocommerce .button:after,
.pure-button-style #woocommerce .button:after{
	content: '';
    position: absolute;
    bottom: calc(-1 * var(--pure-button-normal-border-top-width));
    left: calc( 100% - 40px );
    width: 20px;
    height: var(--pure-button-normal-border-top-width);
    background-color: var(--pure-button-normal-background-color);
    z-index: 1;
    transition: all 650ms ease-in-out;
	
}
.pure-button-style #woocommerce .product #review_form_wrapper .form-submit .submit:hover:after,
.pure-button-style .woocommerce-pagination ul li a:hover:after,
.pure-button-style .woocommerce-pagination ul li span:hover:after,
.pure-button-style .woocommerce-pagination .current:hover,
.pure-button-style form input[type=submit]:hover:after,
.pure-button-style form .button:hover:after,
.pure-button-style .button:hover:after,
.pure-button-style .example_button:hover:after,
.pure-button-style .elementor-button:hover:after,
.pure-button-style .woocommerce .button:hover:after,
.pure-button-style #woocommerce .button:hover:after{
	animation-name: buttonAnimation;
	animation-duration: 650ms;
	animation-timing-function: ease-in-out;
  	animation-direction: alternate;

  	animation-delay: 15ms;

    left: 20px;
	
  	animation-fill-mode: forwards;
}

@keyframes buttonAnimation {
  0% {
    width: 20px;
  }
  50% {
    width: 60px;
  }
  100% {
    width: 20px;
  }
}



.home-content-slider{
	overflow: hidden;
	position: relative;
}
	.home-content-slider:after{
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 33%;
		height: 100%;
		background: var(--pure-color-4);
		pointer-events: none;
		/* z-index: -1; */
	}
		/* .home-content-slider .content-container .container,    
		.home-content-slider .content-container .container .home-content-slider-content{    
			height: 100%;
			align-items: center;
			display: grid;
			padding-bottom: 5rem;
		} */
			.home-content-slider .item{
				padding-top: 3rem;
				padding-bottom: 3rem;
			}
				.home-content-slider .home-content-slider-content{    
					position: relative;
					z-index: 1;
				}
					.home-content-slider .item img{
						object-fit: contain;
						object-position: center;
					}
					.home-content-slider .item img,
					.home-content-slider .item .title span,
					.home-content-slider .item .description,
					.home-content-slider .item .button{
						opacity: 0;
						filter: blur(10px);
						transform: translateY(25px);
					}
					.home-content-slider .item .title span:nth-child(2){    
						display: block;
						font-weight: 900;
						font-size: clamp(2rem, 4.5vw, 5rem);
						line-height: 1em;
						margin-bottom: 2.5rem;
						color: var(--pure-color);
						text-transform: uppercase;
					}
					.home-content-slider .item.slick-current img,
					.home-content-slider .item.slick-current .title span:nth-child(1),
					.home-content-slider .item.slick-current .title span:nth-child(2),
					.home-content-slider .item.slick-current .description,
					.home-content-slider .item.slick-current .button{ 
  						animation-fill-mode: forwards;
						animation-name: sliderAppearAnimation;
						animation-duration: 500ms;
						animation-timing-function: ease-in-out;
					}
					.home-content-slider .item.slick-current .title span:nth-child(2){ 
						animation-delay: 200ms;
					}
					.home-content-slider .item.slick-current .description{ 
						animation-delay: 400ms;
					}
					.home-content-slider .item.slick-current .button{ 
						animation-delay: 600ms;
					}
					.home-content-slider .item.slick-current img{ 
						/* animation-delay: 600ms; */
					}
			.home-content-slider .slick-prev.slick-arrow,
			.home-content-slider .slick-next.slick-arrow{
				position: absolute;
				top: 2.5rem;
				font-size: 3.5rem;
				right: .75rem;
				transform: translateX(-50%);
				border: 0;
				background: transparent;
				color: var(--pure-color);
				z-index: 2;
				cursor: pointer;
			}
			.home-content-slider .slick-prev.slick-arrow{
				right: 5.5rem;
			}

	@media(min-width: 1200px){
		.home-content-slider .home-content-slider-content .description{ 
			width: 80%   
		}

		.home-content-slider .item img{
			position: absolute;
			bottom: 0;
			right: 0;
			width: 50%;
			height: 80%;
			z-index: 1;
		}
	}



footer{
	font-weight: 300;
	line-height: 1.75rem;
}
footer strong{
	font-weight: 700;
}
footer i{
	color: var(--pure-color)
}

.footer-widget{}
.footer-widget .footer-widget-title{
	font-weight: 700;
}
.footer-widget .menu{
	border-left: 2px solid rgba(100,100,100,1);
	list-style-type: none;
	padding-left: 2rem;
}

/*-----------------------------------------*\
				PAGES
\*-----------------------------------------*/


/*-----------------------------------------*\
				RESPONSIVE
\*-----------------------------------------*/


/*-----------------------------------------*\
				IMAGES
\*-----------------------------------------*/


/*-----------------------------------------*\
				COMMON
\*-----------------------------------------*/


/*-----------------------------------------*\
				MISC
\*-----------------------------------------*/

