#main .container {
width: 100%;
}
h1.title {
text-align: center;
}
.shadow-box {
box-shadow: 3px 6px 18px 0px rgba(0,0,0,0.3);
}
.slick-arrow {
position: unset;
display: inline;
transform: unset;
margin: 10px;
width: 50px;
}
.slick-prev:before,
.slick-next:before {
color: #000;
font-size: 30px;
font-family: "Font Awesome 5 Free";
font-weight: 900;
}
.slick-prev:before {
content: "\f100";
}
.slick-next:before {
content: "\f101";
}
.fancybox-bg {
background: #000;
}
(function ($) {
$(document).ready(function(){
$('.gallery').slick({
dots: true,
appendArrows: $('#arrows'),
slidesToShow: 4,
autoplay: true,
autoplaySpeed: 9000,
speed: 900,
responsive: [
{
breakpoint: 768,
settings: {
centerMode: true,
slidesToShow: 2,
variableWidth: false,
}
},
{
breakpoint: 480,
settings: {
centerMode: true,
centerPadding: '40px',
slidesToShow: 1,
variableWidth: false,
}
}
],
variableWidth: true,
});
});
}(jQuery));








