/**
 * CSS requested and writen by Marketing
 * 
 * Mainly contains specifics from marketing or adjustments
 * from PIM regarding user stories for marketing.
 */
html {
	font-size: 16px;
}

body {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	overflow-x: hidden;
}

@media (min-width: 576px) {
	html {
		font-size: calc( 14px + 8 * ((100vw - 500px) / 1500))
	}
}

@media (min-width: 1200px) {
	html {
		font-size: 22px
	}
}

/*****************************************************
TITLES
*****************************************************/

.m-h1{
	font-family: 'Gill Sans', sans-serif;
	font-size: 3.75rem;
	line-height: 3.5rem;
	font-weight: 600;
	color: #075c8f;
}

.m-h2 {
	font-size: 20px;
	line-height: 24px;
	color: #a7a9ab;
	font-weight: 400;
}

.m-title-1 {
	font-size: 36px;
	line-height: 40px;
	color: #323132;
	font-weight: 700;
}

.m-title-2 {
	font-size: 26px;
	line-height: 30px;
	color: #075c8f;
	font-weight: 500;
}

.m-title-3 {
	font-size: 24px;
	line-height: 26px;
	color: #404041;
	font-weight: 700;
}

.m-title-4 {
	font-size: 18px;
	line-height: 20px;
	color: #075c8f;
	font-weight: 600;
}

.m-title-5 {
	font-size: 20px;
	line-height: 22px;
	color: #404041;
	font-weight: 700;
}

.m-title-6 {
	font-size: 20px;
	line-height: 22px;
	color: #323132;
	font-weight: 400;
}

/*****************************************************
CONTAINER TEXT
*****************************************************/

.m-text-1 {
	font-size: 16px;
	line-height: 21px;
	color: #323132;
	font-weight: 400;
}

.m-text-sm {
	font-size: 14px;
	line-height: 20px;
	color: #58585b;
	font-weight: 400;
}

.m-text-md {
	font-size: 18px;
	line-height: 22px;
	color: #323132;
	font-weight: 400;
}

.m-color-1 {
	color: #075c8f
}

.m-color-2 {
	color: #a7a9ab;
}

.m-color-3 {
	color: #84c561;
}

.m-color-4 {
	color: #323132;
}

.m-color-5 {
	color: #404041;
}

.m-color-6 {
	color: #58585b;
}

.m-color-7{
	color: #ac1d37;
}

/*****************************************************
ANCHORS
*****************************************************/

.m-anchor-1 {
	font-size: 18px;
	line-height: 22px;
	color: #075c8f;
	font-weight: 700;
	border-bottom: 1px solid #075c8f;
	transition: .3s all ease;
	text-decoration: none;
	display: inline-block;
}

.m-anchor-1:hover {
	border-bottom: 1px solid transparent;
	color: #075c8f;
}

.m-anchor-1:focus {
	color: #075c8f;
	outline: none;
	text-decoration: none;
}

.m-anchor {
	color: #075c8f;
	transition: .3s all ease;
	border-bottom: 1px solid #075c8f;
	text-decoration: none;
}

.m-anchor:hover {
	border-bottom: 1px solid transparent;
	color: #075c8f;
}

.m-anchor:focus {
	color: #075c8f;
	outline: none;
	text-decoration: none;
}

.m-anchor-rev {
	color: #075c8f;
	transition: .3s all ease;
	border-bottom: 1px solid transparent;
	text-decoration: none;
}

.m-anchor-rev:hover {
	color: #075c8f;
	transition: .3s all ease;
	border-bottom: 1px solid #075c8f;
	text-decoration: none;
}

.m-anchor-rev:focus {
	color: #075c8f;
	outline: none;
	text-decoration: none;
}

/*****************************************************
BUTTONS
*****************************************************/

.m-btn-1 {
	font-size: 24px;
	line-height: 28px;
	color: #ffffff;
	font-weight: 400;
	background: #075c8f;
	border: 1px solid #075c8f;
	border-radius: 4px;
	padding: 13px 0;
	transition: .3s all ease;
}

.m-btn-1:hover {
	font-size: 24px;
	line-height: 28px;
	color: #075c8f;
	background: #ffffff;
	border: 1px solid #075c8f;
	transition: .3s all ease;
}

.m-btn-1:focus {
	color: #ffffff;
}

.m-btn-1:focus:hover {
	color: #075c8f;
	background: transparent;
}

.m-btn-2 {
	font-size: 26px;
	line-height: 28px;
	color: #075c8f;
	font-weight: 400;
	transition: .3s all ease;
	background: transparent;
	border: 1px solid #075c8f;
	border-radius: 4px;
	padding: 13px 0;
}

.m-btn-2:hover {
	font-size: 26px;
	line-height: 28px;
	color: #fff;
	background: #075c8f;
	border: 1px solid #075c8f;
	transition: .3s all ease;
}

.m-btn-2:focus {
	color: #075c8f;
	background: transparent;
}

.m-btn-2:focus:hover {
	color: #ffffff;
	background: #075c8f;
}

.rtl-image {
	transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
}


/*****************************************************
MARKETING UTILITY CLASSES
*****************************************************/

/*****************************************************
Floating elements
*****************************************************/

.m-float-left {
	float: left !important;
}
.m-float-right {
	float: right !important;
}

.rtl .m-float-left {
	float: right !important;
}
.rtl .m-float-right {
	float: left !important;
}

.m-float-none {
	float: none !important;
}

@media (min-width: 576px) {

	.m-float-sm-left {
		float: left !important;
	}
	.m-float-sm-right {
		float: right !important;
	}

	.rtl .m-float-sm-left {
		float: right !important;
	}
	.rtl .m-float-sm-right {
		float: left !important;
	}

	.m-float-sm-none {
		float: none !important;
	}
}

@media (min-width: 768px) {

	.m-float-md-left {
		float: left !important;
	}
	.m-float-md-right {
		float: right !important;
	}

	.rtl .m-float-md-left {
		float: right !important;
	}
	.rtl .m-float-md-right {
		float: left !important;
	}

	.m-float-md-none {
		float: none !important;
	}
}

@media (min-width: 992px) {

	.m-float-lg-left {
		float: left !important;
	}
	.m-float-lg-right {
		float: right !important;
	}

	.rtl .m-float-lg-left {
		float: right !important;
	}
	.rtl .m-float-lg-right {
		float: left !important;
	}

	.m-float-lg-none {
		float: none !important;
	}
}

@media (min-width: 1200px) {

	.m-float-xl-left {
		float: left !important;
	}
	.m-float-xl-right {
		float: right !important;
	}

	.rtl .m-float-xl-left {
		float: right !important;
	}
	.rtl .m-float-xl-right {
		float: left !important;
	}

	.m-float-xl-none {
		float: none !important;
	}
}

/*****************************************************
Text Centering
*****************************************************/

.m-text-left {
	text-align: left !important;
}
.m-text-right {
	text-align: right !important;
}

.rtl .m-text-left {
	text-align: right !important;
}
.rtl .m-text-right {
	text-align: left !important;
}

.m-text-center {
	text-align: center !important;
}

@media (min-width: 576px) {

	.m-text-sm-left {
		text-align: left !important;
	}
	.m-text-sm-right {
		text-align: right !important;
	}

	.rtl .m-text-sm-left {
		text-align: right !important;
	}
	.rtl .m-text-sm-right {
		text-align: left !important;
	}

	.m-text-sm-center {
		text-align: center !important;
	}
}

@media (min-width: 768px) {

	.m-text-md-left {
		text-align: left !important;
	}
	.m-text-md-right {
		text-align: right !important;
	}

	.rtl .m-text-md-left {
		text-align: right !important;
	}
	.rtl .m-text-md-right {
		text-align: left !important;
	}

	.m-text-md-center {
		text-align: center !important;
	}
}

@media (min-width: 992px) {

	.m-text-lg-left {
		text-align: left !important;
	}
	.m-text-lg-right {
		text-align: right !important;
	}

	.rtl .m-text-lg-left {
		text-align: right !important;
	}
	.rtl .m-text-lg-right {
		text-align: left !important;
	}

	.m-text-lg-center {
		text-align: center !important;
	}
}

@media (min-width: 1200px) {

	.m-text-xl-left {
		text-align: left !important;
	}
	.m-text-xl-right {
		text-align: right !important;
	}

	.rtl .m-text-xl-left {
		text-align: right !important;
	}
	.rtl .m-text-xl-right {
		text-align: left !important;
	}

	.m-text-xl-center {
		text-align: center !important;
	}
}

/*****************************************************
Block Element Centering
*****************************************************/

.m-m-auto {
	margin: auto!important
}

.m-mt-auto,
.m-my-auto {
	margin-top: auto !important;
}

.m-mr-auto,
.m-mx-auto {
	margin-right: auto !important;
}

.m-mb-auto,
.m-my-auto {
	margin-bottom: auto !important;
}

.m-ml-auto,
.m-mx-auto {
	margin-left: auto !important;
}

@media (min-width:576px) {

	.m-m-sm-auto {
		margin: auto !important;
	}
	.m-mt-sm-auto,
	.m-my-sm-auto {
		margin-top: auto !important;
	}
	.m-mr-sm-auto,
	.m-mx-sm-auto {
		margin-right: auto !important;
	}
	.m-mb-sm-auto,
	.m-my-sm-auto {
		margin-bottom: auto !important;
	}
	.m-ml-sm-auto,
	.m-mx-sm-auto {
		margin-left: auto !important;
	}
}

@media (min-width:768px) {

	.m-m-md-auto {
		margin: auto !important;
	}
	.m-mt-md-auto,
	.m-my-md-auto {
		margin-top: auto !important;
	}
	.m-mr-md-auto,
	.m-mx-md-auto {
		margin-right: auto !important;
	}
	.m-mb-md-auto,
	.m-my-md-auto {
		margin-bottom: auto !important;
	}
	.m-ml-md-auto,
	.m-mx-md-auto {
		margin-left: auto !important;
	}
}

@media (min-width:992px) {

	.m-m-lg-auto {
		margin: auto !important;
	}
	.m-mt-lg-auto,
	.m-my-lg-auto {
		margin-top: auto !important;
	}
	.m-mr-lg-auto,
	.m-mx-lg-auto {
		margin-right: auto !important;
	}
	.m-mb-lg-auto,
	.m-my-lg-auto {
		margin-bottom: auto !important;
	}
	.m-ml-lg-auto,
	.m-mx-lg-auto {
		margin-left: auto !important;
	}
}

@media (min-width:1200px) {

	.m-m-xl-auto {
		margin: auto !important;
	}
	.m-mt-xl-auto,
	.m-my-xl-auto {
		margin-top: auto !important;
	}
	.m-mr-xl-auto,
	.m-mx-xl-auto {
		margin-right: auto !important;
	}
	.m-mb-xl-auto,
	.m-my-xl-auto {
		margin-bottom: auto !important;
	}
	.m-ml-xl-auto,
	.m-mx-xl-auto {
		margin-left: auto !important;
	}
}

/*****************************************************
LIST ITEMS
*****************************************************/

.top-content-list {
	margin: 70px 0 0;
	padding: 0;
	list-style: none;
}

.top-content-list li {
	padding-bottom: 1.31818rem;
	padding-left: 42px;
	position: relative;
	font: 400 16px/21px roboto, sans-serif;
	text-align: left;
}

.top-content-list__item {
	position: absolute;
	top: -2px;
	left: 0;
	width: 27px;
	height: 27px;
	display: block;
}

/*****************************************************
HEADER CONTENT
*****************************************************/

.header-wrapper {
	padding: 40px 0 70px;
	background: #ffffff;
	background-size: cover;
	border-bottom: 1px solid #a7a9ab;
}
