
/* =======================
   Footer
======================= */

.footer {
    background-color: #000000;
    color: #FFFFFF;
}

.footer .container {
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box;
}

/* =======================
   Oberer Bereich
======================= */

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 80px;
    padding: 80px 0px 80px 0px;
}

.footer-column h3 {
    margin: 0px 0px 18px 0px;
    padding: 0px;
    color: #E3B344;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
}

.footer-column p {
    margin: 0px 0px 60px 0px;
    padding: 0px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
}

.footer-links {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.footer-links li {
    position: relative;
    margin: 0px 0px 22px 0px;
    padding: 0px 0px 0px 32px;
}

.footer-links li:last-child {
    margin-bottom: 0px;
}

.footer-links li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0px;
    width: 6px;
    height: 6px;
    background-color: #E3B344;
}

.footer-links a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-color: #FFFFFF;
}

/* =======================
   Untere Zeile
======================= */

.footer-bottom {
    background-color: #E3B344;
    color: #000000;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 80px;
    align-items: center;
    padding: 14px 0px 14px 0px;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    color: #000000;
    font-size: 16px;
    line-height: 1.3;
}

.footer-bottom-center {
    display: flex;
    gap: 42px;
}

.footer-bottom a {
    color: #000000;
    text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000000;
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.footer .container {
		padding-left: 20px;
		padding-right: 20px;
	}

    .footer-top {
        column-gap: 42px;
        padding: 70px 0px 70px 0px;
    }

    .footer-column h3 {
        font-size: 28px;
    }

    .footer-column p,
    .footer-links a {
        font-size: 15px;
    }

    .footer-column p {
        margin-bottom: 48px;
    }

    .footer-bottom-grid {
        column-gap: 42px;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        font-size: 15px;
    }

    .footer-bottom-center {
        gap: 28px;
    }
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

    .footer-top {
        grid-template-columns: 1fr;
        row-gap: 58px;
        padding: 60px 0px 60px 0px;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .footer-column p {
        font-size: 16px;
        margin-bottom: 34px;
    }

    .footer-column {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-links {
		display: block;
		width: 240px;
		max-width: 100%;
		text-align: left;
		padding-left: 40px;
	}

    .footer-links a {
        font-size: 16px;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr;
        row-gap: 14px;
        text-align: center;
        padding: 16px 0px;
		
		justify-items: center;
    }
	
	.footer-bottom-left,
	.footer-bottom-center,
	.footer-bottom-right {
		text-align: center;
	}

    .footer-bottom-center {
        justify-content: center;
        gap: 24px;
    }
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

    .footer-top {
        row-gap: 48px;
        padding: 50px 0px 50px 0px;
    }

    .footer-column h3 {
        font-size: 30px;
    }

    .footer-column p,
    .footer-links a {
        font-size: 15px;
    }

    .footer-column p {
        margin-bottom: 28px;
    }
	
	.footer-links {
		width: 210px;
		padding-left: 30px;
	}

    .footer-links li {
        margin-bottom: 18px;
        padding-left: 26px;
    }

    .footer-links li::before {
        top: 8px;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        font-size: 15px;
    }

    .footer-bottom-center {
        gap: 18px;
        flex-wrap: wrap;
    }
}



