html,body{
	background: #292929;
	font-family: "Roboto";
	font-size: 13px;
	color: #666;
	overflow: hidden;
}

*{
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.valign{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	left: 0px;
	top: 0px;
	width: 0px;
	height: 100%;
	border: none;
}

#wrapper{
	background: #fff;
}

.an-es-05{
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
}

.an-lin{
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
}

.box {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.btn {
	display: inline-block;
	position: relative;
	background: #00a8ff;
	padding: 8px 18px;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	border-radius: 50px;
	border: solid 2px #00A8FF;
}
.btn:last-of-type:not(:first-of-type){
    margin-left: 18px;
}
.btn.hollow {
    background: transparent;
    color: #00A8FF;
}
.btn:hover,.btn.hollow:hover,.cl-disable{
	background: #ebebeb;
	color: #666;
	border-color: #ebebeb;
}

.cl-grey{
	background: #333;
	border-color: #333;
}
.cl-pink{
	background: #ff719b;
	border-color: #ff719b;
}
.hollow.cl-pink{
	background: transparent;
	border-color: #ff719b;
	color: #fff;
}
.cl-peach{
	background: #ff7562;
	border-color: #ff7562;
}
.hollow.cl-peach{
	background: transparent;
	border-color: #ff7562;
	color: #fff;
}
.cl-orange{
	background: #eb9201;
	border-color: #eb9201;
}
.hollow.cl-orange{
	background: transparent;
	border-color: #eb9201;
	color: #fff;
}


.do-action{
	cursor: pointer;
}

h1,h2,h3,h4,h5{
	font-family: "Roboto";
	font-weight: 300;
	font-size: 30px;
	text-transform: uppercase;
}

img{
	display: block;
	width: 100%;
	height: auto;
}

input,textarea {
    position: relative;
    background: transparent;
    margin: 3px 0;
    padding: 10px 14px;
    width: 100%;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    border-radius: 3px;
    border: solid 1px #aaa;
    resize: none;
}


@keyframes float_arrow{
	0% {line-height: 70px;}
	50% {line-height: 90px;font-size: 28px;}
	100% {line-height: 70px;}
}

.screen{
	position: absolute;
	background: rgba(27,27,27,0.7);
	z-index: 0;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


.preloader {
	position: fixed;
	opacity: 0;
	z-index: 10;
	background: transparent;
	margin: auto;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 0 0 10px rgba(102,102,102,0.7);
}
.preloader .progress {
	position: absolute;
	left: -0.5em;
	right: 50%;
	top: -0.5em;
	bottom: 50%;
	transform-origin: 100% 100%;
	transform: rotate(90deg) skewX(30deg);
	overflow: hidden;
}
.preloader .progress .rotation{
	display: block;
	width: 200%;
	height: 200%;
	border: solid 4px #00a8ff;
	border-radius: 50%;
	box-sizing: border-box;
	transform: skewX(-30deg);
}
.preloader .progress .rotation.cl-1{
	border-color: #00a8ff;
}
.preloader .progress .rotation.cl-2{
	border-color: #ff719b;
}
.preloader .progress .rotation.cl-3{
	border-color: #ff7562;
}
.preloader .progress .rotation.cl-4{
	border-color: #eb9201;
}



.tooltip-pointer{
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 8px;
    z-index: 8;
    opacity: 0;
    font-size: 10px;
    text-transform: uppercase;
    color: #ddd;
    border-radius: 2px;
    -webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
}
.tooltip-pointer.show{
	opacity: 1;
}


.landing{
	position: fixed;
	z-index: 10;
	background: #292929;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.landing .signature{
	position: absolute;
	margin: auto;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 410px;
	height: 147px;
}
.landing .signature img{
	position: absolute;
	opacity: 0;
	top: 100px;
}



.popup{
	position: fixed;
	z-index: 8;
	left: -150%;
	top: -150%;
	width: 200%;
	height: 200%;
	text-align: center;
}
.popup .close{
	position: absolute;
	opacity: 0.5;
	background: #111;
	margin: auto;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 0%;
	height: 0%;
	border-radius: 100%;
}
.popup .content {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    opacity: 0;
    width: 600px;
    color: #fff;
}
.popup .content form {
    display: block;
    margin: 20px 0;
}
.popup .content .btn {
    width: 185px;
    height: 24px;
    line-height: 24px;
}
.popup .content .btn i{
    font-size: 24px;
}

.popup[type=project] .content {
    position: fixed;
    margin: auto;
    padding: 80px;
    left: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 320px;
    overflow: auto;
}
.popup[type=project] .content .slides {
    margin: 20px auto 0 auto;
    max-width: 1024px;
}
.popup .content .do-action[data-action=close]:first-child {
    position: fixed;
    right: 34px;
    top: 33px;
    width: 53px;
}
.popup .content .do-action[data-action=close]:first-child:hover {
    background: #00a8ff;
    border-radius: 2px;
}



.menu{
    position: fixed;
    z-index: 7;
    background: rgba(0,0,0,0.5);
    right: -300px;
    top: 32px;
    width: 300px;
    height: calc(100% - 64px);
    color: #fff;
}
.menu.open{
	right: 0px;
}
.menu li {
    width: 100%;
    height: 53px;
}
.menu li > div{
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
    letter-spacing: 1px;
}
.menu li div,.menu li span {
	display: inline-block;
    padding: 0 17px;
    width: 100%;
    line-height: 53px;
    border-top: solid 1px #333;
}
.menu li span:hover {
    background: rgba(51,51,51,0.3);
}
.menu li div img {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 53px;
    height: 53px;
}
.menu li > div:hover{
	background: #00a8ff;
	border-color: #00a8ff;
}

header{
    position: fixed;
    z-index: 5;
    padding: 32px 34px;
    left: 0px;
    top: 0px;
    width: 100%;
    text-align: center;
}
header.shade{
	background: rgba(41,41,41,0.5);
}
header .logo{
    position: absolute;
    background: url(i/logo.png) center center / cover no-repeat;
    width: 139px;
    height: 50px;
}
header .logo h1{
	opacity: 0;
    font-size: 10px;
}
header .position {
	font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 54px;
    color: #fff;
}
header .btn-menu {
    position: absolute;
    right: 34px;
    top: 32px;
    border-right: 2px;
}
header .btn-menu:hover{
	background: #00a8ff;
}


.markers {
    position: fixed;
    z-index: 7;
    left: 80px;
    top: 200px;
}
.markers .title {
    position: absolute;
    left: -47px;
    top: 29px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    color: rgba(125,125,125, 0.7);
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}
.markers li {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    border: solid 2px rgba(125,125,125, 0.6);
    -webkit-backface-visibility: hidden;
}
.markers li:not(:last-child)::after {
    content: "";
    position: absolute;
    background: rgba(125, 125, 125, 0.4);
    left: 5px;
    top: 19px;
    width: 1px;
    height: 20px;
}
.markers li:hover {
    box-shadow: inset 0 0 0 3px rgba(125,125,125, 0.6),0 0 0 2px rgba(125,125,125, 0.6);
}



section{
	position: relative;
	z-index: 0;
}

.about {
    position: relative;
    background: url(i/banner_02.jpg) center center / cover fixed no-repeat;
    z-index: 0;
    height: 770px;
}
.about::before {
    content: "";
    position: absolute;
    background: #292929;
    width: 100%;
    height: 250px;
}
.about .angle-left {
    position: absolute;
    z-index: 2;
    top: 249.7px;
    width: 0px;
    height: 0px;
    border-right: solid 1583px transparent;
    border-top: solid 520px #292929;
}
.about .angle-right {
    position: absolute;
    z-index: 1;
    top: 250.7px;
    width: 0px;
    height: 0px;
    border-right: solid 1583px transparent;
    border-bottom: solid 520px #fff;
}
.about .screen{
    margin-top: 250px;
}
.about .details {
    position: absolute;
    z-index: 3;
    left: 12.5%;
    top: 200px;
    width: 400px;
    color: #fff;
}
.about .details h2 {
    width: 100px;
    line-height: 26px;
}
.about .details .desc {
    position: relative;
    margin-bottom: 20px;
}


.about .fa,.feature > .fa {
    position: absolute;
    z-index: 3;
    margin: auto;
    left: 0px;
    right: 0px;
    bottom: 60px;
    width: 80px;
    height: 80px;
    font-size: 30px;
    text-align: center;
    line-height: 80px;
    color: #999;
	animation-name: float_arrow;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}


.strengths {
    position: relative;
    background: #fff;
    padding: 80px 7.5% 180px 7.5%;
    text-align: center;
}
.strengths h2 {
    margin-bottom: 40px;
    text-align: center;
}
.strengths .skills {
	display: inline-block;
    vertical-align: top;
    margin: 0 3.25%;
    width: 40%;
    max-width: 400px;
    text-align: left;
}
.strengths .skills > div:not(.icon) {
    position: relative;
    margin-bottom: 12px;
}
.strengths .skills > div:not(.icon) > div {
    position: relative;
    background: #ddd;
    margin-bottom: 8px;
    top: 2px;
    width: 100%;
    height: 5px;
}
.strengths .skills > div:not(.icon) > div div {
    background: #00a8ff;
    width: 0%;
    height: 100%;
}
.strengths.show .photoshop > div div{ width: 		100% !important; }
.strengths.show .illustrator > div div{ width: 		95% !important; }
.strengths.show .indesign > div div{ width: 		50% !important; }
.strengths.show .animate > div div{ width: 			85% !important; }
.strengths.show .aftereffects > div div{ width: 	90% !important; }
.strengths.show .premier > div div{ width: 			35% !important; }
.strengths.show .maya > div div{ width: 			80% !important; }
.strengths.show .zbrush > div div{ width: 			30% !important; }
.strengths.show .htmlcss > div div{ width: 			100% !important; }
.strengths.show .javascriptjq > div div{ width: 	100% !important; }
.strengths.show .php > div div{ width: 				70% !important; }
.strengths.show .mysql > div div{ width: 			65% !important; }
.strengths.show .lesssass > div div{ width: 		80% !important; }
.strengths.show .phonegap > div div{ width: 		100% !important; }
.strengths.show .docs > div div{ width: 			100% !important; }
.strengths.show .sheets > div div{ width:			100% !important; }


.portfolio-snip {
	position: relative;
    background: #333 url(i/banner_01.jpg) center center / cover fixed no-repeat;
    height: 600px;
    text-align: right;
}
.portfolio-snip .angle-right{
	position: absolute;
    z-index: 2;
    top: -0.7px;
    width: 0px;
    height: 0px;
    border-left: solid 1583px transparent;
    border-top: solid 150px #fff;
}
.portfolio-snip .angle-left,.portfolio .angle-left{
    position: absolute;
    z-index: 2;
    bottom: 0px;
    width: 0px;
    height: 0px;
    border-right: solid 1583px transparent;
    border-bottom: solid 400px #00a8ff;
}
.portfolio-snip .info {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	margin: -50px 12% 0 0;
    min-width: 483px;
	width: 37.9%;
	text-align: left;
	color: #fff;
}
.portfolio-snip .info .action {
    position: absolute;
    right: 0px;
    top: 41px;
    min-width: 190px;
    width: calc(100% - 296px);
    text-align: right;
}
.portfolio-snip .info .action .line {
    position: absolute;
    background: rgba(255,255,255,0.3);
    top: 16px;
    width: calc(100% - 171px);
    height: 1px;
}




.feature {
    position: relative;
    z-index: 0;
    background: #292929;
    width: 100%;
    height: 700px;
}
.feature .angle-right{
	position: absolute;
    z-index: 2;
    bottom: -0.7px;
    width: 0px;
    height: 0px;
    border-left: solid 1583px transparent;
    border-bottom: solid 450px #fff;
}
.feature .info {
    position: absolute;
    z-index: 2;
    left: 12.5%;
    top: 200px;
    width: 500px;
}
.feature .info .thumb {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 60px 0 rgba(0,0,0,0.5);
}
.feature .info .thumb:hover,.portfolio ul .thumb:hover img {
    filter: brightness(1.25);
    -webkit-filter: brightness(1.25);
    -o-filter: brightness(1.25);
    -moz-filter: brightness(1.25);
}
.feature .info .details {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: -7px 0 0 20px;
    color: #fff;
}
.feature .title {
    margin-bottom: 20px;
}
.feature .title .fa {
    margin-right: 5px;
}


section > .portfolio {
    position: relative;
    z-index: 1;
    min-height: 600px;
}
.portfolio .head {
    position: absolute;
    right: 12.5%;
    top: -135px;
    text-align: right;
}

.portfolio .head h1 {
    margin-bottom: -6px;
    font-size: 60px;
    font-weight: 100;
}

.portfolio .head span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4.5px;
}

.portfolio ul {
    margin: 0 120px;
	padding: 90px 0 417px 0;
    text-align: center;
}
.portfolio ul li > span .fa {
    vertical-align: top;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    border-radius: 100%;
}
.portfolio ul li {
    position: relative;
}
.portfolio ul li > span .fa.fa-mobile {
    font-size: 20px;
}
.portfolio ul li .line {
    position: relative;
    background: #ccc;
    margin: 15px auto;
    width: 1px;
    height: 50px;
}
.portfolio ul .thumb {
    position: relative;
    margin: auto;
    max-width: 1024px;
    overflow: hidden;
}
.portfolio ul .thumb:hover {
    box-shadow: 0 0 0 8px rgba(125,125,125,0.6);
}
.portfolio ul .thumb:hover img{
    filter: contrast(0.85) brightness(1.12);
    -webkit-filter: contrast(0.85) brightness(1.12);
    -o-filter: contrast(0.85) brightness(1.12);
    -moz-filter: contrast(0.85) brightness(1.12);
}
.portfolio ul .thumb .angle-right {
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-left: solid 0px transparent;
    border-bottom: solid 550px rgba(0,0,0,0.7);
}
.portfolio ul .thumb:hover .angle-right {
    border-left-width: 300px;
}
.portfolio ul li:last-child .line:last-child {
    display: none;
}
.portfolio ul .thumb .btn {
    position: absolute;
    right: -140px;
    bottom: 60px;
}
.portfolio ul .thumb:hover .btn {
    right: 60px;
}




footer .info{
    position: absolute;
    left: 7%;
    bottom: 110px;
    min-width: 403px;
    width: 35.56%;
    color: #fff;
}
footer .info .action {
    position: relative;
    margin-top: 10px;
    width: 53.28%;
}

footer .info .action .line {
    position: absolute;
    background: rgba(255,255,255,0.3);
    right: 0px;
    top: 16px;
    width: calc(100% - 158px);
    height: 1px;
}
footer .info .action .line .or {
    position: absolute;
    background: #00A8FF;
    z-index: 1;
    padding: 0 5.63%;
	left: 36%;
    top: -8px;
    color: rgba(255,255,255,0.6);
}
footer .info .action .btn {
    display: inline-block;
    position: relative;
    left: 0px;
    white-space: nowrap;
}
footer .info .desc {
    position: absolute;
    left: 56.12%;
    bottom: -4px;
    white-space: nowrap;
}
footer .bottom {
    background: #111;
    font-size: 11px;
    text-align: center;
    line-height: 50px;
}




@media(max-width: 1550px){

}

@media (max-width: 1200px){

}

@media (max-width: 1072px){
	.markers{
	    left: 6.5%;
	}
	footer .info{
		left: 11%;
	}
}

/* ------- IPAD -------- */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
	.feature > .fa{
		bottom: 40px;
		border:none !important;
	}
	.feature .angle-right{
		bottom: -1px;
	}
	.portfolio .head{
		display: none;
	}
	footer .info{
		bottom: 100px !important;
	}
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {
	footer .info{
		left: 7%;
		bottom: 100px !important;
	}
}
/* ------- END IPAD ------- */

@media (max-width: 838px){
	.menu{
		background: rgba(0,0,0,0.95);
	}
	.landing .signature{
		width: 70%;
	}

	.about::before {
	    height: 410px;
	}
	.about .angle-left {
	    top: 409.7px;
	    border-top: solid 360px #292929;
	}
	.about .angle-right {
	    top: 410.7px;
	    border-bottom: solid 360px #fff;
	}
	.about .screen {
	    margin-top: 410px;
	}

	.portfolio-snip .info{
		top: -80px;
	}

	.portfolio .head {
	    right: 7.5%;
	}
	.portfolio .head h1 {
	    margin-bottom: -6px;
	    font-size: 40px;
	}
	.portfolio .head span {
	    font-size: 9px;
	    letter-spacing: 2.5px;
	}

	footer .info .desc {
	    position: relative;
	    left: 0;
	    bottom: 0px;
	}
	footer .info .action {
	    margin-top: 10px;
	}
	footer .info .action .line{
		display: none;
	}
}

@media (max-width: 650px){

	.about .details {
	    padding: 0 12.5%;
	    left: initial;
	    top: 120px;
	    width: initial;
	}
	.btn:last-of-type:not(:first-of-type){
		margin: 11px 0 0 0;
	}

	.portfolio-snip{
		text-align: center;
	}
	.portfolio-snip .info {
	    margin: -50px auto 0 auto;
	    min-width: initial;
	    text-align: center;
	}
	.portfolio-snip .info .action {
	    position: relative;
	    right: 0px;
	    top: 0px;
	    min-width: initial;
	    width: initial;
	    text-align: center;
	    white-space: nowrap;
	}
	.portfolio-snip .info .action .line {
	    display: none;
	}

	footer .info{
		min-width: initial;
	}

}

@media (max-width: 600px){
	header .position{
		opacity: 0;
	}
}

@media (max-width: 450px){
	.menu{
		right: -100%;
		top: 0px;
		width: 100%;
		height: 100%;
	}
	.menu.open{
		right: 0px;
	}
	.markers{
		opacity: 0;
	}
	.strengths{
		padding: 80px 12.5% 180px 12.5%;
	}
	.strengths .skills {
	    display: inline-block;
	    vertical-align: top;
	    margin: 0;
	    width: 100%;
	    max-width: initial;
	    text-align: left;
	}
}

@media (max-height: 420px){
	.markers{
		opacity: 0;
	}
}

/* ALL MOBILE */
@media only screen and (min-device-width: 320px) and (max-device-width: 736px){

	html,body{
		font-size: 32px;
	}

	.btn {
		padding: 16px 36px;
		font-size: 32px;
		border-radius: 100px;
		border-width: 4px;
	}
	.btn:last-of-type:not(:first-of-type){
	    margin: 22px 0 0 0;
	}

	h1,h2,h3,h4,h5{
		font-size: 60px;
	}

	input,textarea {
	    margin: 6px 0;
	    padding: 20px 28px;
	    font-size: 32px;
	    border-radius: 6px;
	    border: solid 2px #aaa;
	}


	@keyframes float_arrow{
		0% {line-height: 140px;}
		50% {line-height: 180px;font-size: 56px;}
		100% {line-height: 140px;}
	}


	.preloader {
		opacity: 1;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		box-shadow: 0 0 0 20px rgba(102,102,102,0.7);
	}
	.preloader .progress .rotation{
		border: solid 10px #00a8ff;
	}



	.tooltip-pointer{
		display: none;
	}

	.landing .signature{
		width: 50%;
		max-height: 550px;
	}



	.popup .content .btn {
	    width: initial;
	    height: 48px;
	    line-height: 48px;
	    white-space: nowrap;
	}
	.popup .content .btn i{
	    font-size: 48px;
	}

	.popup[type=project] .content {
	    padding: 240px 0 0 0;
	    height: 100%;
	}
	.popup[type=project] .content .slides {
	    margin: 40px auto 0 auto;
	    width: 100%;
	}
	.popup .content .do-action[data-action=close]:first-child {
		background: rgba(0,0,0,0.5);
		margin: auto;
		left: 0px;
	    right: 0px;
	    top: 66px;
	    width: 106px;
	    border-radius: 100%;
	}


	.menu{
	    background: rgba(0,0,0,0.9);
	    right: -100%;
	    top: 0px;
	    width: 100%;
	    height: 100%;
	}
	.menu li {
	    height: 106px;
	}
	.menu li > div{
		font-size: 32px;
	}
	.menu li div,.menu li span {
	    padding: 0 34px;
	    line-height: 106px;
	    border-top: solid 2px #333;
	}
	.menu li div img {
	    width: 106px;
	    height: 106px;
	}

	header{
	    padding: 64px 68px;
	}
	header .logo{
		top: 85px;
	    width: 200px;
	    height: 72px;
	}
	header .position {
		font-size: 28px;
	    letter-spacing: 4px;
	    line-height: 108px;
	}
	header .btn-menu {
	    right: 68px;
	    top: 64px;
	    width: 106px;
	    height: auto;
	}


	.markers {
	    display: none;
	}



	.about {
	    height: 1590px;
	}
	.about::before {
	    height: 850px;
	}
	.about .angle-left {
	    top: 849.7px;
	    border-top: solid 740px #292929;
	}
	.about .angle-right {
	    top: 850.7px;
	    border-bottom: solid 740px #fff;
	}
	.about .screen{
	    margin-top: 850px;
	}

	.about .details {
		padding: 0 12.5%;
	    left: auto;
	    top: 300px;
	    width: auto;
	}
	.about .details h2 {
	    width: 200px;
	    line-height: 52px;
	}
	.about .details .desc {
	    margin-bottom: 40px;
	}
	.about .details .btn:last-of-type{
		margin-right: 12.5%;
	}


	.about .fa,.feature > .fa {
	    bottom: 80px;
	    width: 160px;
	    height: 160px;
	    font-size: 60px;
	    line-height: 160px;
	}


	.strengths {
	    padding: 160px 7.5% 360px 7.5%;
	}
	.strengths h2 {
	    margin-bottom: 80px;
	}
	.strengths .skills {
	    max-width: initial;
	}
	.strengths .skills > div:not(.icon) {
	    margin-bottom: 24px;
	}
	.strengths .skills > div:not(.icon) > div {
	    margin-bottom: 16px;
	    top: 4px;
	    height: 10px;
	}

	.portfolio-snip {
	    height: 1200px;
	    text-align: center;
	}
	.portfolio-snip .angle-right{
	    top: -0.7px;
	    border-top: solid 300px #fff;
	}

	.portfolio-snip .angle-left,.portfolio .angle-left{
	    border-bottom: solid 800px #00a8ff;
	}
	.portfolio-snip .info {
		margin: -350px auto 0 auto;
	    min-width: initial;
		width: 50%;
		text-align: center;
	}
	.portfolio-snip .info .action {
	    position: relative;
	    right: 0px;
	    top: 0px;
	    min-width: initial;
	    width: initial;
	    text-align: center;
	    white-space: nowrap;
	}
	.portfolio-snip .info .action .line {
	    display: none;
	}




	.feature {
	    height: 1400px;
	}
	.feature .angle-right{
	    bottom: -0.7px;
	    border-bottom: solid 700px #fff;
	}
	.feature .info {
	    top: 400px;
	    width: initial;
	}
	.feature .info .thumb {
	    width: 40%;
	    height: initial;
	    box-shadow: 0 0 120px 0 rgba(0,0,0,0.5);
	}
	.feature .info .details {
	    margin: -14px 0 0 40px;
	    width: calc(50% - 44px);
	}
	.feature .title {
	    margin-bottom: 40px;
	}
	.feature .title .fa {
	    margin-right: 10px;
	}


	.portfolio .head {
	    display: none;
	}

	.portfolio ul {
		padding: 180px 0 834px 0;
	}
	.portfolio ul li > span .fa {
	    margin: 0 4px;
	    width: 60px;
	    height: 60px;
	    font-size: 32px;
	    line-height: 60px;
	}
	.portfolio ul li > span .fa.fa-mobile {
	    font-size: 40px;
	}
	.portfolio ul li .line {
	    margin: 30px auto;
	    width: 2px;
	    height: 100px;
	}
	.portfolio ul .thumb {
	    max-width: initial;
	}
	.portfolio ul .thumb:hover {
	    box-shadow: 0 0 0 16px rgba(125,125,125,0.6);
	}
	.portfolio ul .thumb .angle-right {
	    display: none;
	}
	.portfolio ul .thumb .btn {
		display: none;
	}




	footer .info{
		left: 8.5%;
		bottom: 180px !important;
	    min-width: initial;
	}
	footer .info h2{
		line-height: 60px;
	}
	footer .info .action {
	    margin-top: 20px;
	}

	footer .info .action .line {
	    display: none;
	}
	footer .info .desc {
		position: relative;
	    left: 0px;
	    bottom: 0px;
	}
	footer .bottom {
	    font-size: 28px;
	    line-height: 100px;
	}

}