@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
*********************/

.top-wrap {
    background: #161D27;
    padding: 10px 0;
}

.top-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1350px;
    margin: 0 auto;
    align-items: center;
}

.logo-wrap a img {
    max-height: 35px;
}

.top-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: end;
}

.top-nav ul li a {
    color: #fff;
    padding: 0 10px;
    text-decoration: none;
}

.top-nav ul li a:hover {
    text-decoration: underline;
}

.top-nav ul li:last-of-type a {
    padding-right: 0;
}

.top-nav ul li:first-of-type a {
    padding-left: 0;
}

.bottom-wrap {
    background: #F1F6FB;
}

.bottom-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1350px;
    margin: 0 auto;
    align-items: center;
    padding: 5px 0;
}

.nav-bar {
    grid-column: 2;
}

.nav-bar ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-right: -6em;
}

.nav-bar ul li a {
    text-decoration: none;
    color: #232F3E;
    padding: 0 15px;
    white-space: nowrap;
}

.nav-bar ul li a:hover {
    text-decoration: underline;
}

.nav-bar ul li:last-of-type a {
    padding-right: 0;
}

.nav-bar ul li:first-of-type a {
    padding-left: 0;
}

.menu-wrap {
    grid-column: 1;
    display: flex;
    align-items: center;
}

.menu-wrap a {
    color: #5E5E74;
    text-decoration: none;
    padding-left: 1em;
}

.menu-wrap .vl {
    border-left: 2px solid #D8DDE3;
    height: 20px;
    margin-left: 2em;
}

/*********************
Search bar
*********************/

#search-container {
	display: flex;
    align-items: center;
    justify-content: center;
}

.search-container {
	margin-top: 0;
    display: flex;
	z-index: 5;
	margin-bottom: 0;
	border-radius: 20px;
    background: #fff;
}

.search-container input[type=text] {
	padding: 12px 0 12px 20px;
    margin-left: 0;
    width: 450px;
	border-radius: 20px 0 0 20px;
	border: none;
	position: relative;
    display: flex;
}

.search-container input[type=text]:focus {
	outline: none;
}

.search-container input[type=text]::placeholder {
	color: #7F7F7F;
	font-size: 13px;
}

.search-container button {
    border: none;
    background: none;
    margin-right: 10px;
    cursor: pointer;
}

.search-container button iconify-icon {
	color: #000 !important;
    font-size: 20px;
    position: relative;
    top: 2px;
    right: 0;
}

/*********************
Media
*********************/

@media only screen and (max-width: 1400px) {
    .top-container,
    .bottom-container {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 1250px) {
    .top-container,
    .bottom-container {
        max-width: 1100px;
    }
}

@media only screen and (max-width: 1150px) {
    .top-container,
    .bottom-container {
        max-width: unset;
        padding: 0 2em;
    }
    .menu-wrap .vl {
        margin-left: 2em;
    }
    .search-container input[type=text] {
        width: 400px;
    }
}

@media only screen and (max-width: 992px) {
    .nav-bar {
        display: none;
    }
    .search-container input[type=text] {
        width: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .top-nav ul li a {
        padding: 0 5px;
    }
    .logo-container a img {
        max-height: 30px;
    }
}

@media only screen and (min-width: 768px) {
    .logo-mobile {
        display: none;
    }
    .bars {
        display: none;
    }
}

/* Medium devices */
@media only screen and (max-width: 768px) {
    .logo-wrap {
        margin: 0 1.5em;
        position: relative;
    }
    .logo-mobile {
        display: block;
        margin: 0 auto;
    }
    .logo-desktop,
    .top-nav,
    .bottom-wrap {
        display: none;
    }
    .search-container input[type=text] {
        width: 100%;
        padding: 12px 0 10px 10px;
        border-radius: 0;
    }
    .top-container {
        padding: 0;
        grid-template-columns: 1fr;
        margin: unset;
        align-items: unset;
    }
    .search-container {
        border-radius: 0;
        flex-direction: row-reverse;
    }
    .search-container button {
        margin-right: 0;
        margin-left: 2em;
    }
    .top-wrap {
        padding: 10px 0 5px;
    }
    .bars {
        display: block;
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        font-size: 16px;
        position: absolute;
        right: 0;
        top: 5px;
    }
    .bars span {
        padding-right: 10px;
    }
    .search-container input[type=text]::placeholder {
        font-size: 15px;
    }
}





























