@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotoitalic';
    src: url('../fonts/roboto-italic-webfont.woff2') format('woff2'),
         url('../fonts/roboto-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'roboto_slabbold';
    src: url('../fonts/robotoslab-bold-webfont.woff2') format('woff2'),
         url('../fonts/robotoslab-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'roboto_slablight';
    src: url('../fonts/robotoslab-light-webfont.woff2') format('woff2'),
         url('../fonts/robotoslab-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'roboto_slabregular';
    src: url('../fonts/robotoslab-regular-webfont.woff2') format('woff2'),
         url('../fonts/robotoslab-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body, html {
	width:100%;
	height:100%;
	font-family: robotoregular !important;
	font-size: 16px;
	color: #333;
}
body {
	margin:0px;
	padding:0px;
}
body.hideOverflow , body.hideOverflowModel {
	overflow: hidden;
}
body.hideOverflow nav#navigation-menu {
	display: block;
	position: fixed;
	transition: 0.5s;
}
body.hideOverflow header#topHeader .container {
	margin-left: 300px;
}
body.hideOverflow #content {
	margin-left: 300px;
}
nav#navigation-menu {
	display: block;
	background: #000;
	position: relative;
	top: 0px;
	left: 0px;
	width: 300px;
	min-height: 100vh !important;
}
nav#navigation-menu ul {
	display: block;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
nav#navigation-menu ul li {
	display: block;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
nav#navigation-menu ul.menu a {
	display: block;
	padding: 20px 16px;
	font-size: 24px;
	font-family: roboto_slablight;
	display: block;
	color: #fff;
	text-decoration: none;
	border-bottom: #333 1px solid;
	transition: 0.5s;
}
nav#navigation-menu ul.menu a::before {
	content: ' ';
	background-image: url('../images/menugrid_w.svg');
	display: inline-block;
	width: 15px;
	height: 27px;
	opacity: .5;
}
nav#navigation-menu ul.menu a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #37a58c;
	transition: 0.5s;
}
nav#navigation-menu ul.menu a:active  {
	color: #fff;
	text-decoration: none;
	background-color: #37a58c;
}
nav#navigation-menu ul.menu a span {
	display: inline-block;
	padding: 0 16px;
}
nav#navigation-menu ul.menu a.active {
	color: #37a58c;
	font-family: roboto_slabregular;
}
nav#navigation-menu ul.menu a.active::before {
	background-image: url('../images/menugrid_g.svg');
	opacity: 1;
}
header#topHeader {
	display: block;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 90px;
	background-color: #363637;
	background-image: url(../images/background.png);
	background-position:center top;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-size:cover;
}
header .container {
}
header #topLogo {
	font-size: 24px;
	font-family: roboto_slablight;
	color: #ffff;
	height: 90px;
	line-height: 90px;
}
header #topLogo #menuBtn {
	float:left;
	width:30px;
	height:90px;
	margin-right: 24px;
	/*position:absolute;
	top:25px;
	right:0px;*/
	-webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
header #topLogo #menuBtn span {
	display: block;
	position: absolute;
	height: 2px;
	width: 30px;
	margin:0 auto;
	background: #fff;
	border-radius: 9px;
	opacity: 1;
	right: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
header #topLogo #menuBtn span:nth-child(1) {
  top: 37px;
}
header #topLogo #menuBtn span:nth-child(2), header #topLogo #menuBtn span:nth-child(3) {
  top: 45px;
}
header #topLogo #menuBtn span:nth-child(4) {
  top: 53px;
}
header #topLogo #menuBtn.open span:nth-child(1) {
  top: 37px;
  width: 0%;
  left: 50%;
}
header #topLogo #menuBtn.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header #topLogo #menuBtn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header #topLogo #menuBtn.open span:nth-child(4) {
  top: 37px;
  width: 0%;
  left: 50%;
}
header #topLogo a {
	float:left;
	color: #ffff;
	text-decoration: none;
	height:90px;
}
header #topLogo span {
    color: #37a58c;
 }
#content section {
	position:relative;
	min-height: 100vh !important;
	background-color: #f2f2f2;
	border-bottom: #ccc 1px solid;
}
#content section .title {
	font-size: 48px;
	font-family: roboto_slablight;
	padding-bottom: 32px;
}
#content section .title span {
	color: #37a58c;
}
#content section:nth-child(2n+1) {
}
#content section#homePage {
	background-color: #363637;
	background-image: url(../images/background.png);
	background-position:center top;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-size:cover;
	color: #fff;
}
#content section .container {
	position: relative;
	min-height: 100vh !important;
	padding-top: 130px;
	padding-bottom: 24px;
}
#content section#homePage .container {
	display: table;
	position: relative;
	padding-top: 130px;
	min-height: 100vh !important;
}
#content section#homePage .container .pageWrapper {
	vertical-align:middle;
	padding-bottom: 130px;
 	/*display: table-cell;
	height: 100%;*/
}
#content section#homePage .container .containterWrapper {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}
#content section#homePage .footerNav a {
	color: #fff;
}
#content section#homePage .h01 {
	display:block;
	font-size: 44px;
	font-family: robotolight;
}
#content section#homePage .h02 {
	display:block;
	padding: 16px 0;
	font-size: 100px;
	line-height: 100px;
	font-family: 'roboto_slabbold';
	color: #fff;
}
#content section#homePage .h02 span {
	color: #37a58c;
}
#content section#homePage .h03 {
	display:block;
	padding-top: 10px;
	font-size: 24px;
	font-family: robotolight;
	line-height: 38px;
}
#content section#homePage .profileText {

}
#content section#homePage .profileBg .myPic {
	/*display: block;
	max-width: 100%;
	position: absolute;
	bottom: -70px;
	transform: translate(0%, 100%);
	opacity: 1;
	transition: all 0.9s ease-out;*/
	
}
#content section#homePage .profileBg {
	/*display: table;*/
	position: relative;
	vertical-align: middle;
	background-image: url('../images/patterngrid.svg');
	background-position:left top;
	background-size:cover;
}
#content section#homePage .profileBg span {
	display: block;
	vertical-align: middle;
	text-align: center;
	padding: 32px 0;
}
#content section#homePage .profileBg img {
	width: 80%;
	border: #37a58c 5px solid;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
}
#content section .footerNav {
	position: absolute;
	bottom: 32px;
	width: inherit;
}
#content section#homePage .footerNav {
	left: 15px;

}
#content section#myWorks .card {
	height: 100%;
	/*background: rgba(255,255,255,.5);*/
	background-color: rgba(255,255,255,0);
	opacity: .95;
	transition: 0.5s;
}
#content section#myWorks .card.bgCaseStudy {
	background-image: url('../images/bg_casestudy.svg');
	background-position: center top;
	background-size:cover;
}
#content section#myWorks .card.bgMobileDesign {
	background-image: url('../images/bg_mobiledesign.svg');
	background-position: center top;
	background-size:cover;
}
#content section#myWorks .card.bgWebDesign {
	background-image: url('../images/bg_webdesign.svg');
	background-position: center top;
	background-size:cover;
}
#content section#myWorks .card-title {
	color: #fff;
	font-family: roboto_slabregular;
	font-size: 24px;
	margin-bottom: 24px;
}
#content section#myWorks .card-text {
	color: #fff;
	margin-top: 24px;
	margin-bottom: 24px;
}
#content section#myWorks .card:hover .card-title, #content section#myWorks .card:hover .card-text {
	color: #333;
}

ul.displayList {
	margin: 0px;
	padding: 10px 0 10px 0;
	display: block;
}
ul.displayList li {
	margin: 0 0 10px 0;
	padding: 0px;
	display: block;
	list-style: none;
}
ul.displayList li.ph::before {
	content: ' ';
	background-image: url('../images/24_phone.svg');
	background-position:left top;
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
ul.displayList li.email {
	margin-bottom: 40px;
}
ul.displayList li.email svg {
	margin-bottom: 8px;
}
ul.displayList li.email::before {
	content: ' ';
	background-image: url('../images/24_email.svg');
	background-position:left top;
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
ul.displayList li.whatsApp, ul.displayList li.skype, ul.displayList li.linkedIn, ul.displayList li.behance {
	display: inline-block;
	margin-right: 10px;
}
ul.displayList li a {
	text-decoration: none;
	color: #333;
}
ul.displayList li .cardIcon {
	display: block;
}
#myWorks .col-lg-4 {
	margin-bottom: 16px;
}
#myWorks .col-lg-4:hover .card {
	border-color: rgba(55,165,140,.5);
	border-width: 1px;
	border-style: solid;
	background: rgba(255,255,255,1) !important;
	box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
	transition: 0.3s;
}
#myWorks .col-lg-4:hover .card.bgCaseStudy {
	border-color: rgba(254,138,0,.5);
}
#myWorks .col-lg-4:hover .card.bgMobileDesign {
	border-color: rgba(117,25,235,.5);
}
#myWorks .col-lg-4:hover .card.bgWebDesign {
	border-color: rgba(0,118,254,.5);
}
#myWorks .col-lg-4 .btn {
	color: #333;
	background-color: #f2f2f2;
	border-color: #ccc;
}
#myWorks .col-lg-4:hover .btn {
	color: #fff;
	background-color: #37a58c;
	border-color: #37a58c;
}
.showcaseModal {
	background-color: rgba(255, 255, 255, .94);
}
.showcaseModal .container .modal-dialog {
	max-width: 100% !important;
}
.showcaseModal .container .modal-dialog .modal-content {
	height: 94vh;
	border-width: 0px;
	background-color: rgba(255, 255, 255, 0);
}
.showcaseModal .container .modal-dialog .modal-title {
	color: #333;
    font-size: 48px;
	font-family: roboto_slablight;
	line-height:;
}
.showcaseModal .container .modal-dialog .modal-title span {
	color: #37a58c;
}
.showcaseModal .container .modal-dialog .modal-header {
	border-bottom: 0px;
}
.showcaseModal .container .modal-dialog .modal-header .close {
	padding: 0 0 0 8px;
	margin: 0 -8px 0 0;
	font-size: 48px;
	font-weight: normal;
	line-height: 1;
	border-width: 0px;
	background-color: rgba(255, 255, 255, 0);
	color: #666;
	text-shadow: 0 1px 0 #fff;
}
.showcaseModal .container .modal-dialog .modal-header .close:hover {
	color: #333;
}
.showcaseModal .container .modal-dialog .modal-body {
	height: 75vh;
	overflow-y: scroll;	
}
.showcaseModal .showcaseColumn {
	margin-bottom: 16px;
}
.showcaseModal .showcaseColumn .card {
	height: 100%;
	padding: 0px;
	background: rgba(255,255,255,.5);
}
.showcaseModal .showcaseColumn .card:hover {
	box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
}
.showcaseModal .showcaseColumn .card-body {
	padding: 0px;
}
.showcaseModal .showcaseColumn a {
	display: block;
	height: 100%;
	text-decoration: none;
	padding: 0px;
	
}
.showcaseModal .showcaseColumn a .showcaseThumb {
	display: block;
	/*padding: 24px 16px;*/
	border-radius: .25rem .25rem 0 0;
	background-color: rgba(0, 0, 0, .86);
}
.showcaseModal .showcaseColumn a .showcaseThumb img {
	display: block;
	border-radius: .25rem .25rem 0 0;
	width: 100%;
}
.showcaseModal .showcaseColumn a .card-title {
	display: block;
	padding: 8px;
	margin: 0px;
	font-size: 18px;
	color: #37a58c;
	text-decoration: none;
}
.showcaseModal .showcaseColumn a .card-title span {
	display: block;
	padding-top: 8px;
	font-size: 12px;
	color: rgba(0, 0, 0, .5);
}
.showcaseModal .showcaseColumn .card:hover .showcaseThumb {
	background-color: rgba(0, 0, 0, 1);
}
.showcaseModal .showcaseColumn .card:hover a .card-title {
	color: #000 !important;
}
.showcaseModal .showcaseColumn .card:hover a .showcaseThumb img {
	/*transform: scale(1.5);*/
}

/* Media query for mobile devices  */
/*@media only screen and (max-width: 767px) {*/
@media only screen and (max-width: 767px) {
	header#topHeader {
		height: 60px;
	}
	header #topLogo {
		font-size: 20px;
		height: 60px;
		line-height: 60px;
	}
	header #topLogo #menuBtn, header #topLogo a {
		height: 60px;
	}
	header #topLogo #menuBtn span:nth-child(1), header #topLogo #menuBtn.open span:nth-child(1), header #topLogo #menuBtn.open span:nth-child(4) {
	  top: 22px;
	}
	header #topLogo #menuBtn span:nth-child(2), header #topLogo #menuBtn span:nth-child(3) {
	  top: 30px;
	}
	header #topLogo #menuBtn span:nth-child(4) {
	  top: 38px;
	}
	#content section {
		min-height: 100vh !important;
	}
	#content section .container {
		padding-top: 80px !important;
		min-height: 100vh !important;
	}
	#content section#homePage .container {
		min-height: 100vh !important;
		padding-top: 85px !important;
	}
	#content section#homePage .container .pageWrapper {
		padding-bottom: 24px;
	}
    #content section .title {
    	padding-bottom: 24px;
    }
	#content section#homePage .h03 {
		padding-bottom: 32px;
	}
	#content section#homePage .h01 {
		font-size: 30px !important;
		margin-top: 8px !important;
	}
	#content section#homePage .h02 {
		font-size: 72px !important;
		line-height: 72px !important;
		letter-spacing: 1px !important;
		padding: 8px 0 !important;
	}
	#content section#homePage .h03 {
		font-size: 16px !important;
		line-height: normal !important;
	}
	#content section#homePage .profileBg{
		width: 60% !important;
		margin: 0 auto;
	}
	#content section#homePage .profileBg span {
		display: block;
		padding: 16px 0 !important;
	}
	#content section#homePage .profileBg img {
		width: 80% !important;
		border-width: 3px;
	}
	#content section#homePage .footerNav {
		position: absolute;
		bottom: 32px;
		width: inherit;
	}
	#content section#myWorks .card-title {
		    margin-bottom: 16px;
	}
	#content section#myWorks .card-text {
		margin-top: 16px;
	}
	#content section#myWorks .cardIcon svg {
		width: 90px;
	}
	#content section .footerNav {
	    position: relative;
	    bottom: auto;
	    width: inherit;
	}
	#content section .footerNav .col-sm-3 {
		margin-top: 8px;
		margin-bottom: 8px;
	}
	#content section#homePage .h01, #content section#homePage .h02, #content section#homePage .h03, #content section .title, #contactMe {
		text-align: center;
	}
	.showcaseModal .container .modal-dialog .modal-title {
		font-family: roboto_slabregular;
		font-size: 24px;
	}
	.showcaseModal .showcaseColumn .card {
		background: rgba(255,255,255,1);
	}
	.showcaseModal .showcaseColumn a .showcaseThumb {
		background-color: rgba(0, 0, 0, .9);
	}

}

/* Media query for tablets devices  */
/*@media only screen and (max-width: 992px) {*/
/*@media only screen and (max-width: 1000px) {*/
@media only screen and (max-width: 1023px) {
	#content section#homePage .profileBg{
		width: 50%;
		margin: 0 auto;
	}
	#content section#homePage .profileBg span {
		padding: 32px 0;
	}
	#content section#homePage .profileBg img {
		width: 50%;
		border-width: 3px;
	}
	#content section#homePage .h01 {
		font-size: 44px;
		margin-top: 24px;
	}
	#content section#homePage .h02 {
		font-size: 80px;
		line-height: 80px;
		letter-spacing: 2px;
		padding: 8px 0;
	}
	#content section#homePage .h03 {
		font-size: 24px;
		line-height: normal;
	}
	#myWorks .col-lg-4 {
		margin-bottom: 16px;
	}
	.showcaseModal .container .modal-dialog .modal-title {
		font-family: roboto_slabregular;
		font-size: 24px;
	}
	.showcaseModal .showcaseColumn .card {
		    background: rgba(255,255,255,1);
	}
	.showcaseModal .showcaseColumn a .showcaseThumb {
		background-color: rgba(0, 0, 0, .9);
	}

}

/* Media query for desktops  */
/*@media screen and (max-width: 1024px) {*/
@media screen and (max-width: 1200px) {
	#content section#homePage .h02 {
		font-size: 80px;
		line-height: 80px;
		letter-spacing: 2px;
		padding: 8px 0;
	}
}
@media screen and (min-width: 1201px) {
	#content section#homePage .h01 {
		font-size: 44px;
	}
	#content section#homePage .h02 {
		padding: 16px 0;
		font-size: 100px;
		line-height: 100px;
		letter-spacing: 1px;
	}
	#content section#homePage .h03 {
		padding-top: 10px;
		font-size: 24px;
		line-height: 38px;
	}
}

@media screen and (min-width: 1400px) {
}
@media screen and (min-width: 1600px) {
}
@media screen and (min-width: 1920px) {
}