body{
	background: #303030;
	color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}
	
a {
	position: relative;
	color: #47C6F8;
	transition: all 0.3s ease-in-out;
}
	
a:hover {
	color: #0FF;
	text-decoration: none;
}

a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	border-bottom: 3px solid #3366FF;
	transition: 0.4s;
}

a:hover:after {
	width: 100%;
}

h2
{
	text-align: center;
	font-size: 40px;
	padding-bottom: 40px;
}	
h2 span {
	color: #28a7e9;
	font-weight: bold;
}
/* end h2 */

#about, #achievements, #projects
{
	padding-top: 60px;
	padding-bottom: 40px;
}

/* start preloader */
.preloader
	{
		position: fixed;
  		top: 0;
  		left: 0;
  		width: 100%;
  		height: 100%;
  		z-index: 99999;
  		display: -webkit-box;
  		display: -webkit-flex;
  		display: -ms-flexbox;
  		display: flex;
  		-webkit-flex-flow: row nowrap;
  		    -ms-flex-flow: row nowrap;
  		        flex-flow: row nowrap;
  		-webkit-box-pack: center;
  		-webkit-justify-content: center;
  		    -ms-flex-pack: center;
  		        justify-content: center;
  		-webkit-box-align: center;
  		-webkit-align-items: center;
  		    -ms-flex-align: center;
  		        align-items: center;
  		background: none repeat scroll 0 0 #ffffff;
	}
.sk-spinner-wave.sk-spinner 
	{
  		width: 50px;
  		height: 30px;
  		text-align: center;
  		font-size: 10px; 
  	}
.sk-spinner-wave div 
	{
  		background-color: #333;
  		height: 100%;
  		width: 6px;
  		display: inline-block;
         -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
                 animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
         
    }
.sk-spinner-wave .sk-rect2 
	{
          -webkit-animation-delay: -1.1s;
                  animation-delay: -1.1s; 
      }
.sk-spinner-wave .sk-rect3 
	{
          -webkit-animation-delay: -1s;
                  animation-delay: -1s; 
     }
.sk-spinner-wave .sk-rect4 
	{
          -webkit-animation-delay: -0.9s;
                  animation-delay: -0.9s;
     }
.sk-spinner-wave .sk-rect5 
	{
          -webkit-animation-delay: -0.8s;
                  animation-delay: -0.8s; 
     }

@-webkit-keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
            -webkit-transform: scaleY(0.4);
                    transform: scaleY(0.4); }

  20% {
            -webkit-transform: scaleY(1);
                    transform: scaleY(1); } }

@keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
            -webkit-transform: scaleY(0.4);
                    transform: scaleY(0.4); }

  20% {
            -webkit-transform: scaleY(1);
                    transform: scaleY(1); } }
/* end preloader */

header
	{
		min-height: 20px;
		padding-top: 18px;
		padding-bottom: 10px;
	}
header .fa
	{
		color: #28a7e9;
	}
header span
	{
		font-weight: bold;
		padding-right: 10px;
		padding-left: 4px;
	}
header a
	{
		color: #999;
		font-weight: 600;
	}
header .social-icon
	{
		text-align: right;
	}
header .social-icon li a
	{
		border: none;
		width: 20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
	}

.social-icon-container {
	padding-bottom: 10px;
	padding-top: 20px;
}

.social-icon-container a:hover{
	text-decoration: none;
}

.social-icons {
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 15px;
}

.social-icons svg {
	transition: all 0.2s ease-in-out;
}
.social-icons svg:hover {
	transform: rotate(-20deg) scale(1.32);
}

/* start nagivation */
.navbar-default
	{
		background: #333;
		border: none;
		box-shadow: none;
		margin: 0 !important;
	}
.navbar-default .navbar-brand
	{
		font-weight: 500;
		font-size: 30px;
		height: 70px;
		line-height: 40px;
		padding: 14px 0px 0px 12px;
		color: #ffffff;
	}
.navbar-default .navbar-nav li a {
	font-weight: bold;
	font-size: 13px;
	height: 70px;
	line-height: 40px;
	transition: all 0.3s ease-in-out;
}
.navbar-default .navbar-nav li a:hover {
	color: #ffffff;
}

.navbar-default .navbar-nav > li > a.current { 
	color: #28A7E9; 
}
.custom-nav {
	border-radius: 0;	
	width: 100%;
	z-index: 1000;
}
.sticky {	
	position: fixed;
	left: 0;
	top: 0;	
}
/* end navigation */

/* start home */
#home {
	background: url('../images/home-bg.jpg') no-repeat;
	/* background: #404040; */
	background-size: cover;
	padding-top: 180px;
	padding-bottom: 100px;
	min-height: 650px;
}
#home h1 {
	font-weight: 300;
	font-size: 70px;
	text-align: center;
	padding-bottom: 10px;
}
#home h1 span {
	color: #28a7e9;
	font-weight: bold;
}
#home .btn {
	background: transparent;
	border-radius: 2px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	margin-top: 20px;
	width: 180px;
	height: 60px;
	padding-top: 18px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
#home .btn:hover
	{
		background: #28a7e9;
		border-color: transparent;
	}
.element {
	height: 60px;
	font-size: 25px;
	font-weight: 600;
	padding-bottom: 10px;
	text-align: center;
}
/* end home */

/* start about */

#about {
	background: #111111;
	padding: 70px 0px 70px 0;
}

.media {
	font-size: 27px;
}

.youtube-icon {
	font-size: 50px;
	color: #bb0000;
}

.language-icons {
	font-size: 80px;
}

.language-icon-size {
	transition: all 0.3s ease-in-out;
}

.language-icon-size:hover {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* end about */

/* start team */
#achievements {
	padding-top:70px;
	background: #404040;
	padding-bottom: 70px;
}

.timeline {
	width: 100%;
	max-width: 1000px;
	padding: 10px 10px;
	position: relative;
}
.timeline:before {
	content: '';
	position: absolute;
	top: 0px;
	left: calc(33% + 15px);
	bottom: 0px;
	width: 4px;
	background: #ddd;
}
.timeline:after {
	content: "";
	display: table;
	clear: both;
}

.entry {
	clear: both;
	text-align: left;
	position: relative;
}
.entry .title {
	font-size: 14px;	
	margin-bottom: .2em;
	float: left;
	width: 33%;
	padding-right: 30px;
	text-align: right;
	position: relative;
}
.entry .title:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border: 4px solid #28A7E9;
	background-color: #fff;
	border-radius: 100%;
	top: 30%;
	right: -8px;
	z-index: 99;
}

.entry .title h3 {
	margin: 0;
	font-size: 120%;
}

.entry .title p {
	margin: 0;
	font-size: 110%;
}

.entry .body {
	margin: 0 0 2em;
	float: right;
	width: 66%;
	padding-left: 30px;
}

.entry .body p {
	line-height: 1.4em;
}

.entry .body p:first-child {
	margin-top: 0;
	font-size: 120%;
	font-weight: 400;
}
.entry .body ul {
	color: #aaa;
	padding-left: 0;
	list-style-type: none;
}
.entry .body ul li:before {
	content: "–";
	margin-right: .5em;
}

/* end team */

/* start projects */
#projects {
	background: #111;
}

#projects .col-md-4 {
	padding: 20px;
	-webkit-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
#projects .col-md-4:hover {
	background: #505050;
	
}
#projects a {
	color: #28a7e9;
	font-weight: 600;
	padding-top: 10px;
	padding-bottom: 14px;
}

#projects a:hover {
	color: #0FF;
}

#projects h4 {
	color: #28a7e9;
	font-weight: 600;
	padding-top: 10px;
	padding-bottom: 14px;
}
/* end projects */

/* start footer */
#foot {
	padding: 20px;
	background: #111;
}
#foot p{
	font-weight: 400;
}
/* end footer */

@media only screen and (max-width: 1199px) and (min-width: 992px) {
	#portfolio .portfolio-thumb .portfolio-overlay {
		padding: 0px 8px;
	}
}

/* start 768 media quires */
@media only screen and ( max-width: 767px ) {
	#home
		{
			min-height: 300px;
			padding-top: 80px;
			padding-bottom: 60px;
		}
	#home h1
		{
			font-size: 52px;
		}

	.custom-nav {
		position: fixed;
    	top: 0;
	}
	header {
		margin-top: 70px;
	}
	header .social-icon {
		text-align: left;
	}
	.navbar-toggle {
		margin-top: 15px;
	}
	.navbar-collapse {
		max-height: 300px;
		overflow-y: auto;
	}
	.navbar-default .navbar-nav li a {
		height: 45px;
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 35px;
	}
}
/* end 768 media quires */

/* start 360 media quires */
@media only screen and ( max-width: 360px ) {
	header .social-icon
		{
			text-align: left;
		}
	#home
		{
			min-height: 200px;
			padding-top: 60px;
			padding-bottom: 40px;
		}
	#home h1
		{
			font-size: 32px;
		}

}
/* end 360 media quires */