/* FONTS */

/* outfit-200 - 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: 'Outfit';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/outfit-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-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: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-600 - 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: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* COLORS */

/* dark     #C89F9F */
/* light    #F0E1E4 */

/* GENERAL */

*{
	box-sizing: border-box;
	outline: 0px !important;
}

body{
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    color: #383838;
}

.clear{
	clear: both;
}

.maxwidth{
	max-width: 1200px;
	margin: 0 auto;
}

.align-center{
    align-items: center;
}

.nobreak{
    display: inline-block;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 200;
}

h1, h2{
    margin-bottom: 20px;
}

h3{
    margin-top: 40px;
}

p.subheadline{
    margin-bottom: 20px;
    font-size: 20px;
}

.marginmiddle{
    margin-top: 60px;
    margin-bottom: 60px;
}

a, a:hover{
    color: #383838;
    text-decoration: underline;
}

img{
    max-width: 100%;
}

img.round{
    border-radius: 100%;
}

section{
    padding: 80px 0;
}

#head{
    padding: 40px 0 60px 0;
}

#head .logo{
    margin: 0 auto;
    display: block;
}

section#agentur,
section#ueber{
    background-color: #F0E1E4;
}

footer{
    padding: 20px 0;
}

footer .navi{
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer .navi a{
    color: #383838;
    font-size: 12px;
    text-decoration: none;
}

#klaro-cookie-notice .cn-buttons .cm-btn-success{
    background-color: #f0e1e4;
    color: #383838;
}

#klaro-cookie-notice .cn-buttons .cn-decline{
    background-color: transparent;
    color: #383838;
}

#klaro-cookie-notice .cn-learn-more{
    background-color: transparent;
    color: #383838;
    text-decoration: underline;
}

@media (max-width: 1400px){
	
	.maxwidth{
		max-width: 90%;
	}
	
}

@media (max-width: 600px){
	
    h1{
        font-size: 2rem;
    }
    
    h2{
        font-size: 1.5rem;
    }
    
    h3{
        font-size: 1.2rem;
    }
    
    img.round{
        max-width: 100%;
        margin: 20px auto;
        display: block;
    }
	
}