/* =======================================================================
    Responsive
========================================================================== */

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

    .bce-main-header.responsive {
        width: 100%;
        left: 50%;
        position: relative;
        max-height: 193px;
    }
    .magento-experts {
        float: left;
        margin: 0 0 0 12.5%;
    }

    .hp-awards {
        height: auto;
        display: block;
    }
    .hp-awards div {
        display: inline-block;
        max-height: 140px;
        height: auto;
    }

    div.responsive-menu, 
    div.responsive-menu span {
        background: url("../images/responsive-menu.png");
        -webkit-font-smoothing: antialiased;
    }

    .responsive-menu, 
    .responsive-menu * {
        margin: 0;
        padding: 0;
    }

    .responsive-menu {
        display: -moz-inline-box;
        display: inline-block;
        vertical-align: middle;
        zoom: 1;
        *display: inline;
    }

    div.responsive-menu {
        display: block;
        position: relative;
        overflow: hidden;
        font-family: "Droid Sans" ,"Helvetica Neue", Helvetica, Arial, sans-serif;
        background-position: left top;
        line-height: 40px;
        height: 40px;
        padding-left: 15px;
    }

    div.responsive-menu select {
        font-size: 13px;
        color: #FFF;
        background-color: #333;
        border-color: #222;
        top: 0px;
        left: 0px;
        position: absolute;
        opacity: 0;
        filter: alpha(opacity:0);
    }

    div.responsive-menu span {
        display: block;
        background-position: right bottom;
        height: 40px;
        line-height: 40px;
        cursor: pointer;
        color: #FFF;
        font-size: 14px;
        font-weight: bold;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hp-clients img, .hp-awards img{
        width: 80%;
    }
}

@media only screen and (max-width: 1024px) {
    #bcs-top-content .content{
        padding-left: 5%;
        padding-right: 5%;
    }
}

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

    /* Common styles of menus */

    .dl-menuwrapper {
        z-index: 9999;
        width: 100%;
        max-width: 200px;
        float: left;
        position: relative;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px;
        -webkit-perspective-origin: 50% 200%;
        -moz-perspective-origin: 50% 200%;
        perspective-origin: 50% 200%;
    }

    .dl-menuwrapper:first-child {
        margin-right: 100px;
    }

    .dl-menuwrapper button {
        background: #ccc;
        border: none;
        width: 48px;
        height: 45px;
        text-indent: -900em;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        outline: none;
    }

    .dl-menuwrapper button:hover,
    .dl-menuwrapper button.dl-active,
    .dl-menuwrapper ul {
        background: #aaa;
        margin: 0;
    }

    .dl-menuwrapper button:after {
        content: '';
        position: absolute;
        width: 68%;
        height: 4px;
        background: #fff;
        top: 10px;
        left: 16%;
        /* Firefox */
        -moz-transition: all 0.7s ease;
        /* WebKit */
        -webkit-transition: all 0.7s ease;
        /* Opera */
        -o-transition: all 0.7s ease;
        /* Standard */
        transition: all 0.7s ease;
        box-shadow: 
            0 10px 0 #fff, 
            0 20px 0 #fff;
    }

    .dl-menuwrapper ul {
        padding: 0;
        list-style: none;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .dl-menuwrapper li {
        position: relative;
    }

    .dl-menuwrapper li a {
        display: block;
        position: relative;
        padding: 10px 20px;
        font-size: 16px;
        line-height: 20px;
        font-weight: 300;
        color: #fff;
        outline: none;
    }

    .no-touch .dl-menuwrapper li a:hover {
        background: rgba(255,248,213,0.1);
    }

    .dl-menuwrapper li.dl-back > a {
        padding-left: 30px;
        background: rgba(0,0,0,0.1);
    }

    .dl-menuwrapper li.dl-back:after,
    .dl-menuwrapper li > a:not(:only-child):after {
        position: absolute;
        top: 0;
        line-height: 40px;
        font-family: 'icomoon';
        speak: none;
        -webkit-font-smoothing: antialiased;
        content: "\e000";
    }

    .dl-menuwrapper li.dl-back:after {
        left: 10px;
        color: rgba(212,204,198,0.3);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .dl-menuwrapper li > a:after {
        right: 10px;
        color: rgba(0,0,0,0.15);
    }

    .dl-menuwrapper .dl-menu {
        margin: 5px 0 0 0;
        position: absolute;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .dl-menuwrapper .dl-menu.dl-menu-toggle {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .dl-menuwrapper .dl-menu.dl-menuopen {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

    /* Hide the inner submenus */
    .dl-menuwrapper li .dl-submenu {
        display: none;
    }

    /* 
    When a submenu is openend, we will hide all li siblings.
    For that we give a class to the parent menu called "dl-subview".
    We also hide the submenu link. 
    The opened submenu will get the class "dl-subviewopen".
    All this is done for any sub-level being entered.
    */
    .dl-menu.dl-subview li,
    .dl-menu.dl-subview li.dl-subviewopen > a,
    .dl-menu.dl-subview li.dl-subview > a {
        display: none;
    }

    .dl-menu.dl-subview li.dl-subview,
    .dl-menu.dl-subview li.dl-subview .dl-submenu,
    .dl-menu.dl-subview li.dl-subviewopen,
    .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
    .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
        display: block;
    }

    /* Dynamically added submenu outside of the menu context */
    .dl-menuwrapper > .dl-submenu {
        position: absolute;
        width: 100%;
        top: 50px;
        left: 0;
        margin: 0;
    }

    /* Animation classes for moving out and in */

    .dl-menu.dl-animate-out-1 {
        -webkit-animation: MenuAnimOut1 0.4s;
        -moz-animation: MenuAnimOut1 0.4s;
        animation: MenuAnimOut1 0.4s;
    }

    .dl-menu.dl-animate-out-2 {
        -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
        -moz-animation: MenuAnimOut2 0.3s ease-in-out;
        animation: MenuAnimOut2 0.3s ease-in-out;
    }

    .dl-menu.dl-animate-out-3 {
        -webkit-animation: MenuAnimOut3 0.4s ease;
        -moz-animation: MenuAnimOut3 0.4s ease;
        animation: MenuAnimOut3 0.4s ease;
    }

    .dl-menu.dl-animate-out-4 {
        -webkit-animation: MenuAnimOut4 0.4s ease;
        -moz-animation: MenuAnimOut4 0.4s ease;
        animation: MenuAnimOut4 0.4s ease;
    }

    .dl-menu.dl-animate-out-5 {
        -webkit-animation: MenuAnimOut5 0.4s ease;
        -moz-animation: MenuAnimOut5 0.4s ease;
        animation: MenuAnimOut5 0.4s ease;
    }

    @-webkit-keyframes MenuAnimOut1 {
        50% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        -webkit-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut2 {
    100% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut3 {
    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut4 {
    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut5 {
    100% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut1 {
    50% {
        -moz-transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        -moz-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        -moz-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut2 {
    100% {
        -moz-transform: translateX(-100%);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut3 {
    100% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut4 {
    100% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut5 {
    100% {
        -moz-transform: translateY(40%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut1 {
    50% {
        transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@keyframes MenuAnimOut2 {
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut3 {
    100% {
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut4 {
    100% {
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut5 {
    100% {
        transform: translateY(40%);
        opacity: 0;
    }
}

.dl-menu.dl-animate-in-1 {
    -webkit-animation: MenuAnimIn1 0.3s;
    -moz-animation: MenuAnimIn1 0.3s;
    animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
    -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
    -moz-animation: MenuAnimIn2 0.3s ease-in-out;
    animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
    -webkit-animation: MenuAnimIn3 0.4s ease;
    -moz-animation: MenuAnimIn3 0.4s ease;
    animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
    -webkit-animation: MenuAnimIn4 0.4s ease;
    -moz-animation: MenuAnimIn4 0.4s ease;
    animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
    -webkit-animation: MenuAnimIn5 0.4s ease;
    -moz-animation: MenuAnimIn5 0.4s ease;
    animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
    0% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn2 {
    0% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn5 {
    0% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn1 {
    0% {
        -moz-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        -moz-transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        -moz-transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn2 {
    0% {
        -moz-transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn3 {
    0% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn4 {
    0% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn5 {
    0% {
        -moz-transform: translateY(40%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes MenuAnimIn1 {
    0% {
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes MenuAnimIn2 {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn3 {
    0% {
        transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn4 {
    0% {
        transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn5 {
    0% {
        transform: translateY(40%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
    -webkit-animation: SubMenuAnimIn1 0.4s ease;
    -moz-animation: SubMenuAnimIn1 0.4s ease;
    animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
    -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
    animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
    -webkit-animation: SubMenuAnimIn3 0.4s ease;
    -moz-animation: SubMenuAnimIn3 0.4s ease;
    animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
    -webkit-animation: SubMenuAnimIn4 0.4s ease;
    -moz-animation: SubMenuAnimIn4 0.4s ease;
    animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
    -webkit-animation: SubMenuAnimIn5 0.4s ease;
    -moz-animation: SubMenuAnimIn5 0.4s ease;
    animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
    0% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn2 {
    0% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn5 {
    0% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn1 {
    0% {
        -moz-transform: translateX(50%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn2 {
    0% {
        -moz-transform: translateX(100%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn3 {
    0% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn4 {
    0% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn5 {
    0% {
        -moz-transform: translateZ(-200px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn1 {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn2 {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn3 {
    0% {
        transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn4 {
    0% {
        transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn5 {
    0% {
        transform: translateZ(-200px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
    -webkit-animation: SubMenuAnimOut1 0.4s ease;
    -moz-animation: SubMenuAnimOut1 0.4s ease;
    animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
    -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
    animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
    -webkit-animation: SubMenuAnimOut3 0.4s ease;
    -moz-animation: SubMenuAnimOut3 0.4s ease;
    animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
    -webkit-animation: SubMenuAnimOut4 0.4s ease;
    -moz-animation: SubMenuAnimOut4 0.4s ease;
    animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
    -webkit-animation: SubMenuAnimOut5 0.4s ease;
    -moz-animation: SubMenuAnimOut5 0.4s ease;
    animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut2 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut3 {
    0% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut4 {
    0% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut5 {
    0% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut1 {
    0% {
        -moz-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -moz-transform: translateX(50%);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut2 {
    0% {
        -moz-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -moz-transform: translateX(100%);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut3 {
    0% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut4 {
    0% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut5 {
    0% {
        -moz-transform: translateZ(0);
        opacity: 1;
    }
    100% {
        -moz-transform: translateZ(-200px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut1 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(50%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut2 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut3 {
    0% {
        transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut4 {
    0% {
        transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut5 {
    0% {
        transform: translateZ(0);
        opacity: 1;
    }
    100% {
        transform: translateZ(-200px);
        opacity: 0;
    }
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
    position: relative;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
    display: block;
}

.no-js .dl-menuwrapper li.dl-back {
    display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
    background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
    content: '';
}

/* Demo 2 */
.topresmenu .dl-menuwrapper button {
    background: #f6a20b !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 40px;}

.topresmenu .dl-menuwrapper button:hover,
.topresmenu .dl-menuwrapper button.dl-active,
.topresmenu .dl-menuwrapper ul {
    background: #f6a20b !important;
}

.topresmenu .dl-menuwrapper button.dl-active:after{
    top: 17px;
    left: 34%;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}


.topresmenu .dl-menuwrapper{
    position: fixed;
    top: 0;
    left: 0px;
}

#dl-menu{
    display: block;
}

#primary-menu{
    display: none;
}

    /* Ecomm */

    .bce.expertise {
        height: auto;
        overflow: hidden;
    }
    .bce.expertise .title-box {
        line-height: 0.8;
        width: auto;
    }
    .bce.expertise .title-box .highlight {
        font-size:1.8em;
    }

    .bce.results {
        width: auto;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }
    .bce.results .title-box {
        float: none;
        text-align: center;
    }
    .bce.results .content-body {
        width: auto;
        height: auto;
    }
    .bce.results .content-body .speech-arrow {
        display: none;
    }

    .bce.website-design {
        height: auto;
        overflow: hidden;
    }
    .bce.website-design .content-body {
        width: auto;
        line-height: 0.8;
    }
    .bce.website-design .content-body .we-are-awesome {

    }
    .hp-awards {
        width: auto;   
    }
}

/* Tablet Portrait size to Tablet Landscape (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .bcs .sidebar{
        width: 38%;
        padding: 40px 0;
        border: 0;
        float: right;
    }

    .bcs .postcontent {
        width: 62%;
        padding: 0;
    }

    .single-portfolio .maingallery img{
        padding: 5px;
        float: left;
        max-width: 47%;
    }

    .content-wrapper.bce-main-wrapper{
        padding: 0 29px;
    }

    .bce-our-process .title{
        height: 100px;
    }

    .bce-main-wrapper h1{
        font-size: 60px;
        line-height: 60px;
    }

    .bce-hp-title {
        font-size: 50px;
        line-height: 45px;
    }

    .da-thumbs li{
        padding: 9px;
    }
    .da-thumbs li a div span.full{
        padding: 30px 10px;
    }

    .da-thumbs li a div span.full p{
        line-height: 14px;
    }
    .da-thumbs li a div span.full p.big{
        font-size:15px;
        line-height: 25px;
    }

    .da-thumbs li a div span.full h3{
        font-size: 15px;
        text-align: center;
        line-height: 16px;
        padding: 0;
    }

    .da-thumbs li a div span.full .large-percentage{
        font-size: 25px;
    }
    .da-thumbs li a div span.full .small-percentage{
        font-size: 18px;
    }

    #sepcir{
        display: none;
    }

    #fact2{ left: auto; right: 0;}
    #fact3{ display: none;}
    #fact5{ display: none;}
    #fact6{ top:250px; left: auto; right: 0;}
    #fact9{ left: auto; right: 0;}
    #fact11{ left: auto; right: 0;}
    #fact10{top: 1493px; left: auto; right: 0;}
    #fact12{top: 1741px; right: 0;}
    #fact17{top: 1741px; left: 0;}
    #fact17{top: 1741px; left: 0;}

    #aboutus-facts{
        height: 1990px;
        position: relative;
    }

    .container {
        width: 768px;
        overflow: hidden;
    }

    #top-area { padding: 10px 29px; }

    .top-area-wrap { text-align: center; }

    .top-area-wrap p {
        font-size: 12px;
        font-style: normal;
    }

    .top-area-wrap a {
        margin-top: 5px;
        font-size: 12px;
    }

    a#top-area-trigger {
        left: 50%;
        right: auto;
        margin-left: -16px;
    }

    #top-bar,
    #header,
    #breadcrumbs,
    #copyrights { padding: 0 29px; }

    #top-bar .col_half { margin-right: 30px; }

    #logo { margin-right: 30px; }

    #logo,
    #top-contacts-area,
    #top-bar .col_half { max-width: 340px; }

    #header {padding: 20px 5px;}

    #primary-menu {
        height: 40px;
        padding: 15px;
        width: 50%;
    }

    #primary-menu ul { display: none; }

    #primary-menu select { display: block; }

    #top-bar,
    #header,
    #content,
    #footer,
    #copyrights{
        max-width: 768px;
    }

    .footer_menu{
        height: auto;
        text-align: center;
    }

    .first_section{
        text-align: center;
    }

    .footer_contacts{
        text-align: center;
    }

    .postcontent { width: 440px; }
    .sidebar { width: 210px; }
    .content-wrapper { width: 710px; }
    .col_full { width: 100%; }
    .col_half { width: 48%; }
    .col_one_third { width: 30.66%; }
    .col_two_third { width: 65.33%; }
    .col_one_fourth { width: 22%; }
    .col_three_fourth { width: 74%; }
    .col_one_fifth { width: 16.8%; }
    .col_two_fifth { width: 37.6%; }
    .col_three_fifth { width: 58.4%; }
    .col_four_fifth { width: 67.2%; }
    .col_one_sixth { width: 13.33%; }
    .col_five_sixth { width: 82.67%; }

    #landing-offer-slider,
    #landing-offer-content { width: 710px; }

    #landing-offer-slider,
    #landing-offer-content {
        margin-right: 30px;
        margin-bottom: 0;
    }

    .content-wrapper,
    .postcontent,
    .sidebar,
    .portfolio-meta {
        margin-right: 0;
        padding: 0px 29px;
    }

    .portfolio-meta {
        padding-left: 0;
        width: 210px;
    }

    .postcontent { padding-right: 30px; }

    .template-leftsidebar .postcontent {
        padding-left: 30px;
        padding-right: 29px;
    }

    .sidebar {
        background-color: transparent;
        border-left: 1px solid rgba(0,0,0,0.1);
        padding-left: 28px;
    }

    .template-leftsidebar .sidebar {
        border-left: none;
        padding-left: 30px;
        border-right: 1px solid rgba(0,0,0,0.1);
        padding-right: 28px;
    }

    #page-title { padding: 20px 29px; }

    #slider,
    #slider .slider-wrap,
    .slider-wrap .slide,
    .slide a,
    .slide img,
    #slider .ls-fallback-image,
    #slider .ls-fallback-image a,
    #slider .ls-fallback-image img {
        display: block;
        width: 768px;
        height: 369px;
    }

    .ei-slider{
        max-width: 768px !important;
        height: 364px !important;
    }

/*    #slider .ls-container { display: none !important; }*/

    #landing-offer { padding: 30px 29px; }

    .landing-slider,
    .landing-slider .landing-slide,
    .landing-slide a,
    .landing-slide img {
        display: block;
        width: 710px;
        height: 398px;
    }

    #landing-offer-content {
        text-align: center;
        margin-top: 30px;
    }

    #landing-features li {
        background-image: none;
        padding-left: 0;
    }

    .blacktitle h1{
        font-size: 70px;
    }
    #portfolio { margin: 0 -1px 0 0; }

    .portfolio-item { margin: 0; }

    #portfolio-slider,
    .portfolio-slider-wrap,
    .single-portfolio-image a,
    .single-portfolio-image img { width: 440px; }

    .related-projects-wrap { padding: 0 29px 40px; }

    .related-projects a,
    .related-projects img {
        width: 138px;
        height: 100px;
    }

    #home-portfolio-list .portfolio-normal { margin: 0 0 0 0; }

    #home-portfolio-list .portfolio-item {
        margin-right: 3px;
        width: 233px;
    }

    #home-portfolio-list .portfolio-image,
    #home-portfolio-list .portfolio-image a,
    #home-portfolio-list .portfolio-image img {
        width: 233px;
        height: 178px;
    }

    #home-portfolio-list .portfolio-desc h3 { font-size: 15px; }

    #portfolio-revealer { margin: -40px -29px 40px; }

    .entry {
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .entry_image a,
    .entry_image img {
        width: 440px;
        height: 233px;
    }

    .entry_image { width: 440px; }

    .blog-layout2 .entry_image { width: 180px; }

    .blog-layout2 .entry_image a,
    .blog-layout2 .entry_image img{
        width: 180px;
        height: 150px;
    }

    .entry_c { width: 330px; }

    .blog-layout2 .entry_c { width: 240px; }

    .entry .entry_meta { display: none; }

    .entry_content img { max-width: 440px; }

    #comments { margin-top: 30px; }

    .commentlist ul.children { margin-left: 0; }

    .commentlist ul.children ul.children { margin-left: 25px; }

    #respond label small { display: none; }

    #template-contactform input[type="text"],
    #template-contactform textarea {
        width: 445px;
        max-width: 445px;
    }

    #template-contactform div.col_one_third input[type="text"],
    #template-contactform div.col_one_third select { width: 123px; }

    .side_tabs ul.tabs { width: 120px; }

    .tour_tabs ul.tabs { width: 220px; }

    .pricing5 .pricing-title {
        padding: 15px 10px;
        font-size: 15px;
        line-height: 22px;
    }

    .pricing5 .pricing-featured .pricing-title {
        padding: 20px 10px;
        font-size: 18px;
        line-height: 24px;
    }

    .pricing5 .pricing-price { font-size: 24px; }

    .pricing5 .pricing-featured .pricing-price { font-size: 30px; }

    .pricing5 .pricing-features li { font-size: 12px; }

    .faqs-category-wrap .faq-category { width: 340px; }

    #testimonials-wrap { margin: 0 -20px -30px 0; }

    #testimonials-wrap .testimonial {
        padding-bottom: 30px;
        margin: 0 20px 30px 30px;
        border-bottom: 3px double #EEE;
    }

    #our-clients .client-wrap { width: 710px; }

    .clients-list { margin: 0; }

    .clients-list a,
    .clients-list img {
        width: 117px;
        height: 93px;
    }

    .home-client-list { height: 188px; }

    .home-client-list a,
    .home-client-list a img {
        width: 119px;
        height: 94px;
    }

    .callout {
        margin: 0 -29px 20px;
        padding: 15px 29px;
    }

    .callout .callout-desc {
        position: relative;
        width: 710px;
        padding-right: 0;
        text-align: center;
    }

    .callout-desc h3 { font-size: 18px; }

    .callout-desc span { font-size: 14px; }

    .callout .callout-action {
        position: relative;
        left: 0;
        right: 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0 0;
        top: 0;
        text-align: center;
    }

    .callout-action a {
        display: inline-block;
        padding: 0 20px;
    }

    #tweet-feed { padding: 15px 24px; }

    #footer { padding: 30px 29px; }

    .widget { margin-top: 40px; }

    #footer-widget-area { margin: 0 -30px -30px 0; }

    #footer .col_one_fourth {
        width: 340px;
        margin: 0 30px 30px 0;
    }

    .flickr-widget .flickr-widget-wrap { margin: 0 -6px -6px 0; }

    .flickr-widget .flickr-widget-wrap .flickr_badge_image { margin: 0 6px 6px 0; }

    .flickr-widget .flickr_badge_image img,
    .posts-widget li .post_image img {
        width: 42px;
        height: 42px;
    }

    #footer .flickr-widget-wrap { margin: 0 -8px -8px 0; }

    #footer .flickr-widget-wrap .flickr_badge_image { margin: 0 8px 8px 0; }

    #footer .flickr_badge_image img,
    #footer .posts-widget li .post_image img {
        width: 73px;
        height: 73px;
    }

    .widget_search input[type="text"],
    .widget_text input[type="text"] { width: 192px; }

    #footer .widget_search input[type="text"],
    #footer .widget_text input[type="text"] { width: 322px; }

    .posts-widget .post_image {
        width: 48px;
        height: 48px;
    }

    #footer .post_image {
        width: 79px;
        height: 79px;
        margin-right: 15px;
    }

    .contact-form-widget input[type="text"],
    .contact-form-widget textarea { width: 322px; }

    .widget-portfolio-scroll .portfolio-item { width: 210px; }

    .widget-portfolio-scroll .portfolio-image,
    .widget-portfolio-scroll .portfolio-image a,
    .widget-portfolio-scroll .portfolio-image img {
        width: 210px;
        height: 158px;
    }


    #footer .portfolio-item { width: 340px; }

    #footer .portfolio-image,
    #footer .portfolio-image a,
    #footer .portfolio-image img {
        width: 340px;
        height: 255px;
    }

    #footer .portfolio-desc h3 { font-size: 15px; }

    .widget-testimonials-scroll .wtestimonial-item { width: 210px; }

    #footer .wtestimonial-item { width: 340px; }

    #copyrights { margin-bottom: 0; }

    .content-desktop { display: none; }

    .content-tablet { display: block; }

    .hp-clients img, .hp-awards img{
        max-height: 80px;
        width: auto;
        max-width: 124px;
    }

    #hp-inventor{
        width: 300px;
    }

    .hp-content .welcome-header{
        height: 30px;
        width: 280px;
        font-size: 20px;
    }

    #content-wrap > div.content-wrapper.clearfix > div.hp-welcome > h2 {
        font-size: 32px !important;
    }

    .hp-content #hp-introduction p {
        font-size: 18px !important;
    }

    .category-header {
        height: 410px;
    }

    .category-wrapper .introduction{
        width: 70%;
    }
    .category-wrapper h2{
        font-size: 65px;
    }

    .category-wrapper h3{
        font-size: 55px;
    }
    .category-wrapper p{
        font-size: 20px;
        line-height: 25px;
    }

    #category-menu .menu li{
        font-size: 24px;
    }

    #ladderman{
        background-size: 100%;
        width: 300px;
    }

    #portfolio-filter li{
        font-size: 12px;
    }

    .bce.website-design .content-body .yes-we-are > img {
        width: 59%;
    }
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .healthcheck, .briefing {
        display: none;
    }

    .bcs .sidebar{
        width: 100%;
        padding: 40px 0;
        border: 0;
    }
    .bcs .postcontent {
        width: 100%;
        padding: 0;
    }

    .single-portfolio .resultstatement p{
        padding: 15px;
        width: auto;
        height: auto;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    #top-bar .topmenubar .col_two_third {
        text-align: left;
    }
    #top-bar-wrap.bce-top-bar, .bce-top-bar #top-bar {
        background-color: #092330;
    }
    .bce-top-bar .topmenubar {
        width: auto !important;
    }
    .bce-top-bar .col_two_third {
        position: relative;
        z-index: 100;
        top: 65px !important;
        text-align: center;
    }

    .magento-experts {
        float: none;
        margin: 0 0 0 0;
        text-align: center;
    }
    .magento-experts .yes-we-are {
        height: 40px;
    }

    .single-portfolio .maingallery img{

        max-width: 46%;
    }    .single-portfolio .testimonial{

        font-size: 20px;
        line-height: 30px;        
    }
    .single-portfolio{

        font-size: 18px;
        line-height: 30px;        
    }
    .single-portfolio .headimg{
        display: none;
    }

    .single-portfolio .portfolio-nav{
        text-align: center;
        line-height: 40px;
        height: 196px;
    }

    .single-portfolio h1{
        font-size: 30px;
    }

    .single-portfolio .portfolio-nav .companylogo{
        height: 80px;
        text-align: center;
        padding: 10px 0;
    }
    .single-portfolio .portfolio-nav div{
        margin: 0 !important;
    }
    .single-portfolio .portfolio-nav .prev, .single-portfolio .portfolio-nav .next{
        text-align: center;
    }

    .single-portfolio .portfolio-nav .prev{
        border-bottom: 3px solid #242323;
    }
    .single-portfolio .portfolio-nav .next{
        border-top: 3px solid #242323;
    }

    .single-portfolio .portfolio-nav .prev span, .single-portfolio .portfolio-nav .next span{
        display: none;
    }    
    .content-wrapper.bce-main-wrapper{
        padding: 0px;
    }

    .bce-main-wrapper .fullstatement{
        font-size: 30px;
        line-height: 40px;
    }

    .bce-our-process .title{
        height: 80px;
    }

    .bce-hp-title {
        font-size: 50px;
        line-height: 40px;
    }

    .bce-main-wrapper .col_image img{
        margin: 0;
    }

    .bce-main-wrapper .statement{
        font-size: 25px; 
        margin-top: 5px; 
        line-height: 25px;            
        padding-top: 20px;
    }

    .bce-main-wrapper h1{
        font-size: 40px;
        line-height: 40px;    }

    .bce-main-wrapper .col_image_long  {
        display: none;
    }

    .bce-main-wrapper > .col_full{
        padding: 30px 0 30px 0;
    }

    .bce-main-wrapper > .col_full > .col_full{
        padding: 0;
    }

    #sepcir{display: none;}

    .small-panout{
        margin: 24px;
    }

    .aboutus-fact{font-size: 19px;}
    #fact1{width: 100%;}
    #fact2{ top: 245px; left: 0; right: auto;}
    #fact3{ top: 245px; left: auto; right: 0;}
    #fact4{display: none;}
    #fact5{ top: 1235px; left: 0; right: auto; width: 100%; text-align: center;}
    #fact6{ top:245px; left: auto; right: 0;}
    #fact7{top: 490px;}
    #fact8{ top: 490px;}
    #fact14{ top:738px; left: auto; right:0;}
    #fact9{ display: none;}
    #fact11{ top: 990px; left: 0; right: auto; width: 100%;}
    #fact10{display: none;}
    #fact12{display: none;}
    #fact13{display: none;}
    #fact15{top: 1480px; left: 0; right: auto; width: 100%;}
    #fact16{top:1720px; width: 100%;}
    #fact17{top: 1960px; left: 0; width: 100%;}
    #fact17 .col_full {width:auto;}

    #aboutus-facts{
        height: 2250px;
        position: relative;
    }

    .container { width: 480px; }

    #top-area { display: none; }

    #top-bar { height: 40px; }

    #top-bar,
    #header,
    #copyrights { padding: 0 20px; }

    #top-bar .col_half {
        display: block;
        float: none;
        margin: 0 !important;
        text-align: center !important;
    }

    #top-bar .col_half.col_last { display: none; }

    #top-menu ul,
    #top-menu ul li { display: inline-block; }

    #header { height: auto; padding-bottom: 10px;}

    #logo {
        float: none;
        margin: 0;
        padding: 15px 0;
        text-align: center;
    }

    #logo a.logo-image { display: inline-block; }

    #logo,
    #top-contacts-area {
        width: 440px;
        max-width: 440px;
    }

    #top-contacts-area { margin: 0 0 25px; }
    #top-bar .topmenubar .col_last{
        display: none;
    }
    #top-contacts-area #top-contacts,
    #top-contacts-area #top-social { text-align: center; }

    #top-contacts li { margin: 0 0 0 4px; }

    #top-social li { margin: 0 0 0 2px; }

    #top-contacts li:first-child,
    #top-social li:first-child { margin-left: 0; }

    #primary-menu {
        height: 40px;
        padding: 15px;
        width: 93%;
    }

    #primary-menu ul { display: none; }

    #primary-menu select { display: block; }

    #category-menu .menu li {
        float: none; 
        min-height: auto; 
        height:35px; 
        width: auto; 
        border-left: 10px solid #0a2430 !important;
        text-align: left;
        padding-left: 10px;
        border-top: 0;
        max-height: 35px;
    }

    #category-menu .menu li a{line-height: 40px;}
    #category-menu .menu .undrestand-menu{background-color: #3d87d4;}
    #category-menu .menu .think-menu{background-color: #69ad63;}
    #category-menu .menu .create-menu{background-color: #790000;}
    #category-menu .menu .measure-menu{background-color: #ff6600;}
    #category-menu .menu .refine-menu{background-color: #ffa800;}
    #category-menu .menu .sub-menu { display: none; }

    #fullwidth-subheader-wrap{
        height: 55px;
        border-bottom: 5px solid #F1E6DD;
    }
    #fullwidth-subheader-wrap ul li{
        display: none;
        line-height: 60px;
    }
    #fullwidth-subheader-wrap ul li.current{
        color: #FFF;
        display: block;
        font-family: 'AvalonMediumBold';
        font-size: 55px;
        padding-left: 50px;
    }

    #top-bar,
    #header,
    #content,
    #footer,
    #copyrights{
        max-width: 480px;
    }

    .footer_menu{
        height: auto;
        text-align: center;
    }

    .first_section{
        text-align: center;
    }

    .footer_contacts{
        text-align: center;
    }

    .postcontent { width: 440px; }
    .sidebar { width: 440px; display: none;}
    .content-wrapper { width: 480px; }

    .col_full,
    .col_half,
    .col_one_third,
    .col_two_third,
    .col_one_fourth,
    .col_three_fourth,
    .col_one_fifth,
    .col_two_fifth,
    .col_three_fifth,
    .col_four_fifth,
    .col_one_sixth,
    .col_five_sixth { width: 100%; }

    #landing-offer-slider,
    #landing-offer-content { width: 440px; }
    #landing-offer-slider,
    #landing-offer-content {
        margin-right: 30px;
        margin-bottom: 0;
    }

    .content-wrapper,
    .postcontent,
    .sidebar,
    .portfolio-meta,
    .col_full,
    .col_half,
    .col_one_third,
    .col_two_third,
    .col_three_fourth,
    .col_one_fourth,
    .col_one_fifth,
    .col_two_fifth,
    .col_three_fifth,
    .col_four_fifth,
    .col_one_sixth,
    .col_five_sixth,
    #landing-offer-slider,
    #landing-offer-content {
        margin-right: 0;
        float: none;
    }

    .postcontent,
    .sidebar,
    .portfolio-meta,
    .col_half,
    .col_one_third,
    .col_two_third,
    .col_three_fourth,
    .col_one_fourth,
    .col_one_fifth,
    .col_two_fifth,
    .col_three_fifth,
    .col_four_fifth,
    .col_one_sixth,
    .col_five_sixth { margin-bottom: 30px !important; }

    .content-wrapper {
        margin-right: 0;
        padding: 40px 0;
    }

    .content-wrapper { padding-bottom: 20px; }

    .portfolio-meta {
        width: 440px;
        padding: 0 20px 20px;
    }

    .postcontent { padding: 40px 20px 10px 20px; }

    .template-leftsidebar .postcontent { padding: 0 20px 20px; }

    .sidebar {
        border: none;
        padding: 40px 20px 20px;
        border-top: 3px double rgba(0,0,0,0.1);
    }

    .template-leftsidebar .sidebar {
        padding: 40px 20px;
        border: none;
        border-bottom: 3px double rgba(0,0,0,0.1);
    }

    #page-title {
        padding: 20px;
        text-align: center;
    }

    #page-title h1 span { display: none; }

    #breadcrumbs { display: none; }

    #slider,
    #slider .slider-wrap,
    .slider-wrap .slide,
    .slide a,
    .slide img,
    #slider .ls-fallback-image,
    #slider .ls-fallback-image a,
    #slider .ls-fallback-image img {
        display: block;
        width: 480px;
        height: 230px;
    }

    .ei-slider{
        max-width: 480px !important;
        height: 225px !important;
    }

/*    #slider .ls-container { display: none !important; }*/

    .slide .slide-caption,
    .nivo-caption,
    .rs-caption {
        right: 0;
        padding: 10px;
        font-size: 13px;
    }

    .ei-title { display: none; }

    .slider-prev,
    .slider-next,
    .flex-direction-nav a.flex-prev,
    .flex-direction-nav a.flex-next,
    .nivo-prevNav,
    .nivo-nextNav,
    .rs-arrows .rs-prev,
    .rs-arrows .rs-next { right: 32px; }

    .slider-next,
    .flex-direction-nav a.flex-next,
    .nivo-nextNav,
    .rs-arrows .rs-next { right: 0; }

    #landing-offer { padding: 30px 20px; }

    .landing-slider,
    .landing-slider .landing-slide,
    .landing-slide a,
    .landing-slide img {
        display: block;
        width: 440px;
        height: 247px;
    }

    .landing-action {
        display: block;
        margin: 10px;
        text-align: center;
    }

    #landing-offer-content {
        text-align: center;
        margin-top: 30px;
    }

    #landing-features li {
        background-image: none;
        padding-left: 0;
    }

    #portfolio { margin: 0 0 -10px 0; }

    #portfolio-filter {
        text-align: center;
        height: 200px;
        margin: 0 -10px 0 0;
    }

    #portfolio-filter li {
        margin: 0 10px 10px 0;
        width: 215px;
    }
    /*
        .portfolio-item {
            float: none;
            margin: 0 101px 10px 101px;
        }
    */

    .blacktitle h1{
        font-size: 70px;
        margin-top: 0;
        line-height: 95px;
        text-align: center;
    }
    .blacktitle .col_half{
        margin-bottom: 15px !important;
    }

    .blacktitle .col_last{
        text-align: center;
        margin-top: 0;
    }

    .da-thumbs li{
        padding: 4px;
    }


    .da-thumbs li a div span.mini{
        display: block;
    }

    .da-thumbs li a div span.full{
        display: none;
    }

    .da-thumbs li a div span.mini {
        font-family: 'AvalonMediumBold';
        color: #FFF;
        font-size: 25px;
        line-height: 22px;
        text-align: center;
        height: 100%;
        vertical-align: middle;
        padding-top: 17%;
    }

    #portfolio-slider,
    .portfolio-slider-wrap,
    .single-portfolio-image a,
    .single-portfolio-image img { width: 440px; }

    #page-title .portfolio-navigation {
        position: relative;
        max-width: 106px;
        height: 32px;
        top: 0;
        left: 0;
        right: 0;
        margin: 30px auto 10px;
    }

    .related-projects-wrap { padding: 0 20px 40px; }

    .related-projects { margin: 0 -3px 0 -1px; }

    .related-projects a { margin: 0 3px 0px 0; }

    .related-projects a,
    .related-projects img {
        width: 145px;
        height: 105px;
    }

    #home-portfolio-list .portfolio-normal { margin: 0 0 -3px 0; }

    #home-portfolio-list .portfolio-item {
        margin: 0 3px 3px 0;
        width: 217px;
        float: left;
    }

    #home-portfolio-list .portfolio-image,
    #home-portfolio-list .portfolio-image a,
    #home-portfolio-list .portfolio-image img {
        width: 217px;
        height: 165px;
    }

    #home-portfolio-list .portfolio-desc h3 { font-size: 15px; }

    #portfolio-revealer { margin: -40px -20px 40px; }

    #portfolio-loader {
        top: -30px;
        left: 50%;
        right: auto;
        margin-left: -10px;
    }

    .entry {
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .entry_image a,
    .entry_image img {
        width: 440px;
        height: 233px;
    }

    .entry_image { width: 440px; }

    .blog-layout2 .entry_image { width: 180px; }

    .blog-layout2 .entry_image a,
    .blog-layout2 .entry_image img{
        width: 180px;
        height: 150px;
    }

    .entry_c { width: 330px; }

    .blog-layout2 .entry_c { width: 240px; }

    .entry .entry_meta { display: none; }

    .entry_content img { max-width: 440px; }

    #comments { margin-top: 30px; }

    .commentlist ul.children { margin-left: 0; }

    .commentlist ul.children ul.children { margin-left: 25px; }

    #respond label small { display: none; }

    #template-contactform input[type="text"],
    #template-contactform textarea {
        width: 422px;
        max-width: 422px;
    }

    #template-contactform div.col_one_third input[type="text"],
    #template-contactform div.col_one_third select { width: 422px; }

    .side_tabs ul.tabs { width: 120px; }

    .tour_tabs ul.tabs { width: 220px; }

    .tour_tabs ul.tabs {
        float: none;
        width: 440px;
        padding: 0;
        border: none;
    }

    .tour_tabs ul.tabs li {
        height: 40px;
        line-height: 40px;
        border: 1px solid #DDD;
        border-top: none;
    }

    .tour_tabs ul.tabs li:first-child { border-top: 1px solid #DDD; }

    .tour_tabs ul.tabs li.active {
        border-right: 1px solid #DDD;
        margin-right: 0;
    }

    .tour_tabs .tab_content {
        clear: both;
        padding: 30px 0 20px;
    }

    .pricing { padding-top: 0; }

    .pricing-box,
    .pricing3 .pricing-box,
    .pricing5 .pricing-box {
        float: none;
        width: 100%;
        margin-top: 10px;
    }

    .pricing-box:first-child { margin-top: 0; }

    .pricing-featured { margin-top: 10px; }

    .pricing-box .pricing-inner { border: 1px solid #DDD; }

    .pricing-featured .pricing-inner { margin: 0; }

    .faqs-category-wrap .faq-category { width: 440px; }


    #testimonials-wrap { margin: 0; }

    #testimonials-wrap .testimonial {
        float: none;
        padding-bottom: 20px;
        margin: 0 70px 20px 70px;
    }

    #our-clients .client-wrap {
        float: none;
        width: 440px;
        margin: 0 0 20px 0;
        padding-bottom: 20px;
    }

    .clients-list { margin: 0 0 20px 0; }

    .clients-list a,
    .clients-list img {
        width: 145px;
        height: 115px;
    }

    #home-client-scroller { text-align: center; }

    .home-client-list {
        display: inline-block;
        width: 220px;
        height: 350px;
    }

    .home-client-list a,
    .home-client-list a img {
        width: 220px;
        height: 175px;
    }

    .callout {
        margin: 0 -20px 20px;
        padding: 15px 20px;
    }

    .callout .callout-desc {
        position: relative;
        width: 440px;
        padding-right: 0;
        text-align: center;
    }

    .callout-desc h3 { font-size: 18px; }

    .callout-desc span { font-size: 14px; }

    .callout .callout-action {
        position: relative;
        left: 0;
        right: 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0 0;
        top: 0;
        text-align: center;
    }

    .callout-action a {
        display: inline-block;
        padding: 0 20px;
    }

    #tweet-feed { padding: 15px; }

    .error404page {
        font-size: 200px;
        padding-bottom: 30px;
    }

    #footer { padding: 30px 20px; }

    .widget { margin-top: 40px; }

    #footer-widget-area { margin: 0 0 -30px 0; }

    #footer .col_one_fourth {
        width: 440px;
        margin: 0 0 30px 0 !important;
    }

    .flickr-widget .flickr-widget-wrap,
    #footer .flickr-widget-wrap { margin: 0 -6px -4px -2px; }

    .flickr-widget .flickr-widget-wrap .flickr_badge_image,
    #footer .flickr-widget-wrap .flickr_badge_image { margin: 0 4px 4px 0; }

    .flickr-widget .flickr_badge_image img,
    #footer .flickr_badge_image img {
        width: 46px;
        height: 46px;
    }

    .widget_search input[type="text"],
    .widget_text input[type="text"] { width: 422px; }

    #footer .widget_search input[type="text"],
    #footer .widget_text input[type="text"] { width: 422px; }

    .posts-widget .post_image,
    #footer .post_image {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }

    .posts-widget li .post_image img,
    #footer .posts-widget li .post_image img {
        width: 74px;
        height: 74px;
    }

    .posts-widget .post_title {
        font-size: 15px;
        line-height: 22px;
    }

    .posts-widget .post_meta { font-size: 13px; }

    .contact-form-widget input[type="text"],
    .contact-form-widget textarea { width: 422px; }

    .widget-portfolio-scroll .portfolio-item,
    #footer .portfolio-item {
        float: left;
        width: 220px;
    }

    .widget-portfolio-scroll .portfolio-image,
    .widget-portfolio-scroll .portfolio-image a,
    .widget-portfolio-scroll .portfolio-image img,
    #footer .portfolio-image,
    #footer .portfolio-image a,
    #footer .portfolio-image img {
        width: 220px;
        height: 166px;
    }

    #footer .portfolio-desc h3 { font-size: 14px; }

    .widget-testimonials-scroll .wtestimonial-item,
    #footer .wtestimonial-item { width: 440px; }

    #copyrights #foo-left,
    #copyrights #foo-right {
        float: none;
        padding: 15px 0 10px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
    }

    #copyrights #foo-right { padding: 10px 0 15px; }

    .content-desktop { display: none; }

    .content-mobilel { display: block; }
    .hp-clients {
        display: none;
    }
    .hp-content .welcome-header{
        height: 30px;
        width: 95%;
        font-size: 20px;
        padding-right: 5%;
        text-align: right;
    }
    .hp-content #hp-introduction{
        width: 94%;
        margin: 0 3%;
    }
    .hp-welcome{
        height: 50px;
    }

    .hp-welcome h2{
        font-size: 20px;
        line-height: 50px;
    }

    .hp-clients img, .hp-awards img{
        width: 80%;
    }

    #hp-inventor{
        width: 300px
    }

    .hp-content .welcome-header{
        height: 30px;
        width: 280px;
        font-size: 20px;
    }

    .hp-welcome h2{
        font-size: 32px;
    }

    .category-header {
        height: 255px;
    }

    .category-wrapper{
        padding: 0;
    }

    .category-wrapper .introduction{
        width: 100%;
    }
    .category-wrapper h2{
        font-size: 45px;
    }

    .category-wrapper h3{
        font-size: 35px;
    }
    .category-wrapper p{
        font-size: 17px;
        line-height: 22px;
    }

    .team-header p{
        width: 100%
    }
    .team-header h2 span.part1{
        width: 360px;
        font-size: 27px;
        padding-top: 12px;
    }

    .team-header h2 span.part2{
        width: 330px;
        font-size: 27px;
        padding-bottom: 5px;
    }
    .team-header .team-door{
        display: none;
    }

    #top-bar .talktous{
        display: none;
    }

    #team-members{
        padding: 0;
    }
    .team-member.large{
        height: 320px;
        width: 80%;
        margin: 0;
    }
    .tmember-content{
        width: 100%;
        height: 310px;
    }
    .tmember-content h4{
        left: 0;
        top: 0;
        width: 100%;
    }
    .tmember-content p{
        width: 96%;
        top: 0;
        padding: 10px;
        text-align: center;
    }
    .team-member p::after{
        content: '';
    }
    .team-member.large .tlmember-pic{
        display: none;
    }
    .tmember-social{
        width: 100%;
    }

    .bce.results .content-body .highlight.line1, .bce.results .content-body .highlight.line2 {
        line-height: 0.8;
    }
    .bce.website-design .content-body .yes-we-are > img {
        display: none;
    }
    .bcs .entry_content{
        margin:0;
    }
    .gridblueclaw {
        margin: 0px 0px 20px 15px;
    }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {

    .healthcheck, .briefing {
        display: none;
    }
    .bcs .entry_content{
        margin: 0;
    }
    .bcs .sidebar{
        width: 100%;
        padding: 40px 0;
        border: 0;
    }
    .bcs .postcontent {
        width: 100%;
        padding: 0;
    }

    .bce-aboutus-facts #fact7{
        display: none;
    }
    
    .bce-aboutus-facts #fact15{
        top: 993px;
    }
    
    .bce-aboutus-facts #fact16{
        top: 1160px;
    }
    
    .bce-aboutus-facts #fact17{
        top: 1325px;
    }
    
    #aboutus-facts.bce-aboutus-facts{
        height: 1500px;
    }
    
    #aboutus-facts.bce-aboutus-facts #fact16{        
        background-position: 90% 100%;
        background-size: 40%;
    }
    
#aboutus-facts.bce-aboutus-facts #fact11 .number{
    font-size: 150px;
    float: left;
    position: relative;
    line-height: 130px;
    left: -15px;
}

#aboutus-facts.bce-aboutus-facts #fact11 .number .over{
    font-size: 20px;
    position: absolute;
    right: 20px;
    height: 0px;
    color: #000;
    line-height: 8px;
}

#aboutus-facts.bce-aboutus-facts #fact11 .text{
    float: right;
    width: 42%;
    position: absolute;
    right: -15px;
    top: 18px;
}
    

#aboutus-facts.bce-aboutus-facts #fact14 .number{
    font-size: 150px;
    line-height: 150px;
}

#aboutus-facts.bce-aboutus-facts #fact14 .number #computer{
    top: -34px;
    font-size: 13px;
    left: 155px;
}

#aboutus-facts.bce-aboutus-facts #fact14 .number #languages{
    left: 100px;
    top: -14px;
}

#aboutus-facts.bce-aboutus-facts #fact17{
    font-size: 11px;
}

    .magento-experts {
        float: none;
        margin: 0 0 0 0;
        text-align: center;
    }
    .magento-experts .yes-we-are {
        height: 40px;
    }

    #top-bar-wrap.bce-top-bar, .bce-top-bar #top-bar {
        background-color: #092330;
    }
    .bce-top-bar .col_two_third {
        position: relative !important;
        z-index: 100 !important;
        top: 65px !important;
    }    
    .bce-top-bar .topmenubar {
        width: auto !important;
    }


    .bce #slider{
        display: none !important;
    }
    .ls-wp-forceresponsive-container{
        display: none !important;
    }
    .single-portfolio .resultstatement p{
        padding: 15px;
        width: auto;
        height: auto;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
    .single-portfolio .gallerybottom .visitsite{
        display: none;
    }
    .single-portfolio .maingallery .visitsite{
        bottom: 10px;
        right: 0;
    }
    .single-portfolio .maingallery img{

        max-width: 100%;
        max-height: 340px;
    }    .single-portfolio .testimonial{

        font-size: 20px;
        line-height: 30px;        
    }
    .single-portfolio{

        font-size: 18px;
        line-height: 30px;        
    }
    .single-portfolio .headimg{
        display: none;
    }

    .single-portfolio .portfolio-nav{
        text-align: center;
        line-height: 40px;
        height: 196px;
    }

    .single-portfolio h1{
        font-size: 30px;
    }

    .single-portfolio .maingallery{
        height: 850px;
    }
    .single-portfolio .portfolio-nav .companylogo{

        height: 80px;
        text-align: center;
        padding: 10px 0;
    }
    .single-portfolio .portfolio-nav div{
        margin: 0 !important;
    }
    .single-portfolio .portfolio-nav .prev, .single-portfolio .portfolio-nav .next{
        text-align: center;
    }

    .single-portfolio .portfolio-nav .prev{
        border-bottom: 3px solid #242323;
    }
    .single-portfolio .portfolio-nav .next{
        border-top: 3px solid #242323;
    }

    .single-portfolio .portfolio-nav .prev span, .single-portfolio .portfolio-nav .next span{
        display: none;
    }    
    .content-wrapper.bce-main-wrapper{
        padding: 0;
    }

    .bce-main-wrapper .fullstatement{

        font-size: 30px;
        line-height: 50px;
        margin: 5px 0;    }


    .bce-our-process .title{
        height: 55px;
    }
    .bce-our-process .content p{
        font-size: 16px;
        line-height: 20px;        
        margin: 0 29px;
    }
    .bce-hp-title {
        font-size: 29px;
        line-height: 30px;
    }

    .bce-main-wrapper .col_image img{
        margin: 0;
    }

    .bce-main-wrapper .statement{
        font-size: 25px; margin-top: 5px; line-height: 25px;padding-top: 30px;
    }

    .bce-main-wrapper h1{
        font-size: 35px;
        padding-top: 30px;
        line-height: 40px;
        padding: 10px;
        padding-bottom: 0;
        padding-top: 14px;
    }

    .bce-main-wrapper h1 span span{
        margin-left: 7px;
        width: 7px;
        height: 7px;
    }
    .bce-main-wrapper .col_image_long  {
        display: none;
    }


    .cbp-qtrotator blockquote .bccontent{
        display: none;
    }

    .aboutusheader{
        background: #008BCC url('http://www.blueclawsearch.co.uk/wp-content/themes/blueclaw/images/about_us_header.jpg') center bottom no-repeat;
        height: 220px;
        padding: 10px 0;
        background-size: 130%;
        max-width: 320px;
        border-bottom: 1px dashed #FFF;
    }
    .aboutusheader h1{
        top: 0;
    }

    #sepcir{display: none;}

    .small-panout{
        margin: 24px;
    }
    .aboutus-fact{font-size: 14px;}
    .small_certerd{width: 320px; height: 150px;}
    .large-panout{line-height: 20px;}
    #fact1{height: 150px; width: 100%;font-size: 1.2em;}
    #fact1 span{font-size: 20px;}
    #fact2{height: 150px;  top: 165px; left: 0; right: auto; width: 100%;font-size: 1.1em;}
    #fact3{height: 150px;  top: 495px; left: auto; right: 0; width: 100%;font-size: 1.2em;}
    #fact4{height: 150px; display: none;}
    #fact5{height: 150px;  display: none;}
    #fact6{height: 150px;  top:330px; left: auto; right: 0; width: 100%;}
    #fact7{height: 150px; top: 990px;  width: 100%;}
    #fact8{display: none;}
    #fact14{height: 150px;  top:698px; left: auto; right:0; width: 100%;}
    #fact9{ display: none;}
    #fact11{height: 150px;  top: 920px; left: 0; right: auto; width: 100%;}
    #fact10{display: none;}
    #fact11{top:825px;}
    #fact12{display: none;}
    #fact13{display: none;}
    #fact14{top: 660px; text-align: center;}
    #fact14 img{max-width: 145px;}
    #fact15{height: 150px; top: 1155px; left: 0; right: auto; width: 100%;}
    #fact15 span { font-size: 1.5em !important; width: 200px !important; }
    #fact16{height: 150px; top:1320px; width: 100%;}
    #fact16 strong { width: 70% !important; margin-top: -15px; }
    #fact16 strong > span { font-size: 1em !important; }
    #fact16 strong > img { display: none; }
    #fact17{height: 150px; top: 1485px; left: 0; width: 100%; background:#017ab1;}
    #fact17 .col_full { width: auto !important; }
    #aboutus-facts{
        height: 1700px;
        position: relative;
    }


    .container { width: 320px; }

    #top-area { display: none; }

    #top-bar { height: 40px; }
    #top-bar .topmenubar .col_last{
        display: none;
    }
    #top-bar .topmenubar{
        right: 110px;
    }

    #top-bar .talktous{
        display: none;
    }    
    #top-bar,
    #header,
    #copyrights { padding: 0 20px; }

    #top-bar .col_half {
        display: block;
        float: none;
        margin: 0 !important;
        text-align: center !important;
    }

    #top-bar .col_half.col_last { display: none; }

    #top-menu ul,
    #top-menu ul li { display: inline-block; }

    #top-menu ul li a {
        padding: 0 6px;
    }

    #top-menu ul li:first-child a { padding-left: 0; }

    #header { height: auto; padding-bottom: 10px;}

    #logo {
        float: none;
        margin: 0;
        padding: 15px 0;
        text-align: center;
    }

    #logo a.logo-image { display: inline-block; }

    #logo,
    #top-contacts-area {
        width: 280px;
        max-width: 280px;
    }

    #top-contacts-area {
        margin: 0 0 25px;
        height: auto;
    }

    #top-contacts-area #top-contacts,
    #top-contacts-area #top-social {
        text-align: center;
        height: auto;
    }

    #top-contacts { margin-bottom: -7px; }

    #top-contacts li { margin: 0 0 7px 7px; }

    #top-social li { margin: 0 0 0 3px; }

    #top-contacts li:first-child,
    #top-social li:first-child { margin-left: 0; }

    #primary-menu {
        height: 40px;
        padding: 10px;
        width: 93%;
    }

    #primary-menu ul { display: none; }

    #primary-menu select { display: block; }


    #category-menu .menu li {
        float: none;
        min-height: auto; 
        height:35px;
        width: auto; 
        border-left: 10px solid #0a2430 !important;
        text-align: left;
        padding-left: 10px;
        border-top: 0;
        max-height: 35px;
    }

    #category-menu .menu li a{line-height: 40px;}
    #category-menu .menu .sub-menu{display: none;}
    #category-menu .menu .undrestand-menu{background-color: #3d87d4;}
    #category-menu .menu .think-menu{background-color: #69ad63;}
    #category-menu .menu .create-menu{background-color: #790000;}
    #category-menu .menu .measure-menu{background-color: #ff6600;}
    #category-menu .menu .refine-menu{background-color: #ffa800;}
    #fullwidth-subheader-wrap{
        height: 55px;
        border-bottom: 5px solid #F1E6DD;
    }
    #fullwidth-subheader-wrap ul li{
        display: none;
        line-height: 60px;
    }
    #fullwidth-subheader-wrap ul li.current{
        color: #FFF;
        display: block;
        font-family: 'AvalonMediumBold';
        font-size: 55px;
        padding-left: 50px;
    }

    #top-bar,
    #header,
    #content,
    #footer,
    #copyrights{
        max-width: 320px;
    }

    .footer_menu{
        height: auto;
        text-align: center;
    }

    .first_section{
        text-align: center;
    }

    .footer_contacts{
        text-align: center;
    }

    #slider{
        display: none;
    }

    .postcontent { width: 280px; }
    .sidebar { width: 280px; display: none; }
    .content-wrapper { width: 320px; }
    .col_full,
    .col_half,
    .col_one_third,
    .col_two_third,
    .col_one_fourth,
    .col_three_fourth,
    .col_one_fifth,
    .col_two_fifth,
    .col_three_fifth,
    .col_four_fifth,
    .col_one_sixth,
    .col_five_sixth { width: 100%; }
    #landing-offer-slider,
    #landing-offer-content { width: 280px; }

    #landing-offer-slider,
    #landing-offer-content {
        margin-right: 30px;
        margin-bottom: 0;
    }

    .content-wrapper,
    .postcontent,
    .sidebar,
    .portfolio-meta,
    .col_full,
    .col_half,
    .col_one_third,
    .col_two_third,
    .col_three_fourth,
    .col_one_fourth,
    .col_one_fifth,
    .col_two_fifth,
    .col_three_fifth,
    .col_four_fifth,
    .col_one_sixth,
    .col_five_sixth,
    #landing-offer-slider,
    #landing-offer-content {
        margin-right: 0;
        float: none;
    }

    .postcontent,
    .sidebar,
    .portfolio-meta,
    .col_half,
    .col_one_third,
    .col_two_third,
    .col_three_fourth,
    .col_one_fourth,
    .col_one_fifth,
    .col_two_fifth,
    .col_three_fifth,
    .col_four_fifth,
    .col_one_sixth,
    .col_five_sixth { margin-bottom: 30px !important; }

    .content-wrapper {
        margin-right: 0;
        padding: 0;
    }

    .content-wrapper { padding-bottom: 20px; }

    .portfolio-meta {
        width: 280px;
        padding: 0 20px 20px;
    }

    .postcontent { padding: 40px 20px 10px 20px; }

    .template-leftsidebar .postcontent { padding: 0 20px 20px; }

    .sidebar {
        border: none;
        padding: 40px 20px 20px;
        border-top: 3px double rgba(0,0,0,0.1);
    }

    .template-leftsidebar .sidebar {
        padding: 40px 20px;
        border: none;
        border-bottom: 3px double rgba(0,0,0,0.1);
    }

    #page-title {
        padding: 20px;
        text-align: center;
    }

    #page-title h1 span { display: none; }

    #breadcrumbs { display: none; }

    #slider,
    #slider .slider-wrap,
    .slider-wrap .slide,
    .slide a,
    .slide img,
    #slider .ls-fallback-image,
    #slider .ls-fallback-image a,
    #slider .ls-fallback-image img {
        display: block;
        width: 320px;
        height: 153px;
    }

    .ei-slider{
        max-width: 320px !important;
        height: 148px !important;
    }

    #slider .ls-container { display: none !important; }

    .slide .slide-caption,
    .nivo-caption,
    .ei-title,
    .rs-caption {
        display: none;
        visibility: hidden;
    }

    .slider-prev,
    .slider-next,
    .flex-direction-nav a.flex-prev,
    .flex-direction-nav a.flex-next,
    .nivo-prevNav,
    .nivo-nextNav,
    .rs-arrows .rs-prev,
    .rs-arrows .rs-next {
        left: 0;
        right: auto;
        top: 50%;
        margin-top: -16px;
    }

    .slider-next,
    .flex-direction-nav a.flex-next,
    .nivo-nextNav,
    .rs-arrows .rs-next {
        left: auto;
        right: 0;
    }

    #landing-offer { padding: 30px 20px; }

    .landing-slider,
    .landing-slider .landing-slide,
    .landing-slide a,
    .landing-slide img {
        display: block;
        width: 280px;
        height: 157px;
    }

    .landing-action {
        display: block;
        margin: 10px;
        text-align: center;
    }

    #landing-offer-content {
        text-align: center;
        margin-top: 30px;
    }

    #landing-features li {
        background-image: none;
        padding-left: 0;
    }

    .da-thumbs li a div span.mini{
        display: block;
    }
    .da-thumbs li a div span.full{
        display: none;
    }.da-thumbs li a div span.mini {
        font-family: 'AvalonMediumBold';
        color: #FFF;
        font-size: 21px;
        line-height: 22px;
        text-align: center;
        height: 100%;
        vertical-align: middle;
        padding-top: 15%;
    }


    .da-thumbs li {
        padding: 2px;
    }

    .blacktitle h1{
        font-size: 55px;
        margin-top: 0;
        line-height: 90px;
        text-align: center;
    }
    .blacktitle .col_half{
        margin-bottom: 10px !important;
    }

    .blacktitle .col_last{
        text-align: center;
        margin-top: 0;
    }

    .portfolio-item{
        margin: 0;
    }
    #portfolio { margin: 0 0 -10px 0; }

    #portfolio-filter {
        text-align: center;
        margin: 0 -10px 30px 0;
    }

    #portfolio-filter {
        text-align: center;
        height: 200px;
        margin: 0 -10px 0 0;
    }

    #portfolio-filter li {
        margin: 0 10px 10px 0;
        width: 125px;
        font-size: 11px;
    }

    #portfolio-slider,
    .portfolio-slider-wrap,
    .single-portfolio-image a,
    .single-portfolio-image img { width: 280px; }

    #page-title .portfolio-navigation {
        position: relative;
        max-width: 106px;
        height: 32px;
        top: 0;
        left: 0;
        right: 0;
        margin: 30px auto 10px;
    }

    .related-projects-wrap { padding: 0 20px 40px; }

    .related-projects { margin: 0 -4px 0 0; }

    .related-projects a { margin: 0 4px 0px 0; }

    .related-projects a,
    .related-projects img {
        width: 138px;
        height: 100px;
    }

    #home-portfolio-list .portfolio-normal { margin: 0 0 -3px 0; }

    #home-portfolio-list .portfolio-item {
        margin: 0 0 3px 0;
        width: 280px;
        float: left;
    }

    #home-portfolio-list .portfolio-image,
    #home-portfolio-list .portfolio-image a,
    #home-portfolio-list .portfolio-image img {
        width: 280px;
        height: 213px;
    }

    #home-portfolio-list .portfolio-desc h3 { font-size: 15px; }

    #home-portfolio-pagination { display: none !important; }

    #portfolio-revealer { margin: -40px -20px 40px; }

    #portfolio-loader {
        top: -30px;
        left: 50%;
        right: auto;
        margin-left: -10px;
    }

    .entry {
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .entry_image a,
    .entry_image img {
        width: 280px;
        height: 148px;
    }

    .entry_image { width: 280px; }

    .blog-layout2 .entry_image { width: 100px; }

    .blog-layout2 .entry_image a,
    .blog-layout2 .entry_image img{
        width: 100px;
        height: 83px;
    }

    .entry_c { width: 170px; }

    .blog-layout2 .entry_c { width: 160px; }

    .entry .entry_meta { display: none; }

    .entry_content img { max-width: 280px !important; }

    .entry_content img,
    img.alignleft,
    div.alignleft,
    img.alignright,
    div.alignright {
        margin: 10px auto;
        display: block;
        clear: both;
        float: none;
    }

    div.alignleft img,
    div.alignright img,
    .wp-caption img,
    .wp-caption { width: 100%; }

    #comments { margin-top: 30px; }

    .commentlist ul.children { margin-left: 0; }

    .commentlist ul.children ul.children { margin-left: 15px; }

    .commentlist ul .comment-wrap { padding-left: 15px; }

    .commentlist ul.children .comment-sep { width: 11px; }

    .commentlist li .comment-meta { display: none; }

    .commentlist ul.children #respond { margin: 15px 0 0 15px; }

    #respond label small { display: none; }

    #template-contactform input[type="text"],
    #template-contactform textarea {
        width: 262px;
        max-width: 262px;
    }

    #template-contactform div.col_one_third input[type="text"],
    #template-contactform div.col_one_third select { width: 262px; }


    ul.tabs li a {
        padding: 0 8px;
        font-size: 13px;
    }

    ul.tabs .tab-icon {
        width: 16px;
        height: 16px;
        margin: 8px 5px 0 0;
    }

    .side_tabs ul.tabs .tab-icon {
        width: 20px;
        height: 20px;
        margin: 8px 7px 0 0;
    }

    .tour_tabs ul.tabs .tab-icon {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .side_tabs ul.tabs li a {
        padding: 0 13px;
        font-size: 14px;
    }

    .side_tabs ul.tabs,
    .tour_tabs ul.tabs {
        float: none;
        width: 280px;
        padding: 0;
        border: none;
    }

    .side_tabs ul.tabs li,
    .tour_tabs ul.tabs li {
        height: 40px;
        line-height: 40px;
        border: 1px solid #DDD;
        border-top: none;
    }

    .side_tabs ul.tabs li {
        height: 36px;
        line-height: 36px;
    }

    .side_tabs ul.tabs li:first-child,
    .tour_tabs ul.tabs li:first-child { border-top: 1px solid #DDD; }

    .side_tabs ul.tabs li.active,
    .tour_tabs ul.tabs li.active {
        border-right: 1px solid #DDD;
        margin-right: 0;
    }

    .side_tabs .tab_content,
    .tour_tabs .tab_content {
        clear: both;
        padding: 30px 0 20px;
    }

    .pricing { padding-top: 0; }

    .pricing-box,
    .pricing3 .pricing-box,
    .pricing5 .pricing-box {
        float: none;
        width: 100%;
        margin-top: 10px;
    }

    .pricing-box:first-child { margin-top: 0; }

    .pricing-featured { margin-top: 10px; }

    .pricing-box .pricing-inner { border: 1px solid #DDD; }

    .pricing-featured .pricing-inner { margin: 0; }

    .faqs-category-wrap .faq-category { width: 280px; }

    #testimonials-wrap { margin: 0 -10px 0 -10px; }

    #testimonials-wrap .testimonial {
        float: none;
        padding-bottom: 20px;
        margin: 0 0 20px 0;
    }

    #our-clients .client-wrap {
        float: none;
        width: 280px;
        margin: 0 0 20px 0;
        padding-bottom: 20px;
    }

    .client-wrap .client-pic {
        border: 2px solid #EEE;
        margin-right: 10px;
    }

    .client-pic,
    .client-pic a,
    .client-pic img {
        width: 100px;
        height: 81px;
    }

    .clients-list { margin: 0 0 20px -1px; }

    .clients-list a,
    .clients-list img {
        width: 139px;
        height: 110px;
    }

    #home-client-scroller { text-align: center; }

    .home-client-list {
        display: inline-block;
        width: 220px;
        height: 350px;
    }

    .home-client-list a,
    .home-client-list a img {
        width: 220px;
        height: 175px;
    }

    .callout {
        margin: 0 -20px 20px;
        padding: 15px 20px;
    }

    .callout .callout-desc {
        position: relative;
        width: 280px;
        padding-right: 0;
        text-align: center;
    }

    .callout-desc h3 { font-size: 18px; }

    .callout-desc span { display: none; }

    .callout .callout-action {
        position: relative;
        left: 0;
        right: 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0 0;
        top: 0;
        text-align: center;
    }

    .callout-action a {
        display: inline-block;
        padding: 0 20px;
    }

    #tweet-feed { padding: 15px; }

    .error404page {
        font-size: 140px;
        padding-bottom: 20px;
    }

    #footer { padding: 30px 20px; }

    .widget { margin-top: 40px; }

    #footer-widget-area { margin: 0 0 -30px 0; }

    #footer .col_one_fourth {
        width: 280px;
        margin: 0 0 30px 0 !important;
    }

    .flickr-widget .flickr-widget-wrap,
    #footer .flickr-widget-wrap { margin: 0 -4px -4px 0; }

    .flickr-widget .flickr-widget-wrap .flickr_badge_image,
    #footer .flickr-widget-wrap .flickr_badge_image { margin: 0 4px 4px 0; }

    .flickr-widget .flickr_badge_image img,
    #footer .flickr_badge_image img {
        width: 61px;
        height: 61px;
    }

    .widget_search input[type="text"],
    .widget_text input[type="text"] { width: 262px; }

    #footer .widget_search input[type="text"],
    #footer .widget_text input[type="text"] { width: 262px; }

    .posts-widget .post_image,
    #footer .post_image {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }

    .posts-widget li .post_image img,
    #footer .posts-widget li .post_image img {
        width: 74px;
        height: 74px;
    }

    .posts-widget .post_title {
        font-size: 15px;
        line-height: 22px;
    }

    .posts-widget .post_meta { font-size: 13px; }

    .contact-form-widget input[type="text"],
    .contact-form-widget textarea { width: 262px; }

    .widget-portfolio-scroll .portfolio-item,
    #footer .portfolio-item {
        float: left;
        width: 262px;
    }

    .widget-portfolio-scroll .portfolio-image,
    .widget-portfolio-scroll .portfolio-image a,
    .widget-portfolio-scroll .portfolio-image img,
    #footer .portfolio-image,
    #footer .portfolio-image a,
    #footer .portfolio-image img {
        width: 280px;
        height: 211px;
    }

    #footer .portfolio-desc h3 { font-size: 14px; }

    .widget-testimonials-scroll .wtestimonial-item,
    #footer .wtestimonial-item { width: 280px; }

    #copyrights #foo-left,
    #copyrights #foo-right {
        float: none;
        padding: 15px 0 10px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
    }

    #copyrights #foo-right { padding: 10px 0 15px; }

    .content-desktop { display: none; }

    .content-mobilep { display: block; }
    .hp-clients {
        display:none;
    }

    .hp-content .welcome-header{
        height: 30px;
        width: 95%;
        font-size: 14px;
        padding-right: 5%;
        text-align: right;
    }

    .hp-content #hp-introduction{
        width: 94%;
        margin: 0 3%;
    }

    .hp-welcome{
        height: 30px;
    }

    .hp-welcome h2{
        font-size: 14px;
        line-height: 50px;
    }

    .category-header {
        display: none;
    }

    .category-wrapper{
        padding: 0;
    }

    .category-wrapper .introduction{
        width: 100%;
    }
    .category-wrapper h2{
        font-size: 30px;
    }

    .category-wrapper h3{
        font-size: 25px
    }

    .category-wrapper p{
        font-size: 18px;
        line-height: 20px;
    }

    #footer-row-1 .widget h4{
        font-size: 18px;
    }

    .page-template-template-contact-php #slider{
        display: none;
    }

    #footer-row-1 .widget h4{
        font-size: 17px;
    }

    .team-header{
        padding: 0;
    }
    .team-header p{
        width: 100%
    }
    .team-header h2 span.part1{
        width: 100%;
        font-size: 20px;
        padding-top: 12px;
    }

    .team-header h2 span.part2{
        width: 90%;
        font-size: 20px;
        padding-bottom: 5px;
    }
    .team-header .team-door{
        display: none;
    }
    #team-members{
        padding: 0;
    }
    .team-member.large{
        height: 320px;
        width: 80%;
        margin: 0;
    }
    .tmember-content{
        width: 100%;
        height: 310px;
    }
    .tmember-content h4{
        left: 0;
        top: 0;
        width: 100%;
    }
    .tmember-content p{
        width: 96%;
        top: 0;
        padding: 10px;
        text-align: center;
    }
    .team-member p::after{
        content: '';
    }
    .team-member.large .tlmember-pic{
        display: none;
    }
    .tmember-social{
        width: 100%;
    }

    /* Ecomm */
    .bce.results .col_full {
        display: none;
    }
    .bce.results .content-body .highlight.line1, .bce.results .content-body .highlight.line2 {
        line-height: 0.8;
        font-size: 1.8em;
    }
    .bce.website-design .content-body .yes-we-are {
        display: none;
    }   
    .bce.results .title-box > img {
        width: 70%;
    }
    .bce.website-design .highlight {
        font-size: 1.8em !important;
    }
    .bce-main-header.responsive {
        width: 100%;
        left: auto;
        position: relative;
        margin-left: auto;
    }
}

@media only screen and (min-width: 481px) {
    .hide-for-mobile {
        display: block;
    }

    .show-for-mobile {
        display: none;
    }
}

@media only screen and (min-width: 322px) and (max-width: 480px) {
    div.entry_c > div.entry_content {
        width: 16em;
        margin-left: -5em;
    }

    .entry_date {
        width: 55px;
        height: 45px;
        margin-bottom: 1em;
    }

    .entry_date span {
        font-size: 27px;
        line-height: 24px;
    }

    .hide-for-mobile {
        display: none;
    }

    .show-for-mobile {
        display: block;
    }

    .tagline-home h2 {
        color: #fff;
        font-weight: bold;
        font-family: 'AvalonBold', sans-serif;
    }

    .hp-content #hp-introduction {
        width: 94%;
        margin: 0 4.5%;
        padding-bottom: 0em;
        height: auto;
    }
    
}


@media only screen and (max-width: 321px) {
    div.entry_c > div.entry_content {
        clear: both;
        width: 16em;
        margin-left: -5em;
    }

    #contact-form {
        top: -35px;
    }

    .entry_date {
        width: 55px;
        height: 45px;
    }

    .entry_date span {
        font-size: 27px;
        line-height: 24px;
    }

    .entry_title h2 {
        font-size: 24px;
        line-height: 23px;
    }

    #fact1 {
        height: 154px;
        width: 100%;
        font-size: 17px;
        margin-top: -9px;
    }

    .aboutusheader{
        background: #008BCC;
        height: 100%;
        padding: 0px 0;
        padding: 0px 0;
        width: auto;
        border: none;
    }

    .hide-for-mobile {
        display: none;
    }

    .show-for-mobile {
        display: block;
    }

    .tagline-home h2 {
        color: #fff;
        font-weight: bold;
        font-family: 'AvalonBold', sans-serif;
    }

    .hp-content #hp-introduction {
        width: 94%;
        margin: 0 4.5%;
        padding-bottom: 0em;
        height: auto;
    }

    #fact11 {
        height: 235px;
    }

    #fact7 {
        top: 1072px;
    }

    #fact15 {
        height: 246px;
        top: 1235px;
    }

    #fact15 img {
        display: none;
    }

    #fact16 {
        height: 232px;
        top: 1467px;
    }

    #fact17 {
        height: 150px;
        top: 1500px;
        display: none;
    }
}