.footer {
	background-color: #102039;
	padding: 2.5rem 0 4rem 0;
	color: rgba(255, 255, 255, 0.732);
	position: relative;
}

.footer__container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-self: flex-start;
}

.footer__top {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
}

.footer__row {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
}

.footer__col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer__col--item {
	font-size: 11px;
	font-weight: 100;
	text-transform: uppercase;
}

.header__bottom {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: space-between;
}

.header__bottom--text {
	font-size: 12px;
	color: #999;
}

.header__bottom--icons {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	opacity: 0.2;
}

@media screen and (max-width: 700px) {
	.footer__top,
	.header__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}
	.header__bottom {
		gap: 1.5rem;
	}
	.header__bottom--icons {
		width: 100%;
		justify-content: space-between;
	}
}

@media screen and (max-width: 400px) {
	.header__bottom--icons img {
		height: 11px;
	}
}

@media screen and (max-width: 350px) {
	.header__bottom--icons img {
		height: 10px;
	}
}

.footer::after {
	background-color: transparent;
	background-image: radial-gradient(#999 1px, transparent 1px);
	background-position: 1px 1px;
	background-size: 5px 5px;
	content: '';
	display: block;
	position: absolute;
	width: 40px;
	bottom: 3px;
	height: 40px;
	left: 0;
}
.footer::before {
	background-color: transparent;
	background-image: radial-gradient(#999 1px, transparent 1px);
	background-position: 1px 1px;
	background-size: 5px 5px;
	content: '';
	display: block;
	position: absolute;
	width: 40px;
	height: 80px;
	right: 2px;
	top: 0;
}
