﻿/* Global website colors */
/*template2 colors*/
/*default font*/
/* Margins, Font-size, Paddings between content blocks and similar */
/* Fonts */
/*Lists*/
/*Accordion*/
/* fixed  menu */
/*custom thumbnail*/
/*social icon*/
/*pricing table*/
/* ==========================================================================
      Author's custom styles
      ========================================================================== */
/*intial load animation*/
.ha-initial-load-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ededed;
    z-index: 9998;
    text-align: center;
    /*load diamonds*/
}

.ha-initial-load-container .ha-loading-diamond-wrapper {
    z-index: 9999;
    position: absolute;
    top: 50%;
    width: 100%;
}

.ha-initial-load-container .ha-loading-diamond-wrapper div {
    display: inline-block;
    margin-right: 5px;
}

.ha-initial-load-container .ha-loading-diamond-wrapper div:nth-child(1) {
    -moz-animation-name: flashLoad;
    -o-animation-name: flashLoad;
    -webkit-animation-name: flashLoad;
    animation-name: flashLoad;
    -moz-animation-duration: 1.0s;
    -o-animation-duration: 1.0s;
    -webkit-animation-duration: 1.0s;
    animation-duration: 1.0s;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.ha-initial-load-container .ha-loading-diamond-wrapper div:nth-child(2) {
    -moz-animation-name: flashLoad;
    -o-animation-name: flashLoad;
    -webkit-animation-name: flashLoad;
    animation-name: flashLoad;
    -moz-animation-duration: 1.0s;
    -o-animation-duration: 1.0s;
    -webkit-animation-duration: 1.0s;
    animation-duration: 1.0s;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.ha-initial-load-container .ha-loading-diamond-wrapper div:nth-child(3) {
    -moz-animation-name: flashLoad;
    -o-animation-name: flashLoad;
    -webkit-animation-name: flashLoad;
    animation-name: flashLoad;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-delay: 2.2s;
    -o-animation-delay: 2.2s;
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

.ha-initial-load-container .ha-loading-diamond-wrapper .diamond {
    width: 10px;
    height: 10px;
    background-color: #D8D7D7;
    /* Rotate */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /* Rotate Origin */
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

@-webkit-keyframes flashLoad {
    from {
        opacity: 0.5;
        background-color: #D8D7D7;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    to {
        opacity: 1;
        background-color: #cb1f42;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@-moz-keyframes flashLoad {
    from {
        opacity: 0.5;
        background-color: #D8D7D7;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    to {
        opacity: 1;
        background-color: #cb1f42;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@keyframes flashLoad {
    from {
        opacity: 0.5;
        background-color: #D8D7D7;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    to {
        opacity: 1;
        background-color: #cb1f42;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

/*end: intial load animation*/
/* ---------------------------- FONTS -----------------------------------------*/
/* Open sans light */
@font-face {
    font-family: "OPENSANS-LIGHT";
    src: url(../fonts/OPENSANS-LIGHT.TTF) format('truetype');
    src: url(../fonts/OpenSans.woff);
}

@font-face {
    font-family: "OPENSANS-BOLD";
    src: url(../fonts/OPENSANS-BOLD.TTF) format('truetype');
    src: url(../fonts/OPENSANS-SEMIBOLD.TTF) format('truetype'), url(../fonts/OpenSans-Semibold.woff);
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}

@import url('https://fonts.googleapis.com/css?family=Roboto');

/* ---------------------------- end: FONTS -----------------------------------*/
html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

p {
    color: #2e3443;
}

/*IE and Mozilla*/
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

.fullwidth {
    padding: 0;
    max-width: 100%;
    width: 100% !important;
}

/*------------------------Flex Slider --------------------------------------*/
#flexslider-top {
    margin-bottom: 0;
}

/*------------------------end: Flex Slider ---------------------------------*/
/*---------------------- CSS Sprite ----------------------------*/
.ha-icon-pencil {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -115px;
    display: inline-block;
    width: 108px;
    height: 112px;
}

.ha-icon-pencil:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -228px;
}

.ha-icon-settings {
    background: url(../img/sprites/Diamond_sprite-01.png) -115px -115px;
    display: inline-block;
    width: 108px;
    height: 112px;
}

.ha-icon-settings:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -115px -228px;
}

.ha-icon-settings-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -89px -68px;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.ha-icon-brush {
    background: url(../img/sprites/Diamond_sprite-01.png) -230px -115px;
    display: inline-block;
    width: 108px;
    height: 112px;
}

.ha-icon-brush:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -230px -227px;
}

.ha-single-line-divider {
    background: url(../img/sprites/Diamond_sprite-01.png) -90px -35px;
    display: inline-block;
    width: 143px;
    height: 1px;
    vertical-align: middle;
}

/*full width line*/
.ha-single-line-divider-fullwidth {
    background: url(../img/sprites/Diamond_sprite-01.png) -90px -35px repeat;
    display: inline-block;
    width: 100%;
    height: 1px;
    vertical-align: middle;
}

.ha-diamond-black-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -114px -68px;
    display: inline-block;
    width: 28px;
    height: 27px;
    vertical-align: middle;
}

.ha-diamond-black-filled-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -157px -46px;
    display: inline-block;
    width: 19px;
    height: 17px;
    vertical-align: middle;
}

.ha-diamond-red-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -144px -68px;
    display: inline-block;
    width: 28px;
    height: 27px;
    vertical-align: middle;
}

.ha-diamond-red-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -179px -64px;
    display: inline-block;
    width: 16px;
    height: 15px;
    vertical-align: middle;
}

.ha-diamond-black-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -178px -45px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.ha-diamond-blue-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -178px -80px;
    display: inline-block;
    width: 16px;
    height: 15px;
    vertical-align: middle;
}
.list-unstyled{
    list-style-image: url(../img/sprites/shape.png);
}

.ha-diamond-sm-color-1 {
    background: url(../img/sprites/Diamond_sprite-01.png) -552px -142px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.ha-diamond-sm-color-2 {
    background: url(../img/sprites/Diamond_sprite-01.png) -568px -142px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.ha-diamond-sm-color-3 {
    background: url(../img/sprites/Diamond_sprite-01.png) -585px -142px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.ha-diamond-sm-color-4 {
    background: url(../img/sprites/Diamond_sprite-01.png) -178px -80px;
    display: inline-block;
    width: 16px;
    height: 15px;
    vertical-align: middle;
}

.ha-diamond-sm-color-5 {
    background: url(../img/sprites/Diamond_sprite-01.png) -603px -142px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.ha-diamond-sm-color-6 {
    background: url(../img/sprites/Diamond_sprite-01.png) -620px -142px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.ha-button-bottom-img {
    background: url(../img/sprites/Diamond_sprite-01.png) -90px -105px;
    display: inline-block;
    width: 114px;
    height: 10px;
    vertical-align: bottom;
}

.ha-diamond-divider-lg {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px 141px;
    display: inline-block;
    width: 601px;
    height: 39px;
}

.ha-diamond-divider-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -343px -173px;
    display: inline-block;
    width: 184px;
    height: 23px;
}

.ha-diamond-divider-gray-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -414px -208px;
    display: inline-block;
    width: 183px;
    height: 23px;
}

.ha-diamond-divider-gray-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px 93px;
    display: inline-block;
    width: 97px;
    height: 13px;
}

.ha-gray-ball-img {
    background: url(../img/sprites/Diamond_sprite-01.png) 2px -29px;
    display: inline-block;
    width: 74px;
    height: 73px;
    vertical-align: middle;
}

.ha-diamond-white-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -291px -69px;
    display: inline-block;
    width: 39px;
    height: 39px;
    vertical-align: bottom;
}

.ha-diamond-gray-bordered {
    background: url(../img/sprites/Diamond_sprite-01.png) -291px -69px;
    display: inline-block;
    width: 39px;
    height: 39px;
}

/*portfolio slider arrows */
.ha-fslider-left-arrow {
    background: url(../img/sprites/Diamond_sprite-01.png) -347px -209px no-repeat;
    display: inline-block;
    width: 20px;
    height: 40px;
    vertical-align: middle;
}

.ha-fslider-right-arrow {
    background: url(../img/sprites/Diamond_sprite-01.png) -377px -209px no-repeat;
    display: inline-block;
    width: 20px;
    height: 40px;
    vertical-align: middle;
}

.ha-goto-top {
    background: url(../img/sprites/Diamond_sprite-01.png) -347px -305px;
    display: inline-block;
    width: 52px;
    height: 28px;
    vertical-align: middle;
}

.ha-goto-top:hover {
    cursor: pointer;
}

.ha-search-icon {
    background: url(../img/sprites/Diamond_sprite-01.png) -556px -43px;
    display: inline-block;
    width: 23px;
    height: 20px;
    vertical-align: middle;
}

.ha-search-icon:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -556px -64px;
}

.ha-arrow-down-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -414px -319px;
    display: inline-block;
    width: 24px;
    height: 15px;
    vertical-align: middle;
}

/*----social media icons------*/
.ha-icon-facebook-white-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -199px -48px;
    display: inline-block;
    width: 12px;
    height: 17px;
}

.ha-icon-facebook-white-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -199px -87px;
}

.ha-icon-twitter-white-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -229px -48px;
    display: inline-block;
    width: 19px;
    height: 17px;
}

.ha-icon-twitter-white-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -229px -87px;
}

.ha-icon-linkedin-white-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -264px -48px;
    display: inline-block;
    width: 19px;
    height: 17px;
}

.ha-icon-linkedin-white-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -264px -86px;
}

/*dark social media icons*/
.ha-icon-facebook-dark-border-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -199px -67px;
    display: inline-block;
    width: 12px;
    height: 17px;
}

.ha-icon-facebook-dark-border-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -199px -86px;
}

.ha-icon-twitter-dark-border-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -229px -67px;
    display: inline-block;
    width: 19px;
    height: 17px;
}

.ha-icon-twitter-dark-border-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -229px -86px;
}

.ha-icon-linkedin-dark-border-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -264px -67px;
    display: inline-block;
    width: 19px;
    height: 17px;
}

.ha-icon-linkedin-dark-border-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -264px -86px;
}

/* icons white color filled*/
.ha-icon-facebook-white-filled-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -199px -48px;
    display: inline-block;
    width: 12px;
    height: 17px;
}

.ha-icon-facebook-white-filled-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -199px -86px;
}

.ha-icon-twitter-white-filled-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -229px -48px;
    display: inline-block;
    width: 19px;
    height: 17px;
}

.ha-icon-twitter-white-filled-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -229px -86px;
}

.ha-icon-linkedin-white-filled-sm {
    background: url(../img/sprites/Diamond_sprite-01.png) -264px -48px;
    display: inline-block;
    width: 19px;
    height: 17px;
}

.ha-icon-linkedin-white-filled-sm:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -264px -86px;
}

.ha-icon-facebook-transparent-lg {
    background: url(../img/sprites/Diamond_sprite-01.png) -347px -35px;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-facebook-transparent-lg:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -347px -104px;
}

.ha-icon-twitter-transparent-lg {
    background: url(../img/sprites/Diamond_sprite-01.png) -412px -35px;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-twitter-transparent-lg:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -412px -104px;
}

.ha-icon-linkedin-transparent-lg {
    background: url(../img/sprites/Diamond_sprite-01.png) -477px -35px;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-linkedin-transparent-lg:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -477px -104px;
}

/*styler icons*/
.ha-styler-casual {
    background: url(../img/sprites/Diamond_sprite-01.png) -205px 60px;
    display: inline-block;
    width: 56px;
    height: 62px;
}

.ha-styler-business {
    background: url(../img/sprites/Diamond_sprite-01.png) -262px 60px;
    display: inline-block;
    width: 56px;
    height: 62px;
}

.ha-styler-modern {
    background: url(../img/sprites/Diamond_sprite-01.png) -322px 60px;
    display: inline-block;
    width: 56px;
    height: 62px;
}

.ha-styler-btn {
    background: url(../img/sprites/Diamond_sprite-01.png) -119px 98px;
    display: inline-block;
    width: 14px;
    height: 22px;
}

.ha-cube-color-1 {
    background: url(../img/sprites/Diamond_sprite-01.png) -405px 63px;
    display: inline-block;
    width: 29px;
    height: 29px;
}

.ha-cube-color-2 {
    background: url(../img/sprites/Diamond_sprite-01.png) -440px 63px;
    display: inline-block;
    width: 29px;
    height: 29px;
}

.ha-cube-color-3 {
    background: url(../img/sprites/Diamond_sprite-01.png) -475px 63px;
    display: inline-block;
    width: 29px;
    height: 29px;
}

.ha-cube-color-4 {
    background: url(../img/sprites/Diamond_sprite-01.png) -404px 30px;
    display: inline-block;
    width: 29px;
    height: 29px;
}

.ha-cube-color-5 {
    background: url(../img/sprites/Diamond_sprite-01.png) -440px 30px;
    display: inline-block;
    width: 29px;
    height: 29px;
}

.ha-cube-color-6 {
    background: url(../img/sprites/Diamond_sprite-01.png) -475px 30px;
    display: inline-block;
    width: 29px;
    height: 29px;
}

/*our team*/
.ha-diamond-black-filled-md-cube1 {
    background: url(../img/sprites/Diamond_sprite-01.png) -1233px -119px;
    display: inline-block;
    width: 19px;
    height: 17px;
    vertical-align: middle;
}

.ha-diamond-black-filled-md-cube2 {
    background: url(../img/sprites/Diamond_sprite-01.png) -1255px -119px;
    display: inline-block;
    width: 19px;
    height: 17px;
    vertical-align: middle;
}

.ha-diamond-black-filled-md-cube3 {
    background: url(../img/sprites/Diamond_sprite-01.png) -1277px -119px;
    display: inline-block;
    width: 19px;
    height: 17px;
    vertical-align: middle;
}

.ha-diamond-black-filled-md-cube4 {
    background: url(../img/sprites/Diamond_sprite-01.png) -1298px -119px;
    display: inline-block;
    width: 19px;
    height: 17px;
    vertical-align: middle;
}

.ha-diamond-black-filled-md-cube5 {
    background: url(../img/sprites/Diamond_sprite-01.png) -1320px -119px;
    display: inline-block;
    width: 19px;
    height: 17px;
    vertical-align: middle;
}

.ha-diamond-black-filled-md-cube6 {
    background: url(../img/sprites/Diamond_sprite-01.png) -1341px -119px;
    display: inline-block;
    width: 19px;
    height: 17px;
    vertical-align: middle;
}

.ha-icon-facebook-transparent-lg-cube1:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-twitter-transparent-lg-cube1:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -64px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-linkedin-transparent-lg-cube1:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -129px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-facebook-transparent-lg-cube2:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -809px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-twitter-transparent-lg-cube2:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -65px -809px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-linkedin-transparent-lg-cube2:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -130px -809px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-facebook-transparent-lg-cube3:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -198px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-twitter-transparent-lg-cube3:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -263px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-linkedin-transparent-lg-cube3:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -328px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-facebook-transparent-lg-cube4:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -198px -808px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-twitter-transparent-lg-cube4:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -263px -808px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-linkedin-transparent-lg-cube4:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -328px -808px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-facebook-transparent-lg-cube5:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -396px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-twitter-transparent-lg-cube5:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -461px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-linkedin-transparent-lg-cube5:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -526px -741px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-facebook-transparent-lg-cube6:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -396px -809px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-twitter-transparent-lg-cube6:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -461px -809px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-icon-linkedin-transparent-lg-cube6:hover {
    background: url(../img/sprites/Diamond_sprite-01.png) -526px -809px !important;
    display: inline-block;
    width: 63px;
    height: 65px;
}

.ha-diamond-divider-gray1-md {
    background: url(../img/sprites/Diamond_sprite-01.png) -401px 98px !important;
    width: 182px;
    height: 25px;
    display: inline-block;
}

/*hover colors on menu */
.ha-master-menu-container .ha-menu li .ha-menu-hover-color1:hover,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color1:active,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color1.current {
    color: #91a63b;
}

.ha-master-menu-container .ha-menu li .ha-menu-hover-color2:hover,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color2:active,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color2.current {
    color: #353342;
}

.ha-master-menu-container .ha-menu li .ha-menu-hover-color3:hover,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color3:active,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color3.current {
    color: #79bd8f;
}

.ha-master-menu-container .ha-menu li .ha-menu-hover-color4:hover,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color4:active,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color4.current {
    color: #0891aa;
}

.ha-master-menu-container .ha-menu li .ha-menu-hover-color5:hover,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color5:active,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color5.current {
    color: #fdbf44;
}

.ha-master-menu-container .ha-menu li .ha-menu-hover-color6:hover,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color6:active,
.ha-master-menu-container .ha-menu li .ha-menu-hover-color6.current {
    color: #01585f;
}

/* contact form send btn */
.ha-btn-transparent-cube1:hover {
    color: #91a63b !important;
    border: 1px solid #91a63b !important;
}

.ha-btn-transparent-cube2:hover {
    color: #353342 !important;
    border: 1px solid #353342 !important;
}

.ha-btn-transparent-cube3:hover {
    color: #79bd8f !important;
    border: 1px solid #79bd8f !important;
}

.ha-btn-transparent-cube4:hover {
    color: #0891aa !important;
    border: 1px solid #0891aa !important;
}

.ha-btn-transparent-cube5:hover {
    color: #f7951d !important;
    border: 1px solid #f7951d !important;
}

.ha-btn-transparent-cube6:hover {
    color: #01585f !important;
    border: 1px solid #01585f !important;
}

.form-control-inputs-cform {
    border: 1px solid #858689 !important;
}

.form-control-inputs-cform:focus {
    border: 1px solid #c3c4c8 !important;
}

/* selection colors */
.selectionText-cube1 div::selection {
    background: #91a63b;
    color: #ffffff;
}

.selectionText-cube1 p::selection {
    background: #91a63b;
    color: #ffffff;
}

.selectionText-cube1 p::-moz-selection {
    background: #91a63b;
    color: #ffffff;
}

.selectionText-cube1 div::-moz-selection {
    background: #91a63b;
    color: #ffffff;
}

.selectionText-cube2 div::selection {
    background: #353342;
    color: #ffffff;
}

.selectionText-cube2 p::selection {
    background: #353342;
    color: #ffffff;
}

.selectionText-cube2 p::-moz-selection {
    background: #353342;
    color: #ffffff;
}

.selectionText-cube2 div::-moz-selection {
    background: #353342;
    color: #ffffff;
}

.selectionText-cube3 div::selection {
    background: #79bd8f;
    color: #ffffff;
}

.selectionText-cube3 p::selection {
    background: #79bd8f;
    color: #ffffff;
}

.selectionText-cube3 p::-moz-selection {
    background: #79bd8f;
    color: #ffffff;
}

.selectionText-cube3 div::-moz-selection {
    background: #79bd8f;
    color: #ffffff;
}

.selectionText-cube4 div::selection {
    background: #0891aa;
    color: #ffffff;
}

.selectionText-cube4 p::selection {
    background: #0891aa;
    color: #ffffff;
}

.selectionText-cube4 p::-moz-selection {
    background: #0891aa;
    color: #ffffff;
}

.selectionText-cube4 div::-moz-selection {
    background: #0891aa;
    color: #ffffff;
}

.selectionText-cube5 div::selection {
    background: #f7951d;
    color: #ffffff;
}

.selectionText-cube5 p::selection {
    background: #f7951d;
    color: #ffffff;
}

.selectionText-cube5 p::-moz-selection {
    background: #f7951d;
    color: #ffffff;
}

.selectionText-cube5 div::-moz-selection {
    background: #f7951d;
    color: #ffffff;
}

.selectionText-cube6 div::selection {
    background: #01585f;
    color: #ffffff;
}

.selectionText-cube6 p::selection {
    background: #01585f;
    color: #ffffff;
}

.selectionText-cube6 p::-moz-selection {
    background: #01585f;
    color: #ffffff;
}

.selectionText-cube6 div::-moz-selection {
    background: #01585f;
    color: #ffffff;
}

/*end: styler*/
/*----end: social media icons------*/
/*--------------------end: CSS Sprite --------------------------*/
/* Backgorund colors of containers */
.ha-bgcolor-white {
    background-color: #ffffff;
}

.ha-bgcolor-dark {
    background-color: #1c212b;
}

.ha-bgcolor-dark2 {
    background-color: #404041;
}

.ha-bgcolor-gray {
    background-color: #d1d2d6;
}

.ha-bgcolor-orange {
    background-color: #f7951d;
}

/* white diamond img under the portfolio slider */
.ha-margin-btm {
    margin-bottom: -30px;
}

/* image wrapper used in services*/
.ha-service-img-wrapper {
    text-align: right;
    padding-top: 16px;
}

.ha-service-img-wrapper img:first-child {
    margin-left: 5px;
    z-index: 2;
}

.ha-service-img-wrapper img:nth-child(2) {
    margin-top: -30px;
    margin-left: -75px;
    z-index: 1;
}

.ha-service-img-wrapper img {
    position: relative;
    /*max-width: 150px;
                max-height: 187px;*/
}

/*fix when we open modal window to not hide default body scroll */
body.modal-open {
    overflow: auto !important;
    /*fix to hide modal scroll that is added when modal view is open*/
}

body.modal-open .modal {
    overflow: hidden !important;
}

/*center div class col-* */
.ha-position-center {
    float: none;
    margin: auto;
}

.ha-diamond-divider-p {
    margin-bottom: -20px;
}

.ha-diamond-divider-p .ha-margin-btm {
    margin-bottom: 0px;
}

/* styles arrow-bottom element which is used for navigation downwards from cover image */
#coverSectionNavArrow {
    position: absolute;
    width: 54px;
    height: 54px;
    left: 50%;
    bottom: 64px;
    margin-left: -27px;
    display: block;
}

.theme-modern #home {
    position: relative;
}

/* HaCom_Blocks.BlockDefault */
/* block is basic block implementation without vertical paddings and margins */
/* block-filled is block which has inner paddings */
.ha-block,
.ha-block-filled {
    padding-left: 60px;
    padding-right: 60px;
}

.ha-block .ha-heading,
.ha-block-filled .ha-heading {
    font-size: 19px;
    padding-bottom: 40px;
    color: #2e3443;
    text-align: center;
    text-transform: uppercase;
}

.ha-block .ha-content,
.ha-block-filled .ha-content {
    color: #858689;
}

.ha-block .ha-content-gray,
.ha-block-filled .ha-content-gray {
    padding-top: 0px;
    color: #858689;
}

.ha-block .ha-heading-gray,
.ha-block-filled .ha-heading-gray {
    padding: 20px 0px !important;
    color: #858689;
}

.ha-block .ha-divider-wrapper,
.ha-block-filled .ha-divider-wrapper {
    margin-top: 30px;
}

.ha-block-filled1 {
    padding-top: 85px;
    padding-bottom: 85px;
}

.ha-block-filled1 .ha-heading {
    font-size: 19px;
    padding-bottom: 40px;
    color: #2e3443;
    text-align: center;
    text-transform: uppercase;
}

.ha-block-filled1 .ha-heading1 {
    font-size: 19px;
    padding-bottom: 40px;
    color: #858689;
    text-align: center;
    text-transform: uppercase;
}

.ha-block-filled1 .ha-heading2 {
    font-size: 19px;
    padding-bottom: 40px;
    color: #858689;
    text-transform: uppercase;
}

/*footer 2*/
.ha-block-filled-2 {
    margin: 0px;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 85px;
    padding-bottom: 0px;
}

.ha-block-filled-2 .ha-heading {
    font-size: 19px;
    color: #2e3443;
    padding-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.ha-block-filled-2 .ha-content {
    color: #858689;
}

.ha-block-filled-2 .ha-content-gray {
    padding-top: 0px;
    color: #858689;
}

.ha-block-filled-2 .ha-heading-gray {
    padding: 20px 0px !important;
    color: #858689;
}

.ha-block-filled-2 .ha-divider-wrapper {
    margin-top: 30px;
}

.ha-heading-2 {
    font-size: 19px;
    color: #858689;
    padding: 20px 0px;
    text-align: center;
    text-transform: uppercase;
}

.ha-block-filled {
    margin: 0px;
    padding-top: 85px;
    padding-bottom: 85px;
}

.ha-add-margin-bottom {
    margin-bottom: 60px;
}

.ha-add-margin-bottom2 {
    margin-bottom: 40px;
}

.ha-add-margin-bottom3 {
    margin-bottom: 85px;
}

.ha-remove-margin-bottom {
    margin-bottom: 0px;
}

/* image behind About us heading*/
.ha-behing-txt-img {
    margin-right: -20px;
}

/* Easy pie chart */
/*chart pie */
.ha-chart-pie-wrapper {
    text-align: center;
    margin: auto;
    float: none;
}

.ha-chart-pie {
    width: 120px;
    display: inline-block;
    margin-right: 30px;
}

.ha-chart-pie:last-child {
    margin-right: 0px !important;
}

.ha-canvas-border-cicrle {
    width: 122px;
    height: 122px;
    border-radius: 50%;
}

.ha-canvas-border-cicrle .ha-chart-wrapper canvas {
    width: 126px;
    height: 126px;
    position: absolute;
    top: -5px;
    left: -5px;
}

.ha-canvas-border-cicrle .ha-chart-wrapper .ha-chart-percent {
    color: #858689;
    font-size: 20px;
}

.ha-canvas-border-cicrle .ha-chart-wrapper .ha-chart-title {
    color: #858689;
    margin-top: 25px;
}

.ha-canvas-border-cicrle .ha-chart-wrapper .ha-chart-percent-2 {
    color: #ffffff;
    font-size: 20px;
}

.ha-canvas-border-cicrle .ha-chart-wrapper .ha-chart-title-2 {
    color: #ffffff;
    margin-top: 25px;
}

.ha-circle-color-1 {
    border: 3px solid #cb1f42;
}

.ha-circle-color-2 {
    border: 3px solid #d1d2d6;
}

/* end:  Easy pie chart */
/*add own style to woo flexslider in clients */
.ha-block .ha-custom-flexslider {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    margin: 0px;
}

.ha-block .ha-custom-flexslider:hover .flex-next {
    right: 0;
}

.ha-block .ha-custom-flexslider .flex-direction-nav a {
    height: 25px;
    width: 25px;
}

.ha-block .ha-custom-flexslider .flex-direction-nav a:before {
    font-size: 20px !important;
    color: #858689;
}

.ha-block .ha-custom-flexslider .slides li {
    padding-right: 25px;
}

/*wrapper in blockwithicon component*/
.ha-blockwithicon-wrapper:hover {
    cursor: pointer;
}

.ha-blockwithicon-wrapper:hover .ha-icon-animate {
    -moz-animation-name: rotateIcon;
    -o-animation-name: rotateIcon;
    -webkit-animation-name: rotateIcon;
    animation-name: rotateIcon;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.ha-blockwithicon-wrapper:hover .ha-icon-brush {
    background: url(../img/sprites/Diamond_sprite-01.png) -230px -227px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-settings {
    background: url(../img/sprites/Diamond_sprite-01.png) -115px -228px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-pencil {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -228px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-brush-cube1 {
    background: url(../img/sprites/Diamond_sprite-01.png) -230px -394px;
    display: inline-block;
    width: 108px;
    height: 112px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-pencil-cube1 {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -394px !important;
    display: inline-block;
    width: 108px;
    height: 112px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-settings-cube1 {
    background: url(../img/sprites/Diamond_sprite-01.png) -115px -394px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-pencil-cube2 {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -509px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-settings-cube2 {
    background: url(../img/sprites/Diamond_sprite-01.png) -115px -509px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-brush-cube2 {
    background: url(../img/sprites/Diamond_sprite-01.png) -230px -509px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-pencil-cube3 {
    background: url(../img/sprites/Diamond_sprite-01.png) 0px -623px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-settings-cube3 {
    background: url(../img/sprites/Diamond_sprite-01.png) -115px -623px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-brush-cube3 {
    background: url(../img/sprites/Diamond_sprite-01.png) -230px -623px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-pencil-cube4 {
    background: url(../img/sprites/Diamond_sprite-01.png) -343px -394px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-settings-cube4 {
    background: url(../img/sprites/Diamond_sprite-01.png) -460px -394px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-brush-cube4 {
    background: url(../img/sprites/Diamond_sprite-01.png) -574px -394px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-pencil-cube5 {
    background: url(../img/sprites/Diamond_sprite-01.png) -343px -509px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-settings-cube5 {
    background: url(../img/sprites/Diamond_sprite-01.png) -460px -509px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-brush-cube5 {
    background: url(../img/sprites/Diamond_sprite-01.png) -574px -509px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-pencil-cube6 {
    background: url(../img/sprites/Diamond_sprite-01.png) -343px -623px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-settings-cube6 {
    background: url(../img/sprites/Diamond_sprite-01.png) -460px -623px;
}

.ha-blockwithicon-wrapper:hover .ha-icon-brush-cube6 {
    background: url(../img/sprites/Diamond_sprite-01.png) -574px -623px;
}

/* diamond divider img*/
.ha-diamond-divider {
    text-align: center;
    padding: 40px 0px;
}

/*css animations*/
@-webkit-keyframes rotateIcon {
    0% {
        opacity: 0.3;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes rotateIcon {
    0% {
        opacity: 0.3;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotateIcon {
    0% {
        opacity: 0.3;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/*style for template 2*/
/*testiomonial*/
.ha-testimonial-wrapper {
    text-align: center;
    color: #858689;
}

.ha-testimonial-wrapper blockquote {
    border-left: none;
}

.ha-testimonial-wrapper blockquote p {
    color: #858689;
}

.ha-testimonial-wrapper .ha-testimonial-author {
    font-weight: bold;
    font-style: italic;
    margin-top: 15px;
}

.ha-testimonial-wrapper .ha-add-margin-testimonial {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* divider between skills and testimonial */
.ha-divider-negative-mrg {
    margin-top: -20px;
}

.ha-divider-negative-mrg-top-bott {
    margin-top: -20px;
    margin-bottom: -20px;
}

/*image wrapper */
.ha-img-list-wrapper .ha-img-table {
    display: table;
    width: 100%;
}

.ha-img-list-wrapper .ha-img-table .ha-img-table-row {
    display: table-row;
}

.ha-img-list-wrapper .ha-img-table .ha-img-table-cell {
    display: table-cell;
}

.ha-img-list-wrapper .ha-list-cell {
    vertical-align: middle;
}

.ha-img-list-wrapper .ha-list-cell ul li {
    color: #858689;
    margin-bottom: 10px;
}

.ha-img-list-wrapper .ha-list-cell .ha-heading {
    text-align: left;
}

.ha-img-list-wrapper .ha-image-wrapper {
    vertical-align: middle;
}

.ha-img-list-wrapper .ha-image-wrapper img {
    display: inline;
}

.ha-img-list-wrapper .ha-image-wrapper .ha-tablet-img {
    margin-left: -135px;
    margin-top: 75px;
}

/*---------------------------Tabs---------------------------*/
/* Internal hack for effeckt plugin so our style would work fine */
.effeckt-tabs-wrap ul.effeckt-tabs {
    overflow: visible;
}

/*horizontal tabs*/
.ha-tabs-eff-wrapper {
    border-bottom: 1px solid #d1d2d6;
    min-height: 200px;
}

.ha-tabs-eff-wrapper .ha-tabs-eff-item {
    text-transform: uppercase;
    color: #858689;
}

.ha-tabs-eff-wrapper .ha-tabs-eff-item:hover {
    text-decoration: none;
}

.ha-tabs-eff-wrapper .ha-tabs-eff-list {
    padding: 0px 0px 3px 0px;
    border-bottom: 1px solid #d1d2d6;
}

.ha-tabs-eff-wrapper .ha-tabs-eff-list li {
    position: relative;
    display: inline;
    margin-right: 80px;
    list-style: none;
}

.ha-tabs-eff-wrapper .ha-tabs-eff-list li a {
    font-weight: normal;
}

.ha-tabs-eff-wrapper .ha-tabs-eff-list li a .ha-tab-item-carret {
    background: none;
    width: 114px;
    height: 10px;
    position: absolute;
    top: 20px;
    left: 0;
    margin-top: 4px;
}

.ha-tabs-eff-wrapper .ha-tabs-eff-list li a.active {
    font-family: "OPENSANS-BOLD";
}

.ha-tabs-eff-wrapper .ha-tabs-eff-list li a.active .ha-tab-item-carret {
    border-top: 4px solid #CD1F43;
}

.ha-tabs-eff-wrapper .ha-tabs-bottom-img-wrapper {
    margin-top: -21px;
}

.ha-tabs-eff-wrapper .ha-tabs-content {
    margin-top: 20px;
    height: 133px;
}

/*end: horizontal tabs*/
/*vertical tabs*/
.ha-tabs-eff-wrapper-vert {
    display: table;
    height: 100%;
    width: 100%;
    border-top: 1px solid #858689;
}

.ha-tabs-eff-wrapper-vert .ha-tabs-eff-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.ha-tabs-eff-wrapper-vert .ha-tabs-eff-item {
    color: #858689;
}

.ha-tabs-eff-wrapper-vert .ha-tabs-eff-item:hover {
    text-decoration: none;
}

.ha-tabs-eff-wrapper-vert .master-container {
    display: table-row;
}

.ha-tabs-eff-wrapper-vert .master-left {
    width: 20%;
    display: table-cell;
    padding-right: 20px;
}

.ha-tabs-eff-wrapper-vert .master-left .ha-tabs-eff-list li {
    text-align: center;
    list-style: none;
    border: 1px solid #858689;
    padding: 20px 15px;
}

.ha-tabs-eff-wrapper-vert .master-left .ha-tabs-eff-list li a {
    text-transform: uppercase;
}

.ha-tabs-eff-wrapper-vert .master-left .ha-tabs-eff-list li a .ha-tab-item-carret {
    background: none;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.ha-tabs-eff-wrapper-vert .master-left .ha-tabs-eff-list li a.active {
    color: #cb1f42;
    font-weight: 200;
}

.ha-tabs-eff-wrapper-vert .master-left .ha-tabs-eff-list li a.active .ha-tab-item-carret {
    background: url(../img/sprites/Diamond_sprite-01.png) -89px -68px;
    vertical-align: middle;
    margin-right: 10px;
}

.ha-tabs-eff-wrapper-vert .master-left .ha-tabs-eff-list li:first-child {
    border-top: none;
}

.ha-tabs-eff-wrapper-vert .master-right {
    display: table-cell;
    width: 70%;
    vertical-align: top;
    padding-top: 15px;
}

/*end: vertical tabs*/
.ha-tabs-body-img img {
    margin: 0 15px 15px 0px;
    float: left;
    max-width: 200px;
}

.ha-tabs-body-img a {
    color: #cb1f42;
}

.ha-tabs-body-txt {
    margin: 15px 5px 0px 0px;
}

/* OrederedList */
.ha-list-wrapper {
    text-align: center;
}

.ha-list-wrapper div {
    display: inline-block;
}

.ha-list-wrapper ul {
    margin-right: 30px;
}

.block-marginb-none {
    margin-bottom: 0;
}

.ha-parallax-bottom {
    margin-bottom: 50px;
}

.ha-parallax-bottom div {
    display: inline-block;
}

/*-------------------Lists--------------------------------*/
.ha-list-item span {
    margin: 0px 10px 0px 0px;
}

/*-------------------Lists--------------------------------*/
/*------------------Accordions----------------------------*/
.ha-accordion-wrapper .panel {
    /*margin-bottom: 20px;*/
    background-color: #FFF;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0;
}

.ha-accordion-wrapper .panel-heading {
    border-radius: 0px;
    border-top: 1px solid #d1d2d6;
    color: #2e3443;
    background-color: transparent;
}

.ha-accordion-wrapper .panel-group .panel-heading + .panel-collapse .panel-body {
    border-radius: 0px;
    border-top: none !important;
    /*padding: @ha-accordion-panel-body-padding !important;*/
    padding-top: 0px !important;
    padding-bottom: 10px !important;
}

.ha-accordion-wrapper .panel-group:last-child {
    border-bottom: 1px solid #d1d2d6;
}

.ha-accordion-wrapper .ha-accordion-body-img {
    float: left;
    margin: 0px 15px 5px 0px;
}

.ha-accordion-wrapper .ha-accordion-body-img img {
    max-width: 150px;
}

.ha-accordion-wrapper .ha-accordion-body-txt {
    line-height: 2;
    margin: 5px;
    color: #858689;
}

.ha-accordion-wrapper .accordionBtn {
    width: 100%;
    display: block;
}

.ha-accordion-wrapper .accordionBtn:hover {
    text-decoration: none;
}

/*----------------end:Accordions----------------------------*/
.ha-contact-form-wrapper {
    position: relative;
}

.ha-contact-form-wrapper .ha-contact-form .form-control {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #c3c4c8;
    vertical-align: middle;
    background-color: transparent;
    background-image: none;
    border: 1px solid #2e3443;
    border-radius: 0px;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.ha-contact-form-wrapper .ha-contact-form .form-control input {
    height: 40px;
}

.ha-contact-form-wrapper .ha-contact-form .form-control:focus {
    border: 1px solid #858689;
}

.ha-contact-form-wrapper .ha-contact-form .ha-contact-form-2 {
    border: 1px solid #858689;
}

.ha-contact-form-wrapper .ha-contact-form .ha-contact-form-2:focus {
    border: 1px solid #c3c4c8;
}

.ha-contact-form-wrapper .ha-contact-form .ha-gray-border-btn {
    border: 1px solid #858689;
}

.ha-contact-form-wrapper .ha-contact-form .ha-gray-border-btn:hover {
    border: 1px solid #cb1f42;
}

.ha-contact-form-wrapper .ha-contact-form .form-group {
    margin-bottom: 22px;
}

.ha-contact-form-wrapper .ha-contact-form ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #c3c4c8;
}

.ha-contact-form-wrapper .ha-contact-form :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #c3c4c8;
}

.ha-contact-form-wrapper .ha-contact-form ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #c3c4c8;
}

.ha-contact-form-wrapper .ha-contact-form :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #c3c4c8;
}

.ha-contact-form-wrapper .ha-contact-form label.error {
    color: #858689;
    font-size: 12px;
}

.ha-contact-form-wrapper .ha-send-btn-msg-suc,
.ha-contact-form-wrapper .ha-send-btn-msg-err {
    display: none;
    color: #858689;
}

.ha-social-icon-wrapper-footer .ha-social-icon-wrapper {
    padding-top: 65px;
    margin-top: 0px;
}

.ha-btn-transparent {
    color: #858689;
    background-color: transparent;
    text-transform: uppercase;
    padding: 5px 25px;
    border: 1px solid #2e3443;
}

.ha-btn-transparent:hover {
    color: #cb1f42;
    border: 1px solid #cb1f42;
}

.ha-btn-transparent:focus {
    outline: none;
}

.ha-send-btn-msg-suc,
.ha-send-btn-msg-err,
.ha-sending-status,
.ha-sending-loading-img {
    display: none;
    color: #858689;
}

.ha-sending-loading-img {
    padding: 20px 40px;
}

/*thumbnail */
.ha-thumbnail-wrapper {
    /*background-color: @ha-color-8;*/
    text-align: center;
    border: 1px solid #858689;
    /*diamond wrapper*/
    /*hover on thumbnail wrapper*/
}

.ha-thumbnail-wrapper .ha-thumbnail-img-wrapper {
    position: relative;
}

.ha-thumbnail-wrapper .ha-thumbnail-img-wrapper img {
    position: relative;
    width: 100%;
    z-index: 2;
}

.ha-thumbnail-wrapper .ha-backgroud-eff {
    z-index: -1;
    position: absolute;
    height: 100%;
    background-color: #2e3443;
    width: 100%;
    top: -100%;
    visibility: hidden;
}

.ha-thumbnail-wrapper span.icon-top {
    opacity: 1;
    margin-top: -25px;
    z-index: 2;
    position: relative;
}

.ha-thumbnail-wrapper span.icon-bottom {
    opacity: 0;
    margin-bottom: -19px;
}

.ha-thumbnail-wrapper .ha-personal-info {
    padding: 15px 0px 0px 0px;
    color: #858689;
    font-size: 14px;
    text-transform: uppercase;
}

.ha-thumbnail-wrapper .ha-thumbnail-title {
    color: #858689;
    text-transform: uppercase;
    font-size: 12px;
}

.ha-thumbnail-wrapper .ha-divider-wrapper {
    margin-top: 0px;
    width: 100%;
}

.ha-thumbnail-wrapper .ha-divider-wrapper span {
    height: 1px;
}

.ha-thumbnail-wrapper .ha-social-icon-wrapper {
    padding: 10px 0px;
}

.ha-thumbnail-wrapper .ha-social-icon-wrapper a {
    margin-right: 15px;
}

.ha-thumbnail-wrapper .ha-social-icon-wrapper a:hover {
    text-decoration: none;
}

.ha-thumbnail-wrapper .ha-social-icon-wrapper a:last-child {
    margin-right: 0px;
}

.ha-thumbnail-wrapper .ha-social-icon-wrapper .ha-hidden-wrapper {
    display: none;
    -moz-animation-name: slideFromSide;
    -o-animation-name: slideFromSide;
    -webkit-animation-name: slideFromSide;
    animation-name: slideFromSide;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.ha-thumbnail-wrapper:hover {
    cursor: pointer;
    /*diamond icon*/
    /*diamond icon*/
}

.ha-thumbnail-wrapper:hover .ha-backgroud-eff {
    visibility: visible;
    top: 0%;
    -moz-animation-name: slidebackgrounddown;
    -o-animation-name: slidebackgrounddown;
    -webkit-animation-name: slidebackgrounddown;
    animation-name: slidebackgrounddown;
    -moz-animation-duration: 0.4s;
    -o-animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
}

.ha-thumbnail-wrapper:hover span.icon-top {
    opacity: 0;
}

.ha-thumbnail-wrapper:hover span.icon-bottom {
    opacity: 1;
    -moz-animation-name: slideDown;
    -o-animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.ha-thumbnail-wrapper:hover .ha-social-icon-wrapper .ha-show-icons {
    display: none;
}

.ha-thumbnail-wrapper:hover .ha-social-icon-wrapper .ha-hidden-wrapper {
    display: inline;
}

@-moz-keyframes slideDown {
    0% {
        opacity: 0.5;
        -moz-transform: translateY(-200px);
        -ms-transform: translateY(-200px);
        -o-transform: translateY(-200px);
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        opacity: 0.5;
        -moz-transform: translateY(-200px);
        -ms-transform: translateY(-200px);
        -o-transform: translateY(-200px);
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@-webkit-keyframes slideDown {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-200px);
        -moz-transform: translateY(-200px);
        -ms-transform: translateY(-200px);
        -o-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@-webkit-keyframes slidebackgrounddown {
    from {
        top: -50%;
    }

    to {
        top: 0%;
        opacity: 1;
        z-index: -1;
    }
}

@-moz-keyframes slidebackgrounddown {
    from {
        top: -50%;
    }

    to {
        top: 0%;
        opacity: 1;
        z-index: -1;
    }
}

@keyframes slidebackgrounddown {
    from {
        top: -50%;
    }

    to {
        top: 0%;
        opacity: 1;
        z-index: -1;
    }
}

.ha-social-icon-wrapper {
    margin-top: 55px;
}

.ha-social-icon-wrapper span {
    opacity: 1;
}

.ha-social-icon-wrapper span:hover {
    -moz-animation-name: smoothChangeColor;
    -o-animation-name: smoothChangeColor;
    -webkit-animation-name: smoothChangeColor;
    animation-name: smoothChangeColor;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
}

.ha-social-icon-wrapper a {
    margin: 0px 10px 0px 0px;
}

.ha-social-icon-wrapper a:hover {
    text-decoration: none;
}

@-webkit-keyframes smoothChangeColor {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes smoothChangeColor {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

@keyframes smoothChangeColor {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.ha-carousel-wrapper {
    /* modal style */
}

.ha-carousel-wrapper .ha-heading {
    font-size: 19px;
    padding-bottom: 40px;
    color: #2E3443;
    text-align: center;
    text-transform: uppercase;
}

.ha-carousel-wrapper .col-lg-2 {
    padding: 0px;
}

.ha-carousel-wrapper .ha-custom-view {
    margin: 0px;
    border: 0px;
    box-shadow: none;
    background-color: transparent;
    background: none;
    padding: 0px;
    width: 100%;
}

.ha-carousel-wrapper img {
    width: 100%;
}

.ha-carousel-wrapper .ha-zoom-icon {
    width: 28px;
    height: 28px;
    margin: auto;
}

.ha-carousel-wrapper .view-first .mask {
    background: rgba(203, 31, 66, 0.8);
}

.ha-carousel-wrapper .view-first .mask h2 {
    background-color: transparent;
    font-size: 13px;
}

.ha-carousel-wrapper .view-first .mask:hover {
    cursor: pointer;
}

.ha-carousel-wrapper .view-first .ha-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 30%;
    margin: auto;
    left: 0;
    right: 0;
}

.ha-carousel-wrapper .view-first .ha-mask h2 {
    margin-top: 0px;
    padding: 0px 20px;
}

.ha-carousel-wrapper .view-first .ha-mask p {
    padding: 0px;
    margin-top: 20px;
}

.ha-carousel-wrapper .view .mask,
.ha-carousel-wrapper .view .content {
    width: 100%;
    height: 100%;
}

.ha-carousel-wrapper .ha-custom-control-left {
    position: absolute;
    z-index: 5;
    width: 5%;
    background-image: none !important;
    opacity: 1;
}

.ha-carousel-wrapper .ha-custom-control-left span {
    position: absolute;
    top: 100%;
    margin-top: -19px;
    left: 20px;
}

.ha-carousel-wrapper .ha-custom-control-right {
    position: absolute;
    z-index: 5;
    width: 5%;
    background-image: none !important;
    opacity: 1;
}

.ha-carousel-wrapper .ha-custom-control-right span {
    position: absolute;
    top: 100%;
    margin-top: -19px;
    right: 20px;
}

.ha-carousel-wrapper .modal-content {
    position: relative;
    background-color: #c3c4c8;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    box-shadow: none;
    outline: none;
}

.ha-carousel-wrapper .modal-content .modal-body {
    padding: 4px;
}

.ha-carousel-wrapper .modal-content h4 {
    font-size: 14px;
    text-transform: uppercase;
}

.ha-carousel-wrapper .modal-content .modal-footer {
    color: #858689;
    margin-top: 0px;
    padding: 19px 20px 20px;
    text-align: left;
    border-top: none;
}

.ha-carousel-wrapper .modal-content .modal-footer p {
    font-size: 12px;
    color: #858689;
    line-height: 1.6;
}

.ha-carousel-wrapper .modal-dialog {
    /*margin: 0 auto;
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                height: 400px;
                max-height: 400px;
                margin-top: -200px;*/
    /*position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                width: 50%;
                height: 30%;
                margin: 0px auto;*/
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    -moz-animation-name: modalAnimation;
    -o-animation-name: modalAnimation;
    -webkit-animation-name: modalAnimation;
    animation-name: modalAnimation;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.modal-open .modal,
.btn:focus {
    outline: none !important;
}

.modal-backdrop {
    background-color: black;
    opacity: 0.9 !important;
}

@-webkit-keyframes modalAnimation {
    from {
        top: 10%;
    }

    to {
        top: 50%;
    }
}

@keyframes modalAnimation {
    from {
        top: 10%;
    }

    to {
        top: 50%;
    }
}

.ha-bg-parallax {
    background: url(http://placehold.it/1400x900) 50% -195px no-repeat fixed;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    height: 300px;
    margin: 0 auto;
    width: 100%;
    display: table;
    vertical-align: middle;
}

.ha-bg-parallax .ha-parallax-body {
    display: table-cell;
    vertical-align: middle;
}

.ha-bg-parallax .ha-content-whitecolor {
    font-size: 17px;
    color: #ffffff;
    width: 45%;
    margin: auto;
}

.ha-bg-parallax .ha-diamond-divider-md {
    margin: 15px 0px;
}

.ha-bg-parallax .ha-heading-parallax {
    font-style: italic;
    font-weight: bold;
    text-transform: none;
    color: #ffffff;
    padding-bottom: 0px;
}

.ha-logo-inpieces img {
    display: none;
}

.animate-fadeIn1 {
    -moz-animation-name: animate-fadeInFrames;
    -o-animation-name: animate-fadeInFrames;
    -webkit-animation-name: animate-fadeInFrames;
    animation-name: animate-fadeInFrames;
    -moz-animation-duration: 5s;
    -o-animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

/*spans*/
.piece {
    -moz-animation-name: animate-fadeInFrames;
    -o-animation-name: animate-fadeInFrames;
    -webkit-animation-name: animate-fadeInFrames;
    animation-name: animate-fadeInFrames;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    opacity: 1;
    background: url(../img/header-logo-01.png);
    float: left;
    width: 10px;
    height: 10px;
}

@-webkit-keyframes animate-fadeInFrames {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes animate-fadeInFrames {
    from {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-fadeInFrames {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*relative position of the parent of
go to top wrapper(absolute)*/
#clients {
    position: relative;
}

#bxClients {
    padding-bottom: 85px;
}

/* go to top wrapper*/
.ha-goto-top-wrapper {
    z-index: 9999;
    float: right;
    text-align: right;
    margin-right: 40px;
}

.ha-goto-top-wrapper .ha-goto-top-wrapper1 {
    position: relative;
    height: 60px;
}

.ha-goto-top-wrapper .ha-goto-top-wrapper2 {
    position: absolute;
    right: 40px;
    top: 50%;
}

.ha-goto-top-wrapper span {
    -moz-animation-name: topdownanimate;
    -o-animation-name: topdownanimate;
    -webkit-animation-name: topdownanimate;
    animation-name: topdownanimate;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

/*animate go to top to dance a bit*/
@-webkit-keyframes topdownanimate {
    from {
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-moz-keyframes topdownanimate {
    from {
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes topdownanimate {
    from {
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.ha-table-heading1 {
    font-size: 19px;
    padding-bottom: 60px;
    color: #2E3443;
    text-align: center;
    text-transform: uppercase;
}

.ha-table {
    display: table;
    vertical-align: middle;
    width: 100%;
    background-color: #d1d2d6;
    font-size: 14px;
    text-align: center;
}

.ha-table .ha-table-row {
    display: table-row;
}

.ha-table .ha-table-row .ha-table-cell {
    display: table-cell;
    border: 1px solid #c3c4c8;
    padding: 15px 0px;
}

.ha-table .ha-table-row-active .ha-table-cell {
    background-color: #858689;
    font-size: 20px;
    color: #ffffff;
    opacity: 0.6;
}

.ha-table .ha-table-heading {
    text-transform: uppercase;
    font-size: 16px;
    font-family: OPENSANS-BOLD;
}

.ha-table .ha-table-buybtn {
    padding: 10px 40px;
    background-color: transparent;
    border: 1px solid #c3c4c8;
    text-transform: uppercase;
    box-shadow: none;
    color: #2e3443;
}

.ha-table .ha-table-buybtn:hover {
    cursor: pointer;
    text-decoration: none;
    color: #cb1f42;
    border: 1px solid #cb1f42;
}

.ha-table .ha-table-btnwrapper .ha-table-cell {
    padding: 40px 0px;
    border-bottom: 1px solid #2e3443 !important;
}

.ha-table .ha-table-active-cell {
    background-color: #858689;
    color: #c3c4c8;
    font-size: 24px;
    border: none !important;
}

.ha-table .ha-table-active-cell .ha-price-decimal {
    font-size: 12px;
}

/* master table */
.ha-tables-wrapper {
    display: table;
    width: 100%;
}

.ha-tables-wrapper .ha-tables-row {
    display: table-row;
}

.ha-tables-wrapper .ha-tables-cell {
    display: table-cell;
}

.ha-tables-wrapper .ha-active-table {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.ha-tables-wrapper .ha-active-table .ha-table-cell {
    background-color: #ffffff;
    border-left: 1px solid #2e3443;
    border-right: 1px solid #2e3443;
    border-bottom: none;
}

.ha-tables-wrapper .ha-active-table .ha-table-active-cell {
    background-color: #404041;
    color: #c3c4c8;
    border: none !important;
}

.ha-tables-wrapper .ha-active-table .ha-table-heading {
    color: #c3c4c8;
    border-top: 1px solid #2e3443 !important;
}

.tp-bullets .tp-thumbs .round .hovered {
    width: 456px;
    height: 60px;
    bottom: 20px;
    left: 50%;
    margin-left: -228px;
}

/*bxslider*/
.bx-wrapper {
    margin: 0px;
}

.bx-viewport {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    margin-bottom: 0 !important;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: url(../img/sprites/Diamond_sprite-01.png) -90px -47px;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0px 1px;
    /*margin-left: 0px;*/
}

.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: url(../img/sprites/Diamond_sprite-01.png) -107px -47px;
    display: inline-block;
    width: 15px;
    height: 15px;
    /*margin-left: 0px;
                margin-right: 0px;*/
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    bottom: -60px;
}

/*revolution slider */
.tp-leftarrow.default {
    background: url(../img/sprites/Diamond_sprite-01.png) -334px -210px;
    width: 35px;
    height: 40px;
    display: inline-block;
}

.tp-rightarrow.default {
    background: url(../img/sprites/Diamond_sprite-01.png) -376px -210px;
    width: 35px;
    height: 40px;
    display: inline-block;
}

.tp-bullets {
    display: none;
}

.ha-map-wrapper {
    display: none;
}

.ha-map-wrapper iframe {
    max-width: 100%;
    border: 0px;
    overflow: hidden;
}

.ha-rotate-arrowup {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ha-rotate-arrowdown {
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.ha-styler-wrapper {
    background-color: #d1d2d6;
    border: 1px solid #c3c4c8;
    position: fixed;
    width: 250px;
    height: 510px;
    top: 80px;
    left: 0px;
    z-index: 999;
    text-align: center;
}

.ha-styler-wrapper .ha-heading-wrapper {
    background-color: #2e3443;
}

.ha-styler-wrapper .ha-heading-wrapper .ha-heading {
    font-size: 19px;
    padding: 20px 0px 10px 0px;
    color: #d1d2d6;
    text-align: center;
    text-transform: uppercase;
}

.ha-styler-wrapper .ha-heading-subtitle {
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #d1d2d6;
    margin-bottom: 5px;
}

.ha-styler-wrapper .ha-styler-togglebtn {
    top: 20px;
    position: absolute;
    right: -50px;
    width: 50px;
    height: 50px;
    background-color: #d1d2d6;
    padding-top: 12px;
    text-align: center;
    border: 1px solid #c3c4c8;
}

.ha-styler-wrapper .ha-styler-togglebtn:hover {
    cursor: pointer;
}

.ha-styler-wrapper .ha-styler-layout {
    padding: 10px 0px;
}

.ha-styler-wrapper .ha-styler-layout div {
    text-align: center;
}

.ha-styler-wrapper .ha-styler-layout:hover {
    cursor: pointer;
}

.ha-styler-wrapper .ha-layout-img {
    margin-right: 5px;
    width: 80px;
    height: 110px;
}

.ha-styler-wrapper .ha-styler-divider {
    margin: 10px 0px;
}

.ha-styler-wrapper .ha-colors-wrapper {
    background-color: #d1d2d6;
}

.ha-styler-wrapper .ha-table-colors {
    margin: auto;
}

.ha-styler-wrapper .ha-table-colors tr {
    padding: 0px;
}

.ha-styler-wrapper .ha-table-colors tr td {
    padding: 0px 10px 4px 0px;
}

.ha-styler-wrapper .ha-table-colors tr td:last-child {
    padding-right: 0px;
}

/* footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    position: relative;
    font-size: 13px;
    /*footer 2*/
}

/*footer img {
    height: 100%;
    opacity: 0.5;
}*/

footer .ha-block {
    margin-bottom: 0px;
}

footer p {
    color: #858689;
}

footer .ha-heading {
    color: #858689 !important;
}

footer .ha-footer-copyright {
    color: #858689;
    padding: 20px 0px;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid #2e3443;
}

footer .ha-footer-copyright .ha-single-line-divider-fullwidth {
    border: 1px solid #2e3443;
}

footer .ha-footer-copyright-2 {
    color: #858689;
    padding: 20px 0px;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid #858689;
}

footer .ha-footer-copyright-2 .ha-single-line-divider-fullwidth {
    border: 1px solid #2e3443;
}

footer .ha-footer-copyright-2 .ha-social-icon-wrapper {
    margin-bottom: 20px;
}

.ha-location-wrapper {
    padding: 40px 0px;
}

.ha-centered-position {
    float: none;
    margin: auto;
}

.ha-showHide-gmap {
    padding: 15px;
}

/* Responsive menu queries */
/*small width size is 768px */
@media screen and (min-width: 100px) and (max-width: 800px) {
    /*other responsive fixes*/
    /*show portfolio without initial animation*/
    .ha-animation-initial {
        opacity: 1 !important;
    }

    /*hide divider under about us*/
    .ha-diamond-divider {
        padding: 20px 0px;
        /*show smaller divider*/
    }

    .ha-diamond-divider .ha-diamond-divider-lg {
        display: none;
    }

    .ha-diamond-divider .ha-diamond-divider-md {
        display: inline-block !important;
        visibility: visible !important;
    }

    /*portfolio text on images*/
    .mask .ha-mask h2 {
        font-size: 9px;
    }

    /*in portfolio slider */
    .ha-carousel-wrapper .ha-heading {
        font-size: 19px;
        padding-bottom: 20px;
        color: #2E3443;
        text-align: center;
        text-transform: uppercase;
    }

    .ha-carousel-wrapper .view-first .mask h2 {
        font-size: 9px;
    }

    /*our clients navigation wrapper*/
    .bx-wrapper .bx-pager,
    .bx-wrapper .bx-controls-auto {
        bottom: -35px;
    }

    /*tabs*/
    .ha-tabs-eff-wrapper .ha-tabs-eff-list li {
        margin-right: 5px;
    }

    /*thumbanils*/
    /*remove hover effect on thumbnails */
    .ha-thumbnail-wrapper {
        margin-bottom: 5px;
    }

    .ha-thumbnail-wrapper:hover .ha-backgroud-eff {
        display: none;
    }

    .ha-thumbnail-wrapper:hover .ha-social-icon-wrapper .ha-show-icons {
        display: inline;
    }

    .ha-thumbnail-wrapper:hover .ha-social-icon-wrapper .ha-hidden-wrapper {
        display: none;
    }

    .ha-thumbnail-wrapper .ha-single-line-divider {
        display: none;
    }

    .ha-bg-parallax {
        display: none;
    }

    /*padding, margins*/
    .ha-blockwithicon-wrapper {
        margin-bottom: 5px;
    }

    .ha-add-margin-bottom {
        margin-bottom: 20px;
    }

    .ha-block-filled {
        padding-top: 30px;
        padding-bottom: 15px;
        padding-right: 5px;
        padding-left: 5px;
    }

    .ha-block {
        padding-right: 5px;
        padding-left: 5px;
    }

    .ha-heading {
        padding-bottom: 20px;
    }

    .ha-heading ha-behing-txt-img {
        padding-bottom: 10px;
    }

    /* image wrapper used in services*/
    .ha-service-img-wrapper {
        text-align: right;
        padding-top: 16px;
    }

    .ha-service-img-wrapper img:first-child {
        margin-right: 0px;
        z-index: 2;
    }

    .ha-service-img-wrapper img:nth-child(2) {
        margin-top: 5px;
        z-index: 1;
    }

    .ha-service-img-wrapper img {
        position: relative;
    }

    #skills .ha-block-filled {
        padding-left: 15px;
        padding-right: 15px;
    }

    /*skills easy pie charts*/
    .ha-easypie-list li {
        margin-right: 5px;
        margin-bottom: 10px;
    }

    .ha-circle-color-3 {
        border: none !important;
    }

    .ha-chart-title {
        margin-top: 5px !important;
    }

    .ha-chart-title-2 {
        margin-top: 5px !important;
    }

    /*our team ha-heading*/
    #ourteam .ha-heading {
        padding-bottom: 20px;
    }

    /*our strategy*/
    #strategy .ha-heading {
        text-align: center;
        padding-bottom: 10px !important;
    }

    #strategy .ha-img-table-cell {
        padding-bottom: 30px;
    }

    .ha-add-margin-testimonial {
        padding-bottom: 30px;
    }

    /*image in tabs*/
    .ha-tabs-body-img img {
        max-width: 100px;
    }

    /*our strategy*/
    .ha-img-table-row {
        display: block !important;
    }

    /*image with list in template2*/
    .ha-img-list-wrapper {
        padding-left: 5px;
        padding-right: 5px;
    }

    .ha-img-list-wrapper .ha-image-wrapper {
        text-align: center;
        margin: 0 auto;
        float: none;
    }

    .ha-img-list-wrapper .ha-image-wrapper img {
        width: 150px;
        height: 150px;
    }

    .ha-img-list-wrapper .ha-image-wrapper .ha-tablet-img {
        margin: 0px;
    }

    .ha-tables-wrapper .ha-table-buybtn {
        padding: 5px;
    }

    /*Menu*/
    /* show just one menu*/
    .ha-default-menu-container,
    .ha-search-wrapper {
        display: none;
    }

    /*
              hide logo image
              display menu items in list
              set properly margins and paddings
              */
    .ha-fixed-menu-container {
        min-height: 40px;
        background: rgba(0, 0, 0, 0.95);
        /*btn for toggle show, hide menu*/
    }

    .ha-fixed-menu-container .ha-logo-wrapper {
        display: none;
    }

    .ha-fixed-menu-container .ha-toggle-collapse-btn {
        visibility: visible;
    }

    .ha-fixed-menu-container .ha-toggle-collapse-btn span {
        color: #858689;
        font-size: 20px;
    }

    .ha-fixed-menu-container .ha-toggle-collapse-btn:hover,
    .ha-fixed-menu-container .ha-toggle-collapse-btn:active {
        text-decoration: none;
    }

    .ha-fixed-menu-container .ha-fixed-menu-wrapper {
        display: none;
        /*show left and right div as list*/
    }

    .ha-fixed-menu-container .ha-fixed-menu-wrapper div {
        display: list-item;
    }

    .ha-fixed-menu-container .ha-fixed-menu-wrapper .ha-menu-left {
        text-align: left;
        padding: 0px;
    }

    .ha-fixed-menu-container .ha-fixed-menu-wrapper .ha-menu-left ul {
        margin-bottom: 0px;
    }

    .ha-fixed-menu-container .ha-fixed-menu-wrapper .ha-menu-left ul li {
        display: list-item;
        padding-left: 15px;
        padding-bottom: 10px;
    }

    .ha-fixed-menu-container .ha-fixed-menu-wrapper .ha-menu-right {
        text-align: left;
        float: none;
        padding: 0px;
    }

    .ha-fixed-menu-container .ha-fixed-menu-wrapper .ha-menu-right ul li {
        display: list-item;
        padding-left: 15px;
        padding-bottom: 10px;
    }

    /*bxslider*/
    .bx-pager {
        visibility: hidden;
    }

    /*footer social media icons*/
    .ha-social-icon-wrapper {
        text-align: center;
    }

    /*align contact form */
    .ha-footer-paragraph-txt p {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ha-chart-pie {
        width: 130px;
        margin-right: 5px;
    }

    .ha-strategy-list {
        margin: auto;
        float: none;
        display: table;
    }

    #pricing .ha-table-heading1 {
        padding-top: 30px;
    }

    .ha-block-filled1 {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

/*mobile screen size*/
@media screen and (min-width: 100px) and (max-width: 479px) {
    .ha-tables-wrapper .ha-tables,
    .ha-tables-wrapper .ha-tables-cell {
        display: block;
    }

    .ha-block-filled-2 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /*footer social media icons*/
    .ha-social-icon-wrapper {
        text-align: center;
    }

    /*bxslider*/
    .bx-pager {
        visibility: hidden;
    }

    .ha-footer-paragraph-txt p {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ha-tables-wrapper .ha-active-table {
        -moz-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
        -o-transform: scale(1) !important;
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
    }

    #strategy .row {
        margin: auto;
        float: none;
        display: table;
    }

    #strategy .ha-heading {
        padding-bottom: 5px;
    }

    #pricing .ha-table-heading1 {
        padding-top: 30px;
        padding-bottom: 40px !important;
    }
}

/*tablet landscape*/
@media screen and (min-width: 850px) and (max-width: 960px) {
    #strategy .ha-block-filled {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    #strategy .ha-table-cell {
        margin-top: 15px;
    }

    .ha-footer-paragraph-txt {
        padding-left: 30px;
        padding-right: 30px;
    }

    .ha-footer-paragraph-txt p {
        padding-top: 40px;
    }

    .ha-carousel-wrapper .view-first .mask h2 {
        font-size: 10px;
        padding: 0px 30px;
    }

    .ha-social-icon-wrapper {
        text-align: center;
    }
}

@media screen and (min-width: 800px) and (max-width: 970px) {
    .ha-fixed-menu-wrapper ul li,
    .ha-default-menu-wrapper ul li {
        padding: 0px;
    }

    .ha-fixed-menu-wrapper ul li a,
    .ha-default-menu-wrapper ul li a {
        margin-right: 5px !important;
        padding: 0px !important;
    }
}

.ha-animation-initial,
.ha-animation-initial2 {
    opacity: 0;
}

.ha-animation-transition {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.smoothFadeInRight {
    -moz-animation-name: smoothFadeInLeft;
    -o-animation-name: smoothFadeInLeft;
    -webkit-animation-name: smoothFadeInLeft;
    animation-name: smoothFadeInLeft;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.smoothFadeInLeft {
    -moz-animation-name: smoothFadeInRight;
    -o-animation-name: smoothFadeInRight;
    -webkit-animation-name: smoothFadeInRight;
    animation-name: smoothFadeInRight;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

@-webkit-keyframes smoothFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(500px);
        transform: translateX(500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes smoothFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(500px);
        transform: translateX(500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes smoothFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(500px);
        transform: translateX(500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes smoothFadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-500px);
        transform: translateX(-500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.ha-default-menu-logo {
	width:256px;
	height:142px;
}