/*-------------------*/
footer {
	background-color: white;
}
footer .left {
	padding: 0px 32px;
	margin-bottom: 16px;
	/* display: flex; */
	flex-direction: column;
	align-items: center;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 16px 64px;
  align-items: flex-end;
  /* margin-bottom: 32px; */
}
.footer-logo{
	/* display: flex; */
	width: 128px;
	margin-bottom: 32px;
}
.footer-nav{
	display: flex;
	flex-wrap: wrap;
	font-family: 'Forum', sans-serif;

}
.footer-nav a{
	color: black;
	text-decoration: none;
	padding-inline: 6px;
	font-family: 'Forum', sans-serif;
  font-size: x-large;
}
.footer-contacts{
	width: 240px;
	height: 200px;
	border: solid #916d52 2px;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-contacts p {
	font-size: larger;
	margin: 0;
	font-weight: 600;
}
.footer-contacts .header {
	font-size: x-large;
	font-weight: bold;
	font-family: 'Forum';
	margin-bottom: 8px;
}
.footer-contacts .access-time{
	margin-bottom: 12px;
	font-family: 'Forum';
	font-size: larger;
	}
.footer-contacts .data-row {
	display: inline-flex;
	font-family: 'Forum';
	font-size: larger;
	font-weight: 300;
	width: inherit;
	/* padding-inline: 2px; */
	margin-bottom: 10px;
}

.footer-contacts img{
	width: 24px;
	margin-left: 16px; 11px;
	margin-inline-end: 12px;
}
footer .right {
	padding: 0px 24px;
	width: 300px;
	margin-bottom: 48px;
	text-align: center;
}
footer .right img{
	width: 64px;
}
footer .right a {
	margin-inline: 6px;
}
footer .our-social-networks {
	display: flex;
	font-family: 'Forum';
	font-size: 24px;
	margin-bottom: 8px;
	justify-content: center;
}
footer .globorga {
	font-family: 'Forum';
	font-size: 20px;
	margin-top: 16px;
}
footer .footer-social-networks{
	display: flex;
	justify-content: center;
}

footer .legal-company-info {
	font-family: 'Forum', serif;
	color: gray;
	
}

footer .legal-company-info p {
	font-size: 16px;
	margin-block-start: 6px;
	margin-block-end: 6px;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 32px 16px;
    }
    footer .left {
        padding: 0;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .footer-nav {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
    .footer-contacts {
        width: 100%;
        max-width: 300px;
        margin-bottom: 32px;
    }
    footer .right {
        width: 100%;
        padding: 0;
    }
    .footer-logo {
        margin: 0 auto;
        display: block;
    }
}