:root {
	--blue: #0F1D4A;
	--light-blue: #00AAEA;
	font-size: 16px;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: 'Circe', sans-serif;
}

h1,
.h1 {
	color: #FFFFFF;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 4rem;
	line-height: 100%;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

h2,
.h2 {
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 3rem;
	line-height: 105%;
}

button {
	padding: 1rem 2rem;
	background: var(--light-blue);
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	color: #fff;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	cursor: pointer;
}

.container {
	margin: auto;
	max-width: 1300px;
	width: 100%;
}

.d-flex {
	display: flex;
}

.justify-between {
	justify-content: space-between;
}

.align-items-center {
	align-items: center;
}

.flex-wrap {
	flex-wrap: wrap;
}

img {
	max-width: 100%;
	user-select: none;
}

.blackout {
	display: none;
}

.blackout.active {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(21, 41, 105, 0.9);
	z-index: 110;
}

.blackout .content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 95%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.blackout .content .title {
	margin-bottom: 1.6rem;
	color: #fff;
}

.blackout .content .sub-title {
	margin-bottom: 3rem;
	color: #fff;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 200;
	font-size: 1.5rem;
	line-height: 150%;
}

.black-block {
	display: none;
	height: 3rem;
	background: #000;
}

.hidden-menu {
	display: none;
	position: fixed;
	top: 100%;
	width: 100%;
	height: 100%;
	background: var(--blue);
	transition: 0.3s;
	z-index: 10;
}

.hidden-menu .container {
	margin-top: 10rem;
}

.hidden-menu ul {
	list-style-type: none;
}

.hidden-menu ul li {
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hidden-menu ul li:last-child {
	border-bottom: none;
}

.hidden-menu ul li a {
	color: #fff;
	text-decoration: none;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 2.3rem;
	line-height: 120%;
}

.hidden-menu.active {
	top: 0;
}

.hidden-menu.active+header {
	position: relative;
	z-index: 10;
}

.hidden-menu.active+header .logo {
	opacity: 0;
}

header {
	position: relative;
	max-width: 1700px;
	margin: auto;
	margin-top: 3rem;
	z-index: 1;
}

header .logo {
	transition: 0.3s;
}

header ul {
	list-style-type: none;
}

header ul li {
	margin-left: 2rem;
}

header ul a {
	color: #FFFFFF;
	text-decoration: none;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 1rem;
	line-height: 120%;
}

header .burger {
	display: none;
	position: relative;
	width: 3rem;
	height: 1rem;
	cursor: pointer;
}

header .burger span {
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}

header .burger span:first-child {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

header .burger span:last-child {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

header .burger.active span:first-child {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

header .burger.active span:last-child {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.banner {
	position: relative;
	height: 800px;
	margin-top: calc(-52px - 3rem);
	overflow: hidden;
}

.banner .image-wrap {
	height: 100%;
}

.banner .image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner .image-wrap img.desktop {
	display: block;
}

.banner .image-wrap img.mobile {
	display: none;
}

.banner .banner-text {
	position: absolute;
	top: 55%;
	width: 100%;
	transform: translateY(-50%);
}

.banner .slogan {
	margin-bottom: 2rem;
	width: 70%;
}

.banner .sub-slogan {
	/* width: 40%; */
	color: #fff;
	font-family: 'Circe';
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 150%;
}

.banner .container {
	position: relative;
}

/* .banner .container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 140%;
	height: 110%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
} */

.transact-more {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: #fff;
}

.transact-more .title {
	margin-bottom: 1.7rem;
	color: var(--blue);
}

.transact-more .sub-title {
	margin-bottom: 2.7rem;
	color: var(--blue);
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 150%;
}

.transact-more .cards {
	flex-wrap: wrap;
	align-items: stretch;
}

.transact-more .cards .card {
	margin-bottom: 0.5rem;
	padding: 2rem;
	width: calc(100% / 3 - 0.5rem);
	background: #F7F9FC;
}

.transact-more .cards .card .check {
	position: relative;
	margin-right: 1.5rem;
	width: 3rem;
	height: 3rem;
	background: var(--light-blue);
	border-radius: 50%;
}

.transact-more .cards .card .check img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.transact-more .cards .card .text {
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 139.5%;
}

.your-inclusive {
	padding-top: 9rem;
	padding-bottom: 9rem;
	background: #2C479D;
}

.your-inclusive .title {
	margin-bottom: 1.5rem;
	color: #fff;
}

.your-inclusive .sub-title {
	margin-bottom: 3rem;
	color: #fff;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 130%;
}

.your-inclusive .cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 6px;
	row-gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
	align-items: stretch;
}

.your-inclusive .cards .card {
	padding: 2.25rem;
	background: #fff;
}

.your-inclusive .cards .card .card-title {
	margin-bottom: 1.5rem;
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 2rem;
	line-height: 110%;
}

.your-inclusive .cards .card .card-text {
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 139.5%;
}

.by-utilising {
	position: relative;
}

.by-utilising .image-wrapp {
	height: 700px;
}

.by-utilising .image-wrapp img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.by-utilising .image-wrapp img.desktop {
	display: block;
}

.by-utilising .image-wrapp img.mobile {
	display: none;
}

.by-utilising .wrapper {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}

.by-utilising .box {
	padding: 2.5rem 3.5rem 2.5rem;
	width: 55%;
	background: #fff;
}

.by-utilising .box .title {
	margin-bottom: 2rem;
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
	line-height: 105%;
}

.by-utilising .box .text {
	position: relative;
	margin-left: auto;
	margin-bottom: 1.5rem;
	padding-right: 5%;
	width: 90%;
	color: var(--blue);
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 150%;
	z-index: 1;
}

.by-utilising .box .text::before {
	content: '';
	position: absolute;
	top: -40%;
	left: -15%;
	width: 8rem;
	height: 8rem;
	background: url(../images/quotes.svg) no-repeat center;
	background-size: contain;
	opacity: 0.05;
}

.by-utilising .box .comment {
	margin-left: auto;
	padding-right: 5%;
	width: 90%;
}

.by-utilising .box .comment .author {
	margin-bottom: 0.25rem;
	color: var(--blue);
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 150%;
}

.by-utilising .box .comment .content {
	color: var(--blue);
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 150%;
}

.rebit-tradefinance {
	padding: 9rem 0 8rem 0;
}

.rebit-tradefinance .title {
	margin-bottom: 4rem;
	color: var(--blue);
}

.rebit-tradefinance .sub-title {
	color: var(--blue);
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 150%;
}

.rebit-tradefinance .card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
	width: calc(100% / 3 - 0.5rem);
	background: #F7F9FC;
}

.rebit-tradefinance .card .card-header {
	margin-bottom: 3rem;
	color: var(--light-blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 5.125rem;
	line-height: 110%;
}

.rebit-tradefinance .card .card-text .card-title {
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 2rem;
	line-height: 120%;
}

.rebit-tradefinance .card .card-text .card-sub-title {
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 139.5%;
}

.get-in-touch {
	padding-top: 7rem;
	padding-bottom: 5rem;
	background: #F7F9FC;
}

.get-in-touch .wrapper.left {
	padding-top: 4rem;
	width: 40%;
}

.get-in-touch .wrapper.right {
	width: 45%;
}

.get-in-touch .title {
	margin-bottom: 1.5rem;
	color: var(--blue);
}

.get-in-touch .sub-title {
	margin-bottom: 2rem;
	padding-bottom: 6.5rem;
	color: var(--blue);
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 150%;
	border-bottom: 1px solid #E5E5EC;
}

.get-in-touch .contacts-item {
	margin-bottom: 1.5rem;
}

.get-in-touch .contacts-item .name {
	margin-bottom: 0.5rem;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 120.5%;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	opacity: 0.3;
}

.get-in-touch .contacts-item .value {
	color: var(--blue);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 120%;
	text-decoration: none;
}

.get-in-touch form {
	padding: 5rem;
	background: #fff;
}

.get-in-touch form .form-item {
	margin-bottom: 1rem;
}

.get-in-touch form .form-item:last-child {
	margin-bottom: 1.75rem;
}

.get-in-touch form .custom-select {
	position: relative;
}

.get-in-touch form .custom-select .custom-select-item {
	padding: 1.5rem;
	background: #F7F9FC;
	color: #8190BF;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 105%;
	transition: 0.3s;
	cursor: pointer;
}

.get-in-touch form .custom-select .selected {
	position: relative;
	cursor: pointer;
}

.get-in-touch form .custom-select .selected::after {
	content: '';
	position: absolute;
	right: 1rem;
	width: 1rem;
	height: 1rem;
	background: url(../images/arrow-down.svg) no-repeat center;
}

.get-in-touch form .custom-select-options {
	position: absolute;
	width: 100%;
	max-height: 0;
	overflow: hidden;
}

.get-in-touch form .custom-select-options.active {
	animation: custom-select-animate 1s forwards;
}

.get-in-touch form .custom-select .option:hover {
	background: #d8dee7;
}

.get-in-touch form .custom-select .option.active {
	color: #fff;
	background: #00AAEA;
}

.get-in-touch form .form-item input {
	padding: 1.5rem;
	width: 100%;
	background: #F7F9FC;
	color: #8190BF;
	border: none !important;
	outline: none !important;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 105%;
}

.get-in-touch form .form-item input::placeholder {
	color: #8190BF;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 105%;
}

.get-in-touch form .form-item .d-flex input {
	width: calc(50% - 0.5rem);
}

.get-in-touch form .policy-agree {
	margin-bottom: 1.75rem;
}

.get-in-touch form .policy-agree label {
	cursor: pointer;
}

.get-in-touch form .policy-agree a {
	color: var(--light-blue);
	text-decoration: none;
}

.get-in-touch form .policy-agree .checkbox {
	margin-right: 0.9rem;
	width: 1.75rem;
	height: 1.75rem;
	background: #EFF3F8;
}

.get-in-touch form .policy-agree #policy {
	display: none;
}

.get-in-touch form .policy-agree #policy:checked+label .checkbox {
	background-color: var(--light-blue);
	background-image: url(../images/check.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 60%;
}

footer {
	padding-top: 6.5rem;
	padding-bottom: 4rem;
	background: #04051F;
}

footer .mb {
	margin-bottom: 8rem;
}

footer .logo {
	width: calc(100% / 12 * 4);
}

footer nav {
	width: calc(100% / 12 * 7);
}

footer nav .name {
	margin-bottom: 1.57rem;
	color: #fff;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 120.5%;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	opacity: 0.5;
}

footer nav ul {
	list-style-type: none;
}

footer nav li {
	margin-bottom: 1.5rem;
}

footer nav li a {
	color: #fff;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 700;
	font-size: 1rem;
	line-height: 120%;
	text-decoration: none;
}

footer .socials {
	flex-direction: column;
	width: calc(100% / 12 * 1);
}

footer .socials a {
	display: block;
	margin-left: auto;
	margin-bottom: 2rem;
	width: 1.75rem;
	height: 1.75rem;
}

footer .socials a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

footer .copyright {
	margin-right: 4.5rem;
	color: #fff;
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 0.8rem;
	line-height: 1;
	opacity: 0.7;
}

footer .small-nav .small-nav-item {
	margin-right: 4.5rem;
}

footer .small-nav .small-nav-item a,
footer .developer {
	color: rgba(255, 255, 255, 0.55);
	font-family: 'Circe';
	font-style: normal;
	font-weight: 400;
	font-size: 0.8rem;
	line-height: 1;
	opacity: 0.7;
	text-decoration: none;
}

footer .developer {
	margin-right: 0.5rem;
}

footer .desktop-menu {
	display: block;
}

footer .mobile-menu {
	display: none;
}

.scroll-top {
	position: fixed;
	right: 5rem;
	bottom: 3rem;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	transition: 0.3s;
	opacity: 0;
	z-index: 100;
}

.scroll-top.active {
	opacity: 1;
}

@keyframes custom-select-animate {
	0% {
		max-height: 0;
	}

	100% {
		max-height: 50vw;
	}
}

@media screen and (max-width: 1720px) {
	header {
		max-width: 1300px;
	}
}

@media screen and (max-width: 1430px) {

	:root {
		font-size: 16px;
	}

	header,
	.container {
		max-width: 992px;
	}

	.banner .container::before {
		display: none;
	}

	.banner .slogan {
		width: 100%;
		font-size: 65px;
	}
}

@media screen and (max-width: 1092px) {

	header,
	.container {
		max-width: 768px;
	}

	.transact-more .cards .card {
		width: calc(100% / 2 - 0.25rem);
	}

	.your-inclusive .cards {
		grid-template-columns: 1fr 1fr;
	}

	.by-utilising .box {
		padding: 2.5rem 3rem 2.5rem;
		width: 80%;
	}

	.get-in-touch form .form-item .d-flex {
		flex-direction: column;
	}

	.get-in-touch form .form-item .d-flex input {
		margin-bottom: 1rem;
		width: 100%;
	}

	.get-in-touch form .form-item .d-flex input:last-child {
		margin-bottom: 0;
	}

	.get-in-touch .wrapper.left {
		width: 45%;
	}

	.get-in-touch .wrapper.right {
		width: 50%;
	}
}

@media screen and (max-width: 844px) {

	header,
	.container {
		max-width: 600px;
	}

	.banner .slogan {
		font-size: 50px;
	}

	.transact-more .cards .card {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem;
	}

	.transact-more .cards .card .check {
		margin-bottom: 1rem;
	}

	.your-inclusive .cards {
		grid-template-columns: 1fr;
	}

	.by-utilising .box {
		width: 100%;
	}

	.rebit-tradefinance .cards {
		flex-wrap: wrap;
	}

	.rebit-tradefinance .card {
		margin-bottom: 0.5rem;
		width: 100%;
	}

	.get-in-touch>.container>.d-flex {
		flex-wrap: wrap;
	}

	.get-in-touch .wrapper.left,
	.get-in-touch .wrapper.right {
		width: 100%;
	}

	.get-in-touch .wrapper.left {
		padding-top: 0;
	}

	.get-in-touch .sub-title {
		padding-bottom: 3rem;
	}

	footer .logo {
		width: calc(100% / 12 * 7);
	}

	footer .small-nav {
		flex-direction: column;
		align-items: flex-start;
	}

	footer .copyright,
	footer .small-nav-item {
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 633px) {

	header,
	.container {
		max-width: calc(100vw - (24px * 2));
	}

	:root {
		font-size: 14px;
	}

	.banner {
		height: 600px;
	}

	.banner .slogan {
		font-size: 27px;
	}

	h1,
	.h1 {
		font-size: 3rem;
	}

	h2,
	.h2 {
		font-size: 28px;
	}

	.black-block {
		display: block;
	}

	.hidden-menu {
		display: block;
	}

	header nav {
		display: none !important;
	}

	header .burger {
		display: block;
	}

	.banner .image-wrap img.desktop {
		display: none;
	}

	.banner .image-wrap img.mobile {
		display: block;
	}

	.banner .image-wrap img {
		object-position: 80%;
	}

	.banner .banner-text {
		top: unset;
		bottom: 10%;
		transform: unset;
		z-index: 1;
	}

	.banner .slogan {
		margin-bottom: 0;
	}

	.banner .sub-slogan br {
		display: none;
	}

	.transact-more,
	.your-inclusive {
		padding: 4rem 0 4rem 0;
	}

	.your-inclusive .cards .card {
		width: 100%;
	}

	.your-inclusive .sub-title {
		font-size: 15px;
	}

	.by-utilising .image-wrapp img.desktop {
		display: none;
	}

	.by-utilising .image-wrapp {
		height: 800px;
	}

	.by-utilising .image-wrapp img.mobile {
		display: block;
	}

	.by-utilising .image-wrapp img.mobile {
		object-position: bottom;
	}

	.by-utilising .wrapper {
		top: 4rem;
		transform: none;
	}

	.by-utilising .box {
		padding: 24px;
	}

	.by-utilising .box .text {
		margin: 0;
		padding: 0;
		font-weight: 400;
		font-size: 14px;
		line-height: 150%;
	}

	.by-utilising .box .text::before {
		left: 0;
	}

	.by-utilising .box .comment {
		margin: 0;
	}

	.rebit-tradefinance {
		padding: 4rem 0 4rem 0;
	}

	.get-in-touch {
		overflow: hidden;
	}

	.get-in-touch .wrapper.right {
		position: relative;
	}

	.get-in-touch .wrapper.right::before {
		content: '';
		position: absolute;
		top: 0;
		left: -50%;
		bottom: 0;
		right: -50%;
		width: 200vw;
		background: #fff;
		z-index: 1;
	}

	.get-in-touch .wrapper.right form {
		position: relative;
		padding: 5rem 0;
		z-index: 2;
	}

	.scroll-top {
		right: 2rem;
		bottom: 4rem;
	}

	.transact-more .sub-title {
		font-size: 15px;
	}

	.transact-more .cards .card .check {
		width: 24px;
		height: 24px;
	}

	.transact-more .cards .card .check img {
		width: 50%;
		height: 50%;
	}

	.transact-more .cards .card .text {
		font-size: 15px;
	}

	.your-inclusive .cards .card .card-title {
		font-weight: 700;
		font-size: 18px;
		line-height: 110%;
	}

	.your-inclusive .cards .card .card-text {
		font-weight: 400;
		font-size: 14px;
		line-height: 139.5%;
	}

	.by-utilising .box .title {
		font-weight: 700;
		font-size: 20px;
		line-height: 120%;
	}

	.your-inclusive .cards .card {
		padding: 20px;
	}

	.rebit-tradefinance .title {
		margin-bottom: 28px;
		font-weight: 700;
		font-size: 28px;
		line-height: 105%;
	}

	.rebit-tradefinance .card {
		padding: 20px;
	}

	.rebit-tradefinance .card .card-header {
		margin-bottom: 20px;
		font-weight: 400;
		font-size: 56px;
		line-height: 110%;
	}

	.rebit-tradefinance .card .card-text .card-title {
		font-weight: 700;
		font-size: 20px;
		line-height: 120%;
	}

	.get-in-touch {
		padding-top: 48px;
	}

	.get-in-touch .title {
		margin-bottom: 16px;
		font-weight: 700;
		font-size: 28px;
		line-height: 105%;
	}

	.get-in-touch .wrapper.right form {
		padding-top: 28px;
	}

	.hidden-menu ul li {
		margin-bottom: 32px;
		padding-bottom: 32px;
	}

	.hidden-menu ul li a {
		font-weight: 700;
		font-size: 28px;
		line-height: 120%;
	}

	.get-in-touch form .form-item .d-flex input {
		padding: 20px;
		font-weight: 400;
		font-size: 15px;
		line-height: 105%;
	}

	footer nav .name {
		font-weight: 700;
		font-size: 14px;
		line-height: 120.5%;
		letter-spacing: 0.02em;
	}

	footer nav li {
		font-weight: 700;
		font-size: 16px;
		line-height: 120%;
	}

	.get-in-touch .contacts-item .name {
		font-weight: 700;
		font-size: 14px;
		line-height: 120.5%;
		opacity: 0.3;
	}

	.get-in-touch .contacts-item .value {
		font-weight: 400;
		font-size: 16px;
		line-height: 120%;
	}
}

@media screen and (max-width: 425px) {
	footer .desktop-menu {
		display: none;
	}

	footer .mobile-menu {
		display: block;
	}

	footer .container.mb {
		margin-bottom: 3.3rem;
	}

	footer .container.mb>.d-flex {
		flex-direction: column;
	}

	footer .logo {
		margin-bottom: 2rem;
	}

	footer .socials {
		flex-direction: row;
		width: fit-content;
	}

	footer .socials a {
		margin-bottom: 3.5rem;
		margin-right: 3rem;
		width: 2.5rem;
		height: 2.5rem;
	}

	footer .after-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}