/**
 * Style of footer template
 */

 #footer {
    background-color: rgba(0, 0, 0, .8);
    -webkit-box-shadow: inset -10px -10px 50px 0 rgba(0, 0, 0, 1), inset 10px 10px 50px 0 rgba(0, 0, 0, 1);
            box-shadow: inset -10px -10px 50px 0 rgba(0, 0, 0, 1), inset 10px 10px 50px 0 rgba(0, 0, 0, 1);
    font-size: 1rem;
    padding: 1rem 2rem;
}
.footer_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 2rem;
}
.footer_up .logo {
    max-width: 250px;
    width: 30%;
    padding: 2rem;
}
.footer_up .logo img {
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 100px;
}
.footer_up .footer_title {
    color: rgba(255, 255, 255, .9);
    padding: 0;
    font-size: 2rem;
    font-family: 'Special Elite', sans-serif;
}
.footer_bottom {
    border-top: .5px solid rgba(239, 152, 56, .5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: 32% 32% 32%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: .5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap-reverse;
            flex-flow: row wrap-reverse;
    gap: .5rem;
}
.site_credits {
    color: rgba(255, 255, 255, .2);
}
.site_credits span {
    color: rgba(255, 255, 255, .3);
}
/* RESPONSIVE */
@media all and (max-width: 1000px) {
    .footer_bottom {
        gap: .5rem;
    }
    .site_credits {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
@media all and (max-width: 850px) {
    .footer_up .logo {
        width: 35%;
    }
}
@media all and (max-width: 750px) {
    #footer {
        padding: 1rem 1rem .5rem;
    }
    .footer_up {
        padding: 0;
    }
    .footer_up .footer_title {
        font-size: 1.7rem;
    }
	.footer_bottom > * {
		-webkit-box-flex: unset;
		    -ms-flex: unset;
		        flex: unset;
		-webkit-box-pack: center !important;
		    -ms-flex-pack: center !important;
		        justify-content: center !important;
	}
    .footer_legals_container,
    .footer_main_nav_container {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
	.footer_up .logo {
		max-width: 250px;
		width: 30%;
		padding: 1.5rem;
	}
}
@media all and (max-width: 600px) {
    .footer_up .logo {
        width: 40%;
    }
}
@media all and (max-width: 480px) {
    .footer_up .logo {
        width: 45%;
		padding: 1rem;
    }
    .footer_up .footer_title {
        font-size: 1.4rem;
    }
    .site_credits {
        font-size: .9rem;
    }
}
@media all and (max-width: 380px) {
    .footer_up .footer_title {
        font-size: 1.2rem;
    }
}
@media all and (max-width: 280px) {
    .site_credits {
        font-size: .8rem;
    }
}