/*==================================
SECTION & ROW
/*==================================*/
.row {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}
.w-section {
    position: relative;
    padding: 40px 0;
}
.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 > .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: 30px;
    padding-bottom: 30px;
}
.w-section.l-padding,
.row.l-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}
.w-section.xl-padding,
.row.xl-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
/* Flex row, vertical alignment & equal height */
.w-row-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.w-row-flex > .col {
    display: flex;
}
/* Equal Height */
.w-row-flex.w-equal-height > .col {
    align-items: stretch;
}
/* Align Middle */
.w-row-flex.w-align-middle > .col {
    align-items: center;
}
/* Align Bottom */
.w-row-flex.w-align-bottom > .col {
    align-items: flex-end;
}
.w-row-flex > .col > .col-inner {
    flex-grow: 1;
    width: 100%;
    height: auto;
}
/*==================================
COLUMN
/*==================================*/
.col {
    position: relative;
    display: block;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.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;
}
/* Parallax Background */
.w-parallax > .section-background > .bg-image.parallax {
    height: 200%;
    transform: translate3d(0, -50%, 0);
}
/*==================================
ANIMATED ELEMENT
/*==================================*/
.w-animation {
    visibility: hidden;
    animation-name: none !important;
}
/*==================================
EMPTY SPACE ELEMENT
/*==================================*/
.w-space {
    display: block;
    clear: both;
    float: none;
}
/*==================================
DROPCAP
/*==================================*/
.dropcap {
    position: relative;
    display: inline-block;
    height: 40px;
    line-height: 35px;
    font-size: 45px;
    font-weight: 700;
    margin: 8px 10px 0 0;
    padding: 0;
    color: #000;
    text-transform: uppercase;
}
.w-text-light .dropcap {
    background: #fff;
    color: #8accff;
}
/*==================================
HIGHLIGHT
/*==================================*/
.highlight {
    color: #8accff;
}
/*==================================
BUTTON & LINK BUTTON
/*==================================*/
.w-button {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 1;
    background: #8accff;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    min-width: 120px;
    cursor: pointer;
    padding: 8px 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    border: 1px solid #8accff;
    outline: none;
    border-radius: 0;
    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: 12px 40px;
    font-weight: 700;
    line-height: 16px;
    font-size: 14px;
}
.w-button:hover {
    color: #fff;

    /*padding-left: 0;
    padding-right: 30px;*/

}
.w-button::after,
.w-ghost-button::after {
    position: absolute;
    content: "\e82a";
    font-family: overlap;
    opacity: 0;
    right: 16px;
    top: 50%;
    line-height: 0;
    color: inherit;
    transition: all 0.3s;
    transform: translate3d(40px, 0, 0);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.w-button.large::after {
    right: 30px;
}
.w-button:hover::after,
.w-ghost-button:hover::after {
    opacity: 1;
    right: 10px;
    transform: translate3d(0, 0, 0);
}
.w-button.large:hover::after {
    opacity: 1;
    right: 16px;
}
.w-button > span,
.w-ghost-button > span {
    display: inline-block;
    transition: all 0.3s;
    transform: translateX(0);
}
.w-button:hover > span,
.w-ghost-button:hover > span {
    transform: translateX(-10px);
}
.w-button.large:hover > span,
.w-ghost-button.large:hover > span {
    transform: translateX(-20px);
}
.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: #8accff;
    color: #8accff;
    background: none;
    font-size: 12px;
    line-height: 14px;
    min-width: 120px;
    cursor: pointer;
    padding: 8px 20px;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    overflow: hidden;
    transition: all 0.3s;
}
.w-link-button {
    box-sizing: content-box;
}
.w-ghost-button:hover {
    color: inherit;
}
.w-link-button:not(.none) {
    color: #fff;
}
.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 {
    color: #8accff;
}
.w-link-button.large {
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
}
.w-link-button.none,
.w-link-button.large.none {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    text-align: left;
    background: transparent;
}
.w-link-button.none:hover,
.w-link-button.none:active {
    color: inherit;
}
.w-link-button i {
    margin-right: 6px;
    padding-left: 2px;
}
.w-link-button:not(.none) .w-border {
    background: #8accff;
    position: absolute;
    display: block;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.w-link-button:not(.none):not(.w-with-icon):hover .w-border,
.w-link-button:not(.none):not(.w-with-icon):active .w-border {
    top: 100%;
}
.w-link-button:not(.none).outline .w-border,
.w-link-button:not(.none).outline .w-border {
    top: 100%;
}
.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) {
    transition: 0.5s background 0.1s, color 0.3s;
}
.w-link-button:not(.none):not(.outline).w-with-icon:hover {
    background: none;
    opacity: 0.9;
    transition: background 0.1s;
}
.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: 52px;
    height: 52px;
}
.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 {
    animation: 0.2s toRightFromLeft 0.3s forwards;
}
.w-link-button.w-with-icon:not(.none) .w-button-text {
    display: inline-block;
    padding: 0 20px 0 14px;
}
/*==================================
TEXT BLOCK
/*==================================*/
.w-text-block {
    color: inherit;
}
.w-text-block ul > li {
    list-style: none;
    margin: 10px 0;
}
.w-text-block ul > li ul > li,
.w-text-block ol ul {
    margin-left: 0;
}
.w-text-block ul > li::before {
    font-family: overlap;
    content: "\e82f";
    font-size: inherit;
    display: inline-block;
    margin-right: 10px;
    margin-left: -20px;
    text-align: center;
    color: #8accff;
}
.w-text-block ol > li {
    margin: 10px 0 10px 0;
}
/*==================================
CUSTOM HEADING
/*==================================*/
.w-custom-heading p {
    margin-bottom: 25px;
}
.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 h4,
.w-donut-chart span {
    width: 100%;
    position: absolute;
    z-index: 10;
    text-align: center;
    display: inline-block;
    left: 0;
}
.w-donut-chart h4 {
    font-size: 16px;
    margin-top: 50px;
    top: 38%;
}
.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 h4 {
    margin: 15px 0 5px;
    font-size: 22px;
}
/*==================================
TABS
/*==================================*/
.w-tabs .w-tabs-nav {
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.w-tabs .w-tabs-nav li {
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}
.w-tabs .w-tabs-nav li {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.w-tabs .w-tabs-nav li.active {
    border-style: solid;
    border-top-color: #8accff;
}
.w-tabs .w-tabs-nav li::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    display: block;
    transition: transform 0.3s;
    transform: translate3d(0, -100%, 0);
}
.w-tabs .w-tabs-nav li.active::before {
    background: #8accff;
    transform: translate3d(0, 0, 0);

}
.w-tabs .w-tabs-nav li a {
    display: block;
    padding: 10px 15px;
    color: #222;
}
.w-tabs .w-tabs-nav li.active a {
    color: #8accff;
    border-color: #8accff;
}
.w-tab-wrapper {
    position: relative;
    transition: min-height 0.15s;
}
.w-tabs .w-tab-wrapper {
    margin-top: -7px;
}
.w-tab {
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}
.w-tabs .w-tab-wrapper .w-tab {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}
.w-tab.active {
    position: relative;
    z-index: 10;
    opacity: 1;
}
.w-tabs .w-tabs-nav li.active {
    box-shadow: 0 1px 0 #fff;
}
.w-tabs-nav h4 {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}
.w-tab > h4 {
    margin-bottom: 0;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
}
.w-tab .w-tab-content {
    text-align: left;
}
/*==================================
ICON TABS
/*==================================*/
.w-icon-tabs {
    text-align: center;
}
.w-icon-tabs .w-tabs-nav {
    margin: 0;
    padding: 0;
    display: inline-block;
}
.w-icon-tabs .w-tabs-nav li {
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.w-icon-tabs .w-tabs-nav li {
    list-style: none;
    float: left;
    margin: 0 20px 15px;
    padding: 4px;
    overflow: hidden;
    border: 1px solid transparent;
    border-bottom-color: #ccc;
    transition: border-color 0.3s;
}
.w-icon-tabs .w-tabs-nav li.active {
    border-style: solid;
    border-color: #8accff;
}
.w-icon-tabs .w-tabs-nav li a {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 75px;
    font-size: 40px;
    color: #d2d8d6;
}
.w-icon-tabs .w-tabs-nav li a::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #d2d8d6;
    content: "";
    transition: background-color 0.3s, transform 0.3s;
    transition-timing-function: ease, cubic-bezier(0.7, 0, 0.3, 1);
    transform: translate3d(0, 100%, 0) translate3d(0, 1px, 0);
}
.w-icon-tabs .w-tabs-nav li.active a {
    color: #fff;
    border-color: #8accff;
}
.w-icon-tabs .w-tabs-nav li.active a::after {
    background: #8accff;
    transform: translate3d(0, 0, 0);
}
.w-tab-icon .w-tab-content {
    margin-top: 20px;
}
.w-icon-tabs .w-tab > h3 {
    margin: 20px 0;
    transition: transform 0.3s;
    transform: translate3d(0, 50%, 0);
}
.w-icon-tabs .w-tab.active > h3 {
    transform: translate3d(0, 0, 0);
}
/*==================================
TOUR
/*==================================*/
.w-tour .w-tabs-nav {
    margin: 0;
}
.w-tour .w-tabs-nav li {
    list-style: none;
    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: #222;
}
.w-tour .w-tabs-nav li.active a {
    border-color: #8accff;
    color: #8accff;
}
.w-tour .w-tabs-nav h4 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}
/*==================================
COUNTER BOX
/*==================================*/
.w-counter-box {
    text-align: center;
    color: #8accff;
    margin: 0 auto;
    position: relative;
}
.w-counter-box span {
    display: block;
    text-align: center;
}
.w-counter-box.w-1 span {
    font-size: 40px;
    line-height: 40px;
}
.w-counter-box.w-2 span {
    font-size: 110px;
    line-height: 120px;
    position: absolute;
    width: 100%;
    top: 0;
    opacity: 0.3;
}
.w-counter-box .counter-value {
    font-size: 80px;
    line-height: 70px;
    font-weight: 400;
    display: block;
    margin: 0;
    color: #222;
}
.w-counter-box.w-1 .counter-value,
.w-text-light .w-counter-box.w-1 .counter-value {
    color: inherit;
    font-size: 60px;
    line-height: 60px;
}
.w-counter-box .counter-title {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    padding-top: 25px;
    text-transform: uppercase;
    color: inherit;
}
.w-counter-box.w-1 .counter-title {
    text-transform: none;
    padding: 0 10px;
    white-space: normal;
}
/*==================================
PRICING BOX
/*==================================*/
.w-pricing-box {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}
.w-section.full .w-pricing-box {
    margin: 20px;
}
.w-pricing-box .box-header {
    position: relative;
    border-color: #181818;
}
.w-pricing-box .box-header.with-bg-image {
    height: 300px;
    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: 20px;
}
.w-pricing-box .box-header svg > * {
    fill: #fff;
    transform-style: preserve-3d;
}
.w-pricing-box .box-header .w-header {
    position: relative;
    padding: 15px 10px 45px;
}
.w-pricing-box .box-header.with-bg-image .w-header {
    padding-bottom: 20px;
}
.w-pricing-box .box-header .w-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}
.w-pricing-box .box-header h3 {
    font-weight: 400;
    font-size: 30px;
    margin: 0;
    color: #fff;
}
.w-pricing-box .box-header h4 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 20px;
    color: #8accff;
    margin: 0;
}
.w-pricing-box.w-featured .box-header h4 {
    color: #000;
}
.w-pricing-box .box-price {
    padding: 15px 0 0;
    color: inherit;
    background: #fff;
}
.w-pricing-box .box-price::after {
    border-bottom: 1px dotted #d2d2d2;
    width: 25%;
    content: "";
    height: 1px;
    display: block;
    margin: 20px auto 0;
}
.w-pricing-box .box-price span {
    color: #333;
}
.w-pricing-box .box-price h4 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 0;
    color: inherit;
}
.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 {
    margin: 0;
    padding: 0;
}
.w-pricing-box .box-content ul li,
.w-pricing-box .box-content p {
    list-style: none;
    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: 700;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
}
.w-pricing-box .box-button:hover a {
    background-color: #8accff;
}
.w-pricing-box.w-featured .box-button:hover a {
    background-color: #000;
}
/* Featured */
.w-pricing-box.w-featured {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border: none;
}
.w-pricing-box.w-featured .box-price {
    padding: 20px 0 10px;
}
.w-pricing-box.w-featured .box-price h4 {
    font-size: 70px;
    line-height: 70px;
}
.w-pricing-box.w-featured .box-price sup {
    font-size: 40px;
}
.w-pricing-box.w-featured .box-content {
    padding-top: 15px;
}
.w-pricing-box.w-featured .box-price::after {
    margin-top: 30px;
}
/*==================================
TOGGLE
/*==================================*/
.w-toggle {
    border-color: #e6e6e6;
}
.w-toggle > h4 {
    cursor: pointer;
    padding: 5px 0;
    margin: 0;
    font-size: 16px;
    line-height: inherit;
    font-weight: 400;
    color: inherit;
    transition: color 0.3s;
    border-bottom: 1px solid;
    border-color: inherit;
}
.w-toggle > h4::after {
    font-family: overlap;
    content: "\e82f";
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
}
.w-toggle.active {
    border-bottom: 1px solid #e6e6e6;
}
.w-toggle.active > h4 {
    border-color: #8accff;
    color: #8accff;
}
.w-toggle.active > h4::after {
    content: "\e830";
}
.w-toggle > div {
    padding: 10px 0 20px;
    display: none;
    overflow: hidden;
}
.w-toggle.active > div {
    display: block;
}
.w-toggle > div > p {
    margin-bottom: 0;
}
/*==================================
ACCORDION
/*==================================*/
.w-accordion-tab.active {
    border-bottom: 1px solid #e6e6e6;
}
.w-accordion .acd-header {
    margin: 0;
    padding: 0;
    line-height: inherit;
    border-bottom: 1px solid #e6e6e6;
    text-transform: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    color: #666;
    transition: color 0.3s, border-color 0.3s;
}
.w-accordion .w-accordion-tab:hover .acd-header {
    color: #222;
}
.w-accordion .active .acd-header,
.w-accordion .active:hover .acd-header {
    color: #8accff;
    border-color: #8accff;
}
.w-accordion .acd-header span {
    display: block;
    padding: 5px 50px 5px 0;
    margin: 0;
    color: inherit;
}
.w-accordion .acd-header i {
    font-size: 22px;
    float: left;
    padding: 0 15px 0 0;
}
.w-accordion .acd-header::after {
    font-family: overlap;
    content: "\e82f";
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
}
.w-accordion .w-accordion-tab.active .acd-header::after {
    content: "\e830";
}
.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: 400;
    overflow: hidden;
    text-align: left;
}
.w-progress-bar .w-counter {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: right;
}
.w-progress-bar .w-bar-wrapper {
    height: 15px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}
.w-progress-bar .w-bar {
    position: relative;
    display: block;
    height: 100%;
    background: #211f1e;
    transform: translate3d(-100%, 0, 0);
    transition: transform 1.5s;
}
/*==================================
INFO BOX
/*==================================*/
.w-info-box {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.w-info-box .w-icon {
    display: inline-block;
    font-size: 24px;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
}
.w-info-box .w-icon i {
    display: inline-block;
    padding: 0 1px;
}
.w-info-box .w-content > h4 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}
.w-info-box .w-content > p {
    margin-bottom: 15px;
}
.w-info-box:not(.w-large) .w-read-more {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}
.w-info-box:not(.w-large) .w-read-more > a::before {
    content: "\e82f";
    font-family: overlap;
    display: inline-block;
    padding-right: 5px;
}
/* Small Icon */
.w-info-box.w-small:not(.w-top).w-none .w-icon {
    min-width: 28px;
}
.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: 10px;
}
.w-info-box.w-small.w-right .w-icon {
    margin-left: 10px;
}
.w-info-box.w-small.w-left.w-none .w-content > h4,
.w-info-box.w-small.w-right.w-none .w-content > h4 {
    margin-bottom: 20px;
}
/* Medium Icon */
.w-info-box.w-medium .w-icon {
    clear: both;
    float: none;
    font-size: 40px;
    margin: 0 auto 25px;
    line-height: 50px;
}
.w-info-box.w-medium.w-none .w-icon {
    width: 80px;
    text-align: center;
    margin: 0 0 25px;

}
.w-info-box.w-medium.w-top.w-none .w-icon {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
}
.w-info-box .w-content > h4 {
    font-size: 20px;
    line-height: 1.3;
}
.w-info-box:not(.w-top) .w-content > h4,
.w-info-box.w-circle:not(.w-top) .w-content > h4 {
    margin-bottom: 10px;
}
/* Large Icon */
.w-info-box.w-large {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: 0 20px;
    padding: 20px 0;
    text-align: inherit;
}
.w-info-box.w-large .w-icon {
    font-size: 90px;
    line-height: 1.3;
    transition: all 0.35s ease;
}
.no-touch .w-info-box.w-large:hover .w-icon {
    animation: toRightFromLeft 0.3s forwards;
}
.w-info-box.w-large .w-content {
    position: absolute;
    bottom: 30px;
    width: 100%;
    transform: translate3d(0, 10%, 0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.no-touch .w-info-box.w-large:hover .w-content {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.no-touch .w-info-box.w-large .w-content > :not(h4) {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.no-touch .w-info-box.w-large:hover .w-content > * {
    opacity: 1;
}
.w-info-box.w-large .w-content > h4 {
    transition: 0.3s all 0.2s ease;
    margin-bottom: 10px;
    font-size: 20px;
}
.no-touch .w-info-box.w-large:hover .w-content > h4 {
    animation: tTopfBottom 0.3s forwards;
}
.w-info-box.w-large .w-read-more {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 10px;
    margin-top: 10px;
}
.w-info-box.w-large .w-read-more > a {
    display: block;
}
.no-touch .w-info-box.w-large:hover .w-read-more > a {
    animation: 0.2s tTopfBottom 0.3s forwards;
}
/* Align Top*/
.w-info-box.w-medium.w-top {
    text-align: inherit;
}
/* Circle style */
.w-info-box.w-circle .w-icon {
    width: 60px;
    height: 60px;
    color: #555;
    border-radius: 50%;
    border: 1px solid #777;
    text-align: center;
    position: relative;
    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: 90px;
    height: 90px;
}
.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;
}
.w-info-box.w-circle .w-border {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-sizing: content-box;
    top: -3px;
    left: -3px;
    padding: 3px;
    z-index: -1;
    opacity: 0;
    box-shadow: 3px 3px #777;
    transform: rotate(-90deg);
    transition: opacity 0.2s, transform 0.2s;
}
.w-info-box.w-circle:hover .w-border {
    opacity: 1;
    transform: rotate(0deg);
}
/*==================================
PORTFOLIO GRID
/*==================================*/
.w-portfolio-grid {
    text-align: center;
}
.w-portfolio-grid .w-heading {
    margin-bottom: 20px;
}
.w-portfolio-grid:not(.w-overlap) .w-heading::after {
    content: "";
    width: 50px;
    height: 5px;
    background: #333;
    display: block;
    margin: 30px auto;
}
/* Filter */
.w-filter {
    margin: 0 0 30px 0;
    padding: 0;
    text-align: center;
}
.w-filter li {
    list-style: none;
    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: #211f1e;
}
.w-filter li.active a {
    color: #fff;
    background: #333;
}
.w-filter li::before,
.w-filter li::after {
    content: "";
    width: 8px;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.w-filter li.active::before,
.w-filter li.active::after {
    background: #333;
}
/* View */
.w-item-wrapper {
    padding: 0;
}
.w-view {
    position: relative;
    margin: 0;
    padding: 0;
}
.w-view figure {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    text-align: center;
    height: 100%;
}
.w-view div.cover-image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
}
.w-view figure a,
.w-view figure img {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}
.w-view figure figcaption {
    padding: 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    backface-visibility: hidden;
}
.w-view figure figcaption::before,
.w-view figure figcaption::after {
    pointer-events: none;
}
.w-view figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Grid Layout */
.w-view > li {
    list-style: none;
}
.w-item {
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
}
.w-grid-space .w-view {
    margin-right: -16px;
}
.w-section.w-full .w-grid-space .w-view {
    margin-left: 0;
    margin-right: -16px;
}
.w-grid-space .w-item {
    padding: 0 16px 16px 0;
}
/* Masonry Layout */
.w-portfolio-grid.w-standard .w-view {
    margin-right: -30px;
}
.w-full .w-portfolio-grid.w-standard .w-view {
    margin-left: 15px;
    margin-right: -15px;
}
.w-portfolio-grid.w-standard .w-item {
    width: 25%;
    padding: 0 30px 30px 0;
}
.w-portfolio-grid.w-standard .w-item.w-w2 {
    width: 50%;
}
/* Overlap Layout */
.w-portfolio-grid.w-overlap .w-item {
    height: auto;
}
.w-full .w-portfolio-grid.w-overlap {
    margin: 0 15px;
}
.w-full .w-portfolio-grid.w-overlap .w-view {
    margin-left: 0;
    margin-right: 0;
}
/* 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 30px 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 {
    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-view .cover-image {
    opacity: 1;
}
.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;
}
.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 h3 {
    font-size: 26px;
    line-height: 28px;
    max-height: none;
    margin-bottom: 0;
    color: inherit;
    padding: 10px 0 0;
}
.w-photoset .w-item figcaption p {
    padding: 5px 0;
    max-height: none;
}
.w-photoset .w-item figcaption h3 a {
    color: #000;
}
/* Portfolio Hover Effect */
.w-view figure h3 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 800;
    overflow: hidden;
    font-size: 22px;
    line-height: 35px;
    max-height: 70px;
    transition: all 0.5s ease-in-out;
}
.w-view figure h3 a {
    color: inherit;
}
.w-portfolio-grid:not(.w-photoset).grid-4-cols .w-view figure h3 {
    max-height: 70px;
}
.w-view figure p {
    opacity: 0;
    margin: 0;
    overflow: hidden;
    max-height: 20px;
    letter-spacing: 1px;
    font-size: 68.5%;
    text-transform: capitalize;
}
.w-view figure > a {
    font-size: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}
.w-view figure figcaption > span {
    position: absolute;
    left: 0;
    z-index: 200;
    width: 100%;
    opacity: 0;
    padding: 0 30px;
    text-align: left;
    transition: all 0.3s;
}
.w-view figure figcaption > span > a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 22px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}
.w-view figure figcaption > span > a::before {
    font-family: overlap;
    content: "\e832";
}
.w-view figure figcaption > span > a:hover {
    background: rgba(255, 255, 255, 0.4);
}
.w-portfolio-grid .w-showmore {
    padding: 20px 0;
    border: none;
    display: block;
}
/*==================================
HEADING
/*==================================*/
.w-heading .heading-title {
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 30px;
}
.w-heading .heading-title::after {
    color: inherit;
    font-weight: lighter;
}
.w-heading.heading-1 .heading-title {
    margin-top: -5px;
}
.w-heading.heading-3 .w-wrapper {
    background: #fff;
    display: inline-block;
    padding: 10px 20px 20px;
}
.w-heading.heading-4,
.w-heading.heading-5 {
    padding-top: 20px;
}
.w-heading.heading-6 {
    position: relative;
}
.w-heading.heading-6 .heading-title {
    font-size: 20px;
    color: #8accff;
}
.w-heading:not(.heading-6):not(.heading-7) .subheading {
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    color: #8accff;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}
.w-heading:not(.heading-1):not(.heading-6):not(.heading-7) .subheading {
    margin-top: 10px;
}
.w-heading.heading-6 .subheading,
.w-heading.heading-7 .subheading {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}
.w-heading.heading-6::after {
    content: "";
    height: 10px;
    display: block;
    width: 100%;
}
.w-heading.heading-7 .heading-title {
    font-size: 20px;
}
.w-heading.heading-7 .heading-title::before,
.w-heading.heading-7 .heading-title::after {
    width: 30px;
    height: 1px;
    content: "";
    background-color: #8accff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}
/*==================================
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 0 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 0 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 0 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: #8accff;
    border: 2px solid #8accff;
}
.w-icon-block.w-small {
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 18px;
}
.w-icon-block.w-medium {
    width: 60px;
    height: 60px;
    line-height: 55px;
    font-size: 30px;
}
.w-icon-block.w-large {
    width: 140px;
    height: 140px;
    line-height: 136px;
    font-size: 60px;
}
.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: 80px;
}
.w-icon-block i,
.w-icon-block i:hover,
.w-icon-block:hover i {
    position: relative;
    color: inherit;
    display: block;
    transition: none;
}
.w-icon-block.w-none a > i {
    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 #8accff;
    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;
    transition: none;
    display: inline-block;
}
/* Effect 1 */
.w-effect-1 {
    transition: background 0.2s;
}
.w-effect-1:hover i,
.w-effect-1:hover a i {
    color: #fff;
}
.w-effect-1 .w-border {
    top: -8px;
    left: -8px;
    padding: 6px;
    background: none !important;
    opacity: 0;
    transform: scale(1.1, 1.1);
    transition: transform 0.2s, opacity 0.2s;
}
.w-effect-1:hover .w-border {
    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;
    transition: transform 0.2s, opacity 0.2s;
}
.w-effect-2:hover .w-border {
    opacity: 0;
    transform: scale(0, 0);
    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;
    transition: transform 0.2s, opacity 0.3s;
}
.w-effect-3:hover .w-border {
    transform: scale(1.3, 1.3);
    opacity: 0;
}
/* Effect 4 */
.w-effect-4 {
    overflow: hidden;
    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 {
    animation: toRightFromLeft 0.3s forwards;
}
@keyframes toRightFromLeft {

    49% {
        transform: translate(100%);
    }

    50% {
        opacity: 0;
        transform: translate(-100%);
    }

    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;
    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 {
    animation: toLeftFromRight 0.3s forwards;
}
@keyframes toLeftFromRight {

    49% {
        transform: translate(-100%);
    }

    50% {
        opacity: 0;
        transform: translate(100%);
    }

    51% {
        opacity: 1;
    }
}
/* Effect 6 */
.w-effect-6 {
    overflow: hidden;
    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 {
    animation: toTopFromBottom 0.3s forwards;
}
@keyframes toTopFromBottom {

    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}
/* Effect 7 */
.w-effect-7 {
    overflow: hidden;
    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 {
    animation: toBottomFromTop 0.3s forwards;
}
@keyframes toBottomFromTop {

    49% {
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}
/*==================================
TESTIMONIAL SLIDER
/*==================================*/
.w-testimonials-slider {
    position: relative;
    padding-top: 50px;
    margin-bottom: 70px;
}
.w-testimonials-slider::before {
    content: "";
    background: rgba(244, 244, 244, 0.9);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    display: block;
}
.w-testimonials-slider .w-heading {
    position: relative;
    top: -60px;
}
.w-testimonials-slider .w-border {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    background: #8accff;
}
.owl-carousel .owl-item .w-testimonial .w-border > img {
    max-width: none;
    display: inline-block;
    position: relative;
    top: 20px;
    left: 20px;
}
.w-testimonial .w-header {
    text-align: center;
    margin: 20px 0;
}
.w-testimonial .w-header::after {
    content: "";
    width: 80px;
    height: 5px;
    background: #8accff;
    display: block;
    margin: 0 auto;
}
.w-testimonial .w-customer h4 {
    margin-bottom: 0;
    padding-top: 10px;
    font-size: 20px;
    line-height: 1.3;
}
.w-testimonial .w-customer h6 {
    margin-bottom: 20px;
    font-size: 14px;
}
.w-testimonial .w-customer a:hover {
    color: #333;
}
.w-testimonial .w-content {
    position: relative;
    min-height: 60px;
    font-size: 18px;
    color: #333;
    text-align: center;
    padding: 10px 20px 30px;
}
.w-testimonial .w-content::before {
    font-family: overlap;
    content: "\e80e";
    font-size: 90px;
    line-height: 70px;
    color: #8accff;
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    top: 5%;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    transform: rotate(180deg);
}
.w-testimonials-slider .owl-nav {
    width: 100px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
}
.w-testimonials-slider .owl-nav > button {
    margin-top: 10px;
}
.w-testimonials-slider .owl-nav .owl-prev::before {
    content: "\e829";
}
.w-testimonials-slider .owl-nav .owl-next::before {
    content: "\e82a";
}
.w-testimonials-slider .owl-dot {
    margin: 20px 0;
}
/*==================================
TEAM MEMBER SLIDER
/*==================================*/
.w-team-slider .team-member {
    position: relative;
    padding: 0 5px 30px;
    background: #fff;
    display: block;
    min-height: 100px;
}
.w-team-slider .w-grid-layout .team-member {
    background: transparent;
}
.w-team-slider .owl-carousel .team-member {
    padding: 0;
}
.w-team-slider .owl-carousel .team-member {
    overflow: hidden;
}
.w-team-slider .team-member > a {
    display: block;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}
.w-team-slider .cover-image {
    display: block;
    text-align: center;
    color: #8accff;
}
.w-team-slider .cover-image::before {
    content: "";
    position: absolute;
    background: #fff;
    z-index: 1;
    width: 100px;
    height: 100px;
    right: 0;
}
.w-team-slider .w-grid-layout .cover-image::before {
    bottom: 0;
    left: 0;
    right: auto;
    background: rgba(255, 255, 255, 0.8);
}
.w-team-slider .w-grid-layout .cover-image img {
    width: 100%;
    max-width: none;
    vertical-align: bottom;
}
.w-team-slider .cover-image::after {
    opacity: 1;
    content: "\e82f";
    font-family: overlap;
    position: absolute;
    display: inline-block;
    width: 100px;
    font-size: 100px;
    line-height: 100px;
    z-index: 2;
}
.w-team-slider .owl-carousel .cover-image::after {
    top: 0;
    right: 0;
}
.w-team-slider .w-grid-layout .cover-image::after {
    bottom: 5px;
    left: 0;
}
.w-team-slider .member-name {
    width: 100%;
    position: absolute;
    text-align: center;
}
.w-team-slider .owl-carousel .member-name {
    bottom: 0;
    color: #fff;
    background: rgba(51, 51, 51, 0.7);
    padding: 10px;
}
.w-team-slider .member-name h3,
.member-content .member-detail h3 {
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 32px;
}
.w-team-slider .member-name h3 {
    color: inherit;
}
.w-team-slider .owl-carousel .member-name h3 {
    font-size: 24px;
}
.w-team-slider .member-name h4,
.member-content .member-meta {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #8accff;
    margin-bottom: 10px;
}
.w-team-slider .social-link {
    height: 40px;
    overflow: hidden;
}
.w-team-slider .social-link a,
.member-detail .social-link a {
    padding: 5px 10px;
    min-width: 30px;
    font-size: 18px;
    display: inline-block;
    opacity: 0.7;
}
.w-team-slider .social-link a {
    color: inherit;
    position: relative;
}
.member-detail .social-link a:first-child {
    padding-left: 1px;
}
.w-team-slider .social-link a:hover {
    opacity: 1;
}
.w-team-slider .owl-nav > button {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}
.w-team-slider .owl-nav > button:hover {
    color: #fff;
}
.w-team-slider .popup-content {
    display: none;
}
.member-content {
    background: #fff;
    position: relative;
}
.member-detail .social-link {
    border-style: solid;
    border-color: #e6e6e6;
    border-width: 1px 0;
}
.member-content .member-detail {
    padding: 30px;
    height: 100%;
}
.w-team-slider .w-grid-layout .team-member {
    margin-bottom: 70px;
    padding: 0;
}
.w-team-slider .w-grid-layout .member-name {
    bottom: auto;
    top: -20px;
    padding: 0;
}
.w-team-slider .w-grid-layout .member-name h3 {
    margin-bottom: 0;
    font-weight: 400;
}
.w-team-slider .w-grid-layout .social-link {
    display: none;
}
.w-team-slider .w-grid-layout .member-name h3 > span {
    position: absolute;
    opacity: 0.2;
    top: 5px;
    left: 50%;
    display: inline-block;
    margin-right: auto;
    min-width: 90px;
    margin-left: -45px;
    font-size: 100px;
    color: #8accff;
}
.w-team-slider .w-grid-layout .member-name h4 {
    letter-spacing: 2px;
}
/*==================================
Clients Carousel
/*==================================*/
.w-clients-carousel .owl-nav > button {
    background: none;
}
.w-clients-carousel .owl-item {
    text-align: center;
}
.w-clients-carousel .owl-item img {
    width: auto;
    display: inline-block;
    opacity: 0.75;
    transform: scale3d(0.9, 0.9, 1);
    transition: all 0.3s;
}
.w-clients-carousel .owl-item:hover img {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}
/*==================================
ACTION BOX
/*==================================*/
.w-action-box {
    padding: 40px;
    text-align: center;
}
.w-action-box h3 {
    font-weight: 700;
    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;
    perspective: 1000px;
    z-index: 5;
}
.w-section-separator svg {
    position: absolute;
    z-index: 99;
    left: 0;
    width: 100%;
    height: 80px;
}
.w-section-separator.w-top svg {
    top: -78px;
}
.w-section-separator.w-bottom svg {
    top: 0;
    z-index: 999;
    transform: rotateX(180deg);
}
.w-section-separator.w-wave-alt svg,
.w-section-separator.w-mountain-alt svg {
    transform: rotateY(180deg);
}
/*==================================
SEPARATOR
/*==================================*/
.w-separator {
    position: relative;
    display: block;
    width: 100%;
    padding: 2px 0;
    overflow: hidden;
    margin: 0 auto 10px;
}
.w-separator .w-text {
    border-style: inherit;
    border-color: inherit;
    padding: 0 10px;
    font-size: 20px;
    line-height: 20px;
    vertical-align: middle;
}
.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.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: -30px;
}
.w-image-gallery.w-masonry .w-item {
    padding: 0 30px 30px 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-layout-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 {
    transform: scale(1, 1);
    transition: opacity 0.35s, transform 0.35s;
}
.w-image-gallery .w-effect-zoomIn .w-item:hover .cover-image {
    transform: scale(1.05, 1.05);
}
.w-image-gallery .w-effect-zoomOut .w-item .cover-image {
    transform: scale(1.05, 1.05);
    transition: opacity 0.35s, transform 0.35s;
}
.w-image-gallery .w-effect-zoomOut .w-item:hover .cover-image {
    transform: scale(1, 1);
}
.w-image-gallery .w-effect-rotateZoomIn .w-item .cover-image {
    transform: scale(1, 1);
    transition: opacity 0.35s, transform 0.35s;
}
.w-image-gallery .w-effect-rotateZoomIn .w-item:hover .cover-image {
    transform: scale(1.5, 1.5) rotate(10deg);
}
/*==================================
OVERLAP SLIDER
/*==================================*/
.w-slider {
    position: relative;
    clear: both;
    float: none;
}
.w-slide {
    position: relative;
    padding-bottom: 20px;
}
.w-slide .w-heading {
    margin-top: -30px;
}
.w-slide .w-slider-content {
    padding: 20px;
    margin-top: -20px;
    text-align: center;
}
.w-slider-dots .owl-dot {
    margin-top: 0;
}
.w-slider-nav {
    display: none;
}
.w-slider-dots {
    text-align: center;
}
/*==================================
FACEBOOK LIKE BOX
/*==================================*/
.w-facebook-box {
    overflow: hidden;
    text-align: center;
    max-width: 100%;
}
.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: 99;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #211f1e;
    text-align: center;
    overflow: hidden;
    opacity: 0.8;
    transition: all 0.3s;
}
.w-flickr:hover .w-header {
    opacity: 0;
    z-index: 0;
}
.w-flickr .w-header h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 10px;
    color: #fff;
    transform: translateY(-50%);
}
.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;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s;
}
.w-flickr:hover .w-header i {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}
.w-flickr:hover .w-header span {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}
.w-flickr ul {
    margin: 0;
    padding: 0;
}
.w-flickr li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.w-flickr li a {
    margin: 0;
    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 {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.w-instagram-photos li {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
}
.w-instagram-photos li a,
.w-instagram-photos li img {
    flex: 1;
    height: 100%;
    line-height: 0;
    object-fit: cover;
    width: 100%;
}
.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;
    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;
    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;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s;
}
.w-instagram .w-header span {
    font-size: 18px;
    padding-bottom: 10px;
}
.w-instagram:hover .w-header i {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}
.w-instagram:hover .w-header span {
    opacity: 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;
}
.w-instagram-photos .owl-stage {
    display: flex;
    flex-wrap: wrap;
}
.w-instagram-photos .owl-item {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}
.w-instagram-photos .owl-item a,
.w-instagram-photos .owl-item img {
    flex: 1;
    height: 100%;
    line-height: 0;
    object-fit: cover;
    width: 100%;
}
/*==================================
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;
    background: #fff;
    border: 1px solid #f4f4f4;
    transition: all 0.3s;
}
.w-blog-posts:not(.w-overlap) .w-item > .post:hover,
.w-blog-posts.w-overlap .w-item > .post.no-cover:hover,
.w-blog-posts.w-overlap .w-item > .post.format-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
}
.post-meta {
    color: #888;
    margin-bottom: 10px;
    height: 28px;
    overflow: hidden;
}
.post-meta span {
    font-size: 14px;

}
.post-meta > span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    padding-right: 9px;
}
.post-meta > span:last-child {
    margin: 0;
    padding: 0;
}
.post-meta > span:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 12px;
    background: #989898;
}
.post-meta span strong {
    margin-right: 5px;
}
.post-meta a {
    color: #8accff;
    text-transform: capitalize;
    padding-right: 2px;
}
.post-meta a:hover {
    color: #333;
}
.meta-edit .post-edit-link::before {
    font-family: overlap;
    content: "\e806";
    font-style: normal;
}
.meta-comment {
    display: inline-block;
}
.meta-comment a {
    display: block;
}
.meta-comment i {
    font-family: overlap;
    margin-right: 5px;
    font-style: normal;
}
.w-comment-empty::before {
    content: "\e805";
}
.w-comment::before {
    content: "\e804";
}
.post .post-date {
    position: relative;
    display: block;
    float: left;
    color: #211f1e;
}
.post .post-date a {
    display: block;
    text-align: center;
    padding: 10px 5px;
    color: #fff;
    background: #3b3b3b;
    width: 50px;
}
.post .post-date a::after {
    content: "";
    position: absolute;
    display: block;
    z-index: -1;
    left: 0;
    bottom: -12px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 12px solid #3b3b3b;
}
.post .post-date strong,
.post .post-date span {
    display: block;
}
.post .post-date a strong {
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    margin: 8px 0;
    color: #8accff;
}
.post .post-date a span {
    font-size: 11px;
    line-height: 11px;
    margin: 0;
    text-transform: uppercase;
}
.post-share {
    position: relative;
    font-size: 18px;
    padding: 20px 0;
    margin: 0;
    display: block;
    white-space: nowrap;
    transition: color 0.3s;
}
.w-blog-posts .format-quote .post-share {
    padding-top: 0;
}
.post-share a {
    display: inline-block;
    padding: 0 10px;
    color: #ccc;
}
.post .post-share a:first-child {
    padding-left: 0;
}
.post-share a:hover {
    color: #8accff;
}
.w-blog-posts .post-date {
    position: absolute;
    z-index: 90;
    right: 15px;
}
.w-blog-posts .post-media {
    overflow: hidden;
    position: relative;
}
.w-blog-posts .no-cover.format-audio .post-media,
.w-blog-posts .no-cover.format-video .post-media {
    height: 100px;
}
.w-blog-posts:not(.w-overlap) .post.has-cover .post-media::after {
    content: "";
    position: absolute;
    z-index: 90;
    left: 0;
    bottom: -2px;
    display: block;
    width: 101%;
    height: 170px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 165px);
}
.w-blog-posts .post-media a {
    display: block;
    line-height: 0;
}
.w-blog-posts .post-media img {
    width: 100%;
    height: auto;
}
.w-blog-posts .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;
}
.w-blog-posts .no-cover.format-audio .post-media-icon:hover,
.w-blog-posts .no-cover.format-video .post-media-icon:hover {
    color: inherit;
}
.w-blog-posts .post-media-icon::after {
    font-family: overlap;
    font-size: 26px;
    transition: color 0.5s ease;
}
.w-blog-posts .no-cover.format-audio .post-media-icon,
.w-blog-posts .no-cover.format-video .post-media-icon {
    width: auto;
    height: auto;
    background: transparent;
    top: 20px;
    left: 20px;
    line-height: 70px;
}
.w-blog-posts .no-cover.format-audio .post-media-icon::after,
.w-blog-posts .no-cover.format-video .post-media-icon::after {
    font-size: 70px;
}
.w-blog-posts .format-audio .post-media-icon::after {
    content: "\e80a";
}
.w-blog-posts .format-video .post-media-icon::after {
    content: "\e80b";
}
.w-blog-posts .post-content {
    padding: 20px;
    position: relative;
}
.w-blog-posts .format-quote .post-content {
    padding: 60px 20px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.w-blog-posts .format-quote .post-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
}
.w-blog-posts:not(.w-overlap) .post.has-cover:not(.format-quote) .post-content {
    position: relative;
    z-index: 90;
    margin-top: -80px;
    border-top: none;
}
.w-blog-posts:not(.w-overlap) .post-title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
}
.w-blog-posts.w-overlap .format-link .readmore-link {
    margin-top: 0;
}
.post-external-link a {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 5px 20px;
    display: block;
    margin-top: 20px;
    font-size: 20px;
    text-overflow: ellipsis;
    height: 44px;
    white-space: nowrap;
    overflow: hidden;
}
.left-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-external-link a,
.right-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-external-link a {
    max-width: 315px;
}
.post-external-link a i {
    padding-right: 10px;
    font-size: 18px;
}
.w-blog-posts .post.format-quote .post-title {
    padding: 70px 0 10px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    white-space: normal;
    margin: 0;
    height: auto;
    max-height: none;
}
.w-blog-posts .post.format-quote .quote-author {
    margin: 40px 0 20px;
    font-size: 18px;
    font-weight: 400;
    display: block;
    position: relative;
}
.w-blog-posts .post.format-quote .quote-author::before {
    content: "";
    width: 20px;
    height: 1px;
    background: #333;
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
}
.w-blog-posts .post.format-quote .post-content .w-wrapper {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.w-blog-posts .post.format-quote .post-title a::before {
    font-size: 80px;
    line-height: 80px;
    width: 62px;
    opacity: 0.7;
    left: 50%;
    margin-left: -10px;
    top: -75px;
    font-family: overlap;
    content: "\e80e";
    color: #8accff;
    position: absolute;
    z-index: -1;
    display: inline-block;
    transform: rotate(180deg);
}
.w-blog-posts .post.format-link .post-title a::before {
    content: "\e808";
    font-family: overlap;
    margin-right: 10px;
    padding-left: 1px;
}
.w-blog-posts .post-title a {
    color: inherit;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}
.w-blog-posts .post.format-quote .post-title a {
    position: relative;
}
.w-blog-posts .no-cover:not(.format-quote)::before,
.w-blog-posts .no-cover:not(.format-audio)::before,
.w-blog-posts .no-cover:not(.format-video)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: linear-gradient(to bottom, rgba(230, 230, 230, 1) 0, rgba(255, 255, 255, 1) 100px);
}
.w-blog-posts .no-cover:not(.format-quote) .post-title {
    padding-right: 65px;
    max-height: 60px;
    margin: 20px 0 0;
    white-space: normal;
}
.w-blog-posts .no-cover.format-audio .post-title,
.w-blog-posts .no-cover.format-video .post-title {
    padding: 0;
    margin: 0;
}
.w-blog-posts .no-cover:not(.format-quote):not(.format-audio):not(.format-video) .post-meta {
    padding-right: 65px;
}
.w-blog-posts .readmore-link {
    display: block;
}
.w-blog-posts .readmore-link a {
    display: inline-block;
    border: 1px solid #8accff;
    padding: 8px 12px;
    margin-top: 20px;
}
.w-blog-posts .readmore-link a:hover {
    background: #8accff;
    color: #fff;
}
.w-blog-posts .owl-nav {
    left: 20px;
    top: 20px;
    margin-top: 0;
}
.w-blog-posts .post-meta {
    clear: both;
    height: auto;
}
.w-blog-posts .pagination {
    margin: 50px 0 0 0;
}
/** Default Layout */
.w-blog-posts.w-large .w-item {
    margin-bottom: 30px;
    float: none;
}
.w-blog-posts.w-large .w-item:last-child {
    margin-bottom: 0;
}
.w-blog-posts.w-large .w-item > .post.sticky {
    border-style: solid;
    border-color: #8accff;
    border-width: 0 0 0 5px;
}
/** Overlap Layout **/
.w-blog-posts.w-overlap .w-item {
    clear: both;
    float: none;
    margin-bottom: 70px;
}
.w-blog-posts.w-overlap .format-gallery .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 10px;
}
.w-blog-posts.w-overlap .post-external-link {
    margin-bottom: 5px;
}
.w-blog-posts.w-overlap .post-external-link a {
    margin-top: 5px;
}
.w-blog-posts.w-overlap .post-title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
}
/** Masonry Layout **/
.w-blog-posts.w-masonry .w-view {
    margin-right: -16px;
}
.w-blog-posts.w-masonry .w-item {
    padding: 0 16px 16px 0;
}
.left-sidebar .w-blog-posts.w-masonry .w-item.item-1 {
    z-index: 1;
}
.w-blog-posts.w-masonry .post.has-cover .post-media::after {
    height: 140px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 135px);
}
.w-blog-posts.w-masonry .post-share {
    width: 70%;
    display: inline-block;
    vertical-align: top;
}
.w-blog-posts.w-masonry .meta-right {
    float: right;
    width: 30%;
    text-align: right;
    padding: 20px 0;
}
.w-blog-posts.w-masonry.grid-3-cols .post-external-link a,
.w-blog-posts.w-masonry.grid-4-cols .post-external-link a {
    display: block;
    font-size: 14px;
    height: 33px;
}
.w-blog-posts.w-masonry.grid-3-cols .post-external-link a i,
.w-blog-posts.w-masonry.grid-4-cols .post-external-link a i {
    font-size: 14px;
}
/*==================================
VIDEO PLAYER
/*==================================*/
.w-video.wp-default-video {
    padding-top: 0;
}
.w-video .wp-video {
    position: relative;
}
.w-video > video {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 99;
    margin: 0;
    top: 0;
    left: 0;
    box-sizing: border-box;
}
/*==================================
RECENT POSTS & POPULAR POSTS
/*==================================*/
.w-posts li {
    min-height: 60px;
    padding: 5px 0;
    margin-bottom: 5px;
}
.w-posts .thumb {
    margin-right: 8px;
}
.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;
}
/*==================================
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 {
    color: #bcbcbc;
}
.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-testimonials-slider .owl-stage-outer::before,
.w-text-light .w-tabs .w-tabs-nav li.active a,
.w-text-light .w-accordion .w-accordion-tab:not(.active):hover .acd-header,
.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 {
    color: #fff;
}
.w-text-light .w-info-box.w-circle .w-icon {
    color: #ccc;
}
.w-text-light .owl-dot span,
.w-text-light .w-filter li.active a,
.w-text-light .w-filter li.active::before,
.w-text-light .w-filter li.active::after {
    background: #fff;
}
.w-text-light .owl-dot.active span {
    border-color: #fff;
    background: none;
}
.w-text-light .w-icon-tabs .w-tabs-nav li:not(.active) a,
.w-text-light .w-testimonial .w-customer p {
    color: #aaa;
}
.w-text-light .w-icon-tabs .w-tabs-nav li:not(.active) a::after {
    background: #727272;
}
.w-text-light .w-icon-tabs .w-tabs-nav li:not(.active) a {
    border-color: #aaa;
}
.w-text-light .w-testimonials-slider::before,
.w-text-light .w-testimonials-slider .owl-nav > button {
    background: rgba(0, 0, 0, 0.4);
}
.w-text-light .w-tabs .w-tabs-nav li {
    border-color: #222;
}
.w-text-light .w-tabs .w-tabs-nav li.active {
    box-shadow: 0 1px 0 #000;
    background: #000;
}
.w-text-light .w-tabs .w-tabs-nav li {
    background: #111;
}
.w-text-light .w-tabs .w-tabs-nav li a {
    color: #999;
}
.w-text-light .w-filter li.active a {
    color: #000;
}
.w-text-light .w-tabs .w-tab-wrapper .w-tab,
.w-text-light .w-heading.heading-3 .w-wrapper {
    background: #000;
}
.w-text-light .w-tour .w-tabs-nav li:not(.active) a,
.w-text-light .w-tabs .w-tab-wrapper .w-tab {
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.w-text-light .w-accordion .acd-header {
    border-color: rgba(255, 255, 255, 0.1);
    color: #999;
}
.w-text-light .w-accordion-tab.active {
    border-color: rgba(255, 255, 255, 0.1);
}
.w-text-light .w-info-box.w-large .w-read-more {
    border-color: rgba(255, 255, 255, 0.2);
}
.w-text-light .w-testimonials-slider::before {
    color: rgba(255, 255, 255, 0.15);
}
.w-text-light .w-team-slider .owl-nav > button {
    background-color: #fff;
}
.w-text-light .w-heading.heading-4::before,
.w-text-light .w-heading.heading-5::after,
.w-text-light .w-heading.heading-6::before,
.w-text-light .w-heading.heading-6.text-left::before,
.w-text-light .w-heading.heading-6.text-right::before {
    background-color: rgba(255, 255, 255, 0.5);
}
.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 {
    background-color: rgba(255, 255, 255, 0.2);
}
.w-text-light .w-testimonials-slider .w-customer img {
    border-color: rgba(255, 255, 255, 0.4);
}
/*==================================
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: 400;
    font-style: normal;
    left: 50%;
    position: absolute;
    top: 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 {
    text-align: left;
}
.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;
    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 */
@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: overlap;
    content: "\e82c";
    margin: 2px 0;
    line-height: 8px;
    font-style: normal;
    opacity: 0;
    animation: fadeInOut 2s infinite;
    animation-delay: 3s;
}
.w-scroll-button.w-button-2 a i::before {
    animation-delay: 3.25s;
}
.w-scroll-button.w-button-2 a::after {
    animation-delay: 3.5s;
}
/*==================================
Google Maps
/*==================================*/
.w-map-info {
    padding: 20px;
}
.w-map-info p {
    margin-bottom: 10px;
}
/*==================================
CONTACT FORM 7
/*==================================*/
.wpcf7 {
    margin: 0;
    padding: 0;
}
.wpcf7-response-output {
    color: #f00;
    margin: 2em 0 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 #f00;
}
.wpcf7-spam-blocked {
    border: 2px solid #ffa500;
}
.wpcf7-validation-errors {
    border: 2px solid #f7e700;
    background: rgba(247, 231, 0, 0.5);
    margin: 2em 15px 1em;
    padding: 0.5em 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 #f00;
    background: #fff;
    padding: 0.2em 0.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;
}
/*==================================
MEDIA QUERIES
/*==================================*/
/*==================================
EXTRA CSS CLASSES
/*==================================*/
.hide,
.hidden {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
    visibility: hidden;
}
@media only screen and (min-width: 599px) and (max-width: 991px) {

    .w-pricing-box .box-header.with-bg-image {
        height: 450px;
    }

    .w-team-slider .w-grid-layout .team-member {
        width: 50%;
        float: left;
    }

    .w-testimonial .w-content {
        padding: 0 100px 80px 170px;
        text-align: left;
    }

    .w-testimonial .w-content::before {
        left: 150px;
        top: -15px;
        margin: 0;
        opacity: 0.5;
    }
}
@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 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:not(.heading-6):not(.heading-7) .heading-title {
        font-size: 58px;
        line-height: 58px;
    }

    .w-testimonials-slider {
        margin-bottom: 50px;
    }

    .w-testimonials-slider::before {
        left: 70px;
        right: 50px;
    }

    .w-testimonials-slider .w-border {
        float: left;
        margin: 0;
    }

    .w-testimonial .w-header {
        text-align: left;
        margin: 0 100px 0;
        padding: 20px;
    }

    .w-testimonials-slider .w-heading {
        position: absolute;
        right: 90px;
        top: -60px;
    }

    .w-testimonial .w-header::after {
        margin: 0 0 30px 10px;
    }

    .w-testimonial .w-customer h4 {
        font-size: 30px;
    }

    .w-testimonial .w-customer h6 {
        font-size: 16px;
    }

    .w-testimonial .w-customer h6::after {
        margin: 10px 0 0;
    }

    .w-testimonials-slider .owl-nav {
        right: 0;
        bottom: 35%;
        margin: 0;
        left: auto;
        top: auto;
        margin-left: -50px;
    }

    .w-testimonials-slider .owl-nav > button,
    .w-text-light .w-testimonials-slider .owl-nav > button {
        background: none;
        font-size: 70px;
    }

    .w-testimonials-slider .owl-nav .owl-next {
        bottom: 5%;
    }

    .w-testimonials-slider .owl-dots {
        position: absolute;
        right: 45px;
    }

    .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-link-button.large:not(.w-with-icon):not(.none),
    .w-ghost-button.large {
        padding: 12px 40px;
    }

    .w-tabs-nav li {
        float: left;
    }

    .w-tabs .w-tabs-nav li {
        border-bottom-width: 0;
        margin-left: -1px;
    }

    .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-grayscale-2 .w-item.w-h2 figure h3,
    .w-masonry .w-effect-apollo .w-item.w-h2 figure h3 {
        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;
    }

    .w-blog-posts .format-quote .post-content {
        text-align: left;
    }

    .w-blog-posts .post.format-quote .post-title a::before {
        top: -25px;
        left: 0;
        margin: 0;
    }

    .w-blog-posts .post.format-quote .quote-author {
        padding-left: 30px;
        margin: 10px 0 20px;
    }

    .w-blog-posts .post.format-quote .quote-author::before {
        left: 0;
        top: 14px;
        margin: 0;
    }
}
@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;
    }

    .col-md-12.w-overlap-box,
    .col-md-12 .w-overlap-box {
        left: auto !important;
        right: auto !important;
    }
}
@media only screen and (min-width: 992px) {

    /* Section */
    .w-section {
        padding: 95px 0;
    }

    .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;
    }

    /* 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;
    }

    /* SEPARATOR */
    .w-separator.text-left {
        margin-left: 0;
    }

    .w-separator.text-right {
        margin-right: 0;
    }

    .w-separator.text-left .w-text {
        padding-left: 0;
    }

    .w-separator.text-right .w-text {
        padding-right: 0;
    }

    .w-separator.text-left .w-border-right,
    .w-separator.text-right .w-border-left {
        width: 100%;
    }

    /* Overlap */
    .w-overlap-box {
        position: relative;
        z-index: 50;
    }

    .member-content .member-detail {
        height: 100%;
        padding: 0 0 30px 0;
    }

    .member-content .member-image {
        display: block;
        line-height: 0;
    }

    .member-content .member-image img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Extra Class */
    .overlap-top {
        margin-top: -50px;
    }

    .overlap-bottom {
        margin-bottom: -50px;
    }

    .overlap-right {
        margin-right: -50px;
    }

    .overlap-left {
        margin-left: -50px;
    }

    .w-heading.heading-4,
    .w-heading.heading-5 {
        padding-top: 0;
    }

    .w-heading.heading-4::before {
        content: "";
        display: block;
        width: 1px;
        height: 200px;
        background: #000;
        margin: 0 auto 10px;
    }

    .w-heading.heading-4.text-left::before {
        margin: 0 0 0 1px;
    }

    .w-heading.heading-4.text-right::before {
        margin: 0 0 0 99%;
    }

    .w-heading.heading-5::after {
        content: "";
        display: block;
        width: 1px;
        height: 200px;
        background: #000;
        margin: 20px auto 0;
    }

    .w-heading.heading-5.text-left::after {
        margin: 20px 0 0;
    }

    .w-heading.heading-5.text-right::after {
        margin: 20px 0 0 99%;
    }

    .w-heading.heading-6::before {
        width: 50px;
        height: 1px;
        content: "";
        background-color: #333;
        display: inline-block;
        position: absolute;
    }

    .w-heading.heading-6.text-center::before {
        width: 1px;
        height: 50px;
        top: -60px;
        left: 50%;
    }

    .w-heading.heading-6.text-left::before {
        top: 17px;
        left: -60px;
    }

    .w-heading.heading-6.text-right::before {
        top: 17px;
        right: -60px;
    }

    .w-heading.heading-7.text-left .heading-title::before,
    .w-heading.heading-7.text-right .heading-title::after {
        display: none;
    }

    /* INFO BOX */

    /* Align Left*/
    .w-info-box.w-left {
        text-align: left;
    }

    .w-info-box.w-left .w-icon {
        float: left;
    }

    .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: 120px;
    }

    /* Align Right*/
    .w-info-box.w-right {
        text-align: right;
    }

    .w-info-box.w-right .w-icon {
        float: right;
    }

    .w-info-box.w-right.w-circle .w-border {
        transform: rotate(-180deg);
    }

    .w-info-box.w-right.w-circle:hover .w-border {
        transform: rotate(-270deg);
    }

    .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: 120px;
    }

    /* Testimonial */
    .w-testimonial .w-content {
        padding: 0 100px 80px 220px;
        text-align: left;
    }

    .w-testimonial .w-content::before {
        left: 180px;
        top: -15px;
        margin: 0;
        opacity: 0.5;
    }

    /* Pricing Box */
    .w-pricing-box.w-featured {
        margin-top: -20px;
        margin-bottom: -20px;
    }

    /* OVERLAP SLIDER */
    .w-slides {
        opacity: 0;
        width: 70%;
    }

    .w-slide {
        padding-bottom: 50px;
        margin-top: 60px;
    }

    .w-slide .w-heading {
        position: absolute;
        top: -40px;
        left: 50px;
        margin: 0;
    }

    .w-slide .w-slider-content {
        padding: 20px 0 0;
    }

    .w-slider-nav {
        position: absolute;
        z-index: 99;
        top: 60px;
        right: 0;
        bottom: 30%;
        width: 30%;
        display: block;
    }

    .w-slider-nav a {
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
    }

    .w-slider-nav a::after {
        font-family: overlap;
        content: "\e84a";
        position: absolute;
        font-size: 150px;
        text-align: center;
        width: 100%;
        top: 50%;
        line-height: 0;
        color: #fff;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .w-slider-nav:hover a::after {
        opacity: 1;
    }

    .w-slider-nav a span {
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        background-position: 50% 50%;
        background-size: cover;
        opacity: 0;
        transition: all 0.5s;
    }

    .w-slider-nav a span.active {
        opacity: 1;
    }

    .w-slider-nav a span::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.7;
        transition: all 0.3s;
    }

    .w-slider-nav a:hover span::before {
        opacity: 0.5;
    }

    .w-slide::after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        bottom: 50px;
        display: block;
        height: 250px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 250px);
    }

    .w-slide .w-slider-content {
        position: absolute;
        z-index: 10;
        left: 50%;
        right: 0;
        bottom: 0;
        padding: 20px;
        text-align: left;
    }

    .w-slider-dots {
        position: absolute;
        top: 70%;
        right: 0;
        bottom: 0;
        width: 30%;
        padding-top: 20px;
    }

    /* Clients-List */
    .w-clients-list > div {
        border: 1px solid #bbb;
        border-width: 1px 0 0 1px;
    }

    .w-clients-list > div:nth-child(3n+3) {
        border-right: 1px solid #bbb;
    }

    .w-clients-list > div:nth-last-child(1),
    .w-clients-list > div:nth-last-child(2),
    .w-clients-list > div:nth-last-child(3) {
        border-bottom: 1px solid #bbb;
    }

    /* Blog */
    .w-blog-posts.w-overlap .w-item > .post {
        border: none;
        background: transparent;
    }

    .w-blog-posts.w-overlap .w-item .has-cover .post-media-icon {
        bottom: 15px;
        top: auto;
    }

    .w-blog-posts.w-overlap .w-item:nth-child(even) .has-cover .post-media-icon {
        bottom: 15px;
        right: 15px;
        top: auto;
        left: auto;
    }

    .main-content.no-sidebar .w-blog-posts.w-overlap .has-cover .post-media {
        width: 60%;
        float: left;
    }

    .main-content.no-sidebar .w-blog-posts.w-overlap .w-item:nth-child(even) .has-cover .post-media {
        float: right;
    }

    .main-content.no-sidebar .w-blog-posts.w-overlap .has-cover:not(.format-quote) .post-content {
        float: left;
        background: #fff;
        z-index: 99;
        position: absolute;
        top: 30px;
        right: 0;
        bottom: 30px;
        left: 55%;
        padding: 30px;
    }

    .main-content.no-sidebar .w-blog-posts.w-overlap .w-item:nth-child(even) .has-cover:not(.format-quote) .post-content {
        float: right;
        top: 30px;
        right: 55%;
        left: 0;
        bottom: 30px;
    }

    .w-blog-posts.w-overlap .post-title {
        line-height: 30px;
        max-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .w-blog-posts .owl-nav .owl-next {
        left: 51px;
    }

    .left-sidebar .w-blog-posts .post-meta,
    .right-sidebar .w-blog-posts .post-meta {
        height: 24px;
        overflow: hidden;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-external-link,
    .right-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-external-link {
        margin-bottom: 0;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-external-link a,
    .right-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-external-link a {
        margin-top: 10px;
    }

    .w-blog-posts.w-masonry .item-0 .readmore-link {
        display: none;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-share,
    .right-sidebar:not(.full-width) .w-blog-posts.w-overlap .post-share {
        padding: 10px 0 0;
    }

    .w-blog-posts .format-quote .post-content {
        padding: 20px 75px 40px 30px;
    }

    .w-blog-posts .post.format-quote .post-title {
        padding-top: 50px;
    }

    .w-blog-posts.w-masonry .w-item {
        margin-bottom: 0;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-masonry .item-0 .post-title,
    .right-sidebar:not(.full-width) .w-blog-posts.w-masonry .item-0 .post-title {
        font-size: 26px;
        line-height: 30px;
    }

    .w-blog-posts.w-overlap .w-item:nth-child(odd) .has-cover:not(.format-quote) .post-date {
        left: 15px;
        right: auto;
    }

    .w-blog-posts.w-overlap .post-content {
        background: #fff;
        transition: all 0.3s;
    }

    .w-blog-posts.w-overlap .w-item > .post.has-cover:not(.format-quote):hover .post-content {
        transform: translateY(-4px);
        box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-masonry .w-item:not(.item-0).col-4,
    .right-sidebar:not(.full-width) .w-blog-posts.w-masonry .w-item:not(.item-0).col-4 {
        width: 50%;
    }

    /* 1st item */
    .w-blog-posts.w-masonry .w-item.item-0 {
        width: 100%;
        min-height: 460px;
        float: none;
    }

    .w-blog-posts.w-masonry .item-0 .post-title {
        font-size: 40px;
        max-height: 210px;
        line-height: 1.3;
        margin-bottom: 10px;
        font-style: italic;
        overflow: hidden;
    }

    .w-blog-posts.w-masonry .w-item.item-0 > .post {
        border: none;
        margin: 50px 0 50px -20px;
        background-color: #f5f5f5;
    }

    .w-blog-posts.w-masonry .w-item.item-0 > .post:hover {
        transform: none;
        box-shadow: none;
    }

    .w-blog-posts.w-masonry .w-item.item-0 .post-date {
        top: -50px;
    }

    .w-blog-posts.w-masonry .w-item.item-0 .post-media {
        width: 66.66%;
        float: right;
        margin: -50px 0;
        padding-left: 18px;
    }

    .w-blog-posts.w-masonry .w-item.item-0 .post.has-cover .post-media::after {
        display: none;
    }

    .w-blog-posts.w-masonry .w-item.item-0 > .post.has-cover > .post-content {
        position: absolute;
        width: 33%;
        top: 50%;
        float: left;
        margin-top: 0;
        text-align: center;
        padding-right: 0;
        transform: translateY(-50%);
    }

    .w-blog-posts.w-masonry .w-item.item-0 .post-share {
        text-align: left;
    }

    /* 2nd item */
    .w-blog-posts.w-masonry .w-item.item-1 {
        margin-top: -125px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {

    .w-team-slider .cover-image::before {
        width: 70px;
        height: 70px;
    }

    .w-team-slider .cover-image::after {
        display: inline-block;
        width: 70px;
        font-size: 70px;
        line-height: 70px;
    }

    .w-blog-posts:not(.w-overlap) .post.has-cover .post-media::after {
        height: 100px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 100px);
    }

    .left-sidebar .w-blog-posts.w-overlap .post-external-link a,
    .right-sidebar .w-blog-posts.w-overlap .post-external-link a {
        max-width: 235px;
    }

    .left-sidebar.full-width .w-blog-posts.w-masonry .w-item:not(.item-0).col-4,
    .right-sidebar.full-width .w-blog-posts.w-masonry .w-item:not(.item-0).col-4 {
        width: 50%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {

    .w-blog-posts.w-masonry .item-0 .post-title {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 10px;
    }

    .w-blog-posts.w-masonry .item-0 .post-summary {
        display: none;
    }

    .left-sidebar .w-blog-posts.w-masonry .item-0 .post-summary,
    .right-sidebar .w-blog-posts.w-masonry .item-0 .post-summary,
    .left-sidebar .w-blog-posts.w-masonry .item-0 .readmore-link,
    .right-sidebar .w-blog-posts.w-masonry .item-0 .readmore-link,
    .left-sidebar .w-blog-posts.w-overlap .format-link .post-meta,
    .right-sidebar .w-blog-posts.w-overlap .format-link .post-meta,
    .w-blog-posts.w-overlap .format-link.has-cover .post-summary > p:not(.post-external-link) {
        display: none;
    }
}
@media (min-width: 1200px) {

    .hidden-lg {
        display: none !important;
    }

    /* Reverse columns order */
    .lg-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}
@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;
    }

    .col-lg-12.w-overlap-box,
    .col-lg-12 .w-overlap-box {
        left: auto !important;
        right: auto !important;
    }

    /* Team Member */
    .w-team-slider .cover-image::before {
        opacity: 0;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }

    .w-team-slider .team-member:hover .cover-image::before {
        opacity: 0.6;
    }

    .w-team-slider .cover-image::after {
        text-align: center;
        margin: -50px 0 0 -50px;
        opacity: 0;
        left: 50%;
        right: auto;
        top: 45% !important;
        transform: rotate(90deg);
        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;
        transform: rotate(0deg);
        color: inherit;
    }

    .w-team-slider .owl-carousel .member-name {
        transform: translate3d(0, 40px, 0);
        transition: all 0.3s ease-in-out;
    }

    .w-team-slider .owl-carousel .team-member:hover .member-name {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        background: rgba(0, 0, 0, 0.85);
    }

    .w-team-slider .w-grid-layout .cover-image::after {
        left: 50%;
    }

    .w-team-slider .w-grid-layout .member-name {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transition: all 0.3s ease-in-out;
    }

    .w-team-slider .w-grid-layout .team-member:hover .member-name {
        transform: translate3d(0, 40px, 0);
    }

    /*Blog Posts */
    .w-blog-posts.w-overlap .post-title {
        max-height: 90px;
        white-space: normal;
    }

    .main-content:not(.no-sidebar) .w-blog-posts.w-overlap .has-cover .post-media {
        width: 60%;
        float: left;
    }

    .main-content:not(.no-sidebar) .w-blog-posts.w-overlap .w-item:nth-child(even) .has-cover .post-media {
        float: right;
    }

    .main-content:not(.no-sidebar) .w-blog-posts.w-overlap .has-cover:not(.format-quote) .post-content {
        float: left;
        background: #fff;
        z-index: 99;
        position: absolute;
        top: 30px;
        right: 0;
        bottom: 30px;
        left: 55%;
        padding: 30px;
    }

    .main-content:not(.no-sidebar) .w-blog-posts.w-overlap .w-item:nth-child(even) .has-cover:not(.format-quote) .post-content {
        float: right;
        top: 30px;
        right: 55%;
        left: 0;
        bottom: 30px;
    }

    /* Portfolio Overlap Layout */
    .w-portfolio-grid.w-overlap .w-header {
        position: relative;
        z-index: 99;
        width: 25%;
        float: left;
        text-align: left;
    }

    .w-portfolio-grid.w-overlap .w-header .w-heading {
        margin-right: -100%;
    }

    .w-portfolio-grid.w-overlap .w-heading.text-center {
        text-align: left !important;
    }

    .w-portfolio-grid.w-overlap .w-view {
        margin: 0;
        clear: none;
    }

    .w-portfolio-grid.w-overlap .w-item {
        width: 25%;
    }

    .w-portfolio-grid.w-hide-more.w-overlap .w-item:last-child {
        margin-left: 25%;
    }

    .w-portfolio-grid.w-overlap .w-item:nth-of-type(2) {
        width: 50%;
    }

    .w-portfolio-grid.w-overlap .w-stamp-h {
        width: 49.99%;
    }

    .w-portfolio-grid.w-overlap .w-stamp {
        width: 24.99%;
    }

    .w-portfolio-grid.w-overlap .w-showmore {
        padding: 0;
    }

    .w-portfolio-grid.w-overlap .w-showmore a {
        width: 25%;
        line-height: 250px;
        margin: 0 50% 0 25%;
        font-size: 40px;
        font-weight: 700;
        letter-spacing: 1px;
        background: #8accff;
        color: #fff;
    }

    .w-portfolio-grid.w-overlap .w-filter li {
        display: block;
        text-align: left;
        margin: 10px 0;
    }

    .w-portfolio-grid.w-overlap .w-filter li::before {
        display: none;
    }

    .w-portfolio-grid.w-overlap .w-filter li.active::before {
        display: inline-block;
    }

    .w-portfolio-grid.w-overlap .w-filter li a {
        padding: 0;
    }

    .w-portfolio-grid.w-overlap .w-filter li.active a {
        padding: 0 10px;
    }

    /* Portfolio Photoset Layout */
    .w-portfolio-grid.w-photoset .w-view {
        margin-right: -80px;
    }

    .w-section.w-full .w-portfolio-grid.w-photoset .w-view {
        margin-left: 80px;
        margin-right: 0;
    }

    .w-portfolio-grid.w-photoset .w-item {
        padding: 80px 80px 0 0;
        height: auto;
    }

    .w-portfolio-grid.w-photoset .w-item:nth-child(1) {
        padding-top: 300px;
    }

    .w-portfolio-grid.w-photoset .w-item:nth-child(2) {
        padding-top: 50px;
    }

    .w-portfolio-grid.w-photoset .w-item:nth-child(3) {
        padding-top: 200px;
    }

    /* Portfolio Effect */
    .w-portfolio-grid.w-masonry.w-standard .w-view figure img.cover-image {
        opacity: 0;
    }

    .w-view figure div.cover-image {
        opacity: 1;
    }

    .w-view figure h3 {
        opacity: 0;
        transition: opacity 0.35s;
    }

    .w-view figure p {
        opacity: 0;
        transition: opacity 0.35s;
    }

    .w-view figure:hover h3 {
        opacity: 1;
    }

    .w-view figure:hover p {
        opacity: 1;
        display: block;
    }

    .w-view figure:hover figcaption > span {
        opacity: 1;
    }

    /* Effect Apollo */
    .w-effect-apollo figure .cover-image {
        transform: scale3d(1.05, 1.05, 1);
        transition: opacity 0.35s, transform 0.35s;
    }

    .w-effect-apollo figure figcaption::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
        content: "";
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
        transition: transform 0.6s;
    }

    .w-masonry .w-effect-apollo .w-item:not(.w-w2).w-h2 figure figcaption::before {
        width: 200%;
    }

    .w-effect-apollo figure:hover .cover-image {
        opacity: 0.6;
        transform: scale3d(1, 1, 1);
    }

    .w-effect-apollo figure:hover figcaption::before {
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    }

    .w-effect-apollo figure h3 {
        text-align: left;
    }

    .w-effect-apollo figure p {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 30px;
        padding: 0 15px 0 0;
        max-width: 150px;
        max-height: 86px;
        border-right: 4px solid #fff;
        text-align: right;
    }

    .w-view.w-effect-apollo figure:hover figcaption > span {
        transform: translate3d(0, 0, 0);
    }

    /* Effect Duke */
    .w-effect-duke figure {
        background: #fff;
    }

    .w-effect-duke figure .cover-image {
        transition: transform 0.3s;
        transform: scale3d(1, 1, 1);
    }

    .w-effect-duke figure:hover .cover-image {
        -webkit-filter: blur(3px);
        -moz-filter: blur(3px);
        -o-filter: blur(3px);
        -ms-filter: blur(3px);
        transform: scale3d(1.01, 1.01, 1);
        filter: url("data:image/svg+xml;utf9,<svg%20version='1.1'%20xmlns='https://www.w3.org/2000/svg'><filter%20id='blur'><feGaussianBlur%20stdDeviation='3'%20/></filter></svg>#blur");
        filter: progid:DXImageTransform.Microsoft.Blur(pixelradius="3");
    }

    .w-view.w-effect-duke figure figcaption {
        background: rgba(0, 0, 0, 0.5);
        height: 80px;
        top: auto;
        bottom: 0;
        padding: 10px;
        transition: transform 0.35s;
    }

    .w-view.w-effect-duke figure:hover figcaption {
        transform: translate3d(0, 0, 0);
    }

    .w-effect-duke figure h3 {
        max-height: 35px;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 0;
        transform: scale3d(0.8, 0.8, 1);
        transform-origin: 50% 100%;
        transition: transform 0.35s, opacity 0.35s;
    }

    .w-effect-duke figure:hover h3 {
        transform: scale3d(1, 1, 1);
    }

    .w-effect-duke figure p {
        top: -20px;
        position: relative;
        padding: 0 10px;
        text-transform: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition: top 0.4s;
    }

    .w-effect-duke figure:hover p {
        top: 0;
    }

    .w-view.w-effect-duke figure figcaption > span {
        display: none;
    }

    .w-view.w-effect-duke figure figcaption {
        transform: translate3d(0, 150px, 0);
    }

    /* Effect Grayscale 1 */
    .w-effect-grayscale-1 .w-item {
        overflow: hidden;
    }

    .w-effect-grayscale-1 figure {
        background: #fff;
    }

    .w-effect-grayscale-1 figure .cover-image {
        transition: filter 0.2s ease;
        opacity: 1;
        filter: grayscale(0);
    }

    .w-effect-grayscale-1 figure:hover .cover-image {
        filter: grayscale(100%);
    }

    .w-effect-grayscale-1 figure figcaption {
        background: rgba(255, 255, 255, 0.9);
        opacity: 0;
        position: absolute;
        left: 10px;
        top: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        height: auto;
        padding: 0 20px;
        text-align: left;
        transition: all 0.3s ease-in-out;
    }

    .w-effect-grayscale-1 figure:hover figcaption {
        opacity: 0.95;
    }

    .w-effect-grayscale-1 figure h3,
    .w-effect-grayscale-1 figure p {
        position: absolute;
        left: 0;
        right: 0;
        top: 30%;
        padding: 0 20px;
        text-align: center;
        color: #333;
        transition: opacity 0.35s ease, transform 0.5s ease;
        transform: translate3d(0, 40px, 0);
    }

    .w-effect-grayscale-1 figure h3,
    .w-effect-grayscale-1 .grid-4-cols .w-view figure h3 {
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .w-effect-grayscale-1 figure:hover h3 {
        transform: translate3d(0, -5px, 0);
    }

    .w-effect-grayscale-1 figure p {
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .w-effect-grayscale-1 figure:hover p {
        transform: translate3d(0, 30px, 0);
    }

    .w-view.w-effect-grayscale-1 figure span {
        position: absolute;
        top: 50%;
        padding: 20px;
        text-align: center;
        transition: opacity 0.35s ease;
    }

    .w-view.w-effect-grayscale-1 figure figcaption > span > a {
        color: #333;
        background: rgba(0, 0, 0, 0.1);
    }

    .w-view.w-effect-grayscale-1 figure figcaption > span > a:hover {
        background: rgba(0, 0, 0, 0.3);
    }

    /* Effect Grayscale 2 */
    .w-effect-grayscale-2 figure {
        text-align: left;
    }

    .w-effect-grayscale-2 figure .cover-image {
        transition: opacity 0.35s;
        filter: gray;
    }

    .w-effect-grayscale-2 figure:hover .cover-image {
        filter: unset;
    }

    .w-effect-grayscale-2 figure figcaption {
        padding: 20px;
        color: #fff;
        backface-visibility: hidden;
    }

    .w-effect-grayscale-2 figure figcaption::before,
    .w-effect-grayscale-2 figure p::before {
        content: "";
        position: absolute;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(30, 30, 30, 0.8) 0%, rgba(30, 30, 30, 0) 80%);
        transform: translate3d(0, -50%, 0);
        transition: opacity 0.35s, transform 0.35s;
    }

    .w-effect-grayscale-2 figure p::before {
        top: auto;
        bottom: 0;
        z-index: -1;
        background: linear-gradient(to bottom, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.5) 100%);
        transform: translate3d(0, 50%, 0);
    }

    .w-effect-grayscale-2 figure:hover figcaption::before,
    .w-effect-grayscale-2 figure:hover p::before {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .w-effect-grayscale-2 figure h3 {
        margin: 2 0 0;
        transform: translate3d(0, -20px, 0);
        transition: opacity 0.35s, transform 0.35s;
    }

    .w-effect-grayscale-2 figure p {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        max-height: none;
        padding: 20px 20px 0;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition: opacity 0.35s, transform 0.35s;
        transform: translate3d(0, 20px, 0);
    }

    .w-effect-grayscale-2 figure:hover h3,
    .w-effect-grayscale-2 figure:hover p {
        transform: translate3d(0, 0, 0);
    }

    .w-effect-grayscale-2 figure figcaption > span {
        padding: 0 20px;
    }

    /* Romeo */
    .w-effect-romeo figure {
        background: #000;
    }

    .w-effect-romeo figure .cover-image,
    .w-effect-romeo figcaption::before,
    .w-effect-romeo figure h3,
    .w-effect-romeo figure p {
        transition: opacity 0.35s, transform 0.35s;
    }

    .w-effect-romeo figure .cover-image {
        margin: -10px 0 0 -10px;
        max-width: none;
        width: calc(100% + 10px);
        height: auto;
        transform: translate3d(10px, 10px, 0);
        backface-visibility: hidden;
        transition: opacity 0.35s, transform 0.35s;
    }

    .w-effect-romeo figure:hover .cover-image {
        opacity: 0.5;
        transform: translate3d(0, 0, 0);
    }

    .w-effect-romeo figure figcaption {
        padding: 20px;
    }

    .w-effect-romeo figcaption::before,
    .w-effect-romeo figcaption::after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 1px;
        background: #fff;
        content: "";
        opacity: 0;
        transition: opacity 0.35s, transform 0.35s;
        transform: translate3d(-50%, -50%, 0);
    }

    .w-effect-romeo figure:hover figcaption::before {
        opacity: 0.5;
        transform: translate3d(-50%, -50%, 0) rotate(45deg);
    }

    .w-effect-romeo figure:hover figcaption::after {
        opacity: 0.5;
        transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    }

    .w-effect-romeo figure h3 {
        transform: translate3d(5px, 5px, 0);
        transition: transform 0.35s, opacity 0.35s;
    }

    .w-effect-romeo figure p {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 2% 20px;
        text-align: center;
        transform: translate3d(5px, 5px, 0);
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .w-effect-romeo figure figcaption > span {
        text-align: center;
        position: absolute;
        top: 50%;
        margin-top: -20px;
        padding: 0 20px;
        transform: translate3d(5px, 5px, 0);
    }

    .w-effect-romeo figure:hover h3,
    .w-effect-romeo figure:hover p,
    .w-effect-romeo figure:hover figcaption > span {
        transform: translate3d(0, 0, 0);
    }

    .w-effect-romeo figure figcaption > span > a {
        color: #999;
        background: #fff;
    }

    .w-effect-romeo figure figcaption > span > a:hover {
        color: #000;
    }

    /* Effect Rotate Zoomin */
    .w-effect-rotateZoomIn figure .cover-image {
        transform: scale(1, 1);
        transition: transform 0.35s;
    }

    .w-effect-rotateZoomIn figure:hover .cover-image {
        transform: scale(1.5, 1.5) rotate(10deg);
    }

    .w-effect-rotateZoomIn figure figcaption {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        text-align: left;
        padding: 0 20px;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .w-effect-rotateZoomIn figure:hover figcaption {
        opacity: 1;
    }

    .w-effect-rotateZoomIn figure figcaption::before {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: #000;
        opacity: 0.7;
    }

    .w-effect-rotateZoomIn figure h3,
    .w-effect-rotateZoomIn figure p {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 0 20px;
        margin: 15px 0;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .w-effect-rotateZoomIn figure:hover h3 {
        transform: translate3d(0, -35px, 0);
    }

    .w-effect-rotateZoomIn figure p {
        white-space: nowrap;
        text-overflow: ellipsis;
        max-height: none;
        margin-bottom: 10px;
    }

    .w-effect-rotateZoomIn figure:hover p {
        transform: translate3d(0, -10px, 0);
    }

    .w-effect-rotateZoomIn figure figcaption > span {
        position: absolute;
        top: 0;
        bottom: auto;
        padding: 0 20px;
        margin: 20px 0;
        transition: opacity 0.35s ease-in 0.2s;
    }

    /* Effect Overlap */
    .w-effect-overlap figure {
        background-color: #8accff;
    }

    .w-effect-overlap figure h3 {
        margin-bottom: 0;
        color: #000;
        text-align: left;
        transition: opacity 0.35s;
    }

    .w-effect-overlap figure .cover-image {
        opacity: 0.95;
        transition: opacity 0.35s, transform 0.35s;
        transform: perspective(1000px) translate3d(0, 0, 0);
    }

    .w-effect-overlap figure:hover .cover-image {
        transform: perspective(1000px) translate3d(0, 0, 21px);
        opacity: 0.1;
    }

    .w-effect-overlap figure figcaption {
        z-index: 1;
    }

    .w-effect-overlap figure p {
        font-size: 80%;
        line-height: 30px;
        height: 30px;
        max-height: 30px;
        color: #000;
        text-align: left;
        font-style: italic;
        transition: opacity 0.25s, transform 0.25s;
        padding: 0;
    }

    .w-effect-overlap figure p::before {
        content: "";
        display: inline-block;
        background: #000;
        width: 12px;
        height: 1px;
        margin-right: 5px;
        vertical-align: middle;
    }

    .w-effect-overlap figure:hover p {
        opacity: 1;
        transform: translate3d(0, 3px, 0);
    }

    .w-view.w-effect-overlap figure figcaption > span {
        bottom: 30px;
        text-align: right;
    }

    .w-view.w-effect-overlap figure figcaption > span > a {
        background: #000;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1280px) {

    .left-sidebar .w-blog-posts.w-overlap .post-external-link a,
    .right-sidebar .w-blog-posts.w-overlap .post-external-link a {
        max-width: 275px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {

    .main-content.full-width:not(.no-sidebar) .w-blog-posts.w-masonry .item-0 .post-summary {
        display: none;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {

    .main-content.left-sidebar .w-blog-posts.w-overlap .post-summary,
    .main-content.right-sidebar .w-blog-posts.w-overlap .post-summary {
        line-height: 22px;
        max-height: 66px;
        overflow: hidden;
    }

    .main-content.full-width:not(.no-sidebar) .w-blog-posts.w-masonry .item-0 .post-summary {
        max-height: 80px;
        overflow: hidden;
    }
}
@media only screen and (max-width: 1199px) {

    .w-portfolio-grid .w-view .w-item,
    .w-image-gallery.w-masonry .w-item {
        width: 50%;
    }

    .w-portfolio-grid.w-overlap .w-showmore a {
        background: transparent !important;
    }

    .w-portfolio-grid .w-view figure figcaption {
        position: relative;
        padding: 0 0 35px;
        background: #fff;
    }

    .w-portfolio-grid:not(.w-photoset) .w-view figure h3 {
        position: relative;
        right: 0;
        bottom: 0;
        padding: 10px 10px 0 10px;
        text-align: center;
        font-size: 18px;
        height: auto;
        max-height: none;
        width: 100%;
        z-index: 1;
        color: #545454;
    }

    .w-portfolio-grid:not(.w-photoset) .w-view figure p {
        position: relative;
        opacity: 1;
        max-height: none;
        color: #555;
    }

    .w-portfolio-grid.w-overlap .w-stamp-h,
    .w-portfolio-grid.w-overlap .w-stamp {
        display: none;
    }
}
@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: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;
    }

    .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;
    }

    .w-scroll-button {
        display: none;
    }

    .w-accordion .acd-header,
    .w-toggle h4 {
        text-align: left !important;
    }

    .w-grid .w-view .w-item {
        padding: 0;
    }

    .w-masonry .w-effect-apollo .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 {
        float: left;
    }

    .w-flickr li.col-1,
    .w-flickr li.col-2 {
        width: 16.6666%;
    }

    .w-flickr li.five-cols {
        width: 20%;
    }

    .w-flickr li.col-4 {
        width: 33.3333%;
    }

    .w-flickr li.col-6,
    .w-flickr li.col-3 {
        width: 25%;
    }

    .w-blog-posts.w-overlap .readmore-link {
        margin-bottom: 15px;
    }

    .related-posts .five-cols {
        width: 25%;
        float: left;
    }

    .w-posts .thumb {
        clear: both;
        float: none;
        display: inline-block;
    }

    /* Team Member */
    .w-team-slider .owl-carousel .cover-image::before {
        top: 10px;
        right: 10px;
        opacity: 0.7;
        width: 40px;
        height: 40px;
    }

    .w-team-slider .owl-carousel .cover-image::after {
        top: 10px;
        right: 10px;
        opacity: 0.7;
        font-size: 38px;
        line-height: 40px;
        width: 40px;
    }

    .w-team-slider .w-grid-layout .cover-image::before {
        width: 40px;
        height: 40px;
        bottom: 10px;
        left: 10px;
    }

    .w-team-slider .w-grid-layout .cover-image::after {
        font-size: 38px;
        line-height: 40px;
        width: 40px;
        bottom: 10px;
        left: 10px;
    }

    .w-testimonials-slider .owl-nav {
        left: 50%;
        margin-left: -50px;
    }

    .w-effect-grayscale-2 figure figcaption::before,
    .w-effect-grayscale-2 figure p::before {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .w-separator.text-left,
    .w-separator.text-right {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Blog */
    .w-blog-posts .post-content {
        text-align: left;
    }

    .w-blog-posts .format-quote .post-content {
        text-align: center;
    }

    .w-blog-posts .format-video .post-summary,
    .w-blog-posts .format-image .post-summary {
        padding-top: 20px;
    }
}
@media (max-width: 767px) {

    .hidden-xs {
        display: none !important;
    }

    /* Reverse columns order */
    .xs-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .w-blog-posts .post.format-quote .post-title a::before {
        z-index: 0;
    }
}
@media only screen and (max-width: 599px) {

    .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-progress-bar .w-counter {
        position: relative;
        width: auto;
        float: right;
    }

    .post-external-link a {
        font-size: 18px;
        width: 250px;
    }

    .w-icon-tabs .w-tabs-nav li {
        margin: 0 3px 15px;
    }

    .w-filter {
        padding: 10px 0;
    }

    .w-filter li {
        display: block;
    }

    .w-portfolio-grid.w-standard .w-view,
    .w-portfolio-grid.w-photoset .w-view {
        margin-right: 0;
    }

    .w-full .w-portfolio-grid.w-overlap,
    .w-full .w-portfolio-grid.w-standard .w-view,
    .w-section.w-full .w-portfolio-grid.w-photoset .w-view {
        margin-left: 0;
        margin-right: 0;
    }


    .w-masonry .w-effect-apollo .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%;
        padding: 0;
        float: none;
    }

    .w-portfolio-grid .w-view .w-item,
    .w-image-gallery .w-view .w-item,
    .w-masonry .w-item.w-w2 {
        width: 100% !important;
    }

    .w-portfolio-grid.w-hide-more.w-overlap .w-item:last-child {
        margin-left: 0;
    }

    .w-image-gallery.w-masonry .w-item,
    .w-image-gallery.w-masonry .w-item.w-h2,
    .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;
    }

    #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 {
        width: 25%;
    }

    .w-flickr li.col-6 {
        width: 50%;
    }

    .w-flickr li:nth-child(n+13).col-1,
    .w-flickr li:nth-child(n+13).col-2 {
        display: none;
    }

    .w-blog-posts:not(.w-overlap) .post.has-cover .post-media::after {
        height: 100px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 100px);
    }

    .w-blog-posts:not(.w-overlap) .post.has-cover:not(.format-quote) .post-content {
        margin-top: -30px;
        padding-top: 0;
    }

    .w-blog-posts .post.format-quote .post-title {
        padding-top: 40px;
    }

    .w-blog-posts .post.format-quote .post-title a::before {
        font-size: 40px;
        margin: -15px;
        top: -40px;
        width: auto;
        z-index: 1;
    }

    .w-blog-posts .post-meta {
        height: 23px;
        overflow: hidden;
    }

    .post-meta .meta-author,
    .post-meta .meta-comment,
    .post-meta > span:not(:last-child)::after {
        display: none;
    }

    .related-posts .five-cols {
        width: 50%;
        float: left;
    }

    .w-custom-heading h1 {
        font-size: 24px !important;
        font-weight: 700;
        line-height: 1.5 !important;
    }

    .w-custom-heading h2 {
        font-size: 22px !important;
        font-weight: 700;
        line-height: 1.5 !important;
    }

    .w-custom-heading h3 {
        font-size: 20px !important;
        font-weight: 700;
        line-height: 1.5 !important;
    }

    .w-custom-heading h4 {
        font-size: 18px !important;
        font-weight: 700;
        line-height: 1.5 !important;
    }

    .w-custom-heading h5 {
        font-size: 16px !important;
        font-weight: 700;
        line-height: 1.5 !important;
    }

    .w-custom-heading h6 {
        font-size: 14px !important;
        letter-spacing: 0.5px;
        line-height: 1.5 !important;
    }
}
