/* =============================================================================================== */
/* SCHEDULE ========================================================================================== */
/* =============================================================================================== */
section.swiper {
	float: left;
	width: 100%;
    margin: 0 0 40px; }

	section.swiper .swiper-title { 
		float: left;
		width: 100%;
		color: var(--frame-main);
		font-family: "Proxima Nova"; 
   		font-size: 18px;
		font-weight: bold;
		text-transform: uppercase;
		line-height: 1;
		margin: 25px 0 15px; }

	section.swiper .swiper-grid {
		position: relative; }

	section.swiper .swiper-grid .swiper-container {
		width: 100%;
		height: 100%; }
		.swiper-button-next, 
		.swiper-button-prev {
   		 	filter: brightness(100) grayscale(1) contrast(10); }

	section.swiper .swiper-grid .swiper-slide { 
		position: relative;
	    background-position: center;
	    background-size: cover;
		width: 200px; }
		section.swiper .swiper-grid .swiper-slide .box {
			width: 100%;
			height: 100%; } 
		section.swiper .swiper-grid .swiper-slide .inner {
		    position: absolute; left: 0; bottom: 0;
		    width: 100%; height: 60px;
		    background-color: rgba(0,0,0,0.5);
		    color: white;
		    padding: 5px 15px;
		    transition: 0.5s; }
			section.swiper .swiper-grid .swiper-slide:hover .inner {
				background-color: var(--frame-main);
				transition: 0.3s; }
			section.swiper .swiper-grid .swiper-slide .inner p {
				margin: 0; }
			section.swiper .swiper-grid .swiper-slide .inner .title {
				font-size: 12px;
				font-weight: bold;
				text-transform: uppercase;
				line-height: 1.3;
    			margin-top: 3px; }
			section.swiper .swiper-grid .swiper-slide .inner .subtitle {
				font-size: 10px; }

	section.swiper .swiper-grid .direction {
		font-size: 18px;
		text-transform: uppercase;
		text-align: center;
		margin: 10px 0; }
	section.swiper .swiper-grid .direction svg {
		position: relative; top: 3px;
		color: var(--main-color);
		font-size: 30px;
		margin: 0 5px; }

	section.swiper .swiper-button-next, 
	section.swiper .swiper-button-prev {
		top: 45%;
	    background-image: none;
	    color: var(--frame-main);
	    font-size: 50px;
	    filter: none; }	
	section.swiper .swiper-button-next { right: -40px; }
	section.swiper .swiper-button-prev { left: -40px; }

section.swiper.home-swiper { 
	width: 100%; max-width: 1280px;
	margin: 0 auto; }

	section.swiper.home-swiper .box { 
		display: grid;
    	grid-template-columns: 50% 50%;
	    background-position: center;
	    background-size: cover; }
		section.swiper.home-swiper .title { 
			align-self: center;
			color: white;
			font-size: 28px;
		    font-weight: bold;
		    line-height: 1;
		    /*text-transform: uppercase;*/
		    padding: 0 100px; }

@media(max-width: 425px) {
	section.swiper.home-swiper .title { display: none; }
}

@media(max-width: 768px) {
	section.swiper.home-swiper .title { font-size: 14px; }
}