:root {
    --first: #b6962e;
    --second: #be9229;
    --third: #c98937;
    --fourth: #bea348;
  }

.logo img {
    filter: grayscale();
}

nav ul li a{
    color: var(--first)
}

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

.flexbox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.col-2{
    width: 49%;
}

ul li.col-2{
    width: 47%;
}

.col-3{
    width: 32%;
}

.col-4 {
    width: 23.5%;
}

h1 {
    margin:auto;
}

h2 {
    margin-bottom: 40px;
    margin-top: 0;
    color: var(--first);
}

.cta {
    background-color: var(--first);
}

h2 small {
    font-size: 70%;
    font-family: 'Montserrat', sans-serif;
}

h3 {
    margin-bottom: 10px;
    color: var(--first)
}

h3 small{
    font-size: 70%;
    color: var(--second);
}

b {
    color: var(--first)
}

h4 {
    color: var(--third);
}

p ~ h3 {
    margin-top: 20px;
}

p {
    margin-bottom: 10px;
}

ul {
    margin-bottom: 20px;
}

header .box {
    text-align:center;
}

header .cta{
    margin-top:30px;margin-bottom:20px
}

header .cta:nth-of-type(2){
    background-color: var(--fourth);
}

header p {
    color: #fff;
}

p.smaller{
    color:#fff;font-size:80%;display: flex; align-items: center;justify-content: center;
}

.first h2 {
    text-align: center;
}

ul.arrow li{
    list-style: none;
    position: relative;
    margin-left: 17px;
}

ul.arrow li::before{   
    content: '\2794'; 
    color: var(--fourth);
    position: absolute;
    left: -22px;
}

ul.heart li{
    list-style: none;
    position: relative;
    margin-left: 11px;
}

ul.heart li::before {
    content: '\2661'; 
    font-weight: 700;
    color: var(--fourth);
    position: absolute;
    left: -22px;
}

ul.check li{
    list-style: none;
    position: relative;
    margin-left: 12px;
}

ul.check li::before {
    content: '\2713'; 
    color: var(--fourth);
    position: absolute;
    left: -22px;
}

ul.crossed li{
    list-style: none;
    position: relative;
    margin-left: 12px;
}

ul.crossed li::before {
    content: '\2717'; 
    color: var(--fourth);
    position: absolute;
    left: -22px;
}

.highlight {    
    /* color:var(--fourth); */
    padding: clamp(20px, 5%, 60px);
    margin-top: 30px;
    border-radius: 5px;
}

.highlight ~p {
    margin-top: 20px;
}

.bg1 {
    background-color: rgba(138, 88, 23, 0.116);
}

.bg1 .bg1 {
    background-color: rgba(255,255,255,0.5)
}

.bg2{
    background: url(../images/hintergrund.png)no-repeat center / cover;
    background-attachment: fixed;
}

.second h2 {
    text-align: center;
}

.third h2 {
    text-align: center;
}

.fourth h2 {
    text-align: center;
}

.fifth h2{
    text-align: center;
    margin-bottom: 10px;
}

.fifth .col-2 {
    width: 49%;
}

.sixth h2{
    text-align: center;
}

.apostroph::before {
    content: '“';
    display: block;
    color: var(--first);
    height: 30px;
    font: 700 50px/30px 'Georgia', serif;
    top: 0;
    left: 0;
}

.seventh h2 {
    text-align: center;
}

img {
    max-width: 100%;
}

.eighth h2 {
    text-align: center;
}

.eighth .flexbox{
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
}

.eighth .highlight{
    margin-top: 10px;
}

.eighth .highlight-b h3 {
    color: #fff;
}

.eighth .highlight-b .cta {
    background-color: #fff;
    color: var(--fourth);
}

.eighth .highlight-b {
    color: #fff;
    background-color: var(--fourth);   
    margin-top: 30px; 
}

.ninth h2{
    text-align: center;
}

.ninth .container {
    max-width: 1200px
}

.tenth {
    background-color: var(--fourth);
    color: #fff;
    text-align: center;
}

.tenth h2, .tenth h3, .tenth b {
    color: #fff;
}

.tenth .cta {
    background-color: #fff;
    color: var(--fourth);
    margin-bottom: 30px;
}

footer {
	background: var(--first);
}



@media screen and (max-width: 1024px){
    .col-2, .fifth .col-2, ul li.col-2{
        width: 100%;
    }
    
    .col-3{
        width: 48%;
    }
    
    .col-4 {
        width: 32%;
    }
}

@media screen and (max-width: 800px){    
    .col-3{
        width: 100%;
    }
    
    .col-4 {
        width: 48%;
    }
}

@media screen and (max-width: 560px){    
    .col-4 {
        width: 100%;
    }
}