/* Colors
#015AD9
#DAE4F2
#02B6F2

#262626
#F8F8F8
#FFFFFF
-------*/

/*Reset*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

html, body {
    max-width: 100%;
		font-size: 10px;
    overflow-x: hidden;
		scroll-behavior: smooth;
}

#gotopbtn{
	position: fixed;
	width:40px;
	height: 40px;
	background: #02B6F2;
	bottom: 40px;
	right:40px;
	text-align: center;
	line-height: 40px;
}



/*---------*/

body{
	font-family:Montserrat;
	font-size:16px;
	background:#f8f8f8;
	color:#fff;
}

nav{
	z-index:999;
	background:#142c52;
	padding:0 15px;
	position: absolute;
	width:100%;
}

a{
	color:#FFF;
	text-decoration:none;
}

h1{
	font-size:2.5em;
}

.menu,
.submenu{
	list-style:none;
}

.logo{
	font-size:20px;
	padding:7.5px 10px 7.5px 0;
}

.item{
	padding:10px;
}

.item.button{
	padding:10px 5px;
}

.item:not(.button) a:hover,
.item a:hover::after{
	color:#DAE4F2;
}

/* Mobile nav */

.menu{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
}

.menu li a{
	display:block;
	padding:15px 5px;
	font-weight:700;
}

.menu li.subitem a{
	padding:15px;
}

.toggle{
	order:1;
	font-size:20px;
}

.item.button{
	order:2;
	border-bottom: 1px solid #DAE4F2;
}

.item{
	order:3;
	width:100%;
	text-align:center;
	display:none;
}

.active .item{
	display:block;

}

/* Dropdown menu */

.submenu{
	display:none;
}

.submenu-active .submenu{
	display:block;
}

.has-submenu > a::after{
	font-family: "Font Awesome 5 Free";
	font-size:12px;
	line-height:16px;
	font-weight:900;
	content: "\f078";
	color:#fff;
	padding-left:5px;
}

.subitem a{
	padding:10px 15px;
}

.submenu-active {
	background-color:#024EB9;
	border-radius:3px;
}


/* Home Mobile */

#home{
	background:url('images/home_background.png');
	background-size: cover;
	background-position: center;
}

#home-content{
	padding-left:15px;
	padding-top:35vh;
	padding-bottom:35vh;
}

#home-content h2{
	color:#fff;
	padding: 10px 0;
	width:800px;
	padding-bottom: 80px;
	font-weight: 600;
	font-size:1.5em;
	line-height: 26px;
}

#home .cta{
	background: #fff;
	border:3px solid #fff;
	color:#142c52;
	border-radius: 30px;
	padding: 15px 40px;
	text-align: center;
	width:200px;
	font-weight: 800;
	text-transform: uppercase;
}

/* services mobile */

#services{
	background: #f8f8f8;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 50px;
}

#services h2{
	padding:50px 0 30px;
	color:#142c52;
	text-transform: uppercase;
	font-weight: 800;
}

#services-projects{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}

.project{
	background: #fff;
	width:95vw;
	height: 400px;
	margin-bottom:20px;

}

.project1{
	background: url('images/image1.jpg');
	background-size: cover;
	background-position:right;


}

.project2{
	background: url('images/image2.jpg');
	background-size:cover;
	background-position:right;
}

.project-title{
	padding:90px 20px 20px;
	color:#f8f8f8;
	font-weight: 800;
	font-size:1.5em;
}

.project-desc{
	padding:0 20px;
	color:#f8f8f8;
}

@media screen and (min-width:960px) and (max-width:1400px){

	#home-content{
		padding-left:15px !important;
		padding-top:35vh !important;
		padding-bottom:35vh !important;
	}

	#home h1{
		font-size: 3.2em;
	}

	#home h2{
		width:800px;
	}
#services{
	padding: 0 15px !important;
}

.project{
	padding: 50px;
	width:100vw !important;
}

}

/* Contact form*/
#contact{
  display: flex;
  padding:10px;
	min-height: 800px;
	margin-top:50px;
  background: #142c52;
  align-items: center;
  justify-content: center;
}
::selection{
  color: #fff;
  background: #0D6EFD;
}
.wrapper{
	margin-top: 150px;
  width: 715px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
}
.wrapper header{
  font-size: 22px;
  font-weight: 600;
  padding: 20px 30px;
  border-bottom: 1px solid #ccc;
	color:#142c52;
}
.wrapper form{
  margin: 35px 30px;
}
.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #ccc;
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid #142c52;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #142c52;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #142c52;
  transition: background 0.3s ease;
}
.button-area button:hover{
  background: #025ce3;
}
.button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}

@media (max-width: 600px){
  .wrapper header{
    text-align: center;
  }
  .wrapper form{
    margin: 35px 20px;
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
  }
}

hr#prvi{
	margin-left: 15px;
}

hr{
	width:350px;
	margin: 10px 0;
}

/*Footer*/



.footer {
display: flex;
flex-flow: row wrap;
padding: 15px;
color: #fff;
background-color:#142c52;;
}

.footer > * {
flex:  1 100%;
}

.l-footer {
margin-right: 1.25em;
margin-bottom: 2em;
}

footer h2 {
font-weight: 800;
font-size: 15px;
}

.footer ul {
list-style: none;
padding-left: 0;
}

.footer li {
line-height: 2em;
}

.footer a {
text-decoration: none;
}

.footer a:hover {
text-decoration: underline;
}

.r-footer {
display: flex;
flex-flow: row wrap;
}

.r-footer > * {
flex: 1 50%;
margin-right: 1.25em;
}

.box a {
color: #fff;
}

.h-box {
column-count: 2;
column-gap: 1.25em;
}

.b-footer {
text-align: center;
color: #fff;
padding-top: 50px;
}

.l-footer p {
padding-right: 20%;
color: #fff;
}

@media screen and (min-width: 600px) {
.r-footer > * {
flex: 1;
}

.features {
flex-grow: 2;
}

.l-footer {
flex: 1 0px;
}

.r-footer {
flex: 2 0px;
}
}

/* About us Page *
#015AD9
#DAE4F2
#02B6F2
*/
html{
	background: #fff;
}
#aboutUs {
	padding-left: 15px;
	padding-right: 15px;
		background: #DAE4F2;
		padding-top:150px;
		padding-bottom:  150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
}

.about-section{
    background: url(images/aboutUs.jpg) no-repeat left;
    background-size: 55%;
    background-color: #f1f1f1;
    overflow: hidden;
    padding: 100px 0;
}

.inner-container{
    width: 55%;
    float: right;
    background-color: #fff;
		padding: 150px;
}

.inner-container h1{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}

.text{
    font-size: 13px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

.skills{
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 13px;
}

@media screen and (max-width:1200px){
    .inner-container{
        padding: 80px;
    }
}

@media screen and (max-width:1000px){
    .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-container{
        width: 100%;
    }
}

@media screen and (max-width:600px){
    .about-section{
        padding: 0;
    }
    .inner-container{
        padding: 60px;
    }
}




@media screen and (min-width:960px){

	.footer {
	display: flex;
	flex-flow: row wrap;
	padding-left: 250px;
	padding-right: 250px;
	color: #fff;
	background-color: #142c52;
	}

	#aboutUs {
		padding-left: 250px;
		padding-right: 100px;
}

.inner-container{
    background-color: #f1f1f1;
	}
	hr{
		display: none;
	}
	#home-content{
		padding-left:250px;
	}

	#home h1{
		font-size: 3.2em;
	}

	#home h2{
		width:1000px;
		line-height: 40px;
	}

	#services{
		padding-left: 250px;
		padding-right: 250px;
	}

	.carousel__images {
 	 align-items: center;
 	 display: flex;
	 transform: translateX(-500px);
 	 transition: transform 0.25s;
 }

 .carousel__button {
	 display: none;
}


	.project{
		padding: 50px;
		box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
		width:100vw;
		height:450px;
		background: #fff;
		cursor: pointer;
		transition: 0.4s all;

	}



	.project-img{
		background: blue;
		height:220px;
	}


	.project-title{
		padding:70px 10px 10px;
		color:#f8f8f8;
		font-weight: 800;
	}

	.project-desc{
		padding:0 10px;
		color:#f8f8f8;
	}

	.project1{
		background: url('images/image1.jpg');
		background-size: cover;
	}

	.project2{
		background: url('images/image2.jpg');
		background-size: cover;
	}

	.project3{
		background: url('images/image3.jpg');
		background-size: cover;
	}

}

.wrapper{
	margin-top:-200px;
}

/* Tablet Css*/

/* Destkop Css*/




/* Desktop Menu*/

@media screen and (min-width:1400px){

	nav{
		background:transparent;
		padding:0 250px;
	}

	.logo{
		flex:1;
	}

	.item{
		order:1;
		position:relative;
		display:block;
		width:auto;
	}

	.item.button{
		order:2;
		border-bottom: 0px solid #DAE4F2;
	}


	.submenu-active .submenu{
		display:block;
		position:absolute;
		left:0;
		top:68px;
		background:#024EB9;
	}

	.toggle{
		display:none;
	}

	.submenu-active{
		border-radius:0;
	}
}
