/*	Workshop Ticker and Promo Slider */


/* UNIVERSAL */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
#custom-container {
	outline: 0px solid red;
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #fff;
	margin: 0;
	padding: 25px 15px;
	font-size: 44px;
	font-weight:600;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	background-image: url('sor_background.jpg') !important;
	background-color: rgb(128, 85, 27);
	background-position: 0% 40%;
	text-align: center;
	gap: 5px 100px;
	margin-bottom: 30px;
}
.enroll_btn a {
	font-family: Roboto, sans-serif !important;
	display: block;
	color:#2d4aad;
	text-decoration: none;
	background-color: #fbfbfb;
	font-weight:700;
	padding: 16px 32px;
	font-size: 18px;
	border-radius: 4px;
}
.enroll_btn a:hover {
	background-color: #2d4aad;
	color: #fff;
}

/* SMALL LAPTOP */
@media (max-width: 936px) {
	#custom-container {
		font-size: 36px;
		gap: 5px 40px !important;
	}
}

/* TABLET */
@media (max-width: 804.5px) {
	#custom-container {
		font-size: 24px;
	}
	.enroll_btn a {

		font-size: 16px;
		padding: 8px 20px;
	}
}

/* MOBILE */
@media (max-width: 719px) {
	#custom-container {
		font-size: 24px;
	}
}