@font-face {
    font-family: 'PoppinsMedium';
    src: url('../assets/fonts/Poppins-Medium.woff2') format('woff2'),
        url('../assets/fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsRegular';
    src: url('../assets/fonts/Poppins-Regular.woff2') format('woff2'),
        url('../assets/fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url("colors/color.css");


/* #PAGE LOAD */

body.royal_loader {
    background: none;
    visibility: hidden;
    font-family: 'PoppinsRegular';
}

body {
    font-family: 'PoppinsRegular';
}

html {
    /* Change from 'none' to 'pan-y' or remove this line if possible */
    /* 'pan-y' allows the browser to handle vertical scrolling natively */
    touch-action: pan-y;

    /* These are generally fine, but ensure they don't conflict with your specific needs */
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
}

#royal_preloader {
    font-size: 12px;
    visibility: visible;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: #272727;
    z-index: 9999999999;
    -webkit-transition: opacity 0.2s linear 0.8s;
    -moz-transition: opacity 0.2s linear 0.8s;
    -ms-transition: opacity 0.2s linear 0.8s;
    -o-transition: opacity 0.2s linear 0.8s;
    transition: opacity 0.2s linear 0.8s;
}

#royal_preloader.complete {
    opacity: 0;
}

#royal_preloader .background {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #272727;
    -webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -ms-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    transition: background 0.5s linear;
}

.orange-text {
    color: #f37c07;
}

.addressblock {
    display: flex !important;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding-top: 40px;
}

.addressblock a {
    color: #ffffff;
}

.formintro {
    width: 90%;
    margin-bottom: 30px;
}

.mapwrapper {
    margin-bottom: 60px;
}

#royal_preloader.number .name {
    position: absolute;
    top: 20%;
    left: 0px;
    right: 0px;
    text-transform: uppercase;
    color: #f37c07;
    text-align: center;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s linear;
    -moz-transition: -moz-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    transition: transform 0.3s linear;
    -webkit-animation: fly 0.3s;
    -moz-animation: fly 0.3s;
    -ms-animation: fly 0.3s;
    -o-animation: fly 0.3s;
    animation: fly 0.3s;
}

#royal_preloader.number .percentage {
    color: #f37c07;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: -90px 0px 0px -90px;
    /* background-image: url('../images/loader.gif');
    background-repeat: no-repeat;
    background-position: 50% 0; */
    padding-top: 80px;
    width: 180px;
    position: absolute;
    font-size: 50px;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s linear 0.5s;
    -moz-transition: all 0.3s linear 0.5s;
    -ms-transition: all 0.3s linear 0.5s;
    -o-transition: all 0.3s linear 0.5s;
    transition: all 0.3s linear 0.5s;
}

#royal_preloader.text .loader {
    position: absolute;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    color: #f37c07;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
    top: 50%;
    left: 50%;
    width: 240px;
    margin-left: -120px;
    height: 60px;
    line-height: 60px;
    margin-top: -30px;
    font-size: 30px;
    white-space: nowrap;
}

#royal_preloader.text .loader div {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0%;
    background-color: #000000;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -webkit-transition: left 0.3s linear;
    -moz-transition: left 0.3s linear;
    -ms-transition: left 0.3s linear;
    -o-transition: left 0.3s linear;
    transition: left 0.3s linear;
}

#royal_preloader.logo .loader {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -40px 0px 0px -40px;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
}

#royal_preloader.logo .loader div {
    position: absolute;
    bottom: 0%;
    left: 0px;
    right: 0px;
    height: 100%;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -webkit-transition: bottom 0.3s linear;
    -moz-transition: bottom 0.3s linear;
    -ms-transition: bottom 0.3s linear;
    -o-transition: bottom 0.3s linear;
    transition: bottom 0.3s linear;
}

#royal_preloader.logo .percentage {
    position: absolute;
    width: 80px;
    height: 40px;
    line-height: 40px;
    top: 50%;
    left: 50%;
    margin: 40px 0px 0px -40px;
    color: #072E77;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

@-webkit-keyframes fly {
    0% {
        opacity: 0;
        top: 50%;
    }

    20% {
        opacity: 1;
        top: 40%;
    }

    100% {
        opacity: 0;
        top: 20%;
    }
}

@-moz-keyframes fly {
    0% {
        opacity: 0;
        top: 50%;
    }

    20% {
        opacity: 1;
        top: 40%;
    }

    100% {
        opacity: 0;
        top: 20%;
    }
}

@-ms-keyframes fly {
    0% {
        opacity: 0;
        top: 50%;
    }

    20% {
        opacity: 1;
        top: 40%;
    }

    100% {
        opacity: 0;
        top: 20%;
    }
}

@-o-keyframes fly {
    0% {
        opacity: 0;
        top: 50%;
    }

    20% {
        opacity: 1;
        top: 40%;
    }

    100% {
        opacity: 0;
        top: 20%;
    }
}

@keyframes fly {
    0% {
        opacity: 0;
        top: 50%;
    }

    20% {
        opacity: 1;
        top: 40%;
    }

    100% {
        opacity: 0;
        top: 20%;
    }
}




/* #Menu
================================================== */



.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo-wrap {
    display: block;
    float: left;
}

.logo-wrap img {
    width: 110px;
    height: auto;
    display: block;
}


body.overflow-hidden {
    /* when primary navigation is visible, the content in the background won't scroll */
    overflow: hidden;
}

.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
}

.cd-container:after {
    content: "";
    display: table;
    clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */


.cd-header {
    position: absolute;
    padding-top: 5px;
    top: 0;
    left: 0;
    background: rgba(247, 247, 247, 0.95);
    height: 50px;
    width: 100%;
    z-index: 300;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 768px) {
    .cd-header {
        height: 80px;
        background: transparent;
        box-shadow: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1320px) {
    .cd-header .columns {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-header {
        -webkit-transition: background-color 0.3s;
        -moz-transition: background-color 0.3s;
        transition: background-color 0.3s;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .cd-header.is-fixed {
        /* when the user scrolls down, we hide the header right above the viewport */
        position: fixed;
        top: -80px;
        background-color: rgba(247, 247, 247, 0.96);
        -webkit-transition: -webkit-transform 0.3s;
        -moz-transition: -moz-transform 0.3s;
        transition: transform 0.3s;
    }

    .cd-header.is-visible {
        /* if the user changes the scrolling direction, we show the header */
        padding-top: 5px;
        -webkit-transform: translate3d(0, 100%, 0);
        -moz-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        -o-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    .cd-header.menu-is-open {
        /* add a background color to the header when the navigation is open */
        background-color: rgba(247, 247, 247, 0);
    }
}


@media only screen and (min-width: 768px) {
    .cd-secondary-nav {
        display: block;
    }
}

.cd-primary-nav-trigger {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
}

.cd-primary-nav-trigger .cd-menu-text {
    color: #212121;
    text-transform: uppercase;
    font-weight: 700;
    /* hide the text on small devices */
    display: none;
}

.cd-primary-nav-trigger .cd-menu-icon {
    /* this span is the central line of the menu icon */
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -2px;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 22px;
    height: 2px;
    background-color: #212121;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* these are the upper and lower lines in the menu icon */
}

.cd-primary-nav-trigger .cd-menu-icon::before,
.cd-primary-nav-trigger .cd-menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #212121;
    right: 0;
    -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
    -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
    transition: transform .3s, top .3s, background-color 0s;
}

.cd-primary-nav-trigger .cd-menu-icon::before {
    top: -7px;
}

.cd-primary-nav-trigger .cd-menu-icon::after {
    top: 7px;
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
    background-color: rgba(255, 255, 255, 0);
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before,
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
    background-color: #212121;
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
    top: 0;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

@media only screen and (min-width: 768px) {
    .cd-primary-nav-trigger {
        width: 100px;
        padding-left: 1em;
        background-color: transparent;
        height: 30px;
        line-height: 30px;
        right: 2.2em;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .cd-primary-nav-trigger .cd-menu-text {
        display: inline-block;
    }

    .cd-primary-nav-trigger .cd-menu-icon {
        left: auto;
        right: 1em;
        -webkit-transform: translateX(0) translateY(-50%);
        -moz-transform: translateX(0) translateY(-50%);
        -ms-transform: translateX(0) translateY(-50%);
        -o-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%);
    }
}

.cd-primary-nav {
    /* by default it's hidden - on top of the viewport */
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(247, 247, 247, 0.96);
    z-index: 200;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: auto;
    /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.cd-primary-nav ul.cd-scndr-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    max-width: 300px;
    left: 50%;
    margin-left: -150px;
    -webkit-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    -o-transform: translateY(-55%);
    transform: translateY(-55%);
}

@media only screen and (max-width: 300px) {
    .cd-primary-nav ul.cd-scndr-nav {
        left: 0;
        margin-left: 0;
    }
}

.cd-primary-nav li {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cd-primary-nav a {
    display: inline-block;
    text-transform: uppercase;
    padding: .42em 0.6em;
    color: #212121;
    -webkit-transition: background 0.3s, color 0.3s;
    -moz-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.no-touch .cd-primary-nav a:hover {}

.cd-primary-nav .cd-label {
    color: #212121;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cd-primary-nav.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

@media only screen and (min-width: 1170px) {
    .cd-primary-nav li {
        font-size: 11px;
    }
}


.cd-main-content {
    position: relative;
    z-index: 1;
}

.cd-label ul {
    overflow: hidden;
    max-height: 0;
    transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
}

.cd-label:hover ul {
    margin-top: 5px;
    margin-bottom: 10px;
    max-height: 500px;
}

.cd-label ul a {
    padding: .4em .7em;
}

.social-nav {
    position: absolute;
    bottom: 40px;
    width: 100%;
    left: 0;
    z-index: 100;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.list-social-nav li {
    padding: 0;
    list-style: none;
    text-align: center;
    width: 50px;
    height: 30px;
    display: inline-block;
    border-right: 1px solid #bdbdbd;
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.list-social-nav li:last-child {
    border-right: 1px solid transparent;
}

.list-social-nav li.icon-soc-nav a {
    font-size: 14px;
    font-family: 'FontAwesome';
    line-height: 30px;
    width: 50px;
    color: #000;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.list-social-nav li:hover {
    background: transparent;
}

.list-social-nav li:hover.icon-soc-nav a {
    background: transparent;
}

/* #Classic Navigation
================================================== */

#menu-wrap {
    position: fixed;
    padding-bottom: 10px;
    width: 100%;
    z-index: 500;
    top: 0;
    left: 0;
    transform: translateY(-100%);
}

.menu-back {
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.6) 49%, rgba(0, 0, 0, 0) 96%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cbp-af-header {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .logo {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink ul.slimmenu {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink ul.slimmenu li:first-child {
    background: none;
}

.cbp-af-header.cbp-af-header-shrink ul.slimmenu li ul li:first-child {
    background: none;
}

ul.slimmenu li ul li a {
    color: #000;
}

ul.slimmenu li ul li a:hover {}

ul.slimmenu li ul li {
    background: none;
    padding-left: 0;
}

ul.slimmenu li ul {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.logo {
    position: absolute;
    width: 120px;
    height: 40px;
    z-index: 10000;
    left: 40px;
    top: 36px;
    background: url('../images/obilia logo_2.png') no-repeat center center / contain;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    visibility: visible;
}

.menu-collapser {
    position: relative;
    width: 100%;
    height: 76px;
    line-height: 48px;
    font-size: 16px;
    padding: 0 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-transition: 1s all 0.3s ease-out;
    -moz-transition: 1s all 0.3s ease-out;
    -o-transition: 1s all 0.3s ease-out;
    transition: 1s all 0.3s ease-out;
}

.collapse-button {
    position: absolute;
    right: 0px;
    top: 50%;
    width: 40px;
    /* background-image: linear-gradient(to bottom, #151515, #040404);
    background-repeat: repeat-x; */
    color: #000;
    /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.075); */
    padding: 7px 10px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    font-size: 14px;
    text-align: center;

    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.collapse-button:hover,
.collapse-button:focus {
    background-image: none;
    /* background-color: #040404; */
    color: #FFF;
}

.collapse-button .icon-bar {
    background-color: #fff;
    border-radius: 1px 1px 1px 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    display: block;
    height: 2px;
    width: 18px;
    margin: 2px 0;
}

ul.slimmenu {
    padding-top: 10px;
    padding-right: 10px;
    text-align: right;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

ul.slimmenu li {
    position: relative;
    display: inline-block;
    background: url('../images/line.png') 0 14px no-repeat;
    background-size: 15px 10px;
    padding-left: 20px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

ul.slimmenu>li {}

ul.slimmenu>li:first-child {
    border-left: 0
}

ul.slimmenu>li:last-child {
    margin-right: 0
}

ul.slimmenu li a {
    display: block;
    color: #ffffff;
    padding: 10px 0px;
    cursor: pointer;
    margin: 0px 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    position: relative;
    font-size: 24px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    font-family: 'PoppinsMedium';
}

ul.slimmenu li a:hover {
    text-decoration: none;
    color: #f37c07;
}

ul.slimmenu li a::after {
    content: "";
    position: absolute;
    background: #f37c07;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

/* ul.slimmenu li a.mPS2id-highlight::after, ul.slimmenu li a:hover::after {
    content: "";
    position: absolute;
    background: #f37c07;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
} */

ul.slimmenu li {}

ul.slimmenu li:first-child {
    background: none;
}

.mPS2id-highlight {
    color: #f37c07 !important;
}

ul.slimmenu li .sub-collapser {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 100%;
    z-index: 999;
    cursor: pointer;
}

ul.slimmenu li .sub-collapser:before {
    display: none;
}

ul.slimmenu li .sub-collapser>i {
    display: none;
}

ul.slimmenu li ul {
    margin: 0;
    list-style-type: none;
}

ul.slimmenu li ul a {
    font-size: 10px;
}

ul.slimmenu li ul li:first-child {
    background: none;
}

ul.slimmenu li ul li {
    background: none;
    padding-left: 0;
}

ul.slimmenu li>ul {
    display: none;
    position: absolute;
    text-align: left;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 140%;
}

ul.slimmenu li>ul>li ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 999;
    width: 100%;
}

ul.slimmenu.collapsed {
    padding: 0;
    margin: 0;
}

ul.slimmenu.collapsed li {
    display: block;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

ul.slimmenu.collapsed li a {
    display: block;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0); */
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

ul.slimmenu.collapsed li .sub-collapser {
    height: 40px;
}

ul.slimmenu.collapsed li>ul {
    display: none;
    position: static;
}




/* #Tooltip
================================================== */

.tipper {
    height: 1px;
    left: -99999px;
    position: absolute;
    pointer-events: none;
    top: -99999px;
    width: 1px;
    z-index: 100000;
}

.tipper .tipper-content {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    border-radius: 2px;
    color: #fff;
    font-weight: 400;
    display: block;
    float: left;
    font-size: 10px;
    margin: 0;
    letter-spacing: 2px;
    padding: 4px 20px;
    position: relative;
    white-space: nowrap;
}

.tipper .tipper-caret {
    background: url('../images/tipper-icon.png') no-repeat;
    display: block;
    height: 11px;
    position: absolute;
    width: 100%;
}

.tipper.right .tipper-content {
    box-shadow: 1px 0 3px rgba(0, 0, 0, 0.25);
}

.tipper.right .tipper-caret {
    background-position: left center;
    left: -5px;
    top: 0;
}

.tipper.left .tipper-content {
    box-shadow: -1px 0 3px rgba(0, 0, 0, 0.25);
}

.tipper.left .tipper-caret {
    background-position: right center;
    right: -5px;
    top: 0;
}

.tipper.top .tipper-caret,
.tipper.bottom .tipper-caret {
    display: block;
    float: none;
    height: 5px;
    width: 12px;
    margin-left: -6px;
}

.tipper.top .tipper-content {
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.25);
}

.tipper.top .tipper-caret {
    background-position: center bottom;
    bottom: -5px;
    left: 0;
    text-align: center;
}

.tipper.bottom .tipper-content {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.tipper.bottom .tipper-caret {
    background-position: center top;
    top: -5px;
    left: 0;
}



/* #Hepo Slider 
================================================== */

#owl-top {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    height: 100vh;
}

#owl-top .item {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
    overflow: hidden;
}

.fullwidth-height #owl-top {
    height: 76vh;
}

.fullwidth-height #owl-top .item {
    height: 76vh;
}


.item.top-image-1 {
    background-image: url('../images/slider/01.jpg');
}

.item.top-image-2 {
    background-image: url('../images/slider/02.jpg');
}

.item.top-image-3 {
    background-image: url('../images/slider/03.jpg');
}

.item.top-image-4 {
    background-image: url('../images/slider/04.jpg');
}

.item.top-image-5 {
    background-image: url('../images/slider/05.jpg');
}

.item.top-image-6 {
    background-image: url('../images/slider/06.jpg');
}

.item.top-image-7 {
    background-image: url('../images/slider/07.jpg');
}

.item.top-image-8 {
    background-image: url('../images/slider/08.jpg');
}

.item.top-image-9 {
    background-image: url('../images/slider/09.jpg');
}

.item.top-image-10 {
    background-image: url('../images/slider/10.jpg');
}

.item.top-image-11 {
    background-image: url('../images/slider/11.jpg');
}

.item.top-image-12 {
    background-image: url('../images/slider/12.jpg');
}

.item.top-image-13 {
    background-image: url('../images/slider/13.jpg');
}

.item.top-image-14 {
    background-image: url('../images/slider/14.jpg');
}

.item.top-image-15 {
    background-image: url('../images/slider/15.jpg');
}

.item.top-image-16 {
    background-image: url('../images/slider/16.jpg');
}

.item.top-image-17 {
    background-image: url('../images/slider/17.jpg');
}

.item.top-image-18 {
    background-image: url('../images/slider/18.jpg');
}

.item.top-image-19 {
    background-image: url('../images/slider/19.jpg');
}

.item.top-image-20 {
    background-image: url('../images/slider/20.jpg');
}

.item.top-image-21 {
    background-image: url('../images/slider/21.jpg');
}

.item.top-image-22 {
    background-image: url('../images/slider/22.jpg');
}

.item.top-image-23 {
    background-image: url('../images/slider/23.jpg');
}

.item.top-image-24 {
    background-image: url('../images/slider/24.jpg');
}

.item.top-image-25 {
    background-image: url('../images/slider/25.jpg');
}

.item.top-image-26 {
    background-image: url('../images/slider/26.jpg');
}

.item.top-image-27 {
    background-image: url('../images/slider/27.jpg');
}

.item.top-image-28 {
    background-image: url('../images/slider/28.jpg');
}

.item.top-image-29 {
    background-image: url('../images/slider/29.jpg');
}

.item.top-image-30 {
    background-image: url('../images/slider/30.jpg');
}

.item.top-image-31 {
    background-image: url('../images/slider/31.jpg');
}

.item.top-image-32 {
    background-image: url('../images/slider/32.jpg');
}

.item.top-image-33 {
    background-image: url('../images/slider/33.jpg');
}

.item.top-image-34 {
    background-image: url('../images/slider/34.jpg');
}

.item.top-image-35 {
    background-image: url('../images/slider/35.jpg');
}

.item.top-image-36 {
    background-image: url('../images/slider/36.jpg');
}

.item.top-image-37 {
    background-image: url('../images/slider/37.jpg');
}

#bar {
    width: 0%;
    max-width: 100%;
    height: 2px;
}

#progressBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 5;
}

.prev {
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -10px;
    width: 50px;
    height: 54px;
    z-index: 20;
    cursor: pointer;
    background: url('../images/arrow-back.svg')no-repeat center left;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.next {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    width: 50px;
    height: 54px;
    z-index: 20;
    cursor: pointer;
    background: url('../images/arrow-next.svg')no-repeat center right;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.prev:hover,
.next:hover {
    width: 70px;
}

.prev:hover {
    left: 35px;
}

.next:hover {
    right: 35px;
}

.white-over {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    z-index: 1;
}

.hero-top {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    z-index: 10;
    text-align: center;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero-top p,
.hero-top h2 {
    text-align: center;
}

.hero-top p {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 8px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.hero-top p:after {
    position: absolute;
    content: '';
    height: 4px;
    background-color: transparent;
    width: 30px;
    left: 50%;
    margin-left: -15px;
    bottom: 0;
    z-index: 1;
}

.hero-top h2 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 20px;
    font-size: 34px;
    line-height: 52px;
    margin-bottom: 50px;
}

.hero-top .link-top {
    width: 160px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 3px;
    display: inline-block;
    color: #000;
    border: 1px solid #000;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    margin: 0 auto;
    z-index: 10;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.hero-top .link-top:hover {
    color: #fff;
}

.scroll-to-top {
    position: fixed;
    background-image: url('../images/arrow-up.svg');
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    bottom: 5vw;
    right: 1.4vw;
    width: 50px;
    height: 30px;
    display: none;
    z-index: 999;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

/* .scroll-to-top:hover {
    background-image:url('../images/arrow-top-short-white.png');
} */


/* #Video Background
================================================== */

.poster_background_home {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    background: url('../images/video-home.jpg')no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

video#video_background_home {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    overflow: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.white-over-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .5);
    z-index: 1;
}

/* #Porfolio 
================================================== */

.section {
    position: relative;
    width: 100%;
}

.full-height {
    height: 100vh;
}

.fullwidth-height {
    height: 76vh;
}

.padding-top-bottom {
    padding-top: 120px;
    padding-bottom: 120px;
}

.padding-top {
    padding-top: 120px;
}

.padding-bottom {
    padding-bottom: 120px;
}

.padding-top-bottom-small {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padding-top-small {
    padding-top: 60px;
}

.padding-bottom-small {
    padding-bottom: 60px;
}

.padding-top-bottom-smaller {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-top-smaller {
    padding-top: 30px;
}

.padding-bottom-smaller {
    padding-bottom: 30px;
}

.white-background {
    background: #fff;
}

.dark-background {
    background: #272727;
}

.grey-background {
    background: #f5f5f5;
}

.black-background {
    background: #000;
}

.dark-background {
    background: #272727;
}

.header-text {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.header-text h2,
.header-text h3,
.header-text h4 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}

.header-text p {
    position: relative;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    color: #565656;
    letter-spacing: 4px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.header-text.main-pages p {
    font-size: 17px;
    letter-spacing: 6px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.header-text p:after {
    position: absolute;
    content: '';
    height: 3px;
    background-color: transparent;
    width: 30px;
    left: 50%;
    margin-left: -15px;
    bottom: 0;
    z-index: 1;
}

.action-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.action-wrap p {
    position: relative;
    margin: 0 auto;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 4px;
    width: 100%;
    max-width: 600px;
}

.action-wrap h4 {
    text-align: center;
    color: #fff;
    margin-top: 10px;
}

.action-wrap h6 {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.like-our-proj {
    position: relative;
    width: 100%;
}

.like-our-proj h5 {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.like-our-proj a {
    width: 160px;
    margin: 0 auto;
    display: block;
}

.like-our-proj span {
    position: relative;
    width: 160px;
    margin: 0 auto;
    letter-spacing: 2px;
    font-size: 15px;
    line-height: 28px;
    text-align: center;
    font-weight: 700;
    z-index: 3;
    display: block;
}







*,
*::after,
*::before {
    box-sizing: border-box;
}


/* -------------------------------- 

Patterns - reusable parts of our design

-------------------------------- */
.overflow-hidden {
    overflow: hidden;
}


/* -------------------------------- 

Main content

-------------------------------- */
.cd-main {
    overflow-x: hidden;
}

.cd-main::before {
    /* never visible - this is used in jQuery to check the current MQ */
    display: none;
    content: 'mobile';
}

.cd-main>* {
    -webkit-transition: -webkit-transform 0.5s 0.4s;
    -moz-transition: -moz-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s;
}

.cd-main.fold-is-open>* {
    /* on mobile - translate .cd-main content to the right when the .cd-folding-panel is open */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s 0s;
    -moz-transition: -moz-transform 0.5s 0s;
    transition: transform 0.5s 0s;
}

@media only screen and (min-width: 600px) {
    .cd-main.fold-is-open>* {
        -webkit-transform: translateX(600px);
        -moz-transform: translateX(600px);
        -ms-transform: translateX(600px);
        -o-transform: translateX(600px);
        transform: translateX(600px);
    }

    #menu-wrap .container .columns {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 1100px) {
    .cd-main::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }

    .cd-main.fold-is-open>* {
        /* reset style - on bigger devices we translate the gallery items */
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.cd-gallery {
    margin-top: 140px;
    margin-bottom: 140px;
}

.cd-gallery::after {
    clear: both;
    content: "";
    display: table;
}

.cd-gallery::before {
    /* this is the dark layer covering the .cd-gallery when the .cd-folding-panel is open */
    display: block;
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(28, 23, 38, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
    -moz-transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
    transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
}

.fold-is-open .cd-gallery::before {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.5s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.5s 0s, visibility 0s 0s;
    transition: opacity 0.5s 0s, visibility 0s 0s;
}

.cd-item {
    width: 100%;
    text-align: center;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.5s 0.4s;
    -moz-transition: -moz-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s;
}

#menu-wrap.sticky {
    transform: translateY(0);
}

#menu-wrap .logo.grey {
    background: url("../images/obilia logo_2_grey.png") no-repeat center center / contain;
}

.cd-item>a {
    display: table;
    height: 100%;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-item .portfolio-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cd-item .portfolio-box img {
    width: 100%;
    height: auto;
    display: block;
}

.cd-item .portfolio-box .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: rgba(33, 33, 33, .9);
    opacity: 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.cd-item:hover .portfolio-box .mask {
    opacity: 1;
}


.cd-item .portfolio-box .line {
    position: absolute;
    width: 40px;
    height: 3px;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -14px;
    z-index: 5;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cd-item .portfolio-box:hover .line {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    opacity: 1;
}

.cd-item .portfolio-box p {
    position: absolute;
    width: 100%;
    top: 40%;
    left: 0;
    z-index: 5;
    opacity: 0;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    color: #f1f1f1;
    -webkit-transform: translateY(-150px);
    -moz-transform: translateY(-150px);
    -ms-transform: translateY(-150px);
    -o-transform: translateY(-150px);
    transform: translateY(-150px);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cd-item .portfolio-box:hover p {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.cd-item .portfolio-box h5 {
    position: absolute;
    width: 100%;
    top: 54%;
    left: 0;
    z-index: 5;
    opacity: 0;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 24px;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cd-item .portfolio-box:hover h5 {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

@media only screen and (min-width: 1100px) {
    .cd-item {
        width: 50%;
        float: left;
        -webkit-transition: -webkit-transform 0.5s 0.4s;
        -moz-transition: -moz-transform 0.5s 0.4s;
        transition: transform 0.5s 0.4s;
    }

    .fold-is-open .cd-item {
        -webkit-transition: -webkit-transform 0.5s 0s;
        -moz-transition: -moz-transform 0.5s 0s;
        transition: transform 0.5s 0s;
        -webkit-transform: translateX(-400px);
        -moz-transform: translateX(-400px);
        -ms-transform: translateX(-400px);
        -o-transform: translateX(-400px);
        transform: translateX(-400px);
    }

    .fold-is-open .cd-item:nth-of-type(2n) {
        -webkit-transform: translateX(400px);
        -moz-transform: translateX(400px);
        -ms-transform: translateX(400px);
        -o-transform: translateX(400px);
        transform: translateX(400px);
    }
}

/* -------------------------------- 

folding panel

-------------------------------- */
.cd-folding-panel {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: visibility 0s 0.9s;
    -moz-transition: visibility 0s 0.9s;
    transition: visibility 0s 0.9s;
}

.cd-folding-panel .fold-left,
.cd-folding-panel .fold-right {
    /* the :after elements of .fold-left and .fold-right are the 2 fold sides */
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    /* enable a 3D-space for children elements */
    -webkit-perspective: 2000px;
    -moz-perspective: 2000px;
    perspective: 2000px;
}

.cd-folding-panel .fold-left::after,
.cd-folding-panel .fold-right::after {
    /* 2 fold sides */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.5s 0.4s, background-color 0.5s 0.4s;
    -moz-transition: -moz-transform 0.5s 0.4s, background-color 0.5s 0.4s;
    transition: transform 0.5s 0.4s, background-color 0.5s 0.4s;
}

.cd-folding-panel .fold-right {
    -webkit-perspective-origin: 0% 50%;
    -moz-perspective-origin: 0% 50%;
    perspective-origin: 0% 50%;
}

.cd-folding-panel .fold-right::after {
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
    -moz-transform: translateX(-100%) rotateY(-90deg);
    -ms-transform: translateX(-100%) rotateY(-90deg);
    -o-transform: translateX(-100%) rotateY(-90deg);
    transform: translateX(-100%) rotateY(-90deg);
    background-color: #c0c3c3;
}

.cd-folding-panel .fold-left {
    /* on mobile only the right fold side is visible */
    display: none;
}

.cd-folding-panel .fold-left::after {
    background-color: #272727;
}

.cd-folding-panel .cd-close {
    /* 'X' close icon */
    position: absolute;
    z-index: 1;
    display: inline-block;
    top: 10px;
    right: 10px;
    height: 44px;
    width: 44px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: opacity 0.2s 0s;
    -moz-transition: opacity 0.2s 0s;
    transition: opacity 0.2s 0s;
}

@media only screen and (min-width: 1100px) {
    .cd-folding-panel .cd-close {
        top: 30px;
        right: 43px;
    }
}

.cd-folding-panel .cd-close::after,
.cd-folding-panel .cd-close::before {
    /* lines of 'X' icon */
    content: '';
    position: absolute;
    height: 1px;
    width: 45px;
    left: 50%;
    top: 50%;
    background-color: #FFFFFF;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.cd-folding-panel .cd-close::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-folding-panel .cd-close::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-folding-panel.is-open {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
}

.cd-folding-panel.is-open .fold-right::after,
.cd-folding-panel.is-open .fold-left::after {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.5s 0s, background-color 0.5s 0s;
    -moz-transition: -moz-transform 0.5s 0s, background-color 0.5s 0s;
    transition: transform 0.5s 0s, background-color 0.5s 0s;
}

.cd-folding-panel.is-open .fold-right::after {
    background-color: #272727;
}

.cd-folding-panel.is-open .cd-close {
    opacity: 1;
    -webkit-transition: opacity 0.2s 0.5s;
    -moz-transition: opacity 0.2s 0.5s;
    transition: opacity 0.2s 0.5s;
}

@media only screen and (min-width: 600px) {
    .cd-folding-panel {
        width: 100%;
    }
}

@media only screen and (min-width: 1100px) {
    .cd-folding-panel {
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
    }

    .cd-folding-panel .fold-left,
    .cd-folding-panel .fold-right {
        width: 50%;
        float: left;
        height: 100%;
    }

    .cd-folding-panel .fold-right {
        /* change perspective-origin so that the 2 fold sides have the same vanishing point */
        -webkit-perspective-origin: 0% 50%;
        -moz-perspective-origin: 0% 50%;
        perspective-origin: 0% 50%;
    }

    .cd-folding-panel .fold-right::after {
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -ms-transform-origin: right center;
        -o-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: translateX(-100%) rotateY(-90deg);
        -moz-transform: translateX(-100%) rotateY(-90deg);
        -ms-transform: translateX(-100%) rotateY(-90deg);
        -o-transform: translateX(-100%) rotateY(-90deg);
        transform: translateX(-100%) rotateY(-90deg);
    }

    .cd-folding-panel .fold-left {
        display: block;
        /* change perspective-origin so that the 2 fold sides have the same vanishing point */
        -webkit-perspective-origin: 100% 50%;
        -moz-perspective-origin: 100% 50%;
        perspective-origin: 100% 50%;
    }

    .cd-folding-panel .fold-left::after {
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -ms-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: translateX(100%) rotateY(90deg);
        -moz-transform: translateX(100%) rotateY(90deg);
        -ms-transform: translateX(100%) rotateY(90deg);
        -o-transform: translateX(100%) rotateY(90deg);
        transform: translateX(100%) rotateY(90deg);
    }
}

@media only screen and (min-width: 1600px) {
    .cd-folding-panel {
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
    }
}

.cd-fold-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.4s;
    -moz-transition: visibility 0s 0.4s;
    transition: visibility 0s 0.4s;
}

.cd-fold-content>* {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}

.cd-fold-content .container {
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s 0s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, opacity 0.3s 0s;
}

.is-open .cd-fold-content .container {
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0.8s, opacity 0.3s 0.8s;
    -moz-transition: -moz-transform 0.3s 0.8s, opacity 0.3s 0.8s;
    transition: transform 0.3s 0.8s, opacity 0.3s 0.8s;
}

.is-open .cd-fold-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    -webkit-transition: visibility 0s 0.5s;
    -moz-transition: visibility 0s 0.5s;
    transition: visibility 0s 0.5s;
}

.is-open .cd-fold-content>* {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

@media only screen and (min-width: 1100px) {
    .cd-fold-content {}

    .cd-fold-content>* {
        -webkit-transform: translateY(80px);
        -moz-transform: translateY(80px);
        -ms-transform: translateY(80px);
        -o-transform: translateY(80px);
        transform: translateY(80px);
    }
}

/* -------------------------------- 

Javascript disabled

-------------------------------- */
.no-js .cd-fold-content.single-page {
    position: static;
    visibility: visible;
    height: auto;
    background-color: #dadcdc;
}

.no-js .cd-fold-content.single-page>* {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.cd-fold-content h3,
.cd-fold-content p {
    color: #FFFFFF;
}

.img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    display: block;
}

.project-list {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 40px;
}

.project-list p {
    text-align: left;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 10px;
}

.project-list p span {
    font-weight: 700;
    text-transform: uppercase;
}

.section-project-text {
    position: relative;
    width: 100%;
    margin: 0 auto;

}

.section-project-text p {
    text-align: center;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.btn-projects {
    cursor: pointer;
    height: 45px;
    width: 150px;
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-top: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    line-height: 45px;
    outline: none;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.btn-projects:hover {
    background: #212121;
    color: #fff;
}

/* Video Hover Image */

.video-wrapper-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

iframe {
    width: 100%;
}

.video-wrapper,
figure.vimeo,
figure.youtube {
    margin: 0;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure.youtube a img,
figure.vimeo a img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    max-width: none;
}

figure.vimeo a:after,
figure.youtube a:after {
    content: "";
    width: 60px;
    height: 60px;
    background: #fff;
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

figure.vimeo:hover a:after,
figure.youtube:hover a:after {
    background: #f9f9f9;
    -webkit-box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
}

figure.vimeo a:before,
figure.youtube a:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 10px solid #414141;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -7px;
    display: block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

figure.vimeo:hover a:before,
figure.youtube:hover a:before {
    border-left: 8px solid #000;
}

figure.vimeo a:hover img,
figure.youtube a:hover img {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform: scale(1.07) rotate(1deg);
    transform: scale(1.07) rotate(1deg);
}

figure.vimeo a img,
figure.youtube a img {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* #About
================================================== */

.top-link-pages {
    position: absolute;
    bottom: 30px;
    left: 50%;
    height: 40px;
    width: 50px;
    z-index: 20;
    cursor: pointer;
    /*background: url('../images/arrow-down.svg')no-repeat center bottom;*/
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    transform: translateX(-50%);
    opacity: 0;
    /* Hidden by default */
}

.top-link-pages:hover {
    height: 60px;
    bottom: 20px;
}

.top-link-pages.visible {
    opacity: 1;
    pointer-events: auto;
}

.about-box {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
}

.about-box .icon {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Ionicons';
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 30px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.about-box:hover .icon {
    opacity: 0;
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transform: translateY(-150%);
}

.about-box h6 {
    text-align: center;
    color: #fff;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.about-box:hover h6 {
    opacity: 0;
    -webkit-transform: translateY(-350%);
    -moz-transform: translateY(-350%);
    -ms-transform: translateY(-350%);
    -o-transform: translateY(-350%);
    transform: translateY(-350%);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.about-box p {
    position: absolute;
    top: 150%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #f8f8f8;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.about-box:hover p {
    top: 50%;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}




.cd-single-item {
    position: relative;
    background: #272727;
}

.cd-slider-wrapper {
    position: relative;
    z-index: 1;
    -webkit-transition: width 0.4s;
    -moz-transition: width 0.4s;
    transition: width 0.4s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: width;
}

.cd-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}

.cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.cd-slider li img {
    display: block;
    width: 100%;
}

.cd-slider li.selected {
    position: relative;
    z-index: 2;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.cd-slider li.move-left {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

@media only screen and (min-width: 1024px) {
    .cd-slider {
        cursor: pointer;
    }

    .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }

    .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, .5) url("../images/cd-icon-zoom.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        opacity: 0;
        z-index: 4;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }

    .no-touch .cd-slider:hover::after {
        opacity: 1;
    }

    .cd-slider-active .cd-slider {
        cursor: auto;
    }

    .cd-slider-active .cd-slider::after {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {

    .cd-slider-navigation li,
    .cd-slider-pagination {
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
        -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
        transition: opacity 0.4s 0s, visibility 0s 0.4s;
    }

    .cd-slider-active .cd-slider-navigation li,
    .cd-slider-active .cd-slider-pagination {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
        -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
        transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
    }
}

.cd-slider-navigation li {
    position: absolute;
    z-index: 2;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cd-slider-navigation li:first-of-type {
    left: 10px;
}

.cd-slider-navigation li:last-of-type {
    right: 10px;
}



.cd-slider-navigation li a {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../images/cd-icon-arrow.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.cd-slider-navigation li a.inactive {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

.no-touch .cd-slider-navigation li a:hover {
    opacity: .7;
}

.cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media only screen and (min-width: 1024px) {
    .cd-slider-navigation li:first-child {
        left: 30px;
    }

    .cd-slider-navigation li:last-child {
        right: 30px;
    }
}

.cd-slider-pagination {
    /* you won't see this element in the html but it will be created using jQuery */
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);

}

.cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both;
}

.touch .cd-slider-pagination {
    visibility: visible;
}

.cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 3px;
}

.cd-slider-pagination li.selected a {
    background: #ffffff30;
}

.cd-slider-pagination a {
    display: block;
    height: 5px;
    width: 25px;
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.75);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.cd-slider-wrapper .cd-close {
    display: none;
    position: absolute;
    z-index: 2;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: url("../images/cd-icon-close.svg") no-repeat center center;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0.4s;
}

.cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
}

.no-touch .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

@media only screen and (min-width: 1024px) {
    .cd-slider-wrapper .cd-close {
        display: block;
    }

    .cd-item-info h4,
    .cd-item-info p {
        max-width: 80%;
        text-align: left;
    }
}

.cd-item-info {
    padding: 50px 10%;
}

.cd-item-info h4,
.cd-item-info p {
    max-width: 100%;
    text-align: left;
}

@media only screen and (min-width: 1024px) {
    .cd-item-info {
        position: absolute;
        width: 44%;
        top: 50%;
        right: 4%;
        padding: 0 1% 0;
        margin: 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .cd-item-info .small-text {
        width: 60%;
    }
}


.cd-item-info .header-text {
    text-align: left;
    margin: 0;
}

.cd-item-info .header-text h4 {
    text-align: left;
    margin: 0;
}

.cd-item-info .header-text p {
    text-align: left;
}

.cd-item-info .header-text p:after {
    position: absolute;
    content: '';
    height: 3px;
    background-color: transparent;
    width: 30px;
    left: 0;
    margin-left: 0;
    bottom: 0;
    z-index: 1;
}

.cd-item-info .small-text {
    text-align: left;
    margin-top: 25px;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 1px;
    color: #ffffff;
    width: 100%;
}

.cd-content p {
    width: 80%;
    max-width: 768px;
    margin: 0 auto;
}



@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    .cd-item-info .small-text {
        /*display: none;*/
    }
}


.counter-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
}

.counter-numb {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 3px;
    color: #fff;
    padding-bottom: 5px;
}

.counter-numb em {
    font-style: normal;
}

.counter-wrap .icon-count {
    position: absolute;
    font-family: "Ionicons";
    font-size: 120px;
    line-height: 120px;
    text-align: center;
    width: 100%;
    left: 0;
    top: 50%;
    margin-top: -60px;
    z-index: -1;
    color: rgba(255, 255, 255, .1);
}

.counter-wrap p {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-box {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.team-box img {
    width: 100%;
    display: block;
    padding-bottom: 30px;
}

.team-box h6 {
    text-align: center;
}

.team-box p {
    text-align: center;
}

.team-box .social-team {
    position: absolute;
    z-index: 10;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 100%;
    left: 0;
    bottom: 100px;
}

.team-box .list-social-team li {
    padding: 0;
    list-style: none;
    text-align: center;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin-left: 4px;
    margin-right: 4px;
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.team-box:hover .list-social-team li {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.team-box .list-social-team li:nth-of-type(1) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.team-box .list-social-team li:nth-of-type(2) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.team-box .list-social-team li:nth-of-type(3) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.team-box .list-social-team li:nth-of-type(4) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.team-box .list-social-team li:nth-of-type(5) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.team-box .list-social-team li:nth-of-type(6) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.team-box .list-social-team li.icon-team a {
    font-family: 'FontAwesome';
    font-size: 11px;
    line-height: 30px;
    width: 30px;
    color: #000;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.team-box .list-social-team li:hover {}

.team-box .list-social-team li:hover.icon-team a {
    color: #fff;
}








.services-box {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.servicespara {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.services-box .icon {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Ionicons';
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.services-box:hover .icon {
    -webkit-animation-name: thumb;
    -webkit-animation-duration: 250ms;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: 2;
    -webkit-animation-timing-function: linear;
    animation-name: thumb;
    animation-duration: 250ms;
    transform-origin: 50% 50%;
    animation-iteration-count: 2;
    animation-timing-function: linear;
}

.services-box h6 {
    text-align: center;
    margin-bottom: 30px;
}

.services-box p {
    text-align: center;
}

@media only screen and (min-width: 1024px) {
    .cd-slider-wrapper {
        width: 50%;
    }

    .cd-slider-active .cd-slider-wrapper {
        width: 50%;
    }

    .servicespara {
        width: 40%;
    }
}


@-webkit-keyframes thumb {
    0% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.8) translateX(-5px) rotate(10deg);
    }

    50% {
        -webkit-transform: scale(1) translateX(5px) rotate(-10deg);
    }

    75% {
        -webkit-transform: scale(0.8) translateX(-5px) rotate(10deg);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes thumb {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.8) translateX(-5px) rotate(10deg);
    }

    50% {
        transform: scale(1) translateX(5px) rotate(-10deg);
    }

    75% {
        transform: scale(0.8) translateX(-5px) rotate(10deg);
    }

    100% {
        transform: scale(1);
    }
}

.owl-logo-wrapper {
    width: 100%;
}

#owl-logo {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#owl-logo .item {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#owl-logo .item img {
    width: 160px;
    display: block;
    margin: 0 auto;
    text-align: center;
}



.quote-wrap-hart {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.quote-wrap-hart .icon {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Ionicons';
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 40px;
    -webkit-animation: hart 0.8s ease infinite;
    animation: hart 0.8s ease infinite;
}

@-webkit-keyframes hart {
    0% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(0.8)
    }

    75% {
        -webkit-transform: scale(0.9)
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes hart {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(0.8);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}


#owl-quote {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#owl-quote .item {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
    overflow: hidden;
}

#owl-quote .item p {
    font-style: italic;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 3px;
    text-align: center;
    margin: 0 auto;
    max-width: 850px;
    width: 100%;
}

#owl-quote .item h6 {
    color: #fff;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 50px;
}



#bar-quote {
    width: 0%;
    max-width: 100%;
    height: 2px;
}

#progressBar-quote {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 160px;
    margin-left: -80px;
    background: #f8f8f8;
    z-index: 5;
}

.prev-quote {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    width: 30px;
    height: 20px;
    z-index: 20;
    cursor: pointer;
    background: url('../images/arrow-left-white.png')no-repeat center left;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.next-quote {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    width: 30px;
    height: 20px;
    z-index: 20;
    cursor: pointer;
    background: url('../images/arrow-right-white.png')no-repeat center right;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.prev-quote:hover,
.next-quote:hover {
    width: 40px;
}

.prev-quote:hover {
    left: 5px;
}

.next-quote:hover {
    right: 5px;
}


/* #Blog
================================================== */

#blog-grid {
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: calc(100% - 50px);
}

#blog-grid:after {
    content: '';
    display: block;
    clear: both;
}

.blog-box-1 {
    position: relative;
    float: left;
    width: calc(25% - 50px);
    display: block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 25px;
    margin-right: 24px;
    margin-bottom: 25px;
    margin-left: 25px;
    overflow: hidden;
    padding: 30px;
    -webkit-transform: translate3d(1px, 0, 0);
    transform: translate3d(1px, 0, 0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.blog-box-1.home-blog {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding: 30px;
}

.blog-box-1 .date {
    position: relative;
}

.blog-box-1 .date p {
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 2px;
    text-align: left;
    color: #fff;
}

.blog-box-1 .date p span {
    font-size: 42px;
    line-height: 42px;
}

.blog-box-1 .date p em {
    margin-top: 19px;
    float: right;
    display: block;
}

.blog-box-1 h6 {
    position: relative;
    text-align: left;
    line-height: 30px;
    margin-top: 30px;
    padding-bottom: 10px;
    color: #f8f8f8;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.blog-box-1 h6:hover {
    opacity: .7;
}

.blog-box-1.quote h6:hover {
    opacity: 1;
}

.blog-box-1 .p-box {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding-top: 20px;
}

.blog-box-1 .p-box p {
    text-align: left;
    color: #f8f8f8;
}

.blog-box-1 .p-box:after {
    content: '';
    display: block;
    clear: both;
}

.blog-box-1 img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.blog-box-1 img:hover {}

.blog-box-1 a {
    display: block;
}

a.blog-link {
    position: relative;
    width: 130px;
    letter-spacing: 2px;
    font-size: 15px;
    line-height: 23px;
    text-align: left;
    font-weight: 700;
    z-index: 3;
    display: block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

a.blog-link:hover {
    color: #fff;
}

.news-link a.blog-link {
    margin: 0 auto;
    text-align: center;
}

a.blog-link:after {
    font-family: 'FontAwesome';
    padding-left: 15px;
    font-weight: normal;
    content: "\f178";
}

#owl-blog {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#owl-blog .item {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    overflow: hidden;
}

#owl-blog .item img {
    width: 100%;
    display: block;
}

/* Video Hover Image */

.blog-box-1.video img {
    margin-top: 0;
}

.blog-box-1.video .date {
    margin-bottom: 30px;
}


.video-wrapper,
figure.vimeo,
figure.youtube {
    margin: 0;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure.youtube a img,
figure.vimeo a img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    max-width: none;
}

figure.vimeo a:after,
figure.youtube a:after {
    content: "";
    width: 60px;
    height: 60px;
    background: #fff;
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

figure.vimeo:hover a:after,
figure.youtube:hover a:after {
    background: #f9f9f9;
    -webkit-box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
}

figure.vimeo a:before,
figure.youtube a:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 10px solid #414141;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -7px;
    display: block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

figure.vimeo:hover a:before,
figure.youtube:hover a:before {
    border-left: 8px solid #000;
}

figure.vimeo a:hover img,
figure.youtube a:hover img {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform: scale(1.07) rotate(1deg);
    transform: scale(1.07) rotate(1deg);
}

figure.vimeo a img,
figure.youtube a img {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scale(1);
    transform: scale(1);
}


#blog-filter {
    position: relative;
    width: 100%;
    text-align: center;
}

#filter {
    position: relative;
    width: 100%;
    text-align: center;
}

#filter li {
    display: inline-block;
    text-align: center;
}

#filter:after {
    content: '';
    display: block;
    clear: both;
}

#filter li a {
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
    outline: none;
    color: #646464;
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

#filter li .current {}

#filter li a:hover {}

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-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: top, left, opacity;
    transition-property: transform, opacity;
}


/* #Blog Post
================================================== */

.post-block {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.post-block:after {
    content: '';
    display: block;
    clear: both;
}

.post-block p {
    text-align: left;
    margin-bottom: 20px;
}

.tags-block {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 30px;
}

.tags-block a {
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 3px 20px;
    background: #000;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.tags-block a.autor-link {
    float: right;
}

.post-block input,
.post-block textarea {
    margin-bottom: 20px;
    ;
}

.post-sidebar {
    position: relative;
    width: 100%;
}

.post-sidebar input {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 22px;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #f1f1f1;
    border: none;
    color: #737373;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.post-sidebar input:active {
    color: #fff;
    outline: none !important;
}

.post-sidebar input:hover {
    color: #737373;
    outline: none !important;
}

.post-sidebar input:focus {
    color: #fff;
    outline: none !important;
}

.post-sidebar input:-ms-input-placeholder {
    font-size: 10px;
    text-transform: uppercase;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.post-sidebar input::-moz-placeholder {
    font-size: 10px;
    text-transform: uppercase;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.post-sidebar input:-moz-placeholder {
    font-size: 10px;
    text-transform: uppercase;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.post-sidebar input::-webkit-input-placeholder {
    font-size: 10px;
    text-transform: uppercase;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.post-sidebar input:active:-ms-input-placeholder {
    color: #fff;
}

.post-sidebar input:active::-moz-placeholder {
    color: #fff;
}

.post-sidebar input:active:-moz-placeholder {
    color: #fff;
}

.post-sidebar input:active::-webkit-input-placeholder {
    color: #fff;
}

.post-sidebar input:focus:-ms-input-placeholder {
    color: #fff;
}

.post-sidebar input:focus::-moz-placeholder {
    color: #fff;
}

.post-sidebar input:focus:-moz-placeholder {
    color: #fff;
}

.post-sidebar input:focus::-webkit-input-placeholder {
    color: #fff;
}



.post-sidebar h6 {
    text-align: left;
    padding-bottom: 30px;
}

.link-tag {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: left;
}

.link-tag a {
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 3px 15px;
    background: #000;
    font-size: 10px;
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.link-tag a:hover {}

.link-recents {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: left;
}

.link-recents a {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 11px;
    line-height: 21px;
    text-align: left;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    letter-spacing: 1px;
    color: #323232;
    font-weight: 300;
    -webkit-transition: padding-left 0.3s, color 0.3s;
    transition: padding-left 0.3s, color 0.3s;
}

.link-recents a:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.link-recents a:hover {
    padding-left: 10px;
}

.lat-pro {
    position: relative;
    width: 100%;
}

.lat-pro:after {
    content: '';
    display: block;
    clear: both;
}

.lat-pro-img {
    position: relative;
    width: 33.3333333333333333%;
    float: left;
    display: inline-block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.lat-pro-img img {
    width: 100%;
    display: block;
    height: auto;
}

.lat-pro-img:hover {
    opacity: 0.4;
}

.separator-sidebar {
    position: relative;
    width: 100%;
    padding-top: 70px;
}





/* #Contact
================================================== */

#google-container {
    position: relative;
    width: 100%;
    height: 500px;
}

#cd-google-map {
    position: relative;
}

#cd-google-map address {
    position: absolute;
    bottom: 50px;
    left: 50px;
    border-radius: 3px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 1px;
    color: #747474;
    text-align: left;
}

#cd-zoom-in,
#cd-zoom-out {
    height: 32px;
    width: 32px;
    cursor: pointer;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-size: 32px 64px;
    opacity: .7;
    background-image: url("../images/cd-icon-controller.svg");
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.no-touch #cd-zoom-in:hover,
.no-touch #cd-zoom-out:hover {
    opacity: 1;
}

#cd-zoom-in:hover,
#cd-zoom-out:hover {
    opacity: 1;
}

@media only screen and (min-width: 768px) {

    #cd-zoom-in,
    #cd-zoom-out {
        margin-left: 50px;
    }
}

#cd-zoom-in {
    background-position: 50% 0;
    margin-top: 50px;
    margin-bottom: 1px;
}

#cd-zoom-out {
    background-position: 50% -32px;
}

#ajax-form {
    width: 100%;
    font-size: 15px;
    line-height: 14px;
    color: #101010;
    margin: 0 auto;
}

#ajax-form label {
    display: block;
    font-size: 15px;
    line-height: 30px;
}

#ajax-form input {
    position: relative;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 24px;
    padding-bottom: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    -webkit-transition: border-bottom 0.3s, color 0.3s;
    transition: border-bottom 0.3s, color 0.3s;
    font-family: 'PoppinsRegular';
}

#ajax-form textarea {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 24px;
    padding-bottom: 15px;
    background: transparent;
    height: 100px;
    border: none;
    color: #ffffff;
    -webkit-transition: border-bottom 0.3s, color 0.3s;
    transition: border-bottom 0.3s, color 0.3s;
}

#ajax-form textarea,
#ajax-form input {
    border-bottom: 1px solid rgba(100, 100, 100, .2);
    font-family: 'PoppinsRegular';
}

.error {
    font: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
    color: #636363;
}

#ajaxsuccess {
    background: #f2f2f2;
    color: #101010;
    font: 15px;
    height: 60px;
    display: none;
    padding-left: 10px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    font-size: 15px;
    text-align: center;
    align-content: center;
}

#ajaxfailed {
    background: #f2f2f2;
    color: #f80000;
    font: 15px;
    height: 60px;
    display: none;
    padding-left: 10px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    font-size: 15px;
    text-align: center;
    align-content: center;
}

.text-align-center {
    text-align: center;
    padding-top: 10px;
}

#ajax-form textarea:active,
#ajax-form input:active {
    color: #ffffff;
}

#ajax-form textarea:hover,
#ajax-form input:hover {
    color: #ffffff;
}

#ajax-form textarea:focus,
#ajax-form input:focus {
    outline: none !important;
}

#ajax-form input:-ms-input-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form input::-moz-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form input:-moz-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form input::-webkit-input-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form textarea:-ms-input-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form textarea::-moz-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form textarea:-moz-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form textarea::-webkit-input-placeholder {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'PoppinsRegular';
}

#ajax-form button {
    position: relative;
    margin-top: 30px;
    width: 140px;
    height: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    padding: 0;
    font-size: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    float: right;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

#ajax-form button:hover {
    color: #fff;
}

#ajax-form button:focus,
#ajax-form button:active {
    border: none;
    outline: none;
}

#ajax-form button {
    font-family: 'PoppinsMedium';
}

#ajax-form textarea:focus,
#ajax-form input:focus,
#ajax-form textarea:active,
#ajax-form input:active {}


.contact-block {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.contact-block .text {
    position: relative;
    width: 100%;
}

.contact-block .text h6 {
    position: relative;
    text-align: center;
    padding-bottom: 30px;
    color: #fff;
}

.contact-block .text p span {
    font-family: "Ionicons";
    padding-right: 5px;
    font-size: 18px;
    font-weight: normal;
}

.contact-block .text p {
    position: relative;
    text-align: center;
    color: #fff;
}



/* #Features
================================================== */

.blocks-wrapper {
    position: relative;
    width: 100%;
    padding-top: 130px;
    padding-bottom: 130px;
}

.block {
    position: relative;
    width: 100%;
    background: #000;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}


h4.features {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

h4.features:after {
    position: absolute;
    content: '';
    height: 3px;
    background-color: transparent;
    width: 30px;
    left: 50%;
    margin-left: -15px;
    bottom: 0;
    z-index: 1;
}



.pricing-item {
    position: relative;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px;
    margin: 0 auto;
    text-align: center;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    border-top: 10px solid transparent;
}

.pricing-item h5 {
    text-align: center;
    padding-bottom: 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.pricing-item p {
    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.pricing-item p span {
    font-weight: 700;
}

.pricing-item .number-price {
    position: relative;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 54px;
    line-height: 54px;
    color: #323232;
    text-align: center;
    padding-bottom: 17px;
}

.pricing-item .number-price span {
    font-family: 'FontAwesome';
    font-size: 16px;
    line-height: 62px;
    vertical-align: super;
    font-weight: 400;
    padding-right: 8px;
}

.pricing-item .number-price span:last-child {
    font-size: 16px;
    line-height: 54px;
    vertical-align: -1%;
    font-weight: 400;
    padding-right: 0;
    padding-left: 5px;
}

.pricing-item a.price-link {
    position: relative;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 7px;
    width: 130px;
    margin: 0 auto;
    margin-top: 25px;
    letter-spacing: 2px;
    display: block;
    border-radius: 3px;
    font-size: 15px;
    color: #fff;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.pricing-item a.price-link:hover {
    background: #111;
}


p.justify {
    text-align: justify;
}

.gu-box {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}

.gu-box.float-quotes {
    float: right;
    max-width: 400px;
    margin-left: 30px;
}

.gu-box p {
    color: #000;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 2px;
    font-style: italic;
    font-size: 16px;
    line-height: 28px;
}

.gu-box span {
    color: #999999;
    padding-left: 30px;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 12px;
    line-height: 20px;
}

.gu-box.margin-gu {
    margin-top: 20px;
    margin-bottom: 20px;
}


.alert {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px;
}

.alert p {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alert p span {
    font-size: 12px;
    font-family: 'FontAwesome';
    padding-right: 15px;
}

.alert.alert-green {
    background-color: #c5ebd4;
    border-left: 3px solid #8cd7aa;
}

.alert.alert-red {
    background-color: #ffcccb;
    border-left: 3px solid #ff817f;
}

.alert.alert-blue {
    background-color: #b9dff4;
    border-left: 3px solid #77c1ea;
}

.alert.alert-yelow {
    background-color: #fce1b6;
    border-left: 3px solid #f9c36d;
}

.alert.alert-blank {
    background-color: #eeeeee;
    border-left: 3px solid #ccc;
}

.alert.alert-blank-2 {
    background-color: #333333;
    border-left: 3px solid #111;
}

.alert.alert-blank-2 p {
    color: #fff;
}


.pro-bar-container {
    position: relative;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    height: 10px;
    background: #ccc;
}

.pro-bar-margin {
    margin-bottom: 30px;
}

.skills-name {
    position: relative;
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    color: #999999;
    text-transform: uppercase;
}

.skills-name span {
    font-weight: 700;
    color: #121212;
    padding-left: 5px;
}

.pro-bar {
    position: relative;
    height: 10px;
    overflow: hidden;
}

.pro-bar.bar-100 {
    width: 100%;
}

.pro-bar.bar-99 {
    width: 99%;
}

.pro-bar.bar-98 {
    width: 98%;
}

.pro-bar.bar-97 {
    width: 97%;
}

.pro-bar.bar-96 {
    width: 96%;
}

.pro-bar.bar-95 {
    width: 95%;
}

.pro-bar.bar-94 {
    width: 94%;
}

.pro-bar.bar-93 {
    width: 93%;
}

.pro-bar.bar-92 {
    width: 92%;
}

.pro-bar.bar-91 {
    width: 91%;
}

.pro-bar.bar-90 {
    width: 90%;
}

.pro-bar.bar-89 {
    width: 89%;
}

.pro-bar.bar-88 {
    width: 88%;
}

.pro-bar.bar-87 {
    width: 87%;
}

.pro-bar.bar-86 {
    width: 86%;
}

.pro-bar.bar-85 {
    width: 85%;
}

.pro-bar.bar-84 {
    width: 84%;
}

.pro-bar.bar-83 {
    width: 83%;
}

.pro-bar.bar-82 {
    width: 82%;
}

.pro-bar.bar-81 {
    width: 81%;
}

.pro-bar.bar-80 {
    width: 80%;
}

.pro-bar.bar-79 {
    width: 79%;
}

.pro-bar.bar-78 {
    width: 78%;
}

.pro-bar.bar-77 {
    width: 77%;
}

.pro-bar.bar-76 {
    width: 76%;
}

.pro-bar.bar-75 {
    width: 75%;
}

.pro-bar.bar-74 {
    width: 74%;
}

.pro-bar.bar-73 {
    width: 73%;
}

.pro-bar.bar-72 {
    width: 72%;
}

.pro-bar.bar-71 {
    width: 71%;
}

.pro-bar.bar-70 {
    width: 70%;
}

.pro-bar.bar-69 {
    width: 69%;
}

.pro-bar.bar-68 {
    width: 68%;
}

.pro-bar.bar-67 {
    width: 67%;
}

.pro-bar.bar-66 {
    width: 66%;
}

.pro-bar.bar-65 {
    width: 65%;
}

.pro-bar.bar-64 {
    width: 64%;
}

.pro-bar.bar-63 {
    width: 63%;
}

.pro-bar.bar-62 {
    width: 62%;
}

.pro-bar.bar-61 {
    width: 61%;
}

.pro-bar.bar-60 {
    width: 60%;
}

.pro-bar.bar-59 {
    width: 59%;
}

.pro-bar.bar-58 {
    width: 58%;
}

.pro-bar.bar-57 {
    width: 57%;
}

.pro-bar.bar-56 {
    width: 56%;
}

.pro-bar.bar-55 {
    width: 55%;
}

.pro-bar.bar-54 {
    width: 54%;
}

.pro-bar.bar-53 {
    width: 53%;
}

.pro-bar.bar-52 {
    width: 52%;
}

.pro-bar.bar-51 {
    width: 51%;
}

.pro-bar.bar-50 {
    width: 50%;
}

.pro-bar.bar-49 {
    width: 49%;
}

.pro-bar.bar-48 {
    width: 48%;
}

.pro-bar.bar-47 {
    width: 47%;
}

.pro-bar.bar-46 {
    width: 46%;
}

.pro-bar.bar-45 {
    width: 45%;
}

.pro-bar.bar-44 {
    width: 44%;
}

.pro-bar.bar-43 {
    width: 43%;
}

.pro-bar.bar-42 {
    width: 42%;
}

.pro-bar.bar-41 {
    width: 41%;
}

.pro-bar.bar-40 {
    width: 40%;
}

.pro-bar.bar-39 {
    width: 39%;
}

.pro-bar.bar-38 {
    width: 38%;
}

.pro-bar.bar-37 {
    width: 37%;
}

.pro-bar.bar-36 {
    width: 36%;
}

.pro-bar.bar-35 {
    width: 35%;
}

.pro-bar.bar-34 {
    width: 34%;
}

.pro-bar.bar-33 {
    width: 33%;
}

.pro-bar.bar-32 {
    width: 32%;
}

.pro-bar.bar-31 {
    width: 31%;
}

.pro-bar.bar-30 {
    width: 30%;
}

.pro-bar.bar-29 {
    width: 29%;
}

.pro-bar.bar-28 {
    width: 28%;
}

.pro-bar.bar-27 {
    width: 27%;
}

.pro-bar.bar-26 {
    width: 26%;
}

.pro-bar.bar-25 {
    width: 25%;
}

.pro-bar.bar-24 {
    width: 24%;
}

.pro-bar.bar-23 {
    width: 23%;
}

.pro-bar.bar-22 {
    width: 22%;
}

.pro-bar.bar-21 {
    width: 21%;
}

.pro-bar.bar-20 {
    width: 20%;
}

.pro-bar.bar-19 {
    width: 19%;
}

.pro-bar.bar-18 {
    width: 18%;
}

.pro-bar.bar-17 {
    width: 17%;
}

.pro-bar.bar-16 {
    width: 16%;
}

.pro-bar.bar-15 {
    width: 15%;
}

.pro-bar.bar-14 {
    width: 14%;
}

.pro-bar.bar-13 {
    width: 13%;
}

.pro-bar.bar-12 {
    width: 12%;
}

.pro-bar.bar-11 {
    width: 11%;
}

.pro-bar.bar-10 {
    width: 10%;
}

.pro-bar.bar-9 {
    width: 9%;
}

.pro-bar.bar-8 {
    width: 8%;
}

.pro-bar.bar-7 {
    width: 7%;
}

.pro-bar.bar-6 {
    width: 6%;
}

.pro-bar.bar-5 {
    width: 5%;
}

.pro-bar.bar-4 {
    width: 4%;
}

.pro-bar.bar-3 {
    width: 3%;
}

.pro-bar.bar-2 {
    width: 2%;
}

.pro-bar.bar-1 {
    width: 1%;
}

.pro-bar.bar-0 {
    width: 0%;
}



.smk_accordion {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.smk_accordion .accordion_in {
    position: relative;
    z-index: 10;
    margin-top: -1px;
    overflow: hidden;
    margin-bottom: 4px;
}

.smk_accordion .accordion_in .acc_head {
    position: relative;
    padding: 15px;
    text-align: left;
    background: #fff;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #666666;
    letter-spacing: 2px;
    display: block;
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.smk_accordion .accordion_in .acc_head:hover {
    color: #fff;
}

.smk_accordion .accordion_in.acc_active>.acc_head {
    color: #fff;
}

.smk_accordion .accordion_in .acc_head .acc_icon_expand {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
    background: url('../images/acc1.png')no-repeat center center;
    background-size: 20px 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.smk_accordion .accordion_in .acc_head:hover .acc_icon_expand {
    background: url('../images/acc2.png')no-repeat center center;
    background-size: 20px 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.smk_accordion .accordion_in.acc_active>.acc_head .acc_icon_expand {
    background: url('../images/acc3.png')no-repeat center center;
    background-size: 20px 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.smk_accordion .accordion_in .acc_content {
    color: #606060;
    padding: 30px;
    background: #fff;
}

.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
    margin-top: 5px;
}

.smk_accordion .accordion_in:first-of-type,
.smk_accordion .accordion_in:first-of-type .acc_head {}

.smk_accordion .accordion_in:last-of-type,
.smk_accordion .accordion_in:last-of-type .acc_content {}

.smk_accordion .accordion_in.acc_active>.acc_content {
    display: block;
}

.smk_accordion.acc_with_icon .accordion_in .acc_head,
.smk_accordion.acc_with_icon .accordion_in .acc_content {
    padding-left: 40px;
}

.text-left {
    text-align: left;
}





/* #Parallax
================================================== */

.parallax-1 {
    background: url('../images/parallax/1.jpg') repeat fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

@media only screen and (min-width: 1930px) {
    .parallax-1 {
        background-size: cover;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
    .parallax-1 {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

@media only screen and (max-width: 1400px) {
    .parallax-1 {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

.parallax-2 {
    background: url('../images/parallax/2.jpg') repeat fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

@media only screen and (min-width: 1930px) {
    .parallax-2 {
        background-size: cover;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
    .parallax-2 {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

@media only screen and (max-width: 1400px) {
    .parallax-2 {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

.parallax-3 {
    background: url('../images/parallax/3.jpg') repeat fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

@media only screen and (min-width: 1930px) {
    .parallax-3 {
        background-size: cover;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
    .parallax-3 {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

@media only screen and (max-width: 1400px) {
    .parallax-3 {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

.parallax-home {
    background: url('../images/parallax/home.jpg') repeat fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

@media only screen and (min-width: 1930px) {
    .parallax-home {
        background-size: cover;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
    .parallax-home {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

@media only screen and (max-width: 1400px) {
    .parallax-home {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

.parallax-about {
    background: url('../images/parallax/about.jpg') repeat fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

@media only screen and (min-width: 1930px) {
    .parallax-about {
        background-size: cover;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
    .parallax-about {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

@media only screen and (max-width: 1400px) {
    .parallax-about {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

.parallax-blog {
    background: url('../images/parallax/blog.jpg') repeat fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

@media only screen and (min-width: 1930px) {
    .parallax-blog {
        background-size: cover;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
    .parallax-blog {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

@media only screen and (max-width: 1400px) {
    .parallax-blog {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

.parallax-post {
    background: url('../images/parallax/post.jpg') repeat fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

@media only screen and (min-width: 1930px) {
    .parallax-post {
        background-size: cover;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1200px) and (orientation : landscape) {
    .parallax-post {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}

@media only screen and (max-width: 1400px) {
    .parallax-post {
        background-size: cover;
        background-attachment: scroll;
        background-position: top center !important;
    }
}




.parallax-footer {
    background: url('../images/parallax/footer-pattern.png') repeat fixed;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}




/* #Footer
================================================== */

.footer-img {
    position: relative;
    margin: 0 auto;
    text-align: center;
    display: block;
    width: 100%;
}

.footer-img img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.socialblock {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.socialblock svg {
    width: 40px;
    transition: 1s all ease;
}

.socialblock svg:hover path {
    fill: #FF7F00;
    transition: 1s all ease;
}

.emailaddress {
    margin-bottom: 20px;
}

.social-footer {
    position: relative;
    z-index: 100;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.list-social li {
    padding: 0;
    list-style: none;
    text-align: center;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    margin-left: 4px;
    margin-right: 4px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.list-social li.icon-soc a {
    font-family: 'FontAwesome';
    font-size: 11px;
    line-height: 30px;
    width: 30px;
    color: #fff;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.list-social li:hover {}

.list-social li:hover.icon-soc a {}

.footer-copy-text {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-copy-text p {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 2px;
    text-align: center;
}

.footer-copy-text p span {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-copy-text a {
    color: #828282;
    width: 100px;
    margin: 0 auto;
    position: relative;
    line-height: 24px;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}



/* #Media Queries
================================================== */

@media only screen and (max-width: 568px) {

    #menu-wrap .container,
    #clients .container {
        width: 90vw;
    }

    #work .container,
    #contact .container {
        width: 100vw;
    }

    #menu-wrap .container .columns,
    #work .container .columns,
    #clients .container .columns,
    #contact .container .columns {
        margin-bottom: 30px;
        width: 100%;
    }

    #contact .container .columns.five {
        padding: 0vw 10vw;
    }
}

@media only screen and (max-width: 1450px) {
    .blog-box-1 {
        width: calc(33.33333% - 50px);
    }
}

@media only screen and (max-width: 1300px) {
    .prev-quote {
        display: none;
    }

    .next-quote {
        display: none;
    }
}

@media only screen and (max-width: 1100px) {
    .blog-box-1 {
        width: calc(50% - 50px);
    }
}

@media only screen and (max-width: 1200px) {
    .logo {
        width: 100px;
        left: 10px;
        top: 30px;
        background: url('../images/obilia logo_2.png') no-repeat center center / contain;
    }

    .cbp-af-header.cbp-af-header-shrink .logo {
        left: 10px;
        top: 30px;
        background: url('../images/obilia logo_2.png') no-repeat center center/ contain;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .cbp-af-header.cbp-af-header-shrink ul.slimmenu li a {
        border-bottom: none;
    }

    .cbp-af-header.cbp-af-header-shrink ul.slimmenu li a:hover {
        border-bottom: none;
        background: none;
    }

    .cbp-af-header.cbp-af-header-shrink ul.slimmenu li {
        background: none;
    }

    ul.slimmenu li a {
        border-bottom: none;
    }

    ul.slimmenu li a:hover {
        border: none;
        background: none;
    }

    ul.slimmenu li {
        background: none;
    }

    ul.slimmenu li>ul {
        width: 100%;
        text-align: right;
    }
}

@media only screen and (max-width: 800px) {
    .blog-box-1 {
        width: calc(100% - 50px);
    }
}

@media only screen and (max-width: 600px) {}

@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .hero-top h2 {
        letter-spacing: 14px;
        font-size: 26px;
        line-height: 34px;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
    .hero-top h2 {
        letter-spacing: 12px;
        font-size: 24px;
        line-height: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .hero-top h2 {
        letter-spacing: 8px;
        font-size: 20px;
        line-height: 28px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .hero-top h2 {
        letter-spacing: 1px;
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .hero-top h2 {
        letter-spacing: 1px;
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 319px) {
    .hero-top h2 {
        letter-spacing: 1px;
        font-size: 18px;
        line-height: 26px;
    }
}


/*

Animation Banner

*/

:root {
    --marquee-speed: 30s;
    --marquee-bg: #272727;
    --marquee-text: #ffffff;
    --marquee-accent: #0d6efd;
}

/* The main container that clips the content */
.marquee-container {
    overflow: hidden;
    user-select: none;
    background: var(--marquee-bg);
    color: var(--marquee-text);
    padding: 2.5rem 0;
    display: flex;
    align-items: center;
    position: relative;
}

/* The moving track */
.marquee-content {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    /* Animation applied here */
    animation: scroll-left var(--marquee-speed) linear infinite;
    will-change: transform;
}

/* Items inside the marquee */
.marquee-item {
    display: flex;
    align-items: center;
    font-size: 5rem;
    /* Large impact font size */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    padding: 0px 60px;
}

/* Updated SVG Separator Styling */
.separator-svg {
    width: 60px;
    height: 60px;
    margin: 0 50px;
    color: var(--marquee-accent);
    flex-shrink: 0;
}

.item img {
    width: 160px;

}

/* Keyframes for the infinite loop */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover effect 
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
*/
/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-item {
        font-size: 2.5rem;
    }

    .separator-svg {
        width: 30px;
        height: 30px;
        margin: 0 25px;
    }
}






label span.error {
    font-size: 15px;
    color: red;
}

#err-name {
    font-size: 15px;
    font-weight: bold;
}

.scroll-downs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;

    width: 34px;
    height: 55px;
}

.mousey {
    width: 0px;
    padding: 8px 10px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
    margin-left: 14px;
    bottom: 15px;
    position: relative;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
    left: -1px;
    position: relative;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(25px);
        opacity: 0;
    }
}



.askAI {
    position: fixed;
    right: 1.3vw;
    bottom: 1.4vw;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: .5vw;
    cursor: pointer;
    z-index: 99;
    transition: transform .4s ease;
}

.aiImg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.askAI:hover {
    transform: scale(1.1);
    opacity: 0.5;
}


/* Custom styling for the sliding panel */
#iframe-panel {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: var(--panel-width);
    height: 100vh;
    background-color: #0a0a0a;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

#iframe-panel.open {
    right: 0;
    transition-delay: 0.2s;
    /* ⏱ delay before showing */
}

/* External close button updated to be transparent */
.external-close-btn {
    position: absolute;
    left: -50px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.external-close-btn:hover {
    opacity: 0.5;
    /* Change transparency to 0.5 on hover instead of color */
    transform: scale(1.1);
}

/* Responsive width for mobile and tablet */
@media (max-width: 768px) {
    #iframe-panel {
        width: 100%;
    }

    .external-close-btn {
        left: auto;
        right: 15px;
        /* Positioned on the right */
        top: 44px;
        /* Positioned at the top */
        bottom: auto;
        /* Reset bottom positioning */
        color: #FFFFFF;
        /* Darker color for visibility against white panel header */
        text-shadow: none;
        z-index: 1100;
        /* Ensure it stays above header content */
    }
}

/* Overlay backdrop */
#panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1040;
}

#panel-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Floating Action Button Styling */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
    z-index: 1000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.fab:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.iframe-container {
    flex-grow: 1;
    border: none;
    width: 100%;
    height: 100%;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    /* Hidden unless loading */
}

.iframHolder {
    background-color: #0a0a0a;
    position: relative !important;
    flex-grow: 1 !important;
}

:root {
    --panel-width: 30%;
}








@media only screen and (min-width:1400px) and (max-width:1600px) {
    .owl-theme .owl-controls .owl-page span {

        width: 20px !important;
    }

    .mousey {
        padding: 7px 10px;
        height: 25px;
        margin-left: 13px;
    }

    .scroll-to-top {
        width: 40px;
        height: 25px;
    }

    .askAI {
        width: 40px;
        height: 40px;
    }




}

@media only screen and (max-width: 1280px) {
    .owl-theme .owl-controls .owl-page span {
        width: 15px !important;
        height: 3px;
    }

    .swiper-pagination {
        gap: 6px !important;
    }

    .mousey {
        padding: 8px 10px;
        height: 21px;
        margin-left: 13px;
        bottom: 5px;
    }

    ul.slimmenu li a {
        font-size: 20px;
    }

    .cd-item .portfolio-box p {
        font-size: 20px;
    }

    .cd-item .portfolio-box h5 {
        font-size: 12px;

    }

    .header-text p {
        font-size: 12px;
    }

    h3 {
        font-size: 20px;
    }

    body,
    p {
        font-size: 12px;
        line-height: 18px;
    }

    h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .cd-item-info .small-text {
        font-size: 12px;
        line-height: 15px;
    }



    #ajax-form label {
        display: block;
        font-size: 12px;
        line-height: 18px;
    }

    #ajax-form input {
        font-size: 12px;
        line-height: 18px;

    }

    #ajax-form textarea {
        font-size: 12px;
        line-height: 18px;
    }

    .error {
        font: 12px;
    }

    #ajaxsuccess {
        font-size: 12px;
    }



    #ajax-form input:-ms-input-placeholder {
        font-size: 12px !important;
    }

    #ajax-form input::-moz-placeholder {
        font-size: 12px !important;
    }

    #ajax-form input:-moz-placeholder {
        font-size: 12px !important;
    }

    #ajax-form input::-webkit-input-placeholder {
        font-size: 12px !important;
    }

    #ajax-form textarea:-ms-input-placeholder {
        font-size: 12px !important;
    }

    #ajax-form textarea::-moz-placeholder {
        font-size: 12px !important;
    }

    #ajax-form textarea:-moz-placeholder {
        font-size: 12px !important;
    }

    #ajax-form textarea::-webkit-input-placeholder {
        font-size: 12px !important;
    }

    #ajax-form button {
        font-size: 15px;
    }

    .cd-item-info .small-text {
        margin-top: 15px;
    }

    .scroll-to-top {
        width: 40px;
        height: 25px;
        bottom: 6vw;
    }

    .askAI {
        width: 40px;
        height: 40px;
    }



}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .owl-theme .owl-controls .owl-page span {
        width: 10px !important;
    }

    /*
    #owl-top .item {
        height: 100vh;
        background-size: cover;
        background-position: center center;
        width: 100%;
    }
*/
    .scroll-to-top {
        bottom: 30px;
        right: auto;
        width: 40px;
        height: 20px;
        left: 20px;
    }

    .cd-folding-panel .cd-close {
        top: auto;
        right: 5px;
        bottom: 17px;
    }

    .servicespara br {
        display: none;
    }

    #iframe-panel {
        width: 60%;
    }

    .swiper-right {
        height: 60vh !important;
    }

    .swiper-pagination {
        gap: 2px !important;
    }

    .swiper-left .swiper-slide {
        width: 100% !important;
        height: 100vh !important;
        margin: 0 auto !important;
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        z-index: 2 !important;
        overflow: hidden !important;
    }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    .owl-theme .owl-controls .owl-page span {
        width: 9px !important;
    }

    .scroll-to-top {
        bottom: 30px;
        right: auto;
        width: 40px;
        height: 20px;
        left: 20px;
    }

    .cd-folding-panel .cd-close {
        top: auto;
        right: 5px;
        bottom: 17px;
    }

    .servicespara br {
        display: none;
    }

    .external-close-btn {
        right: 15px;
        top: 11vw;
        bottom: auto;
        color: #fff;
    }

    .askAI {
        bottom: 4vw;
    }

    #iframe-panel {
        width: 100%;
    }

    .swiper-right {
        height: 60vh !important;
    }
}

@media screen and (max-width: 576px) and (orientation: portrait) {
    .owl-theme .owl-controls .owl-page span {
        width: 7px !important;
    }

    .mousey {
        padding: 10px 9px;
        height: 19px;
        border: 2px solid #fff;
        border-radius: 25px;
        margin-left: 20px;
        bottom: 5px;
    }

    .owl-theme .owl-controls .owl-page span {
        margin-left: 2px !important;
        margin-right: 2px !important;

    }

    .scroll-to-top {
        bottom: 8vw;
        right: auto;
        width: 40px;
        height: 20px;
        left: 20px;
    }

    .cd-folding-panel .cd-close {
        top: auto;
        right: 5px;
        bottom: 10vw
    }

    /* Specific override when JavaScript detects an iPhone */
    body.is-iphone .cd-folding-panel .cd-close {
        bottom: 7vw
    }

    .servicespara br {
        display: none;
    }

    .askAI {
        right: 1.3vw;
        bottom: 6vw;
        padding: 1.5vw;
        width: 45px;
        height: 45px;
    }

    .external-close-btn {
        right: 10px;
        top: 20vw;
        color: #FFF;

    }

    .marquee-item {
        padding: 0px 10px;
    }

    #iframe-panel {
        width: 100%;
    }

    .left-image-1,
    .left-image-2,
    .left-image-3 {
        height: 50vh !important;
    }

    .swiper-right {
        height: 60vh !important;
    }

    .owl-dots {
        padding: 0 10px !important;
    }

    .modal-btn {
        margin-top: 0px;
    }

    .slide-left-01 {
        background-image: url('../images/slidermob/01.jpg') !important;
    }

    .slide-left-02 {
        background-image: url('../images/slidermob/02.jpg') !important;
    }

    .slide-left-03 {
        background-image: url('../images/slidermob/03.jpg') !important;
    }

    .slide-left-04 {
        background-image: url('../images/slidermob/04.jpg') !important;
    }

    .slide-left-05 {
        background-image: url('../images/slidermob/05.jpg') !important;
    }

    .slide-left-06 {
        background-image: url('../images/slidermob/06.jpg') !important;
    }

    .slide-left-07 {
        background-image: url('../images/slidermob/07.jpg') !important;
    }

    .slide-left-08 {
        background-image: url('../images/slidermob/08.jpg') !important;
    }

    .slide-left-09 {
        background-image: url('../images/slidermob/09.jpg') !important;
    }

    .slide-left-10 {
        background-image: url('../images/slidermob/10.jpg') !important;
    }

    .slide-left-11 {
        background-image: url('../images/slidermob/11.jpg') !important;
    }

    .slide-left-12 {
        background-image: url('../images/slidermob/12.jpg') !important;
    }

    .slide-left-13 {
        background-image: url('../images/slidermob/13.jpg') !important;
    }

    .slide-left-14 {
        background-image: url('../images/slidermob/14.jpg') !important;
    }

    .slide-left-15 {
        background-image: url('../images/slidermob/15.jpg') !important;
    }

    .slide-left-16 {
        background-image: url('../images/slidermob/16.jpg') !important;
    }

    .slide-left-17 {
        background-image: url('../images/slidermob/17.jpg') !important;
    }

    .slide-left-18 {
        background-image: url('../images/slidermob/18.jpg') !important;
    }

    .slide-left-19 {
        background-image: url('../images/slidermob/19.jpg') !important;
    }

    .slide-left-20 {
        background-image: url('../images/slidermob/20.jpg') !important;
    }

    .slide-left-21 {
        background-image: url('../images/slidermob/21.jpg') !important;
    }

    .slide-left-22 {
        background-image: url('../images/slidermob/22.jpg') !important;
    }

    .slide-left-23 {
        background-image: url('../images/slidermob/23.jpg') !important;
    }

    .slide-left-24 {
        background-image: url('../images/slidermob/24.jpg') !important;
    }

    .slide-left-25 {
        background-image: url('../images/slidermob/25.jpg') !important;
    }

    .slide-left-26 {
        background-image: url('../images/slidermob/26.jpg') !important;
    }

    .slide-left-27 {
        background-image: url('../images/slidermob/27.jpg') !important;
    }

    .slide-left-28 {
        background-image: url('../images/slidermob/28.jpg') !important;
    }

    .slide-left-29 {
        background-image: url('../images/slidermob/29.jpg') !important;
    }

    .slide-left-30 {
        background-image: url('../images/slidermob/30.jpg') !important;
    }

    .slide-left-31 {
        background-image: url('../images/slidermob/31.jpg') !important;
    }

    .slide-left-32 {
        background-image: url('../images/slidermob/32.jpg') !important;
    }

    .slide-left-33 {
        background-image: url('../images/slidermob/33.jpg') !important;
    }

    .slide-left-34 {
        background-image: url('../images/slidermob/34.jpg') !important;
    }

    .slide-left-35 {
        background-image: url('../images/slidermob/35.jpg') !important;
    }

    .slide-left-36 {
        background-image: url('../images/slidermob/36.jpg') !important;
    }

    .slide-left-37 {
        background-image: url('../images/slidermob/37.jpg') !important;
    }




}




/*
////////////////////////////
////////////////////////////
*/

.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.swiper-pagination {
    bottom: 20px !important;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 30px;
}

.swiper-pagination-bullet {
    flex: 1;
    max-width: 100px;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 2px !important;
    opacity: 1 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
    cursor: pointer;
}

/* Specific override for the right-hand slider pagination width */
.swiper-right .swiper-pagination-bullet {
    max-width: 50px;
}

.swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: scaleY(1.5);
}

.swiper-pagination-bullet.is-filled {
    background: #ffffff !important;
}

.swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    animation: fillProgress var(--progress-duration, 5000ms) linear forwards;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}
