@charset "UTF-8";

body {
	font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
	color: #ffffff;
	background: #214842;
	background: linear-gradient(189deg, rgba(33, 72, 66, 1) 0%, rgba(239, 195, 96, 1) 100%);
}

.hero {
	padding-top: 120px;
	padding-bottom: 70px;
	position: relative;
	overflow: hidden;
}

.custom-btn-primary {
	background-color: #efc360;
	color: #ffffff;
	min-width: 140px;
	min-height: 50px;
	border: 0;
	border-radius: 1rem;
}

.custom-btn-primary:hover {
	background-color: #000000;
	color: #ffffff;
}

.preview-box {
	max-width: 368px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.preview-box img {
	border-radius: 6px;
}

.preview-box__media {
	transition: all ease .25s;
	display: flex;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
}

.preview-box__title {
	font-size: 20px;
	color: #ffffff;
	text-align: center;
}

*+.preview-box__title {
	margin-top: 20px;
	text-decoration: none;
}

@media (min-width: 1200px) {
	.preview-box:hover .preview-box__media {
		transform: translateY(-10px);
		transition: all ease .25s;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	}
}

/** @section Images */
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.pur-sec {
	max-width: 700px;
	width: 100%;
	margin: auto;
	text-align: center;
	padding: 0 0 50px 0;
}

/* new star css */
.cover-ribbon {
	height: 115px;
	width: 115px;
	position: absolute;
	right: -8px;
	top: -8px;
	overflow: hidden;
}

.cover-ribbon .cover-ribbon-inside {
	background: #EA4335;
	color: #FFF;
	transform: rotate(45deg);
	position: absolute;
	right: -35px;
	top: 15px;
	padding: 5px;
	min-width: 127px;
	text-align: center;
}

.cover-ribbon .cover-ribbon-inside:before {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 10px solid #992C23;
	position: absolute;
	left: -6px;
	right: 0;
	bottom: 0;
	content: "";
	top: 32px;
	transform: rotate(-45deg);
}

.cover-ribbon .cover-ribbon-inside:after {
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-left: 10px solid #992C23;
	border-bottom: 7px solid transparent;
	position: absolute;
	left: 90%;
	right: 0;
	top: 32px;
	bottom: 0;
	content: "";
	transform: rotate(-45deg);
}