/*----------------*/
/*-----GLOBAL-----*/
/*----------------*/

* {
	box-sizing: border-box;
}

::selection {
    background: #ce0d1c;
    color: #fff;
}

body {
	color: #333;
	font-family: 'AvenirNextRegular', Arial, sans-serif;
	background: #fff;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.red {
	color: #d1132a;
}

/*--------------------*/
/*-----TYPOGRAPHY-----*/
/*--------------------*/

h1, h2, h3, h4 {
	margin-bottom: 30px;
	font-family: 'AvenirNextDemi', Arial, sans-serif;
}

h1 {
	font-size: 60px;
	line-height: 60px;
}

h2 {
	font-size: 34px;
	line-height: 40px;
}

h3 {
	font-size: 24px;
	line-height: 32px;
}

h4 {
	font-size: 18px;
	line-height: 22px;
}

p, ul, ol {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 30px;
}

ul, ol {
	padding-left: 20px;
}

a {
	color: #7ea7cc;
}

a:hover {
	color: #b5cce2;
}

strong {
	font-family: 'AvenirNextDemi', Arial, sans-serif;
}

.caps {
	text-transform: uppercase;
}

/*---------------*/
/*-----FORMS-----*/
/*---------------*/

fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

form {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

label {
	float: left;
	margin-bottom: 10px;
	text-transform: uppercase;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	float: left;
	width: 100%;
	height: 32px;
	padding: 1px 24px 1px 8px;
	font-size: 14px;
	font-family: "AvenirNextRegular", Arial, sans-serif;
	color: #333;
	border: 1px solid #7ea7cc;
	border-radius: 3px;
	background: #fff url(../img/select-input-bg.png) 100% 0% no-repeat;
}

select::-ms-expand {
	display: none;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
textarea {
	float: left;
	width: 100%;
	padding: 4px 8px;
	font-size: 14px;
	font-family: "AvenirNextRegular", Arial, sans-serif;
	color: #333;
	border: 1px solid #7ea7cc;
	border-radius: 3px;
	background: #fff;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"] {
	height: 32px;
}

.form.contact-form p {
	margin-bottom: 0;
}

.form-field {
	float: left;
	width: 49%;
	margin: 0 2% 20px 0;
}

.form-field.last {
	margin-right: 0;
}

.form-field.full {
	width: 100%;
	margin-right: 0;
}

/*----------------*/
/*-----LAYOUT-----*/
/*----------------*/

.container {
	position: relative;
	width: 1160px;
	margin: 0 auto 40px auto;
}

.col70 {
	float: left;
	width: 68%;
	margin-right: 2%;
}

.col30 {
	float: left;
	width: 30%;
}

/*-----------------*/
/*-----BUTTONS-----*/
/*-----------------*/

.button {
	display: inline-flex;
	align-items:center;
	padding: 10px 20px 10px 10px;
	border-radius: 3px;
	border: none;
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.1s linear;
	background: #7ea7cc;
}

.button:hover {
	background: #90b3d3;
}

input[type="submit"] {
	padding-left: 40px;
	background: #7ea7cc url(../img/btn-form-arrow-right.png) 10px center no-repeat;
}

input[type="submit"]:hover {
	background: #90b3d3 url(../img/btn-form-arrow-right.png) 10px center no-repeat;
}

.button.large {
	width: 100%;
	margin-bottom: 20px;
	padding: 16px;
}

.button.large .circle {
	position: relative;
	width: 48px;
	height: 48px;
	margin-right: 10px;
	border-radius: 50%;
	transition: all 0.1s linear;
	flex:none;
}

.button.large .circle.icn-search {
	background: #507dad url(../img/icn-button-lrg-search.png) center / 24px auto no-repeat;
}

.button.large .circle.icn-search-alt {
	background: #507dad url(../img/icn-button-lrg-search-alt.png) center / 24px auto no-repeat;
}

.button.large .circle.icn-cart {
	background: #507dad url(../img/icn-button-lrg-cart.png) center / 24px auto no-repeat;
}

.button.large .circle.icn-box {
	background: #507dad url(../img/icn-button-lrg-box.png) center / 24px auto no-repeat;
}

.button.large .content .title {
	display: block;
	font-size: 0.925rem;
	line-height: 1.2;
	margin:0 0 3px;
	font-family: 'AvenirNextMedium', Arial, sans-serif;
}

.button.large .content .subtitle {
	display: block;
	font-size: 0.875rem;
	line-height: 1.4;
	text-transform: none;
}

/*-------------*/
/*-----BOX-----*/
/*-------------*/

.box {
	clear: both;
	width: 100%;
}

.box .title {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 20px 12px 65px;
	font-size: 24px;
	line-height: 24px;
	font-family: "AvenirNextDemi",Arial,sans-serif,Arial,sans-serif;
	background: #e4e4e4;
}

.box .title img {
	position: absolute;
	top: 10px;
	left: 20px;
}

.box .content {
	width: 100%;
	padding: 20px;
	background: #f7f7f7;
}

.box .content .alert {
	float: left;
	margin-bottom: 20px;
	text-align: center;
}

/*----------------*/
/*-----ALERTS-----*/
/*----------------*/

.alert {
	width: 100%;
	padding: 20px;
}

.alert h3 {
	margin-bottom: 15px;
}

.alert p {
	margin-bottom: 0;
}

.alert.error {
	color: #950018;
	background: #f8dcdf;
}

.alert.success {
	color: #6d8428;
	background: #e2e6d4;
}

/*----------------*/
/*-----SOCIAL-----*/
/*----------------*/

.social a {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 5px;
	border-radius: 3px;
	transition: background-color 0.1s linear;
	text-indent: -9999px;
}

.social a.twitter {
	background: #00d3ff url(../img/icn-social-twitter.png) no-repeat center;
}

.social a.twitter:hover {
	background-color: #33dcff;
}

.social a.linkedin {
	background: #1b86bc url(../img/icn-social-linkedin.png) no-repeat center;
}

.social a.linkedin:hover {
	background-color: #2aa3e0;
}

.social a.facebook {
	background: #94b3e9 url(../img/icn-social-facebook.png) no-repeat center;
}

.social a.facebook:hover {
	background-color: #bed1f2;
}

.social a.youtube {
	background: #cf332d url(../img/icn-social-youtube.png) no-repeat center;
}

.social a.youtube:hover {
	background-color: #da5a55;
}

.social a.rss {
	background: #fb9f3b url(../img/icn-social-rss.png) no-repeat center;
}

.social a.rss:hover {
	background-color: #fcb76d;
}

/*----------------*/
/*-----HEADER-----*/
/*----------------*/

header {
	background: url(../img/bg-feature.png) center top no-repeat;
    background-size: cover;
}

header .container {
	padding: 40px 0;
}

header .logo {
	width: 100px;
	height: 66px;
	display: inline-block;
	margin-bottom: 20px;
}

header h1,
header p {
	color: #fff;
	text-align: center;
}

header p {
	font-size: 22px;
	line-height: 26px;
}

header .overlay {
	background-color: rgba(126, 167, 204, 0.7);
}

/*----------------*/
/*-----FOOTER-----*/
/*----------------*/

.copyright {
	float: left;
}

.version {
	float: right;
}
