footer {
	display: grid;
	grid-template-columns: 35% 40% 25%;
	height: 40%;
	width: 90%;
	margin: 8% 0;
	background: linear-gradient(200deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15));
	backdrop-filter: blur(32px) saturate(1.2);
	-webkit-backdrop-filter: blur(32px) saturate(1.2);
	/*box-shadow: 0 0 50px -35px black;*/
	color: white;
	border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 20%);
}

footer .app_description {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	margin-top: 4%;
	padding-left: 24px;
}

footer .app_description .upper {
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
	align-items: flex-end;
}

footer .app_description .upper a img {
	transition: .25s;
}

footer .app_description .upper a:hover img {
	transform: scale(1.15);
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
}

footer .app_description .lower {
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	font-size: 14px;
	font-weight: 600;
}

.lower p {
	padding: 0 12%;
}

.credentials a {
	color: white;
	text-decoration: none;
	font-weight: 900;
}

footer .app_description a img {
	width: 75px;
}

footer .app_description .upper .text {
	align-self: center;
}

footer .app_description .text h2,
footer .app_description .text h6 {
	margin: 0;
}

footer .app_links {
	display: flex;
	justify-content: space-around;
	text-align: left;
	margin-top: 2%;
}

footer .app_links h4 {
	font-weight: 800;
	margin-bottom: 0;
	transition: 0.2s;
}

footer .app_links h4 a {
	text-decoration: none;
	color: white;
	font-weight: 800;
}

footer .app_links h4 a:hover {
	font-weight: 900;
}

footer .app_links ul {
	padding: 0;
	list-style: none;
	line-height: 1.2;
}

footer .app_links li a {
	display: inline-block;
	min-width: 62px;
	text-decoration: none;
	color: white;
	font-size: 14px;
	font-weight: 300;
	transition: 0.4s;
}

.app_links li a:hover {
	font-weight: 600;
}

footer .buttons {
	margin-top: 4%;
	height: 60%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
}

.language_dropdown {
	position: relative;
	display: inline-block;
}

.language_dropbtn {
	padding: 10px 0;
	width: 120px;
	cursor: pointer;
	border-radius: 10px;
	border: 2px solid white;
	background: transparent;
	color: white;
	text-decoration: none;
	font-family: 'Mukta', sans-serif;
	font-size: 12px;
	font-weight: 600;
	transition: 0.3s;
}

.language_dropdown-content {
	width: 116px;
	display: block;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	right: 0;
	border-radius: 0 0 10px 10px;
	background: transparent;
	border: 2px solid white;
	border-top: none;
	transition: 0.3s;
}

.language_dropdown-content a {
	display: block;
	max-width: 116px;
	padding: 12px 0;
	border-radius: 0 0 6px 6px;
	color: black;
	background: white;
	text-decoration: none;
	font-size: 12px;
	transition: 0.3s;
}

.language_dropdown-content a:hover {
	background: transparent;
	color: white;
	font-weight: 600;
}

.language_dropdown:hover .language_dropbtn:hover {
	background: transparent;
	color: white;
	font-weight: 600;
}

.language_dropdown:hover .language_dropbtn {
	background: white;
	color: black;
	border-radius: 10px 10px 0 0;
	font-weight: 400;
}

.language_dropdown:hover .language_dropdown-content {
	opacity: 1;
	visibility: visible;
}

.full_button {
	padding: 8px 22px;
	text-decoration: none;
	border: 2px solid white;
	color: black;
	background: white;
	border-radius: 10px;
	transition: 0.3s;
}

.full_button,
.empty_button {
	font-size: 14px;
	font-weight: 600;
	font-family: 'Mukta', sans-serif;
}

.full_button:hover {
	background: transparent;
	color: white;
}

.bottom_line {
	display: flex;
	justify-content: space-between;
	padding: 12px 48px;
	align-items: end;
	width: calc(90dvw - 48px * 2);
	font-size: 12px;
}

.bottom_line p {
	width: 100%;
}

.bottom_line a {
	color: white;
	font-weight: 600;
	width: 100%;
}

@media screen and (max-width: 705px) {
	footer .app_description a img {
		width: 55px;
	}

	footer {
		grid-template-columns: 40% 35% 25%;
	}

	.lower p {
		padding: 0;
	}
}

@media screen and (max-width: 600px) {
	footer {
		height: 75dvh;
		grid-template-rows: none;
		grid-template-columns: none;
	}

	footer .app_description {
		padding: 0;
	}

	footer .app_description .text {
		align-self: flex-start;
	}

	footer .app_description a img {
		width: 65px;
	}

	.lower p {
		padding: 0 12%;
	}

	footer .buttons {
		flex-direction: row;
	}

	.bottom_line {
		flex-direction: column;
	}

	.bottom_line a,
	.bottom_line p {
		margin: 8px 0;
		font-size: 12px;
		font-weight: 500;
	}
}

@media screen and (max-width: 450px) {
	.lower .credentials {
		margin: 36px 0;
	}
}

@media screen and (max-height: 600px) {
	footer {
		height: 90dvh;
	}
}