:root{
	--primary-color: #5279A3;
	--secondary-color: #D0EFB1;
	--shadow-color: #37516D;
	--background-color: #F8F5EE;
}

/*	==========================================================================
	Body
	========================================================================== */
html { height: 100%; }

body {
	background-color: var(--background-color);
	padding: 25px;
	color: #455054;
	font-size: 16px; font-size: 1rem;
	line-height: 1.6;
	
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--primary-color);
}


/*	==========================================================================
	GRID
	========================================================================== */
.row {
	max-width: 1200px;
	max-width: 75rem; /* 1200px / 16px */
}
.callout {
	border-radius: 5px;
	background-color: #fff;
	border: 0;
	box-shadow: 0 4px 1px 0px #ccc;
	padding: 1.25rem !important;
}
.callout.success {
	background-color: var(--secondary-color);
}
.callout .button {
	margin-top: auto;
	font-weight: bold;
	text-transform: uppercase;
}



/*	==========================================================================
	Fonts
	========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-family: 'Roboto Slab', serif;
	font-weight: normal;
	font-display: swap;
	margin-bottom: 1.5rem;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
	line-height: 1.3;
}

h1 { font-size: 27px; font-size: 1.687rem; }
h2 { font-size: 25px; font-size: 1.5625rem; }
h3 { font-size: 22px; font-size: 1.375rem; }
h4 { font-size: 20px; font-size: 1.25rem; }
h5 { font-size: 18px; font-size: 1.125rem; }
h6 { font-size: 16px; font-size: 1rem; }

::selection {
	background: var(--primary-color);
	color:#fff;
}
::-moz-selection {
	background: var(--primary-color);
	color:#fff;
}
::-webkit-selection {
	background: var(--primary-color);
	color:#fff;
}

i {
	color: #333;
	text-shadow: 0 0 1px #000000;
}

/*	==========================================================================
	Site title
	========================================================================== */
.site-header {
	margin-bottom: 20px;
}

.site-title {
	margin-top: 0;
	margin-bottom: 0px;
	padding-bottom: 0;
}
.site-title a {
	display: block;
	position: relative;
	z-index: 100;
	border-radius: 5px;
	color: var(--primary-color);
	border-bottom: #444;
	text-shadow: 0px 2px 0px #fff;
}
.site-title a:hover,
.site-title a:focus {
	color: #333;
	box-shadow: none;
}
.site-title .icon-heart-circled:before {
	color: #333;
	font-size: 90px;
}



/*	==========================================================================
	Site description
	========================================================================== */
.site-description {
	color: #777777;
	margin: 0 0 25px;
	padding: 0;
	font-size: 12px;
	text-shadow: 0px 2px 0px #fff;
}




/*	==========================================================================
	Entry title
	========================================================================== */
.entry-title {
	background-color: var(--primary-color);
	box-shadow: 0 2px 1px 0px var(--shadow-color);
	text-shadow: 0px 2px 0px var(--shadow-color);
	color: #F5F2ED;
	display: block;
	padding: 30px; padding: 2rem;
	margin-top: 0;
	clear: both;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
}
.entry-title > div {
	max-width: 75rem;
	margin-left: auto;
	margin-right: auto;
}
.entry-title i.columns:before {
	color: #F5F2ED;
	text-shadow: none;
	font-size: 40px; font-size: 2.5rem;
	margin-left: 0;
	margin-right: 0;
}
.entry-title i {
	font-size: 40px; font-size: 2.5rem;
	line-height: 0.9;
	padding: 0 !important;
	margin: 0;
	text-align: center;
}

.entry-title span::-webkit-selection,
.entry-title i::-webkit-selection {
	background: #F5F2ED;
	color:#D4554B;
}
.entry-title span::-moz-selection,
.entry-title i::-moz-selection {
	background: #F5F2ED;
	color:#D4554B;
}
.entry-title span::selection,
.entry-title i::selection {
	background: #F5F2ED;
	color:#D4554B;
}




/*	==========================================================================
	Menu
	========================================================================== */
.nav ul {
	text-align: right;
	margin-left: 0;
}
.nav li {
	margin-right: 8px;
	display: inline-block;
	vertical-align: top;
}
.nav a {
	font-size: 12px; font-size: 1.2rem;
	padding-bottom: 12px;
	color: #333333;
	padding: 5px 15px;
	border-radius: 5px;
	border: 1px solid transparent;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-shadow: 0px 2px 0px #fff;
}
.nav a:hover,
.nav a:focus,
.nav .current a,
.nav .parent a {
	background-color: #e8e6e1;
	border-top: 1px solid #e8e6e1;
	border-left: 1px solid #e8e6e1;
	border-bottom: 1px solid #dad7ce;
	border-right: 1px solid #dad7ce;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.primary-nav .twitter {
	float: right;
}

.primary-nav {
	margin-top: 13px;
}



/*	==========================================================================
	Content
	========================================================================== */
.content {
	margin-bottom: 80px;
}
ul,
ol {
	margin-left: 40px;	
}
article {
	margin-bottom: 2.5em;
	font-size: 18px; font-size: 1.125rem;
}


.template-about .sidebar .person-image {
	text-align: center;
	margin-bottom: 20px;
}
.template-about .sidebar .person-image img {
	border-radius: 50%;
	box-shadow: 0 4px 1px 0 #ddd;
}
.template-about .sidebar .person-description {
	text-align: center;
}

/*	==========================================================================
	Home
	========================================================================== */
/*#content .services {
	margin: 0 0 2.5em;
	padding: 0;
}
.services li {
	list-style: none;
	margin-bottom: 2px;
}*/
/*.services li.first-child {
	padding-left: 0;
}
.services li.last-child {
	padding-right: 0;
}*/
/*.services li.service-wordpress a {
	background-color: #14AD80;
}
.services li.service-design a {
	background-color: #46C6E2;
}
.services li.service-webshop a {
	background-color: #339499;
}
.services li.service-responsive a {
	background-color: #DC6957;
}*/
/*.services a {
	display: block;
	border-radius: 5px;
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-bottom: 1px solid #dad7ce;
	border-right: 1px solid #dad7ce;
	padding: 30px; padding: 2rem;
	font-size: 18px; font-size: 1.125rem;
	overflow: hidden;
	text-align: center;
	
	background-color: #fff;
}
.services a:hover {
	background-color: #fff;
	color: #F7F4ED;
}
.services li.service-wordpress a:hover {
	background-color: #14AD80;
}
.services li.service-design a:hover {
	background-color: #339499;
}
.services li.service-webshop a:hover {
	background-color: #777;
}
.services li.service-responsive a:hover {
	background-color: #DC6957;
}
.services i {
	font-size: 40px; font-size: 1.875rem;
	line-height: 0.9;
	padding: 0 !important;
	margin: 0;
	text-align: center;
	text-shadow: none;
}
.services a:hover i {
	color: #F6F3EC;
}
.services span {
	display: block;
	padding: 10px 0;
}*/

.home #content .services,
.template-service #content .services {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 0;
	justify-content: space-between;
	/*flex-flow: row wrap;*/
	list-style: none;
	flex-wrap: wrap;
	padding-left: 0;
}
.home .services li,
.template-service .services li {
	float: none;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	flex-basis: calc(25% - 1.25rem);
	width: auto;
	margin: 0 0.625rem 1.25rem;
	flex-direction: column;
}
.template-service .services li {
	flex-basis: calc(33.33333% - 1.25rem);
}

.home .services h4 {
	margin-bottom: 10px;
}
.home .services i {
	font-size: 100px;
	display: block;
	text-align: center;
	margin-bottom: 10px;
	background: #f7f4ed;
	border-radius: 50%;
	padding: 11px;
	height: 160px;
	width: 160px;
	margin: 0 auto 20px;
	box-shadow: inset 0 4px 1px 0px #ccc;
	color: var(--primary-color);
	text-shadow: none;
}



/*	==========================================================================
References and reviews on Home
========================================================================== */

.reviews-refrences {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 4rem !important;
}
.reviews,
.references {
	width: 50%;
}
.references .logos {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.references h4 {
	width: 100%;
}
.references .logo {
	width: 50%;
	margin: auto;
	height: 100px;
	text-align: center;
}



/*	==========================================================================
	Portfolio
	========================================================================== */
#content .cases {
	list-style: none;
}
.case {
	margin-bottom: 1.875em;
}

#content .cases {
	padding-left: 0;
}

.cases .case.last-child {
	float: right;
}
.cases .case a {
	display: block;
	overflow: hidden;
	background-color: white;
	border-radius: 5px;
	-webkit-box-shadow: 0 4px 1px 0px #ccc;
	-moz-box-shadow: 0 4px 1px 0px #ccc;
	box-shadow: 0 4px 1px 0px #ccc;
}

.case img {
	width: 100%;
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.template-case .case img {
	-webkit-box-shadow: 0 4px 1px 0px #ccc;
	-moz-box-shadow: 0 4px 1px 0px #ccc;
	box-shadow: 0 4px 1px 0px #ccc;
	-webkit-border-radius: 5px;
	moz-border-radius: 5px;
	border-radius: 5px;
}

.cases .case h2 {
	padding: 0 20px;
	margin: 0;
	font-size: 18px; font-size: 1.125rem;
	line-height: 40px; line-height: 2.5rem;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.case a:hover h2 {
	color: var(--primary-color);
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.case a:hover img {
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0.7;
}
.case-website {
	margin-bottom: 10px;
	display: block;
}


ul.references {
	margin-left: 0;
}
.references > li {
	background: none repeat scroll 0 0 #FFFFFF;
	border-radius: 3px 3px 3px 3px;
	color: #888888;
	display: inline-block;
	vertical-align: top;
	line-height: 40px;
	padding: 5px 20px;
	margin: 3px;
	box-shadow: 0 1px 1px 0 #ddd;
}

/*	==========================================================================
	Case
	========================================================================== */
.home .cases,
.template-service .cases {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
		
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	justify-content: space-between;
	
	margin-left: 0;
}
.home .case,
.template-service .case {
	width: 100%;
	flex-basis: 33.33333%;
	padding-left: .625rem;
    padding-right: .625rem;
}
.case h2 {
	float: left;
}
.case header {
	margin-bottom: 40px;
	overflow: hidden;
}
.cases-nav {
	margin: 0.67em 0;
	list-style: none;
	float: right;
	position: relative;
}
.cases-nav li {
	margin-right: 9px;
	display: inline-block;
	vertical-align: top;
}
.cases-nav li.last-child {
	margin-right: 0;
}
.cases-nav a {
	padding: 4px 10px 3px 10px;
	display: block;
	background-color: #3d3c38;
	-moz-border-radius: 5px;
	border-radius: 4px;
	color: #fff;
	font-family: 'Pictos', sans-serif;
	font-size: .875rem; /* 14 / 16 */
	line-height: 22px;
	text-shadow: none;

	background-color: #e8e6e1;
	border-top: 1px solid #e8e6e1;
	border-left: 1px solid #e8e6e1;
	border-bottom: 1px solid #dad7ce;
	border-right: 1px solid #dad7ce;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.cases-nav a:hover,
.cases-nav a:focus {
	text-decoration: none;
	background-color: var(--primary-color);
}
.cases-nav i {
	color: var(--primary-color);
	font-size: 18px;
	text-shadow: none;
}
.cases-nav a:hover i,
.cases-nav a:focus i
.case .summary {
	color: #fff;
}


/*	==========================================================================
	Services
	========================================================================== */

.service-plans {
	margin-bottom: 40px;
}
.service-plan .wrap {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 5px 0 #DDDDDD;
	position: relative;
	z-index: 10;
}
.service-plans.large-block-grid-3>li:nth-of-type(3n+1) {
	clear: none;
}
.service-plan-title,
.service-plan-price {
	padding: 20px 0;
	border-radius: 5px 5px 0 0;
	background-color: #7AB700;
	color: #fff;
	margin-bottom: 0;
	text-align: center;
}
.service-plan-hosting .service-plan-title {
	background-color: #0087D1;
}
.service-plan-hosting .service-plan-price {
	background-color: #12B5EA;
}
.service-plan-plus .service-plan-title {
	background-color: #569800;
}
.service-plan-plus .service-plan-price {
	background-color: #7AB700;
}

.service-plan-price {
	background-color: #A5CE52;
	font-size: 26px;
	border-radius: 0;
	padding: 0;
}
.service-plan-price small {
	display: block;
	font-size: 12px;
}
.service-plan-detail {
	padding: 20px;
}

.service-plan-detail ul {
	margin: 0;
}
.service-plan-detail li {
	list-style: none;
}
.service-plan-detail li {
	background: none repeat scroll 0 0 #F9F9F9;
	border: 0 solid #EEEEEE;
	border-radius: 3px;
	box-shadow: 0 0 1px 0 #DDDDDD;
	margin-bottom: 5px;
	padding: 3px 10px;
}
.service-plan-detail li:before {
	font-family: "FontAwesome";
	font-weight:normal;
	font-style:normal;
	text-decoration:inherit;
	-webkit-font-smoothing:antialiased;
	content:"\f00c";
	color: #A5CE52;
	font-size:1.2em;
	padding-right: 10px;
}


li.service-plan-plus {
	/*margin-top: -210px;*/
}
.service-plan-hosting-basic .service-plan-title {
	background-color: #aaa;
}
.service-plan-hosting-basic .service-plan-price {
	background-color: #888;
}

.service-plan-footer {
	background-color: rgba(255,255,255,0.6);
	margin: 0 10px;
	position: relative;
	z-index: 1;
	padding: 5px 15px;
	font-size: 12px;
	color: #aaa;
	border-radius: 0 0 3px 3px;
}
.service-plan-footer li {
	list-style: none;
}
.service-plan-footer li:before {
	font-family: "FontAwesome";
	font-weight:normal;
	font-style:normal;
	text-decoration:inherit;
	-webkit-font-smoothing:antialiased;
	content: "\f069";
	color: #888;
	font-size: 0.6em;
	padding-right: 5px;
}


.contact-form {
	clear: both;
	border-radius: 10px;
	border: 1px solid #fff;	
	background-color: #fff;
}
.contact-form.column {
	padding: 1.2375em;
}
.kontakt .contact-form {
	clear: none;
}
.button {
	border-radius: 5px;
	width: 100%;
	background-color: var(--primary-color);
}
.contact-form .button,
.contact-form p:last-child {
	margin-bottom: 0;
}
.contact-form p.inline {
	display: inline-block;
	vertical-align: top;
	width: 49.4%;
	margin-bottom: 0;
}




ul.body-repeat {
	margin-left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	
	/*-webkit-flex-flow: row wrap;
	flex-flow: row wrap;*/
		
	/*-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
	
	justify-content: space-between;
}
.body-repeat li {
	list-style: none;
	text-align: center;
	
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    
    flex: 1;
}
/*.body-repeat li .panel {
	box-shadow: 0 4px 1px 0 #6b8853;
	background-color: #85a869;
	padding: 20px;
	border-radius: 5px;
}*/

/*.body-repeat li:first-child {
	border-width: 0 5px 0 0;
}
.body-repeat li:nth-child(2) {
	border-width: 0 5px 0 5px;
}
.body-repeat li:last-child {
	border-width: 0 0 0 5px;
}*/

.body-repeat li p {
	text-align: left;
}
.body-repeat li p:last-child {
	margin-bottom: 0;	
}
.body-repeat li .fa {
	font-size: 80px;
	margin: 0 auto 20px;
	background-color: #f7f4ed;
	border-radius: 50%;
	padding: 40px;
	width: 160px;
	height: 160px;
	box-shadow: inset 0 4px 1px 0 #ccc;
	color: var(--primary-color);
	text-shadow: none;
}


/*	==========================================================================
	Testimonials
	========================================================================== */
.testimonials {
	text-indent: 0;
}
.testimonials .testimonial {
	text-align: left;
	float: none;
	width: 100%;
	
}
.testimonials .testimonial .text {
	margin-bottom: 20px;
}
.testimonials .testimonial .person,
.testimonials .testimonial .company {
	text-align: right;	
}

.customers {
	margin: 60px 0;
	clear: both;
}
.customers img {
	margin: 20px;
}



/*	==========================================================================
	Ribbon
	========================================================================== */

.ribbon-wrapper-green {
	width: 85px;
	height: 88px;
	overflow: hidden;
	position: absolute;
	top: -3px;
	right: -3px;
}

.ribbon-green {
	font: bold 13px Sans-Serif;
	text-align: center;
	text-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
	-webkit-transform: rotate(45deg);
	-moz-transform:    rotate(45deg);
	-ms-transform:     rotate(45deg);
	-o-transform:      rotate(45deg);
	position: relative;
	padding: 9px 0;
	left: -9px;
	top: 15px;
	width: 125px;
	background-color: #BFDC7A;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#BFDC7A), to(#8EBF45)); 
	background-image: -webkit-linear-gradient(top, #BFDC7A, #8EBF45); 
	background-image:    -moz-linear-gradient(top, #BFDC7A, #8EBF45); 
	background-image:     -ms-linear-gradient(top, #BFDC7A, #8EBF45); 
	background-image:      -o-linear-gradient(top, #BFDC7A, #8EBF45); 
	color: #fff;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-moz-box-shadow:    0px 0px 3px rgba(0,0,0,0.3);
	box-shadow:         0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-green:before, .ribbon-green:after {
	content: "";
	border-top:   3px solid #6e8900;   
	border-left:  3px solid transparent;
	border-right: 3px solid transparent;
	position:absolute;
	bottom: -3px;
}

.ribbon-green:before {
	left: 0;
}
.ribbon-green:after {
	right: 0;
}​





/*	==========================================================================
	Alignment
	========================================================================== */
.alignleft {
	float: left;
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 1.5rem 1.5rem 0;
}
.alignright {
	float: right;
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 0 1.5rem 1.5rem;
}
img.alignleft {
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 1.5rem 1.5rem 0;
}

img.alignright {
	display: inline;
	margin: 0 0 24px 24px;
	margin: 0 0 1.5rem 1.5rem;
}

/*	==========================================================================
	Footer
	========================================================================== */
.site-footer {
	border-top: solid 1px #e6e6e6;
	box-shadow: 0px 1px 0px 0px #fff inset;
	padding-top: 40px;
}
.site-footer .contact-info li {
	margin-bottom: 5px;
	font-size: 12px; font-size: .75rem;
	list-style: none;
}
.site-footer .contact-info img {
	vertical-align: middle;
	margin: 0 10px 10px 0;
}
.site-footer .contact-info strong {
	font-size: 16px; font-size: 1rem;
}
.site-footer ul {
	margin-left: 0;
}

.footer-nav {
	float: right;
}

.footer-nav a {
	font-size: 13px; font-size: 0.9rem;
	color: #333333;
	padding: 3px 7px;
	border-radius: 5px;
	border: 1px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus, .footer-nav .current-menu-item a, .footer-nav .current_page_parent a {
	background-color: #e8e6e1;
	border-top: 1px solid #e8e6e1;
	border-left: 1px solid #e8e6e1;
	border-bottom: 1px solid #dad7ce;
	border-right: 1px solid #dad7ce;
	text-decoration: none;
}



/*	==========================================================================
	iPads (horsontal)
	========================================================================== */
@media only screen and (max-width: 1024px) {

	li.service-plan-hosting-basic {
		float: none;
		margin-top: auto;
	}
	
	.nav ul {
		text-align: center;
	}
	.nav li {
		margin: 5px;
	}
	
	.site-title,
	.site-description,
	.entry-title {
		text-align: center;
	}
	.sidebar {
		margin-bottom: 40px;
	}
	
	.service-plans {
		clear: both;
	}
	.service-plans li {
		display: block;
		float: none;
		width: 100%;
	}
	.service-plans .service-plan {
		margin-bottom: 40px;
	}
	
	.home .services li,
	.template-service .services li,
	.home .case,
	.template-service .case {
		flex-basis: calc(50% - 1.25rem);
	}
	
	.footer-nav {
		border-bottom: solid 1px #e6e6e6;
		box-shadow: 0px 1px 0px 0px #fff;
		padding-bottom: 20px;
		margin-bottom: 40px;
	}
	
	.site-footer .contact-info li {
		text-align: center;
	}

}

/*	==========================================================================
	iPads (portrait)
	========================================================================== */
@media only screen and (max-width: 768px) {

	.site-header {
		text-align: center;
	}
	.site-title a {
		margin: auto;
	}
	.site-header h2,
	.cases .case h2,
	.case-title {
		float: none;
		text-align: center;
	}
	
	.references > li {
		padding: 0 10px;
	}

	.home .services li,
	.template-service .services li,
	.home .case,
	.template-service .case {
		flex-basis: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.reviews, .references {
		width: 100%;
	}

}

@media only screen and (max-width: 568px) {

	.column,
	.columns,
	[class*="block-grid-"]>li {
		padding-left: 0;
		padding-right: 0;
	}
	.entry-title.column {
		padding-left: 10px;
		padding-right: 10px;
	}
	.nav ul {
		margin-left: 0;
		text-align: center;
	}
	.nav a {
		font-size: 11px; font-size: 1rem;
		padding: 6px 10px;
	}
	.cases-nav {
		width: 100%;
		float: none;
		clear: both;
	}
	#content .references,
	#content ul,
	#content ol {
		margin-left: 0;
		padding-left: 1rem;
	}
	
	/*.services li {
		padding: 0 0 20px;
	}*/
	
	.contact-form p.inline {
		display: block;
		vertical-align: top;
		width: 100%;
		margin-bottom: 0;
	}

}

