@charset "UTF-8";

#slider-gallery h1 {
    color: var(--black);
    text-align: center;
}

#slider-gallery .description {
    font-size: 18px;
	color: var(--black);
    text-align: center;
}

#gallery-tab > a.active {
	background-color: var(--yellow);
}

#gallery-tab > a {
	border-radius: 0;
	border-left: 2px solid var(--yellow);
	border-bottom: 2px solid var(--yellow);
	color: var(--black);
	font-family: Montserrat,sans-serif;
	line-height: 2em;
	letter-spacing: 2px;
	font-weight: 400;
	text-transform: uppercase;
	white-space: nowrap;
}


/* XS */
@media only screen and (min-width : 0px) {
		
	#gallery-tab > a {
		border-right: 1px solid var(--yellow);
	}

	#gallery-tab > a:first-child {
		border-top: 1px solid var(--yellow);
	}
	
	#slider-gallery {
		padding: 30px 0;
	}

	#gallery-tab > a {
		font-size: 8px;
	}
}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) { 
	
}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {
		
	#gallery-tab > a {
		border-right: 2px solid var(--yellow);
	}

	#gallery-tab > a:first-child {
		border-top: 2px solid var(--yellow);
	}
	
	#gallery-tab > a {
		font-size: 12px;
	}

}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
	#gallery-tab > a {
		border-right: none;
	}
	
	#slider-gallery {
		padding: 60px 0;
	}
}


