@charset "utf-8";
@import url("fontawesome-free/css/fontawesome-all.min.css");
@import url("framework.css");

/* Rows
--------------------------------------------------------------------------------------------------------------- */
.row {
	display: flex;
	align-items: center;


}

.row1 {
	border-bottom: 2px solid;
}

.column {
	display: flex;
	flex-direction: column;
}

/* Grids */
.at-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 50px 50px;
}





/* Header
--------------------------------------------------------------------------------------------------------------- */
.fixed {
	position: fixed;
	z-index: 9999;
}

#header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

#header .nav-bar {
	display: none;
	color: #000;
	font-size: 45px;
	cursor: pointer;
	margin-left: auto;
}


#header #logo {
	margin: 3px 50px 0px 0;
	height: 81px;

}

#header #logo h1 {
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

#header a #logo img {
	height: 100%;

}

/* Page Intro
--------------------------------------------------------------------------------------------------------------- */
.banner-image {
	height: 100vh;
	width: 100%;
}

#pageintro {
	display: flex;
	height: 100vh;
	justify-content: flex-start;
	align-items: center;

}

#events {
	padding: 50px 0px;
}


#pageintro article {
	display: inline-block;
	max-width: 75%;
	color: #fff;
	background-color: rgba(0, 0, 0, .2);
	padding: 10px;

}

#pageintro article h3 {
	text-transform: uppercase;
}


#pageintro .heading {
	margin-bottom: 20px;
	font-size: 4rem;
}

#pageintro p:first-of-type {
	margin: 0 0 20px 0;
	text-transform: uppercase;
	font-size: 1.6rem;
	letter-spacing: 5px;
}

#pageintro footer {
	margin-top: 50px;
}




/* Content Area
--------------------------------------------------------------------------------------------------------------- */
.container {
	padding: 80px 0;
}

/* About us section */


#about-us {
	padding: 50px 0px;
}

#about-us .about-content .about-description p {
	margin-top: 0px;
	max-height: 40vh;
	overflow: hidden;

}



/* Content */


.sectiontitle {
	display: block;
	max-width: 55%;
	margin: 0 auto 80px;
	text-align: center;
}

.sectiontitle * {
	margin: 0;
}

.content {
	display: grid;
	grid-gap: 40px;
}

.content .event-section {
	display: grid;
	grid-gap: 40px;
}

.content .event-section .event-list {
	padding: 24px;
	box-shadow: 0px 8px 16px #00000029;
	border: 1px solid #DFDFDF;
	border-radius: 18px;
	opacity: 1;
}

.content .event-section .event-list:hover {

	box-shadow: 0px 16px 16px #00000029;

}

/* Prices */
.prices li {
	margin-bottom: 50px;
}

/* Default 30px, but must compensate for the 20px negative footer margin */
.prices li:nth-last-child(-n+3) {
	margin-bottom: 0;
}

/* Removes bottom margin from the last three items - margin is restored in the media queries when items stack */
.prices li:nth-child(3n+1) {
	margin-left: 0;
	clear: left;
}

/* Removes the need to add class="first" */
.prices li article {
	display: block;
	position: relative;
	padding: 40px 25px;
	border: 1px solid;
	text-align: center;
}

/* Uses the one_third width in pixels */
.prices li article * {
	margin: 0 0 30px 0;
}

.prices li article i {
	display: inline-block;
	font-size: 80px;
}

.prices li article .heading {
	text-transform: uppercase;
}

.prices li article p:last-of-type {
	display: inline-block;
	position: relative;
	padding-left: 18px;
	font-weight: 400;
}

.prices li article p:last-of-type * {
	margin: 0;
	line-height: 1;
}

.prices li article p:last-of-type sup {
	position: absolute;
	top: 3px;
	left: 0;
	font-size: 1.2rem;
}

.prices li article p:last-of-type strong {
	margin-right: 5px;
	font-size: 50px;
}

.prices li article p:last-of-type em {
	font-style: normal;
}

.prices li article footer {
	margin: 0 0 -60px 0;
	padding: 0;
}

.prices li article footer a {
	margin-bottom: 0;
}

/* Testimonial */

.testimonial article {
	max-width: 65%;
	margin: 0 auto;
	text-align: center;
}

.testimonial article * {
	margin: 0;
	padding: 0;
}

.testimonial article img {
	margin-bottom: 20px;
	border-radius: 50%;
}

.testimonial article blockquote {
	margin-bottom: 20px;
}

.testimonial article em {
	display: block;
	margin-top: -5px;
	font-size: .8rem;
	font-style: normal;
}

/* Comments */
#comments ul {
	margin: 0 0 40px 0;
	padding: 0;
	list-style: none;
}

#comments li {
	margin: 0 0 10px 0;
	padding: 15px;
}

#comments .avatar {
	float: right;
	margin: 0 0 10px 10px;
	padding: 3px;
	border: 1px solid;
}

#comments address {
	font-weight: bold;
}

#comments time {
	font-size: smaller;
}

#comments .comcont {
	display: block;
	margin: 0;
	padding: 0;
}

#comments .comcont p {
	margin: 10px 5px 10px 0;
	padding: 0;
}

#comments form {
	display: block;
	width: 100%;
}

#comments input,
#comments textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid;
}

#comments textarea {
	overflow: auto;
}

#comments div {
	margin-bottom: 15px;
}

#comments input[type="submit"],
#comments input[type="reset"] {
	display: inline-block;
	width: auto;
	min-width: 150px;
	margin: 0;
	padding: 8px 5px;
	cursor: pointer;
}



/* Click to Action
--------------------------------------------------------------------------------------------------------------- */
.cta {
	padding: 50px 0;
}

.cta> :first-child {
	margin-top: 10px;
}

.cta> :last-child {
	margin-bottom: 0;
}

/* Used when elements stack in smaller viewports */

.cta footer {
	text-align: center;
}

.cta footer a {
	display: block;
}


/* Introblocks
--------------------------------------------------------------------------------------------------------------- */


#introblocks>li:last-child {
	margin-bottom: 0;
}

/* Used when elements stack in small viewports */
#introblocks article {
	display: block;
	padding: 40px 20px;
	border: 1px solid;
	text-align: center;
}

#introblocks article * {
	margin: 0 0 25px 0;
}

#introblocks article .btn {
	margin: 10px 0 0 0;
}

#introblocks article> :last-child {
	margin-bottom: 0;
}

#introblocks article i {
	display: inline-block;
	font-size: 66px;
}


/* Latest
--------------------------------------------------------------------------------------------------------------- */


#gallery ul {
	margin-bottom: 80px;
}

#gallery ul li {
	margin-bottom: 30px;
}

#gallery ul li:nth-last-child(-n+3) {
	margin-bottom: 20px;
}

/* Removes bottom margin from the last three items - margin is restored in the media queries when items stack */
#gallery ul li:nth-child(3n+1) {
	margin-left: 0;
	clear: left;
}

/* Removes the need to add class="first" */
#gallery ul li figure {
	position: relative;
	max-width: 100%;
}

#gallery ul li figure img {
	object-fit: cover;
	width: 100%;
	height: 250px;
}

/* Uses the one_third width in pixels */
#gallery ul li figure figcaption {
	display: block;
	text-align: center;
	padding: 15px 0 0 0;
	font-weight: 700;
	text-transform: uppercase;
}

#gallery ul li figure figcaption * {
	margin: 0;
}

/* Contact Section */

.contact-section iframe {
	width: 100%;
	height: 450px;
}


/* Footer
--------------------------------------------------------------------------------------------------------------- */
#footer {
	padding: 10px 0;
	display: flex;
	justify-content: flex-start;
}

#footer .heading {
	margin-bottom: 50px;
	font-size: 1.2rem;
}

#footer .linklist li {
	display: block;
	margin-bottom: 15px;
	padding: 0 0 15px 0;
	border-bottom: 1px solid;
}

#footer .linklist li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

#footer .linklist li::before,
#footer .linklist li::after {
	display: table;
	content: "";
}

#footer .linklist li,
#footer .linklist li::after {
	clear: both;
}

#footer input,
#footer button {
	border: 1px solid;
}

#footer input {
	display: block;
	width: 100%;
	padding: 8px;
}

#footer button {
	padding: 8px 18px 10px;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
}

/* Copyright
--------------------------------------------------------------------------------------------------------------- */
#copyright {
	padding: 20px 0;
}

#copyright * {
	margin: 0;
	padding: 0;
}

#copyright a:hover {
	color: #fff;
}

/* Transition Fade
This gives a smooth transition to "ALL" elements used in the layout - other than the navigation form used in mobile devices
If you don't want it to fade all elements, you have to list the ones you want to be faded individually
Delete it completely to stop fading
--------------------------------------------------------------------------------------------------------------- */
*,
*::before,
*::after {
	transition: all .3s ease-in-out;
}

#mainav form * {
	transition: none !important;
}


/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */


/* Navigation
--------------------------------------------------------------------------------------------------------------- */
nav ul,
nav ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

#mainav,
#breadcrumb,
.sidebar nav {
	line-height: normal;
}

#mainav .drop::after,
#mainav li li .drop::after,
#breadcrumb li a::after,
.sidebar nav a::after {
	position: absolute;
	font-family: "Font Awesome\ 5 Free";
	font-weight: 900;
	font-size: 10px;
	line-height: 10px;
}

/* Top Navigation */
#mainav {
	position: relative;
	margin-bottom: -2px;
	z-index: 999;
	margin-left: auto;
}

#mainav ul {
	text-transform: uppercase;
}

#mainav ul ul {
	position: absolute;
	width: 115px;
	text-transform: none;
	z-index: 1;
}

#mainav ul ul ul {
	left: 180px;
	top: 0;
}

#mainav li {
	display: block;
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
}

#mainav li:last-child {
	margin-right: 0;
}

#mainav li li {
	width: 100%;
	margin: 0;
}

#mainav li a {
	display: block;
	padding: 10px 15px;
	border-bottom: 2px solid;
}

#mainav li li a {
	border-width: 0 0 1px 0;
}

#mainav .drop {
	padding-left: 20px;
}

#mainav li li a,
#mainav li li .drop {
	display: block;
	margin: 0;
	padding: 10px 15px;
}

#mainav .drop::after,
#mainav li li .drop::after {
	content: "\f0d7";
}

#mainav .drop::after {
	top: 12px;
	left: 10px;
}

#mainav li li .drop::after {
	top: 15px;
	left: 5px;
}

#mainav ul ul {
	visibility: hidden;
	opacity: 0;
}

#mainav ul li:hover>ul {
	visibility: visible;
	opacity: 1;
}

#mainav form {
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

#mainav form select,
#mainav form select option {
	display: block;
	cursor: pointer;
	outline: none;
}

#mainav form select {
	width: 100%;
	padding: 5px;
	border: none;
}

#mainav form select option {
	margin: 5px;
	padding: 0;
	border: none;
}

/* Breadcrumb */
#breadcrumb {
	padding: 150px 0 30px;
}

#breadcrumb ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}

#breadcrumb li {
	display: inline-block;
	margin: 0 6px 0 0;
	padding: 0;
}

#breadcrumb li a {
	display: block;
	position: relative;
	margin: 0;
	padding: 0 12px 0 0;
	font-size: 12px;
}

#breadcrumb li a::after {
	top: 4px;
	right: 0;
	content: "\f0da";
}

#breadcrumb li:last-child a {
	margin: 0;
	padding: 0;
}

#breadcrumb li:last-child a::after {
	display: none;
}

#breadcrumb .heading {
	margin: 0;
	font-size: 2rem;
}



/* Pagination */
.pagination {
	display: block;
	width: 100%;
	text-align: center;
	clear: both;
}

.pagination li {
	display: inline-block;
	margin: 0 2px 0 0;
}

.pagination li:last-child {
	margin-right: 0;
}

.pagination a,
.pagination strong {
	display: block;
	padding: 8px 11px;
	border: 1px solid;
	background-clip: padding-box;
	font-weight: normal;
}

/* Back to Top */
#backtotop {
	z-index: 999;
	display: inline-block;
	position: fixed;
	visibility: hidden;
	bottom: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	text-align: center;
	opacity: .2;
}

#backtotop i {
	display: block;
	width: 100%;
	height: 100%;
	line-height: inherit;
}

#backtotop.visible {
	visibility: visible;
	opacity: .5;
}

#backtotop:hover {
	opacity: 1;
}


/* Tables
--------------------------------------------------------------------------------------------------------------- */
table,
th,
td {
	border: 1px solid;
	border-collapse: collapse;
	vertical-align: top;
}

table,
th {
	table-layout: auto;
}

table {
	width: 100%;
	margin-bottom: 15px;
}

th,
td {
	padding: 5px 8px;
}

td {
	border-width: 0 1px;
}


/* Gallery
--------------------------------------------------------------------------------------------------------------- */
#gallery {
	display: block;
	width: 100%;
	padding-bottom: 50px;
	padding-top: 90px;
}

#gallery figure figcaption {
	display: block;
	width: 100%;
	clear: both;
}

#gallery li {
	margin-bottom: 30px;
}


/* Font Awesome Social Icons
--------------------------------------------------------------------------------------------------------------- */
.faico {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faico li {
	display: inline-block;
	margin: 8px 5px 0 0;
	padding: 0;
	line-height: normal;
}

.faico li:last-child {
	margin-right: 0;
}

.faico a {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 18px;
	text-align: center;
}

.faico a {
	color: #FFFFFF;
	background-color: #161616;
}

/* .faico a:hover{} */

.faicon-dribble:hover {
	background-color: #EA4C89;
}

.faicon-facebook:hover {
	background-color: #3B5998;
}

.faicon-google-plus:hover {
	background-color: #DB4A39;
}

.faicon-linkedin:hover {
	background-color: #0E76A8;
}

.faicon-twitter:hover {
	background-color: #00ACEE;
}

.faicon-vk:hover {
	background-color: #4E658E;
}


/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */


/* Colours
--------------------------------------------------------------------------------------------------------------- */
body {
	color: #474747;
	background-color: #FFFFFF;
}

a {
	color: #53D3DE;
}

a:active,
a:focus {
	background: transparent;
}

/* IE10 + 11 Bugfix - prevents grey background */
hr,
.borderedbox {
	border-color: #D7D7D7;
}

label span {
	color: #FF0000;
	background-color: inherit;
}

input:focus,
textarea:focus,
*:required:focus {
	border-color: #53D3DE;
}

.overlay {
	color: #FFFFFF;
	background-color: inherit;
}

.overlay::after {
	color: inherit;
	background-color: rgba(0, 0, 0, .55);
}

.overlay.gradient::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, .6) 0%, transparent 100%);
}

.overlay.light {
	color: #474747;
}

.overlay.light::after {
	background-color: rgba(255, 255, 255, .7);
}

.btn,
.btn.inverse:hover {
	color: #FFFFFF;
	background-color: #53D3DE;
	border-color: #53D3DE;
}

.btn:hover,
.btn.inverse {
	color: inherit;
	background-color: transparent;
	border-color: inherit;
}

.imgover:hover::before {
	background: rgba(255, 255, 255, .7);
}

.imgover,
.imgover:hover::after {
	color: #53D3DE;
}


/* Rows */
.row0 {
	color: #474747;
	background-color: #F4F4F4;
}

.row1 {
	color: #000;
	background-color: #fff;
	border-color: #fff;
}

.row2 {
	color: #474747;
	background-color: #F4F4F4;
}

.row3 {
	color: #474747;
	background-color: #FFFFFF;
}

.row4 {
	color: #9FA7AF;
	background-color: #202020;
}

.row5,
.row5 a {
	color: #9FA7AF;
	background-color: #161616;
}

.coloured {
	color: #FFFFFF;
	background-color: #1D8B94;
}


/* Top Bar */
#topbar #searchform {
	color: #53D3DE;
}

/* #topbar #searchform:hover{} */
#topbar #searchform input {
	color: #FFFFFF;
	background: #1D8B94;
}

#topbar #searchform button {
	color: #FFFFFF;
	background: transparent;
}


/* Header */
#header #logo h1 a {
	color: inherit;
}


/* Page Intro */
#pageintro {
	color: #000;
}

.banner-image {
	/* background-image: url("/images/demo/backgrounds/banner-image.jpg"); */
	background-size: cover;
	background-color: #cccc;
	background-repeat: no-repeat;
}


/* Content Area */
.prices li article {
	background-color: #FFFFFF;
	border-color: rgba(0, 0, 0, .1);
}

.prices li article:hover,
.prices li article:hover .btn,
.prices .btn:hover {
	color: inherit;
	background-color: #FFFFFF;
	border-color: #53D3DE;
}

.prices li article p:last-of-type strong {
	color: #1D8B94;
}

.red {
	color: #B12E52;
}

.green {
	color: #00B900
}

.blue {
	color: #359AFF
}


/* Introblocks */
#introblocks article {
	border-color: rgba(0, 0, 0, .1);
}

#introblocks article:hover {
	background-color: rgba(0, 0, 0, .02);
	border-color: #53D3DE;
}


/* CTA - Click to Action */
#cta {
	border-color: #D7D7D7;
}


/* Footer */
#footer .heading {
	color: #FFFFFF;
}

#footer hr,
#footer .borderedbox,
#footer .linklist li {
	border-color: rgba(255, 255, 255, .1);
}

#footer input,
#footer button {
	border-color: transparent;
}

#footer input {
	color: #9FA7AF;
	background-color: #161616;
}

#footer input:focus {
	border-color: #53D3DE;
}

#footer button {
	color: #FFFFFF;
	background-color: #53D3DE;
}


/* Navigation */

#mainav li a {
	color: inherit;
	border-color: transparent;
}

#mainav .active a,
#mainav a:hover,
#mainav li:hover>a {
	color: #1D8B94;
	background-color: #fff;
	border-color: #FFFFFF;
}

#mainav li li a,
#mainav .active li a {
	color: #000;
	background-color: #FFFFFF;
	/* #53D3DE */
	border-color: rgba(0, 0, 0, .6);
}

#mainav li li:hover>a,
#mainav .active .active>a {
	color: #1D8B94;
	background-color: #fff;
	border-color: rgba(0, 0, 0, .6);
}

#mainav form select {
	color: #474747;
	background-color: #FFFFFF;
}

#breadcrumb a {
	color: inherit;
	background-color: inherit;
}

#breadcrumb li:last-child a {
	color: #53D3DE;
}

.container .sidebar nav a {
	color: inherit;
	border-color: #D7D7D7;
}

.container .sidebar nav a:hover {
	color: #53D3DE;
}

.pagination a,
.pagination strong {
	border-color: #D7D7D7;
}

.pagination .current * {
	color: #FFFFFF;
	background-color: #53D3DE;
}

#backtotop {
	color: #FFFFFF;
	background-color: #53D3DE;
}


/* Tables + Comments */
table,
th,
td,
#comments .avatar,
#comments input,
#comments textarea {
	border-color: #D7D7D7;
}

#comments input:focus,
#comments textarea:focus,
#comments *:required:focus {
	border-color: #53D3DE;
}

th {
	color: #FFFFFF;
	background-color: #373737;
}

tr,
#comments li,
#comments input[type="submit"],
#comments input[type="reset"] {
	color: inherit;
	background-color: #FBFBFB;
}

tr:nth-child(even),
#comments li:nth-child(even) {
	color: inherit;
	background-color: #F7F7F7;
}

table a,
#comments a {
	background-color: inherit;
}

.fa-heart {
	color: red;
}


/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */


/* Media Queries
--------------------------------------------------------------------------------------------------------------- */
@-ms-viewport {
	width: device-width;
}


/* Max Wrapper Width - Laptop, Desktop etc.
--------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width:1140px) {
	.hoc {
		max-width: 1140px;
	}
}

@media screen and (max-width:1140px) {
	.at-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	#about-us .about-content .about-description p {
		max-height: 100%;
		overflow: visible;
	}

	#about-us .about-content .about-image img {
		max-height: 450px;
		width: 100%;
		object-fit: cover;
	}
}

@media screen and (min-width:978px) and (max-width:1140px) {
	.hoc {
		max-width: 95%;
	}
}


/* Mobile Devices
--------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width:992px) {
	.hoc {
		max-width: 90%;
	}


	#header {
		padding: 0px 0;
		height: 100%;
	}

	#header #logo {
		margin: 5px 0 5px 0;
	}

	#about-us {
		margin: 0px 0px;
	}

	#mainav {
		width: 100%;
	}

	#mainav .collapsible {
		display: none;

	}

	#mainav .show {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	#header .nav-bar {
		display: block;
	}

	#mainav form {
		display: block;
		margin-top: 25px;
	}



	#comments input[type="reset"] {
		margin-top: 10px;
	}

	.pagination li {
		display: inline-block;
		margin: 0 5px 5px 0;
	}



	#copyright p:first-of-type {
		margin-bottom: 10px;
	}
}

@media screen and (max-width:750px) {


	.imgl,
	.imgr {
		display: inline-block;
		float: none;
		margin: 0 0 10px 0;
	}

	.fl_left,
	.fl_right {
		display: block;
		font-size: 15px;
	}

	.group .group>*:last-child,
	.clear .clear>*:last-child,
	.clear .group>*:last-child,
	.group .clear>*:last-child {
		margin-bottom: 0;
	}

	/* Experimental - Needs more testing in different situations, stops double margin when stacking */
	.one_half,
	.one_third,
	.two_third,
	.one_quarter,
	.two_quarter,
	.three_quarter {
		display: block;
		float: none;
		width: auto;
		margin: 0 0 30px 0;
		padding: 0;
	}



	#topbar #searchform {
		display: none;
	}

	#header {
		text-align: center;
	}

	#header #logo {
		margin: 5px 0 5px 0;
	}

	#pageintro article {
		max-width: none;
	}

	#pageintro .heading {
		font-size: 22px;
	}

	#pageintro p:first-of-type {
		font-size: 1rem;
	}

	.sectiontitle,
	.testimonial article {
		max-width: none;
	}

	.testimonial article {
		text-align: left;
	}

	.prices li:nth-last-child(-n+3) {
		margin-bottom: 50px;
	}

	#latest ul li:nth-last-child(-n+3) {
		margin-bottom: 30px;
	}

	#footer{
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	#copyright{
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		align-items: center;
	}

	#cta{
		text-align: center;
	}

	/* Not required, just looks a little better */
}


/* Other
--------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width:650px) {
	.scrollable {
		display: block;
		width: 100%;
		margin: 0 0 30px 0;
		padding: 0 0 15px 0;
		overflow: auto;
		overflow-x: scroll;
	}

	.scrollable table {
		margin: 0;
		padding: 0;
		white-space: nowrap;
	}

	.inline li {
		display: block;
		margin-bottom: 10px;
	}

	.pushright li {
		margin-right: 0;
	}

	.font-x2 {
		font-size: 1.4rem;
	}

	.font-x3 {
		font-size: 1.6rem;
	}
}