/*------------------------------------------------------------------

    [Table of contents]

	1. MAIN CONTAINER
	2. MENU
	3. NAME BLOCK
	4. ABOUT BLOCK
	5. PORTFOLIO BLOCK
	6. RESUME BLOCK
	7. CONTACT BLOCK
	8. CONTENT BLOCKS
	9. RESPONSIVE

-------------------------------------------------------------------*/

/* -------------------------
        0. standard
------------------------- */
body {
    font: 400 16px 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 30px;
    color: #222;
    overflow-x: hidden;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

img {
    width: 100%;
    text-align: center;
    height: auto;
}


/* texts */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
}

h1 {
    font-size: 50px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 0;
}

h3 {
    font-size: 20px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
}

h4 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 0;
}

h5 {
    font-size: 15px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 0;
}

h6 {
    font-size: 14px;
    line-height: 32px;
    font-weight: 500;
}

p {
    margin: 0;
}

ul {
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0;
}

small {
    color: #333;
}

.btn {
    border: 2px solid transparent;
    border-radius: 0;
    padding: 12px 28px;
    margin: 20px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s;
    position: relative;
    color: #FFF;
    background-color: #F34452;
    z-index: 20;
    overflow: hidden;
}

.btn:hover {
    color: #F34452;
    background-color: #FFF;
    border: 2px solid #F34452;
}
.btn:focus {
    color: #FFF;
	outline: none;
}

.btn-download {
    border: none;
    font-size: 16px;
    padding: 16px 55px 16px 25px;
}

.btn-download:hover {
    border: none;
    color: #FFF;
    background-color: #F34452;
}

.btn-download:before {
    position: absolute;
    content: '\f019';
    font-family: 'FontAwesome';
    top: 16px;
    right: 20px;
    font-size: 16px;
}

.btn-download:hover:before {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.btn-download:after {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: all .3s;
}

.btn-download:hover:after {
    width: 50px;
    height: 70px;
    right: -5px;
    top: -5px;
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.hidex {
    opacity: 0;
    visibility: hidden;
    z-index: -100;
}

.showx {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.lowercase {
    text-transform: lowercase;
}

.preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: transparent;
}

.loading-circle {
    position: absolute;
    left: 49%;
    top: 49%;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border-top: 2px solid #7F8C8D;
    border-right: 2px solid rgba(0,0,0, 0);
    border-bottom: 2px solid #7F8C8D;
    border-left: 2px solid rgba(0,0,0, 0);
}

.preloader-left {
	position: fixed;
	width: 50%;
	height: 100%;
	background: white;
	z-index: 999;
	transition: .7s .3s transform ease-in-out;
}

.slide-left {
	transform: translate3d(-100%, 0, 0);
	will-change: transform;
}

.preloader-right {
	position: fixed;
	width: 50%;
	right: 0;
	height: 100%;
	background: white;
	z-index: 999;
	transition: .7s .3s transform ease-in-out;
}

.slide-right {
	transform: translate3d(100%, 0, 0);
	will-change: transform;
}


/* -------------------------
        1. MAIN CONTAINER
------------------------- */
.home {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    background: url(../images/background.jpg) #333 40% 40%;
    background-size: cover;
}

/* -------------------------
        2. MENU
------------------------- */
.menu-blocks {
    transition: all 0.5s;
}

h2.menu-item {
    position: relative;
    color: #FFF;
    cursor: pointer;
    margin: 50px;
    font-size: 28px;
}

h2.menu-item:hover {
    color: #000;
}
h2.menu-item:before {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 16px;
}

h2.menu-item:hover:before {
    color: #000;
}

h2.about.menu-item:before {
    content: '01';
}

h2.portfolio.menu-item:before {
    content: '02';
}

h2.resume.menu-item:before {
    content: '03';
}

h2.contact.menu-item:before {
    content: '04';
}

h2.menu-item:after {
    position: absolute;
    content: '';
    top: -10px;
    left: -20px;
    width: 70px;
    height: 1px;
    background: #FFF;
    transition: all 0.5s ease;
}

h2.menu-item:hover:after{
    background: #F34452;
}

.name-block:hover,
.about-block:hover,
.portfolio-block:hover,
.resume-block:hover,
.contact-block:hover {
    background-color: rgba(255,255,255,0.2);
}
/* -------------------------
        3. NAME BLOCK
------------------------- */
.name-block {
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
    transition: all 0.5s;
}

.name-block.reverse {
    position: absolute;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    border: none;
    display: table;
}

.name-block-container.reverse {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    padding: 0 30px;
}

.name-block-container {
    display: table-cell;
    vertical-align: middle;
    padding-left: 240px;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

.name-block-container h1,
.name-block-container h2 {
    text-transform: capitalize;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.name-block-container h2 {
    font-size: 28px;
}

.name-block-container h1 span {
    font-size: 28px;
    font-weight: 300;
    display: block;
    text-transform: capitalize;
}

.social {
    position: absolute;
    bottom: 15%;
}

.social li {
    display: inline-block;
    margin-right: 2px;
    text-align: center;
}

.social a {
    border: 2px solid #FFF;
    color: #FFF;
    display: inline-block;
    height: 35px;
    width: 35px;
}

.social li i {
    line-height: 32px;
    font-size: 12px;
}

.social a:hover {
    border: 2px solid #F34452;
    color: #F34452;
}

.footer {
    bottom: 6%;
    position: absolute;
    color: #fff;
}
/* -------------------------
        4. ABOUT BLOCK
------------------------- */
.about-block {
    position: absolute;
    width: 430px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}

.about-block-container {
    display: table-cell;
    vertical-align: middle;
    padding: 150px 0 0 70px;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

.sign {
    margin-top: 30px;
    width: auto;
}

ul.info-list {
    background: #F1F3F6;
    padding: 20px;
}

ul.info-list li strong {
    margin-right: 5px;
}

.progress {
    height: 2px;
    margin-bottom: 20px;
    background-color: #ddd;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.progress-bar {
    line-height: 8px;
    background-color: #F34452;
    box-shadow: none;
    position: relative;
}

.progress-bar span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    background: #fff;
    font-weight: 400;
    position: absolute;
    top: -16px;
    right: -20px;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
}

.progress-bar-label {
    font-weight: 400;
    margin-bottom: 10px;
}

.progress-bar-label span {
    color: #F34452;
    font-weight: 400;
}

.icon-list li {
    padding-left: 25px;
}

.icon-list li:before {
    position: absolute;
    content: '\f00c';
    font-family: 'FontAwesome';
    left: 20px;
    color: #F34452;
}

.timeline {
    position: relative;
}

.timeline:before {
    background: #ddd;
    background: -moz-linear-gradient(top,  #ddd 1%, #ddd 75%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ddd), color-stop(75%,#ddd), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(top,  #ddd 1%,#ddd 75%,#ffffff 100%);
    background: -o-linear-gradient(top,  #ddd 1%,#ddd 75%,#ffffff 100%);
    background: -ms-linear-gradient(top,  #ddd 1%,#ddd 75%,#ffffff 100%);
    background: linear-gradient(to bottom,  #ddd 1%,#ddd 75%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddd', endColorstr='#ffffff',GradientType=0 );
    bottom: 0;
    content: "";
    left: 18px;
    position: absolute;
    top: 50px;
    width: 1px;
    height: 100%;
}

.timeline:after {
    border: 1px solid #ddd;
    font-family: 'FontAwesome';
    top: 0;
    left: -5px;
    width: 50px;
    height: 50px;
    position: absolute;
    text-align: center;
    color: #333333;
    font-size: 20px;
    line-height: 45px;
}

.timeline.experience:after {
    content: '\f0b1';
}

.timeline.education:after {
    content: '\f19d';
}

.exp {
    padding-left: 50px;
    padding-top: 20px;
    position: relative;
    margin-bottom: 10px;
}

.exp:after {
    background: #F34452;
    border: 3px solid #ffffff;
    content: "";
    height: 15px;
    left: 12px;
    position: absolute;
    text-align: center;
    top: 24px;
    width: 15px;
}

.exp-holder {
    margin-top: 70px;
}

.exp .hgroup h4, .exp .hgroup h5 {
    text-transform: none;
    margin-bottom: 10px;
}

.exp .hgroup {
    margin-bottom: 5px;
}

.exp .hgroup h5 {
    font-size: 14px;
    font-weight: 400;
    color: #727272;
    padding-left: 20px;
}

.exp .hgroup h5:before {
    position: absolute;
    left: 50px;
    content: '\f073';
    font-family: 'FontAwesome';
    font-style: normal;
}

.exp .hgroup h5 span.current {
    color: #ffffff;
    background: #F34452;
    padding: 1px 12px;
}

.service {
    text-align: center;
    margin: 25px 0;
    padding-bottom: 30px;
}

.service h4 {
    margin: 10px 0;
    font-size: 14px;
}

.service-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #F34452;
    float:left;
    width: 30%;
}

.awards img {
    border: 1px solid #F1F3F6;
    opacity: 0.7;
}

.awards:hover img {
    opacity: 1;
}

.testimonials li {
    position: relative;
    border-bottom: 1px solid #F1F3F6;
}

.testimonials li:last-child {
    border-bottom: none;
}

.testimonials li:hover {
    background: #F1F3F6;
}

.testimonials li img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 90px;
    height: 90px;
    border: 10px solid #F1F3F6;
    border-radius: 50%;
}

.testimonials li:hover img {
    border: 10px solid #F34452;
}

.testimonials li blockquote {
    width: 80%;
    border-left: none;
    padding: 20px 40px;
    color: #333;
}

.testimonials li:before {
    position: absolute;
    top: 10px;
    left: 5px;
    content: '\f10d';
    font-family: 'FontAwesome';
    font-size: 30px;
    color: #F1F3F6;
    z-index: 0;
}

.testimonials li:hover:before {
    color: #FFF;
}

.testimonials li .quote {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: #727272;
}

.testimonials li .quote span {
    font-weight: 700;
}

.btn-email {
    position: relative;
}

.btn-email:before {
    position: absolute;
    left: 0;
    top: 45px;
    content: '';
    border-top: 1px solid #F1F3F6;
    width: 100%;
}

/* -------------------------
        5. PORTFOLIO BLOCK
------------------------- */
.portfolio-block {
    position: absolute;
    width: 430px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}

.portfolio-block-container {
    display: table-cell;
    vertical-align: middle;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

/* Portfolio */
#projects {
    margin-bottom: 50px;
}

#filters {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
}

#filters > li {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
}

#filters > li:before {
    content: "/";
    position: absolute;
    top: 15px;
    left: -5px;
    font-size: 10px;
    line-height: 18px;
    color: #666;
}

#filters > li:first-child:before {
    content: none;
}

#filters > li.active {
    color: #333;
    text-decoration: underline;
}

.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

.project {
    position: relative;
    width: 33.22222233%;
    float: left;
    overflow: hidden;
}

.vcenter {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
}

.centrize {
    display: table-cell;
    vertical-align: middle;
}

.project:hover .project-overlay {
    opacity: 1;
    z-index: 999;
}

.project-overlay {
    position: absolute;
    left: 5%;
    top: 5%;
    height: 90%;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    transition: opacity .8s ease, border .8s ease;
    text-align: center;
}

.project-overlay p {
    color: #333;
    font-size: 14px;
}

.project-overlay h4 {
    text-transform: uppercase;
    margin: 0;
}

.project-modal .modal-dialog {
	width: 100%;
	margin: 0;
}

.project-modal .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.project-title h2 {
    color: #fff;
    font-size: 35px;
    line-height: 38px;
    padding-left: 20px;
    position: absolute;
    bottom: 40px;
}
.project-title .tags {
	font-weight: 700;
    color: #fff;
	font-size: 20px;
    padding-left: 20px;
    position: absolute;
    bottom: 10px;
}
.project-description {
	text-align: justify;
}

.project-media {
	margin: 0 -50px;
}

.video-container {
    padding: 0 0 60%;
    position: relative;
    width: 100%;
}

.video-container iframe {
    border: 0 none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.poster {
    position:relative;
    background-size:cover;
    background-repeat: no-repeat;
    overflow:hidden;
    min-height: 75vh;
    margin: 0 -50px;
}

.layer {
    width:100%;
    height:100%;
    top:0;
    left:0;
    bottom:0;
    right:0;
    position: absolute;
    background: rgba(0,0,0,0.5); /* Adds an overlay to the image */
}

.project-media {
    background-color: #333;
}

.gray {
    background-color: #eee;
}

#section-services .section-title {
    padding: 50px 0;
}

.project-media .section-title h3{
    color: #fff;
    margin: 50px 0;
}

.bio-rad .poster {
    background-image: url("../images/portfolio/bio-rad/result.jpg");
    margin-top: 0;
}

.cornell-dining .poster {
    background-image: url("../images/portfolio/cornell-dining/hi-fi3.gif");
    margin-top: 0;
}

.epiclogue .poster {
    background-image: url("../images/portfolio/epiclogue/mockup1.gif");
    margin-top: 0;
}

.yelp-ux .poster {
    background-image: url("../images/portfolio/yelp-ux/showcase.gif");
    margin-top: 0;
}

.sara .poster {
    background-image: url("../images/portfolio/sara/poster.gif");
    margin-top: 0;
}

.actually .poster {
    background-image: url("../images/portfolio/actually/final.gif");
    margin-top: 0;
}

.yumso .poster {
    background-image: url("../images/portfolio/yumso/header.gif");
    margin-top: 0;
}

.bio-rad, .cornell-dining, .epiclogue, .yelp-ux, .sara, .actually, .yumso{
    padding-top: 0 !important;
}
.prev, .next{
    color: #333;
    font-size: 30px;
    padding: 0 15px;
    text-align: center;
    float: right;
}

.disabled{
    color: #999;
}

.disabled:hover{
    color: #999;
}

.title {
    color: #fff;
    padding-top: 50px;
    margin-bottom: -5px;
}

/* ================ Services Section ================ */
#section-services {
    position:relative;
    color: #fff;
    background-color: #555;
    margin: 0 -50px;
    padding: 0 50px;
}

.service-desc {
    display:table;
}

.service-desc h4 {
    margin-top: 0;
    color: #fff;
}

.section-title h3, .section-title h4 {
    border-top: 1px solid;
    border-bottom: 1px solid;
    display: inline-block;
    margin-top: 0;
    padding: 8px 0;
    color: #fff;
    
}

.center {
    text-align: center;
}

.challenges {
    padding: 0 65px 50px;
}

.challenges .section-title {
    padding: 0 0 20px 0;
}

.challenges .item {
    text-transform: uppercase;
    color: #fff;
    padding-left: 30px;
    line-height: 40px;
    font-size: 15px;
}

/* ================ Step-1,step-2,step-3 Sections ================ */
.container.step {
    padding: 80px 0;
    width: 100%;
}
.section-step {
    background-color:#f9f9f9;
    margin: 0 -50px;
    padding: 0 50px;
}

.step-even {
    background-color:#333;
    color:#e5e5e5;
}

.step-even .step-title{
    color: #fff;
}

.step-even .step-desc {
    float:right;
}

.step-img {
    text-align: center;
}
.step-even .step-img {
    float:right;
}

.step-video {
    overflow:hidden;
}

.step-no {
    width: 85px;
    height: 85px;
    border: 2px solid;
    border-radius: 50%;
    margin-left: -20px;
}

.step-no .no-inner {
    font-size: 62px;
    line-height: 76px;
}

.step-details .step-title {
    margin-top: 0;
    margin-bottom: 24px;
}

.step-details .step-description {
    margin-bottom: 48px;
}

.step-details .sub-steps li {
    margin-bottom: 24px;
}

.sub-steps .icon {
    float:left;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-left: 1px solid;
    line-height: 40px;
    padding: 0px 13px;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.sub-steps .sub-text {
    border: 1px solid;
    height: 40px;
    line-height: 40px;
    display: table;
    padding: 0 10px;
}

.persona {
    background-color: #ccc;
}

.mock-up {
    padding: 30px 50px;
    background: #fff;
}

.iteration {
    text-align: center;
    background-color: #999;
    margin: 0 -50px;
}

.prototype {
    text-align: center;
    background-color: #999;
    padding: 50px;
    color: #000;
    margin: 0 -50px;
}

.bottom {
    text-align: center;
    background-color: #fff;
    color: #333;
}

.hifi{
    width: 100%;
}

.summary{
    padding: 40px 0;
    background-color: #eee;
    color: #000;
}

.summary h3{
    padding-top: 10px;
}

.summary .step-title {
    color: #000;
}

/* -------------------------
        6. RESUME BLOCK
------------------------- */
.resume-block {
    position: absolute;
    width: 430px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}

.resume-block-container {
    display: table-cell;
    vertical-align: middle;
    padding-left: 50px;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

.post {
    background-color: #fff;
    margin: 25px 0;
}

.post:last-child {
    border-bottom: 0;
}

.post-thumbnail {
    text-align: center;
}

.post-title {
    text-align: center;
}

.post-title h2 {
    font-size: 28px;
    margin-top: 50px;
	margin-bottom: 20px;
}

.post-info {
    font-size: 14px;
}

.post-info i {
}

.post-info:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #333;
    margin: 20px auto;
}

.post-info span {
    padding: 0 2px;
}

.post-info .slash:before {
    content: "/";
}

.post-body {
    text-align: center;
    padding: 20px;
}

.post-body p {
    padding-bottom: 20px;
    line-height: 2em;
}

.pagination > li > a, .pagination > li > span {
    background-color: #F1F3F6;
    border: 1px solid #F1F3F6;
    color: #727272;
}

.pagination > li:hover > a, .pagination > li:hover > span {
    color: #333;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #F34452;
    border-color: #F34452;
    color: #fff;
}

.pagination > li:first-child > a, 
.pagination > li:first-child > span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.pagination > li:last-child > a, 
.pagination > li:last-child > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

#resume-header {
  height: 500px;
}
#resume-header .overlay {
  position: absolute;
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 500px;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.single-post-title,
.single-post-title h1 {
	color: #FFF;
}
.single-post-title h1 {
	margin-bottom: 30px;
}

#post .content {
	padding-top: 30px;
}

#single-post .post {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 50px;
}

#single-post .post-body {
    text-align: justify;
}

.author-box {
	background: #F1F3F6;
	overflow: auto;
	padding: 30px 0;
	margin: 30px 0 0;
}
.author-box h3 {
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 10px;
}
.author-box h3 span {
	color: #727272;
}

#resume-social {
	display: block;
	width: 100%;
	clear: both;
	text-align: center;
	padding: 30px 0;
	margin: 0 0 70px;
	border-bottom: 1px solid #F1F3F6;
}

#resume-social > li {
    display: inline-block;
}

#resume-social > li > a {
    display: block;
    width: 40px;
    height: 40px;
    margin: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #ddd;
    padding: 0;
    line-height: 36px;
    text-align: center;
    transition: all .3s ease;
}

#resume-social > li > a:hover {
    color: #F34452;
	border: 1px solid #F34452;
}

#comments {
    margin-bottom: 50px;
}

#comments h5 {
    font-size: 13px;
}

.comments-list {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.comments-list > li {
    border: 1px solid #ddd;
    margin-bottom: 14px;
}

.comments-list > li:before,
.comments-list > li:after {
    content: " ";
    display: table;
}

.comments-list > li:after {
    clear: both;
}

.comments-list .children {
    list-style: none;
    border-top: 1px solid #ddd;
    padding-left: 60px;
}

.comments-list .children > li {
    padding: 14px;
    border-bottom: 1px solid #ddd;
    margin: 0;
}

.comments-list .children > li:last-child {
    border-bottom: 0;
}

.comments-list .children > li .comment:before {
    position: absolute;
	content: '\f178';
	font-family: 'FontAwesome';
	font-size: 26px;
    margin-top: 5%;
    margin-left: -30px;
}

.comments-list > li .comment {
    padding: 14px;
}

.comment:before,
.comment:after {
    content: " ";
    display: table;
}

.comment:after {
    clear: both;
}

.comment img {
    margin-top: 10px;
}

.comment-date {
    font-size: 11px;
    color: #727272;
}

.comment-reply {
    font-size: 11px;
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 5px;
    border: 1px solid #ddd;
}

.comments-list .children > li .comment-reply {
    right: -29px;
    top: -29px;
}

.comment-reply:hover {
    background: #333;
}

#respond h5 {
    font-size: 13px;
}

.comment-respond {
    padding: 20px 0;
    margin-bottom: 50px;
}

.comment-respond .form-control {
    font-size: 11px;
}

.comment-respond textarea {
    min-height: 120px;
    max-width: 100%;
    resize: none;
}

.comment-respond input.form-control:focus,
.comment-respond textarea.form-control:focus {
    border: 1px solid #F34452;
}

.form-double:before,
.form-double:after {
    content: " ";
    display: table;
}

.form-double:after {
    clear: both;
}

.form-double .form-group {
    width: 50%;
    float: left;
    padding-right: 5px;
}

.form-double .form-group.last {
    padding-right: 0;
    padding-left: 5px;
}

.comment-respond .form-group .input-group-addon {
    background: transparent;
    border-radius: 0;
}

.form-submit {
    text-align: right;
}

/* -------------------------
        7. CONTACT BLOCK
------------------------- */
.contact-block {
    position: absolute;
    width: 430px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}

.contact-block-container {
    display: table-cell;
    vertical-align: middle;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

.contact-content {
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

.contact-icon {
    width: 60px;
    vertical-align: top;
    font-size: 30px;
    text-align: center;
    color: #F34452;
}

.contact-details, .contact-icon {
    display: table-cell;
}

.contact-details h5 {
    font-size: 14px;
    margin-bottom: 0;
}

.error-form {
    float: right;
    margin: -24px 2px 0 0;
    position: relative;
    top: 0;
}

.error-form i:before {
    color: #C33;
    font-size: 100%;
    vertical-align: top;
    margin-right: 10px;
}

.alert-success {
    text-align: left;
    position: absolute;
    bottom: 150px;
    left: 0;
    font: 400 14px 'Raleway', sans-serif;
    line-height: 20px;
}

#formcontactus .form-control {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #727272;
    border-radius: 0;
    width: 100%;
    font-size: 14px;
    transition: all .3s;
}

#formcontactus .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #F34452;
}

#formcontactus textarea {
    resize: none;
}

#map-container {
    width: 100%;
    height: 321px;
    margin: 0 auto;
    position: relative;
}

#map {
    width: 100%;
    height: 321px; /* had to specify height/width */
    position: absolute;
    top: 0; 
    right: 0;
    left: 0; 
    bottom: 0; 
}

/* -------------------------
        8. CONTENT BLOCKS
------------------------- */ 
.inline-menu-container {
    background: #F1F3F6;
    position: fixed;
    width: 70%;
    left: 30%;
    z-index: 99999;
    line-height: 65px;
    text-align: right;
} 

.project-modal .inline-menu-container {
	height: 65px;
}

.projDetail {
    width: 151px;
    left: auto;
    right: 0;
}
#modal-close.close {
	opacity: 0.7;
	padding: 5px 15px;
    float: right;
    line-height: inherit;
    font-size: 30px;
}

#close, #modal-close {
    font: 100 40px Sans-serif;
    border: none;
}

#close:hover {
    text-decoration: none;
}

.back {
    cursor: pointer;
}

.inline-menu {
    float: right;
}

.inline-menu li {
    display: inline-block;
    cursor: pointer;
    font-size: 19px;
    font-weight: 500;
    padding: 0 10px;
    color: #333;
    border-right: 1px solid #ddd;
}

.inline-menu li.active {
    text-decoration: underline;
    cursor: pointer;
}

.inline-menu li:hover {
    text-decoration: underline;
}

.post-modal,
.content-blocks {
    position: absolute;
    width: 70%;
    max-height: auto;
    height: 100%;
    overflow-y: scroll;
    top: 0;
    left: 30%;
    background: #FFF;
    transition: all 0.5s;
}

.project-modal {
	z-index: 99999;
    padding-left: 0 !important;
}

.content {
    position: relative;
    height: auto;
    overflow: hidden;
    padding: 100px 50px 0;
}

.block-content {
    margin: 0 0 100px;
}

.block-content:last-child {
    margin: 0 0 0;
}

.block-title {
    text-transform: uppercase;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
	margin-bottom: 50px;
    font-weight: 700;
}

/* -------------------------
        9. RESPONSIVE
------------------------- */ 
@media (min-width:1920px) {
    .name-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 122px;
        top: 90px;
    }

    .about-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 702px;
        top: -60px;
    }

    .portfolio-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 897px;
        top: 179px;
    }

    .resume-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 1092px;
        top: 518px;
    }

    .contact-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 1386px;
        top: 138px;
    }
	.name-block.reverse {
		width: 400px;
		left: 300px;
	}

	.project-modal,
	.content-blocks {
		width: 880px;
		left: 700px;
	}
	.inline-menu-container {
		width: 880px;
		left: 700px;
	} 
}

@media (min-width:1280px) and (max-width:1919px) {

    .name-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: -190px;
        top: 10px;
    }

    .about-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 382px;
        top: -150px;
    }

    .portfolio-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 577px;
        top: 89px;
    }

    .resume-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 772px;
        top: 428px;
    }

    .contact-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 1067px;
        top: 48px;
    }
}

@media (min-width:1025px) and (max-width:1280px) {

    .name-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: -200px;
        top: -80px;
    }

    .about-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 419px;
        top: -160px;
		width:350px;
		height: 300px;
    }

    .portfolio-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 586px;
        top: 88px;
		width:350px;
		height: 300px;
    }

    .resume-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 753px;
        top: 335px;
		width:350px;
		height: 300px;
    }

    .contact-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 900px;
        top: -70px;
		width:350px;
		height: 300px;
    }
}

@media (max-width: 991px) {
    .step-img {
        display: none;
    }
    .step-no {
        margin-bottom: 20px;
        margin-left: 0;
    }
}

@media (min-width:981px) and (max-width:1024px) {

    .name-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: -190px;
        top: 10px;
    }

    .about-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 382px;
        top: -150px;
    }

    .portfolio-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 577px;
        top: 89px;
    }

    .resume-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 772px;
        top: 428px;
    }

    .contact-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 365px;
        top: 538px;
    }

    h2.portfolio.menu-item:before, 
    h2.portfolio.menu-item{
        color: #333;
    }

    h2.portfolio.menu-item:after {
        background: #333;
    }
}

@media (min-width:768px) and (max-width:980px) {

    .name-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: -190px;
        top: 10px;
    }

    .about-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 382px;
        top: -150px;
    }

    .portfolio-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 577px;
        top: 89px;
    }

    .resume-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 336px;
        top: 548px;
    }

    .contact-block {
        -ms-transform: rotate(-34deg);
        -webkit-transform: rotate(-34deg);
        transform: rotate(-34deg);
        left: 9px;
        top: 780px;
    }
	
	.project {
		width: 50%;
    }

    .d3Chart {
        display: none;
    }   
}

@media (max-width:800px) and (max-height:600px) {
	.home {
		background: url(../images/background.jpg) #333 30% 30%;
		overflow-y: scroll;
	}

	.name-block,
	.about-block,
	.portfolio-block,
	.resume-block,
	.contact-block {
        position: relative;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        width: 100%;
        height: auto;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.5);
        display: table;
        left: 0;
        top: 0;
    }

	.name-block-container,
	.about-block-container,
	.portfolio-block-container,
	.resume-block-container,
	.contact-block-container {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        padding: 0 0 0 0;
    }

    h2.menu-item {
        line-height: 3em;
        margin-bottom: 0;
        display: block;
    }
	
	h2.menu-item:after {
		position: absolute;
		content: '';
		top: 15px;
		left: -20px;
		width: 70px;
		height: 1px;
		background: #FFF;
		transition: all 0.5s ease;
	}

    .social {
        position: relative;
        margin: 50px 0;
    }
	
	.project-modal,
    .content-blocks {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        left: 0;
    }
	.inline-menu-container {
		width: 100%;
		left: 0;
	}
}

@media (max-width:768px) {

	.home {
		background: url(../images/background.jpg) #333 30% 30%;
	}

	.name-block,
	.about-block,
	.portfolio-block,
	.resume-block,
	.contact-block {
        position: relative;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        width: 100%;
        height: auto;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.5);
        display: table;
        left: 0;
        top: 0;
    }

	.name-block-container,
	.about-block-container,
	.portfolio-block-container,
	.resume-block-container,
	.contact-block-container {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        padding: 0 0 0 0;
    }

    h2.menu-item {
        line-height: 3em;
        margin-bottom: 0;
        display: block;
    }
	
	h2.menu-item:after {
		position: absolute;
		content: '';
		top: 15px;
		left: -20px;
		width: 70px;
		height: 1px;
		background: #FFF;
		transition: all 0.5s ease;
	}

    .social {
        position: relative;
        margin: 50px 0;
    }
	
	.project-modal,
    .content-blocks {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        left: 0;
    }
	.inline-menu-container {
		width: 100%;
		left: 0;
	}

    .inline-menu li {
        padding: 0 9px;
    }
    .footer {
        display: none;
    }
}

@media (max-width:568px) {

	.home {
		overflow-y: scroll;
	}

    .name-block-container h1 span {
        font-size: 26px;
    }

    .name-block-container h1 {
        font-size: 36px;
    }

    .name-block-container h2 {
        font-size: 22px;
    }

    h2.menu-item {
        font-size: 20px;
        line-height: 2em;
		margin: 25px 0 25px 40px;
    }
	h2.menu-item:before {
		position: absolute;
		top: -20px;
		left: -20px;
		font-size: 14px;
	}
	h2.menu-item:after {
		display: none;
	}

    .social {
        display: none;
    }
	
	.project {
		width: 100%;
    }

    .inline-menu li {
        padding: 0 5px;
    }

    .d3Chart {
        display: none;
    }

    #close, #modal-close {
        font-size: 30px;
    }

    .content {
        padding: 100px 20px 0;
    }

    .poster, .project-media {
        margin: 0 -20px;
    }

    .challenges {
        padding: 0 20px 50px;
    }

    .section-step {
        padding: 0 20px;
    }

    .prototype {
        margin: 0 -20px;
    }

    .loading-circle {
        left: 44%;
    }
}