/*
Theme Name: El Kenz
Theme URI: http://www.elkenz.tv
Author: OVERGEN
Author URI: http://www.overgen.com
Description: Un voyage improvisé riche en aventures et en découvertes.
Version: 1.0
Tags: fluid-layout, responsive-layout, accessibility-ready, translation-ready, parallax
License: GNU General Public License v3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
@CHARSET "ISO-8859-1";

/* prevent the scroll (on Chrome mobile)
------------------------------------------------------*/
.wrapper-kenz {
    min-height: 460px;
    position: absolute;
    overflow: hidden;
    display: table;
    width: 100%;
    left: 0;
    top: 0;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.gallery-caption {

}

.bypostauthor {

}

/* ---------------------------------------- */
/* G E N E R A L    S T Y L E
/* ---------------------------------------- */
*, body {
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a, a:hover {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: #fff;
    font-size: 16px;

}

:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    font-size: 16px;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    font-size: 16px;
}

:-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
}

.parallax {
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
}

.template-wrap {
    position: relative;
}

.display-none {
    display: none;
}

.site-inner {

}

.btn.btn-oe {
    color: #000;
    font-size: 16px;
    border: 2px solid #000;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 5px 25px;
    /*TRANSISTIONS*/
    -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;
}

.popup-video {
    color: #000;
    font-size: 40px;
}

.popup-video .icon-play-video {
    width: 50px;
    height: 50px;
    text-align: center;
    display: inline-block;
    border: 2px solid #000;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
}

.popup-video .icon-play-video i {
    line-height: 3.4;
    font-size: 14px !important;
    display: block;
}

.color-white .popup-video .icon-play-video {
    border-color: #fff;
}

.background {
    background-color: #BEC2AD;
    height: 100%;
}

/* ---------------------------------------- */
/*  P R E L O A D I N G   S T Y L E
/* ---------------------------------------- */
.mask-color {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background-color: #fff;
}

.mask-color-port {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: rgba(255, 255, 255, .6);
    display: none;
}

#preview-area {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 60px;
    right: 0;
    margin: auto auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.spinner {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: rotate-pin 2.0s infinite linear;
    animation: rotate-pin 2.0s infinite linear;
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: bounce-pin 2.0s infinite ease-in-out;
    animation: bounce-pin 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes rotate-pin {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes bounce-pin {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce-pin {
    0%, 100% {
        transform: scale(0.0)
    }
    50% {
        transform: scale(1.0)
    }
}

/* ------------------------------------------------ */
/* A N I M A T I O N   S T Y L E
/* ------------------------------------------------ */
.elkenz-animation-wrapper {
    /*position:relative;
	overflow:hidden;*/
    margin-top: -100px;
    background-image: url("images/sky_bg.png");
    background-size: cover;
    min-height: 750px;
}

.elkenz-episode {
    float: right;
    background: url("images/episode_bg.png") no-repeat;
    background-size: contain;
    min-height: 300px;
    min-width: 320px;
    margin: 50px 50px 0 0;
    text-align: center;
}

.elkenz-video {
    margin: 70px 0 0 0;
    display: inline-block;
    width: 80%;
}

.elkenz-video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.elkenz-video-container iframe, .elkenz-video-container object, .elkenz-video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 2px 12px #888888;
}

.elkenz-video-container a {
    position: absolute;
    top: 0;
    left: 5px;
    width: 100%;
    z-index: 10;
    font-size: 95px;
}

.elkenz-prod {
    float: right;
    background: url("images/prod_bg.png") no-repeat;
    background-size: contain;
    min-height: 200px;
    min-width: 220px;
    margin: 280px -320px 0 0;
    text-align: center;
}

.elkenz-prod-container {
    position: relative;
    max-width: 220px;
}

.elkenz-prod-container img {
    display: block;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}

.fill {
    position: absolute;
    bottom: 0%;
    right: 0%;
    left: 0%;
    top: 0%;
}

.scene {
    padding: 0;
    margin: 0;
}

.animcontainer {
    position: absolute;
    top: 0;
    /* max-width: 600px; */
    /* margin: 0 auto; */
    /* padding: 5%; */
    height: 100%;
    width: 100%;
    /*overflow-x: hidden;*/
}

.animcontainer img {
    display: block;
    width: 100%;
}

/* ------------------------------------------------ */
/* S L I D E R   S T Y L E
/* ------------------------------------------------ */

.owl-item .item img {
    display: block;
    width: 100%;
    height: auto;
}

.text-slider {
    width: 570px;
    position: absolute;
    left: 15%;
    top: 20%;
    opacity: 0;
    /*TRANSISTIONS*/
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.owl-item.active .item .text-slider {
    left: 20%;
    opacity: 1;
}

.text-slider p {
    line-height: 1.2;
    font-size: 65px;
    color: #fefeff;
}

.scroll-down {
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin-right: 20px;
    position: relative;
    vertical-align: middle;
}

.img-scroll-down {
    background: url(images/arrow.png) no-repeat;
    height: 17px;
    width: 17px;
    position: absolute;
    background-position: -68px 0px;
    display: inline-block;
    vertical-align: middle;
    left: 50%;
    top: 50%;
    margin-left: -9px;
    margin-top: -9px;
}

a#scroll_to {
    z-index: 999999;
    color: #fff;
    font-size: 24px;
    margin-top: 30px;
    display: block;
}

.arrow-left-slider, .arrow-right-slider {
    width: 17px;
    height: 17px;
    display: block;
    background: url(images/arrow.png) no-repeat;
    background-position: -35px 0px;
}

.arrow-right-slider {
    background-position: -53px 0px;
}

/* ---------------------------------------- */
/*  C O N T A C T  B L O C K  S T Y L E
/* ---------------------------------------- */
.contact-wrapper {
    text-align: center;
}

/* ---------------------------------------- */
/*  C L I E N T  S T Y L E
/* ---------------------------------------- */
.client-wrapper {
    display: block;
}

.client-img {
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
}

/* ---------------------------------------- */
/*  B L O G  B L O C K  S T Y L E
/* ---------------------------------------- */
.et-post-data {
    width: 100%;
}

.et-post-data-right ul.post-categories {
    list-style: none;
    padding: 0;
    display: inline-block;
}

.et-post-data-right ul.post-categories li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.et-blog-post {
    margin-bottom: 40px;
}

.et-post-excerpt p {
    font-size: 16px;
}

.image-blog-wrapper {
    border-bottom: 4px solid;
    margin-bottom: 30px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.image-blog-wrapper img {
    min-height: 300px;
}

.et-post-data-left {
    text-align: center;
}

.et-post-data-left.mobile-blog {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 25px;
}

.et-post-data-left.mobile-blog .et-post-month, .et-post-data-left.mobile-blog .et-post-heart, .et-post-heart i, .et-post-data-left.mobile-blog .et-post-date {
    color: #fff;
}

.et-post-data-left.mobile-blog .et-post-date {
    border-color: #fff !important;
}

.et-post-data-right {
    border-left: 1px solid #95a5a5;
}

.et-post-month, .et-post-heart, .et-post-heart i {
    color: #f6d487;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
}

.et-post-date {
    color: #f6d487;
    font-size: 32px;
    display: block;
    line-height: .8;
    padding-bottom: 30px;
    border-bottom: 1px solid #f6d487;
    margin-bottom: 20px;
}

.et-post-heart {
    font-size: 16px;
}

h1.title-blog {
    color: #000;
    font-size: 24px;
    margin-top: 0;
}

h1.title-blog a {
    color: #000;
    /*TRANSISTIONS*/
    -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;
}

.et-post-info, .et-post-info a {
    font-size: 13px;
    color: #babfc6;
}

.read-more {
    color: #000;
    /*TRANSISTIONS*/
    -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;
}

.view-all-blog-wrapper {
    display: block;
    text-align: center;
}

.view-all-blog {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.view-all-blog, .view-all-blog * {
    /*TRANSISTIONS*/
    -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;
}

.view-all-blog, .view-all-blog span i {
    color: #bdc3c7;
    font-size: 14px;
    text-transform: uppercase;
}

.view-all-blog span i {
    font-size: 16px;
    display: block;
    line-height: 2.5;
}

.view-all-blog span {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #bdc3c7;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: relative;
    text-align: center;
    margin: 0 auto 10px;
}

.blog-header {
    width: 100%;
    overflow: hidden;
}

.blog-header img {
    max-width: 100%;
    height: auto;
}

.post-content img {
    max-width: 100%;
    height: auto;
}

#comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.oe-comment-list ul.children {
    margin-left: 96px !important;
    margin-top: 30px !important;
}

.oe-comment-thumbnail img {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.blog-header-wrapper {
    height: 300px;
    margin-bottom: 50px;
    position: relative;
}

.blog-header-img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-position: bottom center;
}

.blog-page {
    margin-top: 150px !important;
}

.single-blog {
    border-right: 1px solid #f6d487;
}

.single-blog-mobile {
    display: none;
}

.et-post-data-left.single-blog a.home-icon {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #f6d487;
    text-align: center;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto;
    /*TRANSISTIONS*/
    -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;
}

.et-post-data-left.single-blog a.home-icon i {
    display: block;
    line-height: 2.3;
    font-size: 16px;
    color: #f6d487;
    /*TRANSISTIONS*/
    -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;
}

.et-post-data-left.single-blog .et-post-month {
    border-top: 1px solid #f6d487;
    padding-top: 30px;
    margin-top: 20px;
}

.social-share.single-blog-share {
    margin-top: 0 !important;
}

.social-share.single-blog-share ul.social {
    float: none !important;
}

.social-share.single-blog-share ul.social li {
    display: block !important;
    margin-bottom: 30px;
}

.title-single {
    color: #000;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 20px;
}

.post-tags {
    border-top: 1px solid #000;
    padding: 30px 0 0;
    margin: 30px 0 0;
}

.post-tags a {
    color: #bdc3c7;
    margin-left: 5px;
    font-size: 14px;
    /*TRANSISTIONS*/
    -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;
}

.post-tags a:hover {
    color: #9b59b6;
}

.next-post-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 50px;
    background: #cacaca;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

.next-post-container img {
    width: 100%;
    height: auto;
    position: absolute;
}

.post-content blockquote {
    margin-left: 30px;
    border-left: 3px solid #9b59b6;
}

.comment-wrap {
    margin-top: 30px;
    /*border-top:1px solid #000;*/
}

.oe-comments-title {
    margin-bottom: 30px;
    color: #3b3b3b;
    font-size: 24px;
}

.oe-comment-left {
    overflow: hidden;
    float: left;
    margin-right: 30px;
}

.oe-comment-right {
    overflow: hidden;
    position: relative;
}

.oe-comment-author {
    display: block;
    color: #5f6f81;
    font-size: 16px;
    line-height: 1;
}

.oe-comment-time {
    color: #bdc3c7;
    font-size: 14px;
}

.oe-comment-content {
    margin-top: 10px;
}

.oe-comment-content p {
    color: #5f6f81;
    font-size: 16px;
}

.comment-reply-link {
    position: absolute;
    right: 0;
    top: 0;
    /*TRANSISTIONS*/
    -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;
}

.oe-comment-list > li {
    margin-bottom: 30px;
}

#et_respond {
    border: 1px solid #000;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 30px;
    margin-top: 40px;
}

#reply-title {
    color: #3b3b3b;
    font-size: 24px;
    margin-top: 0;
}

.comment-form p {
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
}

.comment-form-author input, .comment-form-email input, .comment-form-url input, .comment-form-comment textarea {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #f1f1f1;
    box-shadow: none;
    padding: 15px 20px;
    width: 100%;
    border: none;
}

.before-text {
    opacity: .6;
    color: #5f6f81;
    font-size: 16px;
}

.form-submit input[type="submit"] {
    margin-top: 10px;
    color: #000;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #000;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 5px 25px;
    float: left;
    -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;
    background: none;
    float: right;
    box-shadow: none;
}

.blog-filter-container {
    overflow: hidden;
}

.blog-filer {
    text-align: center;
    margin-bottom: 30px;
}

.blog-filer ul {
    list-style: none;
}

.blog-filer ul li {
    display: inline-block;
    margin-right: 10px;
}

.blog-filer ul li a {
    color: #bdc3c7;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #bdc3c7;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 5px 25px;
    float: left;
    /*TRANSISTIONS*/
    -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;
}

.blog-filer ul li.active a, .blog-filer ul li:hover a {
    color: #fff;
    background: #000;
    border-color: #000;
}

/* ---------------------------------------- */
/*  P O R T F O L I O  B L O C K  S T Y L E
/* ---------------------------------------- */
.portfolio-cat-wrapper {
    margin-bottom: 30px;
}

ul.portfolio-category {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.portfolio-category {
    text-align: center;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 30px;
}

ul.portfolio-category li {
    display: inline-block;
    margin: 10px 50px;
}

ul.portfolio-category li a span.icon-categories {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #bdc3c7;
    margin: 0 auto 5px;
    /*TRANSISTIONS*/
    -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;
}

ul.portfolio-category li a span.icon-categories i {
    color: #bdc3c7;
    font-size: 16px;
    line-height: 2.3;
    /*TRANSISTIONS*/
    -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;
}

ul.portfolio-category li a {
    color: #bdc3c7;
    font-size: 18px;
    display: inline-block;
    /*TRANSISTIONS*/
    -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;
}

.portfolio-list {
    overflow: hidden;
}

.portfolio-list .item {
    margin: 0 !important;
    line-height: 0;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

ul.portfolio-category li a:hover span.icon-categories, ul.portfolio-category li a.active span.icon-categories {
    border-color: #000;
}

ul.portfolio-category li a:hover span.icon-categories i, ul.portfolio-category li a:hover, ul.portfolio-category li a.active span.icon-categories i, ul.portfolio-category li a.active {
    color: #000;
}

#portfolio_content {
    margin-top: 70px;
    display: none;
    padding-top: 30px;
}

.port-content {
    position: relative;
    margin-bottom: 60px;
}

.port-control {
    text-align: center;
}

.thumbnail-img img {
    display: block;
    width: 100%;
    height: auto;
}

.prev, .next {
    color: #bdc3c7;
    font-size: 12px;
    position: relative;
    text-transform: uppercase;
    /*TRANSISTIONS*/
    -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;
}

.arrow-port {
    width: 17px;
    height: 17px;
    background: url(images/arrow.png) no-repeat center center;
    background-position: 0 0;
    display: inline-block;
    position: relative;
    top: 5px;
}

.arrow-port.left {
    left: -20px;
}

.arrow-port.right {
    background-position: -17px 0;
    right: -20px;
}

.close-port {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    display: inline-block;
    margin: 0 50px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #bdc3c7;
    text-align: center;
    /*TRANSISTIONS*/
    -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;
}

.close-port i {
    font-size: 16px;
    color: #bdc3c7;
    display: block;
    line-height: 2.3;
    /*TRANSISTIONS*/
    -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;
}

.title-port-wrapper {
    margin-bottom: 40px;
}

.title-port-wrapper .title-port {
    text-align: center;
    color: #000;
    font-size: 32px;
    margin: 30px 0 10px;
}

.title-port-wrapper .category {
    color: #5f6f81;
    display: block;
    text-align: center;
    font-size: 18px;
}

.social-share {
    margin-top: 10px;
}

.btn.get-in-touch {
    color: #000;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #000;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 5px 25px;
    float: left;
    /*TRANSISTIONS*/
    -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;
}

.social-share ul.social {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}

.social-share ul.social li {
    display: inline-block;
    margin-left: 10px;
}

.social-share ul.social li a {
    display: block;
    width: 30px;
    height: 30px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #f6d487;
    text-align: center;
    /*TRANSISTIONS*/
    -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;
}

.social-share ul.social li a i {
    color: #fff;
    display: block;
    line-height: 2.4;
}

/**** Hover Effect ****/
#portfolio_list div.item a div.hover {
    position: absolute;
    background: #333;
    background: rgba(142, 68, 173, 0.8);
    width: 100%;
    height: 100%;
}

#portfolio_list div.item a div.hover span {
    display: block;
    width: 40px;
    height: 40px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: solid 2px #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

#portfolio_list div.item a div.hover span i {
    color: #fff;
    font-size: 16px;
    display: block;
    line-height: 2.3;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

/* END / WORK */
/* ---------------------------------------- */
/*  V I D E O  B L O C K   S T Y L E
/* ---------------------------------------- */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    min-width: 100%;
    min-height: 100%;
}

.video-wrapper {
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------------ */
/* L O A D I N G   S T Y L E
/* ------------------------------------------------ */
.loading-wrapper {
    display: none;
}

.bubblingG {
    text-align: center;
    width: 80px;
    height: 50px;
    margin: 0 auto;
}

.bubblingG span {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 25px auto;
    background: #cc467c;
    -moz-border-radius: 50px;
    -moz-animation: bubblingG 1.3s infinite alternate;
    -webkit-border-radius: 50px;
    -webkit-animation: bubblingG 1.3s infinite alternate;
    -ms-border-radius: 50px;
    -ms-animation: bubblingG 1.3s infinite alternate;
    -o-border-radius: 50px;
    -o-animation: bubblingG 1.3s infinite alternate;
    border-radius: 50px;
    animation: bubblingG 1.3s infinite alternate;
}

#bubblingG_1 {
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

#bubblingG_2 {
    -moz-animation-delay: 0.39s;
    -webkit-animation-delay: 0.39s;
    -ms-animation-delay: 0.39s;
    -o-animation-delay: 0.39s;
    animation-delay: 0.39s;
}

#bubblingG_3 {
    -moz-animation-delay: 0.78s;
    -webkit-animation-delay: 0.78s;
    -ms-animation-delay: 0.78s;
    -o-animation-delay: 0.78s;
    animation-delay: 0.78s;
}

@-moz-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color: #cc467c;
        -moz-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -moz-transform: translateY(-21px);
    }

}

@-webkit-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color: #cc467c;
        -webkit-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -webkit-transform: translateY(-21px);
    }

}

@-ms-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color: #cc467c;
        -ms-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -ms-transform: translateY(-21px);
    }

}

@-o-keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color: #cc467c;
        -o-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -o-transform: translateY(-21px);
    }

}

@keyframes bubblingG {
    0% {
        width: 10px;
        height: 10px;
        background-color: #cc467c;
        transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        transform: translateY(-21px);
    }
}

/* ---------------------------------------- */
/*  H E A D E R   S T Y L E
/* ---------------------------------------- */
header {
    width: 100%;
    position: relative;
    /*border-bottom:1px solid #bdc3c7;*/
    background-image: url("images/menu_bg.png");
    background-position-y: 0;
    z-index: 100;
    height: 99px;
}

/* --------- MENU -------- */
#main-menu-top {
    text-align: right;
    margin-top: -10px;
}

#main-menu-top .main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

#main-menu-top .main-menu li {
    display: inline-block;
}

#main-menu-top .main-menu li a {
    height: 90px;
    text-transform: uppercase;
    padding: 40px 15px;
    display: block;
    border-bottom: 2px solid transparent;
    /*TRANSISTIONS*/
    -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;
}

#main-menu-top .main-menu li a:hover, #main-menu-top .main-menu li a.active {
    /*border-bottom-color:#59402d;*/
    text-shadow: 0px 2px 1px #edffe3;
}

#header.stuck-sticky {
    position: fixed;
    top: 0;
    /*background: #fff;*/
    z-index: 999;
}

/* --------- LOGO -------- */
.logo {
    position: relative;
}

.logo-wrapper {
    position: relative;
}

.logo a {
    display: inline-block;
}

.logo a .logo-img {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #000;
    position: relative;
    text-align: center;
    top: 18px;
    overflow: hidden;
}

.logo a .logo-img span {
    color: #fff;
    display: block;
    margin-top: 10px;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    font-size: 22px;
    font-weight: 700;
}

.logo a .logo-img.logo-white {
    background: #fff !important;
}

.logo a .logo-img.logo-white span {
    color: #000 !important;
}

/* ---------------------------------------- */
/*  H E A D E R   S T Y L E
/* ---------------------------------------- */
.list-services-wrapper {
}

.list-services-wrapper .service-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.list-services-wrapper .service-wrapper .icon {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.list-services-wrapper .service-wrapper .icon i {
    font-size: 20px;
    color: #000;
    line-height: 2.2;
}

.list-services-wrapper .service-wrapper h2.title {
    color: #000;
    font-size: 22px;
    font-weight: 400;
}

.list-services-wrapper .service-wrapper p {
    padding: 0 5px;
    font-weight: 300;
    font-size: 16px;
}

/* ---------------------------------------- */
/*  H E A D I N  G   T I T L E   S T Y L E
/* ---------------------------------------- */
.heading-title-wrapper {
    padding: 0 20%;
    text-align: center;
}

.heading-title-wrapper h2.title {
    color: #000;
    margin-bottom: 10px;
    font-size: 32px;
}

.heading-title-wrapper .line-title {
    width: 35px;
    height: 4px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.heading-title-wrapper span.sub-title {
    color: #262729;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
}

/* ---------------------------------------- */
/*  T I M E L I N E   A B O U T   S T Y L E
/* ---------------------------------------- */
.timeline-wrapper {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 630px;
}

.timeline-wrapper li {
    display: block;
    margin-bottom: 30px;
}

.line-wrapper {
    text-align: center;
}

.line-wrapper .line-horizal {
    width: 24px;
    height: 2px;
    background-color: #95a5a5;
    display: block;
    margin: 0 auto;
}

.line-wrapper .line-vertical {
    width: 2px;
    height: 55px;
    background-color: #95a5a5;
    display: block;
    margin: 0 auto;
}

.line-wrapper .line-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #95a5a5;
    display: block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin: 10px auto 20px;
    color: #95a5a5;
    font-size: 14px;
    font-weight: bold;
    line-height: 3.2;
}

.timeline-wrapper .text-wrapper {
    position: relative;
    text-align: center;
}

.timeline-wrapper .text-wrapper .detail {
    width: 370px;
    margin: 0 auto;
    z-index: 999;
    position: relative;
}

.timeline-wrapper .text-wrapper .detail h2 {
    font-size: 22px;
    color: #000;
}

.timeline-wrapper .text-wrapper .detail p {
    font-size: 16px;
}

.maks-black {
    background: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.time-line-color-white {
    color: #fff !important;
}

/* ------------------------------------------------ */
/* F O O T E R   S T Y L E
/* ------------------------------------------------ */
footer {
    padding: 0 0 200px 0;
    position: relative;
    /*padding: 0 0 20px 0;
	background-image: url("images/footer_bg.png");
	background-size: cover;*/
}

.footer-img {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 0;
}

.site-info {
    text-align: center;
    margin-top: -20px;
}

.social-footer {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.social-footer li {
    display: inline-block;
    margin: 15px;
    padding-right: 15px;
    /*margin-left: 0;
	border-right: 1px solid #fff;*/
    font-size: 18px;
}

.social-footer li a i {
    color: #fff;
    /*TRANSISTIONS*/
    -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;
}

.social-footer li:last-child {
    border: 0;
}

.list-contact-wrapper {
    margin-top: 50px;
}

.list-contact-wrapper .contact-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.list-contact-wrapper .contact-wrapper .icon {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.list-contact-wrapper .contact-wrapper .icon i {
    font-size: 20px;
    color: #fff;
    line-height: 2.2;
}

.list-contact-wrapper .contact-wrapper p {
    padding: 0 5px;
    font-weight: 300;
    font-size: 16px;
    margin-top: 15px;
    color: #fff;
}

.copyright {
    font-size: 14px;
    /*color:#fff;*/
    color: #59402d;
}

.copyright a {
    color: #59402d;
    text-decoration: none;
}

/* ------------------------------------------------ */
/* C O N T A C T  F O R M  S T Y L E
/* ------------------------------------------------ */
.contact-form-wrapper {
    width: 830px;
    border: 2px solid #fff;
    margin: 30px auto;
    padding: 30px 30px 60px;
}

.contact-form-wrapper h2.contact-title {
    text-align: center;
    color: #fff;
    margin-top: 0;
    margin-bottom: 40px;
}

.contact-name, .contact-email {
    width: 48%;
    float: left;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}

.contact-message {
    width: 100%;
    border-bottom: 2px solid #fff;
}

.contact-email {
    float: right;
}

.contact-name input, .contact-email input, .contact-message textarea {
    width: 100%;
    background: none;
    box-shadow: none;
    border: none;
    padding: 10px 0;
    outline-style: none;
    color: #fff;
}

.contact-name input, .contact-email input:focus {
    outline-style: none;
}

.contact-form-wrapper input[type="submit"] {
    color: #fff;
    background: none;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #fff;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 5px 40px;
    margin-top: 20px;
    float: right;
    /*TRANSISTIONS*/
    -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;
}

/* ------------------------------------------------ */
/* P I E C H A R T   S T Y L E
/* ------------------------------------------------ */
.chart {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    text-align: center;
}

.chart canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.percent-chart {
    display: inline-block;
    z-index: 2;
    font-size: 30px;
}

.percent-chart:after {
    content: '%';
    margin-left: 0.1em;
    font-size: 25px;
    font-weight: 500;
}

.pie-column {
    text-align: center;
    margin-bottom: 25px;
}

.pie-content h2 {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 22px;
    color: #000;
}

/* ------------------------------------------------ */
/* T E A M S B L O C K   S T Y L E
/* ------------------------------------------------ */
.image-team-wrapper {
    float: left;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin-right: 10px;
    width: 125px;
    height: 125px;
    overflow: hidden;
}

.team-info {
    float: left;
    margin-left: 20px;
}

.team-info ul.social-info {
    list-style: none;
    padding: 0;
}

.team-info ul.social-info li {
    display: inline-block;
    margin-right: 10px;
}

.team-info .team-name {
    font-size: 22px;
    display: block;
    margin-bottom: 0;
}

.social-share.team-social .social {
    float: left !important;
}

.social-share.team-social .social li {
    margin-left: 0;
    margin-right: 10px;
}

.et-team-post {
    margin-bottom: 30px;
}

/* ------------------------------------------------ */
/* T E S T I M O N I A L   R E S P O N S I V E   S T Y L E
/* ------------------------------------------------ */
.testimonial-wrapper ul {
    padding: 0
}

.avatar-wrapper {
}

#test_avatar .item {
    margin: 0 30px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: block;
    border: 3px solid #fff;
    overflow: hidden;
    /*TRANSISTIONS*/
    -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;
}

.quote-charater {
    background: url(images/arrow.png) no-repeat;
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 10px;
    background-position: -85px 0;
}

#test_avatar {
    width: 600px;
    margin: 0 auto 15px;
}

#test_avatar .owl-item.active.synced .item {
    transform: scale(1.7, 1.7);
    -moz-transform: scale(1.7, 1.7);
    -webkit-transform: scale(1.7, 1.7);
}

.test_content {
    text-align: center;
}

#test_avatar .owl-wrapper-outer {
    height: 120px;
    padding: 0 10px;
}

#test_avatar .owl-wrapper {
    top: 30px;
}

#test_content .item p {
    color: #5f6f81;
    font-size: 18px;
    font-style: italic;
    text-align: center;
    width: 60%;
    margin: 10px auto 15px;
}

#test_content .item .name-client {
    display: block;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
}

/* ------------------------------------------------ */
/* C O U N T E R S   S T Y L E
/* ------------------------------------------------ */
.counter-wrapper {
    overflow: hidden;
    display: block;
}

.counter {
    text-align: center;
    margin-bottom: 30px;
}

.counter .counter-title {
    font-size: 22px;
    display: block;
    margin: 0;
}

.counter .timer {
    font-size: 48px;
    color: #000;
    display: block;
    line-height: 1.2;
}

/* ------------------------------------------------ */
/* P R I C I N G  S T Y L E
/* ------------------------------------------------ */
.pricing-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #fff;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.pricing-wrapper.main-pricing {
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Chrome, Safari, Opera */
    transform: scale(1.2);
    border: 2px solid #eb6a4b;
    z-index: 9;
}

.pricing-wrapper.main-pricing .popular {
    position: absolute;
    color: #ba492b;
    text-transform: uppercase;
    left: 0;
    right: 0;
    text-align: center;
    top: 15px;
}

.pricing-wrapper.main-pricing .pricing-title {
    font-size: 15px;
    padding-top: 30px;
}

.pricing-wrapper.main-pricing .pricing-list-option li span {
    padding: 8px 0;
}

.pricing-wrapper.main-pricing .pricing-title, .pricing-wrapper.main-pricing .pricing-sign-up {
    background: #eb6a4b;
}

.pricing-title {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    background: #5f6e81;
    color: #fff;
    margin: 0;
    padding: 10px 0;
    min-height: 66px;
}

.pricing-title span {
    font-size: 30px;
}

.pricing-list-option {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.pricing-list-option li {
    display: block;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-list-option li span {
    display: block;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 400;
}

.pricing-sign-up {
    background: #5f6e81;
    color: #fff;
    margin: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    padding: 7px 0 15px;
    min-height: 50px;
    /*TRANSISTIONS*/
    -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;
}

.pricing-sign-up:hover {
    background: #eb6a4b;
    color: #fff;
}

/* ------------------------------------------------ */
/* M E N U   R E S P O N S I V E   S T Y L E
/* ------------------------------------------------ */
/*
    Mobile Menu Core Style
*/
.menu-responsive {
    position: relative;
    z-index: 999;
}

.slicknav_btn {
    position: relative;
    display: block;
    vertical-align: middle;
    float: right;
    padding: 0.438em 0.625em 0.438em 0.625em;
    line-height: 1.125em;
    cursor: pointer;
}

.slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left;
}

.slicknav_menu .slicknav_icon {
    float: left;
    margin: 0.188em 0 0 0.438em;
}

.slicknav_menu .slicknav_no-text {
    margin: 0
}

.slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: 0.125em;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
    margin-top: 0.188em
}

.slicknav_nav {
    clear: both
}

.slicknav_nav ul,
.slicknav_nav li {
    display: block
}

.slicknav_nav .slicknav_arrow {
    font-size: 0.8em;
    margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item {
    display: block;
    cursor: pointer;
}

.slicknav_nav a {
    display: block
}

.slicknav_nav .slicknav_item a {
    display: inline
}

.slicknav_menu:before,
.slicknav_menu:after {
    content: " ";
    display: table;
}

.slicknav_menu:after {
    clear: both
}

/* IE6/7 support */
.slicknav_menu {
    *zoom: 1
}

/*
    User Default Style
    Change the following styles to modify the appearance of the menu.
*/

.slicknav_menu {
    font-size: 16px;
}

/* Button */
.slicknav_btn {
    margin: 5px 5px 5px;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #e5be77;
    /*TRANSISTIONS*/
    -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;
}

/* Button Text */
.slicknav_menu .slicknav_menutxt {
    color: #000;
}

/* Button Lines */
.slicknav_menu .slicknav_icon-bar {
    background-color: #000;
}

.slicknav_menu {
    position: relative;
}

.slicknav_nav {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 0.875em;
    background-color: #f6d487;
    position: relative;
}

.slicknav_nav, .slicknav_nav ul {
    list-style: none;
    overflow: hidden;
}

.slicknav_nav ul {
    padding: 0;
    margin: 0 0 0 20px;
}

.slicknav_nav .slicknav_item {
    padding: 5px 10px;
    margin: 2px 5px;
}

.slicknav_nav a {
    padding: 15px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}

.slicknav_nav .slicknav_item a {
    padding: 0;
    margin: 0;
    /*TRANSISTIONS*/
    -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;
}

.slicknav_nav .slicknav_item:hover {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-color: #e5be77;
    /*color:#fff;*/
}

.slicknav_nav a:hover {
    color: #fff;
}

.slicknav_nav .slicknav_txtnode {
    margin-left: 15px;
}

.slicknav_menu {
    display: none;
}

/*.carte_bg {
	height: auto;
	width: 100%;
}

.carte_bg img {
	width:	100%;
}*/

.carte_bg {
    margin-top: -126px;
    /*margin-bottom: -70px;*/
    height: auto;
    width: 100%;
    background: url("images/carte_bg.png") no-repeat;
    background-size: 100% 100%;
}

.carte_bg img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.tresor_bg {
    height: auto;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    /*background: url("images/tresor_bg.png") no-repeat center center;*/
}

.pres_bg {
    /*height: 550px;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /*background: url("images/pres_bg.png") no-repeat center center;*/
    margin-bottom: -40px;
}

.pres_bg img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.tresor_bg img {
    /*background: url("images/tresor_btn.png") no-repeat center center;*/
    display: block;
    margin: 0 auto;
}

.tresor_bg img:hover {
    /*background: url("images/tresor_btn.png") no-repeat center center;*/
    /*background:red;*/
}

.tresor_url {
    /*height : 440px;*/
    width: 80%;
    margin: auto;
    display: block;
    /*background : url("images/tresor_btn_closed.png") no-repeat;*/
    margin-top: 50px;
}

.tresor_url:hover {
    /*background-image : url("images/tresor_btn.png");*/
}

.body-front-page {
    background: url(images/elkenz_bg.png) center top repeat-y;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
}

/* ------------------------------------------------ */
/* I N D I C E  S T Y L E
/* ------------------------------------------------ */

.indice-wrapper {
    min-height: 1000px;
    position: absolute;
    overflow: hidden;
    display: table;
    height: 100%;
    width: 100%;
    left: 0;
    /*top: 0;*/
    z-index: 10;
}

.indice-panel-content {
    margin: auto;
    width: 100%;
    top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    font-size: 16px;
}

.indice-panel-content h1 {
    text-align: center;
}

.indice-panel-content p {
    text-align: center;
    margin-top: 50px;
    font-weight: 500;
    font-size: 20px;
}

.indice-accelerate {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.indice-center {
    max-width: 680px;
    margin: 0 auto;
    width: 88%;
}

.indice-cell {
    vertical-align: middle;
    display: table-cell;
}

.indice-panel {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    position: relative;
}

.indice-about {
    -webkit-font-smoothing: auto;
}

.indice-about.hide .indice-cables {
    -webkit-transform: translate3d(0, -10%, 0) rotateX(-90deg);
    -moz-transform: translate3d(0, -10%, 0) rotateX(-90deg);
    transform: translate3d(0, -10%, 0) rotateX(-90deg);
    opacity: 0;
}

.indice-about.hide .indice-panel {
    -webkit-transform: rotateX(-20deg);
    -moz-transform: rotateX(-20deg);
    transform: rotateX(-20deg);
}

.indice-about .indice-panel {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;

}

.indice-about .indice-panel {
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    background-size: 100% 100%;
    background-image: url("images/indice.png");
    background-repeat: no-repeat;
    background-color: transparent;
    min-height: 420px;
    /*min-width: 640px;*/
}

.toggle {
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: -24px;
    position: absolute;
    bottom: 11.6%;
    left: 50%;
}

.toggle.i .cross {
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.toggle.i .cross .x {
    margin-left: -2px;
    width: 4px;
    margin-top: -12px;
}

.toggle.i .cross .y {
    margin-top: -4px;
    height: 16px;
}

.cross {
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    position: absolute;
    left: 50%;
    top: 50%;
}

.cross .x, .cross .y {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #1d1f27;
    height: 4px;
    width: 4px;
    margin: -2px;
    position: absolute;
    left: 0;
    top: 0;
}

.cross .x {
    margin-left: -12px;
    margin-top: -2px;
    width: 24px;
}

.cross .y {
    margin-top: -12px;
    height: 24px;
}

a, button {
    -webkit-transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cross, .x, .y {
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.indice-about .indice-panel,
.indice-about .indice-cables {
    -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slider-wrapper {
	/* position: relative; */
	height: 300px;
}

/* ------------------------------------------------ */
/* R E S P O N S I V E  S T Y L E
/* ------------------------------------------------ */
/* 4k */
@media (max-width: 3840px) {
    /* carte map */
    .carte_bg {
        margin: -400px auto auto auto;
        width: 100%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 1300px;
    }

    .animcontainer #sky {
        top: -20px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 480px;
        left: -5%;
        width: 30%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 740px;
        right: 0%;
        width: 13%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 700px;
        left: 13%;
        width: 17%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #pan_menu #current_town {
        font-family: arial;
        text-align: center;
        font-size: 110%;
        font-weight: bolder;
        line-height: 200%;
        color: #150e0e;
        width: 45%;
        height: 6.3%;
        position: absolute;
        top: 13.5%;
        left: 4%;
        transform: rotateZ(1deg);
    }

    .animcontainer #pan_menu #article_1 {
        width: 41%;
        height: 6%;
        position: absolute;
        top: 13.2%;
        left: 53%;
        transform: rotateZ(4deg);
    }

    .animcontainer #pan_menu #article_2 {
        width: 37%;
        height: 6%;
        position: absolute;
        top: 21.5%;
        left: 53%;
        transform: rotateZ(4deg);
    }

    .animcontainer #pan_menu #article_3 {
        width: 44%;
        height: 6%;
        position: absolute;
        top: 31%;
        left: 53%;
        transform: rotateZ(3deg);
    }

    .animcontainer #pan_menu #article_4 {
        width: 41%;
        height: 6%;
        position: absolute;
        top: 39.5%;
        left: 53%;
        transform: rotateZ(3deg);
    }

    .animcontainer #pan_menu #article_5 {
        width: 41%;
        height: 6%;
        position: absolute;
        top: 39.5%;
        left: 53%;
        transform: rotateZ(3deg);
    }

    .animcontainer #shadow {
        top: 1480px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #road {
        top: 980px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 750px;
        left: 24%;
        width: 42%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .animcontainer #bus-stopped {
        top: 400px;
        left: 24%;
        width: 42%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .animcontainer #characters {
        top: 425px;
        left: 24%;
        width: 37%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 480px;
        right: 12%;
        width: 14%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 15px;
        right: 10%;
        width: 22%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 36%;
        left: 18%;
    }

    /* tresor */
    .tresor_url {
        width: 72%;
    }

    /* indice */
    #about {
        top: 940px;
    }

    #about .indice-cables {
        margin-top: 520px;
    }

    #about .indice-center {
        max-width: 1240px;
    }

    #about .indice-panel {
        min-height: 740px;
    }


    #about .indice-panel-content {
        top: 120px;
    }

    #about .indice-panel-content p {
        margin-top: 100px;
        font-size: 26px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
}

/* imac 2k */
@media (max-width: 2048px) {
    .carte_bg {
        margin-top: -180px;
    }

    .slider-wrapper {
        height: 580px;
    }

    .animcontainer #sky {
        top: -60px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 195px;
        left: -5%;
        width: 30%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 275px;
        right: 0%;
        width: 13%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 260px;
        left: 13%;
        width: 17%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 720px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #road {
        top: 470px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 330px;
        left: 22%;
        width: 44%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 262px;
        right: 12%;
        width: 15%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 10px;
        right: 10%;
        width: 23%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 34%;
        left: 18%;
    }

    /* tresor */
    .tresor_url {
        width: 71%;
    }

    /* indice */
    #about {
        top: 300px;
    }

    #about .indice-cables {
        margin-top: 200px;
    }

    #about .indice-center {
        max-width: 740px;
    }

    #about .indice-panel {
        min-height: 400px;
    }


    #about .indice-panel-content {
        top: 80px;
    }

    #about .indice-panel-content p {
        margin-top: 60px;
        font-size: 22px;
        margin-left: auto;
        margin-right: auto;
        width: 91%;
    }
}

/* full hd */
@media (max-width: 1980px) {
    .carte_bg {
        margin-top: -180px;
    }

    .slider-wrapper {
        height: 500px;
    }

    .animcontainer #sky {
        top: -80px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 175px;
        left: -5%;
        width: 30%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 250px;
        right: 0%;
        width: 13%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 220px;
        left: 13%;
        width: 17%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 680px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #road {
        top: 420px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 290px;
        left: 23%;
        width: 44%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 262px;
        right: 12%;
        width: 15%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 10px;
        right: 10%;
        width: 23%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 34%;
        left: 18%;
    }

    /* tresor */
    .tresor_url {
        width: 70%;
    }

    /* indice */
    #about {
        top: 300px;
    }

    #about .indice-cables {
        margin-top: 60px;
    }

    #about .indice-center {
        max-width: 720px;
    }

    #about .indice-panel {
        min-height: 400px;
    }


    #about .indice-panel-content {
        top: 80px;
    }

    #about .indice-panel-content p {
        margin-top: 60px;
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 92%;
    }
}

/* generic laptop 17" */
@media (max-width: 1600px) {

    .slider-wrapper {
        height: 280px;
    }

    .animcontainer #bus {
        top: 250px;
        left: 24%;
        width: 44%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .animcontainer #road {
        top: 340px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #shadow {
        top: 560px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #sky {
        top: -80px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 120px;
        left: -7%;
        width: 30%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_menu {
        top: 160px;
        left: 13%;
        width: 17%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #pan_unk {
        top: 180px;
        right: 0%;
        width: 13%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #prod {
        top: 268px;
        right: 12%;
        width: 15%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 15px;
        right: 10%;
        width: 25%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 33%;
        left: 18%;
    }

    /* tresor */
    .tresor_url {
        width: 68%;
    }

    /* indice */
    #about {
        top: 120px;
    }

    #about .indice-cables {
        margin-top: 20px;
    }

    #about .indice-center {
        max-width: 700px;
    }

    #about .indice-panel {
        min-height: 380px;
    }


    #about .indice-panel-content {
        top: 80px;
    }

    #about .indice-panel-content p {
        margin-top: 60px;
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 92%;
    }
}

@media (max-width: 1440px) {
    .owl-item.active .item .text-slider {
        left: 10%;
    }

    .slider-wrapper {
        /*position:relative;*/
        height: 300px;
    }

    .animcontainer #bus {
        top: 210px;
        left: 22%;
        width: 44%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .animcontainer #road {
        top: 300px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #shadow {
        top: 470px;
        left: -15%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #sky {
        top: -50px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 118px;
        left: -5%;
        width: 30%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_menu {
        top: 130px;
        left: 13%;
        width: 19%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #pan_unk {
        top: 183px;
        right: 0%;
        width: 13%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #prod {
        top: 265px;
        right: 12%;
        width: 15%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 30px;
        right: 10%;
        width: 27%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 33%;
        left: 18%;
    }

    /* tresor */
    .tresor_url {
        width: 68%;
    }

    /* indice */
    #about {
        top: 80px;
    }

    #about .indice-cables {
        margin-top: 20px;
    }

    #about .indice-center {
        max-width: 680px;
    }

    #about .indice-panel {
        min-height: 380px;
    }


    #about .indice-panel-content {
        top: 80px;
    }

    #about .indice-panel-content p {
        margin-top: 60px;
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 92%;
    }
}

/* generic laptop 15"*/
@media (max-width: 1368px) {
	.body-front-page {
		-webkit-background-size: 120% auto;
		-moz-background-size: 120% auto;
		-o-background-size: 120% auto;
		background-size: 120% auto;
	}

	.owl-item.active .item .text-slider {
		left: 10%;
	}

	.slider-wrapper {
		/*position:relative;*/
		height: 240px;
	}

	.animcontainer #bus {
		top: 210px;
		left: 22%;
		width: 44%;
		transform: rotate(-2deg);
		position: absolute;
	}

	.animcontainer #road {
		top: 300px;
		left: -15%;
		width: 130%;
		position: absolute;
	}

	.animcontainer #shadow {
		top: 470px;
		left: -15%;
		width: 130%;
		position: absolute;
	}

	.animcontainer #sky {
		top: -50px;
		left: -16%;
		width: 130%;
		position: absolute;
	}

	.animcontainer #ville {
		top: 118px;
		left: -5%;
		width: 30%;
		position: absolute;
		transform: rotate(-5deg);
	}

	.animcontainer #pan_menu {
		top: 130px;
		left: 13%;
		width: 19%;
		position: absolute;
		transform: rotate(-6deg);
	}

	.animcontainer #pan_unk {
		top: 183px;
		right: 0%;
		width: 13%;
		position: absolute;
		transform: rotate(10deg);
	}

	.animcontainer #prod {
		top: 242px;
		right: 12%;
		width: 15%;
		position: absolute;
	}

	.animcontainer #yt {
		top: 32px;
		right: 10%;
		width: 27%;
		position: absolute;
	}

	.animcontainer #yt #yt-thumbs {
		width: 66%;
		height: auto;
		position: absolute;
		top: 33%;
		left: 18%;
	}

    /* tresor */
    .tresor_url {
        width: 68%;
    }

    /* indice */
    #about {
        top: 80px;
    }

    #about .indice-cables {
        margin-top: 20px;
    }

    #about .indice-center {
        max-width: 680px;
    }

    #about .indice-panel {
        min-height: 380px;
    }


    #about .indice-panel-content {
        top: 80px;
    }

    #about .indice-panel-content p {
        margin-top: 60px;
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 92%;
    }
}

@media (max-width: 1199px) {
    ul.portfolio-category li {
        margin: 10px 20px;
    }

    #main-menu-top .main-menu li a {
        padding: 27px 10px;
    }

    .text-slider {
        width: 400px;
    }

    .text-slider p {
        font-size: 40px;
    }

    .image-team-wrapper {
        float: none;
        margin: 0 auto;
    }

    .team-info {
        float: none;
        text-align: center;
        margin: 0;
    }

    .social {
        float: none;
        text-align: center;
    }

    .social-share.team-social .social li {
        margin: 0 10px;
    }

    .social-share.team-social .social {
        float: none !important;
    }

    .pricing-wrapper {
        left: inherit !important;
        right: inherit !important;
    }
}

@media (max-width: 991px) {
    .counter-wrapper .counter.col-md-3 {
        width: 50%;
        float: left;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 50%;
        float: left;
    }

    .thumbnail-img {
        margin-bottom: 30px;
    }

    .contact-form-wrapper {
        width: 95%;
    }

    .timeline-wrapper {
        width: 100%;
    }

    #main-menu-top {
        display: none;
    }

    .slicknav_menu {
        display: block;
    }

    .btn-menu-res {
        display: block;
    }

    header {
        height: 60px;
        position: relative;
    }

    .logo a {
        position: relative;
        top: -16px;
    }

    .pricing-wrapper {
        margin-bottom: 30px;
        -ms-transform: scale(1) !important;
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
    }
}

/* ipad portrait*/
@media (max-width: 768px) {
    .et-post-data-left {
        display: none;
    }

    .et-post-data-right {
        border: none;
    }

    .et-post-data-left.mobile-blog {
        display: block;
    }

    .single-blog-desktop {
        display: none;
    }

    .single-blog-mobile {
        display: block;
    }

    .single-blog-mobile.et-post-data-left {
        display: block !important;
    }

    .text-slider {
        width: 250px;
    }

    .text-slider p {
        font-size: 20px;
        line-height: 1.5;
    }

    a#scroll_to {
        font-size: 14px;
    }

    #test_avatar {
        width: 100%;
    }

    #test_avatar .owl-wrapper-outer {
        height: 165px;
    }

    .counter-wrapper .counter.col-md-3 {
        width: 100%;
        float: none;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 100%;
        float: none;
    }

    .heading-title-wrapper {
        padding: 0 5%;
    }

    a#scroll_to, .text-slider {
        /*display:none;*/
        margin-top: 5px;
    }

    #test_content .item p {
        width: 100%;
    }

    .timeline-wrapper .text-wrapper .detail {
        width: 90%;
    }

    .text-slider p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 56%;
    }

    ul.portfolio-category li {
        width: 50%;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 90%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 190px;
    }

    .animcontainer #sky {
        top: -20px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 60px;
        left: -5%;
        width: 40%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 115px;
        right: 4%;
        width: 13%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 90px;
        left: 13%;
        width: 20%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 340px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 195px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 170px;
        left: 22%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 82%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 140px;
        right: 18%;
        width: 14%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 40px;
        right: 15%;
        width: 24%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 32%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -110px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -15px !important;
        top: 8px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 28px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    /*indice*/
    .indice-wrapper {
        min-height: 700px;
    }

    .indice-center {
        max-width: 480px;
    }

    .indice-about .indice-panel {
        min-height: 280px;
    }

    .indice-panel-content {
        top: 35px;
    } 

    .indice-panel-content h1 {
        margin-top: 20px;
        font-size: 26px;
    }

    .indice-panel-content p {
        margin-top: 30px;
        font-size: 20px;
    }

    /* special text */
    #special-text-div {
        width: 79.33%;
        float: left;
        margin-left: 10.33333333%;
    }

}

/* android fhd landscape*/
@media (max-width: 640px) {
    .counter-wrapper .counter.col-md-3 {
        width: 100%;
        float: none;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 100%;
        float: none;
    }

    .heading-title-wrapper {
        padding: 0 5%;
    }

    a#scroll_to, .text-slider {
        /*display:none;*/
        margin-top: 5px;
    }

    #test_content .item p {
        width: 100%;
    }

    .timeline-wrapper .text-wrapper .detail {
        width: 90%;
    }

    .text-slider p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 56%;
    }

    ul.portfolio-category li {
        width: 50%;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 60%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 140px;
    }

    .animcontainer #sky {
        top: -20px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 60px;
        left: -5%;
        width: 40%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 95px;
        right: 5%;
        width: 15%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 85px;
        left: 15%;
        width: 22%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 300px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 170px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 145px;
        left: 20%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .animcontainer #bus-stopped {
        top: 145px;
        left: 20%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .animcontainer #characters{
        top: 145px;
        left: 20%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 82%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 120px;
        right: 22%;
        width: 15%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 30px;
        right: 20%;
        width: 25%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 32%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -90px;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -15px !important;
        top: 10px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 28px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    /*indice*/
    .indice-wrapper {
        min-height: 560px;
    }

    .indice-center {
        max-width: 400px;
    }

    .indice-about .indice-panel {
        min-height: 220px;
    }

    .indice-panel-content {
        top: 25px;
    }

    .indice-panel-content h1 {
        margin-top: 20px;
        font-size: 24px;
    }

    .indice-panel-content p {
        margin-top: 25px;
        font-size: 18px;
    }

    /* special text */
    #special-text-div {
        width: 79.33%;
        float: left;
        margin-left: 10.33333333%;
    }
}

@media (max-width: 599px) {
    #test_avatar {
        width: 100%;
        margin-bottom: 0;
    }

    #test_avatar .owl-wrapper-outer {
        height: 165px;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 60%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 105px;
    }

    .animcontainer #sky {
        top: 0px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 40px;
        left: -5%;
        width: 40%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 85px;
        right: 5%;
        width: 15%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 70px;
        left: 15%;
        width: 22%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 225px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 120px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 100px;
        left: 24%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 78%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 88px;
        right: 19%;
        width: 15%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 0px;
        right: 18%;
        width: 24%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 31%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -95px;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -25px !important;
        top: 10px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 28px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    #special-text-div {
        width: 83.33%;
        float: left;
        margin-left: 8.33333333%;
    }
}

@media (max-width: 480px) {
    .counter-wrapper .counter.col-md-3 {
        width: 100%;
        float: none;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 100%;
        float: none;
    }

    .heading-title-wrapper {
        padding: 0 5%;
    }

    a#scroll_to, .text-slider {
        /*display:none;*/
        margin-top: 5px;
    }

    #test_content .item p {
        width: 100%;
    }

    .timeline-wrapper .text-wrapper .detail {
        width: 90%;
    }

    .text-slider p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 56%;
    }

    ul.portfolio-category li {
        width: 50%;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 60%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 95px;
    }

    .animcontainer #sky {
        top: 10px;
        left: -12%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 50px;
        left: -5%;
        width: 35%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 85px;
        right: 3%;
        width: 15%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 70px;
        left: 15%;
        width: 22%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 225px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 135px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 115px;
        left: 24%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 80%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 100px;
        right: 18%;
        width: 15%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 35px;
        right: 16%;
        width: 25%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 30%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -70px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -25px !important;
        top: 10px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 28px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    .indice-about .indice-panel {
        min-height: 300px;
    }

    .indice-panel-content {
        top: 15px;
    }

    .indice-panel-content h1 {
        margin-top: 30px;
        font-size: 22px;
    }

    .indice-panel-content p {
        margin-top: 30px;
        font-size: 16px;
    }
}

/*iphone 6 plus portrait*/
@media (max-width: 414px) {
    .counter-wrapper .counter.col-md-3 {
        width: 100%;
        float: none;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 100%;
        float: none;
    }

    .heading-title-wrapper {
        padding: 0 5%;
    }

    a#scroll_to, .text-slider {
        /*display:none;*/
        margin-top: 5px;
    }

    #test_content .item p {
        width: 100%;
    }

    .timeline-wrapper .text-wrapper .detail {
        width: 90%;
    }

    .text-slider p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 56%;
    }

    ul.portfolio-category li {
        width: 50%;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 60%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 90px;
    }

    .animcontainer #sky {
        top: 30px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 50px;
        left: -10%;
        width: 40%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 92px;
        right: 3%;
        width: 15%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 84px;
        left: 15%;
        width: 22%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 220px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 140px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 122px;
        left: 22%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 80%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 100px;
        right: 20%;
        width: 13%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 48px;
        right: 18%;
        width: 22%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 29%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -75px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -15px !important;
        top: 10px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 28px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    /*indice*/
    .indice-wrapper {
        min-height: 450px;
    }

    .indice-center {
        max-width: 290px;
    }

    .indice-about .indice-panel {
        min-height: 190px;
    }

    .indice-panel-content {
        top: 25px;
    }

    .indice-panel-content h1 {
        margin-top: 20px;
        font-size: 20px;
    }

    .indice-panel-content p {
        margin-top: 20px;
        font-size: 14px;
    }
}

/*iphone 6 portrait*/
@media (max-width: 375px) {
    .counter-wrapper .counter.col-md-3 {
        width: 100%;
        float: none;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 100%;
        float: none;
    }

    .heading-title-wrapper {
        padding: 0 5%;
    }

    a#scroll_to, .text-slider {
        /*display:none;*/
        margin-top: 5px;
    }

    #test_content .item p {
        width: 100%;
    }

    .timeline-wrapper .text-wrapper .detail {
        width: 90%;
    }

    .text-slider p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 56%;
    }

    ul.portfolio-category li {
        width: 50%;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 60%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 85px;
    }

    .animcontainer #sky {
        top: 30px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 50px;
        left: -10%;
        width: 40%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 92px;
        right: 3%;
        width: 15%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 84px;
        left: 15%;
        width: 22%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 210px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 135px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 120px;
        left: 22%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 75%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 95px;
        right: 20%;
        width: 13%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 48px;
        right: 18%;
        width: 22%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 29%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -60px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -15px !important;
        top: 10px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 28px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    /*indice*/
    .indice-wrapper {
        min-height: 430px;
    }

    .indice-center {
        max-width: 280px;
    }

    .indice-about .indice-panel {
        min-height: 180px;
    }

    .indice-panel-content {
        top: 25px;
    }

    .indice-panel-content h1 {
        margin-top: 20px;
        font-size: 20px;
    }

    .indice-panel-content p {
        margin-top: 20px;
        font-size: 14px;
    }
}

/*android fhd portrait*/
@media (max-width: 360px) {
    .counter-wrapper .counter.col-md-3 {
        width: 100%;
        float: none;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 100%;
        float: none;
    }

    .heading-title-wrapper {
        padding: 0 5%;
    }

    a#scroll_to, .text-slider {
        /*display:none;*/
        margin-top: 5px;
    }

    #test_content .item p {
        width: 100%;
    }

    .timeline-wrapper .text-wrapper .detail {
        width: 90%;
    }

    .text-slider p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 56%;
    }

    ul.portfolio-category li {
        width: 50%;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 60%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 80px;
    }

    .animcontainer #sky {
        top: 30px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 50px;
        left: -5%;
        width: 40%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 78px;
        right: 5%;
        width: 15%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 70px;
        left: 15%;
        width: 22%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 210px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 135px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 120px;
        left: 22%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 80%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 95px;
        right: 22%;
        width: 13%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 48px;
        right: 20%;
        width: 22%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 30%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -60px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -15px !important;
        top: 10px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 28px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    /* tresor */
    .tresor_url {
        width: 68%;
    }

    /*indice*/
    #about {
        top: 50px;
    }

    #about .indice-cables {
        margin-top: 20px;
    }

    #about .indice-wrapper {
        min-height: 400px;
    }

    #about .indice-center {
        max-width: 260px;
    }

    #about .indice-panel {
        min-height: 145px;
    }

    #about .indice-panel-content {
        top: 20px;
    }

    #about .indice-panel-content h1 {
        margin-top: 20px;
        font-size: 18px;
    }

    #about .indice-panel-content p {
        margin-top: 16px;
        font-size: 12px;
        margin-left: auto;
        margin-right: auto;
        width: 95%;
    }
}

/*iphone 5 portrait*/
@media (max-width: 320px) {
    .counter-wrapper .counter.col-md-3 {
        width: 100%;
        float: none;
    }

    .client-wrapper .client-img.col-md-2 {
        width: 100%;
        float: none;
    }

    .heading-title-wrapper {
        padding: 0 5%;
    }

    a#scroll_to, .text-slider {
        /*display:none;*/
        margin-top: 5px;
    }

    #test_content .item p {
        width: 100%;
    }

    .timeline-wrapper .text-wrapper .detail {
        width: 90%;
    }

    .text-slider p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 56%;
    }

    ul.portfolio-category li {
        width: 50%;
    }

    .logo-wrapper .logo .logo-wrapper img {
        width: 60%;
    }

    .slider-wrapper {
        /* position: relative; */
        height: 60px;
    }

    .animcontainer #sky {
        top: 30px;
        left: -16%;
        width: 130%;
        position: absolute;
    }

    .animcontainer #ville {
        top: 55px;
        left: -8%;
        width: 40%;
        position: absolute;
        transform: rotate(-5deg);
    }

    .animcontainer #pan_unk {
        top: 80px;
        right: 5%;
        width: 15%;
        position: absolute;
        transform: rotate(10deg);
    }

    .animcontainer #pan_menu {
        top: 70px;
        left: 15%;
        width: 22%;
        position: absolute;
        transform: rotate(-6deg);
    }

    .animcontainer #shadow {
        top: 185px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #road {
        top: 122px;
        left: -35%;
        width: 180%;
        position: absolute;
    }

    .animcontainer #bus {
        top: 110px;
        left: 22%;
        width: 50%;
        transform: rotate(-2deg);
        position: absolute;
    }

    .tresor_bg {
        width: 70%;
    }

    .tresor_bg #treasure {
        width: 100%;
        height: 100%;
    }

    .animcontainer #prod {
        top: 90px;
        right: 22%;
        width: 13%;
        position: absolute;
    }

    .animcontainer #yt {
        top: 50px;
        right: 20%;
        width: 22%;
        position: absolute;
    }

    .animcontainer #yt #yt-thumbs {
        width: 66%;
        height: auto;
        position: absolute;
        top: 28%;
        left: 18%;
    }

    .animation-wrapper .carte_bg {
        margin-top: -50px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        left: -15px !important;
        top: 10px !important;
    }

    .body-front-page {
        background-size: 125% auto !important;
    }

    .heading-title-wrapper h2.title {
        font-size: 24px !important;
    }

    .heading-title-wrapper span.sub-title {
        font-size: 14px !important;
    }

    .col-md-10 .animation-wrapper p {
        font-size: 14px !important;
        padding-left: 45px;
        padding-right: 45px;
    }

    .sticky-wrapper #header {
        background-position-y: -30px !important;
    }

    /*indice*/
    .indice-wrapper {
        min-height: 340px;
    }

    .indice-center {
        max-width: 240px;
    }

    .indice-about .indice-panel {
        min-height: 140px;
    }

    .indice-panel-content {
        top: 25px;
    }

    .indice-panel-content h1 {
        margin-top: 20px;
        font-size: 16px;
    }

    .indice-panel-content p {
        margin-top: 12px;
        font-size: 12px;
    }
}
