	/**
	 * @package BulkStudio (BS)
	 * @version 3.0.0
	 * @since 1.0.0
	 * @author BulkStudio <info@bulkstudio.com>
	 * @link http://bulkstudio.com
	 * @copyright ©-2016 BulkStudio.
	 */

html, body {
    background: #000;
    width: auto ;
    font-family: 'Raleway';
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    background:#0A100F;
    color:#fff;
    background-size:cover;
    background-position:center;
    height:100%;
    width:100%;
    position:relative;
    z-index:10;
}

.grad1 {
    background:-webkit-linear-gradient(top,#000 10%,#0A100F 90%);
    background:linear-gradient(to bottom,#000 10%,#0A100F 90%);
}

.grad2 {
    background:-webkit-linear-gradient(top,#0A100F 10%,#000 90%);
    background:linear-gradient(to bottom,#0A100F 10%,#000 90%);
}

.content {
    width:-webkit-calc(100% - 400px);
    width:calc(100% - 400px);
    margin:auto;
}
.padding {
    padding:80px 0;
}

.mtop {
    margin-top:60px;
}

.left {
    left:0;
}

.right {
    right:0;
}

.visibility-hidden {
    visibility: hidden;
}

/* ------ Loader ----- */
.intro-loader-video {
    position:fixed !important;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    background:#000;
    background-position: center;
    background-size: cover;
    z-index:9999;
}

.reverse {
    -webkit-animation-direction: alternate-reverse !important;
    animation-direction: alternate-reverse !important;
}

.overlay:before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top:0;
    background: url("../images/slash-pattern.png");
    opacity: .3;
    z-index:-1;
}
/* ------ Home ----- */
.intro-video {
    width:100%;
    position:relative;
    height: 100vh;
    background-position: center;
    background-size: cover;
 }

.intro-panel {
    display:block;
    position:absolute;
    width:100%;
    top:50%;
    left:0;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
}

.intro-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: transparent url('../images/pattern.png') repeat;
    width:100%;
    height:100%;
    opacity: .5;
}

/****** VMenu ******/
.vmenu {
    position:fixed;
    top:50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
    left:80px;
    z-index:90;
    padding:0;
}

.vmenu .vbar {
    position:relative;
    display:block;
    margin:20px 0;
    background:-webkit-linear-gradient(left,rgba(86, 123, 114, 1) 70%,rgba(86, 200, 114, 1));
    background:linear-gradient(to right,rgba(86, 123, 114, 1) 70%,rgba(86, 200, 114, 1));
    -webkit-transition: opacity .25s ease-in,width .3s ease-in;
    transition:opacity .25s ease-in,width .3s ease-in;
    width:30px;
    height:2px;
    opacity:.5;
}

.vmenu .vbar a {
    display:block;
    height:5px;
    width:100%;
}

.vmenu .vbar:hover {
    opacity:1;
}

.vmenu .vbar.active {
    width:60px;
    opacity:1;
}

/****** Menu ******/

.menu-overlay {
  position: fixed;
  background: rgb(44, 84, 59);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s;
  transition: opacity .35s, visibility .35s;
  overflow: hidden;
  z-index:999;
}

.menu-overlay.open {
  opacity:1;
  background:rgba(44, 84, 59,.8);
  visibility: visible;
  height: 100%;
}

/**** SVG PART ****/

.head-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 100%;
}

.header-line {
    stroke-dasharray:20,10,5,5,10,20;
    -webkit-animation-name:line-ani;
    animation-name:line-ani;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-timing-function: cubic-bezier(.82, 0, .58, 1);
    animation-timing-function: cubic-bezier(.82, 0, .58, 1);
    opacity:1;
}

.header-line2 {
    stroke-dasharray:50,5,5,5,50;
    opacity:1;
    -webkit-animation-name:line-ani;
    animation-name:line-ani;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate-reverse;
    animation-direction: alternate-reverse;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: cubic-bezier(.82, 0, .58, 1);
    animation-timing-function: cubic-bezier(.82, 0, .58, 1);
}

@-webkit-keyframes line-ani {
    0% {
        stroke-dashoffset: 0px;
    }
    50% {
        stroke-dashoffset: 1500px;
    }
    
    100%{
        stroke-dashoffset: 0px;
    }
}

@keyframes line-ani {
    0% {
        stroke-dashoffset: 0px;
    }
    50% {
        stroke-dashoffset: 1500px;
    }
    
    100%{
        stroke-dashoffset: 0px;
    }
}

.header {
    z-index:99;
}

.menulabel {
    position:absolute;
    right:80px;
    margin:5px 0;
    top:5px;
    z-index:999;
    cursor:pointer;
}

.menulabel2 {
    position:absolute;
    right:80px;
    margin:5px 0;
    top:5px;
    z-index:9;
    cursor:pointer;
}

.menulabel .menuir {
    height:1px;
    width:25px;
    background:#fff;
    display:block;
    margin:5px 0;
    -webkit-transition: all .25s ease-in-out;
    transition:all .25s ease-in-out;
}

.menulabel.active .menuir:nth-child(2) {
    opacity:0;
}
.menulabel.active .menuir:nth-child(1) {
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
}
.menulabel.active .menuir:nth-child(3) {
    -webkit-transform:translateY(50%);
    transform:translateY(50%);
}

.menu-center {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

/***** Actual Navigation *****/
.overlay-menu ul {
    list-style:none;
    margin: 50px 0;
    padding: 0;
}
.overlay-menu ul li {
    display:inline-block;
    font-size:20px;
    margin:0 20px;
}

.overlay-menu ul li a {
    color:#fff;
    text-decoration:none;
}


.header {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    background:transparent;
    padding:5px 80px;
    color:#fff;
}

.header:after {
    content:'';
    position:absolute;
    bottom:0;
    left:-5%;
    width:25px;
    height:.5px;
    background:-webkit-linear-gradient(right,rgba(86, 123, 114, 1),rgba(86, 160, 114, 1));
    background:linear-gradient(to left,rgba(86, 123, 114, 1),rgba(86, 160, 114, 1));
    box-shadow:0px 0px 1px 1px #567B72;
    -webkit-animation-name:ani;
    animation-name:ani;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-timing-function: cubic-bezier(.9, 0, .58, 1);
    animation-timing-function: cubic-bezier(.9, 0, .58, 1);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    
}

@-webkit-keyframes ani {
    0%{
        left:-5%;
    }
    100% {
        left:100%;
    }
}

@keyframes ani {
    0%{
        left:-5%;
    }
    100% {
        left:100%;
    }
}

.header:before {
   /* content: '';
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right,rgba(86, 123, 114, 1),rgba(86, 160, 114, 1));
    position: absolute;*/
    
}
.header h2{
    display:inline-block;
    margin:0;
    padding:0;
}



/* *************************************
/* OTHER SECTIONS
/* ************************************/


/*** SVGS ***/



.svg-holder {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
}

.icon-svg {
    width:130px;
    height:130px;
    stroke-width:2;
}

.icon-svg-service {
    width:48px;
    height:48px;
    stroke-width:2;
}

.circle {
    width: 100%;
    height: 100%;
}

.text {
    position:absolute;
    left:50%;
    top:50%;
    -webkit-transform:translateX(-50%) translateY(-50%);
    transform:translateX(-50%) translateY(-50%);
    margin:0;
}

.circle-sec {
    -webkit-animation-name:line-ani;
    animation-name:line-ani;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.82, 0, .58, 1);
    animation-timing-function: cubic-bezier(.82, 0, .58, 1);
}

.dura1 {
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
}

.dura2 {
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}

.line-sec {
    position: absolute;
    width: 600px;
    height: 80px;
    left: 50%;
    -webkit-transform:translateX(-50%);
    transform:translateX(-50%);
    bottom: 0;
    padding:0 2px;
}

.section-header {
}

.section-header h1 {
    font-size:80px;
}

p::first-letter{
    font-size: 200%;
}

/* *************************************
/* OTHER HTML PAGES
/* ************************************/
.ext-page {
    
}

.main-text {
    display: block;
    width:100%;
    text-shadow: -1px 1px 15px #567B72;
    z-index: 99;
    color: #fff;
    text-align:center;
    margin:50px 0;
}

.main-text h1{
    font-size:50px;
}

.no-gutter{
    padding: 0;
    margin: 0;
}

.first-letter::first-letter{
    font-size: 200%;
}

/* *************************************
/*          PORTFOLIO
/* ************************************/


.item {
    box-shadow: inset 0 0 0 3px transparent;
    overflow: hidden;
    position: relative;
    max-width:350px;
    margin:0 auto 15px;
}
.item img {
    padding:4px;
}
#product-svg {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    transform-origin:0 0;
}

#product-svg line {
    stroke: rgba(86, 123, 114, 1);
    stroke-width:3;
    stroke-dasharray: 300px;
    transition:transform .6s ease-out,stroke .2s ease-in;
    transform: translateZ(0px);
}

.item:hover #product-svg .top {
    -webkit-transform:translateX(0px) !important;
    transform:translateX(0px) !important;
    
    stroke:#fff;
}



.item:hover #product-svg .bottom {
    -webkit-transform:translateX(0px) !important;
    transform:translateX(0px) !important;
    stroke:#fff;
}

.item:hover #product-svg .left {
    -webkit-transform:translateY(0px) !important;
    transform:translateY(0px) !important;
    stroke:#fff;
}


.item:hover #product-svg .right {
    -webkit-transform:translateY(0px) !important;
    transform:translateY(0px) !important;
    stroke:#fff;
}


/* *** Contact *** */

.bs-contact .form-control {
    border-radius:0;
    background:transparent;
}

.bs-contact .form-control:focus {
    border-color: rgba(86, 123, 114, 1);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px rgba(86, 123, 114, 1);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px rgba(86, 123, 114, 1);
}

.bs-contact .btn-bs {
    background:transparent;
    color:#fff;
    border:1px solid #fff;
    outline:none;
    border-radius:0;
}

.bs-contact .btn-bs:hover,.bs-contact .btn-bs:visited,.bs-contact .btn-bs:focus {
    background:#fff;
    color:#111;
    border:1px solid #fff;
    outline:none;
    border-radius:0;
}

.contact-address{
    list-style: none;
    font-size: 16px;
     padding:0;
}

.contact-info, .service-container{
    margin-top: 45px;
}




/*---------- Service ---------*/

.service-item{
    margin-bottom: 25px;
}

.service-item h3:before {
    position: absolute;
    content: '';
    height: 1px;
    background: #FFFFFF;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px rgba(86, 123, 114, 1);
    animation-name: bs-trans;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

}

@keyframes bs-trans{
    0%{
        width: 0;
        opacity: 1;
        margin-top: 32px;
    }
    25%{
        width: 150px;
        opacity: 0;
        margin-top: 32px;
    }
    50%{
        opacity: 0;
        width: 0px;
        margin-top: -5px;

    }
    75%{
        opacity: 1;
        width: 0;
        margin-top: -5px;;
    }
    100%{
        opacity: 0;
        width: 150px;
        margin-top: -5px;
    }
}


    /*------ Social Links --------------*/
 .social-links{
     list-style-type: none;
     margin-top: 25px;
     margin-bottom:25px;
     padding:0;
 }

 .social-links .icon{
     display: inline-block;
     width: 40px;
     height: 40px;
     border: 1px solid rgba(86, 123, 114, 1);
     margin: 5px;
     box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px rgba(86, 123, 114, 1);
 }

 .social-links .icon:hover a{
     display:block;
     color: #FFF;

 }


.social-links .icon:before{
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    border: 1px solid rgba(86, 123, 114, 1);
    animation-name:rotate-slink;
    animation-duration:5s;
    animation-iteration-count: infinite;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 5px rgba(86, 123, 114, 1);
    z-index:-1;
}

@keyframes rotate-slink {
    0%{
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform:rotate(45deg);
        -o-transform: rotate(45deg);
    }
    25%{
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform:rotate(-45deg);
        -o-transform: rotate(-45deg);
        box-shadow: inset 0 10px 10px rgba(0,0,0,.075),0 0 5px rgba(86, 123, 114, 1);

    }
    50%{
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform:rotate(45deg);
        -o-transform: rotate(45deg);
    }

    75%{
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform:rotate(90deg);
        -o-transform: rotate(90deg);
    }
    100%{
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform:rotate(45deg);
        -o-transform: rotate(45deg);
    }
}

.social-links  .icon a{
    color: #97CEC0;
}

.social-links  .icon i {
    font-size: 20px;
    margin: 10px 0 0 11px;
 }



/*------ copyright --------------*/

.copyright{
    text-align: center;
	margin: 40px 0 0 0;
	color: #777;
}

.copyright a{
    color: #9d9d9d;
    font-weight: 700;
}

.copyright h6{
	font-size: 14px;
}
.copyright h6:after,
.copyright h6:before{
    background-color: #777;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 15%;
 }

.copyright h6:before {
    margin-left: -50%;
}
.copyright h6:after {
    margin-right: -50%;
}


/* *********************************************** */
/* ************** RESPONSIVE CSS ***************** */
/* *********************************************** */


@media only screen and (max-width: 1199px) {
    .header {
        padding:5px 70px;
    }
    .menulabel {
        right:70px;
    }
    .content {
        width: -webkit-calc(100% - 180px);
        width: calc(100% - 180px);
        margin: auto;
    }
    
    section.padding {
        padding:70px 0;
    }

    .section-header h1 {
        font-size: 70px;
    }
    .main-text h1 {
        font-size: 60px;
    }
    
    .vmenu {
        left:70px;
    }
}

@media only screen and (max-width: 991px) {
    .header {
        padding:5px 60px;
    }
    .menulabel {
        right:60px;
    }
    .content {
        width: -webkit-calc(100% - 160px);
        width: calc(100% - 160px);
        margin: auto;
    }
    
    section.padding {
        padding:60px 0;
    }

    .section-header h1 {
        font-size: 60px;
    }
    .main-text h1 {
        font-size: 50px;
    }
    
    .vmenu {
        left:60px;
    }
}


@media only screen and (max-width: 767px) {
    .header {
        padding:5px 20px;
    }
    .menulabel {
        right:20px;
    }
    .menu-center img {
        width:50px;
        height:100px;
    }
    .content {
        width: -webkit-calc(100% - 50px);
        width: calc(100% - 50px);
        margin: auto;
    }
    
    section.padding {
        padding:20px 0;
    }

    .section-header h1 {
        font-size: 30px;
    }
    .main-text h1 {
        font-size: 30px;
    }
}