
/* Container */
.home-announce {
	background-color: #F48A02;
	font-family: "Gotham SSm A","Gotham SSm B",Arial,Helvetica,sans-serif;
	width: 100%;

}
.home-announce.red {
	background-color: #CB333B;
}
.home-announce.yellow {
	background-color: #F1C400;
}
.home-announce:not(:first-child) {
	margin-top: 8px;
}
.home-announce:last-child {
	margin-bottom: 30px;
}
@media (min-width: 992px) {
	.home-announce {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		padding: 0 88px;
	}
	.home-announce:last-child {
		margin-bottom: 0;
	}
}
.home-announce__inner {
	display: flex;
	flex-direction: column;
	width: 100%;
}
@media (min-width: 992px) {
	.home-announce__inner {
		margin: 0 auto;
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
		max-width: 1504px;
	}
}

/* Message */
.home-announce__message {
	color: #FFF;
	font-weight: 500;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0;
	line-height: 30px;
	padding: 18px;
	text-align: center;
}
@media (min-width: 992px) {
	.home-announce__message {
		padding: 20px 0;
		text-align: left;
	}
}

/* Button */
.home-announce__button {
	align-items: center;
	-webkit-appearance: none;
	background-color: #db7b01;
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: bold;
	justify-content: center;
	letter-spacing: 1px;
	line-height: 24px;
	outline: none;
	padding: 18px 0;
	width: 100%;
	white-space: nowrap;
}
.home-announce.red .home-announce__button {
	background-color: #fc6060;
}
.home-announce.yellow .home-announce__button {
	background-color: #ffde37;
}
@media (min-width: 992px) {
	.home-announce__button {
		margin-left: 30px;
		padding: 24px 38px;
		width: auto;
	}
}
