/* FOOTER */

.FOOTER {
	background: var(--dark-blue);
}

.FOOTER .b-frame {
	padding-top: 80rem;
	padding-bottom: 80rem;
}

.FOOTER .logo {
	display: block;
	width: 164rem;
	height: 34rem;
}

.FOOTER .buttons {
	margin: 50rem 0;
}

.FOOTER .share {
	display: flex;
	margin: 50rem 0;
}

.FOOTER .share a {
	display: inline;
	vertical-align: middle;
	color: var(--white);
	margin-right: 25rem;
}

.FOOTER .share a svg {
	width: 18rem;
	height: 18rem;
}

.FOOTER .share a:hover {
	color: var(--green);
}

.FOOTER a {color: var(--white);}
.FOOTER a:hover {color: var(--green);}

.FOOTER nav {
	font-size: 16rem;
}

.FOOTER nav > ul {
	padding-left: 80rem;
	display: flex;
	justify-content: space-between;
}

.FOOTER nav li li:not(:first-child) {
	margin-top: 15rem;
}

.FOOTER nav .a {
	display: block;
	font-size: 22rem;
	font-weight: 800;
	margin-bottom: 30rem;
}

.FOOTER nav .heading {
	display: block;
	font-size: 22rem;
	font-weight: 800;
	margin-top: 30rem;
}

.FOOTER .legal {
	position: relative;
	font-size: 14rem;
	opacity: 0.6;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 20rem;
	margin-top: 50rem;
	text-align: center;
}

.FOOTER .legal a {
	padding: 0 10rem;
}

.FOOTER .copyright {
	position: absolute;
	top: 20rem;
	left: 0;
}

@media screen and (max-width: 960px) {
	.FOOTER .b-frame {padding-top: 20rem; padding-bottom: 20rem;}
	.FOOTER .b-columns {display: none;}
	.FOOTER .legal {padding-top: 0; margin-top: 0; border-top: none;}
	.FOOTER .copyright {
		position: static;
		display: block;
		border-bottom: 1px solid rgba(255,255,255,0.3);
		padding-bottom:10rem;
		margin-bottom: 10rem;
	}
}



/* NAV */

.NAV nav input {
	display: none;
}

.NAV nav .a {
	font-size: 16rem;
	line-height: 1.25;
	font-weight: 800;
	cursor: pointer;
}

.NAV nav .a::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 14rem;
	height: 14rem;
	background: url(../images/expand-light.svg) no-repeat center;
	margin: -2rem 0 0 6rem;
}

.NAV nav a:not(.b-button) {color: inherit;}
.NAV nav a:not(.b-button):hover {color: var(--green);}

.NAV nav .b-button {
	margin-top: 10rem;
	width: 100%;
}

/* teir 1 */

.NAV nav > ul > li {
	position: relative;
	padding: 20rem 0;
	font-size: 16rem;
	line-height: 1.25;
	font-weight: 800;
}

.NAV nav > ul > li:last-child {border-bottom: none;}

/* teir 2 */

.NAV nav ul ul {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.25s;
}

.NAV nav ul ul > li {
	padding: 10rem 0;
	font-weight: 400;
}

.NAV nav ul ul > li:first-child {padding-top: 20rem;}
.NAV nav ul ul > li:last-child {padding-bottom: 0rem;}

/* teir 2 open */

.NAV nav input:checked ~ ul {max-height: 360rem;}
.NAV nav input:checked ~ .a::after {transform: scaleY(-1);}



/* MODAL */

.MODAL {
	position: relative;
	margin: 0 auto;
}

.MODAL .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40rem;
	height: 40rem;
	background: #ccc no-repeat center;
	cursor: pointer;
}

.MODAL .content {
	box-sizing: border-box;
	background: #fff;
	max-height: calc(100vh - 80rem);
	padding: 40rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.MODAL.alt-600 {max-width: 600px;}

@media screen and (max-width: 960px) {
	.MODAL .content {padding: 20rem;}
}
