ul.products_list {
    margin: 0 -13px;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
div.products_list {
    margin: 0 -13px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-size: 0;
}
.products_list .slide_block {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 13px 26px;
    min-height: 520px;
    white-space: normal;
    font-size: 1.4rem;
}
.products_list.slick-slider {
    overflow: visible;
}
.products_list > li {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 13px;
    margin-bottom: 26px;
    min-height: 520px;
}
.products_list .slick-arrow {
    position: absolute;
    top: 215px;
    border: none;
    width: 90px;
    height: 90px;
    z-index: 5;
    background: #e6e6e6;
    color: inherit;
    border-radius: 3px;
    -o-transition: background-color 0.3s;
	-ms-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}
.products_list .slick-arrow:hover {
    background: #cccccc;
}
.products_list .slick-arrow:before {
    display: block;
    font-size: 6rem;
    line-height: 1em;
    margin-top: -8px;
}
.products_list .slick-prev {
    left: -32px;
}
.products_list .slick-prev:before {
    content: "‹";
}
.products_list .slick-next {
    right: -32px;
}
.products_list .slick-next:before {
    content: "›";
}
.product_block {
    min-height: inherit;
    border: 2px solid #E2E2E2;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    background: white;
    overflow: hidden;
    -o-transition: z-index 0.5s box-shadow 0.3s;
	-ms-transition: z-index 0.5s box-shadow 0.3s;
	-moz-transition: z-index 0.5s box-shadow 0.3s;
	-webkit-transition: z-index 0.5s box-shadow 0.3s;
	transition: z-index 0.5s box-shadow 0.3s;
	padding: 15px 24px 20px;
}
.product_block .image_block {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 20px;
}
.product_block .image_block img {
    display: inline-block;
    vertical-align: top;
    height: 310px;
    width: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -o-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-webkit-transition: height 0.3s;
	transition: height 0.3s;
}
.product_block .product_name {
    font-size: 214.3%;
    line-height: 1em;
    font-family: 'BebasBold';
    color: #707070;
}
.product_block .product_description {
    line-height: 16px;
    color: #373435;
    margin-top: 15px;
    position: relative;
	overflow: hidden;
}
.product_block .product_options {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    overflow: hidden;
    max-height: 0;
    -o-transition: max-height 0.3s;
	-ms-transition: max-height 0.3s;
	-moz-transition: max-height 0.3s;
	-webkit-transition: max-height 0.3s;
	transition: max-height 0.3s;
}

.product_block .product_options li {
    padding-left: 50px;
    padding-top: 20px;
    background-size: 39px;
    background-position: left 20px;
    background-repeat: no-repeat;
    line-height: 16px;
    color: #373435;
    min-height: 59px;
}

.product_block:hover {
    z-index: 10;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11);
    -o-transition: z-index 0.01s box-shadow 0.3s;
	-ms-transition: z-index 0.01s box-shadow 0.3s;
	-moz-transition: z-index 0.01s box-shadow 0.3s;
	-webkit-transition: z-index 0.01s box-shadow 0.3s;
	transition: z-index 0.01s box-shadow 0.3s;
}
.product_block:hover .image_block img {
    height: 340px;
}

.product_block:hover .product_options {
    max-height: 600px;
}

#home {
    background-image: none;
    
}
@media screen and (min-width: 992px) {
    #home {
        height: 980px;
    }
}
#home .images_block {
    position: absolute;
    top: 0;
    left: 10%;
    width: 55%;
    height: 100%;
}
#home .main_image,
#home .second_image {
    position: absolute;
    top: 40%;
    transform-origin: center;
    -webkit-transfrom-origin: center;
    opacity: 0;
}

#home .main_image {
    left: 0;
    height: 40%;
    animation: leftBottleAnimate 8s forwards linear;
    
}
#home .second_image {
    height: 50%;
    left: 100%;
    animation: rightBottleAnimate 8s forwards linear;
    z-index: 2;
}
#home .main_image img,
#home .second_image img {
    display: block;
    height: 100%;
    transform: translate3d(-50%,0,0);
	-moz-transform: translate3d(-50%,0,0);
    -ms-transform: translate3d(-50%,0,0);
    -webkit-transform: translate3d(-50%,0,0);
    -o-transform: translate3d(-50%,0,0);
}


#home .text_box .title > span {
    display: block;
    white-space: nowrap;
}
#home .text_box .title > span span {
    display: inline-block;
    vertical-align: top;
    position: relative;
    opacity: 0;
    transform: scale(0.6);
	-moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -o-transform: scale(0.6);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-origin: center;
    -webkit-transfrom-origin: center;
    animation: titleAnimate 8s forwards linear;
}
#home .text_box .title > span:last-child {
    margin-left: 40%;
}
#home .text_box .description {
    animation: descriptionAnimate 3s forwards;
}

@media screen and (max-width: 1499px) and (min-width: 1300px) {
    .product_block .product_name {
        font-size: 171.4%;
    }
    .product_block .product_description {
    	-webkit-line-clamp: 4;
    }
    #home .second_image {
        margin-left: 50px;
    }
}
@media screen and (max-width: 1439px) {
    .products_list .slide_block {
        width: 25%;
    }
}
@media screen and (max-width: 1499px)  {
    #home .second_image {
        margin-left: 50px;
    }
}
@media screen and (max-width: 1280px) {
    ul.products_list {
        justify-content: center;
    }
    .products_list > li {
        flex: 0 0 33.33%;
        max-width: 325px;
    }
    #home .second_image {
        margin-left: 70px;
    }
    .products_list .slick-arrow {
        width: 70px;
        height: 70px;
        top: 225px;
    }
    .products_list .slick-arrow:before {
        font-size: 5.2rem;
        margin-top: -6px;
    }
    .products_list .slick-prev {
        left: -22px;
    }
     .products_list .slick-next {
        right: -22px;
    }
}
@media screen and (max-width: 1199px) {
    .products_list .slide_block {
        width: 33.33%;
    }
}

@media screen and (max-width: 959px) {
    .products_list > li {
        flex: 0 0 50%;
    }
    #home .main_image {
        animation: leftBottleMobileAnimate 8s linear forwards;
    }
    #home .images_block {
        max-height: 640px;
        margin: auto 0;
        height: auto;
        bottom: 0;
        top: 10%;
    }
    .products_list .slide_block {
        width: 50%;
    }
    .products_list .slide_block .product_block {
        max-width: 300px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .products_list .slick-arrow {
        width: 50px;
        height: 50px;
        top: 235px;
    }
    .products_list .slick-arrow:before {
        font-size: 4.5rem;
        margin-top: -5px;
    }
    .products_list .slick-prev {
        left: -10px;
    }
     .products_list .slick-next {
        right: -10px;
    }
}
@media screen and (max-width: 599px) {
    div.products_list {
        margin: 0;
    }
    .products_list .slide_block {
        width: 100%;
        padding: 0;
    }
}
@media screen and (max-width: 624px) {
    .products_list > li {
        flex: 0 0 100%;
    }
    #home .images_block {
        max-height: 560px;
    }
}
@media screen and (max-width: 479px) {
    #home .text_box {
        left: 40%;
    }
    #home .images_block {
        max-height: 480px;
    }
}
@media screen and (max-width: 359px) {
    #home .text_box {
        left: 33%;
    }
}

@keyframes leftBottleAnimate {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
        left: 0;
        height: 40%;
        top: 40%;
        transform: rotate(0deg);
    	-moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    48% {
        left: 80%;
        top: 35%;
        height: 50%;
        transform: rotate(-40deg);
    	-moz-transform: rotate(-40deg);
        -webkit-transform: rotate(-40deg);
        -o-transform: rotate(-40deg);
    }
    50% {
        left: 80%;
        top: 35%;
        height: 50%;
        transform: rotate(-40deg);
    	-moz-transform: rotate(-40deg);
        -ms-transform: rotate(-40deg);
        -webkit-transform: rotate(-40deg);
        -o-transform: rotate(-40deg);
    }
    78% {
        left: 35%;
        top: 30%;
        height: 75%;
        transform: rotate(45deg);
    	-moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
    80% {
        left: 35%;
        top: 30%;
        height: 75%;
        transform: rotate(45deg);
    	-moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
    100% {
        left: 50%;
        top: 20%;
        height: 90%;
        opacity: 1;
        transform: rotate(40deg);
    	-moz-transform: rotate(40deg);
        -ms-transform: rotate(40deg);
        -webkit-transform: rotate(40deg);
        -o-transform: rotate(40deg);
    }

}

@keyframes leftBottleMobileAnimate {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
        left: 0;
        height: 40%;
        top: 40%;
        transform: rotate(0deg);
    	-moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    48% {
        left: 80%;
        top: 35%;
        height: 50%;
        transform: rotate(-40deg);
    	-moz-transform: rotate(-40deg);
        -webkit-transform: rotate(-40deg);
        -o-transform: rotate(-40deg);
    }
    50% {
        left: 80%;
        top: 35%;
        height: 50%;
        transform: rotate(-40deg);
    	-moz-transform: rotate(-40deg);
        -ms-transform: rotate(-40deg);
        -webkit-transform: rotate(-40deg);
        -o-transform: rotate(-40deg);
    }
    78% {
        left: 35%;
        top: 35%;
        height: 80%;
        transform: rotate(45deg);
    	-moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
    80% {
        left: 35%;
        top: 35%;
        height: 80%;
        transform: rotate(45deg);
    	-moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
    100% {
        left: 20%;
        top: 10%;
        height: 90%;
        opacity: 1;
        transform: rotate(0deg);
    	-moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

}

@keyframes rightBottleAnimate {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    52% {
        left: 100%;
        transform: rotate(0deg);
    	-moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    80% {
        left: 220%;
        height: 50%;
        transform: rotate(25deg);
    	-moz-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
        -webkit-transform: rotate(25deg);
        -o-transform: rotate(15deg);
    }
    100% {
       opacity: 1; 
       height: 0;
       left: 220%;
    }
}

@keyframes titleAnimate {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
        transform: scale(0.6);
    	-moz-transform: scale(0.6);
        -ms-transform: scale(0.6);
        -webkit-transform: scale(0.6);
        -o-transform: scale(0.6);
    }
    78% {
        opacity: 1; 
        
    }
    80% {
        transform: scale(1);
    	-moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
    }
    100% {
        opacity: 1; 
        transform: scale(1);
    	-moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
    }
}














