@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	overflow-x: hidden;
	color: #000;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 14px !important;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a:focus,
button:focus {
	outline: none !important;
}

/*********************
Main
*********************/

header {
    background: #161D27;
    padding: 10px 0;
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container a img {
    max-height: 35px;
}

.nav-links {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
}

.nav-links a:hover {
    text-decoration: underline;
}

.nav-links a:last-of-type {
    padding-right: 0;
}

.nav-links a:first-of-type {
    padding-left: 0;
}

/*********************
Media
*********************/

@media only screen and (max-width: 1400px) {
    .header-container {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 1250px) {
    .header-container {
        max-width: 1100px;
    }
}

@media only screen and (max-width: 1150px) {
    .header-container {
        max-width: unset;
        padding: 0 2em;
    }
}

/* Medium devices */
@media only screen and (max-width: 768px) {
    .logo-container a img {
        max-height: 30px;
    }
}

/* Small devices */
@media only screen and (min-width: 600px) {
    .logo-mobile {
        display: none;
    }
}


@media only screen and (max-width: 600px) {
    .header-container {
        display: block;
        justify-content: unset;
        padding: 0;
    }
    .logo-container {
        padding: 10px 0 5px;
        display: flex;
        justify-content: center;
    }
    .nav-links {
        justify-content: center;
        border-top: 1px solid #D2D2D7;
        padding: 10px 0;
    }
    header {
        padding: 0;
    }
    .logo-mobile {
        display: block;
    }
    .logo-desktop {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .nav-links a {
        padding: 0 15px;
    }
}







































