@charset "UTF-8";
/* CSS Document */

.products__header {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-weight: 1000;
	padding-bottom: 3rem;
	padding-top: 4rem;
	position: relative;
	text-align: center;
	z-index: 1
}
@media (min-width: 48em) {
	.products__header {
		padding-top: 8.7rem;
		padding-bottom: 8.7rem
	}
}
.products__heading {
    color: #fff;
	font-family: 'Zen Maru Gothic', serif;
    font-weight: 900;
	font-size: clamp(3rem, 2.857rem + 0.625vw, 4rem);
	letter-spacing: 1.0;
	line-height: 1.33;
    padding-top: 2rem;
}

@media (min-width: 48em) {
	.products__heading {
		color: #fff;
		letter-spacing: 3px;
		line-height: 1.28
	}
}
.products__inner{
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    font-family: 'Zen Maru Gothic', serif;
    line-height: 1.8
}
.products-category__inner{
	padding: 3rem 0;
}
.products-category__header{
    margin: 0 auto;
    position: relative;
}
.products-category__header::after{
    content: "";
    display: inline-block;
    width: 5rem;
    height: 1rem;
    background-image: url("../img/line_yellow.svg");
    position: absolute;
    background-repeat: no-repeat;
    top: 4.5rem;
    left: 50%;
    transform: translate(-50%, -50%)
    
}
.products-category__inner:nth-child(2) .products-category__header::after{
    content: "";
    display: inline-block;
    width: 5rem;
    height: 1rem;
    background-image: url("../img/line_white.svg");
    position: absolute;
    background-repeat: no-repeat;
    top: 4.5rem;
    left: 50%;
    transform: translate(-50%, -50%)
}
.products-category__title{
    font-family: 'Nunito', sans-serif;
    font-weight: 1000;
    font-size: 2rem;
    letter-spacing: 1.9px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 7rem;
    padding-bottom: 3rem;
    text-transform: capitalize
}

.products-category__subtitle{
align-items: center;
    display: flex;
    flex-direction: column;
    font-family: 'Zen Maru Gothic';
    font-size: 1rem;
    letter-spacing: .5px;
    line-height: 1.4;
    text-align: center;
}
.products-category__description{
	max-width: 650px;
	color: #fff;
    font-family: 'Zen Maru Gothic', serif;
	margin: 0 auto 3rem;
	text-align: justify
}

.slider {
    width:100%;
    margin:0 auto;
}

.slider img {
    width:20vw;
    height:auto;
}
@media (max-width: 37.5em) {
	.slider img {
    width: 70vw;
}
}
.slider .slick-slide {
	transform: scale(0.8);
	transition: all .5s;
	opacity: 0.5;
}

.slider .slick-slide.slick-center{
	transform: scale(1);
	opacity: 1
}

.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
	outline: none;
    border-top: 2px solid #F9FAE0;
	border-right: 2px solid #F9FAE0;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: 1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: 1.5%;
    transform: rotate(45deg);
}



.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;
    height:8px;
    display:block;
    border-radius:50%;
    background:#F9FAE0;
}

.slick-dots .slick-active button{
    background:#FFE471;
}
.little-wrapper{
    max-width: 1000px;
    background-color: #FFE471;
    color: #573F1C;
    padding: 4rem 0 4rem;
    margin: 3rem auto;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
	filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, .76))
}
@media (max-width: 48em) {
	.little-wrapper{
	padding: 3rem 0 0 0;
	width: 100%;
	height: auto
	}
}
.point-text{
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 0
}
.point-text-item{
   width: 300px;
    height: auto;
    position: relative;
    z-index: 150

}
@media (max-width: 48em) {
	.point-text-item .product-card__variant-number{
		flex-direction: row;
		justify-content: center
	}
}
.point-text-item img{
    display: inline-block;
    position: relative;
    width: 300px;
    z-index: 2;
}

.point-text-item p{
    display: inline-block;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
	font-family: 'Zen Maru Gothic';
}

.point__heading{
    display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;

}
.point__heading-title{
	font-family: 'Nunito', sans-serif;
	font-weight: 1000;
	font-size: 2rem;
	letter-spacing: .9px;
    position: relative;
}
.point__subheading-title{
	font-family: 'Zen Maru Gothic';
	letter-spacing: .9px;
	line-height: 1.5;
	font-weight: 600
}

.point__heading-title::after{
    content: "";
    display: inline-block;
    width: 4rem;
    height: 2rem;
    background-image: url("../img/line_white.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: 3.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
    
}
.point__heading-small{
	font-size: 1.2rem;
}
.product-card__variant-number {
	align-items: center;
	display: flex;
	flex-direction: column;
    font-family: 'Nunito', sans-serif;
	font-weight: 1000;
    font-size: 1rem;
	letter-spacing: .5px;
	line-height: 1.4;
	text-align: center;
	z-index: 2;
	position: relative;
	text-transform: capitalize
}
@media (min-width: 48em) {
	.product-card__variant-number {
		min-width: 20%
	}
}
@media (min-width: 64em) {
	.product-card__variant-number {
		line-height: 1.7
	}
}
.product-card__variant-number strong {
	font-size: 1.5rem;
	line-height: 1.2;
	letter-spacing: .75px
}
@media (min-width: 64em) {
	.product-card__variant-number strong {
		font-size: 2rem;
		line-height: 1;
		letter-spacing: 1.6px
	}
}