@charset "utf-8";

/*==================================================
AURELIX COLLECTION
Version 4.0
==================================================*/
/*==================================================
CSS VARIABLES
==================================================*/
:root {
	--gold: #B88650;
	--gold-dark: #A67645;
	--text: #2D2D2D;
	--text-light: #777;
	--border: #ECECEC;
	--bg: #FFFFFF;
	--bg-light: #FAFAFA;
	--radius: 16px;
	--shadow:
		0 12px 40px rgba(0, 0, 0, .06);
	--transition: .25s;
}

/*==================================================
RESET
==================================================*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
}

button {
	font: inherit;
}

h4 {
	margin-bottom: 10px;
}

/*==================================================
BASIC LAYOUT
==================================================*/
.blog-wrapper {
	width: min(1600px, calc(100% - 40px));
	margin: 0 auto;
	padding: 80px 0 60px;
}

.collection-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 30px;
}

#blogContainer.collection-grid.grid-view {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 30px !important;
	align-items: start;
}

#blogContainer.collection-grid.grid-view>* {
	width: 100%;
	min-width: 0;
}

/*==================================================
HEADER
==================================================*/
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #ECECEC;
}

.header-container {
	width: min(1600px, calc(100% - 40px));
	margin: auto;
	height: 95px;
	display: grid;
	grid-template-columns: 260px 1fr auto;
	align-items: center;
}

.header-logo img {
	display: block;
	height: 80px;
}

/*==================================================
NAVIGATION
==================================================*/
.header-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
}

.header-nav a {
	position: relative;
	color: #2D2D2D;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	transition: var(--transition);
}

.header-nav a:hover {
	color: var(--gold);
}

.header-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: var(--transition);
}

.header-nav a:hover::after {
	width: 100%;
}

/*==================================================
HEADER ACTIONS
==================================================*/
.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.header-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	background: var(--gold);
	color: #fff;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	transition: var(--transition);
}

.header-button:hover {
	background: var(--gold-dark);
}

/*==================================================
LANGUAGE BUTTON
==================================================*/
.language-btn {
	width: 46px;
	height: 46px;
	border: none;
	background: none;
	cursor: pointer;
	color: #444;
	font-size: 22px;
	transition: var(--transition);
}

.language-btn:hover {
	color: var(--gold);
}

/*==================================================
MOBILE MENU BUTTON
==================================================*/
.mobile-menu {
	display: none;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 28px;
}

/*==================================================
COLLECTION LAYOUT
==================================================*/
.collection-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 45px;
	align-items: start;
}

/*==================================================
SIDEBAR
==================================================*/
.collection-sidebar {
	position: sticky;
	top: 120px;
	background: #fff;
	padding: 34px;
	border: 1px solid #EEE8DF;
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

/* Scrollbar */
.collection-sidebar::-webkit-scrollbar {
	width: 10px;
}

.collection-sidebar::-webkit-scrollbar-track {
	background: #f3f3f8;
	border-radius: 20px;
}

.collection-sidebar::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg,
			#ff52af,
			#d92e86);
	border-radius: 20px;
	border: 2px solid #f3f3f8;
}

.collection-sidebar::-webkit-scrollbar-thumb:hover {
	background: #b91f71;
}

/*==================================================
FILTER GROUP
==================================================*/
.filter-group {
	margin-bottom: 42px;
}

.filter-group:last-child {
	margin-bottom: 0;
}

.filter-group h3 {
	margin-bottom: 22px;
	color: #555;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

/*==================================================
CATEGORY FILTER
==================================================*/
.filter-chip {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 7px 0 7px 30px;
	background: none;
	border: none;
	color: #444;
	font-size: 15px;
	cursor: pointer;
	transition: .25s;
}

.filter-chip::before {
	content: "";
	width: 14px;
	height: 14px;
	border: 2px solid #C9B08A;
	border-radius: 50%;
	transition: .25s;
	flex-shrink: 0;
}

.filter-chip:hover {
	color: var(--gold);
	padding-left: 40px;
}

.filter-chip.active {
	color: var(--gold);
	font-weight: 600;
}

.filter-chip.active::before {
	background: var(--gold);
	border-color: var(--gold);
	box-shadow:
		inset 0 0 0 3px #fff;
}

/*==================================================
COLOR FILTER
==================================================*/
#colorFilters {
	display: grid;
	grid-template-columns: repeat(5, 32px);
	gap: 16px;
}

.color-circle {
	position: relative;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: .25s;
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, .12);
}

.color-circle:hover {
	transform: scale(1.18);
}

.color-circle.active {
	transform: scale(1.18);
	box-shadow:
		0 0 0 3px var(--gold);
}

.color-circle::after {
	content: attr(title);
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	background: #222;
	color: #fff;
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 11px;
	white-space: nowrap;
	opacity: 0;
	transition: .2s;
	pointer-events: none;
}

.color-circle:hover::after {
	opacity: 1;
}

/*==================================================
STYLE FILTER
==================================================*/
#styleFilters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.style-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	margin: 0 10px 10px 0;
	background: #fff;
	border: 1px solid #E8E8E8;
	border-radius: 8px;
	color: #555;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: .25s;
}

.style-chip:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.style-chip.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

/*==================================================
RESET FILTER
==================================================*/
.reset-filter {
	width: 100%;
	height: 46px;
	border: 1px solid var(--gold);
	border-radius: 10px;
	background: #fff;
	color: var(--gold);
	font-weight: 600;
	cursor: pointer;
	transition: .25s;
}

.reset-filter:hover {
	background: var(--gold);
	color: #fff;
}

/*==================================================
TOOLBAR
==================================================*/
.collection-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border);
}

.collection-toolbar-left h1 {
	font-size: 46px;
	font-weight: 300;
	line-height: 1.1;
	color: var(--text);
}

.collection-toolbar-left p {
	margin-top: 10px;
	color: var(--text-light);
	font-size: 17px;
}

.collection-toolbar-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

/*==================================================
SEARCH + SORT
==================================================*/
.collection-search {
	width: 320px;
	height: 48px;
	padding: 0 18px 0 48px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background:
		url("../img/icons/search.svg") no-repeat 18px center;
	outline: none;
	transition: var(--transition);
}

.collection-search:focus {
	border-color: var(--gold);
}

.collection-search::placeholder {
	color: #999;
}

.collection-sort {
	height: 48px;
	padding: 0 20px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	cursor: pointer;
	transition: .25s;
}

.collection-sort:hover {
	border-color: var(--gold);
}

.collection-results {
	margin-bottom: 30px;
	color: #777;
	font-size: 15px;
}

.collection-results strong {
	color: var(--gold);
}

/*==================================================
GRID VIEWS
==================================================*/
.grid-view {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 34px;
}

.list-view {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.compact-view {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}

/*==================================================
CARD
==================================================*/
.collection-card {
	background: #fff;
	border: 1px solid #ECECEC;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
	transition: .30s;
	animation: fadeUp .45s ease both;
}

.collection-card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, .10);
}

/*==================================================
IMAGE
==================================================*/
.collection-image {
	position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: #F7F7F7;
	border-radius: 18px;
}

.collection-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	transition:
		transform .45s,
		opacity .4s;
}

.collection-image img.loaded {
	opacity: 1;
}

.collection-card:hover .collection-image img {
	transform: scale(1.06);
}

/*==================================================
CATEGORY LABEL
==================================================*/
.collection-category {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(10px);
	border-radius: 30px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	z-index: 3;
}

/*==================================================
IMAGE OVERLAY
==================================================*/
.collection-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background:
		linear-gradient(rgba(0, 0, 0, .05),
			rgba(0, 0, 0, .45));
	opacity: 0;
	transition: .30s;
}

.collection-card:hover .collection-overlay {
	opacity: 1;
}

/*==================================================
VIEW BUTTON
==================================================*/
.view-design {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 14px 28px;
	background: #fff;
	color: #2D2D2D;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: .25s;
}

.view-design:hover {
	background: var(--gold);
	color: #fff;
}

/*==================================================
CONTENT
==================================================*/
.collection-content {
	padding: 24px;
	margin-top: -25px;
}

.collection-content h3 {
	margin:
		25px 0 16px;
	color: var(--text);
	font-size: 22px;
	font-weight: 300;
	line-height: 1.35;
}

.collection-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #777;
}

.collection-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/*==================================================
LIST VIEW
==================================================*/
.list-view .collection-card {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.list-view .collection-image {
	height: 100%;
	aspect-ratio: auto;
}

.list-view .collection-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*==================================================
COMPACT VIEW
==================================================*/
.compact-view .collection-content {
	padding: 18px;
}

.compact-view h3 {
	font-size: 17px;
}

.compact-view .view-design {
	padding: 10px 18px;
	font-size: 11px;
}

/*==================================================
ANIMATION
==================================================*/
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*==================================================
VIEW SWITCH
==================================================*/
.view-btn {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #E8E8E8;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: .25s;
}

.view-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.view-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

.view-btn i {
	font-size: 18px;
}

/*==================================================
PAGINATION
==================================================*/
#pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 70px 0;
}

#pagination button {
	min-width: 46px;
	height: 46px;
	border: 1px solid #E8E8E8;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: .25s;
}

#pagination button:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-2px);
}

#pagination button.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

#pagination button:disabled {
	opacity: .35;
	cursor: default;
}

.page-nav {
	padding: 0 20px;
}

#pagination span {
	color: #999;
	padding: 0 6px;
}

/*==================================================
IMAGE MODAL
==================================================*/
.image-modal {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, .88);
	backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: .35s;
	z-index: 99999;
}

.image-modal.active {
	opacity: 1;
	visibility: visible;
}

.image-modal-content {
	width: min(1200px, 92vw);
	display: grid;
	grid-template-columns: 1fr 340px;
	overflow: hidden;
	background: #fff;
	border-radius: 22px;
	box-shadow:
		0 35px 90px rgba(0, 0, 0, .35);
}

/*==================================================
POPUP IMAGE
==================================================*/
.popup-left {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 35px;
	background: #F7F7F7;
}

.popup-left img {
	max-width: 100%;
	max-height: 82vh;
	object-fit: contain;
}

/*==================================================
POPUP INFO
==================================================*/
.popup-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 45px;
}

.popup-right h2 {
	margin-bottom: 18px;
	font-size: 34px;
	font-weight: 300;
	line-height: 1.2;
}

.popup-right p {
	margin-bottom: 35px;
	color: #777;
	line-height: 1.8;
}

/*==================================================
REQUEST BUTTON
==================================================*/
.request-license {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	background: var(--gold);
	color: #fff;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	transition: .25s;
}

.request-license:hover {
	background: var(--gold-dark);
	transform: translateY(-2px);
}

/*==================================================
MODAL CLOSE
==================================================*/
.close-modal {
	position: absolute;
	top: 25px;
	right: 30px;
	width: 54px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .15);
	color: #fff;
	font-size: 34px;
	cursor: pointer;
	transition: .25s;
}

.close-modal:hover {
	background: var(--gold);
}

/*==================================================
LICENSE BANNER
==================================================*/
.license-banner {
	margin: 90px 0;
	overflow: hidden;
	background: #fff;
	border-radius: 22px;
	box-shadow:
		0 18px 55px rgba(0, 0, 0, .05);
}

.license-grid3 {
	display: grid;
	grid-template-columns: 360px repeat(5, 1fr);
}

.license-intro {
	padding: 35px;
	background: #faf8f5;
}

.license-intro h3 {
	margin-bottom: 18px;
	font-size: 26px;
	line-height: 1.3;
}

.license-intro p {
	margin-bottom: 28px;
	color: #666;
}

.license-feature {
	padding: 45px 30px;
	text-align: center;
	transition: .30s;
}

.license-feature:hover {
	background: #FAFAFA;
}

.license-feature i {
	margin-bottom: 22px;
	color: var(--gold);
	font-size: 42px;
}

.license-feature h4 {
	margin-bottom: 12px;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.license-feature p {
	color: #777;
	line-height: 1.8;
}

/*==================================================
LICENSE FOOTER
==================================================*/
.license-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 35px;
	border-top: 1px solid #ECECEC;
}

.license-note {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 18px;
}

.license-note i {
	color: var(--gold);
	font-size: 24px;
}

.license-bottom-btn {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 35px;
	border: 1px solid #C99B63;
	border-radius: 8px;
	color: var(--gold);
	font-weight: 600;
	transition: .25s;
}

.license-bottom-btn:hover {
	background: var(--gold);
	color: #fff;
}

/*==================================================
BADGES
==================================================*/
.badge,
.card-badge,
.card-likes,
.card-pinterest {
	position: absolute;
	border-radius: 30px;
	backdrop-filter: blur(10px);
}

.badge {
	top: 14px;
	left: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	z-index: 20;
	box-shadow:
		0 6px 18px rgba(0, 0, 0, .18);
}

.badge.favorite {
	background: #c28a49;
}

.badge.pinterest {
	background: #E60023;
}

.badge i {
	font-size: 13px;
}

.card-badge {
	top: 18px;
	left: 18px;
	padding: 8px 16px;
	background: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}

.card-badge.gold {
	background: var(--gold);
	color: #fff;
}

.card-likes {
	right: 18px;
	bottom: 18px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, .92);
	font-size: 12px;
}

.card-pinterest {
	left: 18px;
	bottom: 18px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, .92);
	font-size: 12px;
}

/*==================================================
QUICK FILTERS
==================================================*/
.quick-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 35px 0 45px;
}

.quick-filter {
	padding: 12px 24px;
	background: #fff;
	border: 1px solid #ECECEC;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: .25s;
}

.quick-filter:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.quick-filter.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

/*==================================================
RESPONSIVE
==================================================*/
/*==================================================
= 1600px
==================================================*/
@media (max-width:1600px) {
	.header-container {
		padding: 0 30px;
	}

	.collection-toolbar-left h1 {
		font-size: 42px;
	}
}

/*==================================================
= 1200px
==================================================*/
@media (max-width:1200px) {
	.header-container {
		grid-template-columns: 220px 1fr auto;
		height: 82px;
		padding: 0 20px;
	}

	.header-logo img {
		height: 64px;
	}

	.header-nav {
		gap: 22px;
	}

	.header-nav a {
		font-size: 12px;
	}

	.collection-layout {
		grid-template-columns: 1fr;
	}

	.collection-sidebar {
		position: relative;
		top: auto;
		width: 100%;
		max-width: none;
		margin-bottom: 35px;
	}

	.grid-view {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.image-modal-content {
		grid-template-columns: 1fr;
	}

	.popup-right {
		text-align: center;
	}
}

/*==================================================
= 992px
==================================================*/
@media (max-width:992px) {
	#blogContainer.collection-grid.grid-view {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.header-container {
		grid-template-columns: 180px 1fr auto;
		height: 80px;
	}

	.header-logo img {
		height: 56px;
	}

	.mobile-menu {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		padding: 0;
		font-size: 30px;
		color: #2d2d2d;
	}

	.header-button {
		display: none;
	}

	.header-nav {
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: center;
		gap: 25px;
		padding: 35px;
		background: #fff;
		box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
		z-index: 999;
	}

	.header-nav.active {
		display: flex;
	}

	.header-nav a {
		width: 100%;
		text-align: center;
		padding: 8px 0;
	}

	.collection-toolbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
	}

	.collection-toolbar-right {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		justify-content: flex-start;
	}

	.collection-search,
	.collection-sort {
		width: 100%;
	}

	.grid-view {
		grid-template-columns: repeat(2, 1fr);
	}

	.list-view .collection-card {
		flex-direction: column;
	}

	.license-grid3 {
		grid-template-columns: 1fr;
	}

	.license-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

/*==================================================
= 768px
==================================================*/
@media (max-width:768px) {
	.header-logo img {
		max-width: 170px;
	}

	.hero {
		min-height: auto;
		padding: 70px 24px;
	}

	.hero h1 {
		font-size: 42px;
		line-height: 1.1;
	}

	.hero p {
		font-size: 18px;
	}

	.collection-toolbar-left h1 {
		font-size: 34px;
	}

	.collection-toolbar-left p {
		font-size: 16px;
	}

	.grid-view {
		grid-template-columns: 1fr;
	}

	.compact-view {
		grid-template-columns: repeat(2, 1fr);
	}

	.popup-left {
		padding: 15px;
	}

	.popup-right {
		padding: 20px;
	}

	.image-modal-content {
		width: 95vw;
	}

	.quick-filters {
		justify-content: center;
	}

	.quick-filter {
		flex: 1 1 auto;
	}

	#blogContainer.collection-grid.grid-view {
		grid-template-columns: 1fr !important;
	}
}

/*==================================================
= 576px
==================================================*/
@media (max-width:576px) {
	.collection-sidebar {
		padding: 22px;
	}

	.filter-group {
		margin-bottom: 30px;
	}

	.compact-view {
		grid-template-columns: 1fr;
	}

	.collection-card {
		border-radius: 14px;
	}

	.collection-content {
		padding: 16px;
	}

	.collection-content h3 {
		font-size: 18px;
	}

	.popup-right h2 {
		font-size: 28px;
	}

	.request-license {
		height: 48px;
		font-size: 12px;
	}

	.badge {
		padding: 6px 10px;
		font-size: 10px;
	}

	.license-intro,
	.license-feature {
		padding: 25px;
	}

	.hero {
		min-height: 560px;
		background-position: 75% center;
	}

	.hero h1 {
		font-size: 34px;
	}

	.hero p {
		font-size: 16px;
	}
}