/*==================================
SECTION & ROW
/*==================================*/
.row {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}
.w-section .row{ margin:auto;}

.w-section {
    position: relative;
    padding: 95px 0;
}


.full-width.no-sidebar .w-section > .row {
    margin-left: auto;
    margin-right: auto;
}

.w-section.w-full > .row {
    max-width: none;
    padding: 0;
}

.w-section.w-full > .row,
.w-section.w-full > .row .row {
    margin-left: 0;
    margin-right: 0;
}

.w-section.no-padding,
.row.no-padding {
    padding-top: 0;
    padding-bottom: 0;
}
    
.w-section.s-padding,
.row.s-padding {
    padding-top:20px;
    padding-bottom:20px;
}

.w-section.m-padding,
.row.m-padding {
    padding-top:40px;
    padding-bottom:40px;
}

.w-section.l-padding,
.row.l-padding {
    padding-top:60px;
    padding-bottom:60px;
}

.w-section.xl-padding,
.row.xl-padding {
    padding-top:120px;
    padding-bottom:120px;
}

/* Flex row, vertical alignment & equal height */ 
.w-row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.w-row-flex > .col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* Equal Height */
.w-row-flex.w-equal-height > .col {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

/* Align Middle */
.w-row-flex.w-align-middle > .col {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Align Bottom */
.w-row-flex.w-align-bottom > .col {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.w-row-flex > .col > .col-inner {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    height: auto;
}  

/*==================================
COLUMN
/*==================================*/
.col {
    position: relative;
    display: block;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    text-align: left;
}

.col-inner{
    position: relative;
    height: 100%;
    width: 100%;
}

.col.no-padding {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.col.s-padding {
    padding: 15px;
}

.col.m-padding {
    padding: 30px;
}

.col.l-padding {
    padding: 5%;
}

.five-cols {
    width: 20%;
}

.col-12 {
    width: 100%;
}

.col-11 {
    width: 91.66666667%;
}

.col-10 {
    width: 83.33333333%;
}

.col-9 {
    width: 75%;
}

.col-8 {
    width: 66.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-6 {
    width: 50%;
}

.col-5 {
    width: 41.66666667%;
}

.col-4 {
    width: 33.33333333%;
}

.col-3 {
    width: 25%;
}

.col-2 {
    width: 16.66666667%;
}

.col-1 {
    width: 8.33333333%;
}

.col-offset-12 {
  margin-left: 100%;
}

.col-offset-11 {
    margin-left: 91.66666667%;
}

.col-offset-10 {
    margin-left: 83.33333333%;
}

.col-offset-9 {
    margin-left: 75%;
}

.col-offset-8 {
    margin-left: 66.66666667%;
}

.col-offset-7 {
    margin-left: 58.33333333%;
}

.col-offset-6 {
    margin-left: 50%;
}

.col-offset-5 {
    margin-left: 41.66666667%;
}

.col-offset-4 {
    margin-left: 33.33333333%;
}

.col-offset-3 {
    margin-left: 25%;
}

.col-offset-2 {
    margin-left: 16.66666667%;
}

.col-offset-1 {
    margin-left: 8.33333333%;
}

.col-offset-0 {
    margin-left: 0;
}

/*==================================
ANIMATED ELEMENT 
/*==================================*/
.w-animation {
    visibility: hidden;
    -moz-animation-name: none!important;
    -webkit-animation-name: none!important;
    -ms-animation-name: none!important;
    animation-name: none!important; 
}

/*==================================
EMPTY SPACE ELEMENT
/*==================================*/
.w-empty-space {
    display: block;
    clear: both;
    float: none;
}

/*==================================
DROPCAP 
/*==================================*/
.dropcap {
    position: relative;
    display: inline-block;
    float: left;
    height: 40px;
    line-height: 35px;
    font-size: 45px;
    font-weight: 700;
    margin: 5px 10px 0 0;
    padding: 0;
    color: #000;
    text-transform: uppercase;
}

/*==================================
HIGHLIGHT
/*==================================*/
.highlight {
    color: #4195f7;
}

/*==================================
BUTTON & LINK BUTTON
/*==================================*/
.w-button {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 1;
    background: #4195f7;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    min-width: 80px;
    cursor: pointer;
    padding: 12px 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    border: 1px solid #4195f7;
    outline: none;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-button.round, 
.w-link-button.round, 
.w-ghost-button.round {
    border-radius: 26px;
}

.w-button.rounded,
.w-link-button.rounded,
.w-ghost-button.rounded {
    border-radius: 6px;
}

.w-button.large,
.w-ghost-button.large {
    padding: 18px 40px;
    font-weight: 700;
    line-height: 16px;
    font-size: 14px;
}

.w-button:hover {
    color: #fff;
}

.w-button:after, .w-ghost-button:after {
    position: absolute;
    content: '\e843';
    font-family: 'aoraki';
    opacity: 0;
    font-weight: 300;
    right: 16px;
    top: 50%;
    line-height: 0;
    color: inherit;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-button.large:after {
    right: 30px;
}

.w-button:hover:after, .w-ghost-button:hover:after {
    opacity: 1;
    right: 10px;
}

.w-button.large:hover:after {
    opacity: 1;
    right: 16px;
}

.w-button > span,
.w-ghost-button > span {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.w-button:hover > span,
.w-ghost-button:hover > span {
    -ms-transform: translateX(-5px);
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
}
 
.w-ghost-button,
.w-link-button {
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: top;
    border-width: 1px;
    border-style: solid;
    border-color: #4195f7;
    color: #4195f7;
    background: none;
    font-size: 12px;
    line-height: 14px;
    min-width: 80px;
    cursor: pointer;
    padding: 12px 20px;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-link-button {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-link-button.none,
.w-link-button.outline,
.w-link-button:not(.none):hover,
.w-link-button:not(.none):active,
.w-link-button.outline.w-with-icon:hover,
.w-ghost-button:hover {
    color: #4195f7;
}
    
.w-link-button.large {
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
}

.w-link-button.none,
.w-link-button.large.none {
    border-width: 0 0 1px 0; height: 46px; width:150px; line-height: 46px; background: #093a95; text-align:center;
    border-color: inherit;
    margin: 0; padding:0;
    min-width: 0;
}
.w-link-button.none:hover{ color: #fff; }

.w-link-button i {
    margin-right: 6px;
    padding-left:2px;
}

.w-link-button:not(.none),
.w-link-button:not(.none):not(.w-with-icon).outline:hover,
.w-link-button:not(.none).outline:active {
    background: #4195f7;
    color: #fff;
}

.w-link-button:not(.none).outline,
.w-link-button:not(.none):not(.w-with-icon):hover {
    background: transparent;
}

.w-link-button:not(.none):not(.w-with-icon).outline:hover .w-border,
.w-link-button:not(.none):not(.w-with-icon).outline:active .w-border {
    top: 0;  
}

.w-link-button.outline:active,
a.w-link-button:not(.outline):not(.none).w-with-icon:hover,
a.w-link-button:not(.outline):not(.none).w-with-icon:active {
    color: #fff;
}

.w-link-button.outline:hover {
    color: #fff;
}


.w-link-button:not(.none):not(.outline) {
    -webkit-transition: 0.5s background 0.1s, color 0.3s;
    transition: 0.5s background 0.1s, color 0.3s;
}

.w-link-button:not(.none):not(.outline).w-with-icon {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;   
}

.w-link-button:not(.none):not(.outline).w-with-icon:hover {
    opacity: 0.9;
}

.w-link-button.w-with-icon {
    padding: 0;
    line-height: 40px;
    height: 40px;
}

.w-link-button.large.w-with-icon {
    padding: 0;
    line-height: 52px;
    height: 52px;
}

.w-link-button:not(.outline).w-with-icon {
    line-height: 42px;
    height: 42px;
    border: none;
    min-width: 1px;
    padding: 0;
}

.w-link-button:not(.outline).large.w-with-icon {
    line-height: 54px;
    height: 54px;
}

.w-link-button:not(.outline).large.w-with-icon.none {
    line-height: 30px;
    height: 30px;
}

.w-link-button.w-with-icon .w-button-icon {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
    font-size: 20px;
}

.w-link-button.none.w-with-icon .w-button-icon {
    padding-left: 0;
}

.w-link-button.large:not(.none).w-with-icon .w-button-icon {
    min-width: 60px;
    font-size: 24px;
}

.w-link-button:not(.outline):not(.none).w-with-icon .w-button-icon {
    background: rgba(0,0,0,0.1);
}

.w-link-button.outline.w-with-icon .w-button-icon {
    border-right:1px solid;
}

.w-link-button.outline.w-with-icon .w-border {
    display: none;
}

.w-link-button.w-with-icon i {
    display: inline-block;
    margin-right: 2px;
}

.w-link-button.w-with-icon:hover i {
    -webkit-animation: 0.2s tRightfLeft 0.3s forwards;
    animation: 0.2s tRightfLeft 0.3s forwards;
}

.w-link-button.w-with-icon:not(.none) .w-button-text {
    display: inline-block;
    padding: 0 20px 0px 14px;
}

/*==================================
TEXT BLOCK
/*==================================*/
.w-text-block {
    color: inherit;
}

.text-right .w-text-block ul {
    margin: 0 20px 30px 0;
}

.w-text-block ul > li {
    list-style: none;
    margin-left:20px;
    margin: 10px 0;
    position: relative;
}

.w-text-block ul > li ul > li,
.w-text-block ol ul {
    margin-left: 0px;
}

.w-text-block ul > li:before,
.text-right .w-text-block ul > li:after {
    font-family: 'aoraki';
    content: "\e839";
    font-size: inherit;
    display: inline-block;
    color: #4195f7;
}

.w-text-block ul > li:before {
    margin-right: 10px;
    margin-left: -20px;
}

.text-right .w-text-block ul > li:before {
    display: none;
}

.text-right .w-text-block ul > li:after {
    position: absolute;
    top: 0;
    right: -20px;   
    margin-left: 10px;
    padding-right: 1px;
}

/*==================================
CUSTOM HEADING
/*==================================*/
.w-custom-heading h1,
.w-custom-heading h2,
.w-custom-heading h3,
.w-custom-heading h4,
.w-custom-heading h5,
.w-custom-heading h6 {
    margin-bottom: 0;
}

/*==================================
DONUT CHART & HALF DONUT CHART
/*==================================*/
.w-donut-chart {
    position:relative;
    overflow:hidden;
    display:block;
    margin:auto;
}

.w-donut-chart h3, 
.w-donut-chart span {
    width: 100%;
    position: absolute;
    z-index: 10;
    text-align: center;
    display: inline-block;
    left: 0;
}

.w-donut-chart h3 {
    font-size: 18px;
    margin-top: 50px;
    top: 38%;
    font-weight: normal;
}

.w-donut-chart span {
    font-size: 46px;
    line-height: 46px;
    top: 35%;
    color: #333;
}

.w-donut-chart span i {
    display:inline-block;
    line-height:inherit;
}

.w-donut-chart span i.typcn,
.w-donut-chart i[class^="linecons-"] {
    font-size:56px;
} 

.w-donut-chart canvas {
    position: relative;
    z-index: 9;
}

.w-half-donut-chart {
    text-align:center;
    margin-bottom:30px;
}

.w-half-donut-chart span {
    bottom: 0;
    top: auto;
    line-height: 1.3;
}

.w-half-donut-chart .w-content >  h3 {
    margin: 15px 0 10px;
    font-size: 22px;
    font-weight: 400;
}

/*==================================
TABS
/*==================================*/
.w-tab {
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s; 
    transition: opacity 0.3s; 
}

.w-tab.active {
    position: relative;
    z-index: 10;
    opacity: 1;
}

.w-tabs .w-tabs-nav {
    list-style: none;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.w-tabs .w-tabs-nav li {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background:#fff;
    padding: 0;
    overflow:hidden;
}

.w-tabs .w-tabs-nav li.active {
    background: #4195f7;
}

.w-tabs-nav h3 {
    text-align: center;
    font-size: 17px;
    margin-bottom:0;
}

.w-tabs .w-tabs-nav li a {
    display: block;
    padding: 10px 15px;
    color:#666;
}

.w-tabs .w-tabs-nav li:hover a {
    color: #000;
}

.w-tabs .w-tabs-nav li.active a {
    color: #fff;
}

.w-tab-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-transition: min-height 0.3s;
    transition: min-height 0.3s;
}

.w-tabs .w-tab-wrapper {
    margin-top:-7px;
}

.w-tabs .w-tab-wrapper .w-tab{
    padding:20px;
    border:1px solid rgba(0, 0, 0, 0.1);
    background:#fff;
}

.w-tab .w-tab-content {
    text-align: left;
}

/*==================================
ICON TABS
/*==================================*/
.w-icon-tabs {
    text-align:center;
}

.w-icon-tabs .w-tabs-nav {
    list-style:none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.w-icon-tabs .w-tabs-nav li {
    display: inline-block;
    margin: 0px 5px 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d2d8d6;
    -webkit-transition: border-color 0.3s, background 0.3s;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.w-icon-tabs .w-tabs-nav li.active {
    border-color:#4195f7;
    background: #4195f7;
}

.w-icon-tabs .w-tabs-nav li a {
    display: block;
    width: 80px;
    height: 80px;
    line-height: 75px;
    font-size: 40px;
    color: #d2d8d6;
}

.w-icon-tabs .w-tabs-nav li:hover a {
    color: #555;
}

.w-icon-tabs .w-tabs-nav li.active a {
    color: #fff;
    border-color:#4195f7;
}

.w-icon-tabs .w-tab .w-text-block,
.w-tabs .w-text-block,
.w-tour .w-text-block {
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: translate3d(0,20%,0);
    transform:translate3d(0,20%,0);
    opacity: 0;
}

.w-icon-tabs .w-tab.active .w-text-block,
.w-tabs .active .w-text-block,
.w-tour .active .w-text-block {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
}

.w-icon-tabs .w-tab .w-text-block {
    margin: 20px 0;
}

.w-tab-icon .w-tab-content {
    margin-top: 20px;
}
/*==================================
TOUR
/*==================================*/
.w-tour .w-tabs-nav {
    list-style:none;
    margin:0;
}

.w-tour .w-tabs-nav li {    
    clear:both;
    float:none;
    margin-bottom:5px;
}

.w-tour .w-tabs-nav li a {
    display: block;
    padding: 10px;
    text-overflow: ellipsis;
    border: 1px solid rgba(0,0,0,0.1);
    color: #666;
}

.w-tour .w-tabs-nav li:hover a {
    color: #000;
}

.w-tour .w-tabs-nav li.active {
    background: #4195f7;
}

.w-tour .w-tabs-nav li.active a {
    color: #fff;
}

.w-tour .w-tabs-nav h3 {
    margin-bottom:0;
}

/*==================================
COUNTER BOX
/*==================================*/
.w-counter-box {
    margin:0 auto;
    position: relative;
}

.w-counter-box > span {
    display: block;
    
    font-size: 34px;
    line-height: 34px;
}

.w-counter-box .counter-title {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #555;
}

.w-counter-box .counter-title span {
    display: block;
    width: 20px;
    height: 2px;
    background: #4195f7;
    position: absolute;
    left: 50%;
    top: -18px;
    margin-left: -10px;
}

.w-counter-box .counter-value {
    font-size:60px;
    line-height: 60px;
    font-weight: normal;
    display: block;
    color: inherit;
    margin: 0;
    color: #222;
}

.w-counter-box.w-1 {
    text-align: center;
}

.w-counter-box.w-1 span {
    margin-bottom: 15px;
    text-align: center;
}

.w-counter-box.w-1 .counter-title {
    text-transform: none;
    padding:0 10px;
    white-space: normal;
    margin-top: 36px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
}

.w-counter-box.w-2 span {
    display: inline-block;
    vertical-align: middle;
    font-size: 38px;
    line-height: 38px;
}

.w-counter-box.w-2 .counter-value {
    display: inline-block;
    vertical-align: middle;
    font-size: 40px;
    line-height: 40px;
    margin: 0 8px 0 5px;
}

.w-counter-box.w-2 .counter-title span {
    display: none;
}

/*==================================
PRICING BOX
/*==================================*/
.w-pricing-box {
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
    color:#333;
}

.w-section.full .w-pricing-box {
    margin: 20px;
}

.w-pricing-box .box-header {
    position: relative;
    border-color: #181818;
    text-align: center;
}

.w-pricing-box .box-header.with-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.w-pricing-box .box-header svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.w-pricing-box .box-header svg > * {  
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.w-pricing-box .box-header svg > polygon:last-child {
    fill: #fff;
}

.w-pricing-box .box-header .w-background {
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    opacity:0.5;
    background: #333;
}

.w-pricing-box .w-header {
    padding:30px 0 10px;
    background: #fff;
    text-align: center;
}

.w-pricing-box .w-header:after {
    border-bottom: 1px dotted #c3c3c3;
    width: 15%;
    content: '';
    height: 1px;
    display: block;
    margin: 20px auto 0;
}

.w-pricing-box .box-button {
    text-align: center;
}

.w-pricing-box .w-header h3 {
    font-size: 1.875em;
    margin: 0 0 5px;
    color: inherit;
}

.w-pricing-box .w-header h4 {
    font-size: 0.875em;
    text-transform: uppercase;
    margin:0;
    color: #333;
}

.w-pricing-box .box-price {
    padding: 60px 0 95px;
    position: relative;
}

.w-pricing-box .box-price span {
    color: #fff;
}

.w-pricing-box .box-price h5 {
    font-size: 50px;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 0;
    color: #fff;
}

.w-pricing-box.w-featured .box-price h5 {
    font-size: 70px;
    line-height: 70px;
}   

.w-pricing-box .box-price sup {
    font-size:20px;
}

.w-pricing-box .box-content {
    color:#333;
    background:#fff;
    padding:15px 10px 30px;
}

.w-pricing-box .box-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.w-pricing-box .box-content ul li,
.w-pricing-box .box-content p {    
    padding: 8px 0;
    margin-bottom: 0;
}

.w-pricing-box .box-button {
    background-color:inherit;
}

.w-pricing-box .box-button a {
    display: block;
    padding: 25px 20px;
    margin: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color:#fff;
    overflow:hidden;
}

.w-pricing-box .box-button a:hover {
    background-color:#000;
}

/* Featured */
.w-pricing-box.w-featured .box-price {
    padding: 70px 0 110px;
}

.w-pricing-box.w-featured .box-price h4 {
    font-size: 70px;
    line-height: 70px;
}

.w-pricing-box.w-featured .box-content {
    padding-top:15px;
}

.w-pricing-box.w-featured .box-price:after {
    margin-top:30px;
}

/*==================================
TOGGLE
/*==================================*/

.w-toggle > h3 {
    position: relative;
    cursor: pointer;
    padding: 5px 50px 5px 10px;
    margin: 0 0 5px;
    font-size: 18px;
    color: inherit;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    border-bottom: 1px solid;
    border-color: inherit;
    line-height: 30px;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #666;    
}

.w-toggle:hover > h3 {
    color: #000;
}

.w-toggle > h3:after {
    font-family: 'aoraki';
    content: '\e838';
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    line-height: 40px;
    width: 20px;
    background-color: #4195f7;
    padding: 0 10px;
    text-align: center;
    color: #fff;
}

.w-toggle.active > h3:after {
    content: '\e839';
}

.w-toggle > div {
    padding: 10px 0 20px;
    display: none;
    overflow: hidden;
}

.w-toggle.active > div {
    display: block;
}

.w-toggle.active > h3,
.w-text-light .w-toggle.active > h3 {
    color: #4195f7;
}

.w-toggle > div > p {
    margin-bottom: 0;
}

/*==================================
ACCORDION
/*==================================*/
.w-accordion-tab {
    margin-bottom: 5px;
}
    
.w-accordion .acd-header {
    margin: 0;
    line-height: 38px;
    border: 1px solid #e6e6e6;
    font-size: 1em;
    cursor:pointer;
    color:#666;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.w-accordion .w-accordion-tab:hover .acd-header {
    color:#222;
}

.w-accordion .active .acd-header,
.w-accordion .active:hover .acd-header,
.w-text-light .w-accordion .active .acd-header,
.w-text-light .w-accordion .active:hover .acd-header {
    color: #4195f7; 
}

.w-accordion .acd-header span {
    display: block;
    margin: 0 50px 0 10px;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;       
}

.w-accordion .acd-header i {
    font-size: 16px;
    float: left;
    padding:0 10px;
}

.w-accordion .acd-header:after {
    font-family: 'aoraki';
    content: '\e838';
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    line-height: 40px;
    width: 20px;
    background-color: #4195f7;
    padding: 0 10px;
    text-align: center;
    color: #fff;
}

.w-accordion .w-accordion-tab.active .acd-header:after {
    content: '\e839';
}

.w-accordion .acd-content {
    padding: 10px 0 20px;
    display: none;
    overflow: hidden;
}

.w-accordion .acd-content > p {
    margin-bottom: 0;
}

/*==================================
PROGRESS BAR
/*==================================*/
.w-progress-bar {
    margin-bottom: 30px;
    border-color: #211f1e;
    color:#211f1e;
}

.w-progress-bar h4 {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    text-align: left;
    padding-bottom: 2px;
}

.w-progress-bar .w-counter {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: right;
}

.w-progress-bar .w-bar-wrapper {
    height: 6px;
    overflow: hidden;
    background-color: rgba(0,0,0,0.07);
}

.w-progress-bar .w-bar {
    position: relative;
    display: block;
    height: 100%;
    background: #211f1e;
    -ms-transform: translateX(-100%);
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
    -webkit-transition: -webkit-transform 1.5s;
    transition: transform 1.5s;
}

/*==================================
INFO BOX
/*==================================*/
.w-info-box {
    position: relative;
}

.w-info-box .w-icon {
    display: inline-block;
    font-size: 24px;
    color: #4195f7;
    font-weight:normal;
    margin-bottom: 20px;
}

.w-info-box .w-icon i {
    display: inline-block;
    padding: 0 1px;
}

.w-info-box .w-content > .info-title {
    text-transform: capitalize;
    font-weight: bold;
    line-height: 1.3;
    position: relative;
    margin-bottom: 5px;
}

.w-info-box:not(.w-large).w-top .w-content > .info-title {
    margin-bottom: 20px;
}

.w-info-box:not(.w-large).w-top .w-content > .info-title:after {
    content: '';
    height: 1px;
    width: 20px;
    display: block;
    background: #999;
    position: relative;
    left: 50%;
    margin-left: -10px;
    margin-top: 20px;
}

.w-info-box h3 {
    font-weight: normal;
}

.w-info-box .w-content p {
    margin-bottom: 0;
}

.w-info-box .w-read-more {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    margin-top: 15px;
}

/* Align Left*/
.w-info-box.w-left {
    text-align:left;
}

.w-info-box.w-left .w-icon {
    float: left;
    margin-top: 5px;
}

.w-info-box.w-left .w-content {
    margin-left:45px;
}

.w-info-box.w-left.w-circle .w-content {
    margin-left:85px;
}

.w-info-box.w-medium.w-left .w-content {
    margin-left:110px;
}

.w-info-box.w-medium.w-left.w-circle .w-content {
    margin-left:135px;
}

/* Align right */
.w-info-box.w-right {
    text-align:right;
}

.w-info-box.w-right .w-icon {
    float: right;
    margin-top: 5px;
}

.w-info-box.w-right .w-content {
    padding-right: 45px;
}

.w-info-box.w-right.w-circle .w-content {
    padding-right: 85px;
}

.w-info-box.w-medium.w-right .w-content {
    padding-right: 110px;
}

.w-info-box.w-medium.w-right.w-circle .w-content {
    padding-right: 135px;
}

/* Small Icon */
.w-info-box.w-small:not(.w-left):not(.w-right) {
    text-align: center;
}

.w-info-box.w-small:not(.w-top).w-none .w-icon {
    min-width:28px;
    margin-bottom: 10px;
}

.w-info-box:not(.w-top).w-none .w-icon {
    line-height:1;
}

.w-info-box.w-small.w-top.w-none .w-icon {
    font-size:40px;
}

.w-info-box.w-small.w-left .w-icon {
    margin-right: 15px;
}

.w-info-box.w-small.w-right .w-icon {
    margin-left: 15px;
}

.w-info-box.w-small:not(.w-top) .w-read-more,
.w-info-box.w-small.w-circle:not(.w-top) .w-read-more {
    margin-top: 20px;
}

/* Medium Icon */
.w-info-box.w-medium:not(.w-left):not(.w-right) {
    text-align: center;
}

.w-info-box.w-medium .w-icon {
    font-size: 60px;
    margin: 0 auto 25px;
    line-height: 110px;
}

.w-info-box.w-medium.w-none .w-icon {
    width:90px;
    text-align:center;
    margin:0 0 25px;
}

.w-info-box.w-medium.w-top.w-none .w-icon {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 20px;
}


/* Large Icon */
.w-info-box.w-large {
    margin:0 20px;
    padding: 20px 0 20px;
}

.w-info-box.w-large .w-icon {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.w-info-box.w-large .w-content {
    -webkit-transition: -webkit-transform .3s ease, opacity .3s ease;
    transition: transform .3s ease, opacity .3s ease;
}

.w-info-box.w-large .w-content > .info-title:not(.subheading) {
    -webkit-transition: .3s all .2s ease;
    transition: .3s all .2s ease;
    margin-bottom: 15px;
}

.w-info-box.w-large .w-content p:not(.w-read-more) {
    margin-bottom: 15px;
}

.w-info-box.w-large .w-read-more > a {
    display: block;
    color: #555;
    opacity: 0.7;
    margin-bottom: 10px;
}

.w-info-box.w-large .w-read-more:hover > a {
    opacity: 1;
}

/* Circle style */
.w-info-box.w-circle .w-icon {
    width: 60px;
    height: 60px;
    color: #fff;
    background-color: #4195f7;
    border-color: #4195f7;
    border-radius: 50%;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.3);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.w-info-box.w-left.w-circle .w-icon,
.w-info-box.w-right.w-circle .w-icon {
    padding:0;
}

.w-info-box.w-medium.w-circle .w-icon {
    width: 110px;
    height: 110px;
    font-size: 50px;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
}

.w-info-box.w-medium:not(.w-top).w-circle .w-icon {
    margin-top:5px;
}

.w-info-box.w-small.w-circle .w-icon i{
    line-height:58px;
}

.w-info-box.w-medium.w-circle .w-icon i {
    line-height: 85px;
}
/*==================================
PORTFOLIO GRID
/*==================================*/
.w-portfolio-grid {
    text-align: center;
}

/* Filter */
.w-filter {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: center;
}

.w-filter li {    
    display: inline-block;
    margin: 10px 10px;
}

.w-filter li a {
    color:#999;
    display:inline-block;
    vertical-align:middle;
    padding: 0 10px;
}

.w-filter li:hover a {
    color:#063a93;
}

.w-filter li.active a {
    color: #000;
}

/* View */
.w-item-wrapper {
    padding: 0;
}

.w-view {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}

.w-item {   
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
}

.w-item > figure {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    background: transparent;
    text-align: center;
    height: 100%;
    -webkit-transition: background 0.35s;
    transition: background 0.35s;
}

.w-item div.cover-image{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 100%;
    background-size: cover;
}

.w-item > figure img {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

.w-item > figure figcaption {
    padding: 20px;
    color: #fff;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.w-item > figure figcaption::before,
.w-item > figure figcaption::after {
    pointer-events: none;
}

.w-item > figure figcaption,
.w-item > figure > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Grid Layout */
.w-grid.w-space .w-view {
    margin-right: -16px;
}

.w-section.w-full .w-grid.w-space .w-view {
    margin-left: 0;
    margin-right: -16px;
}

.w-grid.w-space .w-item {
    padding: 0 16px 16px 0;
}

/* Masonry */
.w-portfolio-grid.w-masonry img.cover-image{
    opacity: 1;
    width: 100%;
    height: 100%;
}

/* Photoset */
.w-portfolio-grid.w-photoset .w-view {
    margin-right: -20px;
}

.w-section.w-full .w-portfolio-grid.w-photoset .w-view {
    margin-left: 20px;
    margin-right: 0;
}

.w-portfolio-grid.w-photoset .w-item {
    padding: 0 20px 20px 0;
    height: auto;
}

.w-portfolio-grid.w-photoset .w-item.w-h2{
    height: auto;
}

.w-photoset .w-item > figure {
    background: transparent;
    text-align: left;
}

.w-photoset .w-item > figure:hover {
    z-index: 10;
}

.w-photoset .w-item .post-media {
    height: 200px;
    position: relative;
}

.w-photoset .w-item .post-media .w-gallery{
    position: relative;
    height: 100%;
}

.w-photoset .w-item .post-media .w-gallery a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.w-photoset .w-item.w-h2 .post-media {
    height: 300px;
}

.w-photoset.grid-2-cols .w-item .post-media {
    height: 380px;
}

.w-photoset.grid-2-cols .w-item.w-h2 .post-media {
    height: 600px;
}

.w-photoset.grid-3-cols .w-item .post-media {
    height: 300px;
}

.w-photoset.grid-3-cols .w-item.w-h2 .post-media {
    height: 450px;
}

.w-section.w-full .w-photoset .w-item .post-media {
    height: 300px;
}

.w-section.w-full .w-photoset .w-item.w-h2 .post-media {
    height: 450px;
}

.w-section.w-full .w-photoset.grid-2-cols .w-item .post-media {
    height: 420px;
}

.w-section.w-full .w-photoset.grid-2-cols .w-item.w-h2 .post-media {
    height: 650px;
}

.w-section.w-full .w-photoset.grid-3-cols .w-item .post-media {
    height: 350px;
}

.w-section.w-full .w-photoset.grid-3-cols .w-item.w-h2 .post-media {
    height: 580px;
}

.w-photoset .w-item .cover-image a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.w-photoset .w-item figcaption {
    height: auto;
    padding: 0 0 20px;
    text-align: left;
    position: relative;
    color: inherit;
}

.w-portfolio-grid.w-masonry.w-photoset .w-item figcaption,
.w-portfolio-grid.w-masonry.w-photoset .w-item figcaption h3,
.w-portfolio-grid.w-masonry.w-photoset .w-item figcaption p {
    position: relative;
    opacity: 1;
    color: inherit;
}

.w-photoset .w-item figcaption .entry-title {
    font-size: 26px;
    line-height: 28px;
    max-height: none;
    margin-bottom: 0;
    color: inherit;
    padding:10px 0 0; 
    position: relative;
    opacity: 1;
    color: inherit;
}

.w-photoset .w-item figcaption p {
    padding: 5px 0;
    max-height: none;
    position: relative;
    opacity: 1;
    color: inherit;
}

.w-photoset .w-item figcaption h3 a{
    color: #000;
}

/* Portfolio Hover Effect */
.w-item > figure .entry-title {
    color: #fff;
    text-transform: capitalize;
    font-weight: 800;
    overflow: hidden;    
    font-size: 22px;
    line-height: 28px;
    max-height: 56px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.w-item > figure p {
    opacity: 0;
    margin: 0;
    overflow:hidden;
    max-height: 20px;
    letter-spacing: 1px;
    font-size: 68.5%;
    text-transform: capitalize;
}

.w-item > figure > a {
    z-index: 50;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.w-item > figure > span {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 200;
    opacity: 0;
    padding: 0;
    text-align: left;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
}

.w-item > figure > span > a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 22px;
    text-align: center;
    color: #fff;
    background:  rgba(255, 255, 255, 0.4);
    opacity: 0.5;
}

.w-item > figure > span > a:before {
    font-family:'aoraki';
    content:'\e82c';
}

.w-item > figure > span > a:hover {
    opacity: 1;
}

.w-portfolio-grid .w-showmore {
    display: block;
    text-align: center;
}

.w-portfolio-grid .w-showmore a{
    display: inline-block;
    padding: 40px 0;
}

/*==================================
HEADING    
/*==================================*/
.w-heading .heading-title {  
    margin-bottom: 0;
}

.w-heading .subheading {
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0;
    line-height: 1.5;
}

.w-heading.heading-1 .heading-title {
	letter-spacing: 3px;
    font-weight: normal!important;
    margin: 15px 0 5px;
    line-height: 1.3;
}

.w-heading.heading-1:after {
    content: "";
    width: 20px;
    height: 3px;
    background: #333;
    display: inline-block;
}

.w-heading.heading-2 .subheading {
    font-weight: bold;
    letter-spacing: 0;
    padding: 0 15px;
    margin-left: 2px;
    border-left: 1px solid #333;
}

.w-heading.heading-2.text-center .subheading {
	border-left: none;
}

.w-heading.heading-2.text-center:after {
    content: "";
    width: 20px;
    height: 1px;
    background: #333;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.w-heading.heading-2.text-right .subheading {
    margin-right: 0 0 0 2px;
    border-left: none;
    border-right: 1px solid #333;
}

.w-heading.heading-3 .w-wrapper {
    padding: 25px 60px 100px 25px;
    border: 5px solid #333;
    display: block;
}

.w-heading.heading-3.text-center .w-wrapper {
    padding: 25px 40px 100px;
}

.w-heading.heading-3.text-right .w-wrapper {
    padding: 25px 25px 100px 60px;
}

.w-heading.heading-3 .heading-title {
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1.1;
    word-break: break-word;
}

.w-heading.heading-3 .subheading {
    font-weight: normal!important;
}

.w-heading.heading-4 .w-wrapper {
    position: relative;
}

.w-heading.heading-4 .heading-title {
    line-height: 1.2;
}

.w-heading.heading-4 .w-wrapper > .heading-dropcap {
    position: absolute;
    top: -50px;
    left: 0;
    margin-left: 0;
    opacity: 0.15;
    display: inline-block;
    margin-right: auto;
    min-width: 90px;
    font-size: 6.25em;
    color: #444;
}

.w-heading.heading-4.text-center .w-wrapper > .heading-dropcap {
    margin-left: -45px;
    left: 50%;
}

.w-heading.heading-4.text-right .w-wrapper > .heading-dropcap {
    left: auto;
    right: 0;
    margin-left: 0;
}

.w-heading.heading-4 .subheading {
    font-weight: bold;
}

.w-heading.heading-5,
.w-heading.heading-6 {
    padding-bottom: 10px;
    display: table;
    width: 100%;
}

.w-heading.heading-5 .w-wrapper,
.w-heading.heading-6 .w-wrapper {
    display: table-row;
}

.w-heading.heading-6 .heading-title {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    padding-right: 15px;
    border-right: 1px solid #333;
    width: 95%;
    font-weight: bold;
    letter-spacing: 0;
}

.w-heading.heading-6 .subheading {
    display: table-cell;
    vertical-align: top;
    padding-left: 18px;
    width: 5%;
    font-size: 18px;
    color: #333;
}

.w-heading.heading-5 .heading-title {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding-left: 15px;
    border-left: 1px solid #333;
    width: 95%;
    font-weight: bold;
    letter-spacing: 0;
}

.w-heading.heading-5 .subheading {
    display: table-cell;
    vertical-align: top;
    padding-right: 15px;
    width: 5%;
    font-size: 18px;
    color: #333;
}

.w-heading.heading-7 .w-wrapper {
    border-left: 4px solid #999;
    padding: 0 20px;
    display: inline-block;
}

.w-heading.heading-7.text-right .w-wrapper {
	border-left: none;
    border-right: 4px solid #999;
}

.w-heading.heading-7.text-center .w-wrapper {
	border: none;
}

.w-heading.heading-7.text-center h2:before,
.w-heading.heading-7.text-center h2:after {
    content: '';
    width: 10px;
    height: 3px;
    border-radius: 3px;
    background-color: #999;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 10px 0;
}

.w-heading.heading-7 .heading-title {
    font-weight: 300;
}

.w-heading.heading-7 .subheading {
    color: #999;
    font-weight: normal!important;
}

.w-heading.heading-9 .heading-title {
    margin-bottom: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.w-heading.heading-9 .heading-title:after,
.w-heading.heading-9 .heading-title:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 22px;
    margin: -11px 0 0;
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0,0,0,.1), rgba(0,0,0,.1) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0,0,0,.1), rgba(0,0,0,.1) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0,0,0,.1), rgba(0,0,0,.1) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0,0,0,.1), rgba(0,0,0,.1) 1px, transparent 1px, transparent 100%);
    -webkit-background-size: 3px 3px;
    -moz-background-size: 3px 3px;
    background-size: 3px 3px;

}

.w-heading.heading-9.text-right .heading-title:before {
    position: absolute;
    width: 100%;
    margin-left: -100%;
    display: inline-block;
    vertical-align: middle;
}

.w-heading.heading-9.text-center .heading-title:before {
    width: 50%;
    margin-left: -50%;
    display: inline-block;
    vertical-align: middle;
}

.w-heading.heading-9.text-center .heading-title:after {
    width: 50%;
    margin-right: -50%; 
    display: inline-block;
    vertical-align: middle;  
}

.w-heading.heading-9.text-right .heading-title:after,
.w-heading.heading-9 .heading-title:before {
    display: none;
}

.w-heading.heading-9 h1.heading-title:after,
.w-heading.heading-9 h1.heading-title:before {
    height: 32px;
    margin-top: -16px;
}

.w-heading.heading-9 h2.heading-title:after,
.w-heading.heading-9 h2.heading-title:before {
    height: 28px;
    margin-top: -14px;
}

.w-heading.heading-9 h3.heading-title:after,
.w-heading.heading-9 h3s.heading-title:before {
    height: 26px;
    margin-top: -13px;
}

.w-heading.heading-9 h4.heading-title:after,
.w-heading.heading-9 h4.heading-title:before {
    height: 24px;
    margin-top: -12px;
}

.w-heading.heading-9 .heading-title span {
    padding: 0 10px 0 0;
    display: inline-block;
}

.w-heading.heading-9.text-center .heading-title span { 
    padding: 0 10px;
}

.w-heading.heading-9.text-right .heading-title span {
    padding: 0 0 0 10px;
}

.w-heading.heading-10 .w-wrapper {
    position: relative;
}

.w-heading.heading-10 .heading-title {
    line-height: 1;
}

.w-heading.heading-10 .subheading {
    color: #000;
    font-weight: bold;
    opacity: 0.4;
    padding-top: 10px;
}

.w-heading.heading-10:after {
    content: '';
    width: 25px;
    height: 3px;
    margin-top: 30px;
    background-color: #4195f7;
    display: inline-block;
}

.w-heading.heading-11 .w-wrapper {
    position: relative;
}

.w-heading.heading-11 .heading-title {
    line-height: 1;
    margin-bottom: 5px;
}

.w-heading.heading-11 .subheading {
    color: #000;
    opacity: 0.4;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 10px;
}

.w-heading.heading-11:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 80px;
    background: #000;
    margin: 0 auto;
    opacity: 0.15;
}

/*==================================
SINGLE IMAGE
/*==================================*/
.w-image{
    border-color: #eee;
    line-height: 0;
    overflow: hidden;
}

.w-image img {
    line-height: 0;
    display: inline-block;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
}

/* Border */
.w-border img {
    border-width: 1px;
}

/* Outline */
.w-outline img {
    padding: 4px;
    border-width: 1px;
}

/* Shadow */
.w-shadow img {
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

/* Round */
.w-round img {
    border-radius: 10px;
}

/* Round Border */
.w-round-border img {
    border-radius: 10px;
    border-width: 1px;
}

/* Round Outline */
.w-round-outline img {
    padding: 4px;
    border-radius: 10px;
    border-width: 1px;
}

/* Round Shadow */
.w-round-shadow img {
    border-radius: 10px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

/* Circle */
.w-circle img {
    border-radius: 50%;
}

/* Circle Border */
.w-circle-border img {
    border-radius: 50%;
    border-width: 1px;
}

/* Circle Outline */
.w-circle-outline img {
    padding: 4px;
    border-radius: 50%;
    border-width: 1px;
}

/* Circle Shadow */
.w-circle-shadow img {
    border-radius: 50%;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

/*==================================
ICON BLOCK
/*==================================*/
.w-icon-block {
    display: inline-block;
    vertical-align: middle;
    font-size: 50px;
    margin: 0 5px 5px;
    margin-bottom: 10px;
    width: 90px;
    height: 90px;
    line-height: 85px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
    background: #4195f7;
    border: 2px solid #4195f7;
}

.w-icon-block.w-small {
    width: 30px;
    height: 30px;
    line-height: 26px;
    font-size: 16px;
}

.w-icon-block.w-medium {
    width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 26px;
}

.w-icon-block.w-large {
    width: 100px;
    height: 100px;
    line-height: 96px;
    font-size: 50px;
}

.w-icon-block.w-none {
    cursor: default;
    background: none;
    border: none;
    left: 0;
    top: 0;
    color: inherit;
    width: auto;
    height: auto;
}

.w-icon-block.w-none.w-small {
    font-size: 22px;
}

.w-icon-block.w-none.w-medium {
    font-size: 50px;
}

.w-icon-block.w-none.w-large {
    font-size: 100px;
}

.w-icon-block i,
.w-icon-block i:hover,
.w-icon-block:hover i {
    position: relative;
    color: inherit;
    display: inline-block;
    -webkit-transition: none;
    transition: none;
}

.w-icon-block.w-none a > i {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}  

.w-icon-block.w-none:hover a > i {
    color: #333;
}

.w-icon-block .w-border {   
    pointer-events: none;
    position: absolute;
    left: -2px;
    top: -2px;
    width: 100%;
    height: 100%;
    border: 2px solid #4195f7;
    -webkit-box-sizing: content-box; 
    -moz-box-sizing: content-box; 
    box-sizing: content-box;
}

.w-icon-block.w-circle,
.w-icon-block.w-circle .w-border {
    border-radius: 50%;
}

.w-icon-block a {
    color:inherit;
    -webkit-transition:none;
    transition:none;
    display: inline-block;
}

/* Effect 1 */
.w-effect-1 {
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.w-effect-1:hover i,
.w-effect-1:hover a i {
    color:#fff;
}

.w-effect-1 .w-border {
    top: -6px;
    left: -6px;
    padding: 4px;
    background: none!important;
    opacity: 0;
    -ms-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}

.w-effect-1:hover .w-border {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    opacity: 1;
}

/* Effect 2 */
.w-effect-2 {
    background:none!important;
}

.w-effect-2 .w-border {
    top: -2px;
    left: -2px;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}

.w-effect-2:hover .w-border {
    opacity: 0;
    -ms-transform: scale(0,0);
    -webkit-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
}


/* Effect 3 */
.w-effect-3 {
    background:none!important;
}

.w-effect-3 .w-border {
    top: -2px;
    left: -2px;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
    transition: transform 0.2s, opacity 0.3s;
}

.w-effect-3:hover .w-border {
    -ms-transform: scale(1.3,1.3);
    -webkit-transform: scale(1.3,1.3);
    transform: scale(1.3,1.3);
    opacity:0;
}

/* Effect 4 */
.w-effect-4 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-4 .w-border {
    display: none;
}

.w-effect-4:hover {
    background: none!important;
}

.w-effect-4:hover i {
    -webkit-animation: tRightfLeft 0.3s forwards;
    animation: tRightfLeft 0.3s forwards;
}

@-webkit-keyframes tRightfLeft {
    49% {
        -webkit-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes tRightfLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes tTopfBottom {
    49% {
        -webkit-transform: translateY(-30%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(50%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes tTopfBottom {
    49% {
        transform: translateY(-30%);
    }
    50% {
        opacity: 0;
        transform: translateY(50%);
    }
    51% {
        opacity: 1;
    }
}

/* Effect 5 */
.w-effect-5 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-5 .w-border {
    display: none;
}

.w-effect-5:hover {
    background: none!important;
}

.w-effect-5:hover i {
    -webkit-animation: toLeftFromRight 0.3s forwards;
    animation: toLeftFromRight 0.3s forwards;
}

@-webkit-keyframes toLeftFromRight {
    49% {
        -webkit-transform: translate(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toLeftFromRight {
    49% {
        transform: translate(-100%);
    }
    50% {
        opacity: 0;
        transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}

/* Effect 6 */
.w-effect-6 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-6 .w-border {
    display: none;
}

.w-effect-6:hover {
    background: none!important;
}

.w-effect-6:hover i {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

/* Effect 7 */
.w-effect-7 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-7 .w-border {
    display: none;
}

.w-effect-7:hover {
    background: none!important;
}

.w-effect-7:hover i {
    -webkit-animation: toBottomFromTop 0.3s forwards;
    animation: toBottomFromTop 0.3s forwards;
}

@-webkit-keyframes toBottomFromTop {
    49% {
        -webkit-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }
    50% {
        opacity: 0;
        transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

/*==================================
TESTIMONIAL SLIDER
/*==================================*/
.w-testimonials-slider {
    position:relative;
    margin-bottom: 30px;
    text-align: center;
}

.w-testimonial:before {
    font-family: 'aoraki';
    content: '\e80f';
    font-size: 90px;
    line-height: 70px;
    color: #4195f7;
    position: absolute;
    opacity: 0.3;
    top: 0;
    left: 50%;
    margin-left: -45px;
    width: 90px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.w-testimonials-slider .w-border {
    width: 140px;
    height: 140px;
    padding: 5px;
    margin:20px auto 25px;
    background: #4195f7;
    border-radius: 50%;
}

.owl-carousel .owl-item .w-testimonial .w-border > img {
    width: 130px;
    height: 130px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: none;
    max-width: none;
}

.w-testimonial .w-customer h3 {
    margin-bottom: 10px;
    font-size: 1.25em;
}

.w-testimonial .w-customer h4 {
    margin-bottom: 40px;
    font-size: 0.875em;
}

.w-testimonial .w-customer a:hover {
    color:#333;
}

.w-testimonial .w-content{
    position: relative;
    min-height: 60px;
    font-size:16px;
    color: #333;
    padding:10px 20px;
}

.w-testimonials-slider .owl-nav {
    position: absolute;
    top: auto;
    bottom: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    width: 101px;
    left: 50%;
    margin-left: -50px;
}

.w-testimonials-slider .owl-nav > button {
    background: rgba(0,0,0,0.05);
    text-shadow: none;
}

.w-testimonials-slider .owl-nav .owl-next {
    left: 51px;
}

.w-testimonials-slider .owl-nav .owl-prev:before {
    content: '\e842';
}

.w-testimonials-slider .owl-nav .owl-next:before {
    content: '\e843';
}

.w-testimonials-slider .owl-dot {
    margin: 0;
}

/*==================================
TEAM MEMBER
/*==================================*/
.w-team-slider .w-grid-layout {
    margin-right: -20px;
}

.w-team-slider .team-member {
    position: relative;
    display: block;
}

.w-team-slider .w-grid-layout .w-member {
    position: relative;      
    margin: 0 20px 20px 0;
}  

.w-team-slider .w-grid-layout .team-member:hover .w-member {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.3);
    -webkit-transition: box-shadow 0.35s, box-shadow 0.35s;
    transition: box-shadow 0.35s, box-shadow 0.35s;
}

.w-team-slider .owl-carousel .team-member {
    overflow:hidden;
}

.w-team-slider .cover-image {
    display: block;
    text-align: center;
    color:#000;
}

.w-team-slider .w-grid-layout .cover-image img {
    width: 100%;
    max-width: none;
    vertical-align: bottom;
}

.w-team-slider .member-name {
    text-align: center;
    padding: 20px 0;
    background: #fff;
}

.w-team-slider .member-name h3,
.member-content .member-detail h3 {
    margin-bottom: 5px;
    font-size: 1.25em;
}

.w-team-slider .member-name h4,
.member-content .member-meta {
    color: inherit;
    font-size: 0.875em;
    font-weight: normal;
    margin-bottom: 0;
    color: #4195f7;
}

.member-detail .social-link a {
    padding: 5px 10px;
    min-width: 30px;
    font-size: 18px;
    display: inline-block;
    opacity: 0.7;
}

.member-detail .social-link a:first-child {
    padding-left: 1px;
}

.w-team-slider .owl-nav > button {
    background:rgba(0, 0, 0, 0.40);
    color: #fff;
    font-size: 22px;
}

.w-team-slider .owl-nav > button:hover {
    color:#fff;
}

.w-team-slider .popup-content {
    display: none;
}

.member-content .w-close-button {
    position: absolute;
    z-index: 1;
    right: 0;
    height: 50px;
    width: 50px;
    color: #fff;
    background: #000;
}

.member-content .w-close-button:before {
    font-family: 'aoraki';
    content: '\e829';
    font-size: 30px;
    position: absolute;
    left: 50%;
    margin-left: -15px;
}

.member-content {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.member-detail .social-link {
    border-style: dashed;
    border-color: #e6e6e6;
    border-width: 1px 0;
    margin-top: 25px;
}

.member-content .member-detail {
    padding: 30px;
    height: 100%;
    overflow: hidden;
}

.member-content .member-detail .member-image {
    margin-bottom: 10px;
}

/*==================================
Clients Carousel
/*==================================*/
.w-clients-carousel .owl-nav > button {
    background: none;
    opacity: 0;
    width: 16px;
    font-size: 16px;
}

.w-clients-carousel:hover .owl-nav > button {
    opacity: 1;
}

.w-clients-carousel .owl-item {
    text-align: center;
}

.w-clients-carousel .owl-item img {
    width: auto;
    display: inline-block;
    opacity: 0.75;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.w-clients-carousel .owl-item:hover img {
    opacity: 1;
}

/*==================================
Clients Grid
/*==================================*/
.w-clients-grid {
    text-align: center;
}

.w-clients-grid ul {

}

.w-clients-grid ul li {
    border-bottom: 1px solid #dcdcdc;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.w-clients-grid ul li:last-child {
    border-bottom: none;
}

.w-clients-grid ul li span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    line-height: 0;
    text-align: center;    
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.w-clients-grid ul li img {
    display: inline-block;
}

/*==================================
ACTION BOX
/*==================================*/
.w-action-box {
    padding: 40px;
    text-align: center;
}

.w-action-box h3 {
    font-weight:bold;
    margin: 0;
}

.w-action-box .w-content h3 + p {
    margin-top: 10px;
}

.w-action-box .w-action-button {
    padding-top: 20px;
}


/*==================================
SECTION SEPARATOR 
/*==================================*/
.w-section-separator{
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.w-section-separator svg{
    position: absolute;
    z-index: 50;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
}

.w-section-separator.reflect-h svg {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.w-section-separator.w-bottom svg {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.w-section-separator.reflect-h.w-bottom svg {
    -webkit-transform: rotateX(180deg) rotateY(180deg);
    transform: rotateX(180deg) rotateY(180deg);
}

.w-section-separator.w-top svg {
    top: -78px;
}

/*==================================
SEPARATOR
/*==================================*/
.w-separator {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    line-height: 0;
}

.w-separator.text-left {
    margin-left: 0;
}

.w-separator.text-right {
    margin-right: 0;
}  

.w-separator .w-text {
    border-style: inherit;
    border-color: inherit;
    padding: 0 10px;
    font-size:20px;
    line-height: 20px;
    vertical-align: middle;
}

.w-separator.text-left .w-text {
    padding-left: 0;
}

.w-separator.text-right .w-text {
    padding-right: 0;
}

.w-separator .w-border-left,
.w-separator .w-border-right {
    display: inline-block;
    height: 1px;
    width: 50%;
    vertical-align: middle;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #e1e1e1;
}

.w-separator .w-border-left {
    left: -13px;
    margin-left: -50%;
}

.w-separator .w-border-right {
    left: 13px;
    margin-right: -50%;
}

 .w-separator.text-left .w-border-right,
.w-separator.text-right .w-border-left {
    width: 100%;
}

.w-separator.no-text .w-border-left {
    left: 0;
    width: 100%;
    margin:0;
}

.w-separator.no-text .w-text {
    font-size: 0;
    display: none;
}

.w-separator.w-style-double .w-border {
    border-width:1px 0 1px 0;
}

.w-separator.no-text .w-border-right {
    display:none;
}

/*==================================
IMAGE GALLERY
/*==================================*/
.w-image-gallery.w-masonry .w-view {
    margin-right: -20px;
}

.w-image-gallery.w-masonry .w-item {
    padding:0 20px 20px 0;
    width: 25%;
    height: 300px;
}

.w-image-gallery.w-masonry .w-item.w-w2 {
    width: 50%;
}

.w-image-gallery.w-masonry .w-item.w-h2 {
    height: 600px;
}

.w-image-gallery.w-masonry.w-layout-1 .w-item,
.w-image-gallery.w-masonry.w-layout-2 .w-item {
    height: 280px;
}

.w-image-gallery.w-masonry.w-layout-1 .w-item.w-h2,
.w-image-gallery.w-masonry.w-layout-2 .w-item.w-h2 {
    height: 400px;
}

.w-image-gallery.w-masonry.w-auto .w-item {
    height: auto;
}

.w-image-gallery .w-item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
}

.w-image-gallery .w-item .cover-image {
    width: 100%;
}

.w-image-gallery.w-masonry .w-item img.cover-image {
    opacity: 0;
}

.w-image-gallery.w-masonry .w-item div.cover-image {
    opacity: 1;
}

.w-image-gallery .w-effect-zoomIn .w-item .cover-image {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.w-image-gallery .w-effect-zoomIn .w-item:hover .cover-image {
    -ms-transform: scale(1.05,1.05);
    -webkit-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}

.w-image-gallery .w-effect-zoomOut .w-item .cover-image {
    -ms-transform: scale(1.05,1.05);
    -webkit-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.w-image-gallery .w-effect-zoomOut .w-item:hover .cover-image {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}

.w-image-gallery .w-effect-rotateZoomIn .w-item .cover-image {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.w-image-gallery .w-effect-rotateZoomIn .w-item:hover .cover-image {
    -ms-transform: scale(1.5,1.5) rotate(10deg);
    -webkit-transform: scale(1.5,1.5) rotate(10deg);
    transform: scale(1.5,1.5) rotate(10deg);
}

/*==================================
CAROUSEL
/*==================================*/
.w-carousel {
    position: relative;
    clear: both;
    float: none;
}

.w-carousel .owl-item{
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.w-carousel .owl-item.center{
    z-index: 99;
}

.w-carousel .owl-item {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
}

.w-carousel .owl-item:not(.center) {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
}

.w-carousel .owl-item .w-slide,
.w-carousel .owl-item .w-slide img{
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.w-carousel .owl-item .w-slide:after,
.w-carousel .owl-item .w-slide .w-heading,
.w-carousel .owl-item .w-slide .w-content{
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.w-carousel .owl-item.center .w-slide:after,
.w-carousel .owl-item.center .w-slide .w-heading,
.w-carousel .owl-item.center .w-slide .w-content{
    opacity: 1;
}

.w-carousel .owl-item .w-slide .w-heading,
.w-carousel .owl-item .w-slide .w-content{
    -webkit-transform: scale(0.8, 1);
    transform: scale(0.8, 1);
}

.w-slide .w-heading {
    position: absolute;
    top: 0;
}

.w-slide .w-content {
    padding: 20px;
    margin-top: -20px;
    text-align: center;
}

.w-carousel-dots .owl-dot {
    margin-top: 0;
}

.w-carousel-nav {
    display: none;
}

.w-carousel-dots {
    text-align: center;
}

/*==================================
PRODUCTS SLIDER
/*==================================*/
.w-products-slider .owl-carousel .w-item{
    width: 100%;
    padding: 0;
}

.w-products-slider .owl-carousel .owl-dots{
    position: absolute;
    z-index: 999;
    width: 100%;
}

.w-products-slider .owl-carousel .owl-nav{
    margin-top: -80px;
}

.w-products-slider  .owl-nav > button {
    background: rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.4);
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-shadow:none;
}

.w-products-slider  .owl-nav > button:hover {
    background: #333;
    color: #fff;
}

/*==================================
BANNER
/*==================================*/
.w-banner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 100%;
    background-size: cover;
}

.w-banner img{
    opacity: 0;
    width: 100%;
    height: 100%;
}

.w-banner-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    z-index: 1;
    overflow: hidden;
}

.w-banner a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.w-banner:before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0; 
    top: 0;
    bottom: 0;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.no-touch .w-banner:hover:before {
    opacity: 1;
}

.no-touch .w-banner.w-3:hover:before {
    opacity: 0.5;
}

.touch .w-banner:before {
    opacity: 0.15;
}

.w-banner .w-banner-title .heading-title {
    display: block;
}

.w-banner .w-banner-title .subheading {	
	display: block;
    margin-bottom: 0;
}

.w-banner.w-1 .w-banner-title {
    background: #4195f7;
    display: inline-block;
    top: 50%;
    bottom: auto;
    text-align: left;
    -webkit-transform: translateY(-50%); 
    transform: translateY(-50%); 
}

.w-banner.w-2:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    height: 170px;
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.3) 165px);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.3) 165px);
}

.w-banner.w-3 .w-banner-title {
    top: 0;
    right: 0;
    padding: 0;
    margin: 25px;
}

.w-banner.w-3 .w-banner-title .heading-title {
    position: absolute;
    left: 0;
    bottom: 2px;
    margin-bottom: 0;
    display: inline-block;
    letter-spacing: 0;      
    text-align: left;
}

.w-banner.w-3 .w-banner-title .subheading {
    text-align: right;  
    font-weight: bold;   
}

.w-banner.w-4 .w-banner-title {
    top: 0;
    right: 0;
    padding: 0;
}

.w-banner.w-4 .w-banner-title .heading-title {
    text-align: right;
    word-wrap: break-word;
    padding: 25px;
}

.w-banner.w-4 .w-banner-title .heading-title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 101%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to top, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
}


.w-banner.w-4 .w-banner-title .subheading {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;    
    text-align: left;
    padding: 25px;
}

.w-banner.w-4 .w-banner-title .subheading:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 101%;
    height: 100%;
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
}

.w-text-light .w-banner.w-4 .w-banner-title .heading-title:before,
.w-text-light .w-banner.w-4 .w-banner-title .subheading:before {
    background: none;
}

.w-text-light .w-banner:before {
    background-color: rgba(255, 255, 255, 0.5);
}

/*==================================
FACEBOOK LIKE BOX
/*==================================*/
.w-facebook-box {
    overflow: hidden;
    text-align: center;
}

.w-facebook-box iframe {
    width: 100%;
    height: 100%;
    max-width: 500px;
    display: inline-block;
    border: none;
    overflow: hidden;
}

/*==================================
FLICKR STREAM
/*==================================*/
.w-flickr{
    position: relative;
}

.w-flickr .w-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    text-align: center;
    overflow: hidden;
    opacity: 0.8;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-text-light .w-flickr .w-header {
    background-color: #fff;
}

.w-flickr:hover .w-header {
    opacity: 0;
    z-index: 0;
}

.w-flickr .w-header h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    padding:0 10px;
    margin: 0;
    color: #fff;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.w-text-light .w-flickr .w-header h3 {
    color: #333;
}

.w-flickr .w-header i {
    font-size: 40px;
    line-height: 1.2;
    display: block;
}

.w-flickr .w-header i, 
.w-flickr .w-header span {
    display: block;
    opacity: 1;
    line-height: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-flickr .w-header span {
    font-size: 18px;
    padding-bottom: 10px;
}

.w-flickr:hover .w-header i {
    opacity: 0;
    -ms-transform: translateY(-100%);
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
}

.w-flickr:hover .w-header span {
    opacity: 0;
    -ms-transform: translateY(100%);
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.w-flickr ul {
    list-style: none;
    margin: 0;
    padding: 0;    
}

.w-flickr li {
    padding: 0;
    margin: 0;
}

.w-flickr li a {
    margin: 0;
    display: block;
    line-height: 0px;
    position: relative;
    background: #282828;
    overflow: hidden;
    display: block;
}

.w-flickr li a img {
    width: 100%;
    height: 100%;
}

/*==================================
INSTAGRAM FEED
/*==================================*/
.w-instagram {
    position: relative;
}

.w-instagram-photos li a {
    position: relative;
    display: block;
    line-height: 0;
    text-align: center;
}

.w-instagram .w-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    text-align: center;
    overflow: hidden;
    opacity: 0.8;
    visibility: visible;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-text-light .w-instagram .w-header {
    background: #fff;
}

.w-instagram:hover .w-header {
    opacity: 0;
    visibility: hidden;
}

.w-instagram .w-header h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    padding:0 10px;
    margin: 0;
    color: #fff;
    text-align: center;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.w-text-light .w-instagram .w-header h3 {
    color: #333;
}

.w-instagram .w-header i {
    font-size: 40px;
    line-height: 1.2;
    display: block;
    padding-bottom: 10px;
}

.w-instagram .w-header i, 
.w-instagram .w-header span {
    display: block;
    opacity: 1;
    line-height: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-instagram .w-header span {
    font-size: 18px;
    padding-bottom: 10px;
}

.w-instagram:hover .w-header i {
    opacity: 0;
    -ms-transform: translateY(-100%);
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
}

.w-instagram:hover .w-header span {
    opacity: 0;
    -ms-transform: translateY(100%);
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.w-instagram.w-grid.w-space .w-view {
    margin-right: -8px;
}

.w-instagram.w-grid.w-space.has-title .w-view {
    margin-right: 0;
    padding: 8px 0 0 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.w-instagram.w-grid.w-space .w-item {
    padding: 0 8px 8px 0;
}


/*==================================
TWITTER FEED SLIDER
/*==================================*/
.w-twitter {
    text-align: center;
}

.w-twitter .tweet-item {
    font-size: 30px;
    line-height: 44px;
    overflow: hidden;
}

.w-twitter .tweet-item .tweet-media {
    display: block;
    padding: 20px 0;
}

.w-twitter .tweet-item .tweet-media img {
    width: auto;
    height: auto;
    display: inline-block;
}

.w-twitter .tweet-item .tweet-date {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 30px 0 10px 0;
}

.w-twitter .profile-image > a {
    display: block;   
    width: 80px;
    height: 80px; 
    margin: 20px auto;
}

.w-twitter .profile-image img {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    padding: 5px;
    background: #4195f7;
}

.w-twitter .profile-image i {
    font-size: 120px;
}

/*==================================
BLOG POSTS
/*==================================*/
.w-blog-posts .w-item > .post {
    position: relative;    
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-blog-posts .w-item > .post.sticky {
    border: 0 solid #4195f7;
    border-top-width: 5px;
}

.w-blog-posts:not(.w-masonry) .w-item > .post .entry-content {
    border: 1px solid #f5f5f5;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.w-blog-posts:not(.w-masonry) .w-item:hover > .post .entry-content {
    border-color: #fff;
}

.w-blog-posts .post-meta {
    height: auto;  
    line-height: 18px;
    margin-bottom: 15px;
}

.w-blog-posts .format-gallery .owl-prev,
.w-blog-posts .format-gallery .owl-next {
    opacity: 1;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.w-blog-posts .entry-title,
.w-blog-posts .entry-summary{
    position: relative;
    z-index: 5;
}

.w-blog-posts .post-footer {
    position: relative;
    margin: 20px 0 0;
    padding: 3px 0;
}

.w-blog-posts .post-footer span,
.w-blog-posts .post-footer .post-share a {
    color: inherit;
}

.w-blog-posts .entry-title a:hover,
.w-blog-posts .post-footer .post-share a:hover {
    color:#4195f7;
}

.w-blog-posts .post-footer .readmore-link a:hover {
    color: #333;
}

.post-share {
    white-space: nowrap;
    position: relative;
    font-size: 18px;
    margin: 0;
    display: block;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.w-blog-posts .post-share { 
    text-align: right;
    float: right; 
    font-size: 14px;
    width: 60%;
}

.w-blog-posts .format-quote .post-share {
    width: 100%;
    text-align: center;
}

.post-share a {
    display: inline-block;
    padding: 0 10px;
}

.post-share a:last-child {
    padding-right: 0;
}

.post-share a:hover {
    color: #555;
} 

.w-blog-posts .post.format-quote.has-cover .post-share a:hover {
    color: #fff;
}

.w-blog-posts:not(.w-list) .post-media{
    overflow: hidden;
}

.w-blog-posts .has-cover .post-media a {
    line-height: 0;
}

.w-blog-posts .post-media {
    overflow: hidden;
    position: relative;
}

.w-blog-posts .post-media img {
    width: 100%;
    height: auto;
}

.w-blog-posts .post.has-cover .post-media-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    left: 15px;
    border-radius: 3px;
    display:block;
    text-align: center;
    color:#211F1E;
    background: #fff;  
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);  
}

.w-blog-posts .post-media-icon:after {
    font-family: 'aoraki';
    font-size: 26px;
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.w-blog-posts .format-audio .post-media-icon:after {
    content: "\e802";
}

.w-blog-posts .format-video .post-media-icon:after {
    content: "\e800";
}

.w-blog-posts .w-gallery.owl-carousel:not(.owl-loaded) > div:not(:first-child){
    position: absolute;
}

.w-blog-posts .entry-content {
    position: relative;
    padding: 30px;
    background-color: #fff;
}

.w-blog-posts .format-quote .entry-content {
    width: 100%;
    padding: 60px 20px!important;
    text-align: center;
    background-color: #404040;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: cover;
}

.w-blog-posts .format-quote .entry-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.w-blog-posts .format-quote .entry-content img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.post-external-link {
    margin: 16px 0 14px;
    text-align: center;
}

.post-external-link a {
    background: rgba(0, 0, 0, 0.07);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    height: 33px;
    line-height: 30px;
    padding: 0 8px;
    display: block;
}

.post-external-link a i {
    padding-right: 10px;
    font-size: 18px;
}

.w-blog-posts .post.format-quote .entry-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: normal;
    white-space: normal;
    margin: 0;
    height: auto;
    max-height: none;
    color: #fff;
}

.w-blog-posts .post.format-quote .entry-title:before {
    font-size: 60px;
    line-height: 60px;
    opacity: 0.8;
    font-family: 'aoraki';
    content: '\e80f';
    color: #4195f7;
    z-index: -1;
    display: inline-block;
    width: 100%;
    margin: 20px 0 30px;
}

.w-blog-posts .post.format-quote .quote-author {
    margin: 60px 0 40px;
    font-size: 16px;
    font-weight: normal;
    display: block;
    position: relative;
    font-style: italic;
    color: #AFAFAF;
}

.w-blog-posts .post.format-quote .quote-author:before {
    content: '';
    width: 20px;
    height: 1px;
    background: #999;
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -10px;
}

.w-blog-posts .post.format-quote .entry-content .w-wrapper {
    display: table-cell;
    vertical-align: middle; 
    width: 100%;
}

.w-blog-posts .post.format-link .entry-title a:before {
    content: '\e80c';
    font-family: 'aoraki';
    margin-right: 10px;
    padding-left: 1px;
}

.w-blog-posts .entry-title a {
    color: inherit;
}

.w-blog-posts .post.format-quote .entry-title a {
    position: relative;
}

.w-blog-posts .readmore-link {
    width: 40%;
    display: inline-block;
    text-align: left;
}

.w-blog-posts .readmore-link a {
    display: inline-block;
    padding-right: 10px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
}

.w-blog-posts .readmore-link a:hover {
    color: #4195f7;
}

.w-blog-posts:not(.w-list) .entry-title {
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/** Default Layout */
.w-blog-posts.w-large .w-item {
    margin-bottom: 50px;
    float: none;
}

.w-blog-posts.w-large .w-item:last-child {
    margin-bottom: 0;
}

.w-blog-posts.w-large .entry-title {
    font-size: 26px;
}

/** List Layout **/
.w-blog-posts.w-list .w-item {
    clear: both;
    float: none;
    margin-bottom: 40px;
}

.w-blog-posts.w-list .post:not(.format-quote) .entry-content {
    padding: 20px;
}

.w-blog-posts.w-list .no-cover .entry-content {
    width: 100%;
}

.w-blog-posts.w-list .entry-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.w-blog-posts.w-list .post-external-link {
    text-align: left;
}

.w-blog-posts.w-list .post-footer {
    margin: 20px 0 0;
    border: none;
} 

.w-blog-posts.w-list .readmore-link a {
    border: none;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    opacity: 0.5;
}

.w-blog-posts.w-list .readmore-link a:hover {
    opacity: 1;
    color: #fff;
}

/** Masonry Layout **/
.w-blog-posts.w-masonry .w-view {
    margin-right: -30px;
}

.w-blog-posts.w-masonry .w-item {
    padding: 0 30px 30px 0;
}

.w-blog-posts.w-masonry .w-item > .post{
    box-shadow: 0 2px 25px rgba(0,0,0,0.15);
}

.w-blog-posts.w-masonry .entry-title{
    font-size: 18px;
}

.w-blog-posts.w-masonry .meta-right {
    float: right;
    width: 30%;
    text-align: right;
    padding: 20px 0;
}

.w-blog-posts.w-masonry .owl-nav {
    margin-top: -20px;
}

.w-blog-posts.w-masonry .owl-nav > button {
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.w-blog-posts.w-masonry .meta-category {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: inline-block;
    font-size: 11px;
}

.w-blog-posts.w-masonry .meta-category a {
    background: #4195f7;
}

.w-blog-posts.w-masonry .format-quote .meta-category {
    top: 0;
    bottom: auto;
}

.w-blog-posts.w-masonry .meta-category a {
    padding: 3px 8px;
    color: #fff;
    line-height: 1.5;
}

.w-blog-posts.w-masonry .meta-edit .post-edit-link {
    padding: 1px 4px;
}

.w-blog-posts.w-masonry .meta-edit a i{
    margin-right: 0;
}

/*==================================
VIDEO PLAYER
/*==================================*/
.w-video.wp-default-video {
    padding-top: 0;
}

.w-video .wp-video{
    position: relative;    
}

/*==================================
RECENT POSTS & POPULAR POSTS
/*==================================*/
.w-posts li {
    min-height: 60px;
    padding: 5px 0;
    margin-bottom: 5px;
}

.w-posts .thumb {
    margin-right: 10px;
}

.w-posts p a {
    display: block;
    line-height: 15px;
    max-height: 30px;
    overflow: hidden;
    font-size: 13px;
}

.w-posts p span {
    display: block;
    font-size: 11px;
    color: #999;
}

/*==================================
Google Maps
/*==================================*/
.w-map-info {
    padding: 20px;
}

.w-map-info p{
    margin-bottom: 10px;
}

/*==================================
PORTFOLIO CAROUSEL
/*==================================*/
.w-portfolio-carousel .owl-item .w-item {
    float: none;
    width: 100%;
    text-align: center;
}

.w-portfolio-carousel .owl-item .w-item img {
    width: 100%;
}

/*==================================
VC LINE CHART
/*==================================*/
.vc_chart .vc_chart-legend {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.vc_chart .vc_chart-legend li {
    line-height: 1.3em;
    list-style: none;
    margin: 0 0 0.3em 0;
    min-height: 1.3em;
}

.vc_chart .vc_chart-legend span {
    border-radius: 0.3em;
    display: inline-block;
    height: 1.3em;
    left: 0;
    margin-right: 0.5em;
    vertical-align: middle;
    width: 1.3em;
}

.vc_line-chart .vc_chart-with-legend {
    width: 75%;
}

.vc_line-chart .vc_chart-legend {
    width: 25%;
}

/*==================================
MESSAGE BOX
/*==================================*/
.vc_message_box {
    border: 1px solid transparent;
    display: block;
    overflow: hidden;
    margin: 0 0 21.73913043px 0;
    padding: 1em 1em 1em 4em;
    position: relative;
    font-size: 1em;
    box-sizing: border-box;
}

.vc_message_box-icon {
    bottom: 0;
    font-size: 1em;
    left: 0;
    position: absolute;
    top: 0;
    width: 4em;
}

.vc_message_box-icon > * {
    font-size: 1.7em;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    left: 50%;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.vc_message_box-icon > .fa {
    font-size: 1.7em;
    line-height: 1;
}

.vc_color-cutom .vc_message_box-solid-icon {
    color: #2a2a2a;
}

.vc_message_box-outline,
.vc_message_box-solid-icon {
    border-width: 2px;
}

.vc_message_box-solid-icon .vc_message_box-icon {
    width: 3.25em;
}

.vc_message_box-rounded {
    border-radius: 5px;
}

.vc_message_box-round {
    border-radius: 4em;
}

.vc_message_box-solid {
    color: #fff;
    border-color: transparent;
}

.vc_message_box-solid .vc_message_box-icon,
.vc_message_box.vc_message_box-solid-icon .vc_message_box-icon {
    color: #fff;
}

.vc_message_box.vc_color-cutom {
    color: #fff;
    border-color: #2a2a2a;
    background-color: #3c3c3c;
}

.vc_message_box.vc_message_box-solid-icon.vc_color-cutom {
    color: #000;
    background-color: #E0E0E0;
}

.vc_message_box-solid.vc_color-cutom {
    background-color: #2a2a2a;
}


.vc_message_box-outline.vc_color-cutom {
    color: #fff;
    border-color: #2a2a2a;
    background: #535353;
}

.vc_color-cutom .vc_message_box-solid-icon {
    color: #fff;
    border-color: #2a2a2a;
}

.vc_message_box-solid-icon.vc_color-cutom .vc_message_box-icon {
    background-color: #2a2a2a;
}

.vc_color-cutom.vc_message_box-3d {
    box-shadow: 0 5px 0 #101010;
}

.vc_color-info.vc_message_box {
    border-color: #cfebfe;
    background-color: #dff2fe;
}

.vc_color-info.vc_message_box-solid {
    background-color: #56b0ee;
}

.vc_color-info.vc_message_box-outline,
.vc_color-info.vc_message_box-solid-icon {
    color: #5e7f96;
    border-color: #56b0ee;
}

.vc_color-info.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #56b0ee;
}

.vc_color-info.vc_message_box-3d {
    box-shadow: 0 5px 0 #9dd6fd;
}

.vc_color-info.vc_message_box-3d .vc_message_box-icon {
    color: #56b0ee;
}

.vc_color-warning.vc_message_box {
    border-color: #ffeccc;
    background-color: #fff4e2;
}

.vc_color-warning.vc_message_box-solid {
    background-color: #fcb53f;
}

.vc_color-warning.vc_message_box-outline,
.vc_color-warning.vc_message_box-solid-icon {
    color: #9d8967;
    border-color: #fcb53f;
}

.vc_color-warning.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #fcb53f;
}

.vc_color-warning.vc_message_box-3d {
    box-shadow: 0 5px 0 #ffd999;
}

.vc_color-warning.vc_message_box-3d .vc_message_box-icon {
    color: #fcb53f;   
}

.vc_color-success.vc_message_box {
    border-color: #cfebfe;
    background-color: #e6fdf8;
}

.vc_color-success.vc_message_box-solid {
    background-color: #1bbc9b;
}

.vc_color-success.vc_message_box-outline,
.vc_color-success.vc_message_box-solid-icon {
    color: #5e7f96;
    border-color: #1bbc9b;
}

.vc_color-success.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #1bbc9b;
}

.vc_color-success.vc_message_box-3d {
    box-shadow: 0 5px 0 #9dd6fd;
}

.vc_color-success.vc_message_box-3d .vc_message_box-icon {
    color: #1bbc9b;
}

.vc_color-danger.vc_message_box {
    border-color: #fedede;
    background-color: #fdeaea;
}

.vc_color-danger.vc_message_box-solid {
    background-color: #ff7877;
}

.vc_color-danger.vc_message_box-outline,
.vc_color-danger.vc_message_box-solid-icon {
    color: #a85959;
    border-color: #ff7877;
}

.vc_color-danger.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #ff7877;
}

.vc_color-danger.vc_message_box-3d {
    box-shadow: 0 5px 0 #fdacac;
}

.vc_color-danger.vc_message_box-3d .vc_message_box-icon {
    color: #ff7877;
}

.vc_color-alert-info.vc_message_box {
    border-color: #bce8f1;
    background-color: #d9edf7;
}

.vc_color-alert-info.vc_message_box-solid {
    background-color: #67cce0;
}

.vc_color-alert-info.vc_message_box-outline,
.vc_color-alert-info.vc_message_box-solid-icon {
    color: #31708f;
    border-color: #67cce0;
}

.vc_color-alert-info.vc_message_box-outline .vc_message_box-icon {
    color: #67cce0;
}

.vc_color-alert-info.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #67cce0;
}

.vc_color-alert-info.vc_message_box-3d {
    box-shadow: 0 5px 0 #91d9e8;
}

.vc_color-alert-info.vc_message_box-3d .vc_message_box-icon {
    color: #67cce0;
}

.vc_color-alert-warning.vc_message_box {
    border-color: #faebcc;
    background-color: #fcf8e3;
}

.vc_color-alert-warning.vc_message_box-solid {
    background-color: #f9cf79;
    color: #8a6d3b;
}

.vc_color-alert-warning.vc_message_box-solid .vc_message_box-icon {
    color: #8a6d3b;
}

.vc_color-alert-warning.vc_message_box-outline,
.vc_color-alert-warning.vc_message_box-solid-icon {
    color: #8a6d3b;
    border-color: #f9cf79;
}

.vc_color-alert-warning.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #f9cf79;
}

.vc_color-alert-warning.vc_message_box-3d {
    box-shadow: 0 5px 0 #f5d89e;
}

.vc_color-alert-warning.vc_message_box-3d .vc_message_box-icon {
    color: #f9cf79;
}

.vc_color-alert-success.vc_message_box {
    border-color: #d6e9c6;
    background-color: #dff0d8;
}

.vc_color-alert-success.vc_message_box-solid {
    background-color: #9ad36a;
}

.vc_color-alert-success.vc_message_box-outline,
.vc_color-alert-success.vc_message_box-solid-icon {
    color: #3c763d;
    border-color: #9ad36a;
}

.vc_color-alert-success.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #9ad36a;
}

.vc_color-alert-success.vc_message_box-3d {
    box-shadow: 0 5px 0 #bbdba1;
}

.vc_color-alert-success.vc_message_box-3d .vc_message_box-icon {
    color: #9ad36a;
}

.vc_color-alert-danger.vc_message_box {
    border-color: #ebccd1;
    background-color: #f2dede;
}

.vc_color-alert-danger.vc_message_box-solid {
    background-color: #ef8495;
}

.vc_color-alert-danger.vc_message_box-outline,
.vc_color-alert-danger.vc_message_box-solid-icon {
    color: #a94442;
    border-color: #ef8495;
}

.vc_color-alert-danger.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #ef8495;
}

.vc_color-alert-danger.vc_message_box-3d {
    box-shadow: 0 5px 0 #dca7b0;
}

.vc_color-alert-danger.vc_message_box-3d .vc_message_box-icon {
    color: #ef8495;
}

/*==================================
SLIDER REVOLUTION
/*==================================*/
.w-revslider {
    position: relative;
    text-align: left;
    overflow: hidden;
}

.w-scroll-button {
    position: absolute;
    z-index: 10;
    display: inline-block;
    left: 50%;
    bottom: 50px;
    width: 100px;
    border-color: #fff;
    color: #fff;
    margin-left: -50px;
    text-align: center;
}

/* Mouse Wheel */
.w-scroll-button.w-button-1 a {
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    color: inherit;
    width: 22px;
    height: 36px;
    border-radius: 20px;
    overflow: hidden;
}

.w-scroll-button.w-button-1 a i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 10px;
    height: 8px;
    width: 4px;
    margin-left: -2px;
    border-color: inherit;
    color: inherit;
    -webkit-animation: fadeInDown 1.2s infinite both;
    animation: fadeInDown 1.2s infinite both;
}

.w-scroll-button.w-button-1 a i:before {
    display: block;
    content: '';
    border-style: solid;
    border-left-width: 1px;
    border-color: inherit;
    color: inherit;
    border-radius: 2px;
    height: 3px;
}

/* Arrow */
/* fadeInOut */
@-webkit-keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.w-scroll-button.w-button-2 a {
    display: inline-block;
    width: 20px;
    overflow: hidden;
    text-align: center;
    line-height: 10px;
    font-size: 22px;
    color: inherit;
}

.w-scroll-button.w-button-2 a i {
    line-height: 0;
}

.w-scroll-button.w-button-2 a:before, 
.w-scroll-button.w-button-2 a:after, 
.w-scroll-button.w-button-2 a i:before {
    display: block;
    font-family: 'aoraki';
    content: '\e82c';
    margin: 2px 0;
    line-height: 8px;
    font-style: normal;
    opacity: 0;
    -webkit-animation: fadeInOut 2s infinite;
    animation: fadeInOut 2s infinite;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.w-scroll-button.w-button-2 a i:before {
    -webkit-animation-delay: 3.25s;
    animation-delay: 3.25s;
}

.w-scroll-button.w-button-2 a:after {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

/*==================================
CONTACT FORM 7
/*==================================*/
.wpcf7 {
    margin: 0;
    padding: 0;
}

.wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
}

.wpcf7 p{
    margin-bottom: 25px;
}

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
}

.wpcf7-mail-sent-ng {
    border: 2px solid #ff0000;
}

.wpcf7-spam-blocked {
    border: 2px solid #ffa500;
}

.wpcf7-validation-errors {
    border: 2px solid #f7e700;
    background: rgba(247, 231, 0, 0.5);
    margin: 2em 0 1em;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    position: absolute;
    color: #f00;
    font-size: 1em;
    display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: 100;
    border: 1px solid #ff0000;
    background: #fff;
    padding: .2em .8em;
}

.wpcf7-list-item {
    margin-left: 0.5em;
}

.wpcf7-display-none {
    display: none;
}

.wpcf7 img.ajax-loader {
    border: none;
    vertical-align: middle;
    margin-left: 4px;
}

.wpcf7 .ajax-error {
    display: none;
}

/*==================================
SECTION TEXT STYLE
/*==================================*/
.w-section.w-text-light > *,
.col.w-text-light > *,
.w-text-light .w-donut-chart span,
.w-text-light .w-testimonial .w-customer a:hover,
.w-text-light .w-clients-carousel .owl-nav > button,
.w-text-light .w-info-box.w-large .w-content p:after,
.w-text-light .w-info-box .w-read-more > a {
    color: #eee;
}

.w-text-light h1,
.w-text-light h2,
.w-text-light h3,
.w-text-light h4,
.w-text-light h5,
.w-text-light h6,
.w-text-light .w-filter li.active a,
.w-text-light .w-tabs .w-tabs-nav li:hover a,
.w-text-light .w-accordion .w-accordion-tab:not(.active):hover .acd-header,
.w-text-light .w-toggle:not(.active):hover h3,
.w-text-light .w-info-box.w-large:hover .w-content,
.w-text-light .w-info-box.w-large .w-read-more:hover a,
.w-text-light .w-testimonials-slider .owl-stage-outer:before,
.w-text-light .w-testimonial .w-content,
.w-text-light .w-filter li:hover a,
.w-text-light .w-counter-box .counter-value,
.w-text-light .w-icon-block.w-none:hover a > i,
.w-text-light .w-info-box .w-read-more:hover > a,
.w-text-light .w-info-box.w-large .w-content,
.w-text-light blockquote,
.w-text-light .w-heading.heading-3 .subheading,
.w-text-light .w-heading.heading-4 .w-wrapper > .heading-dropcap,
.w-text-light .w-heading.heading-10 .subheading,
.w-text-light .w-heading.heading-11 .subheading {
    color: #fff;
}

.w-text-light .w-info-box.w-circle .w-icon {
    color: #333;
}

.w-text-light .w-banner:not(.w-1) h2,
.w-text-light .w-icon-block,
.w-effect-1:hover i, 
.w-effect-1:hover a i{
    color: #222;
}

.w-text-light .w-testimonial .w-customer p,
.w-text-light .w-counter-box.w-2 .counter-title {
    color: #aaa;
}

.w-text-light .w-toggle > h3,
.w-text-light .w-accordion .acd-header,
.w-text-light .w-tour .w-tabs-nav li:not(.active) a {
    background: rgba(0 ,0 , 0, 0.7);
    border-color: rgba(0 ,0 , 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
}

.w-text-light .w-accordion-tab.active {
    border-color:rgba(255, 255, 255, 0.1);
}

.w-text-light .w-tabs .w-tab-wrapper .w-tab,
.w-text-light .w-tabs .w-tabs-nav li {
    background: rgba(0 ,0 , 0, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

.w-text-light .w-tabs .w-tabs-nav li a,
.w-text-light .w-info-box.w-large .w-read-more a {
    color: rgba(255, 255, 255, 0.7);
}

.w-text-light .w-icon-tabs .w-tabs-nav li:not(.active) a {
    color: rgba(255, 255, 255, 0.4);
}

.w-text-light .w-team-slider .owl-nav > button,
.w-text-light .w-heading.heading-11 .w-wrapper:before {
    background-color: #fff;
}

.w-text-light .w-progress-bar .w-bar-wrapper,
.w-text-light input[type="text"], 
.w-text-light input[type="password"], 
.w-text-light input[type="email"], 
.w-text-light input[type="tel"], 
.w-text-light input[type="url"], 
.w-text-light input[type="number"], 
.w-text-light input[type="date"], 
.w-text-light input[type="search"], 
.w-text-light input[type="file"], 
.w-text-light textarea,
.w-text-light .w-testimonials-slider .owl-nav > button {
    background-color:rgba(255, 255, 255, 0.2);
}

.w-text-light .w-heading.heading-2.text-left .subheading,
.w-text-light .w-heading.heading-2.text-right .subheading,
.w-text-light .w-heading.heading-5 .heading-title,
.w-text-light .w-heading.heading-6 .heading-title,
.w-text-light .w-icon-tabs .w-tabs-nav li,
.w-text-light .w-info-box.w-large .w-read-more,
.w-text-light .w-heading.heading-5 .subheading,
.w-text-light .w-heading.heading-6 .subheading {
    border-color: rgba(255, 255, 255, 0.5);
}

.w-text-light .w-heading.heading-1:after,
.w-text-light .owl-dot span:before,
.w-text-light .w-heading.heading-5 .heading-title:after, 
.w-text-light .w-heading.heading-6 .heading-title:before {
    background-color: rgba(255, 255, 255, 0.7);
}

.w-text-light .owl-dot.active span {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.w-text-light .dropcap {
    color: #4195f7;
}

.w-text-light blockquote {
    border-color: #fff;
}

.w-text-light blockquote:before {
    opacity: 0.6;
}

.w-text-light .w-heading.heading-3 .w-wrapper {
    border-color: #fff;
}

.w-text-light .w-heading.heading-4 .w-wrapper > .heading-dropcap,
.w-text-light .w-heading.heading-10 .subheading,
.w-text-light .w-heading.heading-11 .subheading  {
    opacity: 0.2;
}

.w-text-light .w-heading.heading-9 .heading-title:before,
.w-text-light .w-heading.heading-9 .heading-title:after {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(255,255,255,.2), rgba(255,255,255,.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(255,255,255,.2), rgba(255,255,255,.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(255,255,255,.2), rgba(255,255,255,.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(255,255,255,.2), rgba(255,255,255,.2) 1px, transparent 1px, transparent 100%);
}

.w-text-light .w-heading.heading-10 .w-wrapper:before,
.w-text-light .w-heading.heading-11 .w-wrapper:before {
    opacity: 0.3;
}

/*==================================
MEDIA QUERIES
/*==================================*/
@media only screen and (max-width: 1199px) {

    .w-item > figure figcaption {
        padding: 0;
    }

    .w-portfolio-grid .w-view .w-item,
    .w-image-gallery.w-masonry .w-item,
    .portfolio-masonry .w-masonry .w-item {
        width:50%;
    }
    
}

@media only screen and (max-width: 991px) {

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .five-cols {
        width: 100%;       
    }
    
    .col-offset-1, .col-offset-2, .col-offset-3, .col-offset-4, .col-offset-5, .col-offset-6, .col-offset-7, .col-offset-8, .col-offset-9, .col-offset-10, .col-offset-11, .col-offset-12 {
        margin-left: 0;
    }

    .col:not(.no-padding) > .col-inner {
        padding-top: 4%;
        padding-bottom: 4%;
    }

    .w-overlap-box {
        top: auto!important;
        left: auto!important;
        right: auto!important;
        bottom: auto!important;
    }

    .w-scroll-button{
        display: none;
    }

    .w-grid .w-item {
        padding: 0;
    }

    .w-masonry .w-effect-zoomIn .w-item.w-h2 > figure figcaption::before {
        width: 200%;
    }   

    #footer-widget .w-flickr li {
        width: 20%;
        float: left;
    }

    #footer-widget .w-flickr li:nth-child(n+11) {
        display: none;
    }

    .w-flickr li,
    .w-instagram.w-grid li {
        float: left;
    }

    .w-flickr li.col-1,
    .w-flickr li.col-2,
    .w-instagram.w-grid li.col-1,
    .w-instagram.w-grid li.col-2 {
        width: 16.6666%;
    }

    .w-flickr li.five-cols,
    .w-instagram.w-grid li.five-cols {
        width: 20%;
    }

    .w-flickr li.col-4,
    .w-instagram.w-grid li.col-4 {
        width: 33.3333%;
    }

    .w-flickr li.col-6,
    .w-flickr li.col-3,
    .w-instagram.w-grid li.col-6,
    .w-instagram.w-grid li.col-3 {
        width: 25%;
    }

    .w-heading.heading-2,
    .w-heading.heading-7 {
    	text-align: left;
    }

    .w-banner,
    .heading-9.text-left {
        text-align: left!important;
    }

    /* Team Member */
    .w-team-slider .owl-carousel .cover-image:before {
        top: 10px;
        right: 10px;
        opacity: 0.7;
        width: 40px;
        height: 40px;
    }

    .sm-center .w-separator.text-left,
    .sm-center .w-separator.text-right {
        margin-left: auto!important;
        margin-right: auto!important;
    }

    .sm-center,
    .sm-center.text-right,
    .sm-center .w-custom-heading *,
    .sm-center .w-heading.heading-1 *,
    .sm-center .w-heading.heading-1[class*=" text-"],
    .sm-center .w-heading.heading-3 *,
    .sm-center .w-heading.heading-4 *,
    .sm-center .w-heading.heading-4[class*=" text-"],
    .sm-center .w-heading.heading-9 *,
    .sm-center .w-heading.heading-10 *,
    .sm-center .w-heading.heading-11 *,
    .sm-center .w-heading.heading-11[class*=" text-"] {
        text-align: center!important;
    }

    .sm-center .w-heading.heading-3 .w-wrapper {
	    padding: 25px 40px 100px!important;
	}

    .sm-center .w-heading.heading-4 .w-wrapper > .heading-dropcap {
    	margin-left: -45px;
    	left: 50%;
    	right: auto;
    }

    .sm-center .w-heading.heading-9.text-right .heading-title:after,
	.sm-center .w-heading.heading-9 .heading-title:before {
		display: inline-block;
	}

	.sm-center .w-heading.heading-9 .heading-title:before {
	    width: 50%;
	    margin-left: -50%;
	    display: inline-block;
	    vertical-align: middle;
	}

	.sm-center .w-heading.heading-9 .heading-title:after {
	    width: 50%;
	    margin-right: -50%; 
	    display: inline-block;
	    vertical-align: middle;  
	}

	.sm-center .w-heading.heading-9 .heading-title span {
		padding: 0 10px;
	}

    .w-grid .w-item > figure div.cover-image {
        display: none;
    }

    .w-grid .w-item > figure figcaption {
        position: relative;
        top: auto;
        bottom: 0;
        height: auto;
        padding: 20px 0 40px;
        background: #fff;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }

    .w-grid.w-space .w-item > figure figcaption{
        padding: 20px 0;
    }

    .w-grid .w-item > figure .entry-title {  
        position: relative;
        z-index: 1;
        opacity: 1;
        padding: 0px 10px;
        text-align: center;
        font-size: 18px;
        line-height: 20px;
        max-height: 40px;
        width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: #555;
    }

    .w-grid .w-item > figure p {
        position: relative;
        display: block;
        opacity: 1;
        color: #555;
    }
    
}

@media only screen and (max-width: 767px) {
    /* Blog */
    .w-blog-posts .post.format-quote .entry-title a:before {
        z-index: 0;
    }

    .post .post-date {
        height: 40px;
        line-height: 40px;
    }

    .post .post-date strong:after {
        content: '\00b8';
    }
}

@media only screen and (max-width: 600px) {
    .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 {
        float: left;
    }

    .col-xs-12 {
        width: 100%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-offset-12 {
        margin-left: 100%;
    }

    .col-xs-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xs-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xs-offset-9 {
        margin-left: 75%;
    }

    .col-xs-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xs-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xs-offset-6 {
        margin-left: 50%;
    }

    .col-xs-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xs-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xs-offset-3 {
        margin-left: 25%;
    }

    .col-xs-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xs-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xs-offset-0 {
        margin-left: 0;
    }

    .w-heading.heading-3.text-center .w-wrapper {
        padding: 25px 25px 100px;
    }

    .w-heading.heading-3.text-left .w-wrapper {
        padding: 25px 30px 100px 25px;
    }

    .w-heading.heading-3.text-right .w-wrapper {
        padding: 25px 25px 100px 30px;
    }

    .w-custom-heading h1 {
       font-size:40px!important;
    }

    .w-text-block h2,
    .w-custom-heading h2 {
        font-size:36px!important;
        line-height: 46px!important;
    }

    .w-text-block h3,
    .w-custom-heading h3 {
        font-size:30px!important;
        line-height: 40px!important;
    }

    .w-text-block h4,
    .w-custom-heading h4 {
        font-size:26px!important;
        line-height: 36px!important;
    }

    .w-text-block h5, 
    .w-text-block h6,
    .w-custom-heading h5,
    .w-custom-heading h6 {
        font-size:24px!important;
        line-height: 34px!important;
    }

    .w-banner-title {
        padding: 15px;
    }

    .w-progress-bar .w-counter {
        position: relative;
        width: auto;
        float: right;
    }

    .post-external-link a {
        font-size: 18px;
    }

    .w-icon-tabs .w-tabs-nav li {
        margin: 0px 5px 5px;
    }

    .w-filter {
        padding:10px 0px;
    }

    .w-filter li {
        display: block;
    }

    .w-masonry .w-effect-zoomIn .w-item:not(.w-w2).w-h2 > figure figcaption:before,
    .w-portfolio-grid.w-masonry .w-item,
    .w-portfolio-grid.w-photoset .w-item,
    .w-blog-posts.w-masonry .w-view .w-item  {
        width:100%;
        float:none;
    }

    .w-portfolio-grid .w-view .w-item,  
    .w-image-gallery .w-view .w-item,
    .w-masonry .w-item.w-w2,
    .portfolio-masonry .w-masonry .w-item {
        width: 100%!important;
    }

    .w-image-gallery.w-masonry .w-item,
    .w-portfolio-grid.w-masonry.w-standard .w-item,
    .portfolio-masonry .w-masonry .w-item {
        height: auto!important;
    }

    .w-portfolio-grid.w-standard .w-item,
    .w-image-gallery.w-masonry .w-item  {
        padding-bottom: 15px;
    }

    .w-image-gallery.w-masonry .w-item img.cover-image {
        opacity: 1;
    }

    .w-image-gallery.w-masonry .w-item div.cover-image {
        opacity: 0;
    }

    .w-photoset .w-item figcaption {
    	text-align: center;
    }

    #footer-widget .w-flickr li {
        width: 25%;
        float: left;
    }

    #footer-widget .w-flickr li:nth-child(n+9) {
        display: none;
    }

    .w-flickr li.col-1,
    .w-flickr li.col-2,
    .w-instagram .w-item.col-1, 
    .w-instagram .w-item.col-2 {
        width: 25%;
    }

    .w-flickr li.col-6,
    .w-instagram .w-item.col-6 {
        width: 50%;
    }

    .w-flickr li:nth-child(n+13).col-1,
    .w-flickr li:nth-child(n+13).col-2,
    .w-instagram li:nth-child(n+13).col-1,
    .w-instagram li:nth-child(n+13).col-2 {
        display: none;
    }

    .w-blog-posts .post-meta {
        overflow: hidden;
    }

    .post-meta .meta-author {
        display:none;
    }

    .related-posts .five-cols {
        width:50%;
        float: left;
    }

}

@media only screen and (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }    

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }

    .w-heading.heading-10 .heading-title {
        z-index: 1;
        position: absolute;
        top: 50%;
        width: 100%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .w-heading.heading-10 .subheading {
        font-size: 80px;
        line-height: 80px;
        font-weight: bold;
        letter-spacing: 0;        
        opacity: 0.1;   
        padding-top: 0;    
    }

    .w-heading.heading-11 .heading-title {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
        margin-bottom: 0;
    }

    .w-heading.heading-11 .subheading {
        font-size: 70px;
        line-height: 1.3;
        font-weight: bold;
        letter-spacing: 0;
        width: 100%;
        opacity: 0.1;
        position: relative;
        padding-top: 0;
    }

    .w-section.w-full .w-action-box {
        padding: 40px 60px;
    }

    .w-action-box .w-content {
        display: table-cell;
        vertical-align: middle;
        width: 75%;
    }

    .w-action-box .w-action-button {
        display: table-cell;
        vertical-align: middle;
        padding: 0 0 0 10px;
        text-align: right;
        width: 25%;
    }

    .w-tabs .w-tabs-nav li {
        border-bottom-width: 0;
        margin-left: -1px;
        float: left;
    }

    .w-tabs .w-tab-wrapper .w-tab {
        margin-left: -1px;
    }

    .w-text-light .w-tabs .w-tabs-nav li.active:first-child {
        border-left-color: #000;
    }

    .w-tour .w-tabs-nav {
        float: left;
        margin: 0;
        width: 30%;
    }

    .w-tour .w-tab-wrapper {
        float: left;
        width: 70%;
    }

    .w-tour .w-tab-content {
        margin: 0 0 0 20px;
    }

    .w-action-box {
        display: table;
        width: 100%;
        text-align: left;
    }

    .w-masonry .w-effect-zoomIn .w-item.w-h2 > figure .entry-title {
        max-height: 198px;
    }

    .vc_chart .vc_chart-legend {
        display: inline-block;
        vertical-align: middle;
        width: 40%;
    }

    .vc_chart .vc_chart-legend li {
        margin-left: 1em;
    }

    .vc_chart .vc_chart-with-legend {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
    }

    .vc_chart .vc_chart-legend {
        display: inline-block;
        vertical-align: middle;
        width: 40%;
    }

    .vc_chart .vc_chart-legend li {
        margin-left: 1em;
    }

    .vc_chart .vc_chart-with-legend {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
    }

    .vc_tta-container .vc_tta:not([class*="vc_tta-pageable"]) .vc_pagination {
        display: none;
    }

    .post .post-date {
        width: 60px;
        padding: 10px 5px;
    }

    .post .post-date:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 12px;
        background-image: -webkit-repeating-radial-gradient(center center, rgba(255,255,255,.3), rgba(255,255,255,.3) 1px, transparent 1px, transparent 100%);
        background-image: -moz-repeating-radial-gradient(center center, rgba(255,255,255,.3), rgba(255,255,255,.3) 1px, transparent 1px, transparent 100%);
        background-image: -ms-repeating-radial-gradient(center center, rgba(255,255,255,.3), rgba(255,255,255,.3) 1px, transparent 1px, transparent 100%);
        background-image: repeating-radial-gradient(center center, rgba(255,255,255,.3), rgba(255,255,255,.3) 1px, transparent 1px, transparent 100%);
        -webkit-background-size: 3px 3px;
        -moz-background-size: 3px 3px;
        background-size: 3px 3px;
    }

    .post .post-date strong {
        display: block;
        font-size: 30px;
        line-height: 34px;
    }

    .member-content .member-detail {
        height: 100%;
        padding: 0;
    }  

}

@media only screen and (min-width: 992px) {
    /* Column */
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .five-cols {
        float: left;
    }

    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }  

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }   

    /* Counter Box */
    .w-counter-box.w-2 .counter-title {
        display: inline-block;
        vertical-align: middle;
        width: 100px;
        padding: 0 0 0 10px;
        margin-top: 3px;
        position: relative;
        text-align: left;
    }

    .w-counter-box.w-2 .counter-title span {
        width: 2px;
        height: 100%;
        top: 0;
        left: 0;
        margin: 0;
        display: block;
    }

    /* Overlap */
    .w-overlap-box{
        position: relative;
        z-index: 50;
    }   

    /* Pricing Box */
    .w-pricing-box.w-featured {
        margin-top: -20px;
        margin-bottom: -20px;
    }

    /* INFO BOX */
    /* Circle with line style */
    .w-info-box.w-circle.line .w-icon .w-line {
        position: absolute;
        margin-top: -1px;
        background-color: inherit;
        border-color: inherit;
        width: 1px;
        height: 100px;
        top: -98px;
        left: 50%;
        margin-left: -1px;
    }

    .w-info-box:not(.w-top).w-circle.line .w-icon .w-line {
        width: 100px;
        height: 1px;
        top: 50%;
        margin-left: 0;
    }

    .w-info-box.w-small.w-left.w-circle.line .w-icon .w-line {
        right: 60px; 
        left: auto;
    }

    .w-info-box.w-small.w-right.w-circle.line .w-icon .w-line {
        left: 60px; 
    }

    .w-info-box.w-medium.w-left.w-circle.line .w-icon .w-line {
        right: 110px; 
        left: auto;
    }

    .w-info-box.w-medium.w-right.w-circle.line .w-icon .w-line {
        left: 110px; 
    }

    .w-info-box.w-circle.line .w-icon .w-line:before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 10px;
        background-color: inherit;
        position: absolute;
        top: -10px;
        margin-left: -4px;
    }

    .w-info-box:not(.w-top).w-circle.line .w-icon .w-line:before {
        top: 50%;
        margin-top: -4px;
        margin-left: 0;
    }

    .w-info-box.w-left.w-circle.line .w-icon .w-line:before {
        left: -10px;
    }

    .w-info-box.w-right.w-circle.line .w-icon .w-line:before {
        right: -10px;
        left: auto;
    }

    .w-info-box.w-circle.line .w-icon .w-line:after {
        content: '';
        width: 12px;
        height: 12px;
        border-radius: 12px;
        border: 2px solid;
        border-color: inherit;
        position: absolute;
        top: -14px;
        left: 50%;
        margin-left: -8px;
    }

    .w-info-box:not(.w-top).w-circle.line .w-icon .w-line:after {
        top: 50%;
        margin-top: -8px;
        margin-left: 0;
    }

    .w-info-box.w-left.w-circle.line .w-icon .w-line:after {
        left: -14px;
    }

    .w-info-box.w-right.w-circle.line .w-icon .w-line:after {
        right: -14px;
        left: auto;
    }

    /* Slider */
    .w-slide:after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        bottom: -2px;
        display: block;
        height: 250px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0px, rgba(255,255,255,1) 250px);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0px, rgba(255,255,255,1) 250px);
    }

    .w-slide .w-content {
        position: absolute;
        z-index: 10;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        text-align:left;
    }
    
    /* Clients-List */
    .w-clients-grid ul li {
        border-right: 1px solid #dcdcdc;
    }

    .w-clients-grid ul li.col-6:nth-child(even) {
        border-right: none;
    }

    .w-clients-grid ul li.col-6:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .w-clients-grid ul li.col-4:nth-child(3n+0) {
        border-right: none;
    }

    .w-clients-grid ul li.col-4:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .w-clients-grid ul li.col-3:nth-child(4n+0) {
        border-right: none;
    }

    .w-clients-grid ul li.col-3:nth-last-child(-n+4) {
        border-bottom: none;
    }

    .w-clients-grid ul li.five-cols:nth-child(5n+0) {
        border-right: none;
    }

    .w-clients-grid ul li.five-cols:nth-last-child(-n+5) {
        border-bottom: none;
    }

    .w-clients-grid ul li.col-2:nth-child(6n+0) {
        border-right: none;
    }

    .w-clients-grid ul li.col-2:nth-last-child(-n+6) {
        border-bottom: none;
    }

    /* Blog */
    .w-blog-posts.w-list .has-cover .post-media {
        width: 60%;
        padding: 0;
        float: left;
    }

    .left-sidebar .w-blog-posts .post-meta,
    .right-sidebar .w-blog-posts .post-meta {
        overflow: hidden;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link {
        margin-bottom: 0;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link a,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link a {
        margin-top: 10px;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-excerpt,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-excerpt {
        height: 22px;
        line-height: 22px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-share,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-share {
        padding: 10px 0 0;
    }

    .w-blog-posts.w-masonry .w-item {
        margin-bottom: 0px;
    }

    .w-blog-posts:not(.w-masonry) .w-item > .post {     
        margin-left: 72px;  
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .w-blog-posts:not(.w-masonry) .w-item > .post:hover {      
        -ms-transform: translateY(-4px);
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);        
    }

    .w-blog-posts:not(.w-masonry) .w-item > .post:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        box-shadow: 0 15px 43px rgba(0,0,0,0.15);
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

    .w-blog-posts:not(.w-masonry) .w-item > .post:hover:before{
        opacity: 1;
    }  

    .w-blog-posts:not(.w-masonry) .post .post-date {
        left: -72px;
    }

    .w-blog-posts.w-list .has-cover:not(.format-quote) .entry-content {
        float: left;
        z-index: 99;
        width: 40%;
    }    

    /* Portfolio Masonry */
    .w-portfolio-grid.w-masonry img.cover-image{
        opacity: 0;
    }

    /* Masonry Layout 1 */
    .w-full .w-portfolio-grid.w-masonry.w-space .w-view {
        margin-left: 20px;
        margin-right: 0;
    }

    .w-portfolio-grid.w-masonry .w-item {
        width: 25%;    
    }

    .w-portfolio-grid.w-masonry .w-item.w-w2 {
        width: 50%;
    }

    .w-portfolio-grid.w-masonry.w-space .w-item {
        padding: 0 20px 20px 0;
    }

    /* Portfolio Effect */
    .w-item > figure .entry-title {
        opacity: 0; 
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;  
    }

    .w-item > figure p {
        opacity: 0; 
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;  
    }

    .w-item > figure:hover .entry-title {
        opacity: 1;
    }

    .w-item > figure:hover p {
        opacity: 1;
        display: block;
    }

    .w-item > figure:hover > span {
        opacity: 1;
    }

    /* Effect Zoom In */
    .w-effect-zoomIn .w-item > figure:hover {
        background: #8accff;
    }

    .w-effect-zoomIn .w-item > figure .cover-image {
        -ms-transform: scale(1,1);
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transition: opacity 0.8s, -webkit-transform 0.5s;
        transition: opacity 0.8s, transform 0.5s;
    }

    .w-effect-zoomIn .w-item > figure:hover .cover-image {
        opacity: 0.2;
        -ms-transform: scale(1.2,1.2);
        -webkit-transform: scale3d(1.2,1.2,1);
        transform: scale3d(1.2,1.2,1);
        -webkit-filter: blur(2px);
        -moz-filter: blur(2px);
        -o-filter: blur(2px);
        -ms-filter: blur(2px);
        filter: blur(2px);
    }

    .w-view.w-effect-zoomIn .w-item > figure:hover > span {
        top: 20px;
        right: 0;
        left: auto;
        -ms-transform: translateY(0);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    .w-view.w-effect-zoomIn .w-item > figure figcaption {
        width: 80%;
        height: 80%;
        left: 10%;
        top: 10%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
        border-top: 1px solid rgba(255, 255, 255, 0.7);
        -ms-transform: scale(0,1);
        -webkit-transform: scale(0,1);
        transform: scale(0,1);
        -webkit-transition: all 0.35s;
        transition: all 0.35s;
    }

    .w-view.w-effect-zoomIn .w-item > figure:hover > figcaption {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .w-effect-zoomIn .w-item > figure .entry-title {
        margin-top: 20px;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        -webkit-transition: all 0.35s;
        transition: all 0.35s;
    }

    .w-effect-zoomIn .w-item > figure p {
        width: 100%;
        margin-bottom: 20px;
        position: absolute;
        bottom: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        -webkit-transition: opacity .3s cubic-bezier(.1,0,.3,1) .15s, -webkit-transform .3s cubic-bezier(.1,0,.3,1) .15s;
        transition: opacity .3s cubic-bezier(.1,0,.3,1) .15s, transform .3s cubic-bezier(.1,0,.3,1) .15s;
    }

    .w-effect-zoomIn .w-item > figure:hover .entry-title,
    .w-effect-zoomIn .w-item > figure:hover p {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    /* Effect Zoom Out Blur */
    .w-effect-zoomOutBlur .w-item > figure {
        background: #fff;
    }

    .w-effect-zoomOutBlur .w-item > figure .cover-image {
        -webkit-transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        -ms-transform: scale(1.1 ,1.1);
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    .w-effect-zoomOutBlur .w-item > figure:hover .cover-image {
        filter: blur(3px);
        -webkit-filter: blur(3px);
        -moz-filter: blur(3px);
        -o-filter: blur(3px);
        -ms-filter: blur(3px);
        -ms-transform: scale(1,1);
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    .w-view.w-effect-zoomOutBlur .w-item > figure figcaption {
        background: rgba(0,0,0,0.5);
        height: 80px;
        top: auto;
        bottom: 0;
        padding: 10px;
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }

    .w-view.w-effect-zoomOutBlur .w-item > figure:hover figcaption {
        -ms-transform: translateY(0);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    .w-effect-zoomOutBlur .w-item > figure .entry-title {
        max-height: 35px;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 0;
        -ms-transform: scale(0.2,0.2);
        -webkit-transform: scale3d(0.2,0.2,1);
        transform: scale3d(0.2,0.2,1);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }

    .w-effect-zoomOutBlur .w-item > figure:hover .entry-title,
    .w-effect-zoomOutBlur .w-item > figure:hover p {
        -ms-transform: scale(1,1);
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    .w-effect-zoomOutBlur .w-item > figure p {
        top: 0;
        position: relative;
        padding: 0 10px;
        text-transform: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        -ms-transform: scale(0.2,0.2);
        -webkit-transform: scale3d(0.2,0.2,1);
        transform: scale3d(0.2,0.2,1);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }

    .w-view.w-effect-zoomOutBlur .w-item > figure figcaption {
        -ms-transform: translateY(150px);
        -webkit-transform: translate3d(0,150px,0);
        transform: translate3d(0,150px,0);
    }

    /* Effect Zoom Out */
    .w-effect-zoomOut .w-item > figure .cover-image {
        -ms-transform: scale(1.1,1.1);
        -webkit-transform: scale(1.1,1.1);
        transform: scale(1.1,1.1);
        -webkit-transition: .4s ease-out;
        -moz-transition: .4s ease-out;
        transition: .4s ease-out;
    }

    .w-effect-zoomOut .w-item > figure:hover .cover-image {
        -ms-transform: scale(1,1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

    .w-effect-zoomOut .w-item > figure figcaption {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        width: auto;
        height: auto;
        text-align: left;
        padding: 0 20px;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .w-effect-zoomOut .w-item > figure:hover figcaption {
        opacity: 1;
    }

    .w-effect-zoomOut .w-item > figure figcaption:before {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        content: '';
        background: #fff;
        opacity: 0.8;
    }

    .w-effect-zoomOut .w-item > figure .entry-title {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 0 25px;
        margin: 10px 0;
        color: #333;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .w-effect-zoomOut .w-item > figure:hover .entry-title {
        -ms-transform: translateY(-40px);
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0);
    }

    .w-effect-zoomOut .w-item > figure p {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 0 25px;
        margin: 10px 0;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-height: none;
        color: #888;
        -webkit-transition: 0.4s all 0.4s ease-in-out;
        transition: 0.4s all 0.4s ease-in-out;
    }

    .w-effect-zoomOut .w-item > figure:hover p {
        -ms-transform: translateY(-15px);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    .w-effect-zoomOut .w-item > figure figcaption > span {
        position: absolute;
        top: 0;
        bottom: auto;
        padding: 0 20px;
        margin: 20px 0;
        -webkit-transition: opacity 0.35s ease-in 0.35s;
        transition: opacity 0.35s ease-in 0.2s;
    }    

    /* Effect Zoom In Fade */
    .w-effect-zoomInFade .w-item > figure .cover-image {
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: perspective(1000px) translate3d(0,0,0);
        transform: perspective(1000px) translate3d(0,0,0);
    }

    .w-effect-zoomInFade .w-item > figure:hover .cover-image {
        -webkit-transform: perspective(1000px) translate3d(0,0,21px);
        transform: perspective(1000px) translate3d(0,0,21px);
        opacity: 0.15;
    }

    .w-effect-zoomInFade .w-item > figure figcaption {
        z-index: 1;
        top: 50%;
        height: auto;
        padding: 0 20px;
        -ms-transform: translateY(-50%);
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    .w-effect-zoomInFade .w-item > figure .entry-title {
        margin-bottom: 0;
        color: #fff;
        -ms-transform: translateY(6px);
        -webkit-transform: translate3d(0, 6px, 0);
        transform: translate3d(0, 6px, 0);
        -webkit-transition: opacity .3s cubic-bezier(.1,0,.3,1) .15s, -webkit-transform .3s cubic-bezier(.1,0,.3,1) .15s;
        transition: opacity .3s cubic-bezier(.1,0,.3,1) .15s, transform .3s cubic-bezier(.1,0,.3,1) .15s;
    }

    .w-effect-zoomInFade .w-item > figure p {
        padding: 0;
        margin-top: 10px;
        font-size: 80%;
        line-height: 20px;
        height: 20px;
        max-height: 20px; 
        color: #fff;
        font-style: italic;
        -ms-transform: translateY(6px);
        -webkit-transform: translate3d(0, 6px, 0);
        transform: translate3d(0, 6px, 0);
        -webkit-transition: opacity .3s cubic-bezier(.1,0,.3,1) .35s, -webkit-transform .3s cubic-bezier(.1,0,.3,1) .35s;
        transition: opacity .3s cubic-bezier(.1,0,.3,1) .35s, -webkit-transform .3s cubic-bezier(.1,0,.3,1) .35s;
    }

    .w-effect-zoomInFade .w-item > figure:hover .entry-title,
    .w-effect-zoomInFade .w-item > figure:hover p {
        opacity: 1;
        -ms-transform: translateY(0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    /* Products Slider */
    .w-products-slider .owl-carousel .owl-nav {
        margin-top: -50px;
    }

    .w-products-slider .owl-prev,
    .w-team-slider .owl-prev,
    .w-image-gallery .owl-carousel:hover .owl-prev {
        -ms-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
        left: 10px;
    }

    .w-products-slider .owl-next,
    .w-team-slider .owl-next,
    .w-image-gallery .owl-carousel:hover .owl-next {
        -ms-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
        right: 10px;
    }

    .w-products-slider:hover .owl-prev,
    .w-products-slider:hover .owl-next,
    .w-team-slider:hover .owl-prev,
    .w-team-slider:hover .owl-next,
    .w-image-gallery .owl-carousel:hover .owl-prev, 
    .w-image-gallery .owl-carousel:hover .owl-next {
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@media only screen and (min-width: 1024px) {
    .w-blog-posts .format-gallery .owl-prev {
        opacity: 0;
        -ms-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .w-blog-posts .format-gallery .owl-next {
        opacity: 0;
        -ms-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    .w-blog-posts .format-gallery:hover .owl-prev,
    .w-blog-posts .format-gallery:hover .owl-next {
        opacity: 1;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media only screen and (min-width: 1025px) {
    .w-info-box.w-large {
        text-align: left;
    }    

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .has-cover .entry-summary,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .has-cover .entry-summary {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 {
        float: left;
    }

    .col-lg-12 {      
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }    

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }

    /* Team Member */
    .w-team-slider .cover-image:before {
        content: '';
        position: absolute;
        background: #fff;
        z-index: 1;
        right: 0;
        left: 0;
        bottom: 0;
        top: 0;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .w-team-slider .team-member:hover .cover-image:before {
        opacity: 0.8;
    }

    .w-team-slider .cover-image:after {
        opacity: 1;
        content: '\e82b';
        font-family: 'aoraki';
        position: absolute;
        display: inline-block;
        width: 60px; 
        font-size: 60px;
        line-height: 60px;
        z-index: 2;
        text-align: center;
        margin: -30px 0 0 -30px;
        opacity: 0;
        left: 50%;
        right: auto;
        top: 45%!important;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .w-team-slider .owl-nav {
        top: 40%;
    }

    .w-team-slider .owl-nav > button {
        opacity: 0; 
    }

    .w-team-slider:hover .owl-nav > button {
        opacity: 0.2;
    }

    .w-team-slider:hover .owl-nav > button:hover {
        opacity: 1;
    }

    .w-team-slider .w-grid-layout .cover-image:after {
        margin-top: -10px;
        bottom: auto;
    }

    .w-team-slider .team-member:hover .cover-image:after {
        opacity: 1;
        color:inherit;
    }

    .w-team-slider .w-grid-layout .cover-image:after {
        left: 50%;
    }   

    /* Blog */
    .w-blog-posts.w-list .post:not(.format-quote) .entry-content {
        padding: 30px;
    }
}

@media only screen and (min-width: 1441px) {
    .w-section:not(.w-full) .col-3 .w-banner.w-1 .w-banner-title {
        padding: 15px;
    }

    .full-width.left-sidebar .w-blog-posts.w-list .has-cover .entry-summary,
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover .entry-summary {
        line-height: 25px;
        max-height: 100px;
        overflow: hidden;
    }

    .full-width.left-sidebar .w-blog-posts.w-list .has-cover.format-link .entry-summary,
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover.format-link .entry-summary {
        max-height: 115px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 991px) {
    .w-team-slider .w-grid-layout .team-member {
        width: 50%;
        float: left;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .w-banner:not(.w-3):not(.w-4) .w-banner-title {
        padding: 15px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner:not(.w-3):not(.w-4) .w-banner-title {
        padding: 10px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-3 .w-banner-title {
        margin: 15px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-4 .w-banner-title .heading-title,
    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-4 .w-banner-title .subheading {
        padding: 15px;
    }

    /* Blog */
    .left-sidebar .w-blog-posts.w-list .has-cover .post-media,
    .right-sidebar .w-blog-posts.w-list .has-cover .post-media,
    .left-sidebar .w-blog-posts.w-list .has-cover:not(.format-quote) .entry-content,
    .right-sidebar .w-blog-posts.w-list .has-cover:not(.format-quote) .entry-content {
        float: none;
        clear: both;
        width: 100%;
    }

    .w-blog-posts.w-list .format-link .entry-summary > p:not(.post-external-link) {
        display: none;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .full-width.left-sidebar .w-blog-posts.w-list .has-cover .entry-summary > p:not(.post-external-link), 
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover .entry-summary > p:not(.post-external-link) {
        display: none;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    .w-banner:not(.w-3):not(.w-4) .w-banner-title {
        padding: 15px;
    }

    .col-3 .w-banner.w-3 .w-banner-title {
        margin: 15px;
    }

    .col-3.col-lg-3.col-md-6 .w-banner.w-3 .w-banner-title {
        margin: 25px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-4 .w-banner-title .heading-title,
    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-4 .w-banner-title .subheading {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1280px) {
    .main-content:not(.left-sidebar):not(.right-sidebar) .w-blog-posts.w-list .has-cover .entry-summary {
        line-height: 25px;
        max-height: 50px;
        overflow: hidden;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1440px) {
    .full-width.left-sidebar .w-blog-posts.w-list .has-cover .entry-summary,
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover .entry-summary {
        line-height: 25px;
        max-height: 50px;
        overflow: hidden;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .col-md-12.w-overlap-box,
    .col-md-12 .w-overlap-box {
        left: auto!important;
        right: auto!important;
    }

    .w-heading.heading-3 .w-wrapper {
        padding: 20px 20px 100px 20px;
    }

    /* Blog */
    .w-blog-posts.w-list .has-cover .entry-summary {
        line-height: 25px;
        max-height: 50px;
        overflow: hidden;
    }

    .w-blog-posts.w-list .has-cover.format-link .entry-summary > p:not(.post-external-link) {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .left-sidebar .w-blog-posts.w-list .format-link .post-meta,
    .right-sidebar .w-blog-posts.w-list .format-link .post-meta,
    .left-sidebar .w-blog-posts.w-list .post-excerpt,
    .right-sidebar .w-blog-posts.w-list .post-excerpt  {
        display: none;
    }

    #wp-calendar tbody td {
        padding: 0;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1690px) {
    .full-width:not(.left-sidebar):not(.right-sidebar) .w-blog-posts.w-list .has-cover .entry-summary {
        line-height: 25px;
        max-height: 125px;
        overflow: hidden;
    }

    .full-width:not(.left-sidebar):not(.right-sidebar) .w-blog-posts.w-list .has-cover.format-link .entry-summary {
        line-height: 25px;
        max-height: 115px;
        overflow: hidden;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1079px) { 
    .title-wrapper.w-size-l .title{
        font-size: 60px;
    }
}

/*==================================
EXTRA CSS CLASSES
/*==================================*/
.text-left {
    text-align:left!important;
}

.text-center {
    text-align:center!important;
}

.text-right {
    text-align:right!important;
}

.hide,
.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

@media (max-width: 767px) {
    
    .hidden-xs {
        display: none!important;
    }

    /* Reverse columns order */
    .xs-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    
    .hidden-sm {
        display: none !important;
    }

    /* Reverse columns order */
    .sm-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    
    .hidden-md {
        display: none !important;
    }

    /* Reverse columns order */
    .md-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

}

@media (min-width: 1200px) {
    
    .hidden-lg {
        display: none !important;
    }

    /* Reverse columns order */
    .lg-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

}