/* FOOTER */
footer {
	padding: 0 !important;
}

footer > .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap-reverse;
}

footer .footer-logo {
	margin: 20px 0 !important;
	float: none !important;
	text-align: center !important;
	width: auto !important;
}

footer .id-container {
	white-space: nowrap;
	text-align: center;
	padding-top: 30px;
}

footer > .container > * {
	flex: 0 0 100%;
}

footer .facebook {
	text-align: center;
	padding-top: 30px;
}

footer .facebook img {
	vertical-align: middle;
	cursor: pointer;
}

.downfooter {
	background: #7bb543; 
	width: 100%;
	color: #ffffff!important;
	text-align: center;
	font-size: 18px;
	font-weight: lighter;
	padding: 20px 0;
}

.web-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10000;
	width: 380px;
	height: 100vh;
	transform: translateX(100%);
	transition: all .3s ease-in-out;
}

.sidebar-content {
	opacity: 0;
	transition: all .3s ease-in-out;
	background-color: rgba(255,255,255,.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
	height: 100%;
}

.web-sidebar.active {
	transform: translateX(0);
}

.web-sidebar.active .sidebar-content {
	opacity: 1;
	height: 100%;
}

.sidebar-unfold {
	display: flex;
	position: absolute;
	top: 33%;
	left: 0;
	transform: translate(-98%, -50%);
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	background: #f9b122;
	color: #ffffff;
	padding: 5px 0;
	cursor: pointer;
}

.sidebar-unfold i {
	margin: 5px 10px;
}


.close-sidebar {
	position: absolute;
	top: 18px;
	right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.close-sidebar::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 3px;
	background: #eee;
	transform: rotate(45deg);
}

.close-sidebar::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 3px;
	background: #eee;
	transform: rotate(-45deg);
}

.sidebar-title {
	background: #f9b122;
	padding: 20px 50px 20px 20px;
	font-size: 20px;
	font-weight: lighter;
	color: #000000;
}

.sidebar-name {
	padding: 20px 20px 10px 20px; 
	font-size: 20px;
	font-weight: lighter;
}

.sidebar-contact {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 20px;
	padding-bottom: 12px;
}

.sidebar-contact i {
	color: #f9b122;
}

.sidebar-contact span {
	margin: 0 15px;
	white-space: nowrap;
}

.sidebar-contact:last-child {
	padding-bottom: 20px;
}

.sidebar-content a:not(.btn) {
    text-decoration: none;
    border-bottom: 1px dotted;
    border-bottom-color: #f9b122;
    position: relative;
    color: #000000;
}

.sidebar-content a:not(.btn):hover {
    color: #000000 !important;
}

.sidebar-content a:not(.btn):after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    border-bottom: 2px solid #f9b122;
    transition: width 0.5s ease;
}

.sidebar-content a:not(.btn):hover:after {
    width: 100%;
}


@media only screen and (min-width: 540px) {

	footer > .container {
		/*margin: 0 !important;*/
		/*margin-left: 5% !important;*/
	}

	footer > .container > * {
		flex: unset;
	}

	footer .footer-logo {
		text-align: left !important;
	}

	footer .id-container {
		text-align: right;
		flex-grow: 1;
		padding-top: 0px;
		padding-right: 30px;
	}

	footer .facebook {
		padding-top: 0px;
		text-align: right;
	}
}