* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes move {
	0% {
		top: 88%;
	}
	100% {
		top: 92%;
	}
}
@keyframes moving {
	100% {
	  transform: translate3d(50px, -55px, 0);
	}
}
@keyframes text {
	50% {
		color: #161616;
	}
}
@keyframes ring {
	0% {
	  transform: rotate(0deg);
	  box-shadow: 1px 5px 2px white;
	}
	50% {
	  transform: rotate(180deg);
	  box-shadow: 1px 5px 2px #0456c8;
	}
	100% {
	  transform: rotate(0360deg);
	  box-shadow: 1px 5px 2px white;
	}
}
body {
	font-size: 14px;
	color: #333;
	background-color: #F9F9F9;
	letter-spacing: 2px;
	line-height: 30px;
	font-family: 'Roboto Slab', serif;
}
.loading {
	z-index: 9999;
	width: 100%;
	height: 100%;
	position: fixed;
	background: #161616;
}
.loading .center {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
  }
.loading .ring {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	animation: ring 2s linear infinite;
}
.loading .ring::before {
	position: absolute;
	left: 0;
	content: "";
	top: 0;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.loading span {
	color: #737373;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 200px;
	animation: text 2s ease-in-out infinite;
}
img {
	max-width: 100%;
}
#head,
.slides {
	position: relative;
}
#head h1,
.h1 {
	font-family: 'Lobster', cursive;
}
#head .heading {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 30%;
	z-index: 10;
	text-align: center;
	color: azure;
	letter-spacing: 5px;
	text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}
#head #pushback {
	height: 0em;
}
#head #navBar {
	position: static;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	margin-bottom: 5%;
}
#head #navBar img {
    min-width: 150px;
    height: 100px;
    position: absolute;
    left: 0%;
	top: 13%;
	z-index: 20;
}
#head nav ul {
	overflow: hidden;
	text-transform: uppercase;
	color: black;
	text-align: center;
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.8);
	background: linear-gradient(-45deg, #000000 -35%, #ffffff 60%);
	background-size: 300% 300%;
	animation: gradient 15s ease-in-out infinite;
}
#head nav li {
	display: inline-block;
	padding: 0 1%;
	font-size: 1em;
	font-weight: bold;
}
#head nav a {
	display: block;
	text-decoration: none;
	padding: 0.8em 1em;
	font-size: 1.3em;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Slabo 27px', serif;
	;
}
#head nav .handle {
	position: relative;
	display: none;
	width: 100%;
	background-color: black;
	text-align: left;
	box-sizing: border-box;
	padding: 1em 2em;
	color: #ddd;
	cursor: pointer;
}
#head nav ul li a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #000;
	transition: width .3s;
}
#head nav ul li a.special::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #000;
	transition: width .3s;
}
#head nav ul li a.special::after {
	width: 100%;
	transition: width .3s;
}
#head nav ul li a:hover::after {
	width: 100%;
	transition: width .3s;
}
#head nav ul li a:hover {
	color: rgba(0, 0, 0, 0.7);
}
#head .box {
	position: absolute;
	width: 50px;
	height: 50px;
	left: 48%;
	top: 116px;
	background: transparent;
	transform: rotate(45deg);
	border: 5px solid transparent;
	border-bottom-color: #fff;
	border-right-color: #fff;
	z-index: 50;
	animation: move 1000ms linear infinite alternate;
}
.current {
	border-bottom: 2px solid black;
}
h2 {
	text-align: center;
	font-family: 'Arvo', serif;
	font-weight: bold;
	text-shadow: 4px 2px 3px rgba(150, 150, 150, 0.91);
}
#about img {
	-webkit-filter: grayscale(50%);
	-moz-filter: grayscale(50%);
	filter: grayscale(50%);
	transition: all 1s ease-in-out;
	cursor: pointer;
}
#about img:hover {
	-webkit-filter: grayscale(5%);
	-moz-filter: grayscale(5%);
	filter: grayscale(5%);
}
#about .btnHead {
	z-index: 20;
	padding: 1em;
	color: white;
	font-size: 1.2em;
	background: linear-gradient(-45deg, #000000 5%, #ffffff 120%);
	background-size: 300% 300%;
	animation: gradient 15s ease-in-out infinite;
	cursor: pointer;
	transition: all .4s ease;
	font-weight: bold;
	border: 1px solid black;
	border-top: none;
}
#about .btnHead a {
	color: white;
	text-decoration: none;
	transition: all .4s ease;
}
#about .btnHead:hover {
	color: black;
	border: 1px solid white;
	border-top: none;
}
#about .btnHead:hover a {
	color: #000000;
}
#about p {
	text-align: left;
	font-size: 1.1em;
}
#skills {
	background-image: url('../img/bg1.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	margin-bottom: 80px;
}
#skills .item strong {
	position: absolute;
	top: 25%;
	left: 45%;
	bottom: 0%;
	font-size: 20px;
	font-weight: normal;
}
#skills .item h4,
.item p {
	margin-top: 15px;
}
#skills .item h4 {
	border-bottom: 1px solid #fff;
	width: 80%;
	margin: auto;
	padding-top: 3%;
	padding-bottom: 3%;
}
#skills .others span {
	margin-right: 1%;
	padding: 10px;
	margin-bottom: 2%;
	background-color: rgba(148, 168, 255, 0.3);
	cursor: pointer;
	transition: all 0.5s ease
}
#skills .others span:hover {
	background-color: rgba(148, 168, 255, 0.8);
}
#portfolio .container-fluid {
	width: 90%;
	margin: auto;
}
#portfolio ul li {
	list-style-type: none;
}
#portfolio ul,
#portfolio .imgContainer {
	width: 100%;
	position: relative;
}
#portfolio .navigation li a {
	font-weight: bold;
}
#portfolio .imgContainer figure {
	box-shadow: -1px 10px 15px -2px rgba(0, 0, 0, 0.5);
	filter: grayscale(0.5);
	-webkit-filter: grayscale(0.5);
	transition: transform .2s ease;
	transition: filter 0.5s ease;
	overflow: hidden;
	width: 100%;
	margin: auto;
	text-align: center;
	cursor: pointer;
}
#portfolio .imgContainer figure img {
	height: 300px;
	object-fit: cover;
}
#portfolio .overlay {
	position: absolute;
	top: 50%;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	transition: all 0.3s ease;
	opacity: 0;
	color: white;
	font-size: 16px;
}
#portfolio .imgContainer figure:hover {
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	transition: all 0.3s ease;
}
#portfolio .imgContainer figure:hover .overlay {
	opacity: 1;
	transform: translate(0%, 7%);
}
#offer {
	background-image: url('../img/bg2.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #f4fefe;
	height: auto;
}
#offer h4 {
	color: #C7EBFF;
	border: 2px solid white;
	padding: 4%;
	background: rgba(0, 0, 0, 0.5);
	font-size: 20px;
	margin-bottom: 5%;
	transition: all 0.5s ease;
	cursor: pointer;
}
#offer h4:hover {
	background: rgba(0, 0, 0, 0.1);
	color: white;
	border: 2px solid #C7EBFF;
}
#offer img {
	transition: all 0.3s ease;
	cursor: pointer;
}
#offer img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
#stats .col-md-2 {
	border: 2px solid #273C75;
	border-top: none;
	position: relative;
}
#stats .col-md-2:before,
#stats .col-md-2:after {
	content: '';
	position: absolute;
	border: 1px solid #273C75;
	width: 30%;
}
#stats .col-md-2:before {
	right: 0;
}
#stats .col-md-2:after {
	left: 0;
	top: 0;
}
#stats .icon {
	position: absolute;
	left: 35%;
	top: -20%;
	width: 30%;
}
#stats .number {
	margin-top: 25%;
	margin-bottom: 5%;
	color: #273C75;
}
#whyme {
	background-image: url('../img/bg3.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #f4fefe;
	height: auto;
}
#whyme button {
	background: rgba(255, 255, 255, 0.2);
	border: 3px solid black;
	color: black;
	padding: 7% 1%;
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 4%;
	transition: all 0.5s ease;
}
#whyme button:hover {
	color: white;
	border: 3px solid white;
}
#whyme p {
	width: 400px;
	border: 3px solid white;
	padding: 3%;
	line-height: 2.5em;
	margin-bottom: 10%;
	text-align: justify;
	background-image: url('../img/icons/checked.svg');
	background-repeat: no-repeat;
	background-position: bottom 1% right 2%;
	background-size: 2em;
	background-color: rgba(255, 255, 255, 0.1);
}
.click-dark {
	color: #fff !important;
	border: 3px solid white !important;
	font-size: 1.3em !important;
}
#contact input,
#contact textarea,
#contact .border-css,
#contact iframe {
	border-color: rgba(0, 0, 0, 0.8) !important;
}
#contact input:focus,
#contact textarea:focus {
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.8) !important;
}
#contact .border-css,
#contact iframe {
	border: 1px solid black;
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.8)
}
#contact iframe {
	width: 95%;
	opacity: 0.7;
	transition: all 0.3s ease;
}
#contact iframe:hover {
	opacity: 1;
}
footer {
	background: #16222A;
	background: linear-gradient(60deg, #3A6073, #16222A);
	color: white;
	margin-top: 100px;
	background-size: 300% 300%;
	animation: gradient 15s ease-in-out infinite;
}
footer a {
	color: #fff;
	font-size: 14px;
	transition-duration: 0.2s;
}
footer a:hover {
	color: #C7EBFF;
	text-decoration: none;
}
footer .copy {
	font-size: 12px;
	padding-top: 1%;
	border-top: 1px solid #FFFFFF;
}
footer.footer-middle {
	padding-top: 2em;
	color: white;
}
footer ul.social-network {
	list-style: none;
	display: inline;
	margin-left: 0 !important;
	padding: 0;
}
footer ul.social-network li {
	display: inline;
	margin: 0 5px;
}
footer .social-network a.icoFacebook:hover {
	background-color: #3B5998;
}
footer .social-network a.icoLinkedin:hover {
	background-color: #007bb7;
}
footer .social-network a.icoGithub:hover {
	background-color: #323131;
}
footer .social-network a.icoTwitter:hover {
	background-color: #1DA1F2;
}
footer .social-network a.icoFacebook:hover i,
footer .social-network a.icoGithub:hover i,
footer .social-network a.icoTwitter:hover i,
footer .social-network a.icoLinkedin:hover i {
	color: #fff;
}
footer .social-circle li a {
	display: inline-block;
	position: relative;
	margin: 0 auto 0 auto;
	border-radius: 50%;
	text-align: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
}
footer .social-circle li i {
	margin: 0;
	line-height: 40px;
	text-align: center;
}
footer .social-circle li a:hover i,
footer .triggeredHover {
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-ms--transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}
footer .social-circle i {
	color: #595959;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}
footer .social-network a {
	background-color: #F9F9F9;
}
@media only screen and (max-width: 580px) {
	#head nav .handle {
		display: block;
		width: 25%;
		background: rgba(0, 0, 0, 0.4);
		color: white;
		font-weight: bold;
		text-align: center;
	}
	#head nav li {
		width: 80%;
		box-sizing: border-box;
		padding: 0;
	}
	#head .nabBarA {
		width: 20%;
	}
	ul#menu.showing {
		max-width: 35%;
	}
	#head nav a {
		width: 50%;
		text-align: left;
		padding: 1%;
		box-sizing: border-box;
		font-size: 1em;
	}
	#head nav ul {
		position: relative;
		max-height: 0em;
	}
	#head nav ul.showing {
		max-height: 20em;
	}
	#head {
        line-break: auto;
	}
	#head #navBar img { 
		left: 30%;
		top: 1%;
		width: 50px;
		height: 50px;
	}
	#head .heading p, h2 {
		line-height: 45px;
	}
	h2 {
		font-size: 1.7em;
	}
	#about .col-md-7 {
		max-width: 80%;
		margin: auto;
	}
	#about h3 {
		text-align: center;
	}
	#about p, #whyme p {
		text-align: left;
	}
	#skills .item strong {
		position: absolute;
		top: 25%;
		left: 45%;
		bottom: 0%;
		font-size: 20px;
		font-weight: normal;
	}
	#skills .item p {
		max-width: 80%;
		padding-top: 2%;
		margin: auto;
	}
	#portfolio figure {
		max-width: 90%;
	}
	#portfolio .navigation ul li, #portfolio .navigation ul li a {
		width: 100%;
	}
	#stats .col-md-2 {
		width: 35%;
		margin: auto;
	}
	#stats .number span {
		font-size: 1.8em;
	}
	#whyme button {
		width: 70%;
		margin: auto;
		margin-bottom: 2%;
		padding: 3%;
	}
	#offer img {
		max-width: 15%;
	}
	#offer .col-md-4 {
		max-width: 80%;
		margin: auto;
	}
	iframe {
		max-width: 90%;
		margin: auto;
		max-height: 60%;
		margin-bottom: 1%;
    }
}