@charset "utf-8";
/* CSS Document */
/* CSS Resets */
* {
	padding:0;
	margin:0;
	box-sizing:border-box;
}
html{
	height: 100%;
}
body {
	font-family:Arial, Helvetica, sans-serif;
	height:100%;
}
#all{
	min-height:100%;
	position:relative;
}
#header {
	margin:auto;
	display:block;
	width:100%;
    height:auto;
}
.main-logo{
	padding:10px 0 0 20px;
	margin-right:60px;
	width:320px;
	display:inline-block;
	vertical-align:middle;
}
/*NAVIGATION BAR*/
#header ul{
display:inline-block;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}

#header li{
	display: inline-block;
	text-align: center;
	text-decoration: none;
}

#header li a{
	padding: 14px 18px;
	display:block;
	color:#161616;
	text-decoration: none;
}
#header li a:hover{
	background-color:#09aeed;
}
#header li a:hover{
	font-weight:bold;
	color:white;
	transition: 0.3s;
	text-align: center;
	text-decoration: none;
}
#header li:hover:after{
	z-index:4;
    position: relative;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    border-top-color: #09aeed;
    content: '';
    pointer-events: none;
    display: block;
    margin: auto;
}
#header li.active a{
	background-color: #09aeed;
	color:white;
}
#header li.active:after{
	z-index:4;
    position: relative;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    border-top-color: #09aeed;
    content: '';
    pointer-events: none;
    display: block;
    margin: auto;
}
#header li.active ul li a{
	color:#333;
	background-color:#ffcd03;
}
#header li.active ul li a:hover{
	color:white;
}

#header li a:visited{
	text-decoration:none;
}

#header ul ul{
	margin-top:0;
	padding-top:5px;
	z-index:5;
	display:none;
	background-color:#ffcd03;
	position: absolute;	
}

#header ul li:hover > ul {
		display: block;
	}

		#header ul ul li {
			min-width:130px;
			float: none; 
			position: relative;
			display:block;
		}
		#header ul ul li:hover {
			background-color:transparent;
		}
			#header ul ul li a {
				color:#333;
			}	
				#header ul ul li a:hover {
					background-color: #003366;
				}
				#header ul ul li:hover:after{
					animation-name:fade;
					animation-duration:0.6s;
					transition: 0.6s ease;
					border-top-color: #003366;
				}
#header hr{
	width:80%;
	text-align:center;
	display:block;
	margin-right:auto;
	margin-left:auto;
	border-color:#333333;
	margin-bottom:5px;
}
.menu-mob{
    display:none!important;
}
.menu-mob a:hover{
    color:white!important;
}
.menu-mob:hover:after{
    display:none!important;
}
.menu-mob a:hover:after{
    display:none!important;
}
/*NAVIGATION BAR*/
#content{
	margin-top:25px;
	margin-right:auto;
	margin-left:auto;
	width:100%;
}
#content-left{
	width:48%;
	display:inline-block;
	vertical-align:top;
}
#content-right{
	width:48%;
	display:inline-block;
	vertical-align:top;
}
#content-right-sidebar{
	width:35%;
	display:inline-block;
	vertical-align:top;
}
.mySlides1, .mySlides2 {display: none}
/* Slideshow container */
.slideshow-container {
	background-image: url(assets/bg1.jpg);
	background-size: cover;
	background-color: #003366;
	max-width: 100%;
	position: relative;
	margin: auto;
	overflow: hidden;
}
.slideshow-container video{
	object-fit:contain;
}
.slideshow-container img{
	object-fit:contain;
    width: 85%;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 32px;
  margin-top: -22px;
  color: #003366;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev2, .next2 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -35px;
  color: #333;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}
.next2 {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev2:hover, .next2:hover {
  background-color: #003366;
  color:white;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color:white;
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.header-caption {
	font-family:Montserrat, Arial, sans-serif;
	color:white;
	font-size:36px;
	padding:20px;
	position:absolute;
	text-align:left;
	top:2px;
	left:10%;
	text-shadow:2px 2px 4px #000000;
	font-weight:bold;
}
/* Number text (1/3 etc) */
.numbertext {
  font-family:Montserrat, Arial, sans-serif;
  color: #f2f2f2;
  font-size: 1.5vw;
  padding: 12px 24px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot:hover{
  background-color: #717171;
}
.dot:active{
  background-color: #717171;
}
active, .dot{
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
.slideshow-container2 {
  width: 700px;
  position: relative;
  overflow:hidden;
  min-height:200px;
}
.slideshow-container2 img{
}
.linkto{
	color:#09aeed;
	text-decoration:none;
	margin-left:25px;
}
.linkto:hover{
	color:#ffcd03;
}
#content-2{
	position:relative;
	vertical-align:top;
	display:inline-block;
	margin-top:5px;
	width:50%;
}
#content-3{
	position:relative;
	display:inline-block;
	vertical-align:top;
	margin-top:5px;
	width:45%;
    padding-left: 50px;
}
.introtext{
	padding:20px;
}
.introtext p{
	margin-bottom:15px;
	line-height:21px;
}
.introtext b{
	color:#474747;
}
.ourclient h2{
	background-color:#003366;
	width:250px;
	font-family:Montserrat, Arial, sans-serif;
	padding:5px 5px 5px 25px;
	margin-top:35px;
	margin-bottom:5px;
	color:white;
}
.client-row{
	margin:auto;
}
.client-row img{
    height: 220px;
    object-fit: contain;
	display:inline-block;
	margin:auto;
	vertical-align:middle;
}
.sampleproject{
}
.sampleproject a{
	text-decoration:none;
}
.sampleproject h2:hover{
	opacity:0.8;
}
.sampleproject h2{
    text-align: right;
    background-color: #003366;
    width: 320px;
    font-family: Montserrat, Arial, sans-serif;
    padding: 5px 45px 5px 5px;
    margin-top: 35px;
	margin-bottom:5px;
	color:white;
}
.proj-img{
	margin-top:15px;
	display:block;
}
.proj-img img:hover{
	opacity:0.5;
	}
.index-img{
	overflow:hidden;
	position:relative;
	display:inline-block;
	width:250px;
	height:200px;
	margin:5px;
	background-color:#333;
}
.index-img img{
	height:100%;
	width:100%;
	object-fit:cover;
	display:block;
	object-position: 70% 0;
}
.index-img:hover .index-overlay {
  opacity: 1;
}
.index-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color:#2a3c527a;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .5s ease;
}

.index-desc {
  text-align:center;
  white-space: normal; 
  color: white;
  font-family:Montserrat, Arial, sans-serif;;
  font-size: 13px;
  overflow: hidden;
  position:absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-shadow:2px 2px 2px #666;
}
.index-desc p{
	margin-bottom:5px;
}
.index-desc:hover {
	font-size:15px;
	color:#ffcd03;
}

#footer{
	height:30px;
  display:block;
padding-top:60px;
  position:relative;
   width:100%;
}
.footer-line{
	background-color:#09aeed;
	height:12px;
	width:88%;
}
.footer-content{
	background-color:#097aed;
	padding:35px;
}
.footer-content p{
	font-family:Montserrat, Arial, sans-serif;
	font-size:12px;
	color:white;
}
.footer-content a{
	color:white;
}
.footer-content a:hover{
	background-color:white;
	color:#097aed;
}
.cv-pro-list{
	list-style-type:circle;
	margin-top:-2px;
	margin-bottom:5px;
}
.carousel-main{
	width:85%;
}
.carousel-main:hover{
    opacity:0.8;
}
@media only screen and (max-width: 800px) {
 #header ul{
    display:block;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}
    /*A
  .mainnav.drop-mob {position: relative;}
  .mainnav.drop-mob a {
    float: none;
    display: block;
    text-align: left;
  }
#header li:not(.active) {display: none;}
.menu-mob{
    display:inline-block!important;
    margin-left:15px;
}
.menu-mob a{
    border: solid 5px #09aeed;
    padding: 8px 40px!important;
    color: #09aeed!important;
    font-weight:bold;
}
*/
.main-logo{
    width:220px;
    padding:0;
    margin-top:10px;
    margin-bottom:15px;
    margin-right:auto;
    margin-left:auto;
    display:block;
}
#content-2{
	display:block;
	width:100%;
}
#content-3{
	position:relative;
	display:block;
	width:100%;
    padding-left: 0px;
	padding-top: 40px;
}
.ourclient h2{
    width:100%;
    margin-top:10px;
    margin-bottom:30px;
    text-align:center;
    padding:5px;
}
.sampleproject h2{
    width:100%;
    text-align:center;
    padding:5px;
}
.carousel-main{
	width:100%;
}
.carousel-main img{
    width:100%;
}
.header-caption {
    font-size:12px;
    padding:5px;
}
.index-img {
    width:45%;
  }
.proj-img{
    text-align:center;
    }
}
@media only screen and (max-width: 1000px){
    #content-left{
	width:100%;
	display:block;
}
#content-right{
	width:100%;
	display:block;
}
	#content-right-sidebar{
	width:100%;
	vertical-align:top;
	margin-left:auto;
	margin-right:auto;
	display:block;
	padding:10px;
}
}
@media only screen and (max-width: 1350px) {
.slideshow-container2{
	width:500px;
	height:120px;
}
.client-row{
	width:500px;
	margin:auto;
}
.client-row img{
	width: 80px;
    height: 150px;
}
}
@media only screen and (min-width: 1400px) {
.index-img {
    width:45%;
  }
}