/*--------------------------------------
            Basic Setup
--------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	background-color: #fff;
	color: #555;
	font-family: "Lato", "Arial", sans-serif;
	font-weight: 300;
	font-size: 20px;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

.clearfix {
	zoom: 1;
}

.clearfix:after {
	content: ".";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}

/*--------------------------------------
            Resuable Components
--------------------------------------*/
.row {
	max-width: 1140px;
	margin: 0 auto;
}
section {
	padding: 80px 0;
}

.box {
	padding: 1%;
	text-align: center;
}
/*--------------------------------------
            Headings
--------------------------------------*/
h1,
h2,
h3 {
	letter-spacing: 1px;
}

h1 {
	margin-top: 0;
	margin-bottom: 5px;
	color: #0a202e;
	font-size: 250%;
	font-weight: 400;
	word-spacing: 4px;
}

h2 {
	font-size: 180%;
	font-weight: 400;
	word-spacing: 2px;
	text-align: center;
	margin-bottom: 30px;
}

h2:after {
	display: block;
	height: 2px;
	background-color: #3498db;
	content: " ";
	width: 100px;
	margin: 0 auto;
	margin-top: 30px;
}

h3 {
	font-size: 120%;
	margin-bottom: 15px;
}
/*--------------------------------------
            Links
--------------------------------------*/
a:link,
a:visited {
	color: #3498db;
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom: 1px solid #3498db;
	transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
	color: #555;
	border-bottom: 1px solid transparent;
}
/*--------------------------------------
            Buttons
--------------------------------------*/
.btn:link,
.btn:visited,
input[type="submit"] {
	display: inline-block;
	padding: 6px 20px;
	font-weight: 300;
	text-decoration: none;
	border-radius: 30px;
	border: 1px solid #3498db;
	color: #fff;
	background-color: #3498db;
	text-align: center;
	transition: background-color 0.2s, border 0.2s;
	margin-right: 2px;
	margin-bottom: 5px;
}

.btn:hover,
.btn:active,
input[type="submit"]:hover,
input[type="submit"]:active {
	background-color: #51a7e0;
	border: 1px solid #51a7e0;
}

/*--------------------------------------
            Paragraphs
--------------------------------------*/
.long-copy {
	line-height: 145%;
	width: 80%;
	margin: 0 auto;
}

.box p {
	font-size: 90%;
	line-height: 145%;
}

/*--------------------------------------
            Icons
--------------------------------------*/
.icon-big {
	font-size: 400%;
	display: block;
	color: #3498db;
}

.icon-small {
	display: inline-block;
	width: 30px;
	text-align: center;
	color: #3498db;
	font-size: 120%;
	margin-right: 10px;
	line-height: 120%;
	vertical-align: middle;
	margin-top: -4px;
}
/*--------------------------------------
            Header
--------------------------------------*/
header {
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.4),
			rgba(255, 255, 255, 0.4)
		),
		url(img/factory.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 100vh;
}

.hero-text-box {
	position: absolute;
	width: 1140px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.logo {
	height: 100px;
	width: auto;
	float: left;
}

.logo-small {
	display: none;
	height: 50px;
	width: auto;
	float: left;
	margin-top: 5px 0;
}

.main-nav {
	float: right;
	list-style: none;
	margin-top: 35px;
}
.main-nav li {
	display: inline-block;
	margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
	padding: 6px 0;
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	font-size: 110%;
	border-bottom: 2px solid transparent;
	transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
	border-bottom: 2px solid #3498db;
}
/*--------------------------------------
            Mobile Nav
--------------------------------------*/
.mobile-nav-icon {
	float: right;
	cursor: pointer;
	margin-top: 25px;
	display: none;
}

.mobile-nav-icon i {
	font-size: 170%;
	color: #2487c9;
}
/*--------------------------------------
            Sticky Nav
--------------------------------------*/
.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 2px #efefef;
	z-index: 100;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
	padding: 8px 0;
	text-decoration: none;
	color: #555;
}

.sticky .logo {
	display: none;
}

.sticky .logo-small {
	display: block;
}

.sticky .main-nav {
	margin-top: 15px;
}
/*--------------------------------------
            Products
--------------------------------------*/
.section-products {
	padding: 0;
}
.products-showcase {
	list-style: none;
	width: 100%;
}

.products-showcase li {
	display: block;
	float: left;
	width: 25%;
}

.product-photo {
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
	background-color: #000;
}

.product-photo img {
	opacity: 0.85;
	width: 100%;
	transform: scale(1.15);
	transition: transform 0.5s, opacity 0.5s;
}

.product-photo img:hover {
	opacity: 1;
	transform: scale(1.03);
}

/*--------------------------------------
            Countries
--------------------------------------*/
.section-countries .box {
	text-align: left;
}
.box img {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.country-feature {
	margin-bottom: 5px;
}

/*--------------------------------------
            Contact-1
--------------------------------------*/
.section-contact-1 {
	height: 500px;
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url(img/ishan-seefromthesky-562756-unsplash.jpg);
	background-size: cover;
	background-position: center;
	color: white;
	background-attachment: fixed;
}

blockquote {
	line-height: 145%;
	font-style: italic;
	word-spacing: 4px;
	position: relative;
	margin-top: 50px;
	padding: 10px;
}

blockquote:before {
	content: "\201C";
	font-size: 500%;
	display: block;
	position: absolute;
	top: -5px;
	left: -10px;
}

cite {
	font-size: 90%;
	margin-top: 25px;
	display: block;
}

cite img {
	height: 45px;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: middle;
}

/*--------------------------------------
            Contact-2
--------------------------------------*/
.contact-form {
	width: 80%;
	margin: 0 auto;
}

input[type="text"],
input[type="email"],
select,
textarea {
	width: 100%;
	padding: 7px;
	border-radius: 3px;
	border: 1px solid #ccc;
}

textarea {
	height: 100px;
}

*:focus {
	outline: none;
}

.map-box {
	width: 100%;
	height: 500px;
	position: relative;
}
.map {
	width: 100%;
	height: 500px;
	position: relative;
	z-index: 0;
}

.form-box {
	position: absolute;
	height: 500px;
	width: 45%;
	padding-top: 40px;
	padding-left: 20px;
	top: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 10;
}
/*--------------------------------------
            Footer
--------------------------------------*/
footer {
	background-color: #333;
	padding: 20px;
}

.footer-nav {
	list-style: none;
	float: left;
}

.social-links {
	list-style: none;
	float: right;
}

.footer-nav li,
.social-links li {
	display: inline-block;
	margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
	margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
	text-decoration: none;
	border: 0;
	color: #888;
	transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
	color: #ddd;
}
.social-links li a:link,
.social-links li a:visited {
	font-size: 140%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-linkedin,
.ion-social-instagram {
	transition: color 0.2s;
}
.ion-social-facebook:hover {
	color: #3b5998;
}
.ion-social-twitter:hover {
	color: #55acee;
}
.ion-social-linkedin:hover {
	color: #007bb5;
}
.ion-social-instagram:hover {
	color: #e95950;
}
.ion-social-youtube:hover {
	color: #ff0000;
}

footer p {
	color: #888;
	text-align: center;
	font-size: 90%;
}

/*--------------------------------------
            Animation
--------------------------------------*/
.js-icon-animation,
.js-countries-animation {
	opacity: 0;
	animation-duration: 0.5s;
}

.js-icon-animation.animated,
.js-countries-animation.animated {
	opacity: 1;
}

/*--------------------------------------
            News
--------------------------------------*/
.news-content {
	width: 80%;
	margin: 0 auto;
}
.news-image {
	display: block;
    margin: auto;
	width: 875px;
	height: 1238px;
}	