body {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 12px;
    font-family: "Mukta Mahee", "Mukta Vaani", "Roboto", sans-serif !important;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    /* background-color: #DFE6E9; */
    background-color: #f7f7f7;
}

*:focus {
    outline: none;
}

a {
  color: #fff;
  text-decoration: none; /* no underline */
}

a:hover {
    color: #fff;
    text-decoration: none;
}

a.not-active {
  cursor: pointer;
}

a.not-active:focus {
  outline: none;
  cursor: pointer;
  text-decoration: none;
}

a.not-active:focus:after {
    opacity: 1;
    -webkit-transform: translateY(0px) scaleX(1) skewY(0deg);
    -ms-transform: translateY(0px) scaleX(1) skewY(0deg);
    transform: translateY(0px) scaleX(1) skewY(0deg);

}

a.hanger-anim {
    
    position: relative;
}

a.hanger-anim:after {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
    /*background-color: rgba(0,0,0,0.14);*/
    content: "";
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: translateY(3px) scaleX(.8) skewY(6deg);
    -ms-transform: translateY(3px) scaleX(.8) skewY(6deg);
    transform: translateY(3px) scaleX(.8) skewY(6deg);
    opacity: 0;
    transition: -webkit-transform .6s cubic-bezier(.23,1,.32,1),opacity .2s cubic-bezier(.23,1,.32,1),height .7s cubic-bezier(.23,1,.32,1);
    transition: transform .6s cubic-bezier(.23,1,.32,1),opacity .2s cubic-bezier(.23,1,.32,1),height .7s cubic-bezier(.23,1,.32,1);
}

a.hanger-anim:hover:after {
    opacity: 1;
    height: 3px;

    -webkit-transform: translateY(0px) scaleX(1) skewY(0deg);
    -ms-transform: translateY(0px) scaleX(1) skewY(0deg);
    transform: translateY(0px) scaleX(1) skewY(0deg);
}

a.create-active {

}

.transition-all-03 {
    -moz-transition: all ease-in-out 0.30s;
    -o-transition: all ease-in-out 0.30s;
    -webkit-transition: all ease-in-out 0.30s;
    transition: all ease-in-out 0.30s;
}
.bg-dark {
    background-color: #17181a;
}
.bg-off-white {
    background-color: #DFE6E9;
}
.bg-dark-gradient {
    background: #17181a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #17181a, #232526);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #17181a, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.bg-light-gradient {
    background: #8e9eab;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.padding-bot-50 {
    padding-bottom: 50px;
}
.padding-sides-15 {
    padding-right: 15px;
    padding-left: 15px;
}
.font-centered {
    text-align: center;
}

.font-left {
    text-align: left;
}

.italic {
    font-style: italic;
    font-weight: 500;
}

.border-radius-3 {
    border-radius: 3px;
}

.input-grp {
    margin-bottom: 10px;
    position: relative;
}

/*.input-grp:after {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #5C97BF;
    background-color: rgba(0,0,0,0.14);
    content: "";
    -moz-transition: all ease-in-out 0.25s;
    -o-transition: all ease-in-out 0.25s;
    -webkit-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;

}*/

.input-name {
    text-align: left;
    font-size: 14px;
    color: #4d4d4d;
    /*transform: translateY(15px);*/
}

.input-name span{
    text-align: left;
    font-size: 12px;
    color: #e0e0e0;
    /*transform: translateY(15px);*/
}

.input-full-width {
    width: 100%;
}

.input-focus-border {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0%; 
    height: 2px;
    background-color: rgba(0,0,0,0.14);
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.33s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.33s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.33s;
    transition: all cubic-bezier(.23,1,.32,1) 0.33s;
}

input[type=text], input[type=password] {
    border-bottom: solid 1px rgba(0,0,0,0.14);
    border-top: none;
    border-right: none;
    border-left: none; 
    line-height: 35px;
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}

input[type=password] {
    letter-spacing: 0.4em;
}

input[type=submit] {
    height: 45px;
    text-align: center;
    color: #fff;
    background-color: #DADFE1; 
    border: 1px solid #DADFE1;
    margin-top: 50px;
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
    font-size: 14px;
}

input[type=submit]:hover, input[type=submit]:focus {
    color: #fff;
    background-color: #17181a; 
    box-shadow: 0 3px 5px rgba(0,0,0,0.10), 0 3px 5px rgba(0,0,0,0.15);
    border: 1px solid #17181a;
}

input[type=text]:focus,input[type=password]:focus {
    border-bottom: solid 1px #73E7CE;
    padding-left: 8px;
}

input[type=text]:focus ~ .input-focus-border,
input[type=password]:focus ~ .input-focus-border{
    width: 100%;
    background-color: #73E7CE;
}

.flex--container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex--center-vert-horiz {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}



.btn-hanger {
    position: absolute;
    display: block;
    bottom: -13px;
    left: 0;
    right: 0;
    height: 45px;
    text-align: center;
    color: #b2b2b2;
    font-size: 14px;
    background-color: #fff; 
    border: 1px solid #b2b2b2;
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}

/* DASHBOARD */

.app--container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

#side-menu--container {
    position: fixed;
    left: -250px;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 5;
    padding-top: 80px;
    /*background-color: #BDC3C7;*/
    /*background-color: #6C7A89;*/
    background-color: #34495e;
    -webkit-box-shadow: 10px 0px 15px -2px rgba(0,0,0,0.1);
    -moz-box-shadow: 10px 0px 15px -2px rgba(0,0,0,0.1);
    box-shadow: 10px 0px 15px -2px rgba(0,0,0,0.1);
}

#side-menu--container .logo-mark {
    height: 80px;
    position: absolute;
    top: 0;
    width: 100%;
    color: #f7f7f7;
    background-color: #17181a;
    box-shadow: 0 13px 15px rgba(0,0,0,0.001), 0 3px 5px rgba(0,0,0,0.05);
    line-height: 80px;
    font-size: 18px;
    letter-spacing: 0.2em;
}

#side-menu--container ul {
    
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    list-style-type: none;
    /*padding-top: 25px;*/
}

#side-menu--container ul li{
    list-style-type: none;
    width: 100%;
    height: 60px;
    background-color: #34495e;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 60px;
    padding-left: 35px;
    padding-right: 25px;
    -moz-transition: all ease-in-out 0.17s;
    -o-transition: all ease-in-out 0.17s;
    -webkit-transition: all ease-in-out 0.17s;
    transition: all ease-in-out 0.17s;
    overflow: hidden;
    position: relative;
}

#side-menu--container ul li button{
    display: block;
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: none;
    text-align: left;
}

#side-menu--container ul li button i.menu-icon {
    transform: translateY(-2px);
}

#side-menu--container ul li button .menu-item-title {
    color: #fff;
    display: inline-block;
    padding-left: 15px;
}

#side-menu--container ul li button:after {
    content: '';
    position: absolute;
    width: 0px;
    height: inherit;
    background-color: #00E676;
    bottom: 0;
    left: 0;
    top: 0;
    -moz-transition: all ease-in-out 0.17s;
    -o-transition: all ease-in-out 0.17s;
    -webkit-transition: all ease-in-out 0.17s;
    transition: all ease-in-out 0.17s;
}

#side-menu--container ul li button.red:after {
    content: '';
    position: absolute;
    width: 0px;
    height: inherit;
    background-color: #f44336;
    bottom: 0;
    left: 0;
    top: 0;
    -moz-transition: all ease-in-out 0.17s;
    -o-transition: all ease-in-out 0.17s;
    -webkit-transition: all ease-in-out 0.17s;
    transition: all ease-in-out 0.17s;
}

#side-menu--container ul li:hover {
    background-color: #263544;
}

#side-menu--container ul li button:hover:after {
    width: 4px;
}

.right-arrow {
    float: right;
    top: 15px;
    margin-top: 18px;
    opacity: 0;
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
    transform: translateX(-5px);
}

.material-icons {
    vertical-align: middle;
    
}



#side-menu--container ul li:hover .right-arrow {
    opacity: 1;
    transform: translateX(0px);
}

#main-content--container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    /* padding-left: 50px;
    padding-right: 50px; */
    padding-top: 75px;
    padding-bottom: 10px;
    z-index: 3;
    /*background-color: #F0FAFF;*/
    background-color: transparent;
}

#main-content--container.about {
    background-color: #f6dddd;
}

#main-content--container.contact {
    background-color: #a0cce3;
}

#main-content--container.temp {
    background-color: #a0cce3;
    padding-top: 150px;
}

#main-content--container.work {
    background-color: #ececec;
}

#main-content--container.detail {
    background-color: #fff;
}

h1.section-title.work {
    font-weight: 900;
    font-size: 68px;
    color: #FFFFFF;
    letter-spacing: 6.6px;
    padding: 85px 0;
    text-shadow: 1px 1px 14px rgba(0,0,0,0.03);
    margin-top: 0 !important;
}

h1.section-title.about {
    font-weight: 900;
    font-size: 68px;
    color: #4d4d4d;
    letter-spacing: 6.6px;
    padding-top: 100px;
    text-shadow: 1px 1px 14px rgba(0,0,0,0.03);
    padding-bottom: 50px;
    
}

.intro-text--container {
    padding: 12.5px 0;
    position: relative;
    height: auto;
}

.project-card {
    width: 100%;
    background-color: #fff;
    height: 325px;
    margin-bottom: 50px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04); */
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
}



p.about-text {
    font-size: 19px;
    color: #4d4d4d;
    /* letter-spacing: 0.06px; */
    line-height: 32px;
    font-weight: 100;
    text-align: left;
    max-width: 80%;
    margin: 0 auto 25px auto;
}

/*    SVG STUFF   */

#svg--container {
    position: absolute;
    top: 0;
    left: -30px;
    right: 0;
    z-index: 1;
}

#svg--container img{
    width: 100%;
    max-width: 100%;
    min-width: 1200px;
    opacity: 1;
}

#svg--container img.buffer-top{
    margin-top: 150px;
    
}

img.blop-1 {
    position: absolute;
    top: 0;
    left: 0;
}

img.blop-2 {
    position: absolute;
    top: 890px;
    right: 0;
}

img.blop-3 {
    position: absolute;
    top: 2400px;
    left: 0;
}

h2.portfolio-item-title {
    font-weight: 900;
    font-size: 62px;
    color: #fff;
    letter-spacing: 6.6px;
    opacity: 0;
    /* text-shadow: 1px 1px 14px rgba(0,0,0,0.03); */
    padding-bottom: 0px;
    margin-bottom: 25px;
    text-align: left;
}

h1.portfolio-section-title {
    font-weight: 900;
    font-size: 54px;
    color: #4d4d4d;
    letter-spacing: 2.6px;
    /* text-shadow: 1px 1px 14px rgba(0,0,0,0.03); */
    padding-bottom: 25px;
    padding-top: 25px;
    text-align: left;
}

.portfolio-item-info-list {
    list-style-type: none;
    display: block;
    text-align: left;
    padding-left: 0;
    padding-top: 0px;
    padding-bottom: 15px;
    opacity: 0;
}


.portfolio-item-info-list li {
    display: inline-block;
    height: 32px;
    padding: 8px 15px;
    border-radius: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.05);
}

.portfolio-item-info-list.bluegreen li {
    color: #455A64;
}

.portfolio-item-info-list.mockstarket li {
    color: #00D2D3;
}

.portfolio-item-info-list.sift li {
    color: #00B696;
}

.portfolio-item-info-list.ge li {
    color: #0D60B5;
}
.portfolio-item-info-list.innotate li {
    color: #04B885;
}
.portfolio-item-info-list.daily li {
    color: #fa983a;
}
.portfolio-item-info-list li span{
    font-weight: 300;
}
.portfolio-item-body p{
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    color: #4d4d4d;
    font-family: "Roboto Mono";
    text-align: left;
    padding-top: 15px;
}

.portfolio-item-body p.buffer-top {
    padding-top: 50px;
}

.portfolio-item-body video{
    margin-top: 50px;
    border-radius: 10px; 
}
.portfolio-item-body img {
    margin-top: 50px;
    border-radius: 10px;
}

.portfolio-item-body ol, .portfolio-item-body ul {
    color: #4d4d4d;
    margin-top: 25px;
    margin-bottom: 15px;
    text-align: left;
}

.portfolio-item-body ol li, .portfolio-item-body ul li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #4d4d4d;
    font-family: "Roboto Mono";
}

.menu-btn{
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    height: 70px;
    width: 70px;
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    /* padding-right: 30px; */
    line-height: 60px;
    color: #617D8A;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
}

.menu-btn.shown {
    opacity: 1;
    pointer-events: all;
}

.menu-btn:hover {
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.menu-btn .bars {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 15;
    height: 100%;
    width: 100%;
    max-height: 70px;
    max-width: 70px;
    border-radius: 50%;
}

.menu-btn .bars .bar-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 30px;
    width: 30px;
    margin: auto;
}

.menu-btn .bars .bar-wrapper span {
    display: block;
    /* background-color: #617D8A; */
    background-color: #4d4d4d;
    height: 3px;
    width: 28px;
    margin-bottom: 7px;
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    opacity: 0.7;
    border-radius: 3px;
}

.menu-btn .bars .bar-wrapper span:nth-child(1) {
    margin-top: 4px;
    width: 16px;
    
}

.menu-btn .bars .bar-wrapper span:nth-child(2) {
    width: 22px;
}

.menu-btn .bars .bar-wrapper span:nth-child(3) {
    width: 28px;
}

.menu-btn:hover .bars .bar-wrapper span {
    width: 28px;
    opacity: 1;
}

.menu-btn.expanded {
    border-radius: 5px;
    width: 225px;
    height: 275px;
}

.menu--container {
    opacity: 0;
    pointer-events: none;
    height: 100%;
    padding-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.5s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.5s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.5s;
    transition: all cubic-bezier(.23,1,.32,1) 0.5s;
    transition-delay: -0.2s;
}

.menu-btn.expanded .menu--container {
    pointer-events: all;
    opacity: 1;
    transition-delay: 0.28s;
}

.menu-btn.expanded .bars .bar-wrapper span:nth-child(1) {

    width: 28px;
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
    
}

.menu-btn.expanded .bars .bar-wrapper span:nth-child(2) {
    opacity: 0;
}

.menu-btn.expanded .bars .bar-wrapper span:nth-child(3) {

    width: 28px;
    transform: translateY(-12px) rotate(-45deg);
    opacity: 1;
}

.menu--container ul {
    list-style-type: none;
    padding: 0 0 0 25px;
}
.menu--container ul li{
    padding: 0;
    position: relative;
    text-align: left;
    height: 50px;
    display: block;
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
}

.menu--container ul li a:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background-color: #eb4744;
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
    opacity: 0.75;
}

.menu--container ul li a{
    color: #4d4d4d;
    position: relative;
    display: inline;
    font-size: 20px;
    opacity: 0.6;
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
}

.menu--container ul li i{
    opacity: 0;
}
/* .menu--container ul li a:hover + .menu--container ul li i{
    color: #eb4744;
    opacity: 1;
} */

.menu--container ul li:hover a::after{
    width: 100%;   
    opacity: 1;
}

.menu--container ul li:hover a{
    opacity: 1;
    font-size: 22px;
}

.menu--container ul li:hover i.material-icons{
    opacity: 1;  
    transform: translateX(5px);
}

.menu--container ul li.down-anim:hover i.material-icons{
    opacity: 1;  
    transform: translatey(2px);
}

p.img-subtitle {
    text-align: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 50px;
    color: rgba(0,0,0,0.4);
}

p.img-subtitle.shift-up {
    text-align: center;
    width: 100%;
    margin-top: -50px;
    margin-bottom: 50px;
}

.menu--container ul li i.material-icons {
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
    margin-left: 15px;
    color: #eb4744;
    margin-top: -7px;
}

.menu--container ul li.down-anim i.material-icons {
    transform: translateY(-10px);
}

.quote-container {
    text-align: center;
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 81px;
    margin: 65px 0 15px 0;
}

.quote-container:after {
    content: "";
    position: absolute;
    width: 125px;
    height: 2px;
    background-color: rgba(0,0,0,0.15);
    top: 80px;
    transform: translateX(-50%);
}

.top-content--container {
    height: 75px;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

.top-content--container p {
    text-align: left;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
}

.top-content--container ul {
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 0px;
    list-style-type: none;
}

.top-content--container ul li {
    display: inline-block;
    margin-left: 12px;
}

.top-content--container ul li:first-child {

}

.top-content--container ul li a{
    text-align: center;
    color: #fff;
    opacity: 0.8;
    font-size: 20px;
    font-weight: 300;
    padding: 5px;
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
}

.top-content--container ul li a:hover{
    opacity: 1;
    cursor: pointer;
}

.no-buffer-right {
    padding-right: 0;
}

.no-buffer-left {
    padding-left: 0;
}

.no-gutter {
    padding-right: 0; 
    padding-left: 0; 
}

.project-card.portfolio-item {
    padding: 50px;
    text-align: left;
    height: auto;
}

.project-card.portfolio-item p{
    font-size: 22px;
    font-weight: 100;
    color: #4d4d4d;
    
}

.nav-section-title {
    font-size: 22px;
    font-weight: 300;
    color: #4d4d4d;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: 0.8;
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
}

.nav-section-title:hover {
    opacity: 1;
    color: #4d4d4d;
    
}

.nav-section-title:after {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    max-width: 120px;
}

.nav-section-sub {
    font-size: 16px;
    font-weight: 100;
    margin-bottom: 5px;
    color: #4d4d4d;
    cursor: pointer;
    display: block;
    opacity: 0.6;
    position: relative;
    -moz-transition: all ease-in-out 0.12s;
    -o-transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
    transition: all ease-in-out 0.12s;
}

.nav-section-sub:hover {
    opacity: 1;
    color: #4d4d4d;
    text-decoration: underline;
}

.portfolio-item-nav {
    margin-bottom: 50px;
    opacity: 0;
}

.portfolio-sub-section {
    font-size: 18px;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.04em;
    margin-top: 50px;
}

.ext-product-link {
    color: #6C5CE7;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.ext-product-link:hover {
    color: #6C5CE7;
}

.ext-product-link:after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: #6C5CE7;
    position: absolute;
    bottom: -2px;
    left: 0px;
    -moz-transition: all ease-in-out 0.18s;
    -o-transition: all ease-in-out 0.18s;
    -webkit-transition: all ease-in-out 0.18s;
    transition: all ease-in-out 0.18s;
}

.ext-product-link:hover:after {
    width: 100%;

}

img.ui-desktop-img {
    width: 100%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04);
}

img.ui-desktop-img.no-shadow {
    width: 100%;
    box-shadow: none;
}

img.ui-desktop-img.no-buffer {
    width: 100%;
    box-shadow: none;
    margin-top: 0;
}

img.ui-desktop-img.shrunk {
    max-width: 550px;
}

img.ui-desktop-img.squeezed {
    max-width: 300px;
}

img.ui-desktop-img.no-rounding {
    border-radius: 0;
}



.img-color-container {
    height: 400px;
    position: relative;
    box-sizing:border-box;
    float: left;
    width: 50%;
}
.img-color-container.blue {
    background-color: #00D2D3;
}

.img-color-container.red {
    background-color: #ef5350;
}

.img-color-container.green {
    background-color: #55EFC4;
}

.img-color-container.l-green {
    background-color: #00B696;
}

.img-color-container.purple {
    background-color: #6C5CE7;
}

.img-color-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 150px;
    transform: translateY(15px);
}

.img-color-container:nth-child(even)
{
    padding-left:5px;
}

.img-color-container:nth-child(odd)
{
    padding-right:5px;
}

.img-color-container > img {
    width: 100%;
}

.buffer-top {
    margin-top: 50px;
}

.buffer-bottom {
    margin-bottom: 50px;
}
.padding-bottom {
    padding-bottom: 25px;
}

.img-grid {
    margin-top: 50px;
    margin-bottom: 50px;

}

.ui-row {
    margin-top: 50px;
    display: flex;
    flex-wrap: nowrap;
}

.ui-row.vertical {
    margin-top: 50px;
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
}



.ui-item {
    flex: 1 0 16%; /* The important bit. This percentage decides your columns. 
   The percent can be px. It just represents your minimum starting width.
    */
    margin-left: 35px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.ui-item.shifted-left {
    margin-left: -100px !important;
}

.ui-item.vertical {
    flex: 1 0 16%; /* The important bit. This percentage decides your columns. 
   The percent can be px. It just represents your minimum starting width.
    */
    margin-left: 25px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
}

.ui-item.vertical.shift-down {
    transform: translateY(75px);
}


.ui-item:nth-child(1) {
    margin-left: 0px;
    
} 

.ui-mask {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04);
    transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.ui-mask.no-shadow {
       
    box-shadow: none !important;
}

.ui-mask:hover {
    transform: scale3d(1.15, 1.15, 1.15);
}

.ui-mask.no-hover-zoom:hover {
    transform: scale3d(1,1,1);
}

.ui-item.vertical .ui-mask {
    margin-bottom: 25px;
}

.finish-text {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

img.quote-img {
    margin-top: 0px;
}

.img-link-container {
    position: relative;
}

.img-link-container.buffer-bottom {
    margin-bottom: 60px;
}

.view-img-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 50px;
    width: 50px;
    line-height: 49px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    color: #B0BEC5;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
}

.view-img-btn.shift-down {
    z-index: 10;
    bottom: -60px;
    position: absolute;
    right: 0;
    height: 50px;
    width: 50px;
    line-height: 49px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    color: #B0BEC5;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
}

.view-img-btn.action-btn {
    z-index: 10;
    bottom: -23px;
    position: absolute;
    right: 25px;
    height: 50px;
    width: 50px;
    line-height: 49px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    color: #B0BEC5;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
}
.view-img-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 50px;
    width: 50px;
    line-height: 49px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    color: #B0BEC5;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
}

.view-img-btn:hover {
    color: #4d4d4d;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.bigger-text {
    font-size: 32px;
    font-family: 'Roboto', serif;
}

.into-text-line span.bigger-text {
    font-size: 32px;
    font-family: 'Roboto', serif;
}

ol.light-text li {
    font-weight: 300;
}

.top-nav-item {
    opacity: 0;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    margin-top: 50px;
}

.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
    overflow: hidden;
}

.about-img {
    margin-bottom: 25px;
}

.project-logo .logo.small {
    max-width: 60px;
}

.ui-row.no-buffer-top {
    margin-top: 0px;
}
.ui-mask.single-ui {
    max-width: 360px;
}

#contact-title {
    font-size: 24px;
    color: rgba(0,0,0,0.4);
    text-align: center;
    text-transform: uppercase;
    margin-top: 75px;
    margin-bottom: 35px;
}

.contact-links {
    list-style-type: none;
    padding-left: 0px;
    margin-bottom: 50px;
}

.contact-links li {
    display: inline-block;
    text-align: center;
    height: 50px;
    width: 50px;
    margin: 0 15px;
    background-color: #455A64;
    border-radius: 50%;
    padding-top: 10px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
    opacity: 0.8;
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
}

.contact-links li:hover {
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    opacity: 1;

}

.contact-links li a{
    
    height: 100%;
    width: 100%;
    position: relative;
}

.contact-links li a img{
    height: 30px;
    width: 30px;
    
    margin: auto;
}

.contact-links li a img.squeeze {
    width: 24px;
    
}

.contact-links li a img.nudge-right {
    transform: translateX(2px);
    
}
.rounded-img {
    border-radius: 50%;
    height: 250px;
    width: 250px;
    overflow: hidden;
    margin: 0 auto 35px auto;
    box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04);

}
.about-img {
    width: 100%;
    height: auto;
    /* transform: translateX(-40%); */
}

.location-info {
    font-size: 20px;
    color: rgba(0,0,0,0.4);
    text-align: center;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 35px;
}

.location-info i{
    font-size: 20px;
    color: #73E7CE;
    transform: translateY(-2px);
}

.copyright {
    color: rgba(0,0,0,0.4);
    font-size: 12px;
    font-weight: 500;
}

.copyright span.wave {
    -webkit-animation: wave 1.5s infinite alternate;
    -moz-animation: wave 1.5s infinite alternate;
    -ms-animation: wave 1.5s infinite alternate;
    -o-animation: wave 1.5s infinite alternate;
    animation: wave 1.5s infinite alternate;
    display: inline-block;
    font-size: 10px;
}

p.key-point-text {
    font-weight: 500;
}

.left-align {
    text-align: left;
}

.ui-description {

}

.ui-description .title{
    font-size: 18px;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.04em;
    margin-top: 50px;
}

.ui-description .description{
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    color: #4d4d4d;
    font-family: "Roboto Mono";
    text-align: left;
    padding-top: 15px;
    letter-spacing: -0.02em;
}

.project-card.portfolio-item .summary-heading, .summary-category, p.summary, .summary-list li {
    
    color: #4d4d4d;
    font-family: "Roboto";
    text-align: left;

}
.project-card.portfolio-item .summary-heading {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.001em;
    margin-bottom: 25px;
    color: rgba(0,0,0,0.7);
}

.summary-category {
    font-family: "Mukta Mahee", "Mukta Vaani", "Roboto", sans-serif !important;
    font-size: 22px;
    font-weight: 300;
    color: rgba(0,0,0,0.8);
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    margin-top: 10px;
    opacity: 0.8;
}

.project-card.portfolio-item .summary-heading.buffer-top {
    margin-top: 25px !important;
}

.project-card.portfolio-item p.summary {
    font-family: "Roboto Mono";
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 20px;
}

.summary-list {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.summary-list li {
    font-size: 14px;
    font-weight: 300;
    color: #4d4d4d;
    display: inline;
    opacity: 0.8;
    line-height: 20px;
}

.summary-list li:first-child {
}

.summary-category:after {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    max-width: 120px;
}

.project-card.portfolio-item.example {
    margin-top: 50px;
    padding: 35px;
}

.project-card.portfolio-item.example p {
    font-size: 14px;
    font-weight: 300;
    color: #4d4d4d;
}

.quote-block-container {
    width: 100%;
    background-color: #fff;
    height: 325px;
    margin-bottom: 50px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04); */
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
}

.divider-line {
    margin: 0 auto;
    padding: 15px 0;
    display: block;
}

.pre-loader {
    height: 100vh;
    width: 100vw;
    background-color: #6C5CE7;
    position: absolute;
    z-index: 100;
    transition: all cubic-bezier(.25,.1,.25,1) 0.8s;
}

.pre-loader.exit {
    z-index: 100;
    opacity: 0;
    transform: translateY(-155%);
    pointer-events: none;
}

.pre-loader.mockstarket {
    background-color: #2EDADA;

}

.pre-loader.home {
    background-color: #FD6B6A;
    
}

.pre-loader.daily {
    background-color: #F08F32;
    
}

.pre-loader.ge {
    background-color: #2D7BCA;
    
}

.pre-loader.sift {
    background-color: #31CDA2;
    
}

.pre-loader.innotate {
    background-color: #31CDA2;
    
}

.pre-loader.bluegreen {
    background-color: #4B585E;
    
}

.pre-loader.hotpads {
    background-color: #4C595E;
    
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;

}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.9em solid rgba(255, 255, 255, 0.2);
  border-right: 0.9em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.9em solid rgba(255, 255, 255, 0.2);
  border-left: 0.9em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite cubic-bezier(.25,.1,.25,1);
  animation: load8 1.1s infinite cubic-bezier(.25,.1,.25,1);
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner {
    margin: auto;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: all ease-in-out 0.55s;

}

.pre-loader.exit .spinner {
    opacity: 0;
    
}

.get-in-touch {
    display: inline-block;
    position: absolute;
    top: -40px;
    right: -12.5px;
    max-width: 185px;
    height: auto;
}

.top-container {
    position: relative;
}

.profile-card-container {
    display: inline-block;
    position: absolute;
    top: -40px;
    right: 60px;
    height: 310px;
    width: 190px;
}

.profile-card-container .top-card{
    height: 100%;
    width: 100%;
    position: relative;
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
    z-index: 10;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.20);
    /* transform: rotate(3deg); */
}

.profile-card-container .bottom-card{
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #fff;
    border-radius: 15px;
    opacity: 0.5;
    z-index: 9;
    margin-top: 12px;
    margin-left: 12px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.20);
}

.profile-card-container .top-card .img-box{
    height: 40%;
    width: 100%;
    display: block;
    
    margin: 0 auto 15px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.20);
}

.profile-card-container .top-card .profile-card-name{
    display: block;
    color: rgba(0,0,0,0.55);
    font-weight: 500;
    font-size: 19px;
    text-align: left;
}

.profile-card-container .top-card .profile-card-detail{
    display: block;
    color: rgba(0,0,0,0.30);
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

.profile-card-container .top-card .get-in-touch-btn{
    height: 45px;
    width: 85%;
    position: absolute;
    bottom: 14px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-color: #4FDDB6;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 44px;
    cursor: pointer;
    box-shadow: 0 2px 16px 0 rgba(85,239,196,0.20);
    -moz-transition: all ease-in-out 0.18s;
    -o-transition: all ease-in-out 0.18s;
    -webkit-transition: all ease-in-out 0.18s;
    transition: all ease-in-out 0.18s;
}

.profile-card-container .top-card .get-in-touch-btn:hover{
    background-color: #44C29F;
    box-shadow: 0 4px 26px 0 rgba(85,239,196,0.20);
}

.profile-card-container .top-card .get-in-touch-btn:hover > .profile-card-container .top-card{
    transform: translateY(10px);
}

.card-anim {
    -webkit-animation-duration: 3.8s;
    animation-duration: 3.8s;
    animation-delay: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
  }
  @-webkit-keyframes bounce {
    0%, 100% {
      margin-top: 0px;
    }
    50% {
      margin-top: 10px;
    }
  }
  @keyframes bounce {
    0%, 100% {
        margin-top: 0px;
    }
    50% {
        margin-top: 10px;
    }
  }
  .bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
  }
  
  
  .card-anim-2 {
    -webkit-animation-duration: 3.8s;
    animation-duration: 3.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
  }
  @-webkit-keyframes bounce-2 {
    0%, 100% {
      margin-top: 0px;
      transform: rotate(0deg);
    }
    50% {
      margin-top: 10px;
      transform: rotate(-9deg);

    }
  }
  @keyframes bounce-2 {
    0%, 100% {
        margin-top: 0px;
      transform: rotate(0deg);

    }
    50% {
        margin-top: 10px;
      transform: rotate(-9deg);

    }
  }
  .bounce-2 {
    -webkit-animation-name: bounce;
    animation-name: bounce;
  }

  .card-anim-3 {
    -webkit-animation-duration: 3.8s;
    animation-duration: 3.8s;
    animation-delay: 0.3s;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
  }
  @-webkit-keyframes bounce-3 {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-4px);

    }
  }
  @keyframes bounce-3 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
      transform: translateY(-4px);

    }
  }
  .bounce-3 {
    -webkit-animation-name: bounce-3;
    animation-name: bounce-3;
  }

  .anim-ui-adjust {
      max-width: 360px;
  }

/* DONT PUT NEW CSS BELOW HERE */




.flex-grid--container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 25px;
    padding-left: 12.5px;
    padding-right: 12.5px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-grid--container .flex-column-22 {
    -ms-flex-preferred-size: 22%;
    flex-basis: 22%;
    max-width: 22%;
}
.flex-grid--container .flex-column-30 {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
}
.flex-grid--container .flex-column-33 {
    -ms-flex-preferred-size: 33.3%;
    flex-basis: 33.3%;
    max-width: 33.3%; 
}

.flex-grid--container .flex-column-50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; 
}
.flex-grid--container .flex-column-70 {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
}

.flex-grid--container .flex-column-78 {
    margin-left: 33%;
    -ms-flex-preferred-size: 78%;
    flex-basis: 78%;
    max-width: 78%;
}



.flex-grid--container .flex-column-100 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; 
}

.card{
    height: 600px;
    background-color: #fff;
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 25px;
    padding-top: 75px;
    padding-bottom: 75px;
    padding-left: 85px;
    padding-right: 85px;
    position: relative;
    -moz-transition: all ease-in-out 0.63s;
    -o-transition: all ease-in-out 0.63s;
    -webkit-transition: all ease-in-out 0.63s;
    transition: all ease-in-out 0.63s;
    opacity: 0;
    transform: translateY(15px);
    /*box-shadow: 0 13px 15px rgba(0,0,0,0.001), 0 3px 5px rgba(0,0,0,0.05);*/
}

.card:hover{
    /*height: 600px;*/
    /*background-color: #fff;*/
    /*margin-right: 15px;*/
    /*margin-left: 15px;*/
    /*margin-top: 25px;*/
    box-shadow: 0 13px 15px rgba(0,0,0,0.1), 0 3px 5px rgba(0,0,0,0.1);
    /*transform: scale(1.01) translateY(3px);*/
}

.card.anim-in {
    opacity: 1;
    transform: translateY(0);
}

.card.pink {
    background-color: #f6dddd;
}

.card.blue {
    background-color: #a0cce3;
}

.card.short {
    height: 400px;
}

#about-box {
    background-color: transparent;
    -moz-transition: all ease-in-out 0.23s;
    -o-transition: all ease-in-out 0.23s;
    -webkit-transition: all ease-in-out 0.23s;
    transition: all ease-in-out 0.23s;
    transition-delay: .18s;
    position: relative;
    overflow: hidden;
}

#about-box:after {
    background-color: #fff;
    -moz-transition: all ease-in-out 0.23s;
    -o-transition: all ease-in-out 0.23s;
    -webkit-transition: all ease-in-out 0.23s;
    transition: all ease-in-out 0.23s;
    transition-delay: .23s;
    transform: rotate(5deg) scaleX(.8) skewY(6deg);
    position: absolute;
    right: 150px;
    top: 0;
    z-index: -1;
    height: 350px;
    width: 700px;
    content: "";
    opacity: 0;

}

#contact-box {
    background-color: transparent;
    -moz-transition: all ease-in-out 0.23s;
    -o-transition: all ease-in-out 0.23s;
    -webkit-transition: all ease-in-out 0.23s;
    transition: all ease-in-out 0.23s;
    transition-delay: .18s;
    position: relative;
    overflow: hidden;
}

#contact-box:after {
    background-color: #fff;
    -moz-transition: all ease-in-out 0.23s;
    -o-transition: all ease-in-out 0.23s;
    -webkit-transition: all ease-in-out 0.23s;
    transition: all ease-in-out 0.23s;
    transition-delay: .23s;
    transform: rotate(5deg) scaleX(.8) skewY(6deg);
    position: absolute;
    right: 150px;
    top: 0;
    z-index: -1;
    height: 350px;
    width: 700px;
    content: "";
    opacity: 0;

}

#about-box.filled {
    background-color: transparent;
    color: #f6dddd;
    height: 140px;
    transform: translateY(-10px);
    line-height: 136px;
    box-shadow: 0 13px 15px rgba(0,0,0,0.04), 0 3px 5px rgba(0,0,0,0.05);
}

#about-box.filled:after {
    right: -400px;
    opacity: 1;
    transform: rotate(45deg) scaleX(1) skewY(0deg);
}

#contact-box.filled {
    background-color: transparent;
    color: #a0cce3;
    height: 140px;
    transform: translateY(-10px);
    line-height: 136px;
    box-shadow: 0 13px 15px rgba(0,0,0,0.04), 0 3px 5px rgba(0,0,0,0.05);
}

#contact-box.filled:after {
    right: -400px;
    opacity: 1;
    transform: rotate(45deg) scaleX(1) skewY(0deg);
}

.work--container {
    padding: 0 12.5px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.fixed-container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 120px;
    padding-left: 12.5px;
    padding-right: 12.5px;
    box-sizing: border-box;
}
.work-nav-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}
.title-container {
    /*background-color: #fff;*/
    float: left;
    height: 25px;
    padding-top: 15px;
    width: 180px;

    /*box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04);*/
}
.work-title {
    font-size: 110px;
    text-align: center;
    color: #eb4744;
    position: relative;
    transform: translateY(-12px);
    font-weight: 500;
    line-height: 78px;
    letter-spacing: -0.02em;

}

.work-title:after {
    position: absolute;
    bottom: -20px;
    left: 0;

    content: '';
    height: 8px;
    width: 130%;
    z-index: -1;
    background-color: #fff;
    transform: rotate(4deg);
}
.nav-link {
    height: 60px;
    width: 130%;

    color: #9e9e9e;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 6px;
    margin-top: 50px;
    float: left;
    -moz-transition: all ease-in-out 0.23s;
    -o-transition: all ease-in-out 0.23s;
    -webkit-transition: all ease-in-out 0.23s;
    transition: all ease-in-out 0.23s;
    pointer-events: all;
}

.nav-link:hover {
    color: #4d4d4d;
}

.nav-link:hover i{
    transform: translateX(-8px);
}

.nav-link.forward:hover i{
    transform: translateX(8px);
}

.nav-link i {
    width: 35px;
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}

.work-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.work-list li{
    color: #9e9e9e;
    font-size: 16px;
    text-align: left;
    font-weight: 100;
    margin-bottom: 6px;
    -moz-transition: all ease-in-out 0.23s;
    -o-transition: all ease-in-out 0.23s;
    -webkit-transition: all ease-in-out 0.23s;
    transition: all ease-in-out 0.23s;
}

.work-list li.active{
    color: #9e9e9e;
    transform: translateX(4px);
}

.work-list li:hover{
    color: #4d4d4d;
    transform: translateX(4px);
    cursor: pointer;
}


.project-card.blue {

    background-color: #0D60B5;

}

.project-card.very-blue {

    background-color: #0000FF;

}

.project-card.orange {

    background-color: #fa983a;

}

.project-card.off-white {

    background-color: #444;

}



.project-card.green {
    background-color: #00E676;
}

.project-card.l-green {
    background-color: #00B696;
}

.project-card.black {
    background-color: #17181a;
}
.project-card.tealish {
    background-color: #00d2d3;
}
.project-card.gray {
    background-color: #455A64;
}
.project-card--title {
    font-size: 36px;
    line-height: 34px;
    font-weight: 500;
    color: #4d4d4d;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.project-card--category {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.project-card--description {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,0.65);
    font-family: "Roboto Mono";
    max-width: 450px;
}
.project-card--panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background-color: #fff;
    text-align: left;
    padding-left: 60px;
    padding-right: 50px;
    padding-top: 75px;
    overflow: hidden;
    -moz-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
    -o-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
    -webkit-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
    transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.43s;
    transition-delay: .13s;
}



.project-card--panel a {
    /*position: absolute;*/
    /*bottom: 0;*/
    /*right: 0;*/
    /*left: 0;*/
    /*height: 60px;*/
    display: block;
    line-height: 60px;
    font-size: 16px;
    color: rgba(0,0,0,0.4);
    text-align: left;
    letter-spacing: 0.05em;
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
    /*background: #ececec;*/

}

.project-card--panel a.project-link:hover{
    color: rgba(0,0,0,0.65);
}

.project-card--panel a.project-link:hover i{
    transform: translateX(16px);
    color: rgba(0,0,0,0.65);
}

.project-card--panel a i{
    font-size: 18px;
    margin-top: -2px;
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
    transform: translateX(10px);
}


.project-logo {
    width: 40%;
    height: 100%;
    position: relative;

}

.project-logo .logo.large{

    transform: scale(2);

}

.project-logo .logo.larger{

    transform: scale(3);

}
.project-logo .logo.full {
    max-width: 100%;
    transform: scale(1);
}
.project-logo .logo{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 80px;
    height: auto;
    background-repeat: no-repeat;
}

.project-logo .logo.lg{
    
    max-width: 125px;
    
}
.project-intro-text--container {
    color: #4d4d4d;
    text-align: left;
}

.project-detail-title{

}

.project-detail-title p{
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    background-color: transparent;
    display: inline-block;
    margin-bottom: 0;
    /*padding: 15px 35px 15px 35px!important;*/

}

.project-detail-subtitle{

}

.project-detail-subtitle p{
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 75px;
    background-color: transparent;
    display: inline-block;
    color: #fff;
    /*padding: 15px 35px 15px 35px !important;*/
}

.project-detail-block-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 100;
    line-height: 36px;
    margin-bottom: 50px;
    padding: 35px 100px;
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
    color: rgba(0,0,0,0.55);
    /* border-left: solid 3px rgba(0,0,0,.1); */
}

.block-quote-author {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 100;
    font-family: "Mukta Mahee", "Roboto", sans-serif !important;
    color: #b5b5b5;
    font-style: italic;
}

.project-img-sm {
    max-width: 500px;
}

/*.project-detail-block-heading:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33%;
    height: 3px;
    content: '';
    background: #eb4744;
    background: #ececec;
}*/

.project-detail-block-subtitle {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #9e9e9e;
    position: relative;
    border-bottom: solid 1px rgba(0,0,0,.05);

}

.project-detail-block-subtitle span {
    border-bottom: solid 2px rgba(0,0,0,.05);

    height: 100%;
    display: inline-block;
}

.project-detail-block-subtitle.blue span {
    border-bottom: solid 2px #42A5F5;
    height: 100%;
    display: inline-block;
}

.project-detail-block-subtitle.teal span {
    border-bottom: solid 2px #26C6DA;

    height: 100%;
    display: inline-block;
}

.project-detail-block-subtitle.red span {
    border-bottom: solid 2px #ef5350;
    height: 100%;
    display: inline-block;
}

.project-detail-block-subtitle.green span {
    border-bottom: solid 2px #66BB6A;
    height: 100%;
    display: inline-block;
}

.project-detail-block-subtitle.orange span {
    border-bottom: solid 2px #FFA726;
    height: 100%;
    display: inline-block;
}

.project-detail-block-subtitle.purple span {
    border-bottom: solid 2px #7E57C2;
    height: 100%;
    display: inline-block;
}

.project-detail-block-body p{
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 50px;
}

.project-detail-block-body p span.italic{
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 50px;
    font-style: italic;
}

.block-full-width--container {
    text-align: left;

}
.block-full-width--container.ge {

    background-color: #0D60B5;
}
.block-full-width--container.innotate {

    background-color: #00E676;
}
.block-full-width--container.bgb {

    background-color: #455A64;
}
.block-full-width--container.mockstarket {

    background-color: #17181a;
}
.block-full-width--container.daily {

    background-color: #fa983a;
}

.img-logo-title {
    max-width: 420px;
    margin-bottom: 25px;
}

video { 
    width:100%;
    max-width:1024px;
    height:auto;
    margin-bottom: 50px;
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04); */
    box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04);

 }

 .portfolio-item-body video.no-buffer-top {
     margin-top: 0;
 }

 .simple-shadow {
    box-shadow: 0 3px 14px 14px rgba(0,0,0,0.04), 0 3px 16px rgba(0,0,0,0.04);
 }

.big-text {
    font-size: 48px;
    font-weight: 500;
}

img.project-img {
    width:100%;
    max-width:1024px;
    height:auto;
    margin-bottom: 50px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04);
}

img.project-img.default-style {
    box-shadow: none;
    border-radius: 0px;
}
.memorium-text {
    font-size: 14px;
    font-weight: 100;
    font-style: italic;
}

.project-end--container {
    position: relative;
    height: 200px;
    width: 100%;
}

.project-end--container .nav-link {
    color: #4d4d4d;
}

.project-start--container .nav-link {
    color: #fff;
}

.project-start--container {
    position: relative;
    height: 100px;
    width: 100%;
    margin-bottom: 25px; 
    z-index: 10;
}
.right-link-block {
    color: #4d4d4d;
    position: absolute;
    right: 0;
    top: 40%;
    text-align: right;
}
.left-link-block {
    color: #4d4d4d;
    position: absolute;
    left: 0;
    top: 40%;
    text-align: left;
}

.right-link-block .nav-link {
    

    float: none;
    text-align: right;
}
.left-link-block .nav-link{

    float: none;
    text-align: left;
}
.project-hero-container {

}



.intro-text--container.centered p{
    padding-top: 50px;
    text-align: center;
    font-size: 68px;
    /*text-transform: uppercase;*/
    font-weight: 100;
}

.card h3 {
    font-size: 48px;
    font-weight: 600;
    font-family: "Mukta Mahee", "Roboto", sans-serif !important;
    -moz-transition: all ease-in-out 0.33s;
    -o-transition: all ease-in-out 0.33s;
    -webkit-transition: all ease-in-out 0.33s;
    transition: all ease-in-out 0.33s;
}

.card h3.italic {
    font-size: 48px;
    font-weight: 100;
}

.card h3.white {
    color: #fff;
    font-weight: 100;
}

/*.card h3.h3-box {*/
    /*height: 120px;*/
    /*width: 100%;*/
    /*line-height: 120px;*/
    /*background-color: transparent;*/
    /*border: solid 2px #fff;*/
    /*color: #f6dddd;*/
/*}*/

.card h3.h3-box {
    height: 120px;
    width: 100%;
    line-height: 118px;
    background-color: transparent;
    border: solid 4px #fff;
    /* color: #a0cce3; */
    color: #fff;
    font-weight: 300;
}

.card .card-text {
    width: 100%;
    max-width: 250px;
    margin-right: auto;
    margin-left: auto;
    height: 50%;
    position: relative;
    -moz-transition: all ease-in-out 0.33s;
    -o-transition: all ease-in-out 0.33s;
    -webkit-transition: all ease-in-out 0.33s;
    transition: all ease-in-out 0.33s;
}

.card .card-text.expanded {
    width: 100%;
    max-width: 250px;
    margin-right: auto;
    margin-left: auto;
    height: 60%;
    position: relative;
}

.card .card-text.expanded h3.right{
    margin-bottom: 25px !important;
}

.card .card-text:after {
    height: 100%;
    width: 2px;
    position: absolute;
    content: '';
    background-color: #cdcdcd;
    right: 33%;
    top: 0;
}

.card .card-text h3.left {
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 58px;
    color: #4d4d4d;
    letter-spacing: 0.01em;
}

.card .card-text h3.left:after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    content: "";
    background-color: #eb4744;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: translateY(3px) scaleX(.8) skewY(6deg);
    -ms-transform: translateY(3px) scaleX(.8) skewY(6deg);
    transform: translateY(3px) scaleX(.8) skewY(6deg);
    opacity: 0;
    transition: -webkit-transform .6s cubic-bezier(.23,1,.32,1),opacity .2s cubic-bezier(.23,1,.32,1);
    transition: transform .6s cubic-bezier(.23,1,.32,1),opacity .2s cubic-bezier(.23,1,.32,1);
}

.card .card-text h3.left.active:after {
    opacity: 1;
    -webkit-transform: translateY(0px) scaleX(1) skewY(0deg);
    -ms-transform: translateY(0px) scaleX(1) skewY(0deg);
    transform: translateY(0px) scaleX(1) skewY(0deg);
}

.card .card-text h3.right {
    text-align: right;
    color: #eb4744;
    font-weight: 100;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 0px !important;
    transform: translateY(8px);
}

a.missing-corner-btn {
    display: block;
    border-top: 2px solid #eb4744;
    border-left: 2px solid #eb4744;
    height: 54px;
    width: 80%;
    max-width: 236px;
    line-height: 53px;
    margin-left: auto;
    margin-right: auto;
    color: #757575;
    text-align: center;
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 0;
    font-size: 18px;
    font-weight: 100;
    -moz-transition: background-color ease-in-out 0.13s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    -o-transition: background-color ease-in-out 0.13s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    -webkit-transition: background-color ease-in-out 0.13s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    transition: background-color ease-in-out 0.23s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    transition-delay: 0.24s;

    cursor: pointer;
}

a.missing-corner-btn.block {
    display: block;
    position: relative;
    border-top: 2px solid #eb4744;
    border-left: 2px solid #eb4744;
    height: 54px;
    width: 80%;
    max-width: 236px;
    line-height: 53px;
    margin-top: 75px;
    color: #757575;
    text-align: center;
    font-size: 18px;
    font-weight: 100;
    -moz-transition: background-color ease-in-out 0.13s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    -o-transition: background-color ease-in-out 0.13s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    -webkit-transition: background-color ease-in-out 0.13s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    transition: background-color ease-in-out 0.23s, color ease-in-out 0.13s, box-shadow 0.23s ease-in-out, transform 0.13s ease-in-out;
    transition-delay: 0.24s;
    cursor: pointer;
}

a.missing-corner-btn.white.block {
    margin-left: 0;
}

a.missing-corner-btn.white {
    color: #fff;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.missing-corner-btn.block.white {
    color: #fff;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

/* Black Button */

a.missing-corner-btn.black.block {
    margin-left: 0;
}

a.missing-corner-btn.black {
    color: #1a1a1a;
    border-top: 2px solid #1a1a1a;
    border-left: 2px solid #1a1a1a;

}

a.missing-corner-btn.block.black {
    color: #1a1a1a;
    border-top: 2px solid #1a1a1a;
    border-left: 2px solid #1a1a1a;

}

a.missing-corner-btn:after {
    height: 2px;
    background-color: #eb4744;
    width: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    -moz-transition: width ease-in-out 0.26s;
    -o-transition: width ease-in-out 0.26s;
    -webkit-transition: width ease-in-out 0.26s;
    transition: width ease-in-out 0.26s;
}

a.missing-corner-btn:before {
    height: 20%;
    background-color: #eb4744;
    width: 2px;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    -moz-transition: height ease-in-out 0.34s;
    -o-transition: height ease-in-out 0.34s;
    -webkit-transition: height ease-in-out 0.34s;
    transition: height ease-in-out 0.34s;
}

a.missing-corner-btn.white:after {
    height: 2px;
    background-color: #fff;
    width: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    -moz-transition: width ease-in-out 0.26s;
    -o-transition: width ease-in-out 0.26s;
    -webkit-transition: width ease-in-out 0.26s;
    transition: width ease-in-out 0.26s;
}

a.missing-corner-btn.white:before {
    height: 20%;
    background-color: #fff;
    width: 2px;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    -moz-transition: height ease-in-out 0.34s;
    -o-transition: height ease-in-out 0.34s;
    -webkit-transition: height ease-in-out 0.34s;
    transition: height ease-in-out 0.34s;
}

a.missing-corner-btn.block.white:after {
    height: 2px;
    background-color: #fff;
    width: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    -moz-transition: width ease-in-out 0.26s;
    -o-transition: width ease-in-out 0.26s;
    -webkit-transition: width ease-in-out 0.26s;
    transition: width ease-in-out 0.26s;
}

a.missing-corner-btn.block.white:before {
    height: 20%;
    background-color: #fff;
    width: 2px;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    -moz-transition: height ease-in-out 0.34s;
    -o-transition: height ease-in-out 0.34s;
    -webkit-transition: height ease-in-out 0.34s;
    transition: height ease-in-out 0.34s;
}

/* Black Button */

a.missing-corner-btn.white:after {
    height: 2px;
    background-color: #fff;
    width: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    -moz-transition: width ease-in-out 0.26s;
    -o-transition: width ease-in-out 0.26s;
    -webkit-transition: width ease-in-out 0.26s;
    transition: width ease-in-out 0.26s;
}

a.missing-corner-btn.white:before {
    height: 20%;
    background-color: #fff;
    width: 2px;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    -moz-transition: height ease-in-out 0.34s;
    -o-transition: height ease-in-out 0.34s;
    -webkit-transition: height ease-in-out 0.34s;
    transition: height ease-in-out 0.34s;
}

a.missing-corner-btn.block.black:after {
    height: 2px;
    background-color: #1a1a1a;
    width: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    -moz-transition: width ease-in-out 0.26s;
    -o-transition: width ease-in-out 0.26s;
    -webkit-transition: width ease-in-out 0.26s;
    transition: width ease-in-out 0.26s;
}

a.missing-corner-btn.block.black:before {
    height: 20%;
    background-color: #1a1a1a;
    width: 2px;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    -moz-transition: height ease-in-out 0.34s;
    -o-transition: height ease-in-out 0.34s;
    -webkit-transition: height ease-in-out 0.34s;
    transition: height ease-in-out 0.34s;
}

a.missing-corner-btn:hover {
    background-color: #eb4744;
    color: #fff;
    box-shadow: 0 13px 15px rgba(0,0,0,0.1), 0 3px 5px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}





a.missing-corner-btn.white:hover {
    background-color: #fff;
    color: #757575;
    box-shadow: 0 13px 15px rgba(0,0,0,0.1), 0 3px 5px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

a.missing-corner-btn.block.white:hover {
    background-color: #fff;
    color: #757575;
    box-shadow: 0 13px 15px rgba(0,0,0,0.1), 0 3px 5px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* Black Button */

a.missing-corner-btn.black:hover {
    background-color: #1a1a1a;
    color: #fff;
    box-shadow: 0 13px 15px rgba(0,0,0,0.1), 0 3px 5px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

a.missing-corner-btn.block.black:hover {
    background-color: #1a1a1a;
    color: #fff;
    box-shadow: 0 13px 15px rgba(0,0,0,0.1), 0 3px 5px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

a.missing-corner-btn:hover:after {
    width: 100%;
}

a.missing-corner-btn:hover:before {
    height: 100%;
}

a.missing-corner-btn.block.white:hover:after {
    width: 100%;
}

a.missing-corner-btn.block.white:hover:before {
    height: 100%;
}

/* Black Button */

a.missing-corner-btn.block.black:hover:after {
    width: 100%;
}

a.missing-corner-btn.block.black:hover:before {
    height: 100%;
}

/*.card a.missing-corner-btn:hover .card-text{*/
    /*height: 80% !important;*/
/*}*/

.intro-text--container p .intro-text-line{
    font-size: 28px;
    font-weight: 100;
    text-align: left;
    color: #fff;
    opacity: 0;
}

.intro-text--container .intro-text-line{
    font-size: 28px;
    font-weight: 100;
    text-align: left;
    color: #fff;
}

.intro-text--container p.portfolio-item{
    font-size: 22px;
    font-weight: 100;
    max-width: 700px;
    text-align: left;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
    opacity: 0;
}

.intro-text-line span{
    font-weight: 500;
}

.intro-text--container p span.big{
    font-weight: 700;
    font-size: 48px;
}

.intro-text--container a{
    color: #eb4744;
}

.down-arrow {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}
.down-arrow:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    height: 3px;
    width: 19px;
    content: "";
    transform: rotate(-45deg) translateX(8px);
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}
.down-arrow:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    height: 3px;
    width: 19px;
    content: "";
    transform: rotate(45deg) translateX(-10px);
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}



/*   CHAT STUFF   */

#chat-module--container {
    position: fixed;
    bottom: 0;
    right: 75px;
    z-index: 6;
    height: 400px;
    width: 320px;
    background-color: #fff;
    -webkit-box-shadow: 0px -4px 23px 2px rgba(0,0,0,0.18);
    -moz-box-shadow: 0px -4px 23px 2px rgba(0,0,0,0.18);
    box-shadow: 0px -4px 23px 2px rgba(0,0,0,0.18);
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    transform: rotate(-15deg) translateY(-300px) translateX(-25px);
}

#chat-module--container.closed {
    bottom: -360px;
}

#chat-module--container .chat-title-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 40px;
    text-align: left;
    box-shadow: 0 13px 15px rgba(0,0,0,0.001), 0 3px 5px rgba(0,0,0,0.05);
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}

#chat-module--container .chat-title-bar:hover {
    background-color: #f7f7f7;


}



#chat-module--container textarea{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    background-color: #fff;
    height: 40px;
    width: 100%;
    line-height: 18px;
    letter-spacing: 0.07em;
    color: #424242;
    text-align: left;
    resize: none;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 12px;
}

#chat-module--container .chat-title-bar button{
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 280px;
    background-color: transparent;
    border: none;
    z-index: 6;
}

#chat-module--container .chat-title-bar:after {
    position: absolute;
    top: 18px;
    right: 15px;
    background-color: #BDC3C7;
    height: 3px;
    width: 19px;
    content: "";
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}

#chat-module--container.closed .chat-title-bar:before {
    position: absolute;
    top: 18px;
    right: 15px;
    background-color: #BDC3C7;
    height: 3px;
    width: 19px;
    content: "";
    transform: rotate(-90deg);
    -moz-transition: all ease-in-out 0.13s;
    -o-transition: all ease-in-out 0.13s;
    -webkit-transition: all ease-in-out 0.13s;
    transition: all ease-in-out 0.13s;
}

#chat-module--container .chat-title-bar:before {
    position: absolute;
    top: 18px;
    right: 15px;
    background-color: #BDC3C7;
    height: 3px;
    width: 19px;
    content: "";
    transform: rotate(0deg);
    -moz-transition: all cubic-bezier(.23,1,.32,1) 0.9s;
    -o-transition: all cubic-bezier(.23,1,.32,1) 0.9s;
    -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.9s;
    transition: all cubic-bezier(.23,1,.32,1) 0.9s;
}

#chat-module--container .chat-title-bar span{
    position: relative;
    height: 40px;
    width: 100%;
    padding-left: 15px;
    line-height: 40px;
    color: #4d4d4d;
    letter-spacing: 0.1em;
    text-align: left;
}

#chat-module--container .chat-title-bar span:after{
    content: "";
    position: absolute;
    top: 8px;
    right: -15px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: red;
    box-shadow: 0px 0px 15px 2px rgba(239,72,54,0.3);
}

#chat-module--container .chat-message--list {
    list-style-type: none;
    height: 100%;
    width: 100%;
    background-color: transparent;
    overflow-y: scroll;
    padding: 55px 15px 35px 15px;
    -moz-transition: all ease-in-out 0.17s;
    -o-transition: all ease-in-out 0.17s;
    -webkit-transition: all ease-in-out 0.17s;
    transition: all ease-in-out 0.17s;
    text-align: left;
}

#chat-module--container .chat-message--list::-webkit-scrollbar {
    width: 0 !important;
}

#chat-module--container .chat-message--list li{

    margin-bottom: 2px;
    -webkit-animation: fadein .2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein .2s; /* Firefox < 16 */
    -ms-animation: fadein .2s; /* Internet Explorer */
    -o-animation: fadein .2s; /* Opera < 12.1 */
    animation: fadein .2s;
}

#chat-module--container .chat-message--list .msg-text{
    width: auto;
    display: inline-block;
    background-color: rgba(206,206,206,0.50);
    color: #000;
    margin: 0 0 .125rem 0;
    padding: .5rem .85rem;
    line-height: 1.25rem;
    border-radius: 1.25rem;
}

#chat-module--container .chat-message--list .msg-timestamp,
#chat-module--container .chat-message--list .msg-username {
    background-color: transparent;

    text-align: left;
}

#chat-module--container .chat-message--list .msg-username{
    color: #9E9E9E;
    font-size: 16px;
}

#chat-module--container .chat-message--list .msg-username.is-me{
    color: #FF5722;
    font-size: 16px;
}

#chat-module--container .chat-message--list .msg-timestamp {
    color: #73E7CE;
    float: right;
    font-size: 10px;
}

/*   ANIMATIONS   */

.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
    }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}


/* MEDIA QUERIES */

/* Large Devices, Wide Screens */
@media only screen and (max-width : 2000px) {
    h1.portfolio-section-title.big-buffer-top {
        padding-top: 150px;
    }

    h1.portfolio-section-title.bigger-buffer-top {
        padding-top: 250px;
    }
    .ui-item.shifted-left {
        margin-left: -100px !important;
    }
}

@media only screen and (max-width : 1200px) {
    
    .profile-card-container {
        right: 0px !important;
    }
    .ui-item.shifted-left {
        margin-left: 0px !important;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .project-card--panel {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60%;
        background-color: #fff;
        text-align: left;
        padding-left: 60px;
        padding-right: 50px;
        padding-top: 55px;
    }
    .ui-item.shifted-left {
        margin-left: 0px !important;
    }
    
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    #main-content--container {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        padding-left: 35px;
        padding-right: 35px;
        padding-top: 35px;
        z-index: 3;
        /* background-color: #F0FAFF; */
        background-color: transparent;
    }
    .project-card--panel {
        position: absolute;
        right: 0;
        top: 140px;
        left: 0;
        bottom: 0px !important;
        height: auto;
        width: 100%;
        background-color: #fff;
        text-align: left;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 25px;
        padding-bottom: 25px;
        /* overflow: hidden; */
        -moz-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
        -o-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
        -webkit-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
        transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.43s;
        transition-delay: .13s;
    }
    .project-card {
        width: 100%;
        background-color: #fff;
        height: 450px;
        margin-bottom: 50px;
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        /* box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04); */
        box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
    }
    .project-logo .logo.lg {
        max-width: 75px;
    }
    .project-logo .logo.large {
        transform: scale(1.1);
    }
    .project-logo .logo.small {
        max-width: 25px;
    }
    .project-logo {
        width: 100%;
        height: 135px;
        position: relative;
    }
    .project-card--category {
        font-size: 14px;
        font-weight: 500;
        color: #999;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    .project-card--description {
        font-size: 12px;
        font-weight: 300;
        color: #4d4d4d;
        font-family: "Roboto Mono";
        max-width: 450px;
    }
    .project-card--title {
        font-size: 21px;
        line-height: 34px;
        font-weight: 500;
        color: #4d4d4d;
        text-transform: uppercase;
        margin-bottom: 0px;
    }
    .ui-item.shifted-left {
        margin-left: 0px !important;
    }
    
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    #main-content--container {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        padding-left: 35px;
        padding-right: 35px;
        padding-top: 35px;
        z-index: 3;
        /* background-color: #F0FAFF; */
        background-color: transparent;
    }
    .project-card--panel {
        position: absolute;
        right: 0;
        top: 140px;
        left: 0;
        bottom: 0px !important;
        height: auto;
        width: 100%;
        background-color: #fff;
        text-align: left;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 25px;
        padding-bottom: 25px;
        /* overflow: hidden; */
        -moz-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
        -o-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
        -webkit-transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.23s;
        transition: all cubic-bezier(0.86, 0, 0.07, 1) 0.43s;
        transition-delay: .13s;
    }
    .project-card {
        width: 100%;
        background-color: #fff;
        height: 450px;
        margin-bottom: 50px;
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        /* box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04); */
        box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
    }
    .project-logo .logo.lg {
        max-width: 75px;
    }
    .project-logo .logo.large {
        transform: scale(1.1);
    }
    .project-logo .logo.small {
        max-width: 25px;
    }
    .project-logo {
        width: 100%;
        height: 135px;
        position: relative;
    }
    .project-card--category {
        font-size: 14px;
        font-weight: 500;
        color: #999;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    .project-card--description {
        font-size: 12px;
        font-weight: 300;
        color: #4d4d4d;
        font-family: "Roboto Mono";
        max-width: 450px;
    }
    .project-card--title {
        font-size: 21px;
        line-height: 34px;
        font-weight: 500;
        color: #4d4d4d;
        text-transform: uppercase;
        margin-bottom: 0px;
    }
    p.about-text {
        font-size: 14px;
        color: #4d4d4d;
        /* letter-spacing: 0.06px; */
        line-height: 24px;
        font-weight: 100;
        text-align: left;
        max-width: 100%;
        margin: 0 auto 25px auto;
    }
    .location-info {
        font-size: 16px;
        color: rgba(0,0,0,0.4);
        text-align: center;
        text-transform: uppercase;
        margin-top: 0px;
        margin-bottom: 35px;
    }
    .intro-text--container .intro-text-line {
        font-size: 15px;
        font-weight: 100;
        text-align: left;
        color: #fff;
    }
    h1.section-title.work {
        font-weight: 900;
        font-size: 54px;
        color: #FFFFFF;
        letter-spacing: 6.6px;
        padding: 40px 0;
        text-shadow: 1px 1px 14px rgba(0,0,0,0.03);
        margin-top: 0 !important;
    }
    h1.section-title.about {
        font-weight: 900;
        font-size: 36px;
        color: #4d4d4d;
        letter-spacing: 2.6px;
        padding-top: 40px;
        text-shadow: 1px 1px 14px rgba(0,0,0,0.03);
        padding-bottom: 40px;
    }
    .menu-btn {
        padding: 0;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10;
        height: 55px;
        width: 55px;
        opacity: 0;
        pointer-events: none;
        background-color: #fff;
        /* padding-right: 30px; */
        line-height: 60px;
        color: #617D8A;
        cursor: pointer;
        border: none;
        border-radius: 50px;
        box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
        -moz-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
        -o-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
        -webkit-transition: all cubic-bezier(.23,1,.32,1) 0.7s;
        transition: all cubic-bezier(.23,1,.32,1) 0.7s;
    }
    h2.portfolio-item-title {
        font-weight: 900;
        font-size: 38px;
        color: #fff;
        letter-spacing: 6.6px;
        opacity: 0;
        /* text-shadow: 1px 1px 14px rgba(0,0,0,0.03); */
        padding-bottom: 0px;
        margin-bottom: 10px;
        text-align: left;
    }
    .project-start--container {
        position: relative;
        height: 65px;
        width: 100%;
        margin-bottom: 0px;
        z-index: 10;
    }
    .menu-btn:hover .bars .bar-wrapper span {
        width: 22px;
        opacity: 1;
    }
    .project-detail-block-quote {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        font-weight: 100;
        line-height: 26px;
        margin-bottom: 50px;
        padding: 35px 0px;
        text-align: center;
        position: relative;
        letter-spacing: -0.01em;
        color: rgba(0,0,0,0.55);
        /* border-left: solid 3px rgba(0,0,0,.1); */
    }
    h1.portfolio-section-title {
        font-weight: 900;
        font-size: 28px;
        color: #4d4d4d;
        letter-spacing: 2.6px;
        /* text-shadow: 1px 1px 14px rgba(0,0,0,0.03); */
        padding-bottom: 25px;
        padding-top: 25px;
        text-align: left;
    }
    .intro-text--container p.portfolio-item {
        font-size: 18px;
        font-weight: 100;
        max-width: 700px;
        text-align: left;
        color: #fff;
        margin-bottom: 50px;
        letter-spacing: 0.02em;
        opacity: 0;
    }
    .portfolio-item-body p {
        font-size: 13px;
        font-weight: 300;
        line-height: 24px;
        color: #4d4d4d;
        font-family: "Roboto Mono";
        text-align: left;
        padding-top: 0px;
    }
    .portfolio-item-info-list {
        list-style-type: none;
        display: block;
        text-align: left;
        padding-left: 0;
        padding-top: 15px;
        padding-bottom: 10px;
        opacity: 0;
    }
    .portfolio-sub-section {
        font-size: 16px;
        color: rgba(0,0,0,0.6);
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.04em;
        margin-top: 25px;
    }
    .bigger-text {
        font-size: 28px;
        font-family: 'Roboto', serif;
    }
    .portfolio-item-body img {
        margin-top: 15px;
        border-radius: 5px;
    }
    .project-end--container {
        position: relative;
        height: 150px;
        width: 100%;
    }
    .right-link-block .nav-link, .left-link-block .nav-link {
        font-size: 14px
    }
    .nav-link i {
        font-size: 20px;
    }
    .portfolio-item-body video {
        margin-top: 15px;
        border-radius: 5px;
    }
    p.img-subtitle.shift-up {
        text-align: center;
        width: 100%;
        margin-top: -50px;
        margin-bottom: 35px;
    }
    p.img-subtitle {
        font-size: 12px;
        line-height: 18px;
    }
    .ui-item.vertical {
        flex: 1 0 16%;
        margin-left: 8px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .ui-item.vertical .ui-mask {
        margin-bottom: 10px;
    }
    .ui-mask {
        display: block;
        border-radius: 2px;
        overflow: hidden;
        box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 3px 6px rgba(0,0,0,0.04);
        transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .ui-item.vertical.shift-down {
        transform: translateY(35px);
    }
    .ui-item {
        margin-left: 10px;
        
    }
    .project-card.portfolio-item {
        padding: 25px;
        text-align: left;
        height: auto;
    }
    .portfolio-item-body ol li, .portfolio-item-body ul li {
        margin-bottom: 10px;
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        color: #4d4d4d;
        font-family: "Roboto Mono";
    }
    .portfolio-item-body ul, .portfolio-item-body ol {
        color: #4d4d4d;
        margin-top: 25px;
        margin-bottom: 15px;
        text-align: left;
        padding-left: 25px;
    }
    .view-img-btn {
        transform: scale3d(0.7,0.7,1);
    }

    .rounded-img {
        height: 175px;
        width: 175px;
    }
    .copyright {
        font-size: 12px;
    }
    .project-logo .logo.larger {
        transform: scale(2);
    }
    .ui-item.shifted-left {
        margin-left: 0px !important;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
    .ui-item.shifted-left {
        margin-left: 0px !important;
    }
}

@keyframes fadein {
    from { opacity: 0; transform: translateX(-5px) scaleY(.8);}
    to   { opacity: 1; transform: translateX(0px) scaleY(1);}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; transform: translateX(-5px) scaleY(.8);}
    to   { opacity: 1; transform: translateX(0px) scaleY(1);}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; transform: translateX(-5px) scaleY(.8);}
    to   { opacity: 1; transform: translateX(0px) scaleY(1);}
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; transform: translateX(-5px) scaleY(.8);}
    to   { opacity: 1; transform: translateX(0px) scaleY(1);}
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; transform: translateX(-5px) scaleY(.8);}
    to   { opacity: 1; transform: translateX(0px) scaleY(1);}
}

@keyframes wave {
    from { transform: rotate(-15deg);}
    to   { transform: rotate(15deg);}
}


