.loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999999999;
}

.loading:after,
.loading:before {
    content: '';
    background: #fff;
    height: 50%;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 1s;
}

.loading:after {
    top: 0;
}

.loading:before {
    bottom: 0;
}

.loading-end:after {
    top: -60%;
}

.loading-end:before {
    bottom: -60%;
}

.load-circle {
    margin: 50vh auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 10px solid #e8e8e8;
    border-top: 10px solid #000;
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none !important;
    list-style: none !important;
    outline: none !important;
}

img {
    width: 100%;
    height: auto;
}

span {
    display: inline-block;
}

a,
a:hover,
a:focus {
    color: inherit;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #343434;
    font-weight: 400;
}

.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%);
}


/* Custom Margin Bottom */

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}


/* Custom Padding top */

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.section-padding {
    padding: 100px 0;
}

.section-head {
    margin-bottom: 80px;
    text-align: center;
}

.section-head h3 {
    font-weight: 900;
    font-size: 40px;
    position: relative;
    display: inline-block;
    z-index: 4;
}

.bg-gray {
    background: #f7f7f7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: 'Montserrat', sans-serif;
}

p {
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
    color: #748182;
}

.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: 10%;
    right: 0;
    width: 2px;
    height: 70%;
    background-color: #aebcb9;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline b.is-visible {
    opacity: 1;
}

.buton {
    padding: 10px 30px;
    border: 1px solid #1c1c1c;
    border-radius: 5px;
    font-size: 13px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.buton:hover {
    background: #1c1c1c;
    color: #eee;
}

.buton-bg {
    background: #1c1c1c;
    color: #eee;
}

.buton-bg:hover {
    background: transparent !important;
    color: #343434 !important;
}

.navbar-default {
    padding: 20px 0 30px;
    background: none;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.navbar-default .navbar-nav>li>a {
    margin: 0 !important;
    color: #fff !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

.navbar-default .navbar-nav>li>a:after {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.navbar-default .navbar-nav>li {
    font-size: 14px;
    margin: 25px 20px 0;
    padding: 5 10px;
    background: none;
    cursor: pointer;
    position: relative;
}

.navbar-default .navbar-nav>li .active {
    background: none;
}

.navbar-default .navbar-nav>li .active:after {
    width: 100%;
}

.nav-scroll {
    background: #000000;
    -webkit-box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.05);
    min-height: 60px;
    line-height: 60px;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.nav-scroll .logo {
    padding-top: 2px;
    color: black;
}

.nav-scroll .logo:hover,
.nav-scroll .logo:focus {
    color: #1c1c1c;
}

.nav-scroll .navbar-nav>li>a {
    color: #fff !important;
}

.nav-scroll .navbar-nav>li>a:after {
    background: #fff;
}

.logo {
    float: left;
    padding-top: 20px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.logo:hover,
.logo:focus {
    color: #fff;
}


/* -------------------------------------------------------
                     Header 
-------------------------------------------------------- */

.header {
    height: 100vh;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.header:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: .30;
    z-index: 2;
}

.header .v-middle {
    z-index: 11;
}

.header .caption {
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.header .caption h5 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.header .caption h1 {
    font-weight: 200;
}

.header .caption h1 b {
    font-weight: 400;
}

.hero .content h3 {
    font-weight: 800;
    margin-bottom: 5px;
}

.hero .content .sub-title {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.services .item {
    padding: 50px 20px;
    background: #fff;
    -webkit-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 5px;
}


/* -------------------------------------------------------
                     Portfolio 
-------------------------------------------------------- */

.portfolio {
    overflow: hidden;
}

.portfolio .filtering span {
    margin: 10px 15px;
    color: #222;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.portfolio .filtering span:before {
    content: "";
    width: 0;
    height: 2px;
    background: #111;
    position: absolute;
    left: 0;
    bottom: -5px;
    -webkit-transition: all .4s;
    transition: all .4s;
    z-index: -1;
}

.portfolio .filtering .active:before {
    width: 95%;
}

.overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #fff;
}

.gallery_product:hover .overlay {
    opacity: .8;
}

.text {
    font-weight: bold;
    color: black;
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.contact .info .item {
    margin-bottom: 30px;
}

.contact .info .item .icon {
    font-size: 25px;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.contact .info .item h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact .form input[type='text'],
.contact .form input[type='email'],
.contact .form input[type='tel'],
.contact .form textarea {
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 10px;
    background: #f4f4f4;
}

.contact .form textarea {
    height: 160px;
    max-height: 160px;
    max-width: 100%;
}

.contact .form .buton {
    padding: 10px 40px;
}

footer {
    background: #000000;
    padding: 30px;
}

footer p {
    font-size: 13px;
    word-spacing: 2px;
    color: #fff;
}


/* -------------------------------------------------------
                    Responsive
-------------------------------------------------------- */

@media screen and (max-width: 767px) {
    .navbar-default .logo {
        margin-left: 20px;
    }
    .navbar-default .navbar-toggle {
        background: none !important;
        margin-top: 15px !important;
        border: none !important;
    }
    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background: transparent !important;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background: #fff;
    }
    .navbar-default .navbar-nav>li {
        line-height: 0;
    }
    .navbar-default .navbar-nav>li>a {
        padding-bottom: 0 !important;
        color: #111 !important;
        display: inline-block;
    }
    .navbar-default .navbar-collapse {
        text-align: center;
        border: none;
        border-top: 1px solid rgba(12, 12, 12, 0.04);
        background: #fff;
        margin-top: 5px;
        padding-bottom: 15px;
    }
    .nav-scroll .navbar-toggle .icon-bar {
        background: #fff;
    }
    .portfolio .items {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        margin: 25px 15px 0;
        font-size: 13px;
    }
    .hero .hero-img {
        margin-bottom: 80px !important;
    }
}