@font-face {
	font-family: 'Roboto';
	src: url('../fonts/roboto-regular.eot'); /* IE9 Compat Modes */
	src: url('../fonts/roboto-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/roboto-regular.woff') format('woff'), /* Pretty Modern Browsers */
	url('../fonts/roboto-regular.ttf')  format('truetype'), /* Safari, Android, iOS */
	url('../fonts/roboto-regular.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@font-face {
	font-family: 'Roboto-Light';
	src: url('../fonts/roboto-light.eot'); /* IE9 Compat Modes */
	src: url('../fonts/roboto-light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/roboto-light.woff') format('woff'), /* Pretty Modern Browsers */
	url('../fonts/roboto-light.ttf')  format('truetype'), /* Safari, Android, iOS */
	url('../fonts/roboto-light.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@font-face {
	font-family: 'Roboto-Medium';
	src: url('../fonts/roboto-medium.eot'); /* IE9 Compat Modes */
	src: url('../fonts/roboto-medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/roboto-medium.woff') format('woff'), /* Pretty Modern Browsers */
	url('../fonts/roboto-medium.ttf')  format('truetype'), /* Safari, Android, iOS */
	url('../fonts/roboto-medium.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
	font-family: 'Archia-Regular';
	src: url('../fonts/archia-regular.eot'); /* IE9 Compat Modes */
	src: url('../fonts/archia-regular.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/archia-regular.woff2') format('woff2'),
	     url('../fonts/archia-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Archia-Thin';
	src: url('../fonts/archia-thin.eot');
	src: url('../fonts/archia-thin.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/archia-thin.woff2') format('woff2'),
	    url('../fonts/archia-thin.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Archia-Light';
	src: url('../fonts/archia-light.eot');
	src: url('../fonts/archia-light.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/archia-light.woff2') format('woff2'),
	     url('../fonts/archia-light.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Archia-Medium';
	src: url('../fonts/archia-medium.eot');
	src: url('../fonts/archia-medium.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/archia-medium.woff') format('woff'),
	     url('../fonts/archia-medium.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Archia-Medium';
	src: url('../fonts/archia-bold.eot');
	src: url('../fonts/archia-bold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/archia-bold.woff') format('woff'),
	url('../fonts/archia-bold.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

body {
	color: #7c7c7c;
	background-color: #F5F5F5;
	margin: 0;
	padding: 0;
	font-family: Roboto, 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	height: 100%;
}

body.documentation .header-bar,
.question h2,
.column-header a,
.column-header {
	color: #FFFFFF;
	background-color: #C8C8C8;
}
body.guides .column-header a {
	background-color: transparent;
}
body.guides .column-header a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.align-left {
	float: left;
}
.align-center {
	text-align: center;
}
.align-right {
	float: right;
}

/* Modern Grid System - Flexbox Fallback for older browsers, but mostly Flex now */
.two-columns,
.three-columns,
.four-columns,
.five-columns,
.golden-ratio {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.column {
	box-sizing: border-box;
}

ul, ol {
	padding-left: 20px;
}

.blog-post > ul, ol {
	padding-left: 20px !important;
}

.blog-post > ul {
	list-style: disc !important;
}

.blog-post > ol, ul ol {
	list-style: lower-roman !important;
}

.blog-post > ol {
	list-style: lower-roman !important;
}

b, strong {
	font-weight: bold;
}

h4, h5, h6, b, strong {
	color: #000;
}

html, body {
	height: 100%;
}

body.home {
	background-color: #ffffff;
}

a {
	text-decoration: underline;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.column-header a {
	text-decoration: none;
}

p {
	margin: 0 0 15px 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px 0;
	padding: 0;
}

.tag-cloud {
	overflow: auto;
	margin-bottom: 44px !important; /* 44px + 6px tag margin bottom */
}

article section {
	margin-bottom: 50px;
}
article section:last-child {
	margin-bottom: 0;
}
* > :first-child {
	margin-top: 0;
	margin-left: 0;
}
* > :last-child {
	margin-bottom: 0;
	margin-right: 0;
}

button {
	background-color: #feb672;
	color: #ffffff;
	border: none;
	padding: 10px;
	font-size: 18px;
	transition: background-color 0.2s ease, transform 0.1s ease;
	cursor: pointer;
}

button:hover {
	background-color: #fdb658;
}

button:active {
	transform: translateY(1px);
}

th {
	background-color: #7c7c7c;
	color: #ffffff;
}

table {
	border-collapse: collapse;
	margin-bottom: 20px;
}
td, th {
	padding: 20px;
	margin: 0;
}
thead th {
	border: 1px solid #ffffff;
}
td {
	border: 1px solid #7c7c7c;
}
.training {
	background-color: #F5F5F5;
}
.training h2 {
	text-transform: uppercase;
	font-family: 'Archia-Light', 'Roboto-Light', "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-bottom: 20px;
}
.training table {
	text-align: center;
	width: 100%;
	margin-bottom: 50px;
}

.training td {
	background-color: #ffffff;
	border: 1px solid #F5F5F5;
}

.training td,
.training th {
	font-size: 12px;
	text-align: center;
}
@media screen and (min-width: 961px) {
	.training table td,
	.training table th {
		font-size: 16px;
		line-height: 18px;
		text-align: left;
	}
}

.event a,
.book a,
.training td a {
	color: #7c7c7c;
	text-decoration: underline;
}

.training .content {
	padding-top: 30px;
}
.training .content h2 {
	margin-top: 20px;
}



body.search thead th,
body.search td {
	border: none !important;
	border-image: none !important;
}
li {
	font-size: 18px;
	margin-bottom: 10px;
}

.full-width,
.content {
	margin: 0 auto;
	z-index: 2;
}

.content {
	width: 95%;
	max-width: 1141px;
}


.listing-block .content {
	width: auto;
	max-width: 100%;
}

.full-width {
	width: 99%;
}

.full-width p,
.content p {
	font-size: 18px;
	line-height: 24px;
}

.full-width article,
.content article {
	clear: both;
	margin: 50px 0 50px;
}

.content article.no-margin {
	margin: 0;
}

div.code,
.full-width article pre,
.content article pre {
	background-color: #f5f5f5;
	font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
	padding: 20px;
}

pre {
	margin: 10px 0 !important;
	padding: 10px !important;
}

code {
	margin: 0 !important;
	padding: 0 !important;
}

.quote,
.post,
.user-group,
.question,
.event,
.book {
	background-color: #ffffff;
	border: 1px solid #f5f5f5;
	box-shadow: 0 8px 6px -6px #ccc;
	transition: box-shadow 0.3s ease;
}

.quote:hover,
.post:hover,
.user-group:hover,
.question:hover,
.event:hover,
.book:hover {
	box-shadow: 0 10px 12px -6px #bbb;
}

.quote,
.post,
.user-group,
.question,
.event,
.book,
.transparent-post  {
	clear: both;
	overflow: auto;
	margin: 0;
	padding: 50px;
}

.two-columns .column:first-child .transparent-post {
	padding-left: 0;
}

.user-group,
.question,
.event,
.book {
	margin-bottom: 50px;
}

.column user-group:last-child,
.column .question:last-child,
.column .event:last-child {
	margin-bottom: 0;
}

.user-group ul { padding-left: 0; margin-left: 0; }
.user-group li { list-style-type: none; }

.user-group a { color: #7c7c7c;}

.event ul,
.event li,
.book ul,
.book li {
	padding: 0;
	margin: 0;
}

.event h3,
.book h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 25px;
}
.book {
	min-height: 230px;
}
.event {
	min-height: 420px;
}
.book img {
	border-left: 4px solid black;
}
.event img,
.book img {
	width: 100px;
	display: block;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

.event p,
.book p {
	clear: both;
}

.book .author {
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}

.event .dates,
.event .location {
	display: block;
	font-weight: bold;
	margin-top: 5px;
}

.main-header {
	padding-top: 17px;
	padding-bottom: 0;
	overflow: auto;
	background-color: #ffffff !important;
}

body.guide .co-list th,
body.guide .co-list td {
	border: none;
}

body.guide .main-header,
body.grails3-plugins .main-header,
body.gorm .main-header {
	background-color: #f5f5f5 !important;
}

#show-navigation-link {
	margin-top: 12px;
	margin-bottom: 20px;
	display: block;
}

.secondary-menu ul {
	margin: 0;
	padding: 0;
}
.main-menu {
	clear: right;
}

#top-menus {
	margin-top: 17px;
	display: none;
	background-color: gray;
	overflow: auto;
	padding: 10px;
}
#top-menus a {
	color: #ffffff;
}

.main-menu,
.secondary-menu,
.main-menu ul,
.secondary-menu ul {
	margin: 0;
	padding: 0;
}
.secondary-menu,
.main-menu {
	float: right;
	width: 50%;
	clear: none;
}

@media screen and (min-width: 961px) {
	.secondary-menu,
	.main-menu {
		float: none;
		width: auto;
		clear: both;
	}
}

.main-menu li,
.secondary-menu li,
.secondary-menu li a,
.main-menu li a {
	text-align: left;
}

.main-menu li,
.secondary-menu li {
	margin: 0;
	padding: 0;
	font-size: 16px;
	text-transform: uppercase;
	float: left;
}

.secondary-menu li,
.main-menu li {
	width: 100%;
}

.secondary-menu li,
.main-menu li {
	list-style-type: none;
	padding: 0;
}

.secondary-menu li a,
.main-menu li a {
	display: block;
	padding: 20px 5px;
	text-decoration: none;
	letter-spacing: 0.5px;
	color: #7c7c7c;
}
.secondary-menu li.active a,
.main-menu li.active a {
	text-decoration: underline;
}

.secondary-menu li a {
	text-transform: uppercase;
}
.header-bar {
	clear: both;
	text-transform: uppercase;
	padding-bottom: 42.5px;
}

.header-bar a {
	color: #ffffff;
}

.header-bar h1 {
	color: #ffffff;
	float: left;
	font-size: 24px;
	font-family: 'Roboto-Medium', "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.header-bar h1 {
	margin-top: 42.5px;
}

.hidden {
	display: none;
}

.training th,
.call-to-action h2 {
	background-color: gray;/*#feb672;*/
}

.get-started-row .call-to-action h2 {
    background-color: #255aa8;
}

.header-bar,
#features {
	background-color: #255AA8;
}

a,
a:hover,
.partners-nav li a {
	color: #255AA8;
}

#features {
	padding-top: 30px;
	text-align: center;
}
@media screen and (min-width: 961px) {
	#features {
		text-align: left;
	}
}
#features h1,
#features h2,
#features h3,
#features p {
	color: #ffffff;
}
#features h3 {
	margin-top: 10px;
	text-transform: uppercase;
	font-family: 'Archia-Light', 'Roboto-Light', "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}
.chalice-logo {
	display: none;
}
.download-latest-version {
	margin-top: 15px !important;
}

.older-versions {
	overflow: auto;
	margin-bottom: 50px;
}

.older-versions select {
	width: 100%;
	font-size: 20px;
}

.older-versions h4 {
	background-color: #ffffff;
	font-size: 18px;
	font-family: 'Roboto-Medium', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	padding: 10px;
	margin-top: 34px;
}

article.quote,
.guide-group {
	border-top: 2px solid #feb672;
	background-color: #ffffff;
	padding-top: 12px;
	margin: 0;
	padding-bottom: 12px;
	overflow: auto;
	margin-bottom: 50px;
}

.two-columns .column article.quote:first-child {
	margin-top: 50px;
}

.two-columns .column .guide-group:first-child {
	margin-top: 30px;
}

.guide-group p {
	margin: 0;
	padding: 10px 0;
	background-color: #F5F5F5;
}

.guide-group-header {
	padding-left: 18px;
	height: 118px;
	overflow: hidden;
	padding-top: 10px;
}

.guide-group-header a {
	color: #7c7c7c;
}

.guide-group-header img {
	float: left;
	width: 93px;
	height: 93px;
	margin-right: 18px;
}

.guide-group h2 {
	height: 144px;
	text-transform: uppercase;
	font-size: 18px;
	padding-top: 40px;
}
.guide-group ul {
	padding: 0;
	margin: 0;
	background-color: #ffffff;
}

div.guide-group-body, div.guide-group-body p {
	padding: 10px;
	margin: 0;
	background-color: #ffffff;
}

.guide-group li {
	overflow: auto;
	list-style-type: none;
	min-height: 60px;
	font-size: 18px;
	border-top: 4px solid #F5F5F5;
	padding: 38px 30px 0;
}

.guide-group li.legend {
	padding-top: 0;
	border: 0;
}


.guide-group li a {
	display: block;
	text-decoration: underline;
	letter-spacing: 1px;
}
.guide-group li span.title {
	display: block;
	border: 1px solid #ffffff;
}
.guide-group li span.title,
.guide-group li a.guide {
	background-image: url(../images/caret.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 20px;
}
.guide-group li a.quick-cast {
	background-image: url(../images/video.png);
}

.guide-group li a {
	font-family: Roboto-Light, 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #7c7c7c;
}
.guide-group li a.grails-version {
	float: left;
	padding-right: 20px;
}

.guide-group li.legend a {
	background-image: none;
	display: inline;
	padding: 0;
}
.sponsored-by {
	margin-top: 30px;
}
.sponsored-by h4 {
	text-transform: uppercase;
	font-size: 14px;
	margin: 0 0 35px 10px;
}

.sponsored-by img {
	width: 100%;
}

.sponsored-by, .search, .latest-guides {
	margin-bottom: 24px;
}

div.search {
	margin-top: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.search input {
	height: 45px;
	width: 94%;
	padding: 5px 10px;
}

.search span {
	margin-left: 55px;
	margin-bottom: 40px;
	display: block;
}

.golden-ratio,
.two-columns {
	overflow: auto;
}
.column {
	display: block;
	overflow: hidden;
}

.column-header {
	min-height: 35px;
	padding-top: 12px;
	padding-bottom: 6px;
	text-transform: uppercase;
	padding-left: 28px;
	font-size: 18px;
	line-height: 28px;
	box-shadow: 0 8px 6px -6px #ccc;
	margin-top: 50px;
	margin-bottom: 50px;
}
.transparent-post .column-header,
.question .column-header,
.post .column-header {
	margin-top: 0;
	margin-bottom: 20px;
}

body.documentation .column-header,
body.guides .column-header {
	background-color: #255AA8;
	color: #ffffff;
}

.latest-guides ul {
	margin-bottom: 40px;
	padding-left: 0;
}

body.grails3-plugins .latest-guides ul {
	padding: 0 0 0 20px;
}

.latest-guides li {
	list-style-type: none;
	margin-bottom: 30px;
}

.latest-guides li b {
	text-transform: uppercase;
	font-weight: normal;
}

li.plugin h3,
.latest-guides li b,
.latest-guides li a,
.latest-guides li span {
	display: block;
	margin-bottom: 5px;
}
.latest-guides li a,
.latest-guides li span {
	font-size: 14px;
}
.tags-by-topic ul {
	margin: 40px 0 0 0;
	padding: 0;
	overflow: auto;
}
body.grails3-plugins .tags-by-topic ul {
	padding-left: 20px;
}
.tags-by-topic li {
	list-style-type: none;
	background-color: #F0C45A;
	float: left;
	margin-right: 6px;
	margin-bottom: 6px;
	height: 20px;
	font-size: 12px;
	line-height: 14px;
	vertical-align: middle;
	padding: 7px 10px 3px;
}
.tags-by-topic li a {
	text-decoration: none;
	color: #ffffff;
	text-transform: uppercase;
}

.tags-by-topic li.tag1{ font-size: 12px; background-color: #dac589; }
.tags-by-topic li.tag2{ font-size: 12px; background-color: #f0c45b; }
.tags-by-topic li.tag3{ font-size: 12px; background-color: #f0c45b;}
.tags-by-topic li.tag4{ font-size: 12px; background-color: #f2c458;}
.tags-by-topic li.tag5{ font-size: 12px; background-color: #f2c458;}
.tags-by-topic li.tag6{ font-size: 16px; background-color: #f2c458;}
.tags-by-topic li.tag7{ font-size: 16px; background-color: #feb672;}
.tags-by-topic li.tag8{ font-size: 16px; background-color: #feb672;}
.tags-by-topic li.tag9{ font-size: 16px; background-color: #feb672;}
.tags-by-topic li.tag10{ font-size: 16px; background-color: #feb672;}
.tags-by-topic li.tag11{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag12{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag13{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag14{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag15{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag16{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag17{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag18{ font-size: 20px; background-color: #feb672;}
.tags-by-topic li.tag19{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag20{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag21{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag22{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag23{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag24{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag25{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag26{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag27{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag28{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag29{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag30{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag31{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag32{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag33{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag34{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag35{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag36{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag37{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag38{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag39{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag40{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag41{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag42{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag43{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag44{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag45{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag46{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag47{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag48{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag49{ font-size: 24px; background-color: #feb672;}
.tags-by-topic li.tag50{ font-size: 24px; background-color: #feb672;}

footer {
	clear: both;
	background-color: #ffffff;
	margin: 0;
	padding: 50px 0 0;
}

footer li {
	font-size: 15px !important;
	line-height: 15px;
}

footer .content {
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 60px;
}

.apache-grails {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.apache-grails p {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	margin: 10px 0;
	max-width: 480px;
}

.apache-grails img {
	margin: 20px 0;
	max-width: 300px;
	height: auto;
}

.apache-grails span {
	text-align: center;
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 15px;
}

.social-media-nav {
	text-align: center;
	margin: 30px 0;
}

.social-media-nav ul {
	display: flex;
	justify-content: center;
	padding-left: 0;
	margin: 0;
	flex-wrap: wrap;
	gap: 10px;
}

.social-media-nav li {
	list-style-type: none;
	width: 45px;
	height: 45px;
	margin: 0;
}

.social-media-nav li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: transform 0.2s;
}

.social-media-nav li a:hover {
	transform: scale(1.1);
}

.social-media-nav li img {
	width: 45px;
	height: 45px;
}

.partners-nav ul {
	padding-left: 1em;
}
.partners-nav li {
	list-style-type: none;
	color: #7C7C7C;
	margin-bottom: 20px;
}
.partners-nav li a {
	text-decoration: none;
}

.footer-bottom {
	text-align: center;
	padding: 20px;
	background-color: #f5f5f5;
	border-top: 1px solid #eee;
}

.footer-bottom p {
	margin: 5px 0;
	font-size: 14px;
	color: #666;
}

.footer-bottom a {
	color: #5a7a9a;
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

.grails-logo {
	text-align: center;
	margin: 0 auto;
	display: block;
	max-width: 8rem;
}

body.home .grails-logo {
	display: block;
}

.home-bar {
	padding-top: 50px;
	background-color: #f8f7f7 !important;
}
.home-bar h1 {
	text-align: center;
	width: 52.58545136%; /* 680px / 1141px; */
	margin: 0 auto;
	font-family: 'Archia-Thin', 'Roboto-Light', "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 20px;
}
article.quote h2 {
	font-family: 'Roboto-Light', "Open Sans","Helvetica Neue", Helvetica, Arial,sans-serif;
	font-weight: normal;
	font-size: 28px;
	padding: 46px 40px;
}

.call-to-action h2 {
	padding: 10px;
	width: 90%;
	max-width: 270px;
	min-height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 1px 4px 4px #ccc;
	margin: 0 auto;
	font-family: 'Archia-Light', 'Roboto-Light', "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.call-to-action {
	text-align: center;
	overflow: auto;
	padding-top: 30px;
	padding-bottom: 50px;
}


.call-to-action.position-reset {
	padding-top: 0;
	padding-bottom: 0;
}


.call-to-action h2 a {
	font-size: 16px;
}

.call-to-action h2 a {
	color: #ffffff;
	text-decoration: none;
	width: 100%;
	display: block;
	font-weight: normal;
	letter-spacing: 1px;
}
.call-to-action .all-versions {
	margin-top: 15px;
	display: block;
	color: #7c7c7c;
}
.call-to-action b {
	margin-bottom: 10px;
	font-size: 14px;
}
.call-to-action h2 span.version,
.call-to-action b {
	display: block;
}

.get-started-row {
	width: 100%;
	position: relative;
	display: block;
	justify-content: center;
}

.testimonials {
	background-color: gray;
	padding: 0;
	text-align: center;
}
.testimonials h2 {
	text-transform: uppercase;
	color: #ffffff;
	font-family: 'Archia-Light', 'Roboto-Light', "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	font-size: 24px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.testimonials img {
	width: 100%;
	margin-bottom: 50px;
	padding: 0;
}

.three-columns .column {
	margin-top: 20px;
	margin-bottom: 0;
}

#features .column {
	margin-bottom: 50px;
	overflow: hidden;
}

@media screen and (min-width: 961px) {

	#top-menus a {
		color: rgb(124, 124, 124);
	}

	.call-to-action h2 a {
		font-size: 20px;
	}
	.get-started-row {
		display: flex;
	}

	.main-header {
		padding-bottom: 50px;
	}

	#show-navigation-link {
		display: none;
	}

	.home-bar h1 {
		font-size: 27px;
	}

	.grails-logo {
		float: left;
		display: block;
	}
	#top-menus {
		margin-top: 0;
		display: block;
		background-color: #ffffff;
	}
	body.guide #top-menus,
	body.grails3-plugins #top-menus,
	body.gorm #top-menus {
		background-color: #F5F5F5;
	}

	.main-menu li,
	.secondary-menu li,
	.secondary-menu li a,
	.main-menu li a {
		text-align: center;
	}
	.main-menu li,
	.secondary-menu li {
		text-align: right;
		margin-left: 25px;
	}
	.main-menu li { font-size: 16px; }
	.secondary-menu li { font-size: 10px; }

	.main-menu li,
	.secondary-menu li {
		padding-bottom: 11px;
		border-bottom: 3px solid #FFFFFF;
	}
	body.guide .main-menu li,
	body.guide .secondary-menu li,
	body.grails3-plugins .main-menu li,
	body.grails3-plugins .secondary-menu li,
	body.gorm .main-menu li,
	body.gorm .secondary-menu li {
		border-bottom: 3px solid #f5f5f5;
	}

	body.home .main-menu li,
	body.home .secondary-menu li {
		border-bottom: 3px solid #FFFFFF;
	}

	body.guide .main-menu li.active,
	body.guide .secondary-menu li.active,
	body.grails3-plugins .main-menu li.active,
	body.grails3-plugins .secondary-menu li.active,
	.main-menu li.active,
	.secondary-menu li.active {
		border-bottom: 3px solid #feb672;
	}
	.secondary-menu li.active a,
	.main-menu li.active a {
		text-decoration: none;
	}
	.secondary-menu,
	.main-menu {
		float: right;
	}
	.secondary-menu li,
	.main-menu li {
		float: left;
		width: auto;
	}
	.secondary-menu li a,
	.main-menu li a {
		padding: 0;
	}
	.secondary-menu {
		margin-bottom: 35px;
	}

	.main-menu li a {
		text-transform: none;
	}

	.home-bar {
		background-image: url(../images/banner.png);
		background-repeat: no-repeat;
		background-position: center top;
	}

	.chalices-bg {
		background-image: url(../images/chalices.svg);
		background-repeat: no-repeat;
		background-position: center center;
	}
	.chalices-bg a,
	.chalices-bg a:visited,
	.chalices-bg a:hover {
		color: #FFFFFF;
		text-decoration: none;

	}
	.chalices-bg a:hover {
		text-decoration: underline;
	}
	.header-bar {
		height: 200px;
		padding-top: 0;
	}
	.header-bar h1 {
		margin-top: 110px;
	}

	.two-columns .column {
		float: right;
		width: 47.32690622%; /* 547 / 1141px;*/
	}
	.golden-ratio .column {
		float: right;
		width: 38.2%;
	}
	.golden-ratio .column:first-child {
		float: right;
		width: 61.8%;
	}

	.five-columns,
	.four-columns,
	.three-columns {
		clear: both;
		overflow: auto;
		margin: 0;
		padding: 0;
	}

	.five-columns .column,
	.four-columns .column,
	.three-columns .column {
		float: left;
		overflow: auto;
	}

	.five-columns .column {
		width: 18%;
	}
	.four-columns .column {
		width: 23%;
	}
	.three-columns .column {
		width: 31%;
	}

	.five-columns .column,
	.four-columns .column {
		margin-left: 1%;
		margin-right: 1%;
	}

	.three-columns .column:nth-child(3n+2) {
		margin-left: 3%;
		margin-right: 3%;
	}
	.three-columns .column:nth-child(3n+1) {
		clear: left;
	}
	.two-columns .column.odd,
	.two-columns .column:first-child {
		margin-left: 4.382120947%; /* 30px / 1141px; */
	}

	footer {
		overflow: auto;
	}
	footer .content {
		display: flex;
		justify-content: center;
	}
	.partners-nav li {
		text-align: right;
	}
	.event img {
		width: 200px;
	}
	.book img {
		width: 120px;
	}

	.call-to-actions {
		width: 56.09114812%;/* 640px / 1141px; */
		margin: 0 auto;
		overflow: auto;
	}

	.call-to-action {
		width: 42.1875%; /* 270px / 640px */
		float: left;
		padding: 3.90625% 3.90625% 50px 3.90625%; /* 25px / 640px */
		overflow: auto;
	}
}

/**************/

.contribute-btn {
	float: right;
}
.contribute-btn button {
	background-color: #feb672;
	color: #ffffff;
	border: none !important;
	box-shadow: 1px 2px 2px #ccc;
}
article.guide {
	margin-top: 0;
	padding: 10px;
	border: 1px solid rgb(211, 211, 211);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-collapse: collapse;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: #ffffff !important;
}
article.guide .mautic-form-wrapper {
	margin: 0;
}
@media screen and (min-width: 961px) {
	article.guide {
		padding: 20px;
	}
}

@media screen and (min-width: 961px) {
	article.guide aside {
		float: right;
		width: 300px;
		margin-left: 25px;
		padding-left: 25px;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
}

article.guide aside button.btn-large {
	width: 100%;
	height: 60px;
	margin: 20px 0;
	box-shadow: 1px 2px 2px #ccc;
	border: none;
}

article.guide aside .github-links {
	margin: 5px 0;
	overflow: auto;
}

ul.github-links {
	padding-left: 0;
}

article.guide aside .github-links li {
	width: 46%;
	margin-top: 0.5%;
	margin-bottom: 0.5%;
	display: block;
	list-style-type: none;
	float: left;
}
article.guide aside .github-links li:first-child {
	margin-right: 4%;
	margin-left: 0;
}
article.guide aside .github-links li:last-child {
	margin-left: 4%;
	margin-right: 0;
}
article.guide aside .github-links li button {
	width: 100%;
}

#table-of-content a:hover strong,
#table-of-content a strong {
	color: #000000;
}

.toc-item a {
	line-height: 26px;
}

article.guide th {
	color: #ffffff;
}
article.guide #oci-training td,
article.guide td.table-block {
	background-color: rgb(245, 245, 245);
}
article.guide td a {
	color: rgb(124, 124, 124);
}

article.guide a {
	color: #7c7c7c;
}

article.guide h1,
article.guide h2,
article.guide h3,
article.guide h4,
article.guide h5,
article.guide h6,
article.guide #toc-title,
article.guide .sidebar-block>.content>.title {
	color: #7c7c7c;
}

article.guide h1,
article.guide h2,
article.guide h3,
article.guide h4,
article.guide h5,
article.guide h6 {
	margin-bottom: 20px;
	margin-top: 10px;
}

article.guide p {
	margin-bottom: 20px;
}

article.guide header h1 {
	color: #feb672;
	text-shadow: #7c7c7c;
	font-weight: bold;
}

article.guide .note td.icon,
article.guide .warning td.icon,
article.guide .tip td.icon {
	border: none;
}

article.guide .note td.content,
article.guide .warning td.content,
article.guide .tip td.content {
	border: none;

}
#table-of-content a strong,
#table-of-content a {
	color: #7c7c7c;
}


body.grails3-plugins .third-menu ul {
	margin: 0;
	padding: 0;
}
body.grails3-plugins .third-menu li {
	list-style-type: none;
	border-bottom: 1px solid #eee;
	border-left: 4px solid #ffffff !important;
}

body.grails3-plugins .third-menu  li.active {
	border-left: 4px solid #feb672 !important;
}

body.grails3-plugins .third-menu li a {
	color: #000000;
	text-decoration: none;
	padding: 20px;
	display: block;
}
body.grails3-plugins article {
	margin-top: 0;
	padding-top: 0;
	background-color: #ffffff;
}

.two-columns .column .plugins:first-child {
	margin-top: 20px;
}
.plugins-list {
	padding: 30px 0 30px 30px;
	margin: 0;
	background-color: #ffffff;
}

.plugins-list li {
	list-style-type: none;
	padding: 10px 30px 10px 0;
	border-bottom: 2px solid #eee;
	margin-bottom: 1px;
	overflow: auto;
}

.plugins-list li .icon-links {
	float: right;
}
.plugins-list li .icon-links li {
	list-style: none;
	display: inline;
	border: none;
	margin: 5px;
	padding: 0;
}

body.grails3-plugins .labels {
	overflow: auto;
	margin: 20px 0;
	padding: 0;
	clear: both;
}
body.grails3-plugins li.label {
	display: block;
	float: left;
	list-style-type: none;
	margin: 5px;
	padding: 0;
}
body.grails3-plugins li.label a {
	border: 1px solid rgb(211, 211, 211);
	text-decoration: none;
	padding: 10px;
	background-color: #F5F5F5;
	color: #7c7c7c;
	display: block;
}
.plugin-metadata {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgb(211, 211, 211);
	border-bottom: 1px solid rgb(211, 211, 211);
	overflow: auto;
}
.plugin-metadata ul {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
.plugin-metadata li {
	list-style-type: none;
	display: inline;
	padding: 10px;
}

.plugin-metadata li a {
	font-size: 18px;
	text-decoration: none;
}

.align-left {
	float: left;
}
.align-right {
	float: right;
}

.mobile {
	display: block;
}
.desktop {
	display: none;
}
@media screen and (min-width: 961px) {
	.mobile {
		display: none;
	}
	.desktop {
		display: block;
	}
}

.search-submit,
.search-input {
	padding: 12px;
	font-size: 18px;
	line-height: 22px;
	height: auto;
}

.search-input {
	width: 65%;
	border: 1px solid rgb(211, 211, 211);
}
.search-submit {
	width: 25%;
	background-color: #feb672;
	color: #ffffff;
	border: 1px solid #feb672;
	cursor: pointer;
}

.github-star {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-collapse: collapse;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	display: block;
	/* Fallback (could use .jpg/.png alternatively) */
	background-color: #F4F4F4;
	/* SVG fallback for IE 9 (could be data URI, or could use filter) */
	background-image: url('githubstar.png');
	/* Safari 4, Chrome 1-9, iOS 3.2-4.3, Android 2.1-3.0 */
	background-image: -webkit-gradient(linear, left top, right top, from(#F4F4F4), to(#F9F9F9));
	/* Safari 5.1, iOS 5.0-6.1, Chrome 10-25, Android 4.0-4.3 */
	background-image: -webkit-linear-gradient(left, #F4F4F4, #F9F9F9);
	/* Firefox 3.6 - 15 */
	background-image: -moz-linear-gradient(left, #F4F4F4, #F9F9F9);
	/* Opera 11.1 - 12 */
	background-image: -o-linear-gradient(left, #F4F4F4, #F9F9F9);
	/* Opera 15+, Chrome 25+, IE 10+, Firefox 16+, Safari 6.1+, iOS 7+, Android 4.4+ */
	background-image: linear-gradient(to right, #F4F4F4, #F9F9F9);
	text-align: right;
	margin-top: 20px;
	border: 3px solid #DFDFDF;
}

.github-star a {
	color: #000000;
	display: block;
}
.github-star,
.github-star a {
	width: 120px;
	height: 44px;

}

.github-star span.star,
.github-star span.count {
	text-align: center;
	display: block;
	float: left;
	padding: 10px 4px 8px;
	height: 28px;
}

.github-star span.count {
	width: 35px;
	float: right;
	border-left: 3px solid #DFDFDF;
	background-color: #ffffff;
	margin-top: 1px;
	margin-right: 1px;
	height: 26px;
}
.github-star span.star {
	width: 60px;
	padding-top: 12px;
}

.padded {
	padding: 20px;
	overflow: auto;
}
@media screen and (min-width: 961px) {
	.padded {
		padding: 50px;
	}
}
body.post .large-golden-ratio {
	max-width: 100%;
}
@media screen and (min-width: 961px) {
	.large-golden-ratio {
		width: 56.45721134%;
		margin-right: 5.34618756%;
	}
	.small-golden-ratio {
		width: 38.1966011%;
	}
}
.blog-post h1 {
	font-size: 2em !important;
	line-height: 1.5em !important;
	margin-bottom: 0;
	margin-top: 0;
	font-weight: bold;
	font-family: 'Roboto-Medium', "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
	text-transform: uppercase;
}
.blog-post .date,
.blog-post .author {
	text-transform: uppercase;
	font-family: 'Roboto-Medium', "Open Sans","Helvetica Neue",Helvetica,Arial, sans-serif;
}
.light h2, .blog-post  h2, .blog-post h2 {
	font-family: 'Roboto-Medium', "Open Sans","Helvetica Neue",Helvetica,Arial, sans-serif;
	text-transform: uppercase;
}
.blog-post article {
	margin: 15px 0;
}
.blog-post img {
	width: 100%;
}
@media screen and (min-width: 961px) {
	.blog-card h3 {
		padding-top: 12.843%;
		padding-bottom: 12.843%;
	}
}
.blog-card h3, .blog-card h2, .blog-card .tags-by-topic {
	padding-left: 5.137%;
	padding-right: 5.137%;
}
.blog-card h3 {
	font-weight: normal;
	font-family: 'Roboto-Medium', "Open Sans","Helvetica Neue",Helvetica,Arial, sans-serif;
}

.light {
	background-color: #FFFFFF;
	overflow: auto;
	color: #231F20;
}

.related-posts .blog-card:first-of-type {
	margin-top: 1rem !important;
}
@media screen and (min-width: 961px) {
	.blog-card {
		width: 88.77245509%;
		height: 0;
		margin-left: 11.22754491%;
		padding-bottom: 88.77245509%;
		margin-top: 5.613772455%;
		margin-bottom: 5.613772455%;
	}
	.light .blog-card {
		background-color: #255AA8;
		color: #FFFFFF;
	}
	.light .blog-card a:visited,
	.light .blog-card a:hover,
	.light .blog-card a {
		color: #FFFFFF;
		text-decoration: none;
	}
	.light .blog-card a:hover {
		text-decoration: underline;
	}
}
@media screen and (max-width: 960px) {
	.blog-card {
		background-image: none !important;
		margin-bottom: 50px;
	}
}
@media screen and (min-width: 961px) {
	.container .small-golden-ratio .blog-card {
		margin-left: 0;
		margin-right: 11.22754491%;
		margin-top: 9.585%;
		margin-bottom: 0;
	}
}
.padded-t h2 {
	display: none;
}
.padded-t .blog-card h2 {
	display: block;
}

@media screen and (min-width: 961px) {
	.padded-t  h2 {
		display: block;
	}
	.padded-t {
		padding-top: 50px;
		overflow: auto;
	}
	.blog-card {
		background-size: cover;
	}
	.container .small-golden-ratio .blog-card:last-child {
		margin-bottom: 9.585%;
	}
}

blockquote {
	border-left: 3px solid #333333;
	padding-left: 20px;
}

.space-above {
	margin-top: 10%;
}

body.community-guidelines ul > li {
	margin-left: 30px;
}

h3.subsection-header {
	text-transform: uppercase;
	color: #feb672;
}

table th {
	color: #FFFFFF;
	background-color: #808080;
	text-align: left;
}

.no-border {
	border: none;
}

li.plugin h3 {
	font-weight: bold;
	color: #000000;
}

li.plugin {
	list-style-type: none;
	border-bottom: 2px solid #eee;
	overflow: auto;
	background-color: #FFFF;
	padding: 1px 10px 1px 15px;
}

li.plugin .icon-links {
	float: right;
}
li.plugin .icon-links li {
	list-style: none;
	display: inline;
	border: none;
	margin: 5px;
	padding: 0;
}

li.plugin .labels {
	overflow: auto;
	margin: 10px 0px;
	padding: 0;
	clear: both;
}
ul.labels li.label {
	display: block;
	float: left;
	list-style-type: none;
	margin: 5px 5px 5px 0;
	padding: 0;
}
ul.labels li.label a {
	border: 1px solid rgb(211, 211, 211);
	text-decoration: none;
	padding: 5px;
	background-color: #FFFFFF;
	color: #7c7c7c;
	display: block;
	background-color: white-smoke;
}

.breadcrumbs {
	padding: .5rem 0;
	font-size: .6875rem;
	text-transform: uppercase;
}

li.plugin.p {
	font-size: 16px;
	line-height: 20px;
}

.version-selector select {
	border-color: #ddd;
	border-radius: 2px;
}