@import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700');

.long-form {

    width: 100%;
    box-sizing: border-box;
}

/* demo purpose */
.start {
    text-align: center;
    font-size: 40px;
    text-decoration: underline;
    color: blue;
    text-transform: uppercase;
    cursor: pointer;
}

/* general
==================================================*/

.break {
    height: 20em;
    position: absolute;
    margin: 0 auto;
    background: white;
    z-index: 2000;
}

html,
body {
    color: #999;
    position: block;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-size: cover;
}

page-wrapper {
    position: fixed;
    background-size: cover;
}

hr {
    border-top-color: #555;
    color: #555;
    margin-top: 1em;
    height: .04em;
    width: 50%;
}

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

.no-padding [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.main-container {
    padding: 0;
    width: 50vw;
    margin: 0 auto;
}

.color {
    color: #ffbf00;
    font-size: 11px;
}

.hero {
    padding-top: 2em;
    padding-bottom: 2em;
    margin: 0 auto;
    justify-content: center;
    position: relative;
}

.zoomable:hover {
    cursor: zoom-in;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
    cursor: pointer;
}

#overlay-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1em;
    color: white;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 100
}



/* typography
==================================================*/

h1 {
    color: #555;
    font-family: "Didot", serif !important;
    font-size: 2em;
    font-weight: 500;
    letter-spacing: .2em;
    line-height: 2em;
    text-transform: uppercase;
    text-align: center;
}

h2 {
    font-family: "Didot", serif !important;
    font-size: 2em;
    color: #888;
    font-weight: 100;
    letter-spacing: .2em;
    text-transform: uppercase;
}

h3 {
    font-family: "Didot", serif !important;
    font-size: 1.5em;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    letter-spacing: .2em;
}

h4 {
    font-family: "Didot", serif !important;
    font-size: 2em;
    color: #888;
    font-weight: 100;
    letter-spacing: .5em;
    line-height: 1.3em;
    text-align: center;
    text-transform: uppercase;
}

h5 {
    color: #888;
    font-family: "Didot", serif !important;
    font-size: 1.2em;
    font-weight: 200;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;


    @media (min-width: 768px) and (max-width: 1220px) {
        font-size: 1em;
        letter-spacing: .1em;
    }
}

h6 {
    font-family: "Didot", serif !important;
    font-size: 1.8em;
    color: #888;
    font-weight: 100;
    letter-spacing: .5em;
    line-height: 1.3em;
    text-align: center;
    text-transform: uppercase;
}



h1:hover,
h2:hover,
h3:hover,
h4:hover {
    cursor: default;

}

a {
    color: #777;
    font-family: 'Raleway', sans-serif !important;
    font-size: 1em !important;
    font-weight: 300;
    letter-spacing: .2em !important;
    line-height: 2em;
    text-decoration: none;
}

b {
    font-weight: 600;
}

i {
    font-style: italic;
}

p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1em;
    letter-spacing: .2em !important;
    font-weight: 300;
    line-height: 2em;
    text-decoration: none !important;
}

p:hover {
    cursor: default !important;
}

photodetail {
    font-family: 'Raleway', sans-serif !important;
    font-size: .8em;
    letter-spacing: .2em !important;
    font-weight: 600;
    line-height: 2em;
    text-decoration: none;
}

strong {
    font-weight: 700;
}



/* preloader
==================================================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    /* change if the mask should be a color other than white */
    z-index: 1000;
    /* makes sure it stays on top */
}

.pre-container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffbf00;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/* landing
==================================================*/

.dojang {
    position: relative;
    top: -9rem;
    width: 9rem;
    z-index: 2;
    right: 4rem;
}

.main-image {
    background: no-repeat;
    margin: 0 auto;
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.start-page {
    position: 1;
    margin: 0 auto;
    height: 100vh;
    background: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-bottom: 4em;
    z-index: 1;
}

.start-page hr {
    border-top-color: #555;
    color: #555;
    margin-top: 1em;
    height: .04em;
    width: 40%;
}

.start-page .lockup {
    width: 75%;
    margin: 0 auto;
    position: relative;
    top: 40%;
    text-align: center;
    height: 100%;
}

.start-page .logo {
    vertical-align: baseline;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding-top: .7em;
}

.start-page .arrow-down {
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 21px;
    height: 29px;
    background: url(../img/arrow-down.png) no-repeat center center;
    display: block;
    transition: all 0.6s ease-in;
    animation: bounce-fade 1.5s infinite;
    z-index: 10;
}

.arrow-down:hover {
    cursor: s-resize;
}

@-webkit-keyframes bounce-fade {
    0% {
        opacity: 0;
        bottom: 15%;
    }

    100% {
        opacity: 1;
        bottom: 10%;
    }
}

@-moz-keyframes bounce-fade {
    0% {
        opacity: 10;
        bottom: 5%;
    }

    100% {
        opacity: 1;
        bottom: 10%;
    }
}

@-o-keyframes bounce-fade {
    0% {
        opacity: 0;
        bottom: 15%;
    }

    100% {
        opacity: 1;
        bottom: 10%;
    }
}

@keyframes bounce-fade {
    0% {
        opacity: 0;
        bottom: 15%;
    }

    100% {
        opacity: 1;
        bottom: 10%;
    }
}


/* modules
==================================================*/

.menu-overlay {
    background-color: #fff;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 50;
    opacity: 1;
}

section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    height: auto;
    display: block;
    position: relative;
    margin: 20rem 0;
}

.container {
    width: 100vw;
    position: relative;
    z-index: 5;
    margin: 0 auto;
    background: #fff;
    padding: 4rem 0;
}

.text-content {
    width: 80%;
    margin: 0 auto;
    max-width: 50%;
}

.contents {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    display: table;
}

.container h1 {
    font-size: 2em;
    letter-spacing: .2em;
    text-align: center;
    line-height: 1em;
}

.container p {
    color: #888;
    font-weight: 400;
    letter-spacing: 3em;
    line-height: 2em;
    padding-top: 1em
}

/* navigation
==================================================*/

.navigation-menu {
    columns: 3;
    width: 80%;
    flex-direction: row;
    margin: 0 auto;
    align-items: top;
    text-align: center;
    align-content: center;
    justify-content: center;
    max-width: 50%;
}

.navigation-menu li {
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
}

.navigation-menu li:hover,
.navigation-menu li a:hover {
    color: #006e85;
    cursor: s-resize;
    text-decoration: none;
}

.navigation-menu li p {
    width: 30%;
    font-size: 1em;
    line-height: 1.5em;
    display: table-row;
    text-align: center;
    align-content: center;
    justify-content: center;


}

.menu-column {
    padding: 5%;
    justify-content: top;
}

.navigation-menu li.active a {
    color: #006e85;
    z-index: 100;
}

.navigation-menu .column-four p a:hover {
    cursor: ne-resize;
}

/* columns 
==================================================*/

.circle-one,
.circle-three {
    border: 2px solid #f0f0f0;
    cursor: s-resize;
    -moz-border-radius: 7em;
    -webkit-border-radius: 7em;
    border-radius: 100px;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    margin-bottom: 40px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in
}

.circle-two {
    cursor: default;
    -moz-border-radius: 7em;
    -webkit-border-radius: 7em;
    border-radius: 100px;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.circle-one {
    background: url(/../img/1.jpg) white no-repeat center center;
}

.circle-two {
    background: url(/../img/2.jpg) white no-repeat center center;
}

.circle-three {
    background: url(/../img/3.jpg) white no-repeat center center;
}


.circle-one:hover,
.circle-three:hover {
    border: 2px solid #006e85;
}

/* menu
==================================================*/

.menu {
    display: inline-table;
    position: absolute;
    background-color: #fff;
    border-bottom-width: 1px;
    border-bottom-color: #999;
    height: 3.5em;
    margin: 0 auto;
    opacity: .9;
    padding-top: 1.5em;
    width: 100%;
    z-index: 1000;
}

.menu .quarter-columns {
    display: inline-table;
    width: 100%;
    text-align: center;
}

.menu .quarter-columns .links {
    width: 80%;
    margin: 0 auto;
}

.menu .quarter-columns .links li a {
    cursor: s-resize;
    font-family: "Didot", sans-serif !important;
    font-weight: 200;
    font-size: 2em;
    letter-spacing: .3em;
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
}

.menu .quarter-columns .links li a:hover {
    cursor: s-resize;
    color: #006e85;

}

.menu .quarter-columns .links a {
    color: #006e85;
}


/* portfolio section
==================================================*/
.portfolio .categories-grid span {
    font-size: 2em;
    margin-bottom: 2empx;
    display: inline-block;
}

.portfolio .categories-grid .categories ul li {
    list-style: none;
    margin: 1.5em 0;
}

.portfolio .categories-grid .categories ul li a {
    display: inline-block;
    color: #60606e;
    padding: 0 10px;
    margin: 0 10px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio .categories-grid .categories ul li a:hover,
.portfolio .categories-grid .categories ul li a:focus {
    text-decoration: none;
}

.portfolio .categories-grid .categories ul li a.active {
    margin-left: 0;
    background-color: #006e85;
    padding: 0px 20px;
    color: white;
    border-radius: 1em;
    text-decoration: none;
}

.portfolio_filter {
    padding-left: 0;
}

.portfolio_item {
    position: relative;
    overflow: hidden;
    display: block;
}

.portfolio_item .portfolio_item_hover {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .8);
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.portfolio_item .portfolio_item_hover .item_info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 100%;
    font-weight: 500;
}

.portfolio_item .portfolio_item_hover .item_info span {
    display: block;
    color: #fff;
    font-size: 18px;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
    opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em {
    font-style: normal;
    display: inline-block;
    background-color: #006e85;
    padding: 5px 20px;
    border-radius: 25px;
    color: #fff;
    margin-top: 10px;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
    font-size: 10px;
    letter-spacing: 2px;
}

.portfolio_item:hover .portfolio_item_hover {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio .categories-grid .categories ul li {
    float: left;
}

.portfolio .categories-grid .categories ul li a {
    padding: 0 10px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio_filter {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-inner {
    padding-bottom: 0 !important;
    padding-top: 55px;
    margin: 0 auto;
}

/* top bar for bio
==================================================*/

.top-bar {
    color: #333;
    padding: 150px 0 150px;
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(../img/01.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar-blank {
    color: #333;
    padding: 150px 0 150px;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar h1 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    line-height: 50px;
}

.top-bar p {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #777;
}

.top-bar p a {
    color: #777;
}

.top-bar p a:hover,
.top-bar p a:focus {
    color: #555;
    text-decoration: none;
}


/* project page back-button dropdown
==================================================*/

.back-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    height: 50px;
    width: 100%;
    z-index: 3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.back-dropdown {
    height: 80px;
    background: transparent;
    box-shadow: none;
}

.back-dropdown {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.back-dropdown.is-fixed {
    position: fixed;
    top: -80px;
    background-color: rgba(255, 255, 255, 0.96);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.back-dropdown.is-visible {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.back-dropdown.menu-is-open {
    background-color: rgba(255, 255, 255, 0.96);
}

.back-button {
    display: block;
    padding: 20px;
}


/* services if when i freelance
==================================================*/

.size-50 {
    font-size: 50px;
}

.service-box {
    margin-bottom: 30px;
}

.service-box h3 {
    margin-top: 0;
}


/* contact
==================================================*/
.link {
    font-weight: 700;

}

.details-text i {
    margin-right: 10px;
}

.textarea-contact {
    height: 200px;
    width: 100%;
    border: solid 1px rgba(0, 0, 0, .1);
    position: relative;
}

.textarea-contact textarea {
    height: 100%;
    width: 100%;
    border: 0;
    padding: 20px;
    background-color: transparent;
    float: left;
    z-index: 2;
    font-size: 14px;
    color: #9a9a9a;
    resize: none;
}

.textarea-contact>span {
    position: absolute;
    top: 20px;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    text-transform: uppercase;
    color: #cdcdcd;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    z-index: 1;
}

.input-contact {
    height: 40px;
    width: 100%;
    border: solid 1px rgba(0, 0, 0, .1);
    position: relative;
    margin-bottom: 30px;
}

.input-contact input[type="text"] {
    height: 100%;
    width: 100%;
    border: 0;
    padding: 0 20px;
    float: left;
    position: relative;
    background-color: transparent;
    z-index: 2;
    font-size: 14px;
    color: #9a9a9a;
}

.input-contact>span {
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    text-transform: uppercase;
    color: #cdcdcd;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    z-index: 1;
}

.input-contact>span.active,
.textarea-contact>span.active {
    color: #ffbf00;
    font-size: 10px;
    top: 0px;
    left: 5px;
    background-color: #fff;
    padding: 5px
}

input:focus,
textarea:focus {
    outline: none;
}

.contact-info {
    margin-top: 20px;
}

.contact-info i {
    height: 30px;
    width: 30px;
    display: inline-block;
    background: #ffbf00;
    text-align: center;
    line-height: 33px;
    margin-right: 10px;
    color: #fff;
    font-size: 21px;
}

.contact-info p {
    display: inline-block;
    margin-right: 20px;
}

.btn-box {
    background: #ffbf00;
    padding: 10px 50px;
    border-radius: 0;
    color: #fff;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-box:hover,
.btn-box:focus {
    background: #F5B700;
    color: #fff;
}


/* project page
==================================================*/
.project .content {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

.cat-ul {
    padding-left: 0;
    list-style: none
}

.cat-ul li i {
    margin-right: 10px;
    color: #ffbf00;
}

/* footer
==================================================*/

.footer {
    z-index: 100;
    color: #FFF;
    padding-top: 2rem;
    bottom: 0;
    text-align: center;
    width: 100%;
    position: relative;
    font-size: 12px;
}

/* page breaks
==================================================*/

@media (min-width: 768px) and (max-width: 1900px) {
    h2 {
        font-size: 1.6em;
        line-height: 1.5em;
    }

    h4 {
        font-size: 2em;
    }

}

@media (min-width: 500px) and (max-width: 767px) {
    h2 {
        font-size: 1.6em;
        line-height: 1.5em;
    }

    h4 {
        font-size: 1.8em;
    }

    .main-container {
        padding: 10% 0;
    }

    p {
        font-size: .8em;
    }

    .container p {
        font-size: 1em;
        line-height: 1.5em;
    }
}

@media (min-width: 320px) and (max-width: 500px) {
    h2 {
        font-size: 1.6em;
        line-height: 1.4em;
    }

    h4 {
        font-size: 1.4em;
        line-height: 1.3em;
    }

    h5 {
        font-size: 1em;
        line-height: 1.5em;
        margin: 0 2em;
        padding-bottom: 1em
    }

    .main-container {
        padding: 2% 0;
    }

    p {
        font-size: .7em;
    }
}