/***	RESET STYLES	*/
/*****************************/

html, body, div, h1, h2, h3, p, b, i, strong, em, strike, sub, sup, ul, ol, li, 
blockquote, form, input, textarea, select, button, td, tr, th, table, span, 
header, footer, article, aside, nav, section, main  {
	padding:0;
	margin:0;
	vertical-align:baseline;
}
header, footer, article, aside, nav, section, main { display:block; }
html { overflow-y:scroll; } 

*:before,
*:after,
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
 
[placeholder]          {text-overflow:ellipsis;}
::-moz-placeholder     {text-overflow:ellipsis;} 
:-moz-placeholder      {text-overflow:ellipsis;} 
:-ms-input-placeholder {text-overflow:ellipsis;}
 
:focus::-webkit-input-placeholder {color: transparent}
:focus::-moz-placeholder          {color: transparent}
:focus:-moz-placeholder           {color: transparent}
:focus:-ms-input-placeholder      {color: transparent}
 
:focus { outline:none; }

body {
	background: #fff; 
	color:#333333;
	font-family:serif;
	font-size:100%;
}
img {
	border: none;
	outline: none;
        height: auto;
        max-width: 100%;
        width: auto\9;
}
a {
	text-decoration:underline;
	cursor:pointer;
}
a:hover {
	text-decoration:none;
}
a:visited, a:active, a.current, a.active {
	outline:none;
}
ul {
	list-style:none;
	margin: 0;
        padding: 0;
}
ol {
	list-style:none;
	margin: 0;
        padding: 0;
}
nav ol, nav ul {
	list-style:none;
	padding:0;
}
nav li {
	display:block;
        padding: 0;
}
label {
	cursor: pointer;
}
input, select, textarea {
	display:block;
	font-family:inherit;
	outline:none;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing: border-box;
}
input[type="checkbox"],
input[type="radio"] {
	display: inline-block;
}
button {
       -webkit-appearance: none;
       -moz-appearance: none;
       appearance: none;
}
textarea {
	resize:vertical;
	overflow-x:hidden;
	overflow-y:auto;
}
button, [type="submit"] {
	cursor: pointer;
}
sub, sup {
	font-size:70%;
	line-height:0;
	vertical-align:baseline;
	position:relative;
}
sub { bottom:-0.5em; }
sup { top:-0.5em; }
 
b, strong { font-weight:600; }
i, em { font-style:italic; }
 
h1 { font-size: 2em;}
h2 { font-size: 1.5em; }
h3 { font-size: 1.17em; }
 
small { font-size:85%;}
 
table, td {
	border-collapse:collapse;
	border-spacing:0;
}
address {
       font-style: normal;
}

/***	GENERAL STYLES	*/
/*****************************/

body {
	position: relative;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	background: #fff url('../images/bg.jpg') no-repeat fixed;
	background-size: cover; 
}
h1, h2, h3, h4, h5, h6 {
	color: #000000;
	font-size: 30px;
	margin: 0 0 15px 0;
	font-weight: 300;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}
h2 {font-size: 28px;}
h3 {font-size: 26px;}
h4 {font-size: 22px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}

a:link {
	color: #f3863d;
	text-decoration: underline;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition:  all 0.3s ease-in-out;
}
a:active {
	color: #f3863d;
}
a:visited {
	color: #f3863d;
}
a:hover {
	color: #000;
}
p {
	padding-bottom: 15px;
}

a.btn {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin: 0 10px;
	padding: 15px 25px;
	font-size: 22px;
	font-weight: bold;
	background: #f3863d;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	min-width: 230px;
	position: relative;
	transition: all 0.7s;
}
a.btn:hover {
	background: rgba(255,255,255,0.2); 
	color: #f3863d;
	letter-spacing: 2px;
}
.btn:before,
.btn:after {
	content: '';
	position: absolute;
	width: 0px;
	height: 3px;
	background: #f3863d;
	transition: all 0.4s ease;
}
.btn:before {
	top: 0;
	left: 0px;
}
.btn:after {
	bottom: 0;
	right: 0;
}
.btn:hover:before,
.btn:hover:after {
	-webkit-transition: all 0.7s ease;
	transition: all 0.7s ease;
	width: 100%;
}

.btn.rose,
.btn.rose:before,
.btn.rose:after {
	background: #f5929b;
	color: #fff;
}
.btn.rose:hover {
	background: rgba(255,255,255,0.2);
	color: #f5929b;
}
.btn.blue,
.btn.blue:before,
.btn.blue:after {
	background: #009dc7;
	color: #fff;
}
.btn.blue:hover {
	background: rgba(255,255,255,0.2);
	color: #009dc7;
}
.btn.turquoise,
.btn.turquoise:before,
.btn.turquoise:after {
	background: #22a59e;
	color: #fff;
}
.btn.turquoise:hover {
	background: rgba(255,255,255,0.2);
	color: #22a59e;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownSm {
  -webkit-animation-name: fadeInDownSm;
  animation-name: fadeInDownSm;
}

@keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightSm {
  -webkit-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm;
}

@keyframes fadeInLeftSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftSm {
  -webkit-animation-name: fadeInLeftSm;
  animation-name: fadeInLeftSm;
}
/***	GENERAL CLASSES	*/
/*****************************/

#page-wrapper {
	overflow: hidden;
}
.container {
	max-width: 1170px;
	padding-top: 0 15px;
	margin: 0 auto;
}

#header-holder {
	text-align: center;
	padding: 40px 15px;
}
#header-holder .logo {
	animation: fadeIn 0.8s 0.5s;
	animation-fill-mode: backwards;
}
.moose-boxes .boxes-line {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	animation: fadeInRightSm 0.6s 1s;
	animation-fill-mode: backwards; 
}
.moose-boxes.moose-grid .boxes-line:nth-child(2n) {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.moose-boxes .box-item {
	width: 50%;
	position: relative;
	overflow: hidden;
}
.moose-boxes .box-link {
	display: block;
	position: relative;
	overflow: hidden;
}
.moose-boxes .box-link:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.2);
	transition: all 0.4s;
	z-index: 1;
}
.moose-boxes.moose-grid .boxes-line:hover .box-item .box-link:before {
	background: rgba(0,0,0,0.5);
}
.moose-boxes .box-item .img {
	display: block;
	width: 100%;
	height: auto;
}
.moose-boxes .caption {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
   -webkit-justify-content: center;
	justify-content: center;
	z-index: 20;
}
.moose-boxes .caption .incaption {
	position: relative;
	padding: 30px 30px;
}
.moose-boxes .caption .incaption:before,
.moose-boxes .caption .incaption:after {
	content: '';
	display: block;
	height: 3px;
	background: rgba(255, 255, 255, 0.8);
	position: absolute;
	right: 0;
	left: 0;
	transition: all 0.4s;
}
.moose-boxes .caption .incaption:before {
	top: 0;
	transition-delay: 0s; 
}
.moose-boxes .caption .incaption:after {
	bottom: 0;
	transition-delay: 0.1s;
}
.moose-boxes.moose-grid .boxes-line:hover .box-item .caption .incaption:before,
.moose-boxes.moose-grid .boxes-line:hover .box-item .caption .incaption:after {
/*	left: -20px;
	right: -20px; */
	transform: translate(0, 30px);
}
.moose-boxes .caption .incaption h2 {
	position: relative;
	bottom: 0;
	color: #fff;
	padding: 0;
	margin: 0;
	font-size: 50px;
	line-height: 1.4;
	letter-spacing: 5px;
	text-shadow: 1px 1px 0 #000;
	transition: all 0.3s 0.05s;
}
.moose-boxes.moose-grid .boxes-line:hover .box-item .caption .incaption h2 {
	bottom: -30px;
}
.moose-boxes .caption .incaption h2 b {
	font-weight: 300;
	display: block;
}
.moose-boxes .box-item .logo {
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	width: 100%;
	padding: 20px 15px;
	transition: all 0.5s 0.3s;
	z-index: 30;
	opacity: 0;
}
.moose-boxes.moose-grid .boxes-line:hover .box-item .logo {
/*	bottom: 0;
	transition-delay: 0; */
	animation: fadeInDownSm 0.8s 0.35s;
	animation-fill-mode: forwards;
}

.moose-boxes .box-info {
	width: 50%;
	padding: 35px;
	text-align: center;
	font-size: 24px;
}
.moose-boxes .box-info a {
	text-decoration: none;
}
.moose-boxes .box-info .title {
	font-size: 40px;
}
.moose-boxes .box-info ul {
	list-style: none;
	margin: 30px 0;
}
.moose-boxes .box-info ul li {
	margin-bottom: 25px;
}
.moose-boxes .box-info ul li.address span {
	display: block;
	font-size: 14px;
	color: #999;
}
.moose-boxes .box-info i {
	color: #9c9b9b;
	font-size: 120%;
	text-shadow: 1px 1px 0 #fff;
	margin-right: 5px;
}

.rose a:not(.btn) {
	color: #f5929b;
}
.blue a:not(.btn) {
	color: #009dc7;
}
.turquoise a:not(.btn) {
	color: #22a59e;
}
.rose a:not(.btn):hover,
.blue a:not(.btn):hover,
.turquoise a:not(.btn):hover {
	color: #000;
}

.moose-boxes.compac .boxes-line {
	border: none;
}
.moose-boxes.compac .box-item {
	border: 2px solid #fff;
}
.moose-boxes.compac .box-item:hover .box-link:before {
	background: rgba(0,0,0,0.5);
}
.moose-boxes.compac .box-item:hover .caption .incaption:before,
.moose-boxes.compac .box-item:hover .caption .incaption:after {
	transform: translate(0, 30px);
}
.moose-boxes.compac .box-item:hover .caption .incaption h2 {
	bottom: -30px;
}
.moose-boxes.compac .box-item:hover .logo {
	animation: fadeInDownSm 0.8s 0.35s;
	animation-fill-mode: forwards;
}

/** CONTACT FORM */

.contact-form-holder .form-wrap {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	padding: 20px 20px 40px 20px;
}
.contact-form-holder .form-wrap p {
	font-size: 18px;
	margin-bottom: 30px;
}
.field-row {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.field-row .col-half {
	width: 50%;
	padding: 0 10px;
}
.field-row .col-third {
	width: 33.33%;
	padding: 0 10px;
}
form .field {
	margin-bottom: 20px;
	text-align: left
}
form .field label {
	display: block;
	font-weight: bold;
	margin-bottom: 7px;
		display: none;
}

/* Form fields */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="url"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: 10px 15px;
	font-family: inherit;
	font-size: 16px;
	background: #fff;
	border: 1px solid #e2e2e2;
	color: #666666;
}
textarea {
	height: 120px;
	overflow: auto;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
	border-color: #535353 !important;
	outline: none;
}
input.btn,
input[type="submit"],
input[type="reset"] {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin: 0 10px;
	padding: 15px 25px;
	font-size: 20px;
	line-height: normal;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	cursor: pointer;
	background: #000;
	border: 1px solid #000000;
	border-radius: 0;
	text-decoration: none;
	min-width: 230px;
	transition: all 0.7s;
	overflow: hidden;
	position: relative;
}
input.btn:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
	background: #f3863d;
	border-color: #f3863d;
}

.result-box {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.thank-you-mess {
	color: #00b511;
}
.thank-you-mess h2 {
	color: #00b511;
	font-weight: bold;
}
.error-mess {
	color: #ec1212;
}

/** FOOTER */

#footer-holder {
	text-align: center;
	padding: 0;
	background: #1b1b1b;
	color: #bdbbbb;
	animation: fadeIn 0.8s 1s;
	animation-fill-mode: backwards;
}
.contact-info .title {
	color: #fff;
	font-size: 32px;
	margin-bottom: 30px;
}
.contact-info .title b {
	font-weight: 300;
	letter-spacing: 3px;
	display: inline-block;
	padding-top: 15px;
	border-top: 1px solid #fff;
}
.contact-info {
	font-size: 22px;
}
.contact-info ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
   -webkit-justify-content: center;
	justify-content: center;
	padding: 0;
	margin: 0;
}
.contact-info .address {
	font-size: 16px;
}
.contact-info .address span {
	display: block;
	font-size: 13px;
}
.contact-info ul li {
	width: 33.33%;
}
.contact-info i {
	margin-bottom: 8px;
	font-size: 45px;
	text-shadow: 1px 1px 0 #fff;
	display: block;
}
.contact-info a {
	text-decoration: none;
	position: relative;
	display: inline-block;
}
.contact-info a:after {
	content: '';
	display: block;
	height: 1px;
	background: #f3863d; 
	transition: all 0.3s;
	opacity: 0;
}
.contact-info a:hover {
	color: #fff;
}
.contact-info a:hover:after {
	background: #fff; 
	opacity: 1;
}
.copy {
	color: #9a9999;
	font-size: 14px;	
}
.copy p {
/*	border-top: 1px solid #353535; */
	padding: 15px 0;
}


/* ==========================================================================
   Media Queries
   ========================================================================== */


@media only screen and (max-width: 1440px) {
	.moose-boxes .caption .incaption {
		padding: 20px 30px;
	}
	.moose-boxes .caption .incaption h2 {
		font-size: 40px;
	}
	
	.moose-boxes .box-info {
		padding: 20px;
	}
	.moose-boxes .box-info .title {
		font-size: 34px;
	}
	.moose-boxes .box-info {
		font-size: 20px;
	}
	a.btn {
		font-size: 18px;
	}
}
@media only screen and (max-width: 1280px) {
	.moose-boxes .caption .incaption h2 {
		font-size: 32px;
	}
	.moose-boxes .box-item:hover .logo img {
		max-height: 100px;
		width: auto;
	}
	.moose-boxes .box-info .title {
		font-size: 30px;
	}
}
@media only screen and (max-width: 1199px) {
	.moose-boxes .boxes-line {
		display: block;
	}
	.moose-boxes .box-item,
	.moose-boxes .box-info {
		width: 100%; 
	}
}
@media only screen and (max-width: 900px) {
	.contact-info ul {
		display: block;
	}
	.contact-info ul li {
		width: auto;
		margin-bottom: 15px; 
	}
	.moose-boxes .box-link:before {
		background: rgba(0,0,0,0.35);
	}
}
@media only screen and (max-width: 600px) {
	.moose-boxes .box-info a.btn {
		display: block;
		margin: 10px 0;
	}
	.moose-boxes .box-info .title {
		font-size: 26px;
	}
	.field-row {
		display: block;
		margin-left: 0;
		margin-right: 0;
	}
	.field-row .col-half,
	.field-row .col-third {
		width: 100%;
		padding: 0;
	}
}
@media only screen and (max-width: 480px) {
	.moose-boxes .caption .incaption {
		padding: 10px 30px;
	}
	.moose-boxes .caption .incaption h2 {
		font-size: 28px;
	}
	.moose-boxes .box-item:hover .logo img {
		max-height: 80px;
	}
}