/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #242D32;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif, Arial;
}

* {
    box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.holder {
    margin: 50px auto;
    display: flex;
    justify-content: center;
}

.holder > div {
    width: calc(33.333333333% - 60px);
    margin: 0 30px;
}

a {
    color: #ffffff;
    text-decoration: none;
}

h1 {
	color: #242D32;
	font-size: 45px;
	font-weight: 700;
	margin: 0 20px;
}

h2 {
	color: #BA9C76;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 18px;
	margin: 50px 20px 0 20px;
}

h3 {
	color: #242D32;
	font-size: 45px;
	font-weight: 700;
	margin: 0 20px;
}

p {
	color: #242D32;
	font-weight: 400;
	font-size: 18px;
	margin: 0;
	text-align: left;
	line-height: 28px;
}

header {
    background: #242D32 url('/templates/images/logo.png') no-repeat center;
    width: 100%;
	height: 225px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}


.line {
	border-bottom: 1px solid #BA9C76;
	width: 100px;
	height: 15px;
	display: inline-block;
}

.ort {
	text-transform: uppercase;
	font-weight: 700;
	font-style: bold;
    margin-top: 20px;
}

.wlanbox {
    display: flex;
    align-items: center;
    width: auto !important;
}

.wlanbox img {
    float: left;
    margin-right: 40px;
    max-width: 281px;
}

.wlanbox .wlantext {
    float: right;
}

.wlanbox .wlantext .wlan {
    text-transform: uppercase;
    margin-top: 40px;
    font-size: 26px;
    margin-bottom: 10px;
    color: #525b60;
}

.wlanbox .wlantext .wlan.nmt {
    margin-top: 0;
}

.wlanbox .wlantext .big {
    font-weight: bold;
    margin-bottom: 40px;
    font-size: 34px;
}

.wlanbox .wlantext .big.nmb {
    margin-bottom: 5px;
}


.offers {
	background: #F1F8FB;
	width: 100%;
	height: auto;
	padding: 20px;
}

.offers ul {
	width: 100%;
	position: relative;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	overflow: hidden;
	margin: 0;
    padding: 0;
	list-style: none;
}

.offers li {
    width: calc(33.333333333% - 60px);
    margin: 0 30px;
	font-size: 18px;
	color: #525B60;
	text-align: center;
	display: block;
}

.offers li span {
    padding: 20px 0 20px 55px;
    display: inline-block;
    margin: 50px 0 40px;
}

.offers .eat {
    background: url("/templates/images/icon-essen.svg") no-repeat left center;
    background-size: auto 40px;
}

.offers .workout {
    background: url("/templates/images/icon-workout.svg") no-repeat left center;
    background-size: auto 40px;
    padding-left: 35px;
}

.offers .tv {
    background: url("/templates/images/icon-tv.svg") no-repeat left center;
    background-size: auto 35px;
    padding-left: 65px;
}

.offers a {
	color: #525B60;
}

footer {
	background: #242D32;
	padding: 50px;
    display: flex;
}

footer .links {
    margin: 0 30px;
}

footer .links a.dw {
    position: relative;
    background: url(/templates/images/logo-hansa.svg) no-repeat left bottom;
    background-size: 100% auto;
    padding-top: 20px;
    float: left;
    width: 200px;
    height: 60px;
}

footer .links a.dw::before {
    content: 'powered by';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    display: block;
}

footer .links .right {
    float: right;
    margin-top: 35px;
}

footer .links a {
    float: left;
}

footer .links a.last::before {
    content: '|';
    margin-left: 20px;
    padding-right: 20px;
}


@media (max-width: 1230px) {

    .holder > div,
    .offers li {
        width: calc(33.333333333% - 30px);
        margin: 0 15px;
    }

    p, .offers li  {
        font-size: 16px;
    }

}


@media (max-width: 1024px) {

    header {
        background-size: 120px auto;
        height: 150px;
    }

    h1, h3 {
    	font-size: 26px;
    }
    h2, p {
    	font-size: 16px;
    }

    .holder {
        display: block;
    }

    .holder > div,
    .offers li {
        width: calc(100% - 30px);
        max-width: 500px;
        margin: 0 auto 30px;
    }

    p, .offers li  {
        font-size: 16px;
    }

    .ort {
        margin-top: 10px;
    }

    .wlanbox {
        flex-wrap: wrap;
    }

    .wlanbox img, .wlanbox .wlantext {
        float: none;
        width: 100%;
        max-width: 281px;
        margin: 0 auto;
    }

    .wlanbox img {
        order: 2
    }

    .wlanbox .wlantext {
        order: 1;
    }

    .wlanbox .wlantext p {
        text-align: center;
    }

    .wlanbox .wlantext .wlan {
        font-size: 18px;
        margin-top: 0;
    }

    .wlanbox .wlantext .big {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .offers {
        padding: 20px 0;
    }

    .offers li {
        margin: 0;
    }

    .offers li span {
        margin: 0;
        width: 100%;
        text-align: left;
        padding: 30px 0;
        padding-left: 50px !important;
        background-size: 30px auto !important;
        border-top: 1px solid #dee5e7;
    }

    .offers li span.workout {
        background-size: auto 40px !important;
        background-position: left 6px center;
    }

    .offers li span.eat {
        margin: 15px 0 0;
        border: none;
    }

    footer {
        padding: 30px 0 20px;
    }

    footer .container {
        padding: 0;
    }

    footer .links {
        margin: 0;
    }

    footer .links a.dw {
        display: block;
        float: none;
        margin: 0 auto;
    }

    footer .links a.dw::before {
        text-align: center;
        width: 100%;
        font-size: 12px;
    }

    footer .links .right {
        float: none;
        display: flex;
        width: 100%;
        justify-content: center;
        border-top: 1px solid #3a4247;
        padding-top: 20px;
    }

    footer .links a {
        display: inline-block;
        font-size: 14px;
    }


}
