#welcome {
	/*min-height: 80vh;*/
    background: radial-gradient(#8d663c, #2f2f2f);
    padding: 0 20px;
}

#welcomeContentGrid {  
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em;
    grid-auto-flow: row;
    grid-template-areas:
        "welcomeImage welcomeText";
    max-width: 1600px;
    margin: 14vh auto 3em;
    justify-items: center;
    padding-bottom: 4em;
}

#welcomeImage {
	grid-area: welcomeImage;
}

#welcome img {
	/*border: 16px solid #ffbc74;*/
}

#welcomeText {
	grid-area: welcomeText;
	color: #f6f6f6;
	max-width: 750px;
}

#welcomeText h1 {
	margin-top: 0;
	margin-bottom: .6em;
	
}

#welcomeImageSlider {
	opacity: .5;
	margin-bottom: 7em;
	filter: sepia(1);
	transition: filter .25s, opacity .25s;
}

#welcomeImageSlider:hover {
	opacity: 1;
	filter: sepia(0);
	transition: filter .25s, opacity .25s;
}

#welcomeImageSlider .tns-controls {
	display: none;
}

#colorbox #cboxTitle,
#colorbox #cboxCurrent,
#colorbox #cboxPrevious,
#colorbox #cboxNext {
	display: none !important;
}

#cboxLoadedContent {
    border: 5px solid #ffcb74;
    background: #fff;
}

@media(max-width: 1024px) {
	#welcomeContentGrid { 
		grid-template-columns: 1fr;
	    grid-template-rows: 1fr;
	    gap: 1em;
	    grid-auto-flow: row;
	    grid-template-areas:
	        "welcomeImage" "welcomeText";
	    justify-items: left;
	}
}