/*General*/
*{
	margin: 0;
	padding: 0;
	font-family: Montserrat;
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

li{
	list-style: none;
}

a:link{
	text-decoration: none;
}

i{
	color: white;
	size: 50px;
}

/*Preloader*/
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #2fa5d4;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
	display: none;
}

/*Navbar*/

.nav{
	background: #343a40;
}

.list-items{
	text-transform: uppercase;
	padding: 0px 15px;
}

/*Home*/
.home-bg{
	background: cover;
	width: 100%;
	height: 100%;
}

/*Products Slider*/
.post-slider{
	position: relative;
	margin-bottom: 5%;
}

.post-slider h1{
	margin: 55px 0 5px 0px;
	text-align: center;
}

.post-wrapper{
	width: 85%;
	height: 350px;
	margin: 0 auto;
	overflow: hidden;
	border-bottom: 1px solid #a0a0a0;
	border-radius: 5px;
}

.post{
	display: inline-block;
	height: 350px;
	margin: 0px 10px;
	border: 1px solid #333333;
	box-sizing: border-box;
}

.slider-image{
	width: 100%;
	height: 200px;
	cursor: pointer;
	border-bottom: 1px solid #333333;
}

.post-info{
	height: 100px;
}

@media (max-width: 760px){
	.sub-title{
		width: 100%;
		margin: 0px;
		float: left;
	}
}

/*About*/
#about{
	border-radius: 10px;
	box-sizing: border-box;
	margin: 5% auto;
	padding: 1%;
	width: 90%;
	border: 1px solid #a0a0a0;
}

#about h1{
	text-align: center;
	padding: 0px 0px 0px 0px;
	margin: 0 auto;
}

#about p{
	text-align: justify;
	padding: 10px 10px 20px 10px; 
	font-size: 20px;
	line-height: 28px;
}

@media (max-width: 991px){
	#about{
		padding: 0px;
		margin: 0px;
		width: 100%;
	}
	.about p{
		text-align: justify;
		padding: 0;
		margin: 0;
		line-height: 15px;
		font-size: 10px;
		letter-spacing: normal;
	}
}

@media (max-width: 523px){
	#about{
		padding: 0px;
		margin: 0px 0px 10px 0px;
		width: 100%;
	}
	.about p{
		padding: 0;
		margin: 0;
		line-height: 2px;
		letter-spacing: normal;
		font-size: 7px;
		text-align: center;
	}
}

/*Contact*/
.contact{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 90%;
	margin: 5% auto;
	border: 1px solid #a0a0a0;
	border-radius: 10px;
	box-sizing: border-box;
}

.contact-heading{
	text-align: center;
    padding-top: 10px;	
	margin: 0 auto;
}

.wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.contactInfo{
	width: 45%;
	display: flex;
	flex-direction: column;
	padding: 20px 45px;
	letter-spacing: 1px;
}

.contactInfo a:link{
	text-decoration: none;
	color: #000;
}

.box{
	position: relative;
	padding: 25px 0px;
	display: flex;
	text-shadow: 100px;
	border-bottom: 1px solid #a0a0a0;
}

.box:hover{
	border-bottom: 1px solid #343a40;
}

.icon{
	min-width: 50px;
	height: 50px;
	background: #333333;
	font-size: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.text{
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	flex-direction: column;
	font-weight: 300;
}

.text h4{
	font-weight: 300;
	color: #000;
	margin: 0px;
}

.text p{
	font-size: 16px
}

.address{
	padding-bottom: 0;
	margin-bottom: 0;
}

.contactForm{
	width: 45%;
	padding: 20px 45px;
}

.contactForm hr{
	border: none;
	border: 1px solid #343a40;
	width: 50%;
	margin: 0px;
	padding: 0px;
}

.contactForm input{
	font-family: Montserrat;
	width: 95%;
	height: 35px;
	font-size: inherit;
	letter-spacing: 0.8px;
}

.inputBox{
	padding: 10px 0px;
}

.inputBox span{
	font-size: 19px
}

.inputBox textarea{
	width: 95%;
	overflow: hidden;
}

.inputBox input[type="submit"]{
	background: #333333;
	height: 40px;
	color: white;
	font-size: 20px;
	border-radius: 2px;
}

.inputBox input[type="submit"]:hover{
	background: #343a40;
}


@media (max-width: 991px){
	.contact{
		padding: 0px;
		margin: 0px;
	}
	.wrapper{
		flex-direction: column;
	}
	.contactInfo{
		position: relative;
		margin-bottom: 20px;
		width: 100%;
	}
	.contactForm{
		width: 100%;
		padding: 0px;
	}
}

@media (max-width: 523px){
	.contact{
		padding: 5px;
		margin: 0px;
		width: 100%;
	}
	.contact-heading{
		padding: 0px;
		margin: 0px;
	}
	.contactInfo{
		padding: 0px;
	}
	.contactForm{
		padding: 0px;
		margin: 0px;
	}
	.icon{
		font-size: 18px;
		min-width: 35px;
		height: 35px;
	}
}
/*Footer*/
footer p{
	color: #999;
	line-height: 25px;
	text-align: justify;
	justify-content: center;
}

h3, h4{
	color: #fff;
}

.footer-top{
	background: #111;
	padding: 40px;
}

.segment-one h4{
	margin: 20px 0;
}

.segment-two h3{
	margin: 15px 0;
}

.segment-three h3{
	margin: 20px 0;
}

.segment-two ul{
	margin: 0;
	padding: 0;
}

.segment-two ul li{
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	line-height: 40px;
}

.segment-two ul li a{
	text-decoration: none;
	color: #999;
	display: block;
	transition: 0.2s ease;
}

.segment-two ul li a:hover{
	padding-left: 15px;
	color: #ebb923;
	transition: 0.2s ease;
}

.segment-three input{
	width: 100%;
	margin-bottom: 10px;
	height: 35px;
	background: transparent;
	border: 1px solid #999;
	color: white;
	font-weight: lighter;
}

.segment-three textarea{
	width: 100%;
	margin-bottom: 10px;
	background: transparent;
	border: 1px solid #999;
	color: white;
	font-weight: lighter;
}

.segment-three button{
	width: 35%;
	position: absolute;
	right: 14px;
	padding: 7px;
	border: none;
	border-radius: 2px;
	background: #ebb923;
	transition: 0.2px;
}

.segment-three button:hover{
	background: #dba800;
	transition: 0.3s;
}

.segment-three button i{
	padding-right: 10px;
}

.segment-one h4:before{
	content: '|';
	color: #ebb923;
	padding-right: 10px;
}

.segment-two h3:before{
	content: '|';
	color: #ebb923;
	padding-right: 10px;
}

.segment-three h3:before{
	content: '|';
	color: #ebb923;
	padding-right: 10px;
}

.footer-bottom-text{
	color: #999;
	background: #333;
	text-align: center;
	padding: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px){
	.md-mb-30{
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767px){
	.sm-mb-30{
		margin-bottom: 30px;
	}
	.footer-top{
		padding: 25px 0px; 
	}
}

