/***** This file contains the stylings for the main nav, footer and the supporters section *****/

/******************** Navigation Start ********************/
/* Main Nav */
nav {
	top: 0;
	width: 100%;
	height: 90px;
	background: var(--white);
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 125px;
}
.nav-logo img {
	width: auto;
	height: 45px;
}
nav ul {
	display: flex;
	align-items: center;
}
nav ul li {
	list-style: none;
	margin-right: 20px;
}
nav ul li a {
	display: block;
}
nav ul li a:hover {
	color: var(--cityix-light);
}
.account-login {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cityix);
	font-size: 1rem;
	position: relative;
	height: 125px;
	width: 315px;
	line-height: 40px;
	border-radius: 5px;
	color: var(--white);
	transition: height 0.25s, padding-top 0.25s;
}
.account-login:hover {
	color: var(--black);
	height: 140px;
	padding-top: 10px;
}
.account-login img {
	width: 55px;
	padding-left: 10px;
}


/* Mobile Hamburger Menu */
.hamburger-wrap {
	background-color: var(--light-grey);
	box-shadow: 0 0 3px 1px #495463;
	width: 100%;
	height: 50px;
	position: fixed;
	display: none;
	z-index: 13;
}
#hamburger-logo img {
	width: 100px;
	margin-left: 20px;
	margin-top: 2px;
}
.menu-wrap {
	position: fixed;
	top: 0;
	right: 50px;
	margin: 5px;
	z-index: 14;
	visibility: hidden;
}
.menu-wrap .toggler {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	width: 50px;
	height: 50px;
	opacity: 0;
 	-webkit-tap-highlight-color: transparent;
}
.menu-wrap .hamburger {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 30px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;	
}
.navbar-toggle {
	position: relative;
	float: right;
	padding: 9px 10px;
	margin-top: 8px;
	margin-right: 15px;
	margin-bottom: 8px;
	background-color: transparent;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
}
.navbar-toggle .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
	margin-top: 4px;
}
.navbar-inverse .navbar-toggle .icon-bar {
	background-color: var(--black);
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	width: 100%;
	height: 2px;
	background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
	top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
	transform: rotate(135deg);
	background: var(--black);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
	top: 0;
	transform: rotate(90deg);
	background: var(--black);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
	transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
	visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div {
	transform: scale(1);
	transition-duration: var(--menu-speed);
}
.menu-wrap .toggler:checked ~ .menu > div > div {
	opacity: 1;
	transition: opacity 150ms ease 150ms;
}
.menu-wrap .menu {
	position: fixed;
	top: 50px;
	left: 0;
	width: 100%;
	height: auto;
	padding-bottom: 15px;
	visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	background: var(--black);
}
.menu-wrap .menu > div {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
}
.menu-wrap .menu > div > div {
	text-align: center;
	max-height: 100vh;
	opacity: 0;
}
.menu-wrap .menu > div > div > ul > li {
	list-style: none;
	color: var(--white);
	font-size: 0.8em;
	padding: 10px 60em 10px 60em;
	border-bottom: 1px solid #3b4451;
}
.menu-wrap .menu > div > div > ul > li:nth-child(9) {
	margin-top: 15px;
	border-bottom: none;
}
.menu-wrap .menu > div > div > ul > li:nth-child(9):hover {
	background-color: transparent;
}
.menu-wrap .menu > div > div > ul > li:hover {
	background-color: #414a59;
}
.menu-wrap .menu > div > div > ul > li > a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
	font-weight: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.account-login-hambg {
	background: var(--cityix);
	padding: 10px 60px 10px 60px;
	border-radius: 5px;
	color: var(--white)!important;
	text-shadow: 0.5px 0 var(--black);
}
.account-login-hambg:hover {
	transition-property: none;
}

@media only screen and (max-width: 600px) {
.menu-wrap, .hamburger-wrap {
	display: initial;
	visibility: visible;
}
nav {
	visibility: hidden;
	height: 0;
}
}
@media screen and (min-width : 601px) and (max-width : 900px) {
.menu-wrap, .hamburger-wrap {
	visibility: visible;
	display: initial;
}
nav {
	visibility: hidden;
	height: 0;
}
}
@media screen and (min-width : 901px) and (max-width : 1200px) {
.menu-wrap, .hamburger-wrap {
	visibility: visible;
	display: initial;
}
nav {
	visibility: hidden;
	height: 0;
}
}
@media screen and (min-width : 1201px) and (max-width : 1500px) {
.menu-wrap, .hamburger-wrap, .hamburger, .toggler, .menu {
	display: none;
}
nav {
	padding: 0 30px;
}
.nav-logo img {
	width: 200px;
}
nav ul li {
	margin-right: 18px;
}
.account-login {
	width: 200px;
	line-height: 20px;
	padding-left: 10px;
	margin-top: 10px;
}
.account-login img {
	margin-right: 10px;
}
}
/******************** Navigation End ********************/


/******************** Footer Start ********************/
.footer-wrapper {
	padding: 80px 330px 10px 330px;
	background-color: var(--soft-black);
}
.footer-content {
	display: grid; 
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr; 
	grid-template-rows: 1fr; 
	gap: 0px 19px; 
}
.footer-content ul {
	list-style: none;
}
.footer-content .title {
	color: var(--cityix-light);
	margin-bottom: 30px;
	text-transform: uppercase;
	font-size: 1.3rem;
	font-family: var(--font-family-sans-serif);
	font-weight: 500;
}
#footer-company .footer-name {
	color: var(--white);
	text-transform: none;
	margin-bottom: -10px;
	font-family: var(--font-family-sans-serif);
	font-size: 1.269em;
	font-weight: 500;
}
#footer-company p {
	color: var(--cityix-light);
	line-height: 20px;
	font-size: 1em;
	padding-bottom: 10px;
}
#footer-company a, #footer-company span {
	font-family: var(--font-family-serif);
	color: var(--white);
	text-transform: none;
	font-size: 0.85em;
}
.footer-wrapper ul li {
	margin-top: 15px;
}
.footer-wrapper a {
	text-decoration: none;
	font-family: var(--font-family-sans-serif);
	text-transform: capitalize;
	font-size: 0.85em;
	color: var(--med-grey);
}
.footer-wrapper a:hover {
	color: var(--white);
}
.footer-disclosure {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.footer-disclosure p {
	color: var(--med-grey);
}
.copyright {
	display: flex;
	justify-content: space-between;
	background-color: var(--black);
	width: 100%;
	padding: 30px 330px;
}
.copyright a, .copyright p {
	color: var(--white);
	text-transform: none;
}
.copyright a:hover {
	color: var(--dark-grey);
}

@media only screen and (max-width: 600px) {
.footer-wrapper {
	padding: 40px;
}
.footer-content {
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}
#footer-company {
	padding-right: 40px;
}
.footer-content ul h4 {
	margin-bottom: 10px;
	font-size: 1.3rem;
}
.footer-wrapper ul li {
	margin-top: 8px;
}
.footer-disclosure {
	margin-top: 30px;
}
.footer-disclosure p {
	line-height: 20px;
}
.copyright {
	flex-direction: column;
	justify-content: center;
	padding: 20px 30px;
}
}
@media screen and (min-width : 601px) and (max-width : 900px) {	
.footer-wrapper {
	padding: 40px;
}
.footer-content {
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.footer-disclosure {
	margin-top: 30px;
}
.footer-disclosure p {
	line-height: 20px;
}
.copyright {
	flex-direction: row;
	align-items: center;
	padding: 20px 40px;
}
}
@media screen and (min-width : 901px) and (max-width : 1200px) {	
.footer-wrapper {
	padding: 40px 80px;
}
.copyright {
	padding: 20px 80px;
}
}
@media screen and (min-width : 1201px) and (max-width : 1500px) {	
.footer-wrapper {
	padding: 40px 80px;
}
.copyright {
	padding: 20px 80px;
}
}
/******************** Footer End ********************/


/******************** Supporters Start ********************/
.supporters-wrapper div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 333px;
	text-align: center;
}
.supporters-logos {
	margin-top: -110px;
	display: flex;
	flex-direction: row !important;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 5ch;
}
.logo {
	width: auto;
	height: 70px;
	display: inline-block;
}

@media only screen and (max-width: 600px) {
.supporters-wrapper div {
	padding: 30px 20px;
}
.supporters-logos {
	margin-top: -40px;	
	flex-direction: column!important;
	gap: 1ch;
}
.logo {
	display:block;
	height: 45px;
}
}
@media screen and (min-width : 601px) and (max-width : 900px) {	
.supporters-wrapper div {
	padding: 40px 50px;
}
.supporters-logos {
	margin-top: -50px;	
	gap: 2ch;
}
.logo {
	display:block;
	height: 50px;
}
}
@media screen and (min-width : 901px) and (max-width : 1200px) {
.supporters-wrapper div {
	padding: 50px 100px;
}
.supporters-logos {
	margin-top: -50px;	
	gap: 4ch;
}
.logo {
	display:block;
}
}
@media screen and (min-width : 1201px) and (max-width : 1500px) {
.supporters-wrapper div {
	padding: 70px 150px;
}
/******************** Supporters End ********************/