* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    list-style: none;
}

body {
    color: #00000a;
    line-height: 1.3;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden !important;
}

p {
    font-size: 14px;
    font-weight: 500;
    color: #949494;
    line-height: 1.5;
    word-spacing: 1px;
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}

img.only {
    position: absolute;
    margin: -250px 0;
    z-index: 3;
}

.container.with-work {
    position: relative;
    min-height: 250px;
}

span, a, a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.se-tring {
    position: relative;
    margin-top: 100px;
}

.se-tring span {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
}

.se-tring .left {
    border-bottom: 100px solid #fff;
    border-right: 30vw solid transparent;
    left: 0;
}

.se-tring .right {
    border-bottom: 100px solid #fff;
    border-left: 70vw solid transparent;
    right: 0;
}

.se-tring-gray .left, .se-tring-gray .right {
    border-bottom: 100px solid #f7f7f7;
}

.se-tring-gray2 .left, .se-tring-gray2 .right {
    border-bottom: 100px solid #a4b4c4;
}

.se-tring-black .left, .se-tring-black .right {
    border-bottom: 100px solid #111;
}

.se-tring-rev .left {
    border-right: 70vw solid transparent;
}

.se-tring-rev .right {
    border-left: 30vw solid transparent;
}

.hide {
    display: none;
}

.section-padding {
    padding: 100px 0;
}

.section-head {
    margin-bottom: 80px;
}

.section-head h6 {
    font-size: 11px;
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 1px;
    display: inline-block;
    padding: 0 15px;
    position: relative;
}

.section-head h6:before, .section-head h6:after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #000;
    position: absolute;
    bottom: 3px;
}

.section-head h6:before {
    left: -50px;
}

.section-head h6:after {
    right: -50px;
}

.section-head h4 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 4px;
    line-height: .7;
    position: relative;
    margin-bottom: 15px;
    color: #97000a;
}

.bg-gray {
    background: #f7f7f7;
}

.bg-gray2 {
    background: #a4b4c4;
}

.o-hidden {
    overflow: hidden;
}

.position-re {
    position: relative;
}

.full-width {
    width: 100% !important;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 15px;
    line-height: .7;
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 7px;
    border-radius: 50%;
    background: #ccc;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
}

.cd-headline {
    font-size: 3rem;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    .cd-headline {
        font-size: 4.4rem;
        font-weight: 300;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-headline {
        font-size: 6rem;
    }
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

/* -------------------------------- 
	xclip 
-------------------------------- */
.cd-headline.clip span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
    /* line */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #aebcb9;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline.clip b.is-visible {
    opacity: 1;
}

/* -------------------------------- 
	bounce animation 
-------------------------------- */
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

/* IE Custom Style */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .header .svg {
        bottom: -40px !important;
    }

    .header .container {
        position: absolute;
        max-width: 100%;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
    }
}

.butn {
    padding: 10px 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    margin: 30px 2px 0;
    animation-delay: 1.2s;
}

.butn:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: #fff;
    transition: all 0.3s ease;
}

.butn:hover {
    border-color: #fff;
}

.butn:hover:after {
    width: 100%;
    left: 0;
    transition: width 0.3s ease;
}

.butn:hover span {
    color: #1c1c1c;
}

.butn span {
    position: relative;
    z-index: 2;
}

.butn-bg {
    background: #1c1c1c;
    border-color: #1c1c1c;
    color: #fff;
}

.butn-bord:after {
    background: #1c1c1c;
}

.butn-bord:hover {
    border-color: #1c1c1c;
}

.butn-bord:hover span {
    color: #fff;
}

.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9;
    min-height: 80px;
}

.navbar .icon-bar {
    color: #fff;
}

.navbar .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #eee;
    letter-spacing: .5px;
    margin: 15px 5px;
    transition: all .5s;
    position: relative;
}

.navbar .navbar-nav .nav-link:after {
    content: '';
    width: 80%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 10%;
    bottom: -10px;
    opacity: 0;
    transition: all .5s;
}

.navbar .navbar-nav .active:after {
    bottom: 0;
    opacity: 1;
}

.nav-scroll {
    background: #fff;
    border-bottom: 1px solid rgba(12, 12, 12, 0.04);
    padding: 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    transition: transform .5s;
    transform: translateY(100px);
}

.nav-scroll .icon-bar {
    color: #222;
}

.nav-scroll .navbar-nav .nav-link {
    color: #222;
}

.nav-scroll .navbar-nav .nav-link:after {
    background: #222;
}

.nav-scroll .logo {
    padding: 15px 0;
    color: #111;
}

.nav-scroll .logo:hover {
    color: #111;
}

.logo {
    padding: 15px 0;
    width: 100px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo:hover {
    color: #fff;
}

.header {
    min-height: 95vh;
    overflow: hidden;
    position: relative;
}

.header .caption .o-hidden {
    display: inline-block;
}

.header .caption h1 {
    font-size: 55px;
    font-weight: 800;
}

.header .arrow {
    position: absolute;
    bottom: 8vh;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.header .arrow img {
    width: 40px;
    cursor: pointer;
}

.header .svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.header .svg svg {
    fill: #f7f7f7;
    width: 101%;
}

.hero {
    background: #f7f7f7;
}

.hero .author-img {
    position: relative;
}

.hero .author-img:after {
    content: '';
    width: 100%;
    height: 100%;
    border: 10px dashed #f7f7f7;
    position: absolute;
    top: 30px;
    right: -30px;
    z-index: -1;
}

.hero .author-img img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero .content {
    padding-left: 50px;
}

.hero .content h4 {
    margin-bottom: 10px;
}

.hero .content span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.hero .content p {
    margin-bottom: 10px;
}

.hero .content p.quote {
    line-height: 1.3;
    word-spacing: 1px;
    margin-top: 2em;
    margin-bottom: 2em;
}

.hero .content p:last-child {
    margin-bottom: 0;
}

.hero .skills .skill-item {
    margin-bottom: 30px;
}

.hero .skills .skill-item:last-child {
    margin-bottom: 0;
}

.hero .skills h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero .skills h6 span {
    margin-bottom: 0;
    float: right;
    font-size: 10px;
}

.hero .skills .skills-progress {
    height: 3px;
    width: 100%;
    background: #f7f7f7;
    border-radius: 10px;
    position: relative;
}

.hero .skills .skills-progress span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000;
    border-radius: 10px;
    transition: all 1s;
}

.services .item {
    text-align: center;
    padding: 30px 10px;
}

.services .item .icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.services .item h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services .item p {
    font-weight: 500;
}

.work-item {
    width: 100%;
    border-bottom: solid 2px #eeeeee;
    padding: 4% 0;
    margin: 0 4%;
    text-align: left;
}

.work-item h5 {
    font-weight: 400;
}

.work-item ul {
    display: table;
    margin-bottom: 0;
}

.work-item ul > li {
    display: table-row;
    font-size: 14px;
    font-weight: 500;
    color: #949494;
    line-height: 1.5;
    word-spacing: 1px;
    margin: 0;
}

.work-item ul > li i.fas {
    display: table-cell;
    padding: 8px 8px 0 0;
    font-size: 4px;
    vertical-align: top;
}

.gallery-group {
    position: initial !important;
}

.gallery-group a:not(:first-child) {
    display: none;
}

.workYear {
    font-size: 14px;
    text-align: center;
    width: 120px;
    padding: 57px 0;
    border-radius: 0;
    font-weight: 500;
    margin: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 2px 0 0 0 #eee;
}

.workYear:before {
    content: "";
    width: 32px;
    height: 32px;
    right: -17px;
    top: 59px;
    bottom: 0;
    display: block;
    position: absolute;
    border-radius: 50%;
    background: #96000a;
    border: 12px solid #FFF;
    margin: 0;
}

.work-details > div:first-child {
    width: 120px;
    float: left;
    position: relative;
}

.work-details > div:last-child {
    width: calc(100% - 120px);
}

.work-details:last-child div {
    border-bottom: 0;
}

.portfolio {
    overflow: hidden;
}

.portfolio .filtering span {
    padding: 9px 25px;
    margin: 0 5px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px dashed #555;
    background: #fff;
    cursor: pointer;
}

.portfolio .filtering .active {
    background: #1c1c1c;
    color: #fff;
    box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.2);
}

.portfolio .items {
    margin-top: 30px;
    float: left;
}

.portfolio .item-img {
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.17);
}

.portfolio .item-img:hover .item-img-overlay {
    opacity: 1;
}

.portfolio .item-img:hover h6, .portfolio .item-img:hover p {
    transform: translateY(0);
}

.portfolio .item-img h6 {
    font-weight: 600;
    position: relative;
    margin-bottom: 5px;
    transform: translateY(-10px);
    transition: all .5s;
}

.portfolio .item-img p {
    transform: translateY(10px);
    transition: all .5s;
}

.portfolio .item-img .item-img-overlay {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    padding: 10px;
    background: white;
    color: #35424C;
    opacity: 0;
    transition: all .5s;
    z-index: 2;
}

.portfolio .item-img a {
    font-size: 30px;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.portfolio .item-img a.portfolio-link {
    right: 62px;
}

.portfolio .item-img a:hover {
    color: #99000a;
}

.mfp-figure:after {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #ffffffbd;
}

.blog .item .post-img {
    margin-bottom: 30px;
    overflow: hidden;
}

.blog .item .post-img:hover img {
    transform: scale(1.1);
}

.blog .item .post-img img {
    transition: all .5s;
}

.blog .item span {
    font-size: 11px;
    font-weight: 500;
    color: #777;
    margin-right: 10px;
    margin-bottom: 15px;
}

.blog .item span:last-child {
    margin-right: 0;
}

.blog .item h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog .item .more {
    margin-top: 15px;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    position: relative;
}

.blog .item .more:hover {
    color: #000;
}

.blog .item .more:hover i {
    right: -15px;
}

.blog .item .more i {
    position: absolute;
    right: -10px;
    top: 3px;
    transition: all .3s;
}

.contact .form input, .contact .form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    border-radius: 5px;
    font-weight: bold;
}

.contact .form input:focus, .contact .form textarea:focus {
    background: #feffe6;
    color: #000;
}

.contact .form input:placeholder-shown, .contact .form textarea:placeholder-shown {
    font-weight: 400;
}

.contact .form textarea {
    height: 160px;
    max-height: 160px;
    max-width: 100%;
}

.contact .form .info {
    float: left;
    margin-top: 10px;
}

.contact .form .info span {
    color: #444;
    font-size: 12px;
    font-weight: 500;
    margin-right: 30px;
}

.contact .form .info span:last-child {
    margin-right: 0;
}

.contact .form .butn {
    float: right;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
}

.contact .form .butn:hover {
    border-color: #000;
}

.contact .form .form-group {
    position: relative;
}

.contact .form .help-block li {
    color: #ce7373;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    top: 10px;
    right: 10px;
}

footer {
    background: #111;
    padding: 80px 0;
}

footer .social a {
    color: #777;
    font-size: 18px;
    margin: 15px 15px;
}

footer .social a:hover {
    color: #fff;
}

footer p {
    color: #999;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media screen and (max-width: 991px) {
    .mb-md50 {
        margin-bottom: 50px;
    }

    .mb-md30 {
        margin-bottom: 30px;
    }

    .mb-md0 {
        margin-bottom: 0;
    }

    .bg-fixed {
        background-attachment: scroll !important;
    }

    .navbar {
        padding-left: 15px;
    }

    .navbar .navbar-collapse {
        max-height: 340px;
        overflow: auto;
        background: #111;
        text-align: center;
        padding: 10px 0;
    }

    .navbar .nav-link {
        margin: 10px auto !important;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: #fff !important;
    }

    .header {
        background-attachment: scroll !important;
        background-position: 50% 0 !important;
    }

    .header .caption h4 {
        font-size: 30px;
    }

    .header .caption h1 {
        font-size: 45px;
        line-height: 1.4;
    }

    .hero .author-img {
        margin-bottom: 80px;
    }

    .hero .content {
        padding-left: 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .mb-sm50 {
        margin-bottom: 50px;
    }

    .mb-sm30 {
        margin-bottom: 30px;
    }

    .section-head h4 {
        font-size: 20px;
    }

    .header .caption h1 {
        font-size: 25px;
    }

    .portfolio .filtering span {
        margin-bottom: 10px;
    }

    .blog .item .content h5 {
        line-height: 1.4;
    }

    .contact .form {
        text-align: center;
    }

    .contact .form .info {
        text-align: center;
        display: block;
        width: 100%;
    }

    .contact .form .info span {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .contact .form .butn {
        margin-bottom: 10px;
        float: none;
        text-align: center;
    }

    footer .social a {
        margin: 15px 5px;
        font-size: 16px;
    }

    footer p {
        line-height: 1.8;
    }
}

ul.projects {
    display: block;
    padding-left: 20px;
    float: right;
    list-style-type: none;
}

ul.projects li {
    display: block;
    min-height: 105px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

ul.projects li .lightCon {
    display: block;
    margin: 3px 3px 4px 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid #84868d;
}

ul.projects li img {
    width: 100%;
    height: auto;
    display: block;
}

span.hoverBox {
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    background: rgba(0, 0, 0, 0.1);
}

ul.projects li:hover span.hoverBox {
    visibility: visible;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
}

span.hoverBox a {
    line-height: 42px;
}

span.hoverBox .smallIcon {
    width: 94px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -47px;
    margin-top: -21px;
}

span.hoverBox .zoom {
    visibility: hidden;
    width: 42px;
    height: 42px;
    background: #4AABB1;
    color: #fff;
    position: relative;
    left: -150%;
    /*top:40%;*/
    text-align: center;
    line-height: 50px;
    display: block;
    float: left;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
}

ul.projects li:hover span.hoverBox .zoom {
    visibility: visible;
    left: 0;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
}

span.hoverBox .linKed {
    visibility: hidden;
    width: 42px;
    height: 42px;
    background: #313131;
    color: #fff;
    position: relative;
    right: -150%;
    /*top:40%;*/
    text-align: center;
    line-height: 52px;
    display: block;
    float: right;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
}

.radius li {
    float: right;
    width: 60px;
    min-height: 80px !important;
}

.radius .lightCon {
    border-radius: 3px;
    min-width: 50px;
    position: relative !important;
}

span.hoverBox .rlinKed {
    visibility: hidden;
    width: 100%;
    height: 42px;
    color: #fff;
    position: relative;
    right: -150%;
    /*top:40%;*/
    text-align: center;
    line-height: 52px;
    display: block;
    float: right;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
}

ul.projects li:hover span.hoverBox .rlinKed {
    visibility: visible;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
}

/*# sourceMappingURL=style.css.map */
