/*!
Theme Name: ecommerce
*/

.flex-row-space-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.flex-row-space-around {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}

.flex-row-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-bottom: 1em;
}

.flex-col-left, .flex-col-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flex-col-left {
	align-items: flex-start;
}

.flex-col-right {
	align-items: flex-end;
}

.flex-col-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 1em;
}

.gap10 {
	gap: 10px;
}

.hr {
	background-color: var(--dark-blue);
	width: 100%;
	height: 1px;
}

.text-footer {
	color: var(--dark-blue);
	/*font-size: var(--h7);*/
	font-weight: 500;
    text-transform: capitalize;
}

.text-footer>a#phone_number {
	font-size: var(--h7);
}

.text-footer-white {
/*	color: var(--main-bg-color);
	font-size: var(--h5);
	display: flex;
	align-items: center;*/
}

.footer-bottom-line {
	background-color: var(--dark-blue);
	padding: 0 10px;
}

.order0 {
	order: 0;
}

.order1 {
	order: 0;
}

.site-footer {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	order: 100;
	font-size: var(--h7);
	background: var(--bg2);
    margin-top: 3em;
}

.site-footer__menu {
	justify-content: center;
    font-size: var(--h5);
    font-weight: 500;
    color: var(--text_color1);
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.footer-navigation {
    display: flex;
}

.footer-navigation ul {
    display: flex;
    margin: 0;
    padding-left: 0;
    flex-direction: column;
}

.footer-navigation li {
    display: flex;
    flex-direction: row;
    padding: 5px 15px;
    border-bottom: 2px solid var(--bg2);
    margin-bottom: -2px;
}

.footer-navigation a {
    color: var(--text_color2);
}

.footer-navigation a:hover {
    /*color: var(--hovlink_color1);*/
}

.footer-navigation li:hover {
    border-bottom-color: var(--elem_color1);
    transition: 0.5s border-bottom-color ease;
}

.footer-branding__text {
	font-size: var(--h5);
    line-height: 25px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text_color2);
}

@media (max-width: 980px) {
	
	.flex-row-space-between {
	    flex-direction: column;
	}

@media (max-width: 600px) {

	.flex-row-space-between {
	    flex-direction: column;
	}

	.site-footer {
	    font-size: var(--h7-600);
	}
}

