
@import url("assets/css/fontawesome.css");
@import url("assets/css/brands.css");
@import url("assets/css/solid.css");

*{
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
	box-sizing: border-box;
}


.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(58,83,155,0.8),rgba(58,83,155,0.8)),url(images/demo/backgrounds/banner.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}

nav{
	display: flex;
	width: 100%;
	padding: 1% 6%;
	justify-content: space-between;
	align-items: center;
	transition: background 1s;
}

nav .logo{
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	color:#fff;
}

nav .logo .company_name{
	padding :0 0  0 20px;
	font-size:20px;
}

nav .logo img{
	width: 50px;
	margin-right: 10px;
}

nav h3{
	font-size: 20px;
	color: #fff;
	padding: 0 50px;
}



.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 10px 10px;
	
}

.nav-links ul li a{
	color: #fff;
	text-decoration: none;
	font-weight: 400;
}

nav:hover{
	background:#f7cac9;
	
}

nav:hover .logo{
	color:#000000;
}

nav:hover ul li a{
	color:#000000;
}
	
	
.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	
}

.text-box h1{
	font-size: 30px;
	font-weight:900;
	text-align:center;
	text-transform: uppercase;
	line-height: 1.6;
}

.text-box p{
	margin: 10px 0 20px;
	font-size: 20px;
	color: #fff;
	line-height: 1.6;
}
	
.know-more-btn {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 2px solid #fff;
	padding: 8px 20px;
	font-size: 15px;
	background: transparent;
	position: relative;
	cursor: pointer;
	text-align:center;
}

.know-more-btn:hover{
	border: 1px solid #FF7F50;
	background: #FF7F50;
	transition: 1s;
}






.aboutus{
	width: 100%;
	margin: auto;
	text-align: left;
	padding-top: 75px;
	background-color: #d3d3d3;
	background-size: cover;
	
}

h1{
	font-size: 50px;
	font-weight: 600;
	margin: 10px 0;
	text-align: center;
}

h2{
	text-align: center;
	font-weight: 400;
	margin: 20px;
}

.row{
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 50px;
}

.about-col{
	flex-basis: 30%;
	text-align: justify;
	border-radius: 20px;
	margin-bottom: 2%;
	padding: 20px 20px;
	box-sizing: border-box;
	background:#ffdde2;
	border-radius: 10px;
}





.about-col p {
	
	line-height:1.4;
	border-radius: 10px;
	overflow:hidden;
}

.about-col img{
	width: 100%;
	
}


#btn{
	display:block;
	color: #fff;
	background-color: 115DA8;
	text-decoration: none;
	padding: 10px 15px;
	border-radius: 8px;
	margin-top: 15px;
	cursor:pointer;
	font-size:20px;
}









.solutions{
	width: 100%;
	margin: auto;
	text-align: left;
	padding-top: 75px;
	background-color: #d0f0c0;
	background-size: cover;
	
}

.solution-col{
	flex-basis: 23%;
	border-radius: 10px;
	text-align: justify;
	margin-bottom: 5%;
	box-sizing: border-box;
	padding: 20px 20px;
	background:#ffdde2;
	border-radius: 10px;
	
	
	
		
}



.solution-col img{
	width: 100%;
	height: 188px;
	border-radius: 10px;
	border: 2px solid #000000;
	cursor: pointer;
	transition: 0.4s ease-in-out;
}

.solution-col img:hover{
	transform: scale(2);
}
	
.solution-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: center;
	font-size: 30px;
}
	
.Projects{
	width: 100%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
	background-color: #F5F5DC;
	background-size: cover;
}

.projects-col{
	flex-basis: 45%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: justify;
	background:#ffdde2;
	border-radius: 10px;
	margin-bottom: 5%;
	box-sizing: border-box;
	padding: 20px 30px;
}


	
.projects-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: center;
	font-size: 30px;
}


.ProjectsGallery{
	width: 100%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
	background-color: #a3a375;
	background-size: cover;
	
}

.gallery-col{
	flex-basis: 45%;
	border-radius: 10px;
	padding-bottom: 30px;
	position: relative;
	overflow: hidden;
	background-color:#ffdde2;
	border-radius: 10px;
	background-size:cover;
	margin-bottom:50px;
}

.gallery-col img{
	width: 100%;
	height: 455px;
}


.gallery-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: center;
	font-size: 20px;
}
	
.gallery-col p{
	padding:0 10 0 10;
	text-align: justify;
	line-height: 1.4;
	margin-left: 10px;
}

.footer{
	width: 100%;
	margin: auto;
	text-align: right;
	padding-top: 50px;
	background-color:#505050;
	background-size:cover;
}

.footer-col{
	flex-basis: 45%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	
}

.footer-col h3{
	margin-top: 16px;
	text-align: left;
	font-size: 20px;
	color: white;
}

.footer-col p{
	padding:10 10 10 0;
	text-align: justify;
	margin: 0 0 0 0;
	line-height: 1.4;
	color:white;
}



.footer-col form p{
	padding: 5px 0;
	margin: 10 0 0 0;
	font-size: 60px;
}

.footer-col form p input{
	padding: 5 5;
	margin: 0 0 0 0;
	font-size: 15px;
}

.scroll-to-top {
    position: fixed;
    bottom: -100px;
    right: 30px;
    /*display: none;*/ /* this is optional if you want fadeIn/fadeOut effect */
    width: 60px;
    height: 60px;
    background-color: #cccccc;
    text-align: center;
    border-radius: 100%;
    color: #000000;
    font-size: 20px;
    padding-top: 15px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.animate-button {
     transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     bottom: 30px;
}


			


		




.fa-bars  {
	display: none;
}
.fa-xmark{
	display: none;
}




@media (max-width: 700px) {
	.row {
		flex-direction:column;
	}
}

@media(max-width: 700px){
	
nav{
	
	padding: 6% 6%;
	
}
nav .logo img{
	width: 70px;
	margin-right: 10px;
}
	
nav .logo{
	
	font-size: 15px;
	font-weight: 200;
}

nav .logo .company_name{
	font-size: 30px;
}
	
.text-box h1{
	font-size: 30px;
	
	line-height:1.6;
	
	font-weight:400;
	}
	
.text-box p{
	font-size: 30px;
	line-height: 1.6;
}

.know-more-btn {
	padding: 4px 10px;
	font-size: 20px;
	
	
	
}
.nav-links ul li{
	display: block;
	font-size: 30 px;
}


.nav-links {
	position: absolute;
	background:#f44336;
	height: 100vh;
	width: 175px;
	top:0;
	right:-175px;
	text-align: left;
	z-index: 2;
	transition: 1s;
}
nav .fa-solid{
	display:block;
	color: #fff;
	margin:10px;
	font-size: 22px;
	cursor: pointer;
}

.nav-links ul {
	padding: 30px;
}
	
}


