@media screen and (max-width: 680px) {
	
	nav.main {
		height: 50px;
		z-index: 10;
		min-width: auto;
		box-shadow: none;
	}
		nav.active {
			box-shadow: initial;
			position: relative;
		}

		nav .hamburger,
		nav .close {
			position: absolute;
			top: 50%;
			margin-top: -7px;
			right: 20px;
			cursor: pointer;
		}

		nav .close {
			margin-top: -7px;
		}
		
		nav ul,
		nav .close {
			display: none;
		}

		nav .logo {
            position: absolute;
            left: 21px;
            top: 4px;
            margin-top: 0;
            width: 64px;
            height: auto;
		}

		.mobile-menu {
            position: absolute;
            bottom: 0;
            display: none;
            height: calc(100vh - 125px);
            overflow: scroll;
            background-color: #FFF;
            z-index: 9;
            width: 100vw;
            padding: 20px;
            align-items: flex-start;
		}
			.mobile-menu ul {
                list-style-type: none;
                display: flex;
                flex-direction: column;
                height: auto;
                width: 100%;
			}
				.mobile-menu ul > li {
					position: relative;
				}
					.mobile-menu ul > li:last-child {
						border-bottom: 0px;
					} 

					.mobile-menu ul li .collapse,
					.mobile-menu ul li .expand {
						width: 40px;
						height: 40px;
						background-size: 20px 20px;
						background-repeat: no-repeat;
						position: absolute;
						right: -20px;
						top: 10px;
						cursor: pointer;
					}
					.mobile-menu ul li .collapse {
						display: none;
						background-image: url('/img/mobile/collapse.svg');
					}
					.mobile-menu ul li .expand {
						background-image: url('/img/mobile/expand.svg');
					}

					.mobile-menu ul li a {
						font-size: 25px;
						color: #012A4B;
						display: block;
						padding: 8px 0px;
						font-weight: 300;
						text-transform: uppercase;
						text-decoration: none;
						line-height: 1.2em;
					}
						.mobile-menu ul li a.main {
							min-width: initial;
						}
						.mobile-menu ul li ul {
							display: none;
						}
						.mobile-menu ul li ul li a {
							font-size: 18px;
							color: #012A4B;
						}
	.mobile-menu ul li:nth-of-type(1) a {
		/*background: #5AB4E1;*/
	}
}