/**
 * Site footer + Instagram banner
 */

.footer {
	background: var(--lb-navy);
	padding-top: 100px;
	color: var(--lb-white);
	font-family: var(--lb-font-sans);
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.footer {
		padding-top: 60px;
		padding-bottom: 40px;
	}
}

.footer__container {
	margin-left: var(--lb-gutter);
	margin-right: var(--lb-gutter);
	max-width: var(--lb-container);
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.footer__container {
		margin-left: var(--lb-gutter-sm);
		margin-right: var(--lb-gutter-sm);
	}
}

.footer__extra {
	margin-top: 126px;
	padding-bottom: 42px;
	font-size: 14px;
	line-height: 140%;
}

@media only screen and (max-width: 767px) {
	.footer__extra {
		margin-top: 40px;
	}
}

.footer__extra-columns {
	display: flex;
	padding-top: 32px;
	align-items: end;
	justify-content: space-between;
}

@media only screen and (max-width: 767px) {
	.footer__extra-columns {
		flex-direction: column;
		gap: 20px;
		justify-content: center;
		align-items: center;
	}
}

.footer__extra-columns ul {
	display: flex;
	gap: 20px;
}

@media only screen and (max-width: 767px) {
	.footer__extra-columns ul {
		gap: 20px;
		flex-direction: column;
	}
}

.footer__extra-columns .footer__column--end {
	text-align: right;
}

@media only screen and (max-width: 767px) {
	.footer__extra-columns .footer__column--end {
		text-align: center;
	}
}

.footer__logo {
	margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
	.footer__logo {
		margin-bottom: 40px;
	}
}

.footer__newsletter {
	margin-left: auto;
	width: 50%;
}

@media only screen and (max-width: 767px) {
	.footer__newsletter {
		width: 100%;
		margin-bottom: 40px;
	}
}

.footer__input {
	background: transparent;
	color: var(--lb-white);
	width: 100%;
	border-bottom: 1px solid #e0e0e0;
	padding: 10px 0;
	font-family: var(--lb-font-sans);
	font-size: 12px;
	font-style: normal;
	font-weight: var(--lb-fw-medium);
	line-height: 140%;
}

.footer__input-wrapper {
	position: relative;
	display: flex;
}

.footer__input::placeholder {
	color: #a9a9a9;
}

.footer__input:focus {
	border-bottom: 1.5px solid var(--lb-black);
	outline: none;
}

.footer__input:focus::placeholder {
	opacity: 0.2;
}

.footer__columns {
	display: grid;
	grid-template-columns: 1.3fr 0.3fr 0.3fr;
	column-gap: 20px;
	gap: 40px;
}

@media only screen and (max-width: 767px) {
	.footer__columns {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto auto;
		gap: 20px;
	}

	.footer__columns > div:first-child {
		grid-column: 1 / -1;
		width: 100%;
	}

	.footer__newsletter {
		grid-column: span 2;
	}
}

.footer a {
	color: var(--lb-muted);
	transition: color var(--lb-duration-fast) var(--lb-ease-out);
}

.footer a:hover {
	color: var(--lb-white);
}

.footer__lists li {
	margin-bottom: 9px;
}

.footer__lists li a {
	color: var(--lb-muted-light);
	font-size: 16px;
	transition: color var(--lb-duration-fast) var(--lb-ease-out);
}

.footer__lists li a:hover {
	color: var(--lb-white);
}

.footer_submit {
	color: var(--lb-white);
	font-family: var(--lb-font-sans);
	font-size: 12px;
	min-width: 100px;
	font-style: normal;
	background: none;
	font-weight: var(--lb-fw-regular);
	line-height: 140%;
	display: inline-flex;
	padding: 5px 15px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	appearance: none;
	border-radius: var(--lb-radius-pill);
	border: 1px solid #767676;
}

.footer__input-wrapper-title {
	color: var(--lb-white);
	-webkit-text-stroke-width: 1;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
	font-family: var(--lb-font-sans);
	font-size: 24px;
	font-style: normal;
	font-weight: var(--lb-fw-regular);
	line-height: normal;
	margin-bottom: 16px;
}

.socialmedia {
	display: flex;
	gap: 7px;
	margin-bottom: 30px;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: var(--lb-border-subtle);
	padding-bottom: 25px;
}

.contact-image {
	width: 100px;
	border-radius: var(--lb-radius-sm);
	height: 100px;
	margin-right: 15px;
	object-fit: cover;
}

.contact-details {
	color: var(--lb-white);
	font-family: var(--lb-font-sans);
}

.contact-name {
	font-size: 20px;
	font-weight: var(--lb-fw-medium);
	margin: 0;
}

.contact-role {
	font-size: clamp(13px, 2vw, 12px);
	color: var(--lb-muted-soft);
	margin: 0;
}

.contact-email {
	color: var(--lb-muted-soft);
	text-decoration: none;
	font-size: clamp(13px, 2vw, 12px);
	margin: 5px 0;
	display: block;
	transition: color var(--lb-duration-fast) var(--lb-ease-out);
}

.contact-email:hover {
	color: var(--lb-white);
}

.big-title {
	color: var(--lb-white);
	-webkit-text-stroke-width: 1;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
	font-family: var(--lb-font-display);
	font-size: 60px;
	font-style: normal;
	font-weight: var(--lb-fw-regular);
	line-height: 100px;
}

.contact-phone {
	font-size: clamp(13px, 2vw, 12px);
	color: var(--lb-muted-soft);
	margin: 5px 0;
}

.footer-contact {
	grid-column: 1 / -1;
}

@media only screen and (max-width: 767px) {
	.footer-contact .footer__input-wrapper-title {
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: var(--lb-border-subtle);
	}
}

.footer__column p {
	margin-bottom: 20px;
	max-width: 650px;
}

.footer__column .gb-image {
	margin-bottom: 18px;
}

.footer-banner {
	background: var(--lb-blue-soft);
	color: var(--lb-white);
	font-family: var(--lb-font-sans);
	font-size: 1.2rem;
	font-weight: var(--lb-fw-medium);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.06rem 0;
}

.footer-banner-container {
	max-width: var(--lb-container);
	width: 100%;
	margin-left: var(--lb-gutter-sm);
	margin-right: var(--lb-gutter-sm);
	display: flex;
	justify-content: space-between;
}

.footer-banner-banner {
	width: 100%;
}

.footer-banner p {
	margin: 0;
}

.footer-banner__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: transform var(--lb-duration) var(--lb-ease), opacity var(--lb-duration) var(--lb-ease);
}

.footer-banner__icon:hover {
	transform: scale(1.1);
	opacity: 0.8;
}

@media only screen and (max-width: 768px) {
	.footer-banner {
		flex-direction: row;
		justify-content: center;
		gap: 15px;
		font-size: 1rem;
	}
}
