
/*              GoTham - Contents
===============================================

 1.  Genaral Styles
 2.  Images Style
 3.  Video
 4.  Padding & Margin
 5.  Typography
 6.  Background
 7.  Border
 8.  Separator / Line
 9.  Parallax
 10. Heading Title
 11. Button
 12. Navbar
 13. Form Search
 14. Owl Carousel
 15. Countdown
 16. Counter
 17. Box Service
 18. Progress Bar
 19. Testimonials / Clients
 20. Team
 21. Pricing Table
 22. Blog
 23. Pomo Box
 24. Portfolio
 25. Form Email
 26. Pagination
 27. Scroll to Top
 28. Accordion
 29. Tabs
 30. Box Info
 31. Social Network
 32. Loading
 33. Flexslider
 34. Footer
 
 
/*==========================================
			  Genaral Styles
==========================================*/

#top,
#bottom,
#left,
#right {
    background: #242B36;
    position: fixed;
    z-index: 9999;
}

#left,
#right {
    top: 0;
    bottom: 0;
    width: 30px;
}

#left {
    left: 0;
}

#right {
    right: 0;
}

#top,
#bottom {
    left: 0;
    right: 0;
    height: 30px;
}

#top {
    top: 0;
}

#bottom {
    bottom: 0;
}

html {
    margin: 30px;
    height: 100%;
}

body {
    height: 100%; /* parallax */
    font-family: 'Raleway', sans-serif;
    color: #181818;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 0px;
}

.font-i {
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}

p {
    font-size: 13px;
}

ol,
ul {
    list-style: none;
}

a {
    color: #BF9865;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    a:hover,
    a:focus {
        color: #000;
        text-decoration: none;
        outline: 0;
    }

.inline-block {
    display: inline-block;
}

.v-align {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

.h-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: table;
    table-layout: fixed;
}

.v-center {
    vertical-align: middle;
    display: table-cell;
}

.wrap-center-120,
.wrap-center-370,
.wrap-center-400,
.wrap-center-500,
.wrap-center-600,
.wrap-center-700 {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.wrap-center-120 {
    height: 50px;
}

.wrap-center-370 {
    height: 370px;
}

.wrap-center-400 {
    height: 400px;
}

.wrap-center-500 {
    height: 500px;
}

.wrap-center-600 {
    height: 600px;
}

.wrap-center-700 {
    height: 700px;
}

.height-150 {
    height: 150px;
}

.height-250 {
    height: 250px;
}

.height-300 {
    height: 300px;
}

.height-350 {
    height: 350px;
}

.height-400 {
    height: 400px;
}

.height-450 {
    height: 450px;
}

.height-500 {
    height: 500px;
}

.height-600 {
    height: 600px;
}

.height-700 {
    height: 700px;
}


/*==========================================
	          Images Style
==========================================*/

.wrap-slide-full-img {
    padding-right: 0;
    height: 100%;
    position: relative;
    width: 100%;
}

.wrap-figure {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.wrap-figure-des {
    background-color: rgba(24,24,24,0.90);
    min-height: 460px;
    padding: 40px;
    text-align: right;
}

.figure-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.figurecaption {
    position: absolute;
    bottom: 14%;
    right: 14%;
    z-index: 3;
}

.img-slide-1,
.img-slide-2,
.img-slide-3,
.img-slide-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slideShow 24s linear infinite 0s;
    -o-animation: slideShow 24s linear infinite 0s;
    -moz-animation: slideShow 24s linear infinite 0s;
    -webkit-animation: slideShow 24s linear infinite 0s;
    -ms-animation: slideShow 24s linear infinite 0s;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

.img-slide-1 {
    opacity: 1;
}

.img-slide-2 {
    animation-delay: 6s;
    -o-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -webkit-animation-delay: 6s;
    -ms-animation-delay: 6s;
}

.img-slide-3 {
    animation-delay: 12s;
    -o-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -webkit-animation-delay: 12s;
    -ms-animation-delay: 12s;
}

.img-slide-4 {
    animation-delay: 18s;
    -o-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -webkit-animation-delay: 18s;
    -ms-animation-delay: 18s;
}

@keyframes slideShow {

    0% {
        opacity: 0;
        transform: scale(1) rotate(0.1deg);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.1) rotate(0.1deg);
    }

    100% {
        opacity: 0;
        transform: scale(1) rotate(0.1deg);
    }
}

@-o-keyframes slideShow {

    0% {
        opacity: 0;
        -o-transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -o-transform: scale(1);
    }
}

@-moz-keyframes slideShow {

    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -moz-transform: scale(1);
    }
}

@-webkit-keyframes slideShow {

    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
    }
}

.img-opacity-3 {
    opacity: 0.3;
}

.top-img-100 {
    position: relative;
    margin-top: -100px;
}

.top-img-250 {
    position: relative;
    margin-top: -250px;
}

.thumbnail {
    display: block;
    padding: 2px;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 1px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: transparent;
    opacity: 0.90;
}


/*==========================================
			       Video
==========================================*/

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

    .video-wrap iframe,
    .video-wrap object,
    .video-wrap embed {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

iframe {
    border: none;
}

.video-bg-small {
    text-align: center;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.video-bg-full {
    text-align: center;
    height: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

    .video-bg-full .video-content-tit,
    .video-bg-small .video-content-tit,
    .video-bg-full .video-content-tit-borded,
    .video-bg-small .video-content-tit-borded {
        width: 830px;
        max-width: 100%;
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
        margin-top: -30px; /* only boxed version */
    }

.video-content-tit-borded h2 {
    border: 5px solid #fff;
    font-family: 'Raleway', sans-serif;
    padding: 40px;
    margin: 5px;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    opacity: 0.7;
}

.video-content-tit h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    padding-top: 20px;
}

.video-content-tit h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.video-content-tit p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 22px;
}

.btn-bg {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    padding-top: 12px;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 12px;
    cursor: pointer;
    letter-spacing: 1px;
    text-align: center;
    -webkit-transition: .4s background ease;
    -moz-transition: .4s background ease;
    -o-transition: .4s background ease;
    transition: .4s background ease;
}

    .btn-bg:hover {
        color: #fff;
        background: rgba(255,255,255,0.20);
    }

.btn-play {
    display: inline-block;
    font-size: 20px;
    margin: 0 2px;
    border: 2px solid #E6E6E6;
    width: 100px;
    height: 50px;
    line-height: 50px;
    color: #B9B9B9;
    border-radius: 2px;
}

    .btn-play:hover {
        color: #fff;
        background: rgba(255,255,255,0.20);
    }

.video-overlay-dark {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay-blue {
    width: 100%;
    height: 100%;
    background-color: #4D5C71;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
}

.pattern {
    background-image: url(../img/icon/pattern-01.png);
    background-repeat: repeat;
    background-attachment: scroll;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.mobile-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/*==========================================
			  Padding & Margin
==========================================*/

.no-margin {
    margin: 0 !important;
}

.margin-auto {
    margin: 0 auto;
}

.margin-10 {
    margin: 10px;
}

.margin-15 {
    margin: 15px;
}

.margin-20 {
    margin: 20px;
}

.margin-t--20 {
    margin-top: -20px;
}

.margin-t-0 {
    margin-top: 0px !important;
}

.margin-t-5 {
    margin-top: 5px;
}

.margin-t-10 {
    margin-top: 10px;
}

.margin-t-15 {
    margin-top: 15px;
}

.margin-t-25 {
    margin-top: 25px;
}

.margin-t-30 {
    margin-top: 30px;
}

.margin-t-40 {
    margin-top: 40px;
}

.margin-t-50 {
    margin-top: 50px;
}

.margin-t-70 {
    margin-top: 70px;
}

.margin-t-75 {
    margin-top: 75px;
}

.margin-t-85 {
    margin-top: 85px;
}

.margin-t-100 {
    margin-top: 100px;
}

.margin-t-120 {
    margin-top: 120px;
}

.margin-t-125 {
    margin-top: 125px;
}

.margin-t-150 {
    margin-top: 150px;
}

.margin-t-200 {
    margin-top: 200px;
}

.margin-b-0 {
    margin-bottom: 0px !important;
}

.margin-b-5 {
    margin-bottom: 5px;
}

.margin-b-10 {
    margin-bottom: 10px;
}

.margin-b-15 {
    margin-bottom: 15px;
}

.margin-b-25 {
    margin-bottom: 25px;
}

.margin-b-30 {
    margin-bottom: 30px;
}

.margin-b-40 {
    margin-bottom: 40px;
}

.margin-b-50 {
    margin-bottom: 50px;
}

.margin-b-70 {
    margin-bottom: 70px;
}

.margin-b-100 {
    margin-bottom: 100px;
}

.margin-b-150 {
    margin-bottom: 150px;
}

.margin-l-0 {
    margin-left: 0px;
}

.margin-l-5 {
    margin-left: 5px;
}

.margin-l-10 {
    margin-left: 10px;
}

.margin-l-15 {
    margin-left: 15px;
}

.margin-l-20 {
    margin-left: 20px;
}

.margin-l-60 {
    margin-left: 60px;
}

.margin-l-70 {
    margin-left: 70px;
}

.margin-l-100 {
    margin-left: 100px;
}

.margin-r-0 {
    margin-right: 0;
}

.margin-r-5 {
    margin-right: 5px;
}

.margin-r-10 {
    margin-right: 10px;
}

.margin-r-15 {
    margin-right: 15px;
}

.margin-r-50 {
    margin-right: 50px;
}

.margin-r-60 {
    margin-right: 60px;
}

.margin-r-70 {
    margin-right: 70px;
}

.margin-r-100 {
    margin-right: 100px;
}

.no-pad {
    padding: 0 !important;
}

.pad-1 {
    padding: 1px;
}

.pad-t-5 {
    padding-top: 5px;
}

.pad-t-10 {
    padding-top: 10px;
}

.pad-t-20 {
    padding-top: 20px;
}

.pad-t-25 {
    padding-top: 25px;
}

.pad-t-30 {
    padding-top: 30px;
}

.pad-t-40 {
    padding-top: 40px;
}

.pad-t-50 {
    padding-top: 50px;
}

.pad-t-60 {
    padding-top: 60px;
}

.pad-t-70 {
    padding-top: 70px;
}

.pad-t-100 {
    padding-top: 100px;
}

.pad-t-120 {
    padding-top: 120px;
}

.pad-t-150 {
    padding-top: 150px;
}

.pad-t-200 {
    padding-top: 200px;
}

.pad-t-250 {
    padding-top: 250px;
}

.pad-t-300 {
    padding-top: 300px;
}

.pad-t-350 {
    padding-top: 350px;
}

.pad-t-400 {
    padding-top: 400px;
}

.pad-b-5 {
    padding-bottom: 5px;
}

.pad-b-10 {
    padding-bottom: 10px;
}

.pad-b-20 {
    padding-bottom: 20px;
}

.pad-b-25 {
    padding-bottom: 25px;
}

.pad-b-30 {
    padding-bottom: 30px;
}

.pad-b-40 {
    padding-bottom: 40px;
}

.pad-b-50 {
    padding-bottom: 50px;
}

.pad-b-60 {
    padding-bottom: 60px;
}

.pad-b-65 {
    padding-bottom: 65px;
}

.pad-b-70 {
    padding-bottom: 70px;
}

.pad-b-100 {
    padding-bottom: 100px;
}

.pad-b-120 {
    padding-bottom: 120px;
}

.pad-b-150 {
    padding-bottom: 150px;
}

.pad-b-200 {
    padding-bottom: 200px;
}

.pad-b-250 {
    padding-bottom: 250px;
}

.pad-b-300 {
    padding-bottom: 300px;
}

.pad-l-0 {
    padding-left: 0;
}

.pad-l-10 {
    padding-left: 10px;
}

.pad-l-25 {
    padding-left: 25px;
}

.pad-l-30 {
    padding-left: 30px;
}

.pad-l-40 {
    padding-left: 40px;
}

.pad-l-50 {
    padding-left: 50px;
}

.pad-l-60 {
    padding-left: 60px;
}

.pad-l-70 {
    padding-left: 70px;
}

.pad-l-100 {
    padding-left: 100px;
}

.pad-l-120 {
    padding-left: 120px;
}

.pad-l-150 {
    padding-left: 150px;
}

.pad-l-200 {
    padding-left: 200px;
}

.pad-r-10 {
    padding-right: 10px;
}

.pad-r-25 {
    padding-right: 25px;
}

.pad-r-30 {
    padding-right: 30px;
}

.pad-r-40 {
    padding-right: 40px;
}

.pad-r-50 {
    padding-right: 50px;
}

.pad-r-60 {
    padding-right: 60px;
}

.pad-r-70 {
    padding-right: 70px;
}

.pad-r-100 {
    padding-right: 100px;
}

.pad-r-120 {
    padding-right: 120px;
}

.pad-r-150 {
    padding-right: 150px;
}

.pad-r-200 {
    padding-right: 200px;
}

.pad-30 {
    padding: 30px;
}

.pad-40 {
    padding: 40px;
}

.pad-100 {
    padding: 100px;
}


/*==========================================
			   Typography 
==========================================*/

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: #BF9865;
}

p span {
    color: #BF9865;
}

.txt-10 {
    font-size: 10px;
}

.txt-11 {
    font-size: 11px;
}

.txt-12 {
    font-size: 12px;
}

.txt-13 {
    font-size: 13px;
}

.txt-14 {
    font-size: 14px;
}

.txt-15 {
    font-size: 15px;
}

.txt-16 {
    font-size: 16px;
}

.txt-18 {
    font-size: 18px;
}

.txt-20 {
    font-size: 20px;
}

.txt-24 {
    font-size: 24px;
}

.txt-25 {
    font-size: 25px;
}

.txt-30 {
    font-size: 30px;
}

.txt-35 {
    font-size: 35px;
}

.txt-40 {
    font-size: 40px;
}

.txt-50 {
    font-size: 50px;
}

.txt-70 {
    font-size: 70px;
}

.fw-100 {
    font-weight: 100;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.spacing-1 {
    letter-spacing: 1px;
    margin-left: -1px;
}

.spacing-2 {
    letter-spacing: 2px;
    margin-left: -2px;
}

.spacing-3 {
    letter-spacing: 3px;
    margin-left: -3px;
}

.spacing-4 {
    letter-spacing: 4px;
    margin-left: -4px;
}

.txt-dark {
    color: #181818 !important;
}

.txt-blue {
    color: #5B6474 !important;
}

.txt-orange {
    color: #BF9865 !important;
}

.txt-gray {
    color: #A8A8A8 !important;
}

.txt-light {
    color: #fff !important;
}

.txt-brown {
    color: #968B82 !important;
}

.txt-green-light {
    color: #5DBB92 !important;
}

.txt-red {
    color: #EC5353 !important;
}

.txt-square {
    color: #181818;
    font-size: 9px;
    line-height: 9px;
    padding: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0;
    margin-top: 0;
    border: 5px solid #f1f1f1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.txt-border-dark,
.txt-border-light,
.txt-border-gray,
.txt-border-yellow,
.txt-border-brown,
.txt-border-orange {
    font-family: 'Open Sans', sans-serif;
    padding: 20px;
    margin: 5px;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    font-weight: 300;
}

.txt-border-dark {
    border: 3px solid #262626;
    color: #262626;
}

.txt-border-light {
    border: 3px solid #fff;
    color: #fff;
}

.txt-border-brown {
    border: 3px solid #968B82;
    color: #968B82;
}

.txt-border-gray {
    border: 3px solid #A8A8A8;
    color: #A8A8A8;
}

.txt-border-yellow {
    border: 3px solid #EFD459;
    color: #EFD459;
}

.txt-border-orange {
    border: 3px solid #BF9865;
    color: #BF9865;
}

.txt-bg {
    display: table;
    margin: 0px auto 0px auto;
    padding: 10px 25px;
    font-size: 20px;
    background-color: #BF9865;
    color: #000;
}

/* Text Hover Effect */

.txt-h {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

    .txt-h:hover {
        color: #000;
    }

    .txt-h:before,
    .txt-h:after {
        width: 0;
        content: "";
        bottom: -5px;
        background: #000;
        height: 1px;
        position: absolute;
        -webkit-transition: width .5s ease;
        -moz-transition: width .5s ease;
        -o-transition: width .5s ease;
        transition: width .5s ease;
    }

    .txt-h:before {
        right: 50%;
    }

    .txt-h:after {
        left: 50%;
    }

    .txt-h:hover:before,
    .txt-h:hover:after {
        width: 50%;
    }

.line-l-gray:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -3px;
    height: 2px;
    width: 0%;
    -webkit-transition: width 0.5s;
    -o-transition: width 0.5s;
    -moz-transition: width 0.5s;
    transition: width 0.5s;
}

.line-r-dark:before,
.line-r-gray:before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: -3px;
    height: 2px;
    width: 0%;
    -webkit-transition: width 0.5s;
    -o-transition: width 0.5s;
    -moz-transition: width 0.5s;
    transition: width 0.5s;
}

.line-r-gray:hover:before,
.line-r-dark:hover:before,
.line-l-gray:hover:before {
    width: 100%;
}

.line-r-dark:before {
    background-color: #000;
}

.line-r-gray:before,
.line-l-gray:before {
    background-color: #D4D4D4;
}


/*==========================================
			  Background
==========================================*/

.bg-0 {
    background-color: #fff;
}

.bg-1 {
    background-color: #FBFBFB;
}

.bg-2 {
    background-color: #EDEDED;
}

.bg-3 {
    background-color: #F8F8F8;
}

.bg-4 {
    background-color: #F0F0F2;
}

.bg-5 {
    background-color: #f6f6f6;
}

.bg-6 {
    background-color: #181818;
}

.bg-7 {
    background-color: #f3f3f3;
}

.bg-8 {
    background-color: #18242B;
}

.bg-9 {
    background-color: #A1A587;
}

.bg-10 {
    background-color: #F6F8F8;
}

.bg-11 {
    background-color: #6FCACA;
}

.bg-black {
    background-color: #040404;
}

.bg-red {
    background-color: #EB5456;
}

.bg-green {
    background-color: #5DBB92;
}

.bg-yellow {
    background-color: #F3DA52;
}

.bg-gray {
    background-color: #1A1A1A;
}

.bg-blue {
    background-color: #242B36;
}

.bg-orange {
    background-color: #BF9865;
}

.overlay-dark:before,
.overlay-light:before,
.overlay-gray:before,
.overlay-orange:before,
.overlay-blue:before,
.overlay-red:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.overlay-dark:before {
    background-color: #000;
    opacity: 0.8;
}

.overlay-light:before {
    /*background-color: #fff;
    opacity: 0.5;*/
}

.overlay-gray:before {
    background-color: #C9C9C9;
    opacity: 0.5;
}

.overlay-orange:before {
    background-color: #E0BB81;
    opacity: 0.5;
}

.overlay-blue:before {
    background-color: #243633;
    opacity: 0.5;
}

.overlay-red:before {
    background-color: #EA4A4C;
    opacity: 0.5;
}


/*==========================================
			     Border
==========================================*/

.border {
    border-left: 1px solid #BF9865;
    border-right: 1px solid #fff;
}

.border-img {
    position: absolute;
    width: calc(100% - 70px);
    height: calc(100% - 70px);
    top: 35px;
    left: 35px;
    border: 1px dashed #968B82;
}

.border-light {
    border: 1px dashed #968B82;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .border-light:hover {
        -moz-box-shadow: 0 0 18px 7px rgba(0,0,0,0.3);
        -webkit-box-shadow: 0 0 18px 7px rgba(0,0,0,0.3);
        box-shadow: 0 0 18px 7px rgba(0,0,0,0.3);
    }

.border-large {
    position: absolute;
    width: calc(100% - 150px);
    height: calc(100% - 150px);
    top: 75px;
    left: 75px;
    border: 15px solid #968B82;
    background-color: #fff;
    -moz-box-shadow: 0 0 18px 7px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 18px 7px rgba(0,0,0,0.3);
    box-shadow: 0 0 18px 7px rgba(0,0,0,0.3);
}

.border-v > [class*='col-']:before,
.border-v-gray > [class*='col-']:before {
    width: 1px;
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.border-v > [class*='col-']:first-child:before,
.border-v-gray > [class*='col-']:first-child:before {
    display: none;
}

.border-v > [class*='col-']:before {
    background-color: #8B8B8B;
}

.border-v-gray > [class*='col-']:before {
    background-color: #E6E6E6;
}


/*==========================================
			  Separator / Line
==========================================*/

.line-orange-c {
    width: 50px;
    height: 2px;
    background-color: #BF9865;
    margin: 20px auto;
}

.line-orange-l {
    width: 50px;
    height: 2px;
    background-color: #BF9865;
    margin: 20px auto 20px 0;
}

.line-dark-l {
    width: 50px;
    height: 2px;
    background-color: #181818;
    margin: 20px auto 20px 0;
}

.line-dark-c {
    width: 50px;
    height: 2px;
    background-color: #181818;
    margin: 20px auto 20px auto;
}

.line-dark-r {
    width: 50px;
    height: 2px;
    background-color: #181818;
    margin: 20px 0 20px auto;
}

.line-light-l {
    width: 50px;
    height: 2px;
    background-color: #fff;
    margin: 20px auto 20px 0;
}

.line-gray-c {
    width: 50px;
    height: 5px;
    background-color: #8C8C8C;
    margin: 20px auto 20px auto;
}

.line-gray-l {
    width: 50px;
    height: 5px;
    background-color: #8C8C8C;
    margin: 20px auto 20px 0;
}

.line-red-l {
    width: 50px;
    height: 2px;
    background-color: #EB5456;
    margin: 20px auto 20px 0;
}

.line-red-c {
    width: 50px;
    height: 2px;
    background-color: #EB5456;
    margin: 20px auto 20px auto;
}

.line-red-r {
    width: 50px;
    height: 2px;
    background-color: #EB5456;
    margin: 20px 0 20px auto;
}

.line-txt {
    background-color: #CDCDCD;
    height: 1px;
    width: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.sep-orange-1 {
    width: 40px;
    height: 1px;
    position: relative;
    display: block;
    left: -7px;
    background: #BF9865;
    margin: 20px auto;
}

    .sep-orange-1:before {
        content: '';
        width: 40px;
        height: 1px;
        position: absolute;
        right: -14px;
        background: #BF9865;
        margin: 5px 0;
    }

.sep-orange-2 {
    width: 55px;
    height: 1px;
    position: relative;
    display: block;
    left: -10px;
    background: #BF9865;
    margin: 20px auto 0;
}

    .sep-orange-2:before {
        content: '';
        width: 55px;
        height: 1px;
        position: absolute;
        right: -20px;
        background: #BF9865;
        margin: 5px 0;
    }

.sep-dark-1 {
    width: 55px;
    height: 1px;
    position: relative;
    display: block;
    left: -10px;
    background: #181818;
    margin: 20px auto;
}

    .sep-dark-1:before {
        content: '';
        width: 55px;
        height: 1px;
        position: absolute;
        right: -20px;
        background: #181818;
        margin: 5px 0;
    }

.sep-dark-2 {
    width: 40px;
    height: 1px;
    position: relative;
    display: block;
    left: -7px;
    background: #181818;
    margin: 20px auto;
}

    .sep-dark-2:before {
        content: '';
        width: 40px;
        height: 1px;
        position: absolute;
        right: -14px;
        background: #181818;
        margin: 5px 0;
    }

.sep-h-orange {
    width: 12px;
    height: 3px;
    background-color: #E5B63C;
    position: relative;
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
}

    .sep-h-orange:before {
        content: '';
        width: 30px;
        height: 1px;
        background-color: #E5B63C;
        position: absolute;
        margin-top: 1px;
    }

.sep-h-orange-dark {
    width: 12px;
    height: 3px;
    background-color: #181818;
    position: relative;
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
}

    .sep-h-orange-dark:before {
        content: '';
        width: 30px;
        height: 1px;
        background-color: #181818;
        position: absolute;
        margin-top: 1px;
    }

.sep-v {
    width: 12px;
    height: 3px;
    background-color: #E5B63C;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .sep-v:before {
        content: '';
        width: 50px;
        height: 1px;
        background-color: #E5B63C;
        position: absolute;
        margin-top: 1px;
    }


/*==========================================
			    Parallax
==========================================*/

.parallax {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.cover-bg {
    position: relative;
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
}

.parallax-bg {
    position: relative;
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-bg-full {
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover !important;
    height: 100%;
    width: 100%;
}

.parallax-full {
    height: 100vh;
}

.parallax-container {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.parallax-content {
    max-width: 450px;
    margin: -150px auto 0 auto;
    display: table-cell;
    vertical-align: middle;
    color: #ebebeb;
    padding-top: 0;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 0;
    text-align: center;
}

    .parallax-content h2 {
        color: #ffffff;
        font-size: 70px;
        margin: 0;
        font-weight: 100;
    }

    .parallax-content h4 {
        color: #ffffff;
        font-size: 20px;
        margin: 0 0 0 5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 5px;
    }

.parallax-txt-slide {
    color: #181818;
    font-size: 20px;
    margin: 0 0 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.parallax-txt-bg {
    background: rgba(0,0,0,0.30);
    padding: 60px;
}

.parallax-content p {
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    color: #EBEBEB;
}

.parallax-box {
    position: relative;
    color: #fff;
    line-height: 1;
    top: 0;
    transition: all 0.2s ease-out;
    padding: 70px 40px;
}

    .parallax-box.box-1 {
        background-color: #FBFBFB;
    }

    .parallax-box.box-2 {
        background-color: #EDEDED;
    }

    .parallax-box.box-3 {
        background-color: #F8F8F8;
    }

.parallax-box-des {
    vertical-align: middle;
    display: table-cell;
}

    .parallax-box-des h4 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .parallax-box-des p {
        font-size: 13px;
        margin-bottom: 0;
        line-height: 20px;
    }

.parallax-box-icon {
    display: table-cell;
    vertical-align: top;
    padding-left: 10px;
}

.parallax-box:hover {
    top: -10px;
}

.parallax-box-icon img {
    margin-left: 50px;
    margin-top: -20px;
}

.nav-parallax {
    position: fixed;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    right: 50px;
    top: 50%;
    z-index: 9999;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nav-dots-parallax ul {
    padding: 0;
}

    .nav-dots-parallax ul li {
        list-style-type: none;
        margin: 10px 0;
    }

        .nav-dots-parallax ul li a {
            text-indent: -9999px;
            display: block;
            border-radius: 50%;
            width: 7px;
            height: 7px;
            background: #eee;
        }

            .nav-dots-parallax ul li a.active {
                background: none;
                border: 1px solid #fff;
            }


/*==========================================
			  Heading Title
==========================================*/

.heading-wrap {
    text-align: center;
}

.heading-des {
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: -5px;
    font-size: 12px;
    margin-bottom: 7px;
    margin-top: 7px;
}

.heading-title,
.heading-title-2 {
    text-transform: capitalize;
    font-weight: 100;
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 1px;
}

    .heading-title span {
        color: #E7E7E7;
        text-transform: capitalize;
        margin-left: -14px;
    }

    .heading-title-2 span {
        color: #C9C9C9;
        text-transform: capitalize;
    }

.heading-intro {
    font-weight: 300;
    line-height: 40px;
}

.heading-slide-dark,
.heading-slide-light,
.heading-slide-orange {
    font-weight: 300;
}

    .heading-slide-dark span {
        color: #181818;
    }

    .heading-slide-light span {
        color: #fff;
    }

    .heading-slide-orange span {
        color: #BF9865;
    }

.heading-side-l,
.heading-side-r {
    width: 700px;
    height: 125px;
    position: absolute;
    top: 700px;
    left: 0;
    background-color: rgba(0,0,0,0.90);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    padding-top: 50px;
    z-index: 100;
}

    .heading-side-l .v-center,
    .heading-side-r .v-center {
        display: inline-block;
    }

    .heading-side-l h2,
    .heading-side-r h2 {
        float: left;
        color: #FFFFFF;
        font-size: 30px;
        margin: -4px;
    }

    .heading-side-l span,
    .heading-side-r span {
        font-family: 'Open Sans', sans-serif;
        float: left;
        font-size: 60px;
        font-weight: 700;
        color: #2f2f2f;
        margin-left: 10px;
        margin-top: -32px;
    }

    .heading-side-l .line-orange-l,
    .heading-side-r .line-orange-l {
        width: 30px;
        height: 1px;
        background-color: #2f2f2f;
        float: left;
        margin-top: 18px;
        margin-right: 10px;
    }

.vertical-text {
    transform: rotate(90deg);
    transform-origin: left top 0;
    float: left;
    font-size: 10px;
    letter-spacing: 1px;
    color: #A9A9A9;
}


/*==========================================
			     Button
==========================================*/

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    color: inherit;
}

.btn {
    display: inline-block;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-l {
    padding: 15px 70px;
    font-size: 11px;
}

.btn-m {
    padding: 15px 50px;
    font-size: 11px;
}

.btn-s {
    padding: 10px 20px;
    font-size: 11px;
}

.btn-xs {
    padding: 5px 10px;
    font-size: 10px;
}

.btn-dark,
.btn-dark:focus {
    background: #181818;
    color: #fff;
    border: 1px solid #181818;
}

    .btn-dark:hover {
        background-color: #565656;
        color: #fff;
        border: 1px solid #565656;
    }

.btn-light,
.btn-light:focus {
    background: #fff;
    color: #181818;
    border: 1px solid #181818;
}

    .btn-light:hover {
        background: #181818;
        color: #fff;
    }

.btn-gray,
.btn-gray:focus {
    background-color: #3E3E3E;
    color: #fff;
    border: 1px solid #3E3E3E;
}

    .btn-gray:hover {
        background-color: #646464;
        color: #fff;
        border: 1px solid #646464;
    }

.btn-gray-2,
.btn-gray-2:focus {
    background-color: #323232;
    color: #fff;
    border: 1px solid #323232;
}

    .btn-gray-2:hover {
        background-color: #424242;
        color: #fff;
        border: 1px solid #424242;
    }

.btn-green,
.btn-green:focus {
    background-color: #5DBB92;
    color: #fff;
    border: 1px solid #5DBB92;
}

    .btn-green:hover {
        background-color: #93D1B6;
        color: #fff;
        border: 1px solid #93D1B6;
    }

.btn-orange,
.btn-orange:focus {
    background-color: #BF9865;
    color: #fff;
    border: 1px solid #BF9865;
}

    .btn-orange:hover {
        background-color: #B4874C;
        color: #181818;
        border: 1px solid #B4874C;
    }

.btn-red,
.btn-red:focus {
    background-color: transparent;
    color: #EA4A4C;
    border: 2px solid #EA4A4C;
}

    .btn-red:hover {
        background: #EA4A4C;
        color: #fff;
        border: 2px solid #EA4A4C;
    }

.btn-transparent-dark,
.btn-transparent-dark:focus {
    background: transparent;
    color: #181818;
    border: 1px solid #181818;
}

    .btn-transparent-dark:hover {
        background: #181818;
        color: #fff;
    }

.btn-transparent-light,
.btn-transparent-light:focus {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

    .btn-transparent-light:hover {
        background: #fff;
        color: #000;
        border: 1px solid #fff;
    }

.btn-blue,
.btn-blue:focus {
    background-color: #242b36;
    color: #fff;
    border: 1px solid #242b36;
}

    .btn-blue:hover {
        background-color: #52726c;
        color: #fff;
        border: 1px solid #52726c;
    }


/*==========================================
			     Navbar
==========================================*/

.nav-light .nav > li > a,
.nav-dark .nav > li > a,
.nav-transparent .nav > li > a {
    text-transform: uppercase;
    padding: 20px 12px;
}

.nav-light .nav > li > a {
    font-size: 10px;
    color: #181818;
}

.nav-dark .nav > li > a {
    font-size: 10px;
    color: #fff;
    font-weight: 600;
}

.nav-transparent .nav > li > a {
    font-size: 10px;
    color: #181818;
}

    .nav-light .nav > li > a:hover,
    .nav-light .nav > li > a:focus,
    .nav-dark .nav > li > a:hover,
    .nav-dark .nav > li > a:focus,
    .nav-transparent .nav > li > a:hover,
    .nav-transparent .nav > li > a:focus {
        color: #719d95;
        background-color: transparent;
    }

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: transparent;
    border-color: transparent;
    color: #BF9865;
}

.navbar .navbar-brand img {
    padding: 5px;
    max-height: 110px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    margin-top: -12px;
}

.navbar.shrink .navbar-brand img {
    max-height: 50px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    margin-top: -8px;
}

.nav-light .navbar-brand,
.nav-dark .navbar-brand,
.nav-transparent .navbar-brand {
    font-size: 20px;
}

nav.navbar.shrink .navbar-brand {
    font-size: 15px;
}

.nav-light .menu-large,
.nav-dark .menu-large,
.nav-transparent .menu-large {
    position: static;
}

.nav-light .megamenu,
.nav-dark .megamenu,
.nav-transparent .megamenu {
    padding: 30px 0px;
    width: 700px;
    background-color: rgba(33,33,33,0.95);
    min-width: 50%;
}

    .nav-light .megamenu > li > ul,
    .nav-dark .megamenu > li > ul,
    .nav-transparent .megamenu > li > ul {
        padding: 0;
        margin: 0;
    }

        .nav-light .megamenu > li > ul > li,
        .nav-dark .megamenu > li > ul > li,
        .nav-transparent .megamenu > li > ul > li {
            list-style: none;
        }

            .nav-light .megamenu > li > ul > li > a,
            .nav-dark .megamenu > li > ul > li > a,
            .nav-transparent .megamenu > li > ul > li > a {
                display: block;
                padding: 5px 20px;
                clear: both;
                font-weight: 600;
                line-height: 1.428571429;
                color: #E5E5E5;
                white-space: normal;
                font-size: 11px;
                text-transform: uppercase;
            }

    .nav-light .megamenu > li ul > li > a:hover,
    .nav-light .megamenu > li ul > li > a:focus,
    .nav-dark .megamenu > li ul > li > a:hover,
    .nav-dark .megamenu > li ul > li > a:focus,
    .nav-transparent .megamenu > li ul > li > a:hover,
    .nav-transparent .megamenu > li ul > li > a:focus {
        color: #BF9865;
        background-color: #121212;
    }

    .nav-light .megamenu.disabled > a,
    .nav-light .megamenu.disabled > a:hover,
    .nav-light .megamenu.disabled > a:focus,
    .nav-dark .megamenu.disabled > a,
    .nav-dark .megamenu.disabled > a:hover,
    .nav-dark .megamenu.disabled > a:focus,
    .nav-transparent .megamenu.disabled > a,
    .nav-transparent .megamenu.disabled > a:hover,
    .nav-transparent .megamenu.disabled > a:focus {
        color: #999999;
    }

        .nav-light .megamenu.disabled > a:hover,
        .nav-light .megamenu.disabled > a:focus,
        .nav-dark .megamenu.disabled > a:hover,
        .nav-dark .megamenu.disabled > a:focus,
        .nav-transparent .megamenu.disabled > a:hover,
        .nav-transparent .megamenu.disabled > a:focus {
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
            cursor: not-allowed;
        }

    .nav-light .megamenu .dropdown-header,
    .nav-dark .megamenu .dropdown-header,
    .nav-transparent .megamenu .dropdown-header {
        color: #BF9865;
        font-size: 11px;
        margin-bottom: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }

.nav-light .dropdown-menu .divider,
.nav-dark .dropdown-menu .divider,
.nav-transparent .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #474747;
}


/*==========================================
			     Form Search
==========================================*/

.form-search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100px) scale(0, 0);
    -moz-transform: translate(0px, -100px) scale(0, 0);
    -o-transform: translate(0px, -100px) scale(0, 0);
    -ms-transform: translate(0px, -100px) scale(0, 0);
    transform: translate(0px, -100px) scale(0, 0);
    opacity: 0;
    z-index: 9999;
}

    .form-search.open {
        -webkit-transform: translate(0px, 0px) scale(1, 1);
        -moz-transform: translate(0px, 0px) scale(1, 1);
        -o-transform: translate(0px, 0px) scale(1, 1);
        -ms-transform: translate(0px, 0px) scale(1, 1);
        transform: translate(0px, 0px) scale(1, 1);
        opacity: 1;
    }

    .form-search input[type="search"] {
        position: absolute;
        top: 50%;
        left: 25%;
        width: 50%;
        color: #A9A9A9;
        background-color: rgba(0, 0, 0, 0);
        font-size: 30px;
        font-weight: 300;
        text-align: left;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 1px solid #393939;
        border-top: 0px;
        margin: -51px auto 0 auto;
        padding: 25px 30px;
        outline: none;
    }

    .form-search .btn {
        color: #515151;
        font-size: 11px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: 60px;
        margin-left: -50px;
        background-color: transparent;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
        padding: 10px 15px;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        transition: 0.5s;
    }

        .form-search .btn:hover {
            border-left: 1px solid #515151;
            border-right: 1px solid #515151;
            color: #BF9865;
            padding: 10px 15px;
        }

    .form-search .close {
        position: fixed;
        top: 20px;
        right: 20px;
        color: #fff;
        opacity: 1;
        padding: 10px 17px;
        font-size: 27px;
        background-image: url(../img/icon/close-w.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }


/*==========================================
			  Owl Carousel
==========================================*/

.owl-full-screen {
    height: 100vh;
    width: 100%;
}

.owl-half-screen {
    height: 70vh;
    width: 100%;
}

.owl-wrap {
    height: 100%;
    width: 100%;
    background-color: #181818;
}

    .owl-wrap .owl-stage-outer,
    .owl-wrap .owl-stage,
    .owl-wrap .owl-item,
    .owl-wrap .owl-cover {
        height: 100%;
    }

.owl-cover {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.owl-content {
    width: 100%;
    height: 100%;
    display: table;
    color: #ffffff;
}

.owl-content-des,
.owl-content-des-l,
.owl-content-des-r,
.owl-content-des-b-l {
    width: 100%;
    vertical-align: middle;
    display: table-cell;
    position: relative;
    padding-bottom: 0;
    z-index: 1;
}

.owl-content-des {
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
}

.owl-content-des-l {
    text-align: left;
    padding-right: 20px;
    padding-left: 90px;
}

.owl-content-des-r {
    text-align: right;
    padding-right: 90px;
    padding-left: 20px;
}

.owl-content-des-b-l {
    text-align: left;
    padding-right: 20px;
    padding-left: 90px;
    vertical-align: bottom;
    padding-bottom: 120px;
}

.slide-home .item.active,
.slide-home-2 .item.active {
    opacity: 1;
    -webkit-transition: opacity ease-in-out 500ms;
    -moz-transition: opacity ease-in-out 500ms;
    -o-transition: opacity ease-in-out 500ms;
    transition: opacity ease-in-out 500ms;
}

.slide-home .active .animated-item-1,
.slide-home-2 .active .animated-item-1,
.animated-txt-1 {
    -webkit-animation: fadeInDown 300ms linear 300ms both;
    -moz-animation: fadeInDown 300ms linear 300ms both;
    -o-animation: fadeInDown 300ms linear 300ms both;
    -ms-animation: fadeInDown 300ms linear 300ms both;
    animation: fadeInDown 300ms linear 300ms both;
    -webkit-animation-duration: 600ms;
    -moz-animation-duration: 600ms;
    -ms-animation-duration: 600ms;
    -o-animation-duration: 600ms;
    animation-duration: 600ms;
}

.slide-home .active .animated-item-2,
.slide-home-2 .active .animated-item-2,
.animated-txt-2 {
    -webkit-animation: fadeInUp 300ms linear 600ms both;
    -moz-animation: fadeInUp 300ms linear 600ms both;
    -o-animation: fadeInUp 300ms linear 600ms both;
    -ms-animation: fadeInUp 300ms linear 600ms both;
    animation: fadeInUp 300ms linear 600ms both;
    -webkit-animation-duration: 600ms;
    -moz-animation-duration: 600ms;
    -ms-animation-duration: 600ms;
    -o-animation-duration: 600ms;
    animation-duration: 600ms;
}

.slide-home .active .animated-item-3,
.slide-home-2 .active .animated-item-3,
.animated-txt-3 {
    -webkit-animation: fadeInUp 300ms linear 900ms both;
    -moz-animation: fadeInUp 300ms linear 900ms both;
    -o-animation: fadeInUp 300ms linear 900ms both;
    -ms-animation: fadeInUp 300ms linear 900ms both;
    animation: fadeInUp 300ms linear 900ms both;
    -webkit-animation-duration: 600ms;
    -moz-animation-duration: 600ms;
    -ms-animation-duration: 600ms;
    -o-animation-duration: 600ms;
    animation-duration: 600ms;
}

.slide-home.owl-theme .owl-dots .owl-dot span,
.slide-home-2.owl-theme .owl-dots .owl-dot span,
.box-slide-1.owl-theme .owl-dots .owl-dot span,
.box-slide-2.owl-theme .owl-dots .owl-dot span,
.creative.owl-theme .owl-nav [class*='owl-'],
.portfolio-single.owl-theme .owl-nav [class*='owl-'],
.testimonial-1 .testimonial.owl-theme .owl-dots .owl-dot span,
.testimonial-2 .testimonial.owl-theme .owl-dots .owl-dot span,
.blog-slide.owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.slide-home.owl-theme .owl-dots {
    text-align: center;
    position: absolute;
    margin: 0;
    width: 100%;
    bottom: 90px;
}

.slide-home-2.owl-theme .owl-dots {
    text-align: center;
    position: absolute;
    margin: 0;
    width: 100%;
    bottom: 40px;
}

    .slide-home.owl-theme .owl-dots .owl-dot span,
    .slide-home-2.owl-theme .owl-dots .owl-dot span {
        width: 30px;
        height: 3px;
        margin: 5px 7px;
        background-color: #D9D9D9;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
    }

    .slide-home.owl-theme .owl-dots .owl-dot.active span,
    .slide-home.owl-theme .owl-dots .owl-dot:hover span,
    .slide-home-2.owl-theme .owl-dots .owl-dot.active span,
    .slide-home-2.owl-theme .owl-dots .owl-dot:hover span {
        background-color: #5C5C5C;
    }

.box-slide-1.owl-theme .owl-dots {
    text-align: right;
    position: absolute;
    margin: 0;
    width: 100%;
    bottom: 50px;
    right: 40px;
}

    .box-slide-1.owl-theme .owl-dots .owl-dot span {
        width: 6px;
        height: 6px;
        margin: 5px 7px;
        background: transparent;
        display: block;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        border: 1px solid #fff;
    }

    .box-slide-1.owl-theme .owl-dots .owl-dot.active span,
    .box-slide-1.owl-theme .owl-dots .owl-dot:hover span {
        background: #fff;
    }

.box-slide-2.owl-theme .owl-dots {
    text-align: right;
    position: absolute;
    margin: 0;
    width: 100%;
    bottom: 10px;
    right: 10px;
}

    .box-slide-2.owl-theme .owl-dots .owl-dot span {
        width: 25px;
        height: 3px;
        margin: 5px 7px;
        background: #D6D6D6;
        display: block;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
    }

    .box-slide-2.owl-theme .owl-dots .owl-dot.active span,
    .box-slide-2.owl-theme .owl-dots .owl-dot:hover span {
        background: #869791;
    }

.creative.owl-theme .owl-nav {
    text-align: center;
    margin-top: 20px;
}

.portfolio-single.owl-theme .owl-nav {
    text-align: center;
    margin-top: 60px;
    position: absolute;
    top: -72px;
    right: 0;
}

    .creative.owl-theme .owl-nav [class*='owl-'],
    .portfolio-single.owl-theme .owl-nav [class*='owl-'] {
        margin: 3px;
        padding: 4px 5px;
        background: transparent;
        opacity: 0.2;
    }

        .creative.owl-theme .owl-nav [class*='owl-']:hover,
        .portfolio-single.owl-theme .owl-nav [class*='owl-']:hover {
            background-color: transparent;
            opacity: 1;
        }

.testimonial-1 .testimonial.owl-theme .owl-dots .owl-dot span {
    background-color: #B6B6B6;
    width: 8px;
    height: 8px;
    border: 1px solid transparent;
}

.testimonial-1 .testimonial.owl-theme .owl-dots .owl-dot.active span,
.testimonial-1 .testimonial.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #E1E1E1;
    border: 1px solid #B4B4B4;
}

.testimonial-2 .testimonial.owl-theme .owl-dots .owl-dot span {
    background-color: #C8C8C8;
    width: 8px;
    height: 8px;
}

.testimonial-2 .testimonial.owl-theme .owl-dots .owl-dot.active span,
.testimonial-2 .testimonial.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
    border: 1px solid #EBEBEB;
}

.blog-slide .owl-prev,
.blog-slide .owl-next {
    position: absolute;
    top: calc(50% - 25px);
}

.blog-slide .owl-prev {
    left: 20px;
}

.blog-slide .owl-next {
    right: 20px;
}

.blog-slide.owl-theme .owl-nav [class*='owl-'] {
    padding: 8px;
    background: transparent;
    opacity: 0.6;
    border: 1px solid #000;
    border-radius: 1px;
}

    .blog-slide.owl-theme .owl-nav [class*='owl-']:hover {
        background: transparent;
        opacity: 1;
    }

.blog-slide.owl-theme .owl-nav .disabled {
    opacity: 1;
}


/*==========================================
			  Countdown
==========================================*/

ul.countdown {
    margin: 0;
    padding: 0;
    display: block;
    color: #000;
    font-family: 'Open Sans', sans-serif;
}

    ul.countdown li {
        display: inline-block;
    }

        ul.countdown li span {
            font-size: 20px;
            font-weight: 300;
            margin-top: 0px;
            margin-bottom: 0px;
        }

        ul.countdown li.seperator {
            font-size: 20px;
            vertical-align: top;
            color: #BCBCBC;
        }

        ul.countdown li p {
            color: #CCCCCC;
            font-size: 11px;
        }


/*==========================================
			   Counter
==========================================*/

/* Counter 1 */

.counter-1-bord {
    border-right: 1px solid #EFEFEF;
}

.counter-1-wrap {
    text-align: center;
    padding: 50px 0px;
}

    .counter-1-wrap .counter-number {
        font-family: 'Open Sans', sans-serif;
        color: #181818;
        font-size: 35px;
        font-weight: 300;
        margin-top: 10px;
        letter-spacing: 1px;
    }

    .counter-1-wrap .counter-text {
        color: #2E2E2E;
        font-size: 12px;
        text-transform: uppercase;
        display: block;
        margin-top: 10px;
        text-indent: 2px;
    }

    .counter-1-wrap .counter-sub-text {
        color: #959595;
        font-size: 10px;
        text-transform: uppercase;
        display: block;
        margin-top: 4px;
        font-style: italic;
        letter-spacing: 2px;
        text-indent: 2px;
    }

/* Counter 3 */

.counter-3-bord {
    border-right: 1px solid #E1E1E1;
}

.counter-3-wrap {
    text-align: center;
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 25px;
    color: #FFFFFF;
}

    .counter-3-wrap .counter-number {
        font-family: 'Open Sans', sans-serif;
        font-size: 35px;
        font-weight: 300;
        margin-top: 10px;
        letter-spacing: 1px;
    }

    .counter-3-wrap .counter-text {
        font-size: 12px;
        text-transform: uppercase;
        display: block;
        margin-top: 5px;
        text-indent: 2px;
    }

    .counter-3-wrap .counter-sub-text {
        font-size: 10px;
        text-transform: uppercase;
        display: block;
        margin-top: 4px;
        font-style: italic;
        letter-spacing: 2px;
        text-indent: 2px;
    }

    .counter-3-wrap i {
        font-size: 20px;
    }


/*==========================================
			    Box Service
==========================================*/

/* Services 1 */

.service-1-up,
.service-1-down,
.service-1-left,
.service-1-right {
    width: 100%;
    height: 14em;
    text-align: center;
    position: relative;
}

    .service-1-up,
    .service-1-up *,
    .service-1-down,
    service-1-down *,
    .service-1-left,
    service-1-left *,
    .service-1-right,
    service-1-right * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .service-1-up ul,
        .service-1-down ul,
        .service-1-left ul,
        .service-1-right ul {
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-transform: translate3D(0, 0, -7em);
            transform: translate3D(0, 0, -7em);
            list-style: none;
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
        }

            .service-1-up ul li,
            .service-1-down ul li,
            .service-1-left ul li,
            .service-1-right ul li {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                display: block;
                height: 100%;
                -webkit-transition: 0.5s all;
                transition: 0.5s all;
            }

        .service-1-up .title,
        .service-1-down .title,
        .service-1-left .title,
        .service-1-right .title {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .service-1-up .title-after,
        .service-1-down .title-after,
        .service-1-left .title-after,
        .service-1-right .title-after {
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 1px;
            margin: 0 0 15px 0;
            text-transform: uppercase;
        }

        .service-1-up .des,
        .service-1-down .des,
        .service-1-left .des,
        .service-1-right .des {
            font-size: 15px;
            padding: 0 30px;
            margin: 0;
            line-height: 22px;
        }

        .service-1-up .number,
        .service-1-down .number,
        .service-1-left .number,
        .service-1-right .number {
            font-family: 'Open Sans', sans-serif;
            position: absolute;
            top: -10px;
            font-size: 120px;
            left: 10px;
            color: rgba(202,202,202,0.30);
            font-weight: 100;
            z-index: -1;
        }

        .service-1-up ul li:nth-of-type(odd),
        .service-1-down ul li:nth-of-type(odd),
        .service-1-left ul li:nth-of-type(odd),
        .service-1-right ul li:nth-of-type(odd) {
            background-color: #eee;
            color: #181818;
        }

        .service-1-up ul li:nth-of-type(even),
        .service-1-down ul li:nth-of-type(even),
        .service-1-left ul li:nth-of-type(even),
        .service-1-right ul li:nth-of-type(even) {
            background-color: #fff;
            color: #181818;
        }

        /* Effect 1: Show Up on hover */
        .service-1-up ul li:nth-of-type(1) {
            -webkit-transform: rotateX(0deg) translate3D(0, 0, 7em);
            transform: rotateX(0deg) translate3D(0, 0, 7em);
        }

        .service-1-up ul li:nth-of-type(2) {
            -webkit-transform: rotateX(-90deg) translate3D(0, 0, 7em);
            transform: rotateX(-90deg) translate3D(0, 0, 7em);
        }

.effect-up:hover li:nth-of-type(1) {
    -webkit-transform: rotateX(90deg) translate3D(0, 0, 7em);
    transform: rotateX(90deg) translate3D(0, 0, 7em);
}

.effect-up:hover li:nth-of-type(2) {
    -webkit-transform: rotateX(0deg) translate3D(0, 0, 7em);
    transform: rotateX(0) translate3D(0, 0, 7em);
}

/* Effect 2: Show Down on hover */
.service-1-down ul li:nth-of-type(1) {
    -webkit-transform: rotateX(0deg) translate3D(0, 0, 7em);
    transform: rotateX(0deg) translate3D(0, 0, 7em);
}

.service-1-down ul li:nth-of-type(2) {
    -webkit-transform: rotateX(90deg) translate3D(0, 0, 7em);
    transform: rotateX(90deg) translate3D(0, 0, 7em);
}

.effect-down:hover li:nth-of-type(1) {
    -webkit-transform: rotateX(-90deg) translate3D(0, 0, 7em);
    transform: rotateX(-90deg) translate3D(0, 0, 7em);
}

.effect-down:hover li:nth-of-type(2) {
    -webkit-transform: rotateX(0deg) translate3D(0, 0, 7em);
    transform: rotateX(0deg) translate3D(0, 0, 7em);
}

/* Next Upgrade - Effect 3: Show Left on hover */
.service-1-left ul li:nth-of-type(1) {
    -webkit-transform: rotateY(0deg) translate3D(0, 0, 7em);
    transform: rotateY(0deg) translate3D(0, 0, 7em);
}

.service-1-left ul li:nth-of-type(2) {
    -webkit-transform: rotateY(-90deg) translate3D(0, 0, 7em);
    transform: rotateY(-90deg) translate3D(0, 0, 7em);
}

.effect-left:hover li:nth-of-type(1) {
    -webkit-transform: rotateY(90deg) translate3D(0, 0, 7em);
    transform: rotateY(90deg) translate3D(0, 0, 7em);
}

.effect-left:hover li:nth-of-type(2) {
    -webkit-transform: rotateY(0deg) translate3D(0, 0, 7em);
    transform: rotateY(0deg) translate3D(0, 0, 7em);
}

/* Next Upgrade - Effect 4: Show Right on hover */
.service-1-right ul li:nth-of-type(1) {
    -webkit-transform: rotateY(0deg) translate3D(0, 0, 7em);
    transform: rotateY(0deg) translate3D(0, 0, 7em);
}

.service-1-right ul li:nth-of-type(2) {
    -webkit-transform: rotateY(90deg) translate3D(0, 0, 7em);
    transform: rotateY(90deg) translate3D(0, 0, 7em);
}

.effect-right:hover li:nth-of-type(1) {
    -webkit-transform: rotateY(-90deg) translate3D(0, 0, 7em);
    transform: rotateY(-90deg) translate3D(0, 0, 7em);
}

.effect-right:hover li:nth-of-type(2) {
    -webkit-transform: rotateY(0deg) translate3D(0, 0, 7em);
    transform: rotateY(0deg) translate3D(0, 0, 7em);
}

/* Services 5 */

.service-5 .icon-box > .icons {
    width: 70px;
    height: 70px;
    line-height: 70px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #9A9A9A;
    position: relative;
    z-index: 99;
    font-size: 20px;
    background-color: #F3F3F3;
}

    .service-5 .icon-box > .icons:after {
        content: "";
        background-color: #181818;
        top: 0px;
        position: absolute;
        width: 70px;
        height: 70px;
        left: 0px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-transition: transform 0.4s ease 0s, opacity 0.3s ease 0s;
        -moz-transition: transform 0.4s ease 0s, opacity 0.3s ease 0s;
        -ms-transition: transform 0.4s ease 0s, opacity 0.3s ease 0s;
        -o-transition: transform 0.4s ease 0s, opacity 0.3s ease 0s;
        transition: transform 0.4s ease 0s, opacity 0.3s ease 0s;
        z-index: -10;
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

.service-5 .icon-box-animaiton:hover .icon-box > .icons:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.service-5 .icon-box-animaiton:hover .icon-box > .icons:before {
    color: #F0B05D;
}

.service-5 .icon-box-animaiton h3 {
    font-size: 15px;
    font-weight: 600;
}

.service-5 .more {
    text-transform: uppercase;
    font-size: 11px;
}

.service-5 .icon-box-animaiton:hover .more {
    color: #181818;
}

/* Services 6 */

.service-6 .icon {
    font-size: 30px;
    color: #F8F8F8;
    display: inline-block;
    height: 80px;
    line-height: 80px;
    width: 80px;
    border-radius: 3px;
    -webkit-transition: background-color 0.4s ease-in-out;
    transition: background-color 0.4s ease-in-out;
    background-color: #F3F3F3;
}

.service-6 .service-wrap .col-md-4:hover .icon {
    background-color: #333;
}

.service-6 .service-wrap .col-sm-4 {
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    padding-top: 60px;
    padding-bottom: 50px;
}

.service-6 .service-wrap .col-md-4:nth-child(4),
.service-6 .service-wrap .col-md-4:nth-child(5),
.service-6 .service-wrap .col-md-4:nth-child(6) {
    border-bottom: 0;
    padding-top: 60px;
}

.service-6 .service-wrap .col-md-4:nth-child(3),
.service-6 .service-wrap .col-md-4:nth-child(6) {
    border-right: 0;
}

.service-6 .service-info {
    padding: 30px 30px 0 30px;
}

    .service-6 .service-info h3 {
        font-weight: 600;
        font-size: 16px;
    }

/* Services 7 */

.service-7 {
    overflow: hidden;
}

    .service-7 .box-u,
    .service-7 .box-r {
        background-color: #f3f3f3;
        position: relative;
        text-align: center;
        height: 250px;
        overflow: hidden;
        cursor: pointer;
    }

        .service-7 .box-u i,
        .service-7 .box-r i {
            color: #181818;
            font-size: 20px;
        }

    .service-7 .service-title {
        font-size: 11px;
        color: #181818;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .service-7 .service-sub-title {
        font-size: 12px;
        font-weight: 500;
        color: #a8a8a8;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .service-7 .box-inside-u,
    .service-7 .box-hover-u,
    .service-7 .box-inside-r,
    .service-7 .box-hover-r {
        width: 100%;
        position: relative;
        -webkit-transform: translate3d(0, 0px, 0);
        -moz-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        transition: all .5s ease;
    }

    .service-7 .box-hover-u {
        height: 100%;
        position: absolute;
        top: 0;
        padding-right: 40px;
        padding-left: 40px;
        -webkit-transform: translate3d(0, 250px, 0);
        -moz-transform: translate3d(0, 250px, 0);
        transform: translate3d(0, 250px, 0);
    }

    .service-7 .box-u:hover .box-inside-u {
        -webkit-transform: translate3d(0, -250px, 0);
        -moz-transform: translate3d(0, -250px, 0);
        transform: translate3d(0, -250px, 0);
    }

    .service-7 .box-u:hover .box-hover-u {
        -webkit-transform: translate3d(0, 0px, 0);
        -moz-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    .service-7 .box-hover-r {
        height: 100%;
        position: absolute;
        top: 0;
        padding-right: 40px;
        padding-left: 40px;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    .service-7 .box-r:hover .box-inside-r {
        -webkit-transform: translate3d(500px, 0, 0);
        -moz-transform: translate3d(500px, 0, 0);
        transform: translate3d(500px, 0, 0);
    }

    .service-7 .box-r:hover .box-hover-r {
        -webkit-transform: translate3d(0, 0px, 0);
        -moz-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    .service-7 .box-u .number-1 {
        font-family: 'Open Sans', sans-serif;
        position: absolute;
        top: -40px;
        font-size: 220px;
        left: 30px;
        color: rgba(202,202,202,0.30);
        font-weight: 600;
        z-index: -1;
    }

    .service-7 .box-u .number-2 {
        font-family: 'Open Sans', sans-serif;
        position: absolute;
        font-size: 220px;
        left: 30px;
        color: rgba(202,202,202,0.30);
        font-weight: 600;
        z-index: -1;
        bottom: 100px;
    }

    .service-7 .box-r .number-3 {
        font-family: 'Open Sans', sans-serif;
        position: absolute;
        font-size: 220px;
        left: 30px;
        color: rgba(202,202,202,0.30);
        font-weight: 600;
        z-index: -1;
        top: -50px;
    }

    .service-7 span {
        font-size: 15px;
        color: #37606f;
        letter-spacing: 1px;
        line-height: 24px;
    }


/*==========================================
			   Progress Bar
==========================================*/

/* Progress Bar 1 */

.skill-1 {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    color: #181818;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
}

    .skill-1 .skillbar {
        width: 100%;
        box-sizing: border-box;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        margin-bottom: 40px;
        position: relative;
        background-color: #F0F0F0;
        padding: 2px;
    }

        .skill-1 .skillbar .count-bar {
            width: 0px;
            height: 2px;
            -moz-background-clip: padding;
            -webkit-background-clip: padding-box;
            background-clip: padding-box;
            background-color: #000;
        }

    .skill-1 .skill-title {
        position: absolute;
        font-size: 12px;
        padding-left: 5px;
        line-height: 25px;
        top: -25px;
        left: 0;
        text-transform: uppercase;
    }

    .skill-1 .count {
        position: absolute;
        top: -20px;
        right: 0;
        color: #464646;
        font-size: 9px;
    }

/* Progress Bar 2 */

.skill-2 {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    color: #fff;
}

    .skill-2 .skillbar {
        width: 100%;
        height: 30px;
        position: relative;
        margin-bottom: 30px;
        background-color: #F4F4F4;
        box-sizing: border-box;
        -moz-border-radius: 1px;
        -webkit-border-radius: 1px;
        border-radius: 1px;
    }

    .skill-2 .count-bar {
        width: 0px;
        position: relative;
        height: 30px;
        background-color: #383838;
    }

    .skill-2 .skill-title {
        font-size: 11px;
        font-weight: 600;
        padding-left: 12px;
        line-height: 28px;
        text-transform: uppercase;
    }

    .skill-2 .count {
        position: absolute;
        top: 0;
        right: -45px;
        line-height: 30px;
        font-size: 11px;
        font-weight: 600;
        color: #181818;
    }

    .skill-2 .skillbar:before {
        height: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        background-color: #EDECEC;
    }

    .skill-2 .count-bar:before {
        height: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        background-color: #BF9865;
    }

/* Progress Bar 3 */

.skill-3 {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    color: #000;
}

    .skill-3 .skillbar {
        width: 100%;
        height: 40px;
        background-color: #eee;
        position: relative;
        margin-bottom: 30px;
    }

    .skill-3 .count-bar {
        position: absolute;
        background-color: #181818;
        height: 16px;
        left: 0;
        bottom: 0;
    }

    .skill-3 .skill-title {
        font-size: 11px;
        padding-left: 12px;
        line-height: 26px;
        text-transform: uppercase;
    }

    .skill-3 .content .count {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .skill-3 .count {
        position: absolute;
        right: 0;
        top: -12px;
        font-size: 11px;
        font-weight: 600;
        line-height: 40px;
        padding-right: 10px;
        color: #fff;
    }

/* Progress Bar Circle */

.progressbar {
    display: inline-block;
    margin: 25px;
}

.circle {
    margin: 0 auto;
    margin-top: 10px;
    display: inline-block;
    position: relative;
    text-align: center;
}

    .circle canvas {
        vertical-align: middle;
    }

    .circle div {
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        text-align: center;
        line-height: 40px;
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
    }

    .circle strong i {
        font-style: normal;
        font-size: 0.6em;
        font-weight: normal;
    }

    .circle p {
        display: block;
        color: #D0D0D0;
        margin-top: 15px;
        font-weight: 600;
        letter-spacing: 1px;
    }


/*==========================================
		 Testimonials / Clients
==========================================*/

/* Testimonials 1 */

.testimonial-1 .icon {
    display: inline-block;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
}

    .testimonial-1 .icon img {
        height: auto;
        width: 100%;
    }

.testimonial-1 h3 {
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-right: -7px;
}

.testimonial-1 .comments {
    font-size: 13px;
}

.testimonial-1 .sub-title {
    color: #A6A6A6;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 35px;
}

.testimonial-1 .app {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    margin-right: -3px;
}

/* Testimonials 2 */

.testimonial-2 i {
    margin-bottom: 40px;
    color: #DDDDDD;
}

.testimonial-2 h3 {
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-right: -7px;
    font-weight: 600;
    font-size: 16px;
}

.testimonial-2 .comments {
    line-height: 25px;
}

.testimonial-2 .sub-title {
    color: #A6A6A6;
    text-transform: uppercase;
}

.testimonial-2 .app {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    margin-right: -2px;
}

/* Testimonials Quotes */

.quote {
    position: relative;
    padding: 10px;
}

    .quote p {
        color: #a8a8a8;
        font-style: italic;
        line-height: 2.0;
        font-size: 15px;
    }

    .quote:first-child:before {
        content: '\201C';
        color: #B3B3B3;
        font-size: 150px;
        font-weight: 100;
        opacity: .3;
        position: absolute;
        top: -25px;
        left: 10px;
        z-index: -1;
        font-family: Cambria, "Hoefler Text", serif;
        width: 100%;
    }

    .quote .author {
        text-align: right;
        color: #a8a8a8;
    }

    .quote h3 {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .quote h4 {
        font-size: 12px;
        font-weight: 600;
        text-transform: capitalize;
        font-style: italic;
        margin-top: -4px;
    }

        .quote h4:before {
            content: '';
            background-color: #CDCDCD;
            height: 1px;
            width: 15px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 10px;
        }

/* clients 1 */

.clients-1 img {
    opacity: 0.60;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .clients-1 img:hover {
        opacity: 1;
    }

.clients-1 i {
    width: 100%;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 25px;
    color: #181818;
    border: 1px solid #DCDCDC;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .clients-1 i:hover {
        color: #a8a8a8;
        background-color: #181818;
    }

.clients-1 .sponsor {
    font-family: 'Open Sans', sans-serif;
    color: #a8a8a8;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
}

/* clients 2 */

.clients-2 {
    padding: 0;
    overflow: hidden;
}

    .clients-2 li {
        float: left;
        position: relative;
        padding: 20px;
    }

    .clients-2.grid-20 li {
        width: 20%;
    }

    .clients-2.grid-33 li {
        width: 33.33333333%;
    }

    .clients-2 li a img {
        width: 100%;
        opacity: 0.6;
    }

    .clients-2 li a,
    .clients-2 li img {
        width: 75%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .clients-2 li {
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

        .clients-2 li:hover {
            opacity: 1;
            cursor: pointer;
            background-color: #D5D5D5;
        }

        .clients-2 li:before,
        .clients-2 li:after {
            content: '';
            position: absolute;
        }

        .clients-2 li:before {
            height: 100%;
            top: 0;
            left: -1px;
            border-left: 1px dotted #ccc;
        }

        .clients-2 li:after {
            width: 100%;
            height: 0;
            top: auto;
            left: 0;
            bottom: -1px;
            border-bottom: 1px dotted #ccc;
        }


/*==========================================
			       Team
==========================================*/

/* Team 1 */

.team-1 {
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.team-1-overlay {
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.90);
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.team-1:hover .team-1-overlay,
.team-1:hover .team-1-overlay .team-1-des,
.team-1:hover .team-1-overlay .team-1-social {
    opacity: 1;
}

    .team-1:hover .team-1-overlay .team-1-social {
        bottom: 70px;
    }

    .team-1:hover .team-1-overlay .team-1-des {
        top: 180px;
    }

.team-1-overlay .team-1-des {
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    transform: translateY(-60%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all .4s ease-in-out;
    padding: 0 30px;
    position: absolute;
    top: 0;
}

.team-1-overlay .team-1-social {
    width: 100%;
    opacity: 0;
    text-align: center;
    -webkit-transform: translateY(46%);
    -ms-transform: translateY(46%);
    transform: translateY(46%);
    -webkit-transition: all 0.7s ease-in-out;
    transition: all .7s ease-in-out;
    position: absolute;
    bottom: 0;
}

.team-1,
.team-1-photo {
    position: relative;
    border: 1px solid transparent;
}

    .team-1-photo img {
        width: 100%;
        height: auto;
    }

.team-1-des h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #BF9865;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 14px;
}

.team-1-des p {
    font-size: 13px;
    font-weight: 300;
}

.team-1-box {
    width: 65%;
    background-color: rgba(249,249,249,0.80);
    padding: 10px 20px;
    text-align: right;
    z-index: 1;
    border-bottom: 3px solid #E1E1E1;
    position: absolute;
    right: 33px;
    bottom: -55px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .team-1-box:hover {
        background-color: rgba(236,236,236,0.80);
    }

    .team-1-box h5 {
        letter-spacing: 1px;
        margin-bottom: 3px;
        text-transform: capitalize;
        font-weight: 600;
        font-size: 13px;
    }

    .team-1-box p {
        color: #000;
        font-size: 10px;
        margin-bottom: 2px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.team-1-social a {
    font-size: 14px;
    color: #7F7F7F;
    text-align: center;
    padding: 0 8px;
}

    .team-1-social a:hover {
        color: #000;
    }

/* Team 2 */

.team-2 {
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.team-2-overlay {
    margin: 0;
    border: 1px solid rgba(163,163,163,0.50);
    background-color: rgba(255, 255, 255, 0.90);
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.team-2:hover .team-2-overlay,
.team-2:hover .team-2-overlay .team-2-des,
.team-2:hover .team-2-overlay .team-2-des-side,
.team-2:hover .team-2-overlay .team-2-social,
.team-2:hover .team-2-overlay .team-2-social-side {
    opacity: 1;
}

    .team-2:hover .team-2-overlay .team-2-social {
        bottom: 70px;
    }

    .team-2:hover .team-2-overlay .team-2-social-side {
        bottom: 40px;
    }

    .team-2:hover .team-2-overlay .team-2-des {
        top: 130px;
    }

    .team-2:hover .team-2-overlay .team-2-des-side {
        top: 100px;
    }

.team-2-overlay .team-2-des,
.team-2-overlay .team-2-des-side {
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    transform: translateY(-60%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all .4s ease-in-out;
    padding: 0 30px;
    position: absolute;
    top: 0;
}

.team-2-overlay .team-2-social,
.team-2-overlay .team-2-social-side {
    width: 100%;
    opacity: 0;
    text-align: center;
    -webkit-transform: translateY(46%);
    -ms-transform: translateY(46%);
    transform: translateY(46%);
    -webkit-transition: all 0.7s ease-in-out;
    transition: all .7s ease-in-out;
    position: absolute;
    bottom: 0;
}

.team-2,
.team-2-photo {
    position: relative;
    border: 1px solid transparent;
}

    .team-2-photo img {
        width: 100%;
        height: auto;
    }

.team-2-des h4,
.team-2-des-side h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #BF9865;
    text-transform: uppercase;
    font-size: 14px;
}

.team-2-des p {
    font-size: 13px;
    font-weight: 300;
}

.team-2-box {
    width: 65%;
    padding: 10px 20px;
    text-align: right;
    z-index: 1;
    border-bottom: 3px solid #E1E1E1;
    position: absolute;
    right: 33px;
    bottom: -55px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .team-2-box h5 {
        letter-spacing: 1px;
        margin-bottom: 3px;
        text-transform: capitalize;
        font-weight: 600;
        font-size: 13px;
    }

    .team-2-box p {
        color: #000;
        font-size: 10px;
        margin-bottom: 2px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.team-2-social,
.team-2-social-side {
    text-align: center;
    font-size: 15px;
}

    .team-2-social ul,
    .team-2-social-side ul {
        margin: 0;
        padding: 0;
    }

        .team-2-social ul li,
        .team-2-social-side ul li {
            display: inline-block;
            zoom: 1;
            *display: inline;
        }

            .team-2-social ul li a,
            .team-2-social-side ul li a {
                display: block;
                font-size: 15px;
                margin: 0 5px;
                border: 1px solid #B9B9B9;
                width: 40px;
                height: 40px;
                line-height: 40px;
                color: #B9B9B9;
            }

                .team-2-social ul li a:hover,
                .team-2-social-side ul li a:hover {
                    color: #181818;
                    border: 1px solid #524F4F;
                    background-color: #EFEFEF;
                }


/*==========================================
			  Pricing Table 
==========================================*/

/* Pricing Table 1 */

.pricing-1-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 50px;
    text-align: center;
}

    .pricing-1-box.premium {
        background: #181818;
        border: 1px solid #393939;
        box-shadow: 0 23px 44px rgba(0, 0, 0, 0.25);
        color: #fff;
    }

    .pricing-1-box h3 {
        text-transform: uppercase;
        margin-bottom: 35px;
        font-weight: 300;
    }

    .pricing-1-box.premium h3 {
        color: #fff;
    }

    .pricing-1-box .cost {
        font-family: 'Open Sans', sans-serif;
        border-bottom: 1px solid #EDEDED;
        padding: 5px 0 25px 0;
        margin-bottom: 40px;
    }

    .pricing-1-box.premium .cost {
        border-bottom: 1px solid #575757;
        padding: 5px 0 25px 0;
        color: #fff;
        margin-bottom: 45px;
    }

    .pricing-1-box .price {
        font-size: 50px;
        color: #BF9865;
    }

        .pricing-1-box .price span {
            font-size: 18px;
        }

    .pricing-1-box h5 {
        text-transform: uppercase;
    }

    .pricing-1-box.premium h5 {
        color: #fff;
    }

    .pricing-1-box ul {
        margin-bottom: 45px;
        padding: 0;
    }

        .pricing-1-box ul li {
            color: #000;
            margin-bottom: 18px;
        }

    .pricing-1-box.premium ul li {
        color: #ededed;
    }

    .pricing-1-box .btn-margin {
        position: absolute;
        bottom: -4%;
        left: 20%;
        right: 20%;
    }

/* Pricing Table 2 */

.pricing-2-box {
    width: 100%;
}

    .pricing-2-box .plan-1 {
        background-color: #F5F5F5;
    }

    .pricing-2-box .plan-2 {
        background-color: #FBFBFB;
    }

    .pricing-2-box .plan-3 {
        background-color: #F1F1F1;
    }

    .pricing-2-box .plan-content {
        border-radius: 1px;
        padding: 40px 20px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

        .pricing-2-box .plan-content .plan-title {
            margin: 0 0 20px 0;
            letter-spacing: 1px;
            text-transform: capitalize;
        }

        .pricing-2-box .plan-content .price {
            background: none repeat scroll 0 0 rgba(213,213,213,0.20);
            border-radius: 50%;
            width: 120px;
            height: 120px;
            margin: 0 auto;
        }

        .pricing-2-box .plan-content .cost-content {
            font-family: 'Open Sans', sans-serif;
            padding-top: 25px;
            padding-right: 0;
            padding-left: 0;
            padding-bottom: 0;
        }

        .pricing-2-box .plan-content .currency {
            left: -5px;
            position: relative;
            top: -8px;
        }

        .pricing-2-box .plan-content .cost {
            font-size: 40px;
            font-weight: 100;
            margin: 0;
        }

        .pricing-2-box .plan-content .month {
            font-size: 11px;
            line-height: 14px;
            margin: -3px 0 0;
            text-transform: uppercase;
            color: #B0B0B0;
        }

        .pricing-2-box .plan-content .plan-features {
            margin: 20px 0 30px;
            padding: 0px;
        }

    .pricing-2-box li {
        line-height: 30px;
        color: #676767;
    }

    .pricing-2-box .plan-content:hover {
        -webkit-box-shadow: 12px 12px 0 rgba(153,153,153,0.20);
        box-shadow: 12px 12px 0 rgba(153,153,153,0.20);
    }


/*==========================================
			    Blog
==========================================*/

.blog-header-tit {
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-header-sub-tit {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-list h3 {
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
}

.blog-list p {
    font-size: 13px;
    color: #a8a8a8;
    line-height: 1.8;
    word-spacing: 1px;
}

.blog-list .single-post {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

/* Side Title */

.blog-list .heading-side-l,
.blog-list .heading-side-r {
    width: 300px;
    height: 90px;
    position: absolute;
    top: 300px;
    background-color: transparent;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    padding-top: 50px;
    z-index: 100;
}

.blog-list .heading-side-l {
    left: 0;
}

.blog-list .heading-side-r {
    right: -225px;
}

    .blog-list .heading-side-l .v-center,
    .blog-list .heading-side-r .v-center {
        display: inline-block;
    }

    .blog-list .heading-side-l h2,
    .blog-list .heading-side-r h2 {
        float: left;
        font-weight: 300;
        color: #DFDFDF;
        font-size: 20px;
        margin-top: -10px;
        text-transform: capitalize;
    }

    .blog-list .heading-side-l span,
    .blog-list .heading-side-r span {
        font-family: 'Open Sans', sans-serif;
        float: left;
        font-size: 40px;
        font-weight: 700;
        color: #c1c1c1;
        margin-left: 10px;
        margin-top: -28px;
    }

    .blog-list .heading-side-l .line-orange-l,
    .blog-list .heading-side-r .line-orange-l {
        width: 20px;
        height: 1px;
        background-color: #dddddd;
        float: left;
        margin-top: 12px;
        margin-right: 8px;
    }

.blog-list .info {
    color: #8D8D8D;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    text-align: right;
}

.blog-list a {
    color: #181818;
}

    .blog-list a:hover {
        color: #8A8A8A;
    }

.blog .box-img {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.90);
    padding: 10px;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #000;
    text-align: center;
}

    .blog .box-img a {
        color: #fff;
    }

.blog .sub-title {
    font-size: 10px;
    color: #8D8D8D;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 10px;
}

.blog h3 {
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

.blog h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: #181818;
    letter-spacing: 1px;
}

.blog p {
    margin-top: 15px;
    font-size: 13px;
    color: #989898;
    line-height: 1.8;
    word-spacing: 1px;
}

.blog h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog a {
    color: #181818;
}

    .blog a:hover {
        color: #8A8A8A;
    }

.blog .list {
    margin-bottom: 80px;
}

.blog .btn-dark,
.blog .btn-dark:focus,
.blog-list .btn-dark,
.blog-list .btn-dark:focus {
    background: #181818;
    color: #fff;
    border: 1px solid #181818;
}

    .blog .btn-dark:hover,
    .blog-list .btn-dark:hover {
        background-color: #565656;
        color: #fff;
        border: 1px solid #565656;
    }

.blog .btn-transparent-dark,
.blog .btn-transparent-dark:focus {
    background: transparent;
    color: #181818;
    border: 1px solid #181818;
}

    .blog .btn-transparent-dark:hover {
        background: #181818;
        color: #fff;
    }

.blog-btn {
    display: block;
    margin-top: 30px;
    font-size: 11px;
    color: #181818;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

    .blog-btn.icon i {
        opacity: 0;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
    }

    .blog-btn.icon:hover i {
        padding-left: 10px;
        opacity: 1;
    }

.blog-date {
    color: #8D8D8D;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 5px;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    line-height: 20px;
    padding-top: 25px;
}

    .blog-date .sep {
        margin-left: 10px;
        margin-right: 10px;
    }

.blog-share {
    font-size: 11px;
    text-transform: uppercase;
    padding-left: 5px;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
}

    .blog-share .sep {
        margin-left: 10px;
        margin-right: 10px;
    }

.blog-img {
    overflow: hidden;
    position: relative;
}

    .blog-img img {
        transition-duration: .5s;
        -webkit-transition-duration: .5s;
        -moz-transition-duration: .5s;
    }

    .blog-img:hover img {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        opacity: 0.6;
    }

.blog-list-img {
    overflow: hidden;
}

    .blog-list-img:hover img {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        transition-duration: .5s;
        -webkit-transition-duration: .5s;
        -moz-transition-duration: .5s;
        opacity: 0.6;
    }

.blog .quote {
    position: relative;
    padding: 30px;
}

    .blog .quote blockquote {
        margin: 0;
        position: relative;
        z-index: 1;
        padding: 10px 20px;
        border-left: 5px solid #eee;
    }

        .blog .quote blockquote p {
            color: #7E7E7E;
            font-style: italic;
        }

            .blog .quote blockquote p:first-child:before {
                content: '\201C';
                color: #B3B3B3;
                font-size: 150px;
                font-weight: 700;
                opacity: .3;
                position: absolute;
                top: -35px;
                left: 10px;
                z-index: -1;
                font-family: Cambria, "Hoefler Text", serif;
                width: 100%;
            }

    .blog .quote .author {
        text-align: right;
        color: #8D8D8D;
        font-style: italic;
        font-size: 12px;
    }

        .blog .quote .author span {
            color: #181818;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-style: normal;
        }

            .blog .quote .author span:before {
                content: '';
                background-color: #CDCDCD;
                height: 1px;
                width: 15px;
                display: inline-block;
                vertical-align: middle;
                margin-right: 10px;
            }

.share {
    text-align: center;
}

    .share .item {
        width: 120px;
        height: 80px;
        display: inline-block;
        margin: 0 5px;
        font-weight: 500;
        text-align: center;
        line-height: 25px;
        overflow: hidden;
    }

        .share .item:before {
            background-color: #fff;
            display: block;
            font-size: 2.2em;
            line-height: 70px;
            color: #181818;
            -webkit-transition: font-size 0.2s ease-in-out, line-height 0.2s ease-in-out;
            transition: font-size 0.2s ease-in-out, line-height 0.2s ease-in-out;
            border: 1px solid #181818;
        }

        .share .item:hover:before {
            font-size: 120%;
            line-height: 50px;
            color: #a8a8a8;
            border: 1px solid #a8a8a8;
        }

    .share span {
        font-family: 'Open Sans', sans-serif;
        color: #000;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 10px;
    }

.blog-comment h5,
.blog-comment h5 a {
    font-size: 13px;
    color: #181818;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 4px;
}

.blog-comment.media .pull-left {
    margin-right: 25px;
}

.blog-comment .replied {
    padding-left: 40px;
}

.blog-comment .date {
    font-size: 11px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.blog-comment .btn-reply {
    float: right;
    margin-top: -18px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

.blog-comment.media img {
    width: 75px;
    height: auto;
}

.blog-author {
    margin-top: 50px;
    margin-bottom: 45px;
}

    .blog-author h4 {
        font-family: 'Open Sans', sans-serif;
        text-transform: uppercase;
        font-size: 18px;
        color: #181818;
        letter-spacing: 1px;
    }

    .blog-author h5 {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 0;
    }

.blog-author-img {
    width: 190px;
    height: 160px;
    margin-right: 20px;
    float: left;
    background-image: url(http://placehold.it/500x500/cccccc/FFFFFF/jpg?text=Image);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-author-wrap {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

.blog-author-social {
    position: absolute;
    top: 0;
    right: 0;
}

.blog-author-social-icon {
    width: 35px;
    height: 35px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #DEDEDE !important;
    font-size: 15px;
    line-height: 35px;
    text-align: center;
    padding-right: 10px;
}

    .blog-author-social-icon:hover {
        color: #181818 !important;
    }

.widget {
    margin-bottom: 60px;
}

    .widget ul {
        padding: 0;
        margin-top: 30px;
    }

        .widget ul li a {
            color: #181818;
            display: block;
        }

            .widget ul li a:hover {
                color: #8A8A8A;
            }

    .widget h2 {
        font-size: 12px;
        color: #181818;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .widget .blog-search {
        position: relative;
    }

    .widget .btn-search {
        font-size: 13px;
        color: #181818;
        width: 45px;
        height: 45px;
        position: absolute;
        top: 50%;
        right: 3px;
        margin-top: -22px;
        background: transparent;
        border: none;
        z-index: 10;
    }

    .widget .blog-search input {
        height: 45px;
        border-radius: 1px;
        box-shadow: none;
        -webkit-transition: border-color ease-in-out .35s, -webkit-box-shadow ease-in-out .35s;
        -o-transition: border-color ease-in-out .35s, box-shadow ease-in-out .35s;
        transition: border-color ease-in-out .35s, box-shadow ease-in-out .35s;
    }

        .widget .blog-search input:focus {
            border-color: #181818;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .widget .category li {
        border-bottom: 1px solid #F4F4F4;
        padding-top: 15px;
        padding-bottom: 15px;
        letter-spacing: 1px;
        font-size: 12px;
        font-weight: 600;
    }

    .widget .recent-post li {
        padding: 10px 0;
    }

        .widget .recent-post li img {
            width: 80px;
            height: auto;
            margin-right: 20px;
            float: left;
        }

    .widget .recent-post-heading {
        font-size: 12px;
        top: 0;
        line-height: 16px;
        position: relative;
        overflow: hidden;
    }

        .widget .recent-post-heading span {
            font-size: 12px;
            font-weight: 600;
        }

    .widget .post-date {
        color: #C1C1C1;
        font-size: 12px;
        margin-top: 5px;
    }

    .widget .archive li {
        border-bottom: 1px solid #F4F4F4;
        padding-top: 15px;
        padding-bottom: 15px;
        letter-spacing: 1px;
        font-size: 12px;
    }

    .widget .badge {
        min-width: 40px;
        padding: 7px;
        line-height: 1;
        color: #000;
        background-color: transparent;
        border-radius: 1px;
        border: 1px solid #555;
        font-family: 'Open Sans', sans-serif;
        margin-top: -6px;
    }

    .widget .comments li {
        border-bottom: 1px solid #f4f4f4;
        padding-top: 6px;
        padding-bottom: 10px;
    }

    .widget .comments i {
        color: #C1C1C1;
        margin-right: 5px;
    }

    .widget .comment-user p {
        color: #C1C1C1;
        font-size: 12px;
        margin-top: -4px;
    }

    .widget .tags li {
        display: inline-block;
        margin-top: 3px;
        margin-right: 1px;
        margin-left: 1px;
        margin-bottom: 3px;
        font-size: 11px;
        text-transform: capitalize;
    }

        .widget .tags li a {
            color: #181818;
            background-color: transparent;
            padding-top: 5px;
            padding-right: 15px;
            padding-left: 15px;
            padding-bottom: 5px;
            -webkit-border-radius: 1px;
            -moz-border-radius: 1px;
            -o-border-radius: 1px;
            -ms-border-radius: 1px;
            border-radius: 1px;
            border: 1px solid #555555;
            letter-spacing: 1px;
            font-size: 12px;
        }

            .widget .tags li a:hover {
                background-color: #181818;
                color: #fff;
                border: 1px solid #181818;
            }


/*==========================================
			Pomo Box
==========================================*/

/* Promo Box 1 */

.call-box-1 {
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
}

    .call-box-1 h3 {
        margin-top: 0px;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

        .call-box-1 h3 span {
            color: #BF9865;
            font-weight: 700;
        }

    .call-box-1 p {
        margin-bottom: 40px;
    }

/* Promo Box 2 */

.call-box-2 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    letter-spacing: 1px;
}

    .call-box-2 h3 {
        font-weight: 400;
        margin-top: 0;
    }

    .call-box-2 h4 {
        text-align: center;
        font-size: 15px;
        color: #181818;
        text-transform: capitalize;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 50px;
    }

    .call-box-2 p {
        margin-bottom: 0;
    }

    .call-box-2 i {
        margin-right: 5px;
    }

.call-box-2-info {
    background-color: #F5F5F5;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .call-box-2-info:hover {
        background-color: #e7e7e7;
    }

/* Promo Box 3 */

.call-box-3 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    letter-spacing: 1px;
    padding: 70px 0;
    text-transform: uppercase;
}

    .call-box-3 h3 {
        margin-top: 0;
    }

        .call-box-3 h3 span {
            font-weight: 700;
        }

    .call-box-3 p {
        margin-bottom: 0;
    }


/*=========================================
	           Portfolio 
==========================================*/

.row.work-col-g > [class*="col-"] {
    padding: 7px;
}

.row.work-col-g-m > [class*="col-"] {
    padding: 10px;
}

.row.work-col-w > [class*="col-"] {
    padding: 0;
}

.portfolio-tit {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.portfolio-sub-tit {
    color: #A8A8A8;
}

.filter-container {
    padding: 20px;
}

.filter-container-pages {
    text-align: center;
    padding: 20px;
    text-transform: uppercase;
}

.portfolio-container {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.filter-container .filter > li {
    padding: 0;
    margin: 0;
}

ul.filter > li > a {
    color: #181818;
    font-size: 10px;
    line-height: 40px;
    letter-spacing: 2px;
    font-weight: 600;
}

    ul.filter > li > a:hover,
    ul.filter > li > a:focus,
    ul.filter > li > active a {
        color: #BF9865;
    }

ul.filter > li > span {
    color: #ddd;
    font-size: 14px;
    margin-left: 8px;
}

/* Effect 1 Portfolio */

.work-1-item {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: url(../img/icon/icon-cross-black.png), auto;
}

    .work-1-item img {
        display: block;
    }

.work-1-top-left,
.work-1-bottom-right {
    position: absolute;
    height: 2px;
    width: 80px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-right: 2px;
}

    .work-1-top-left:after,
    .work-1-bottom-right:after {
        content: '';
        display: block;
        height: 80px;
        width: 2px;
        position: absolute;
        background-color: #000;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

.work-1-top-left {
    top: 0;
    left: 0;
    -webkit-transform: translateX(-80px);
    -moz-transform: translateX(-80px);
    -o-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
}

    .work-1-top-left:after {
        top: 0;
        left: 0;
        -webkit-transform: translate(80px, -80px);
        -moz-transform: translate(80px, -80px);
        -o-transform: translate(80px, -80px);
        -ms-transform: translate(80px, -80px);
        transform: translate(80px, -80px);
    }

.work-1-bottom-right {
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
    transform: translateX(80px);
}

    .work-1-bottom-right:after {
        bottom: 0;
        right: 0;
        -webkit-transform: translate(-80px, 80px);
        -moz-transform: translate(-80px, 80px);
        -o-transform: translate(-80px, 80px);
        -ms-transform: translate(-80px, 80px);
        transform: translate(-80px, 80px);
    }

.work-1-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0.90);
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .work-1-overlay:hover {
        opacity: 1;
    }

        .work-1-overlay:hover .work-1-top-left {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -o-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }

            .work-1-overlay:hover .work-1-top-left:after {
                -webkit-transform: translate(0, 0);
                -moz-transform: translate(0, 0);
                -o-transform: translate(0, 0);
                -ms-transform: translate(0, 0);
                transform: translate(0, 0);
            }

        .work-1-overlay:hover .work-1-bottom-right {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

            .work-1-overlay:hover .work-1-bottom-right:after {
                -webkit-transform: translate(0, 0);
                -moz-transform: translate(0, 0);
                -o-transform: translate(0, 0);
                -ms-transform: translate(0, 0);
                transform: translate(0, 0);
            }

        .work-1-overlay:hover .work-1-des {
            opacity: 1;
        }

        .work-1-overlay:hover .work-1-top-tit,
        .work-1-overlay:hover .work-1-sub-tit {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

        .work-1-overlay:hover .work-1-icon {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -o-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }

.work-1-overlay-item {
    text-align: center;
    width: 100%;
    height: 100%;
    display: table;
}

    .work-1-overlay-item span {
        display: block;
        color: #000;
    }

.work-1-des {
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.work-1-top-tit {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    margin-bottom: 8px;
}

.work-1-sub-tit {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-right: -2px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.work-1-icon {
    width: 48px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
}

/* Effect 2 Portfolio */

.work-2-item {
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .work-2-item a {
        position: relative;
        overflow: hidden;
        display: block;
        cursor: url(../img/icon/icon-zoom-white.png), auto;
    }

    .work-2-item img {
        width: 100%;
        -webkit-transition: all 1.1s ease;
        transition: all 1.1s ease;
    }

    .work-2-item:hover img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.work-2-des {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: rgba(24,24,24,0.90);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
}

.work-2-item:hover .work-2-des {
    opacity: 1;
}

    .work-2-item:hover .work-2-des h4,
    .work-2-item:hover .work-2-des h5 {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

.work-2-des h4,
.work-2-des h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.work-2-des h4 {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.work-2-des h5 {
    font-weight: 600;
}

.work-2-des h5 {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

/* Effect 3 Portfolio */

.work-3-item {
    position: relative;
    overflow: hidden;
}

    .work-3-item a {
        position: relative;
        overflow: hidden;
        display: block;
        cursor: url(../img/icon/icon-cross-black.png), auto;
    }

    .work-3-item img {
        width: 100%;
        -webkit-transition: all 1.1s ease;
        transition: all 1.1s ease;
    }

    .work-3-item:hover img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.work-3-des {
    width: 100%;
    height: 100%;
    color: #000;
    text-align: center;
    background-color: rgba(255,255,255,0.95);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    opacity: 0;
}

.work-3-item:hover .work-3-des {
    opacity: 1;
}

    .work-3-item:hover .work-3-des h4,
    .work-3-item:hover .work-3-des h5,
    .work-3-item:hover .work-3-des p,
    .work-3-item:hover .work-3-des .price {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

.work-3-des h4,
.work-3-des h5,
.work-3-des p,
.work-3-des .price {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.work-3-des h5 {
    font-weight: 600;
}

.work-3-des h4 {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
}

.work-3-des h5 {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.work-3-des p {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    -webkit-transform: translateX(-45px);
    -moz-transform: translateX(-45px);
    -o-transform: translateX(-45px);
    -ms-transform: translateX(-45px);
    transform: translateX(-45px);
}

.work-3-des .price {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: translateX(45px);
    -moz-transform: translateX(45px);
    -o-transform: translateX(45px);
    -ms-transform: translateX(45px);
    transform: translateX(45px);
}

.work-3-line {
    width: 40px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    height: 1px;
    background-color: #000;
}

/* Effect 4 Portfolio */

.work-4-item {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: url(../img/icon/icon-cross-white.png), auto;
}

    .work-4-item img {
        display: block;
    }

.work-4-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.80);
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 15px;
}

    .work-4-overlay:hover {
        opacity: 1;
    }

        .work-4-overlay:hover .work-4-des {
            opacity: 1;
        }

        .work-4-overlay:hover .work-4-top-tit,
        .work-4-overlay:hover .work-4-sub-tit,
        .work-4-overlay:hover .work-4-icon {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

.work-4-overlay-item {
    text-align: center;
    width: 100%;
    height: 100%;
    display: table;
    border: 1px solid #5F5F5F;
}

    .work-4-overlay-item span {
        display: block;
        color: #fff;
    }

.work-4-des {
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.work-4-top-tit {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-right: -2px;
    margin-bottom: 6px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    text-transform: uppercase;
}

.work-4-sub-tit {
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-right: -2px;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.work-4-icon {
    font-size: 18px;
    color: #C7C7C7;
    margin-bottom: 20px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}

/* Effect 5 Portfolio */

.work-5-item {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: url(../img/icon/icon-cross-white.png), auto;
    overflow: hidden;
}

    .work-5-item img {
        width: 100%;
        -webkit-transition: all 1.1s ease;
        transition: all 1.1s ease;
    }

    .work-5-item:hover img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.work-5-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.80);
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin: 10px;
}

    .work-5-overlay:hover {
        opacity: 1;
    }

        .work-5-overlay:hover .work-5-des {
            opacity: 1;
        }

        .work-5-overlay:hover .work-5-top-tit,
        .work-5-overlay:hover .work-5-sub-tit,
        .work-5-overlay:hover .work-5-line {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

.work-5-overlay-item {
    text-align: center;
    width: 100%;
    height: 100%;
    display: table;
}

    .work-5-overlay-item span {
        display: block;
        color: #fff;
    }

.work-5-des {
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.work-5-top-tit {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-right: -2px;
    margin-bottom: 6px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    text-transform: uppercase;
}

.work-5-sub-tit {
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-right: -2px;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.work-5-line {
    width: 40px;
    margin: 10px auto;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}

/* Effect 6 Portfolio */

.work-6-item {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: url(../img/icon/icon-cross-black.png), auto;
    overflow: hidden;
}

    .work-6-item img {
        display: block;
    }

    .work-6-item img {
        width: 100%;
        -webkit-transition: all 1.1s ease;
        transition: all 1.1s ease;
    }

    .work-6-item:hover img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.work-6-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0.95);
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 10px solid rgba(0,0,0,0.80);
}

    .work-6-overlay:hover {
        opacity: 1;
    }

        .work-6-overlay:hover .work-6-des {
            opacity: 1;
        }

        .work-6-overlay:hover .work-6-top-tit,
        .work-6-overlay:hover .work-6-sub-tit,
        .work-6-overlay:hover .work-6-line {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

.work-6-overlay-item {
    text-align: center;
    width: 100%;
    height: 100%;
    display: table;
}

    .work-6-overlay-item span {
        display: block;
        color: #000;
    }

.work-6-des {
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.work-6-top-tit {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-right: -2px;
    margin-bottom: 6px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    text-transform: uppercase;
}

.work-6-sub-tit {
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-right: -2px;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.work-6-line {
    width: 40px;
    margin: 10px auto;
    height: 1px;
    background-color: #000;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}


/*==========================================
			Form Email
==========================================*/

/* Email Contact default Setting  */

.contact-form-2 .has-error .form-control,
.contact-form-4 .has-error .form-control,
.newsletter-1 .has-error .form-control,
.contact-form-2 .has-error .form-control:focus,
.contact-form-4 .has-error .form-control:focus,
.newsletter-1 .has-error .form-control:focus {
    border-color: #BE0C0C !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-form-1 .form-control,
.contact-form-1 .form-control:focus,
.contact-form-2 .form-control,
.contact-form-2 .form-control:focus,
.contact-form-3 .form-control,
.contact-form-3 .form-control:focus,
.contact-form-4 .form-control,
.contact-form-4 .form-control:focus,
.newsletter-1 .form-control,
.newsletter-1 .form-control:focus {
    -webkit-transition: border-color ease-in-out .35s, -webkit-box-shadow ease-in-out .35s;
    -o-transition: border-color ease-in-out .35s, box-shadow ease-in-out .35s;
    transition: border-color ease-in-out .35s, box-shadow ease-in-out .35s;
}

.help-block {
    font-size: 12px;
}

/* Email Contact 1 */

.contact-form-1 .form-group {
    margin-bottom: 0;
}

.contact-form-1 .form-control {
    border-radius: 1px;
    background-color: transparent;
    color: #FFFFFF;
}

    .contact-form-1 .form-control,
    .contact-form-1 .form-control:focus {
        border-color: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.contact-form-1 .has-error .form-control {
    color: #FF4245;
}

    .contact-form-1 .has-error .form-control::-moz-placeholder {
        color: #FF4245;
        opacity: 1;
    }

    .contact-form-1 .has-error .form-control:-ms-input-placeholder {
        color: #FF4245;
    }

    .contact-form-1 .has-error .form-control::-webkit-input-placeholder {
        color: #FF4245;
    }

.contact-form-1 input {
    height: 65px;
}

.contact-form-1 .first-name {
    border-bottom: 0px solid transparent;
}

.contact-form-1 .last-name {
    border-bottom: 0px solid transparent;
    border-left: 0px solid transparent;
}

.contact-form-1 .email {
    border-right: 0px solid transparent;
    border-bottom: 0px solid transparent;
}

.contact-form-1 .subject {
    border-left: 0px solid transparent;
}

.contact-form-1 textarea.form-control {
    height: 140px;
    border-top: 0px solid transparent;
    padding-top: 20px;
}

.contact-form-1 button {
    font-size: 30px;
    height: 140px;
    border: 1px solid #fff;
    border-left: 0px solid transparent;
    border-top: 0px solid transparent;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .contact-form-1 button:hover {
        color: #BF9865;
        background-color: #181818;
        opacity: 0.8;
    }

/* Email Contact 2 */

.contact-form-2 .form-group label {
    font-size: 15px;
}

.contact-form-2 .form-group .form-control {
    border-color: #1E1E1E;
    border-radius: 1px;
    background-color: rgba(255,255,255,0.04);
}

.contact-form-2 .form-control:focus {
    border-color: #181818;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(136,136,136,0.60);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(136,136,136,0.60);
}

.contact-form-2 input {
    height: 49px;
}

.contact-form-2 textarea {
    padding: 10px;
    resize: none;
    height: 229px;
}

.contact-form-2 .btn {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-top: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    background-color: #181818;
    font-size: 12px;
}

    .contact-form-2 .btn:hover {
        background-color: #292929;
        color: #FFFFFF;
    }

/* Email Contact 3 */

.contact-form-3 input {
    height: 102px;
}

.contact-form-3 .form-control {
    border-radius: 0;
    border-style: none none solid;
    border-width: 0 0 1px;
    box-shadow: none;
    margin-bottom: 50px;
}

    .contact-form-3 .form-control:focus {
        border-color: #181818;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.contact-form-3 .btn {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.contact-form-3 .footer-social {
    margin-top: 17px;
}

    .contact-form-3.footer-social li a {
        color: #cdd2d6;
        display: block;
        margin-bottom: 10px;
    }

/* Email Contact 4 */

.contact-form-4 .form-control {
    border-color: #E1E1E1;
    border-radius: 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.contact-form-4 .form-control {
    -webkit-transition: border-color ease-in-out .35s, -webkit-box-shadow ease-in-out .35s;
    -o-transition: border-color ease-in-out .35s, box-shadow ease-in-out .35s;
    transition: border-color ease-in-out .35s, box-shadow ease-in-out .35s;
}

    .contact-form-4 .form-control:focus {
        border-color: #181818;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.contact-form-4 input {
    height: 50px;
}

.contact-form-4 textarea#message {
    padding: 10px;
    resize: none;
}

.contact-form-4 .btn {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Newsletters */

.newsletter-1 {
    max-width: 480px;
    margin: auto;
    position: relative;
}

    .newsletter-1 .btn {
        height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        border: 1px solid #000000;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        padding-left: 25px;
        padding-right: 25px;
        margin-top: 5px;
        margin-bottom: 5px;
        margin-right: 5px;
    }

        .newsletter-1 .btn:hover {
            color: #BF9865;
        }

    .newsletter-1 .form-control {
        border-color: transparent;
        border-radius: 1px;
        height: 60px;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: #FBFBFB;
        font-size: 12px;
        padding-left: 25px;
    }

        .newsletter-1 .form-control:focus {
            border-color: #D8D8D8;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

#subscribe-loading {
    display: none;
    line-height: 45px;
    cursor: inherit;
}

    #subscribe-loading:hover {
        color: inherit;
    }

.subscribe-message {
    text-align: center;
    font-size: 1.125em;
}

.subscribe-error {
    color: #ffffff;
    position: absolute;
    background: rgba(52, 152, 219,1);
    display: none;
    left: 25px;
    bottom: 60px;
    padding: 5px 10px;
    border-radius: 3px;
}

    .subscribe-error:after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12px;
        border-color: transparent;
        left: 25px;
        bottom: -24px;
    }


/*==========================================
			  Pagination
==========================================*/

.pagination > li > a,
.pagination > li > span {
    color: #181818;
    border: none;
    margin: 0 2px;
    border-radius: 2px;
    font-family: 'Open Sans', sans-serif;
}

    .pagination > li > a:hover,
    .pagination > li > span:hover,
    .pagination > li > a:focus,
    .pagination > li > span:focus {
        color: #181818;
        background-color: #eee;
    }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #181818;
}

.pagination > li.next a,
.pagination > li.prev a {
    opacity: 0.4;
}

    .pagination > li.next a:hover,
    .pagination > li.prev a:hover {
        opacity: 1;
        background-color: transparent;
    }


/*=========================================
	          Scroll to Top
==========================================*/

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-position: center 50%;
    background-image: url(../img/icon/to-top-1.png);
    background-color: #181818;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 1000;
}

    .cd-top.cd-is-visible,
    .cd-top.cd-fade-out,
    .no-touch .cd-top:hover {
        -webkit-transition: opacity .3s 0s, visibility 0s 0s, all .3s ease-in-out;
        -moz-transition: opacity .3s 0s, visibility 0s 0s, all .3s ease-in-out;
        transition: opacity .3s 0s, visibility 0s 0s, all .3s ease-in-out;
    }

    .cd-top.cd-is-visible {
        visibility: visible;
        opacity: 1;
    }

    .cd-top.cd-fade-out {
        opacity: .9;
    }

.no-touch .cd-top:hover {
    background-color: #C5AA6A;
    opacity: 1;
}

.cd-top:hover {
    background-color: #BF9865;
    opacity: 1;
}


/*==========================================
			   Accordion
==========================================*/

.rlAccordion > h3,
.rlAccordion > h4 {
    font-size: 14px;
    margin: 0 auto 10px auto;
    padding: 15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.rlAccordion > h3,
.rlAccordion > h4 {
    cursor: pointer;
}

.rlAccordion > h3 {
    background-color: #52726c;
    border: 1px solid #E1E1E1;
    color: #ffffff;
}

.rlAccordion > h4 {
    background-color: #52726c;
    border: 1px solid #E1E1E1;
    color: #fff;
}

.rlAccordion > h3:hover {
    background-color: #F5F5F5;
}

.rlAccordion > h4:hover {
    background-color: #f5f5f5;
    color: #181818;
}

.rlAccordion > h3 > span,
.rlAccordion > h4 > span {
    float: right;
    font-family: arial, serif, sans-serif;
}

.rlAccordion > h3 > span {
    color: #181818;
}

.rlAccordion > h4 > span {
    color: #C5C5C5;
}

.rlAccordion > h3 + div,
.rlAccordion > h4 + div {
    display: none;
    padding: 2% 5%;
    margin-left: 20px;
}

.rlAccordion > h3 + div,
.rlAccordion > h4 + div {
    border-left: 1px dashed #DBDBDB;
}


/*=========================================
	            Tabs
==========================================*/

/* Tabs 1 */

.tabs-1 #tabs-scale {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .tabs-1 #tabs-scale ul {
        margin-bottom: 80px;
    }

    .tabs-1 #tabs-scale li a {
        padding: 20px;
        background-color: #EFEFEF;
        margin: 0 3px;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 700;
        opacity: 0.80;
        color: #CBCBCB;
    }

        .tabs-1 #tabs-scale li a:hover {
            color: #181818;
            background-color: #F5F5F5;
            border-color: #eee #eee #919191;
        }

.tabs-1 .tabulous_active {
    color: #181818 !important;
    border-color: #eee #eee #212121 !important;
}

    .tabs-1 .tabulous_active .icon {
        opacity: 1;
    }

.tabs-1 a .icon {
    margin-bottom: 20px;
    opacity: 0.40;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tabs-1 a:hover .icon {
    margin-bottom: 20px;
    opacity: 0.10;
}

.tabs-1 #tabs_container {
    overflow: hidden;
    position: relative;
}

.tabs-1 .tabs-img {
    float: left;
    border-right: 1px solid #E1E1E1;
    margin-right: 28px;
    margin-bottom: 30px;
}

.tabs-1 #tabs_container div {
    margin-right: 40px;
    height: auto; /* set height */
    margin-left: 40px;
    padding-bottom: 220px;
}

.tabs-1 .tabulousclear {
    display: block;
    clear: both;
}

.tabs-1 .number {
    padding-right: 25px;
    font-size: 90px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 5px;
    float: left;
    border-right: 1px solid #E1E1E1;
    margin-right: 35px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: auto;
    margin-bottom: auto;
}

    .tabs-1 .number span {
        font-size: 40px;
        margin-right: 5px;
        color: #D8D8D8;
    }

.tabs-1 .title {
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #D8D8D8;
    text-align: left;
    font-weight: 600;
    margin-top: 18px;
}

.tabs-1 p { /* set height div */
    padding-bottom: 15px;
}

/* Tabs 2 */

.tabs-2 #tabs-slide-left {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .tabs-2 #tabs-slide-left ul {
        margin-bottom: 35px;
    }

    .tabs-2 #tabs-slide-left li a {
        padding: 10px;
        background-color: #EFEFEF;
        margin: 0 3px;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 700;
        opacity: 0.80;
        border-radius: 0;
        color: #CBCBCB;
    }

        .tabs-2 #tabs-slide-left li a:hover {
            color: #181818;
            background-color: #F5F5F5;
            border-color: #eee #eee #919191;
        }

.tabs-2 .tabulous_active {
    color: #181818 !important;
    border-color: #eee #eee #212121 !important;
}

.tabs-2 .tabulous_active {
    opacity: 1;
}

.tabs-2 i {
    margin-bottom: 40px;
    position: absolute;
    top: 0;
    left: 10px;
    color: #F3F3F3;
    font-size: 100px;
    z-index: -1;
}

.tabs-2 #tabs_container {
    overflow: hidden;
    position: relative;
}

    .tabs-2 #tabs_container div {
        margin-left: 10px;
        margin-right: 10px;
        height: auto; /* fix height */
        padding-bottom: 220px;
    }

.tabs-2 .tabulousclear {
    display: block;
    clear: both;
}

.tabs-2 .title {
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #000;
    text-align: left;
    margin-top: 18px;
}

/* Tabs 3 */

.tabs-3 #tabs-slide-left-2 {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .tabs-3 #tabs-slide-left-2 ul {
        margin-bottom: 35px;
    }

    .tabs-3 #tabs-slide-left-2 li a {
        padding: 10px;
        margin: 0;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 700;
        opacity: 0.80;
        border-radius: 0;
        color: #CBCBCB;
    }

        .tabs-3 #tabs-slide-left-2 li a:hover {
            color: #181818;
            background-color: #F5F5F5;
            border-bottom-color: #919191;
        }

.tabs-3 .tabulous_active {
    color: #181818 !important;
    border-color: #eee #eee #212121 !important;
}

.tabs-3 .tabulous_active {
    opacity: 1;
}

.tabs-3 #tabs_container {
    overflow: hidden;
    position: relative;
}

    .tabs-3 #tabs_container div {
        margin-left: 10px;
        margin-right: 10px;
        height: auto; /* fix height */
        padding-bottom: 220px;
    }

.tabs-3 .tabulousclear {
    display: block;
    clear: both;
}

.tabs-3 .title {
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #000;
    text-align: left;
    margin-top: 18px;
}

.tabs-3 p { /* set height div */
    padding-bottom: 15px;
}

/* Tabs Transition */

.transition {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    -ms-transition-delay: .3s;
    transition-delay: .3s;
}

.make_transist {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.hidescale {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.showscale {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    -ms-transition-delay: .3s;
    transition-delay: .3s;
}

.hideleft {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.showleft {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    -ms-transition-delay: .3s;
    transition-delay: .3s;
}

.hidescaleup {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.showscaleup {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    -ms-transition-delay: .3s;
    transition-delay: .3s;
}

.hideflip {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: rotatey(-90deg) scale(1.1);
    -moz-transform: rotatey(-90deg) scale(1.1);
    -o-transform: rotatey(-90deg) scale(1.1);
    -ms-transform: rotatey(-90deg) scale(1.1);
    transform: rotatey(-90deg) scale(1.1);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.showflip {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    -ms-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: rotatey(0deg) scale(1);
    -moz-transform: rotatey(0deg) scale(1);
    -o-transform: rotatey(0deg) scale(1);
    -ms-transform: rotatey(0deg) scale(1);
    transform: rotatey(0deg) scale(1);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}


/*=========================================
	            Box Info
==========================================*/

/* Box Info 1 */

.box-info-1 {
    position: relative;
    color: #fff;
    line-height: 1;
    top: 0;
    transition: all 0.2s ease-out;
    padding-top: 70px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 70px;
}

    .box-info-1.box-1 {
        background-color: #747989;
    }

    .box-info-1.box-2 {
        background-color: #181818;
    }

    .box-info-1.box-3 {
        background-color: #4c6575;
    }

.box-info-1-des {
    vertical-align: middle;
    display: table-cell;
}

    .box-info-1-des h4 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .box-info-1-des p {
        font-size: 13px;
        margin-bottom: 0;
        line-height: 20px;
    }

.box-info-1-icon {
    display: table-cell;
    vertical-align: top;
    padding-left: 10px;
}

.box-info-1:hover {
    top: -10px;
}

.box-info-1-icon img {
    margin-left: 50px;
    margin-top: -20px;
}

/* Box Info 2 */

.box-info-2 {
    width: 100%;
    height: 220px;
    background: #fff;
    border: 1px solid #5DBB92;
    border-radius: 2px;
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
    color: #181818;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .box-info-2:hover {
        background-color: #F6F8F8;
        border: 1px solid #C1E5D5;
    }

    .box-info-2 > span {
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
        width: 40px;
        background-color: #fff;
        position: absolute;
        top: 30px;
        left: 0;
        color: #000;
        padding: 10px;
        text-align: center;
        border: 1px solid #B6E0CE;
        font-weight: 600;
    }

    .box-info-2 > .info {
        position: absolute;
        top: 30px;
        left: 60px;
        color: #181818;
        font-weight: 600;
    }

        .box-info-2 > .info:first-line {
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 300;
        }

    .box-info-2 > .numbers {
        font-size: 30px;
        font-family: 'Open Sans', sans-serif;
        color: #5DBB92;
        text-align: center;
        font-weight: 300;
        position: absolute;
        top: 30px;
        right: 20px;
    }

        .box-info-2 > .numbers span {
            font-size: 16px;
        }

    .box-info-2 > .des {
        padding-right: 15px;
        padding-left: 15px;
        top: 60px;
        position: relative;
        font-size: 13px;
    }

/* Box Info 3 */

.box-info-wrap {
    margin-top: -20px;
    margin-left: 60px;
    margin-bottom: 60px;
}

.box-info-3 {
    width: 300px;
    height: 80px;
    display: inline-block;
    border: 1px solid #5DBB92;
    background-color: rgba(246,248,248,0.56);
    position: relative;
}

    .box-info-3 > span {
        display: block;
        width: 50px;
        background-color: #fff;
        position: absolute;
        top: 41px;
        left: -15px;
        color: #A8A8A8;
        font-size: 11px;
        padding: 2px 7px;
        text-align: center;
        border: 1px solid #ABDBC6;
        text-transform: capitalize;
    }

    .box-info-3 > .info {
        display: inline-block;
        position: absolute;
        top: 13px;
        left: 50px;
        color: #181818;
        line-height: 25px;
    }

        .box-info-3 > .info:first-line {
            font-family: 'Open Sans', sans-serif;
            text-transform: uppercase;
            font-size: 10px;
            margin: 10px 0 0 0;
            font-weight: 700;
        }

    .box-info-3 > .numbers {
        font-size: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 300;
        color: #5DBB92;
        display: inline-block;
        position: absolute;
        top: 20px;
        text-align: right;
        right: 20px;
    }

        .box-info-3 > .numbers span {
            font-size: 16px;
        }

/* Box Info 4 */

.box-info-4 {
    width: 300px;
    height: 80px;
    display: inline-block;
    border: 1px solid #5DBB92;
    background: #fff;
}

    .box-info-4:before {
        content: '';
        position: relative;
        display: block;
        width: 295px;
        height: 70px;
        border: 1px solid #C8E7D9;
        background-color: #fff;
        transform: rotate(2deg);
        top: 12px;
        left: 2px;
        z-index: -1;
    }

    .box-info-4:after {
        content: '';
        position: relative;
        display: block;
        width: 295px;
        height: 75px;
        border: 1px solid #C8E7D9;
        background-color: #fff;
        transform: rotate(-2deg);
        top: -136px;
        z-index: -2;
    }

    .box-info-4 > span {
        display: block;
        width: 50px;
        background-color: #fff;
        position: relative;
        top: -54px;
        left: -15px;
        color: #000;
        font-size: 11px;
        padding: 2px 7px;
        text-align: center;
        border: 1px solid #ABDBC6;
    }

    .box-info-4 > .info {
        display: inline-block;
        position: relative;
        top: -77px;
        left: 60px;
        color: #181818;
        font-weight: 600;
        line-height: 25px;
    }

        .box-info-4 > .info:first-line {
            text-transform: uppercase;
            font-size: 10px;
            margin: 10px 0 0 0;
            font-weight: 700;
        }

    .box-info-4 > .numbers {
        font-size: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 300;
        color: #5DBB92;
        display: inline-block;
        position: relative;
        top: -87px;
        left: 115px;
    }

        .box-info-4 > .numbers span {
            font-size: 16px;
        }


/*=========================================
	        Social Network
==========================================*/

.social-fb,
.social-tw,
.social-g,
.social-in {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #181818;
}

    .social-fb:hover {
        background-color: #3b5999;
        color: #FFFFFF;
    }

    .social-tw:hover {
        background-color: #00aced;
        color: #FFFFFF;
    }

    .social-g:hover {
        background-color: #d44332;
        color: #FFFFFF;
    }

    .social-in:hover {
        background-color: #0080b2;
        color: #FFFFFF;
    }

/* Social Network 1 */

.social-1 {
    text-align: center;
    font-size: 15px;
}

    .social-1 ul {
        margin: 0;
        padding: 0;
    }

        .social-1 ul li {
            display: inline-block;
            zoom: 1;
            *display: inline;
        }

            .social-1 ul li a {
                display: block;
                margin: 0 2px;
                border: 1px solid #B9B9B9;
                width: 40px;
                height: 40px;
                line-height: 40px;
                color: #B9B9B9;
            }

                .social-1 ul li a:hover {
                    color: #181818;
                    border: 1px solid #524F4F;
                    background-color: #EFEFEF;
                }

/* Social Network 2 */

.social-2 {
    text-align: center;
    font-size: 15px;
}

    .social-2 ul {
        margin: 0;
        padding: 0;
    }

        .social-2 ul li {
            display: inline-block;
            zoom: 1;
            *display: inline;
        }

            .social-2 ul li a {
                display: block;
                margin: 0 2px;
                border: 1px solid #181818;
                width: 40px;
                height: 40px;
                line-height: 40px;
                color: #B9B9B9;
                border-radius: 50px;
                background-color: #181818;
            }

                .social-2 ul li a:hover {
                    color: #181818;
                    border: 1px solid #181818;
                    background-color: #EFEFEF;
                }

/* Social Network 3 */

.social-3 {
    text-align: center;
    font-size: 15px;
}

    .social-3 ul {
        margin: 0;
        padding: 0;
    }

        .social-3 ul li {
            display: inline-block;
            zoom: 1;
            *display: inline;
        }

            .social-3 ul li a {
                display: block;
                margin: 0 2px;
                border: 1px solid #E3E3E3;
                width: 60px;
                height: 40px;
                line-height: 40px;
                color: #494949;
            }

                .social-3 ul li a:hover {
                    color: #fff;
                    border: 1px solid #181818;
                    background-color: #181818;
                }

/* Social Network 4 */

.social-4 {
    text-align: center;
    font-size: 15px;
}

    .social-4 ul {
        margin: 0;
        padding: 0;
    }

        .social-4 ul li {
            display: inline-block;
            zoom: 1;
            *display: inline;
        }

            .social-4 ul li a {
                display: block;
                margin: 0;
                width: 25px;
                height: 25px;
                line-height: 25px;
                color: #e3e3e3;
            }

                .social-4 ul li a:hover {
                    color: #181818;
                }

/* Social Network 5 */

.social-5 {
    text-align: center;
}

    .social-5 .item {
        width: 120px;
        height: 80px;
        display: inline-block;
        margin: 0 5px;
        font-weight: 500;
        text-align: center;
        line-height: 25px;
        overflow: hidden;
    }

        .social-5 .item:before {
            background-color: #fff;
            display: block;
            font-size: 30px;
            line-height: 70px;
            color: #181818;
            -webkit-transition: font-size 0.2s ease-in-out, line-height 0.2s ease-in-out;
            transition: font-size 0.2s ease-in-out, line-height 0.2s ease-in-out;
            border: 1px solid #000000;
        }

        .social-5 .item:hover:before {
            font-size: 20px;
            line-height: 50px;
            color: #BF9865;
        }

    .social-5 span {
        font-family: 'Open Sans', sans-serif;
        color: #000;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 10px;
    }


/*=========================================
	            Loading
==========================================*/

.page-loading {
    background-color: #141414;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}

    .page-loading .loader {
        background: #BF9865;
        border-radius: 50%;
        height: 50px;
        left: 50%;
        margin-left: -23px;
        margin-top: -14px;
        position: absolute;
        top: 50%;
        width: 50px;
        animation: load 1.1s linear infinite;
    }

        .page-loading .loader:after {
            content: '';
            position: absolute;
            width: 49px;
            height: 49px;
            top: 1px;
            right: 0;
            left: 0;
            margin: auto;
            background-color: #141414;
            border-radius: 50%;
        }

@keyframes load {

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.page-loading .text {
    color: #a2afbc;
    display: block;
    font-size: 11px;
    left: 50%;
    margin-left: -17px;
    margin-top: 50px;
    position: absolute;
    top: 50%;
}


/*=========================================
	        Flexslider
==========================================*/

.flexslider ul.slides {
    margin: 0;
}

.flexslider {
    margin: 0;
    background: transparent;
    border: none;
    position: relative;
    zoom: 1;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    border-radius: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.flex-control-nav {
    width: auto;
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: center;
    z-index: 1000;
}

    .flex-control-nav li {
        margin: 0 5px;
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

        .flex-control-nav li a {
            width: 10px;
            height: 10px;
            background: #a8a8a8;
        }

            .flex-control-nav li:hover a,
            .flex-control-nav li a.flex-active {
                background-color: #fff;
            }


/*==========================================
			     Footer
==========================================*/

/* Footer 1 */

.footer-1 {
    background-color: #181818;
    padding: 50px 0 100px 0; /* only boxed layout */
    color: #707070;
}

    .footer-1 a {
        font-weight: 600;
    }

        .footer-1 a:hover {
            color: #A67C45;
        }

    .footer-1 .title {
        color: #D3D3D3;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .footer-1 hr {
        margin-top: 10px;
        margin-bottom: 10px;
        border: 0;
        border-top: 1px solid #2C2C2C;
    }

    .footer-1 p {
        font-size: 12px;
    }

    .footer-1 .about {
        margin: 0;
    }

    .footer-1 .address ul {
        font-size: 12px;
        margin: 0;
        padding: 0;
        font-weight: 600;
        line-height: 1.3;
    }

    .footer-1 .twitter ul {
        font-size: 12px;
        margin: 0;
        padding: 0;
        display: block;
    }

    .footer-1 .twitter span {
        color: #919191;
        margin-left: 15px;
    }

    .footer-1 .social-4 {
        text-align: left;
        font-size: 13px;
    }

        .footer-1 .social-4 ul {
            margin: 0;
            padding: 0;
        }

            .footer-1 .social-4 ul li {
                display: inline-block;
                zoom: 1;
                *display: inline;
            }

                .footer-1 .social-4 ul li a {
                    display: block;
                    margin: 0 9px;
                    width: 20px;
                    height: 20px;
                    line-height: 20px;
                    color: #494949;
                }

                    .footer-1 .social-4 ul li a:hover {
                        color: #CBCBCB;
                    }

/* Footer 2 */

.footer-2 {
    background-color: #1E1F20;
    padding: 70px 0 30px 0; /* only boxed layout */
    color: #707070;
}

    .footer-2 a:hover {
        color: #A67C45;
    }

    .footer-2 .logo {
        font-size: 36px;
        font-weight: 900;
    }

        .footer-2 .logo span {
            color: #50525A;
        }

    .footer-2 .title {
        color: #D3D3D3;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-2 .menu ul {
        margin-top: 20px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 20px;
        padding: 0;
    }

        .footer-2 .menu ul li {
            text-transform: uppercase;
            font-size: 11px;
            font-weight: 600;
            display: inline-block;
            letter-spacing: 1px;
        }

            .footer-2 .menu ul li a {
                color: #D3D3D3;
            }

            .footer-2 .menu ul li span {
                margin-left: 3px;
                margin-right: 3px;
            }

            .footer-2 .menu ul li a:hover {
                color: #A67C45;
            }

    .footer-2 .address ul {
        font-size: 12px;
        margin: 0;
        padding: 0;
        font-weight: 600;
        line-height: 1.3;
    }

    .footer-2 .recent-post ul {
        margin: 0;
        padding: 0;
    }

        .footer-2 .recent-post ul li {
            display: inline-block;
            margin: 4px 2px;
        }

            .footer-2 .recent-post ul li a:hover {
                opacity: 0.60;
            }

    .footer-2 .recent-post img {
        display: inline-block;
        height: 55px;
        width: 55px;
    }

    .footer-2 .twitter ul {
        font-size: 12px;
        margin: 0;
        padding: 0;
        color: #707070;
        font-weight: 600;
    }

        .footer-2 .twitter ul li {
            border-bottom: 1px solid #303030;
            padding-bottom: 5px;
            font-size: 12px;
            font-weight: 600;
        }

            .footer-2 .twitter ul li p {
                padding-top: 10px;
            }

    .footer-2 .twitter .author {
        font-weight: 600;
        margin-right: 6px;
    }

    .footer-2 .twitter .posted {
        font-weight: 600;
        margin-left: 6px;
        font-size: 11px;
        color: #707070;
    }

    .footer-2 .twitter i {
        font-size: 14px;
        font-weight: 600;
        margin-right: 8px;
    }

    .footer-2 .social {
        margin-top: 25px;
    }

        .footer-2 .social a {
            display: inline-block;
            width: 30px;
            height: 30px;
            cursor: pointer;
            background-color: #292B2C;
            border-radius: 2px;
            font-size: 15px;
            color: #484B4F;
            text-align: center;
            line-height: 30px;
            margin-right: 3px;
            margin-bottom: 5px;
        }

            .footer-2 .social a:hover {
                background-color: #444849;
                color: #BF9865;
            }

    .footer-2 .sub {
        background-color: #25282B;
        margin: 90px 0 0 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-2 .copyright p {
        font-size: 11px;
        line-height: 1.2; /* responsive */
        font-weight: 600;
    }

    .footer-2 .terms p {
        font-weight: 600;
        text-align: right;
        text-transform: uppercase;
        font-size: 10px;
        line-height: 1.8; /* responsive */
    }

        .footer-2 .terms p span {
            margin-right: 8px;
            margin-left: 8px;
            color: #fff;
            font-weight: 100;
        }

/* Footer 3 */

.footer-3 {
    font-family: 'Open Sans', sans-serif;
    background-color: #121314;
    padding: 90px 0 30px 0; /* only boxed layout */
    color: #707070;
    text-align: center;
}

    .footer-3 a {
        color: #fff;
    }

        .footer-3 a:hover {
            color: #707070;
        }

    .footer-3 .logo {
        font-size: 36px;
        margin: 0;
        font-weight: 900;
        color: #FFFFFF;
    }

        .footer-3 .logo span {
            color: #707070;
        }

    .footer-3 .icon {
        font-size: 20px;
        color: #fff;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .footer-3 .info {
        font-size: 10px;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-3 .des {
        font-size: 11px;
    }

    .footer-3 .sub {
        background-color: #28282A;
        margin: 90px 0 0 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer-3 .social ul {
        margin: 0;
        padding: 0;
        text-align: center;
    }

        .footer-3 .social ul li {
            display: inline-block;
            zoom: 1;
            *display: inline;
        }

            .footer-3 .social ul li a {
                display: block;
                margin: 0 2px;
                border: 1px solid #181818;
                width: 30px;
                height: 30px;
                line-height: 30px;
                color: #fff;
                border-radius: 50px;
                background-color: #181818;
                font-size: 11px;
            }

                .footer-3 .social ul li a:hover {
                    color: #181818;
                    border: 1px solid #313133;
                    background-color: #EFEFEF;
                }

    .footer-3 .terms {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 10px;
        line-height: 1.8; /* responsive */
        letter-spacing: 1px;
    }

        .footer-3 .terms span {
            margin-right: 8px;
            margin-left: 8px;
            color: #DDDDDE;
            font-weight: 100;
        }

    .footer-3 .copyright {
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 0;
    }

.left-testeficacia {
    padding-left: 30px;
    border-left: 3px solid #5d8b7d;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 35px;
    background: rgba(255, 255, 255, 0.06);
}

    .left-testeficacia h3 {
        color: #52726c;
    }

.title-metodo {
    color: #52726c;
}

.box-u i {
    color: #52726c !important;
}

.mosq-1 {
    padding: 0px !important;
    box-shadow: 0 0 10px #000;
}

.mosq-2 {
    padding: 0px !important;
    margin: 110px 0 0 -130px;
    box-shadow: 0 0 10px #000;
    z-index: 8;
}

.mosq-3 {
    padding: 0px !important;
    margin: 30px 0 0 -80px;
    box-shadow: 0 0 10px #000;
}
