@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&family=Roboto:wght@300;400&display=swap');

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 14px;
}

h1,h2,h3,h4,h5,h6,p {
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 20px;
	text-transform: uppercase;
}

a {
	color: #000;
}

a:hover {
	text-decoration: none;
	color: #666;
}

p {
	margin-bottom: 25px;
}

p:last-child {
	margin-bottom: 0px;
}

ul {
	margin-bottom: 25px;
}

.nav {
	margin-bottom: 0;
}

.header {
	width: 100%;
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 0 1px rgba(0,0,0,0.5);
}

.header .container {
	position: relative;
}

.header .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-container-col {
	display: flex;
	justify-content: flex-end;
}

.nav li {
	padding: 0 15px;
	text-transform: uppercase;

}

.nav a {
	color: #000;

}

.page-container {
	/*padding-top: 30px;*/
	padding-bottom: 80px;
}

.banner {
	height: 180px;
	background: #2e5494;
	margin-bottom: 30px;
}

.banner div {
	height: 100%;
}

.banner-content {
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.banner-title {
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
}

.banner-title::after {
	content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background: #fff;
}

.section-title {
	margin-bottom: 35px;
	color: #4b8ebf;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #2e5494;
	bottom: -8px;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
}

.spacer-bottom {
	margin-bottom: 50px;
}

.icon {
	display: inline-block;
	margin-right: 15px;
}

.icon svg {
	width: 30px !important;
}

.footer {
	background: #eee;
	color: #000;
	padding: 20px 0;
	font-size: 12px;
}

.home-product-holder {
	margin-bottom: 30px;
}

.home-product-container {
	display: flex;
	/*justify-content: space-between;*/
	align-items: center;
}

.home-product-container .product-image {
	margin-right: 30px;
}

ul.no-bullets {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.contactus-column li {
	margin-bottom: 25px;
}

.spacer-bottom-30 {
	margin-bottom: 30px;
}

.product-column {
	text-align: center;
}

.company-name {
	font-size: 25px;
	font-weight: bold;
}

.mobile-nav-button {
	display: none;
	width: 25px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 0;
}

.mobile-nav-button span {
	position: absolute;
	width: 100%;
	height: 2px;
	background: #000;
}

.mobile-nav-button span:nth-child(2),
.mobile-nav-button span:nth-child(3) {
	top: 50%;
	transform: translateY(-50%);
}

.mobile-nav-button span:nth-child(4) {
	bottom: 0;
}

img {
	max-width: 100%;
}

.partnership-list {
	display: flex;
	justify-content: space-between;
}


@media screen and (max-width: 768px) {
	.banner-title {
		font-size: 22px;
	}

	.banner {
		padding: 30px 15px 25px 15px;
	}

	.mobile-nav-button {
		display: block;
	}

	.nav-container-col {
	    justify-content: initial;
	    position: fixed;
	    top: 80px;
	    background: #fff;
	    z-index: 999;
	    display: none;
	}

	.nav {
		display: block;
		padding-bottom: 15px;
	}

	.nav li {
		padding: 0;
		margin-top: 8px;
	}
}