/*-------------
 	General
-------------*/

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

html{
	font: normal 16px sans-serif;
	color: #555;
}

li.nav-li-item{
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;

	opacity: 0.9;
}

a:hover{
	opacity: 1;
}

a.btn{
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #2196F3;
	font-weight: 800;
	text-align: center;
}

section{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 125px 100px;
}

p{
	font-size: 20px;
}

@media (max-width: 1000px){

	section{
		padding: 100px 50px;
	}

}

@media (max-width: 600px){

	section{
		padding: 80px 30px;
	}

}

@media (max-width: 400){

	p{
		font-size: 18px;
	}

}

section h3.title{
	color: #414a4f;
	text-transform: capitalize; 
	font: bold 32px 'Open Sans', sans-serif;
	margin-bottom: 35px;
	text-align: center;
}

section p{
	max-width: 800px;
	text-align: center;
	margin-bottom: 10px;
	padding: 0 20px;
	line-height: 2;
}

ul.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 400){

	section p{
		padding: 0;
	}

}


/*-------------
 	Navbar
-------------*/

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	background-color: #333;
	padding: 10px 100px 10px;
}

.navbar h2 {
	font-family: 'Quicksand', sans-serif;
	display: flex;
	align-items: center;
}

.navbar h2 img {
	background-color: white;
	border-radius: 14px;
}

.navbar h2 span {
	margin-left: 5%;
}

.menu-li-container {
	display: flex;
}

.navbar nav li {
	margin: 0 15px;
}

.nav-icon-phone-menu{
	font-size: 1.5em;
	transform: scaleX(-1);
}

.nav-icon-btn-menu{
	font-size: 2.2em;
}

.small-screen {
	display: none;
}

.dropbtn{
	width: 30px;
	border-radius: 10%;
	border: #333;
}

@media (max-width: 1000px){
	.navbar {
		padding: 20px 50px;
	}
}


@media (max-width: 700px){

	.big-screen {
		display: none;
	}

	.small-screen {
		display: block;
	}

	.navbar {
		padding: 5px 20px;
	}

	.menu-content {
		display: none !important;
		position: absolute;
		background-color: #fff;
		width: 100%;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		top: 100%;
		left: 0%;
		z-index: 1;
		padding: 10px 20px;
	}

	.dropdown-content a {
		color: black !important;
		padding: 12px 16px;
		margin-left: 20px; 
		text-decoration: none;
		display: block;
		font-family: 'Open Sans', sans-serif;
		font-weight: bold;
	}

	.show {
		display:block !important;
		height: 300px;
		background-color: #333;
		color: #fff;
		opacity: 0.9;
	}

	.menu-li-container {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		height: 100%;
		font: bold 20px 'Open Sans', sans-serif;
	}

	#menu-img {
		width: 30px;
	}
}



/*----------------
 	Hero Section
----------------*/

.welcome {
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.welcome .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #2196F3;
	z-index: -1;
}

.welcome .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #414a4f;
	opacity: 0.75;
}

.welcome h1{
	font: bold 60px 'Open Sans', sans-serif;
	margin-bottom: 15px;
}

.welcome h3{
	font: normal 28px 'Open Sans', sans-serif;
	margin-bottom: 40px;
}

.welcome a.btn{
	padding: 20px 46px;
}

@media (max-width: 800px){

	.welcome {
		min-height: 600px;
	}

	.welcome h1 {
		font-size: 48px;
	}

	.welcome h3 {
		font-size: 24px;
	}

	.welcome a.btn {
		padding: 15px 40px;
		margin-top: 10px;
	}
}



/*--------------------
 	Our Work Section
---------------------*/

.оur-work{
	background-color: #fff;
}

.img-grid{
	/* border: 1px solid red; */
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}

.frame{
	width: 40%;
	display: flex;
	flex-direction: column;
	color: #333;
	margin-bottom: 20px;
}

.img-container{
	width: 100%;
}

.img{
	width: 100%;
}


@media (max-width: 600px){
	.frame{
		width: 100%;
	}
}



/*----------------------
 	Features Section
----------------------*/

.features{
	background-color: #f7f7f7;
}

.features-li{
	font-size: 20px;
}

@media (max-width: 1000px){

	.features .grid li{
		flex-basis: 70%;
		margin-bottom: 65px;
	}

	.features .grid li:last-child{
		margin-bottom: 0;
	}

}


@media (max-width: 600px){

	.features .grid li{
		flex-basis: 100%;
	}

}



/*--------------------
 	About Section
--------------------*/

.about{
	background-color: #fff;
}

.justify-txt{
	text-align: justify;
	text-justify: inter-word;
}

/*---------------------
 	Contact Section
---------------------*/

.contact{
	background-color: #f7f7f7;
	position: relative;
}

#contact-img{
	border-radius: 50%;
	transform: scale(0.5);
	position: absolute;
	top: 0;
	right: 0;
}

.contact-li{
	list-style: none;
	margin: 20px;
}

.contact form{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 800px;
	width: 80%;
}

.form-input{
	padding: 15px;
	flex: 1;
	margin-right: 30px;
	font-size: 18px;
	color: #555;
	margin: 20px 30px;
	width: 40%;
}

.contact form .btn{
	padding: 18px 42px;
}

form {
	display: flex;
	flex-direction: column;
}

textarea {
	padding: 10px;
	max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	opacity: 0.7;
  }
  ::-moz-placeholder { /* Firefox 19+ */
	opacity: 0.7;
  }
  :-ms-input-placeholder { /* IE 10+ */
	opacity: 0.7;
  }
  :-moz-placeholder { /* Firefox 18- */
	opacity: 0.7;
  }

@media (max-width: 800px){

	.form-input{
		flex-basis: 100%;
		margin: 0 0 20px 0;
		width: 100%;
	}

	#contact-img{
		display: none;
	}

}

@media (max-width: 400px){



}




/*-------------
 	Footer
-------------*/

footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #414a4f;
	padding: 60px 0;
}

footer ul{
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li{
	margin: 0 8px;	
}

footer ul li:first-child{
	margin-left: 0;	
}

footer ul li:last-child{
	margin-right: 0;	
}

footer p{
	text-transform: uppercase;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

footer p a{
	color: #fff;
}

@media (max-width: 700px){

	footer{
		padding: 80px 15px;
	}

}


/* -- Demo ads -- */

@media (max-width: 1200px) {
	#bsaHolder{ display:none;}
}