
/* Footer */

footer {
	background-color: var(--main-content-background);
	color: var(--text-color);
	width: 100%;
	display: flex;
	justify-content: center;
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	margin-left: 20px;
	margin-right: 20px;
	position: relative;
	width: calc(100% - 40px);
	max-width: 1200px;
	background-color: #2c2c2c;
	color: white;
	flex-direction: column;
	border-radius: 20px;
    gap: 20px;
}
.footer-first-section {
	gap: 20px;
	width: calc(100% - 40px);
	display: flex;
	justify-content: space-between;
}
.footer-top-section {
	gap: 10px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.footer-middle-section {
    width: 100%;
	display: flex;
    max-width: 600px;
	justify-content: space-between;
}
.footer-description {
    max-width: 500px;
}
.footer-description p {
    font-size: 20px;    
	color: #c8c7c6;
    margin: 0;
}
.footer-column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.footer-column-title {
	font-weight: 500;
	font-size: 23px;
}
.footer-column-links {
	display: flex;
	flex-direction: column;
    gap: 10px;
}
.footer-column-links a {
    color: #c8c7c6;
    text-decoration: none;
    font-size: 18px;
    font-weight: 200;
}
.footer-column-links a:hover {
    text-decoration: underline;
}
.footer-column-links a.current {
    color: var(--main-light_accent-color);
}


.footer-bottom {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0;
	width: 100%;
}

.footer-bottom p {
    color: white;
    margin: 0;
    font-size: 14px;
    text-decoration: none;
}

.powered-by-container {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 20px;
}
.powered-by {
    height: 25px;
}

.footer-yt-item,
.footer-insta-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
}

/* End of Footer */


@media (max-width: 1000px) {
    .footer-first-section {
        flex-direction: column;
        gap: 40px;
    }
    .footer-middle-section {
        max-width: unset;
    }
    .footer-content {
        gap: 40px;
    }
}



@media (max-width: 600px) {
    .footer-middle-section {
        flex-direction: column;
        gap: 30px;
    }
    .footer-description p {
	    font-size: 19px;
    }

    .footer-column-title {
	    font-size: 21px;
    }
    .footer-column-links a {
        font-size: 16px;
    }
}