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

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

body {
    margin: 0;
    height: 100vh;
}

main {
    display: block;
}

/* Experimental All FLEX code
.builder-ele,
.builder-ele-wrap,*/

/*Flex - Rows and Cols*/
.builder-row,
.builder-inner_row,
.builder-row-holder,
.builder-col,
.builder-col-holder {
    box-sizing: border-box;
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-content: stretch;
    position: relative;
}

/* The col holder should be flex-start and not stretch because elements in it should take automatic height */
.builder-col,
.builder-col-holder {
    align-content: flex-start;
}

/* Each immediate element in the col-holder should have full width */
.builder-col-holder>* {
    width: 100%;
}

.builder-row.builder-auto .builder-col {
    flex-grow: 1;
}

.builder-col-1 {
    width: 8.33333%;
}

.builder-offset-1 {
    margin-left: 8.33333%;
}

.builder-col-2 {
    width: 16.66667%;
}

.builder-offset-2 {
    margin-left: 16.66667%;
}

.builder-col-3 {
    width: 25%;
}

.builder-offset-3 {
    margin-left: 25%;
}

.builder-col-4 {
    width: 33.33333%;
}

.builder-offset-4 {
    margin-left: 33.33333%;
}

.builder-col-5 {
    width: 41.66667%;
}

.builder-offset-5 {
    margin-left: 41.66667%;
}

.builder-col-6 {
    width: 50%;
}

.builder-offset-6 {
    margin-left: 50%;
}

.builder-col-7 {
    width: 58.33333%;
}

.builder-offset-7 {
    margin-left: 58.33333%;
}

.builder-col-8 {
    width: 66.66667%;
}

.builder-offset-8 {
    margin-left: 66.66667%;
}

.builder-col-9 {
    width: 75%;
}

.builder-offset-9 {
    margin-left: 75%;
}

.builder-col-10 {
    width: 83.33333%;
}

.builder-offset-10 {
    margin-left: 83.33333%;
}

.builder-col-11 {
    width: 91.66667%;
}

.builder-offset-11 {
    margin-left: 91.66667%;
}

.builder-col-12 {
    width: 100%;
}

.builder-offset-12 {
    margin-left: 100%;
}

.builder-gutters>.builder-col-1 {
    width: calc(8.33333% - 2%);
}

.builder-gutters>.builder-offset-1 {
    margin-left: calc(8.33333% + 2%) !important;
}

.builder-gutters>.builder-col-2 {
    width: calc(16.66667% - 2%);
}

.builder-gutters>.builder-offset-2 {
    margin-left: calc(16.66667% + 2%) !important;
}

.builder-gutters>.builder-col-3 {
    width: calc(25% - 2%);
}

.builder-gutters>.builder-offset-3 {
    margin-left: calc(25% + 2%) !important;
}

.builder-gutters>.builder-col-4 {
    width: calc(33.33333% - 2%);
}

.builder-gutters>.builder-offset-4 {
    margin-left: calc(33.33333% + 2%) !important;
}

.builder-gutters>.builder-col-5 {
    width: calc(41.66667% - 2%);
}

.builder-gutters>.builder-offset-5 {
    margin-left: calc(41.66667% + 2%) !important;
}

.builder-gutters>.builder-col-6 {
    width: calc(50% - 2%);
}

.builder-gutters>.builder-offset-6 {
    margin-left: calc(50% + 2%) !important;
}

.builder-gutters>.builder-col-7 {
    width: calc(58.33333% - 2%);
}

.builder-gutters>.builder-offset-7 {
    margin-left: calc(58.33333% + 2%) !important;
}

.builder-gutters>.builder-col-8 {
    width: calc(66.66667% - 2%);
}

.builder-gutters>.builder-offset-8 {
    margin-left: calc(66.66667% + 2%) !important;
}

.builder-gutters>.builder-col-9 {
    width: calc(75% - 2%);
}

.builder-gutters>.builder-offset-9 {
    margin-left: calc(75% + 2%) !important;
}

.builder-gutters>.builder-col-10 {
    width: calc(83.33333% - 2%);
}

.builder-gutters>.builder-offset-10 {
    margin-left: calc(83.33333% + 2%) !important;
}

.builder-gutters>.builder-col-11 {
    width: calc(91.66667% - 2%);
}

.builder-gutters>.builder-offset-11 {
    margin-left: calc(91.66667% + 2%) !important;
}

.builder-gutters>.builder-col-12 {
    width: calc(100% - 2%);
}

.builder-gutters>.builder-offset-12 {
    margin-left: calc(100% + 2%) !important;
}

.builder-first {
    order: -1;
}

.builder-last {
    order: 1;
}

/**************My Style for front-end *********/
.builder-img {
    vertical-align: bottom;
    max-width: 100%;
}

/* To give no decoration to a link for a builder element */
.builder-ele-link {
    text-decoration: none;
    box-shadow: none !important;
    border: none;
}

.builder-bgimg-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.builder-bgimg-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    transition: all 1s ease-in-out;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
}

.builder-slide-show {
    opacity: 1;
}

.builder-row-overlay,
.builder-col-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0px;
    top: 0px;
    z-index: -1;
    pointer-events: none;
}

.builder-row-shape {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 0;
    overflow: hidden;
}

.builder-row-svg {
    position: relative;
    height: 100%;
}

.builder-row-svg svg {
    width: 100%;
    position: absolute;
}

.builder-row-svg svg.builder-svg-top {
    top: -1px;
}

.builder-row-svg svg.builder-svg-bottom {
    bottom: -1px;
}

.builder-height-fit {
    height: 100vh;
}

.builder-row-wrapper {
    width: 100%;
}

.builder-background-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.builder-background-video {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    left: 0;
}

.builder-background-video iframe,
.builder-background-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    max-width: none;
}

.builder-service-container {
    position: relative;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.builder-service-image {
    line-height: 0;
    overflow: hidden;
}

.builder-service-image img {
    height: auto;
    max-width: 100%;
}

.builder-service-btn {
    display: inline-block;
    position: relative;
    z-index: 9;
}

.builder-service-details {
    width: 100%;
}

.builder-service-text {
    word-break: break-word;
}

.builder-service-align-left {
    display: flex;
}

.builder-service-align-right {
    display: flex;
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.builder-service-align-top {
    display: block;
    text-align: center;
}

.builder-service-align-top .builder-service-image {
    margin: 0 auto;
    text-align: center;
}

.builder-service-box-centered {
    text-align: center;
}

.builder-service-box-media-left,
.builder-service-box-media-right {
    display: flex;
}

.builder-service-vertical-top {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.builder-service-vertical-middle {
    align-items: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.builder-service-vertical-bottom {
    align-items: flex-end;
    -webkit-align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.builder-service-box-media-right .builder-service-box-media-section {
    order: 2;
}

.builder-service-box-media-right .builder-service-box-content-section {
    order: 1;
}

.builder-service-box-icon-holder {
    display: inline-block;
    color: #000000;
    text-align: center;
    line-height: 1;
    font-size: 60px;
}

.builder-service-icon {
    line-height: 0;
}

.builder-service-icon.builder-service-framed i {
    border: 4px solid;
    background-color: transparent !important;
}

.builder-service-icon.builder-service-stacked i,
.builder-service-icon.builder-service-framed i {
    position: relative;
}

.builder-service-icon.builder-service-stacked i:before,
.builder-service-icon.builder-service-framed i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.builder-service-box-icon-holder.square-holder {
    padding: 15px;
    color: #000000;
}

.builder-service-box-icon-holder.circle-holder {
    padding: 15px;
    color: #000000;
    border-radius: 50% !Important;
}

.builder-service-box-icon-holder i {
    position: relative;
    display: block;
}

.builder-service-heading {
    line-height: 1;
}

.builder-box-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Icon widget */

.builder-icon-mini {
    font-size: 16px !important;
}

.builder-icon-small {
    font-size: 24px !important;
}

.builder-icon-large {
    font-size: 36px !important;
}

.builder-icon-extra-large {
    font-size: 56px !important;
}

.builder-icon-double-large {
    font-size: 78px !important;
}

.builder-icon-circle,
.builder-icon-outline-circle,
.builder-social-shape-circle .builder-icon-holder {
    border-radius: 50%;
}

.builder-icon-rounded,
.builder-icon-outline-rounded,
.builder-social-shape-rounded .builder-share-content,
.builder-social-shape-rounded .builder-icon-holder {
    border-radius: 10px;
}

/* Icon widget end */

/* Icon animation */
.builder-animation-grow {
    transition: transform 400ms;
}

.builder-animation-grow:hover,
.builder-anim-par:hover .builder-animation-grow {
    transform: scale(1.1);
}

.builder-animation-shrink {
    transition: transform 400ms;
}

.builder-animation-shrink:hover,
.builder-anim-par:hover .builder-animation-shrink {
    transform: scale(0.9);
}

@keyframes builder-animation-pulse {
    25% {
        transform: scale(1.1)
    }

    75% {
        transform: scale(0.9)
    }
}

.builder-animation-pulse:hover,
.builder-anim-par:hover .builder-animation-pulse {
    animation-name: builder-animation-pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes builder-animation-pulse-grow {
    to {
        transform: scale(1.1)
    }
}

.builder-animation-pulse-grow:hover,
.builder-anim-par:hover .builder-animation-pulse-grow {
    animation-name: builder-animation-pulse-grow;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes builder-animation-pulse-shrink {
    to {
        transform: scale(0.9)
    }
}

.builder-animation-pulse-shrink:hover,
.builder-anim-par:hover .builder-animation-pulse-shrink {
    animation-name: builder-animation-pulse-shrink;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes builder-animation-push {
    50% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1)
    }
}

.builder-animation-push:hover,
.builder-anim-par:hover .builder-animation-push {
    animation-name: builder-animation-push;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-iteration-count: 1
}

@keyframes builder-animation-pop {
    50% {
        transform: scale(1.2)
    }
}

.builder-animation-pop:hover,
.builder-anim-par:hover .builder-animation-pop {
    animation-name: builder-animation-pop;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-iteration-count: 1
}

@keyframes builder-animation-buzz {
    50% {
        transform: translateX(3px) rotate(2deg)
    }

    100% {
        transform: translateX(-3px) rotate(-2deg)
    }
}

.builder-animation-buzz:hover,
.builder-anim-par:hover .builder-animation-buzz {
    animation-name: builder-animation-buzz;
    animation-duration: 0.15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes builder-animation-buzz-out {
    10% {
        transform: translateX(3px) rotate(2deg)
    }

    20% {
        transform: translateX(-3px) rotate(-2deg)
    }

    30% {
        transform: translateX(3px) rotate(2deg)
    }

    40% {
        transform: translateX(-3px) rotate(-2deg)
    }

    50% {
        transform: translateX(2px) rotate(1deg)
    }

    60% {
        transform: translateX(-2px) rotate(-1deg)
    }

    70% {
        transform: translateX(2px) rotate(1deg)
    }

    80% {
        transform: translateX(-2px) rotate(-1deg)
    }

    90% {
        transform: translateX(1px) rotate(0)
    }

    100% {
        transform: translateX(-1px) rotate(0)
    }
}

.builder-animation-buzz-out:hover,
.builder-anim-par:hover .builder-animation-buzz-out {
    animation-name: builder-animation-buzz-out;
    animation-duration: 0.7s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

.builder-animation-float:hover,
.builder-anim-par:hover .builder-animation-float {
    transform: translateY(-8px)
}

.builder-animation-sink:hover,
.builder-anim-par:hover .builder-animation-sink {
    transform: translateY(8px)
}

@keyframes builder-animation-bob {
    0% {
        transform: translateY(-8px)
    }

    50% {
        transform: translateY(-4px)
    }

    100% {
        transform: translateY(-8px)
    }
}

@keyframes builder-animation-bob-up {
    100% {
        transform: translateY(-8px)
    }
}

.builder-animation-bob:hover,
.builder-anim-par:hover .builder-animation-bob {
    animation-name: builder-animation-bob-up, builder-animation-bob;
    animation-duration: 0.4s, 1.5s;
    animation-timing-function: ease-out, ease-in-out;
    animation-delay: 0s, 0.3s;
    animation-iteration-count: infinite;
}

@keyframes builder-animation-hang {
    0% {
        transform: translateY(8px)
    }

    50% {
        transform: translateY(4px)
    }

    100% {
        transform: translateY(8px)
    }
}

@keyframes builder-animation-hang-up {
    100% {
        transform: translateY(8px)
    }
}

.builder-animation-hang:hover,
.builder-anim-par:hover .builder-animation-hang {
    animation-name: builder-animation-hang-up, builder-animation-hang;
    animation-duration: 0.4s, 1.5s;
    animation-timing-function: ease-out, ease-in-out;
    animation-delay: 0s, 0.3s;
    animation-iteration-count: 1, infinite;
    animation-direction: normal, alternate;
}

.builder-animation-bounce-in {
    transition-duration: 0.5s;
}

.builder-animation-bounce-in:hover,
.builder-anim-par:hover .builder-animation-bounce-in {
    transform: scale(1.2);
    transition-timing-function: cubic-bezier(0.52, 2.07, 0.36, -0.41);
}

.builder-animation-bounce-out {
    transition-duration: 0.5s;
}

.builder-animation-bounce-out:hover,
.builder-anim-par:hover .builder-animation-bounce-out {
    transform: scale(0.8);
    transition-timing-function: cubic-bezier(0.52, 2.07, 0.36, -0.41);
}

.builder-animation-rotate:hover,
.builder-anim-par:hover .builder-animation-rotate {
    transform: rotate(6deg);
}

.builder-animation-grow-rotate:hover,
.builder-anim-par:hover .builder-animation-grow-rotate {
    transform: scale(1.1) rotate(6deg);
}

.builder-animation-skew-forward:hover,
.builder-anim-par:hover .builder-animation-skew-forward {
    transform: skew(-9deg);
}

.builder-animation-skew-backward:hover,
.builder-anim-par:hover .builder-animation-skew-backward {
    transform: skew(9deg);
}

@keyframes builder-animation-wobble-vertical {
    17% {
        transform: translateY(9px)
    }

    33% {
        transform: translateY(-7px)
    }

    45% {
        transform: translateY(5px)
    }

    67% {
        transform: translateY(-3px)
    }

    83% {
        transform: translateY(1px)
    }

    100% {
        transform: translateY(0)
    }
}

.builder-animation-wobble-vertical:hover,
.builder-anim-par:hover .builder-animation-wobble-vertical {
    animation-name: builder-animation-wobble-vertical;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes builder-animation-wobble-horizontal {
    17% {
        transform: translateX(9px)
    }

    33% {
        transform: translateX(-7px)
    }

    50% {
        transform: translatex(5px)
    }

    67% {
        transform: translateX(-3px)
    }

    83% {
        transform: translateX(1px)
    }

    100% {
        transform: translateX(0)
    }
}

.builder-animation-wobble-horizontal:hover,
.builder-anim-par:hover .builder-animation-wobble-horizontal {
    animation-name: builder-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes builder-animation-wobble-bottom-to-right {
    17% {
        transform: translate(9px, 9px)
    }

    33% {
        transform: translate(-7px, -7px)
    }

    50% {
        transform: translate(5px, 5px)
    }

    67% {
        transform: translate(-3px, -3px)
    }

    83% {
        transform: translate(1px, 1px)
    }

    100% {
        transform: translate(0, 0)
    }
}


.builder-animation-wobble-bottom-to-right:hover,
.builder-anim-par:hover .builder-animation-wobble-bottom-to-right {
    animation-name: builder-animation-wobble-bottom-to-right;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes builder-animation-wobble-top-to-right {
    17% {
        transform: translate(9px, -9px)
    }

    33% {
        transform: translate(-7px, 7px)
    }

    50% {
        transform: translate(5px, -5px)
    }

    67% {
        transform: translate(-3px, 3px)
    }

    83% {
        transform: translate(1px, -1px)
    }

    100% {
        transform: translate(0, 0)
    }
}


.builder-animation-wobble-top-to-right:hover,
.builder-anim-par:hover .builder-animation-wobble-top-to-right {
    animation-name: builder-animation-wobble-top-to-right;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.builder-animation-wobble-top {
    transform-origin: 0 100%;
}

@keyframes builder-animation-wobble-top {
    17% {
        transform: skew(-13deg)
    }

    33% {
        transform: skew(11deg)
    }

    50% {
        transform: skew(-7deg)
    }

    67% {
        transform: skew(5deg)
    }

    83% {
        transform: skew(-3deg)
    }

    100% {
        transform: skew(0)
    }
}

.builder-animation-wobble-top:hover,
.builder-anim-par:hover .builder-animation-wobble-top {
    animation-name: builder-animation-wobble-top;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.builder-animation-wobble-bottom {
    transform-origin: 100% 0;
}

@keyframes builder-animation-wobble-bottom {
    17% {
        transform: skew(-13deg)
    }

    33% {
        transform: skew(11deg)
    }

    50% {
        transform: skew(-7deg)
    }

    67% {
        transform: skew(5deg)
    }

    83% {
        transform: skew(-3deg)
    }

    100% {
        transform: skew(0)
    }
}

.builder-animation-wobble-bottom:hover,
.builder-anim-par:hover .builder-animation-wobble-bottom {
    animation-name: builder-animation-wobble-bottom;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

@keyframes builder-animation-wobble-skew {
    17% {
        transform: skew(-13deg)
    }

    33% {
        transform: skew(11deg)
    }

    50% {
        transform: skew(-7deg)
    }

    67% {
        transform: skew(5deg)
    }

    83% {
        transform: skew(-3deg)
    }

    100% {
        transform: skew(0)
    }
}

.builder-animation-wobble-skew:hover,
.builder-anim-par:hover .builder-animation-wobble-skew {
    animation-name: builder-animation-wobble-skew;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

/* Icon animation end */

/*Badge widget */
.builder-badge a {
    text-decoration: none !important;
}

.builder-badge-btn {
    display: none;
    padding: 10px;
    padding: 0.40em 0.36em;
}

.builder-badge-details {
    margin-left: 1px;
    border-radius: .25rem;
    padding: 0.10rem;
    position: relative;
    top: -3px;
}

.builder-badge-details.builder-badge-normal {
    border-radius: .25rem;
}

.builder-badge-details.builder-badge-pills {
    border-radius: 10rem;
}

.builder-badge-btn .builder-badge-details {
    position: relative;
    top: -1px;
}

/*Badge widget end*/

/*Tooltip widget*/
.builder-tooltip-container {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.builder-tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    padding: 5px;
    word-break: break-word;
}

.builder-tooltip-icon {
    margin: 0px 4px;
}

.builder-tooltip-top {
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
}

.builder-tooltip-top:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000000 transparent transparent transparent;
}

.builder-tooltip-right {
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
}

.builder-tooltip-right:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #000000 transparent transparent;
}

.builder-tooltip-bottom {
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
}

.builder-tooltip-bottom:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #000000 transparent;
}

.builder-tooltip-left {
    top: 50%;
    bottom: auto;
    right: calc(100% + 10px);
    transform: translateY(-50%);
}

.builder-tooltip-left:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #000000;
}

.builder-tooltip-container:hover .builder-tooltip-text,
.builder-tooltip-text:focus {
    visibility: visible !important;
}

.builder-tooltip-on-click {
    visibility: visible !important;
}

/*Tooltip widget end*/

/* Button widget */

.builder-btn-holder {
    border-radius: 5px;
    display: inline-block;
    line-height: 1em;
    transition: all 0.3s;
    cursor: pointer;
    box-sizing: border-box;
}

.builder-btn-default {
    background-color: #818a91 !important;
    color: #ffffff !important;
}

.builder-btn-primary,
.builder-badge-primary,
.builder-progress-primary {
    color: #ffffff !important;
    background-color: #007bff !important;
}

.builder-btn-primary:hover {
    color: #ffffff !important;
    background-color: #0069d9 !important;
}

.builder-btn-secondary,
.builder-badge-secondary,
.builder-progress-secondary {
    color: #ffffff !important;
    background-color: #6c757d !important;
}

.builder-btn-secondary:hover {
    color: #ffffff !important;
    background-color: #5a6268 !important;
}

.builder-btn-success,
.builder-badge-success,
.builder-progress-success {
    color: #fff;
    background-color: #28a745 !important;
}

.builder-btn-success:hover {
    color: #ffffff !important;
    background-color: #218838 !important;
}

.builder-btn-info,
.builder-badge-info,
.builder-progress-info {
    color: #ffffff !important;
    background-color: #17a2b8 !important;
}

.builder-btn-info:hover {
    color: #ffffff !important;
    background-color: #138496 !important;
}

.builder-btn-warning,
.builder-badge-warning,
.builder-progress-warning {
    color: #212529 !important;
    background-color: #ffc107 !important;
}

.builder-btn-warning:hover {
    color: #212529 !important;
    background-color: #e0a800 !important;
}

.builder-btn-danger,
.builder-badge-danger,
.builder-progress-danger {
    color: #ffffff !important;
    background-color: #dc3545 !important;
}

.builder-btn-danger:hover {
    color: #ffffff !important;
    background-color: #c82333 !important;
}

.builder-btn-dark,
.builder-badge-dark,
.builder-progress-dark {
    color: #ffffff !important;
    background-color: #343a40 !important;
}

.builder-btn-dark:hover {
    color: #ffffff !important;
    background-color: #23272b !important;
}

.builder-btn-light,
.builder-badge-light,
.builder-progress-light {
    color: #212529 !important;
    background-color: #f8f9fa !important;
}

.builder-btn-light:hover {
    color: #212529 !important;
    background-color: #e2e6ea !important;
}

.builder-btn-link {
    color: #007bff !important;
}

.builder-btn-link:hover {
    text-decoration: underline !important;
}

.builder-btn-default:hover {
    color: #ffffff;
}

.builder-btn-mini {
    font-size: 14px;
    padding: 10px 20px;
}

.builder-btn-small {
    font-size: 16px;
    padding: 15px 30px;
}

.builder-btn-large {
    font-size: 18px;
    padding: 20px 40px;
}

.builder-btn-extra-large {
    font-size: 20px;
    padding: 25px 50px;
}

.builder-btn-double-large {
    font-size: 22px;
    padding: 30px 60px;
}

.builder-btn-icon-left .builder-btn-icon:last-child,
.builder-btn-icon-right .builder-btn-icon:first-child,
.builder-btn-icon-left .builder-btn-load-icon:last-child,
.builder-btn-icon-right .builder-btn-load-icon:first-child,
.builder-btn-icon-left .builder-cf-icon-right,
.builder-btn-icon-right .builder-cf-icon-left {
    display: none;
}

.builder-btn-icon-left .builder-btn-icon,
.builder-btn-icon-left .builder-btn-load-icon {
    padding-left: 0 !important;
    position: relative;
    z-index: 1;
}

.builder-btn-icon-right .builder-btn-icon,
.builder-btn-icon-right .builder-btn-load-icon {
    padding-right: 0 !important;
    position: relative;
    z-index: 1;
}

/* Button widget end */

/* Social Profile */
.builder-icon-holder[class*="builder-facebook"] .builder-social-fa {
    color: #3B5998;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-facebook"],
.builder-share-content[class*="builder-facebook"] {
    background-color: #3B5998;
    color: #3B5998;
}

.builder-icon-holder[class*="builder-twitter"] .builder-social-fa {
    color: #1DA1F2;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-twitter"],
.builder-share-content[class*="builder-twitter"] {
    background-color: #1DA1F2;
    color: #1DA1F2;
}

.builder-icon-holder[class*="builder-android"] .builder-social-fa {
    color: #A4C639
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-android"],
.builder-share_grp[class*="builder-social-shape"] .builder-share-content[class*="builder-android"] {
    background-color: #A4C639;
}

.builder-icon-holder[class*="builder-google-plus"] .builder-social-fa {
    color: #DD4B39
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-google-plus"],
.builder-share-content[class*="builder-google-plus"] {
    background-color: #DD4B39;
    color: #DD4B39;
}

.builder-icon-holder[class*="builder-instagram"] .builder-social-fa {
    color: #262626;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-instagram"],
.builder-share-content[class*="builder-instagram"] {
    background-color: #1DA1F2;
    color: #262626;
}

.builder-icon-holder[class*="builder-linkedin"] .builder-social-fa {
    color: #0077B5;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-linkedin"],
.builder-share-content[class*="builder-linkedin"] {
    background-color: #0077B5;
    color: #0077B5;
}

.builder-icon-holder[class*="builder-behance"] .builder-social-fa {
    color: #053eff;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-behance"],
.builder-share-content[class*="builder-behance"] {
    background-color: #053eff;
    color: #053eff;
}

.builder-icon-holder[class*="builder-pinterest"] .builder-social-fa {
    color: #c8232c;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-pinterest"],
.builder-share-content[class*="builder-pinterest"] {
    background-color: #c8232c;
    color: #c8232c;
}

.builder-icon-holder[class*="builder-get-pocket"] .builder-social-fa {
    color: #ef4156;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-get-pocket"],
.builder-share-content[class*="builder-get-pocket"] {
    background-color: #ef4156;
    color: #ef4156;
}

.builder-icon-holder[class*="builder-envelope"] .builder-social-fa {
    color: #292929;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-envelope"],
.builder-share-content[class*="builder-envelope"] {
    background-color: #292929;
    color: #292929;
}

.builder-icon-holder[class*="builder-reddit"] .builder-social-fa {
    color: #ff4301;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-reddit"],
.builder-share-content[class*="builder-reddit"] {
    background-color: #ff4301;
    color: #ff4301;
}

.builder-icon-holder[class*="builder-rss"] .builder-social-fa {
    color: #F26522;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-rss"],
.builder-share-content[class*="builder-rss"] {
    background-color: #F26522;
    color: #F26522;
}

.builder-icon-holder[class*="builder-skype"] .builder-social-fa {
    color: #00aff0;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-skype"],
.builder-share-content[class*="builder-skype"] {
    background-color: #00aff0;
    color: #00aff0;
}

.builder-icon-holder[class*="builder-slideshare"] .builder-social-fa {
    color: #0077b5;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-slideshare"],
.builder-share-content[class*="builder-slideshare"] {
    background-color: #0077b5;
    color: #0077b5;
}

.builder-icon-holder[class*="builder-snapchat"] .builder-social-fa {
    color: #fffc00;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-snapchat"],
.builder-share-content[class*="builder-snapchat"] {
    background-color: #fffc00;
    color: #fffc00;
}

.builder-icon-holder[class*="builder-soundcloud"] .builder-social-fa {
    color: #ff8800;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-soundcloud"],
.builder-share-content[class*="builder-soundcloud"] {
    background-color: #ff8800;
    color: #ff8800;
}

.builder-icon-holder[class*="builder-spotify"] .builder-social-fa {
    color: #1ED760;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-spotify"],
.builder-share-content[class*="builder-spotify"] {
    background-color: #1ED760;
    color: #1ED760;
}

.builder-icon-holder[class*="builder-stack-overflow"] .builder-social-fa {
    color: #F48024;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-stack-overflow"],
.builder-share-content[class*="builder-stack-overflow"] {
    background-color: #F48024;
    color: #F48024;
}

.builder-icon-holder[class*="builder-steam"] .builder-social-fa {
    color: #00adee;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-steam"],
.builder-share-content[class*="builder-steam"] {
    background-color: #00adee;
    color: #00adee;
}

.builder-icon-holder[class*="builder-stumbleupon"] .builder-social-fa {
    color: #EB4924;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-stumbleupon"],
.builder-share-content[class*="builder-stumbleupon"] {
    background-color: #EB4924;
    color: #EB4924;
}

.builder-icon-holder[class*="builder-telegram"] .builder-social-fa {
    color: #0088cc;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-telegram"],
.builder-share-content[class*="builder-telegram"] {
    background-color: #0088cc;
    color: #0088cc;
}

.builder-icon-holder[class*="builder-thumb-tack"] .builder-social-fa {
    color: #1AA1D8;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-thumb-tack"],
.builder-share-content[class*="builder-thumb-tack"] {
    background-color: #1AA1D8;
    color: #1AA1D8;
}

.builder-icon-holder[class*="builder-tripadvisor"] .builder-social-fa {
    color: #00af87;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-tripadvisor"],
.builder-share-content[class*="builder-tripadvisor"] {
    background-color: #00af87;
    color: #00af87;
}

.builder-icon-holder[class*="builder-tumblr"] .builder-social-fa {
    color: #001935;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-tumblr"],
.builder-share-content[class*="builder-tumblr"] {
    background-color: #001935;
    color: #001935;
}

.builder-icon-holder[class*="builder-twitch"] .builder-social-fa {
    color: #6441a5;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-twitch"],
.builder-share-content[class*="builder-twitch"] {
    background-color: #6441a5;
    color: #6441a5;
}

.builder-icon-holder[class*="builder-vimeo"] .builder-social-fa {
    color: #1CB7EA;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-vimeo"],
.builder-share-content[class*="builder-vimeo"] {
    background-color: #1CB7EA;
    color: #1CB7EA;
}

.builder-icon-holder[class*="builder-vk"] .builder-social-fa {
    color: #4C75A3;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-vk"],
.builder-share-content[class*="builder-vk"] {
    background-color: #4C75A3;
    color: #4C75A3;
}

.builder-icon-holder[class*="builder-weibo"] .builder-social-fa {
    color: #DF2029;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-weibo"],
.builder-share-content[class*="builder-weibo"] {
    background-color: #DF2029;
    color: #DF2029;
}

.builder-icon-holder[class*="builder-weixin"] .builder-social-fa {
    color: #7bb32e;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-weixin"],
.builder-share-content[class*="builder-weixin"] {
    background-color: #7bb32e;
    color: #7bb32e;
}

.builder-icon-holder[class*="builder-whatsapp"] .builder-social-fa {
    color: #25D366;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-whatsapp"],
.builder-share-content[class*="builder-whatsapp"] {
    background-color: #25D366;
    color: #25D366;
}

.builder-icon-holder[class*="builder-wordpress"] .builder-social-fa {
    color: #21759b;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-wordpress"],
.builder-share-content[class*="builder-wordpress"] {
    background-color: #21759b;
    color: #21759b;
}

.builder-icon-holder[class*="builder-xing"] .builder-social-fa {
    color: #026466;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-xing"],
.builder-share-content[class*="builder-xing"] {
    background-color: #026466;
    color: #026466;
}

.builder-icon-holder[class*="builder-yelp"] .builder-social-fa {
    color: #af0606;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-yelp"],
.builder-share-content[class*="builder-yelp"] {
    background-color: #af0606;
    color: #af0606;
}

.builder-icon-holder[class*="builder-youtube"] .builder-social-fa {
    color: #ff0000;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-youtube"],
.builder-share-content[class*="builder-youtube"] {
    background-color: #ff0000;
    color: #ff0000;
}

.builder-icon-holder[class*="builder-500px"] .builder-social-fa {
    color: #0099e5;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-500px"],
.builder-share-content[class*="builder-500px"] {
    background-color: #0099e5;
    color: #0099e5;
}

.builder-icon-holder[class*="builder-flickr"] .builder-social-fa {
    color: #0063dc;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-flickr"],
.builder-share-content[class*="builder-flickr"] {
    background-color: #0063dc;
    color: #0063dc;
}

.builder-icon-holder[class*="builder-github"] .builder-social-fa {
    color: #4078c0;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-github"],
.builder-share-content[class*="builder-github"] {
    background-color: #4078c0;
    color: #4078c0;
}

.builder-icon-holder[class*="builder-gitlab"] .builder-social-fa {
    color: #fca326;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-gitlab"],
.builder-share-content[class*="builder-gitlab"] {
    background-color: #fca326;
    color: #fca326;
}

.builder-icon-holder[class*="builder-apple"] .builder-social-fa {
    color: #999999;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-apple"],
.builder-share-content[class*="builder-apple"] {
    background-color: #999999;
    color: #999999;
}

.builder-icon-holder[class*="builder-jsfiddle"] .builder-social-fa {
    color: #0084FF;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-jsfiddle"],
.builder-share-content[class*="builder-jsfiddle"] {
    background-color: #0084FF;
    color: #0084FF;
}

.builder-icon-holder[class*="builder-houzz"] .builder-social-fa {
    color: #7ac142;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-houzz"],
.builder-share-content[class*="builder-houzz"] {
    background-color: #7ac142;
    color: #7ac142;
}

.builder-icon-holder[class*="builder-bitbucket"] .builder-social-fa {
    color: #205081;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-bitbucket"],
.builder-share-content[class*="builder-bitbucket"] {
    background-color: #205081;
    color: #205081;
}

.builder-icon-holder[class*="builder-codepen"] .builder-social-fa {
    color: #0ebeff;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-codepen"],
.builder-share-content[class*="builder-codepen"] {
    background-color: #0ebeff;
    color: #0ebeff;
}

.builder-icon-holder[class*="builder-delicious"] .builder-social-fa {
    color: #3399ff;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-delicious"],
.builder-share-content[class*="builder-delicious"] {
    background-color: #3399ff;
    color: #3399ff;
}

.builder-icon-holder[class*="builder-medium"] .builder-social-fa {
    color: #00ab6c;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-medium"],
.builder-share-content[class*="builder-medium"] {
    background-color: #00ab6c;
    color: #00ab6c;
}

.builder-icon-holder[class*="builder-meetup"] .builder-social-fa {
    color: #e0393e;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-meetup"],
.builder-share-content[class*="builder-meetup"] {
    background-color: #e0393e;
    color: #e0393e;
}

.builder-icon-holder[class*="builder-mixcloud"] .builder-social-fa {
    color: #52aad8;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-mixcloud"],
.builder-share-content[class*="builder-mixcloud"] {
    background-color: #52aad8;
    color: #52aad8;
}

.builder-icon-holder[class*="builder-dribbble"] .builder-social-fa {
    color: #444444;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-dribbble"],
.builder-share-content[class*="builder-dribbble"] {
    background-color: #444444;
    color: #444444;
}

.builder-icon-holder[class*="builder-foursquare"] .builder-social-fa {
    color: #f94877;
}

.builder-social_grp[class*="builder-social-shape"] .builder-icon-holder[class*="builder-foursquare"],
.builder-share-content[class*="builder-foursquare"] {
    background-color: #f94877;
    color: #f94877;
}

.builder-share_grp .builder-social-fa,
.builder-share_grp .builder-social-fa:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.builder-share_grp {
    font-size: 0;
}

.builder-share_grp>div {
    display: inline-block;
}

.builder-share_grp .builder-social-fa {
    height: 1em;
    width: 1em;
}

.builder-share_grp .builder-icon-holder {
    position: relative;
    min-height: 1em;
    min-width: 1em;
}

.builder-share-content .builder-social-fa,
.builder-share-content span {
    color: inherit;
}

.builder-share_grp.builder-social-bg-none .builder-share-content,
.builder-share_grp.builder-social-outline-border .builder-share-content {
    background-color: unset;
}

.builder-share_grp.builder-social-outline-border .builder-share-content {
    border: 2px solid;
}

.builder-social_grp[class*="builder-social-shape"] .builder-social-fa,
.builder-share_grp[class*="builder-social-shape"] .builder-social-fa,
.builder-share_grp[class*="builder-social-shape"] .builder-icon-name span {
    color: #ffffff;
}

.builder-social_grp .builder-icon-holder {
    display: inline-block;
    line-height: 100%;
    text-align: center;
}

.builder-share-content,
.builder-share-content .builder-icon-name {
    display: flex;
}

.builder-share-content .builder-icon-name {
    align-items: center;
}

.builder-social-shape-circle .builder-share-content {
    border-radius: 100000px;
}

.builder-icon-name span {
    padding: 0 20px 0 5px;
}

.builder-share-buttons {
    position: relative;
    border-radius: inherit;
}

.builder-social-shape-boxed .builder-share-buttons:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    left: 0;
}

.builder-share_grp .builder-icon-name span,
.builder-share_grp .builder-icon-holder {
    display: none;
}

.builder-share-type-icon .builder-icon-holder,
.builder-share-type-icon-label .builder-icon-holder,
.builder-share-type-label .builder-icon-name span,
.builder-share-type-icon-label .builder-icon-name span {
    display: block;
}

/* Social Profile end */

.builder-list-icon-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.builder-list-icon,
.builder-list-item {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.builder-list-item {
    width: 100%;
}

.builder-list-ul {
    margin: 0;
    padding: 0;
}

/* Video */

.builder-video .builder-video-holder {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

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

.builder-video-aspect-1-1 {
    padding-top: 100%;
}

.builder-video-aspect-3-2 {
    padding-top: 66.66%;
}

.builder-video-aspect-4-3 {
    padding-top: 75%;
}

.builder-video-aspect-8-5 {
    padding-top: 62.5%;
}

.builder-video-aspect-16-9 {
    padding-top: 56.25%;
}

.builder-video .builder-video-holder .builder-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.builder-video .builder-video-holder a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.builder-video .builder-video-holder .builder-video-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/* Video end */

/** Image **/

.builder-image,
.builder-image .builder-image-holder {
    position: relative;
}

.builder-image-link {
    text-decoration: none;
    cursor: pointer;
}

.builder-image-caption {
    margin-bottom: unset;
}

.builder-image-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: auto;
    transition: .5s ease;
}

.builder-image:hover .builder-image-overlay {
    opacity: 1;
}

.builder-image .builder-image-overlay .builder-image-overlay-content {
    width: 100%;
}

.builder-image * {
    border-radius: inherit;
}

/** Image End **/

.builder-button {
    text-align: center
}

.builder-button i {
    padding: 0 3px;
}

.builder-audio-container,
.builder-audio-container audio {
    width: 100%;
}

.builder-testimonial-avatar img {
    border: 1px solid #eee;
    border-radius: 50%;
    margin-right: 10px;
}

.builder-alignment-center {
    text-align: center;
}

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

.builder-alignment-right {
    text-align: right;
}

/* Testimonial */
.builder-testimonial {
    padding: 0.4em 0.8em;
    line-height: normal;
}

.builder-testimonial-image {
    -o-object-fit: cover;
    object-fit: cover;
    display: unset !important;
}

.builder-testimonial-square {
    border-radius: 0px;
}

.builder-testimonial-circle {
    border-radius: 50%;
}

.builder-aside-position {
    display: inline-block;
    vertical-align: middle;
}

.builder-aside-position .builder-testimonial-cite {
    text-align: left;
}

.builder-top-position,
.builder-testimonial-author {
    display: block;
}

.builder-aside-position .builder-testimonial-author {
    position: relative;
}

.builder-testimonial-container .builder-testimonial-avatar,
.builder-testimonial-container .builder-testimonial-details {
    display: table-cell;
    vertical-align: middle;
}

.builder-testimonial-designation {
    color: #999;
    font-size: 12px;
}

/* Testimonial End */

/* Progress bar */
.builder-progress-goal {
    margin-top: 10px;
}

.builder-progress-container {
    background-color: #eeeeee;
}

.builder-progress-bar {
    overflow: hidden;
}

.builder-progress-percent {
    float: right;
    padding-right: 10px;
}

.builder-progress-text {
    float: left;
    padding-left: 10px;
}

.builder-progress-prefix {
    float: left;
    text-align: left;
    display: inline-block;
}

.builder-progress-suffix {
    text-align: right;
}

/*Progress bar end*/

/*Stars widget start*/

.builder-stars>* {
    vertical-align: middle;
}

.builder-stars-container {
    text-align: center;
    color: #ccd6df;
    font-family: "FontAwesome", "Font Awesome 5 Free";
    display: inline-block;
    position: relative;
    border-color: 1px solid #ccd6df;
}

.builder-stars-container .builder-stars-icon {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.builder-stars-container .builder-stars-icon:before {
    content: "\f005";
    font-size: inherit;
    font-family: inherit;
    overflow: hidden;
    color: #f0ad4e;
    position: absolute;
    font-weight: 900;
    top: 0;
    left: 0;
}

.builder-stars-icon.builder-stars-empty:before {
    width: 0em;
}

.builder-stars-icon.builder-stars-1:before {
    width: 0.1em;
}

.builder-stars-icon.builder-stars-2:before {
    width: 0.2em;
}

.builder-stars-icon.builder-stars-3:before {
    width: 0.3em;
}

.builder-stars-icon.builder-stars-4:before {
    width: 0.4em;
}

.builder-stars-icon.builder-stars-5:before {
    width: 0.5em;
}

.builder-stars-icon.builder-stars-6:before {
    width: 0.6em;
}

.builder-stars-icon.builder-stars-7:before {
    width: 0.7em;
}

.builder-stars-icon.builder-stars-8:before {
    width: 0.8em;
}

.builder-stars-icon.builder-stars-9:before {
    width: 0.9em;
}

.builder-stars-icon.builder-stars-full:before {
    width: 1.1em;
}

/*Stars widget end*/

/* Site Title Start */
.builder-wp-title-align-top {
    display: block;
    text-align: center;
}

.builder-wp-title-heading {
    padding: 5px 20px;
    font-size: 20px;
    font-weight: 500;
    text-decoration-style: solid !important;
    margin: 0px;
    transition: all 400ms;
    flex-grow: 1;
}

.builder-wp-title-img {
    box-shadow: none !important;
}

.builder-wp-title-desc {
    padding: 5px 20px;
}

.builder-wp-title-align-left,
.builder-wp-title-align-right {
    display: flex;
}

.builder-wp-title-align-right {
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.builder-wp-title-vertical-top {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.builder-wp-title-vertical-middle {
    align-items: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.builder-wp-title-vertical-bottom {
    align-items: flex-end;
    -webkit-align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.builder-wp-title-section .builder-wp-title-link {
    text-decoration: none !important;
}

/* Site title End */

/*pricing plans*/
.builder-pricing {
    text-align: center;
    border: 2px solid #e8e3e3;
    border-radius: 6px;
}

.builder-pricing-rate-section {
    padding: 20px;
}

.builder-pricing-details h1,
.builder-pricing-details h2,
.builder-pricing-details h3,
.builder-pricing-details h4,
.builder-pricing-details h5 {
    margin: 10px 0px;
    padding: 0px;
}

.builder-pricing-details {
    position: relative;
    background-color: #1e1558;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.builder-pricing-details .builder-pricing-type {
    text-transform: uppercase;
}

.builder-pricing-sub-title {
    font-weight: normal;
}

.builder-pricing-details .builder-pricing-price {
    font-weight: 800;
}

.builder-pricing-price.builder-pricing-original {
    display: none;
    text-decoration: line-through;
    margin-right: 10px;
}

h2.builder-pricing-price {
    display: inline-block;
    margin: 5px 0px;
}

.builder-pricing-details {
    font-size: 15px;
}

.builder-pricing-duration {
    font-size: 15px;
    margin: 0px;
}

.builder-pricing-features {
    padding: 20px;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.builder-pricing-features .builder-pricing-ul {
    padding: 0px;
}

.builder-pricing-ul li {
    display: inline-block;
    list-style-type: none;
    padding: 5px 0px;
}

.builder-pricing-ul .builder-list_item:after {
    border-bottom: 2px solid #c5c5c5;
    margin-top: 5px;
}

.builder-list-li span i {
    margin-right: 5px;
}

.builder-pricing-btn {
    display: inline-block;
}

.builder-pricing-additional {
    margin: 20px 0px 0px;
}

.builder-pricing-ribbon-container {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.builder-pricing-ribbon {
    display: none;
    width: 200%;
    background-color: #ce4210ff;
    position: absolute;
    left: 0;
    text-align: center;
    line-height: 2;
    letter-spacing: 1px;
    color: #f0f0f0;
    margin-top: 40px;
    transform: translateY(-50%) translateX(-50%) translateX(50px) rotate(-45deg);
}

.builder-pricing-currency-top {
    vertical-align: top;
}

.builder-pricing-currency-middle {
    vertical-align: middle;
}

.builder-pricing-currency-bottom {
    vertical-align: bottom;
}

/*pricing plans end*/

/* Quote */

.builder-quotation-overlay {
    position: absolute;
    font-size: 70px;
    top: 0;
}

.builder-quote-content .fa-quote-right {
    display: inline-block;
    vertical-align: top;
}

/* Quote end */

.builder-call-icon-section,
.builder-call-content-section,
.builder-call-button-section {
    display: table-cell;
    vertical-align: middle;
}

.builder-call-center {
    text-align: center;
}

.builder-call-center .builder-call-icon-section,
.builder-call-center .builder-call-content-section,
.builder-call-center .builder-call-button-section {
    display: block;
}

.builder-call-3d {
    background: #eee;
    border-bottom: 5px solid #ddd;
    padding: 30px;
}

.builder-call-3d.builder-call-left .builder-call-icon-section {
    padding-right: 10px;
}

.builder-call-3d.builder-call-left .builder-call-content-section {
    padding-right: 20px
}

.builder-call-3d.builder-call-center .builder-call-icon-section {
    margin-bottom: 10px;
}

.builder-call-3d.builder-call-center .builder-call-content-section {
    margin-bottom: 20px;
}

.builder-call-3d .builder-call-title {
    font-size: 26px;
    font-weight: 700;
    /* margin-bottom: 5px; */
}

.builder-call-3d .builder-call-subtitle {
    font-size: 18px;
    /* margin-bottom: 10px; */
}

/* .builder-call-3d .builder-call-text{
color: #777;
} */

.builder-call-left .builder-call-button {
    display: flex;
}

.builder-button-mini {
    font-size: 13px;
    padding: 8px 12px;
    line-height: 13px;
    min-height: unset;
}

.builder-button-small {
    font-size: 15px;
    padding: 10px 18px;
    line-height: 15px;
    min-height: unset;
}

.builder-button-middle {
    font-size: 17px;
    padding: 14px 26px;
    line-height: 17px;
    min-height: unset;
}

.builder-button-large {
    font-size: 20px;
    padding: 18px 35px;
    line-height: 20px;
    min-height: unset;
}


.builder-modal-content,
.builder-splash-container {
    display: none;
    position: fixed;
    padding: 50px;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: auto;
    color: #000;
    opacity: 1;
    z-index: 99999;
    box-sizing: border-box;
}

.builder-modal-bottom-content,
.builder-splash-bottom-content {
    padding: 50px;
    background-color: #fefefe;
}

.builder-modal-body,
.builder-splash-body {
    position: absolute;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.builder-modal-content-overflow,
.builder-splash-content-overflow {
    max-height: 500px;
    overflow: auto;
}

.builder-splash-bg-close,
.builder-modal-bg-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.builder-btn-icon-left .builder-icon-right {
    display: none;
}

.builder-btn-icon-right .builder-icon-left {
    display: none;
}

/* Add Animation */
@-webkit-keyframes builder-animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes builder-animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.builder-modal-close,
.builder-splash-close {
    position: absolute;
    right: 10px;
    top: 25px;
    color: #fff;
    font-size: 70px !important;
    cursor: pointer;
}

.builder-modal-close:before,
.builder-modal-close:after,
.builder-splash-close:before,
.builder-splash-close:after {
    position: absolute;
    top: 2px;
    right: 38px;
    content: ' ';
    width: 2px;
    background-color: #fff;
}

.builder-modal-close:before,
.builder-splash-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.builder-modal-close:after,
.builder-splash-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.builder-modal-title,
.builder-splash-title {
    background-color: #3D54DF;
    color: #ffffff;
}


/* Countdown Start */
.builder-countdown-item {
    padding: 20px 30px;
    text-align: center;
}

.builder-countdown-counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.builder-countdown-days,
.builder-countdown-hours,
.builder-countdown-minutes,
.builder-countdown-seconds {
    display: inline-block;
    vertical-align: middle;
    background: #eee;
    margin: 0 5px 5px;
    flex: 1;
}

.builder-countdown-days div,
.builder-countdown-hours div,
.builder-countdown-minutes div,
.builder-countdown-seconds div {
    /* display: inline-block; */
    line-height: 1;
}

.builder-countdown-inline .builder-countdown-name {
    display: inline-block;
}

.builder-countdown-inline .builder-countdown-count {
    display: inline-block;
}

.builder-countdown-expired {
    display: none;
}

.builder-countdown[display_expired_text="true"] .builder-countdown-expired {
    display: block !important;
}

.builder-countdown[display_expired_text="true"] .builder-countdown-counter {
    display: none !important;
}

/* Countdown End*/

#builder-header-menu {
    display: inline-block;
}


/* splash style */
.builder-splash .builder-splash-dark,
.builder-modal .builder-modal-dark {
    background-color: #000000e0;
}

.builder-modal .builder-modal-light,
.builder-splash .builder-splash-light {
    background-color: #ffffffe0;
}

.builder-splash-light .builder-splash-close::after,
.builder-splash-light .builder-splash-close::before,
.builder-modal-light .builder-modal-close::after,
.builder-modal-light .builder-modal-close::before {
    background-color: #000000;
}

.builder-splash-dark .builder-splash-close::after,
.builder-splash-dark .builder-splash-close::before,
.builder-modal-dark .builder-modal-close::after,
.builder-modal-dark .builder-modal-close::before {
    background-color: #fff;
}

.builder-splash-content {
    padding: 30px;
}

/* splash style end */

.builder-modal-close {
    z-index: 999;
}

/* Style the tab */
.builder-tabs-holder {
    overflow: hidden;
}

/* Style the buttons inside the tab */
.builder-tabs-holder .builder-tablinks {
    background-color: inherit;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color: #000000;
}

/* Change background color of buttons on hover */
.builder-tabs-holder .builder-tablinks:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.builder-tabs-holder .builder-tablinks.active {
    background-color: #ccc;
}

/* Style the tab content */
.builder-tabs .builder-tabcontainer .builder-tab {
    display: none;
    padding: 6px 12px;
    border-top: none;
}

.builder-tabs-holder .builder-tablinks .fa {
    line-height: 1.5;
}

/* Tabs style end */

/* Divider start */
.builder-divider-holder {
    line-height: 0;
    font-size: 0;
}

.builder-divider-seperator {
    display: inline-block;
}

/* Divider end */

/* Counter style start*/

.builder-counter {
    padding: 20px;
}

.builder-counter-content {
    line-height: 1;
}

/* Counter style end*/

/*Image Slider style start*/
.builder-image-slider-ul {
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.builder-image-slider-ul[builder-setup] {
    display: block;
}

/*Image Slider style End*/

/*Google Maps start*/
.builder-google-maps-holder {
    line-height: 0;
}

.builder-google-maps-holder iframe {
    margin: 0px;
    width: 100%;
    height: 100%;
}

/* accordion style */
.builder-accordion_item {
    overflow: hidden;
}

.builder-accordion-tabs {
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    display: inline-block;
    text-decoration: none !important;
}

.builder-accordion-panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
}

/* accordion style end */

/* Alert Box style start */
.builder-alert {
    position: relative;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 15px 20px;
}

.builder-alert-title {
    display: inline-block;
}

.builder-alert-icon,
.builder-alert-title {
    vertical-align: middle;
}

.builder-alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.builder-alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.builder-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.builder-alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.builder-alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.builder-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.builder-alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.builder-alert-primary-link {
    color: #002752;
}

.builder-alert-secondary-link {
    color: #202326;
}

.builder-alert-success-link {
    color: #0b2e13;
}

.builder-alert-danger-link {
    color: #491217;
}

.builder-alert-warning-link {
    color: #533f03;
}

.builder-alert-info-link {
    color: #062c33;
}

.builder-alert-secondary-link {
    color: #686868;
}

.builder-alert-secondary-link {
    color: #040505;
}

.builder-alert-success hr {
    background-color: #b1dfbb;
}

.builder-alert-primary hr {
    background-color: #9fcdff;
}

.builder-alert-secondary hr {
    background-color: #c8cbcf;
}

.builder-alert-info hr {
    background-color: #abdde5;
}

.builder-alert-warning hr {
    background-color: #ffe8a1;
}

.builder-alert-danger hr {
    background-color: #f1b0b7;
}

.builder-alert-dark hr {
    background-color: #b9bbbe;
}

.builder-alert-close {
    position: absolute;
    top: 0;
    right: 0;
    color: inherit;
    height: 100%;
    width: 15px;
    background: rgba(3, 3, 3, 0.1);
    cursor: pointer;
}

.builder-alert-close:before,
.builder-alert-close:after {
    position: absolute;
    left: 7px;
    content: ' ';
    height: 13px;
    width: 1px;
    background-color: #333;
    top: calc(50% - 6.5px);
}

.builder-alert-close:before {
    transform: rotate(45deg);
}

.builder-alert-close:after {
    transform: rotate(-45deg);
}

/* Alert Box Style Ends */

/* Grid Gallery Style Start */

.builder-grid-gallery-ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.builder-gallery-item {
    list-style: none;
    border: none;
}

.builder-gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.builder-grid-gallery-caption {
    display: block;
}

.builder-grid-gallery-pagination {
    text-align: center;
}

.builder-grid-page-ul {
    display: inline-block;
    list-style-type: none;
    margin-top: 10px;
}

.builder-grid-page-ul li.active {
    background-color: #00A0D2;
    color: white;
}

.builder-grid-page-item {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.builder-grid-page-ul li:hover:not(.active) {
    background-color: #ddd;
    cursor: pointer;
}

/* Grid Gallery Style Ends */


/* animation */

.animated.builder-anim-fast {
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

.animated.builder-anim-fastest {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.animated.builder-anim-slow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.animated.builder-anim-slowest {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.builder-anim-loop-always {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* animation end */

.builder-parallax-window {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.builder-parallax-window .simpleParallax {
    height: 100%;
}

.builder-parallax-window img {
    max-width: unset;
}

/* WooCommerce widget */
.builder-product-images-container {
    display: flow-root;
}

.builder-add-to-cart-holder,
.builder-product-rating {
    display: inline-block;
}

.builder-product-related-container:not([builder-heading-show]) .products>h2,
.builder-product-related-container:not([builder-sale-flash]) ul.products li.product span.onsale,
.builder-addi-info-container:not([builder-show-heading]) h2 {
    display: none;
}

.builder-product-related-container[builder-content-align="right"] ul.products li.product .star-rating {
    margin-left: auto;
}

.builder-product-related-container[builder-content-align="center"] ul.products li.product .star-rating {
    margin-left: auto;
    margin-right: auto;
}

/*******************/

/* builder Owl */

.builder-owl-stage-outer [class^="builder-owl-"],
.builder-owl-carousel .builder-owl-item>.builder-ele-wrap,
.builder-owl-stage-outer {
    height: 100%;
}

.builder-owl-carousel .builder-owl-item {
    height: auto;
}

.builder-owl-prev,
.builder-owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.builder-owl-prev {
    left: 0;
}

.builder-owl-next {
    right: 0;
}

.builder-owl-theme .builder-owl-nav {
    margin-top: 0 !important;
}

.builder-owl-nav span {
    position: absolute;
    transform: translate(-50%, -53%);
}

.builder-owl-dot {
    vertical-align: middle;
}

/* builder Owl End */

/* Space Widget */
.builder-space-holder {
    height: 10px;
}

/* Space Widget End */

/* Address and Number */

.builder-phone-holder,
.builder-address-holder,
.builder-email-holder {
    display: flex;
}

.builder-address-icon,
.builder-address,
.builder-phone-icon,
.builder-phone,
.builder-email-icon,
.builder-email {
    margin-top: auto;
    margin-bottom: auto;
    word-break: break-word;
}

/* Address and Number End */

/****************/
/*** Freemium ***/
/****************/

/*** Breadcrumb ***/

.builder-breadcrumb-section b {
    font-weight: 100;
}

/* Breadcrumb End */

/*** Archive Posts ***/
.builder-posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 40px;
}

.builder-wposts-meta * {
    font-size: 12px;
}

.builder-pagination {
    padding: 50px 20px;
    text-align: center;
}

.builder-pagination .page-numbers:not(:last-child) {
    margin-right: 25px;
}

.builder-pagination a.page-numbers:hover {
    color: #36b2d1;
}

.builder-wposts-thumb {
    display: inline-block;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
}

@media all and (max-width:599px) {
    .builder-posts-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*** Archive Posts End ***/

/* WordPress Posts */
.builder-wposts-title {
    line-height: 1;
}

.builder-wposts-sep {
    font-weight: 100;
}

.builder-wposts-sep:last-child {
    display: none;
}

.builder-wposts-category a:not(:last-child):after,
.builder-wposts-tags a:not(:last-child):after {
    content: ', ';
}

/* WordPress Posts End*/

/* Copyright start */
.builder-copyright {
    text-align: center;
    color: #111;
}

.builder-copyright a {
    color: #111;
}

/* Copyright end */

/* Primary Menu */

.builder-wp-menu-container .builder-wp_menu-ul li.menu-item>a {
    display: flex;
    box-shadow: none;
    white-space: nowrap;
    position: relative;
}

.builder-menu-type-horizontal .sub-menu {
    z-index: 999;
}

.builder-wp-menu-container .builder-wp_menu-ul,
.builder-wp-menu-container .sub-menu {
    margin: 0px;
    padding: 0px;
}

.builder-menu-type-horizontal * {
    transition: all 0.5s;
}

.builder-menu-type-horizontal li.menu-item {
    display: inline-block;
    font-weight: 600;
}

.builder-menu-type-horizontal li.menu-item>a {
    box-shadow: none;
    border: none;
}

.builder-menu-type-horizontal .sub-menu {
    position: absolute;
    min-width: 100%;
}

.builder-menu-type-horizontal .sub-menu .sub-menu {
    top: 0px;
}

.builder-wp-menu-container .builder-wp_menu-ul li.menu-item {
    position: relative;
}

.builder-wp-menu-container ul li.menu-item span.after-icon {
    height: auto;
    width: 100%;
    position: relative;
    pointer-events: auto;
    line-height: inherit;
    color: inherit;
    font-size: inherit;
    margin-left: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.builder-wp-menu-container:not([data-align="left"]) .builder-wp_menu-ul span.after-icon {
    width: auto;
}

.builder-wp-menu-container[data-align="right"] .builder-wp_menu-ul ul li>ul a {
    justify-content: flex-end;
}

.builder-wp-menu-container[data-align="left"] .builder-wp_menu-ul ul li>ul a {
    justify-content: left;
}

.builder-wp-menu-container[data-align="center"] .builder-wp_menu-ul ul li>ul a {
    justify-content: center;
}

.builder-wp-menu-container ul li.menu-item span.after-icon:before {
    position: absolute;
    right: 0;
}

.builder-wp-menu-container .sub-menu,
.builder-primary-menu-bar {
    display: none;
}

.builder-menu-type-horizontal .sub-menu li.menu-item {
    display: block;
}

.builder-primary-menu-bar i {
    padding: 5px;
}

.builder-menu-type-vertical li.menu-item {
    list-style: none;
}

.builder-menu-type-vertical li.menu-item:not(:last-child)>a {
    margin-bottom: 6px !important;
    box-shadow: none;
    border: none;
}

.builder-menu-type-vertical .builder-wp_menu-ul>li>ul.sub-menu {
    margin-left: 0px;
}

.builder-wp-menu-holder[data-layout="dropdown"] .builder-primary-menu-bar,
.builder-wp-menu-holder.builder-wp-menu-dropdown .builder-primary-menu-bar {
    display: block;
}

.builder-wp-menu-holder[data-layout="dropdown"] .builder-wp_menu-ul,
.builder-wp-menu-holder.builder-wp-menu-dropdown .builder-wp_menu-ul {
    display: none;
}

.builder-menu-hover-underline:not(.none) .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-framed:not(.none) .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline:not(.none) .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline:not(.none) .builder-wp_menu-ul>li>a:after,
.builder-menu-hover-overline:not(.none) .builder-wp_menu-ul>li>a:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    height: 3px;
    width: 0px;
    background-color: #2154CF;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-width: 0px;
}

.builder-menu-hover-doubleline .builder-wp_menu-ul>li>a:after {
    left: unset;
    right: 0;
}

.builder-menu-hover-framed .builder-wp_menu-ul>li>a:before {
    background-color: unset !important;
    height: 100% !important;
}

.builder-menu-hover-framed .builder-wp_menu-ul>li>a:hover:before {
    border: 3px solid #2154CF;
}

.builder-menu-hover-overline .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline .builder-wp_menu-ul>li>a:before {
    top: 0;
    bottom: unset;
}

.builder-menu-hover-underline.dropin .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-framed.dropin .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.dropin .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.dropin .builder-wp_menu-ul>li>a:after,
.builder-menu-hover-overline.dropin .builder-wp_menu-ul>li>a:before {
    width: 100%;
    opacity: 0;
    bottom: -5px;
}

.builder-menu-hover-underline.dropout .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-framed.dropout .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.dropout .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.dropout .builder-wp_menu-ul>li>a:after,
.builder-menu-hover-overline.dropout .builder-wp_menu-ul>li>a:before {
    width: 100%;
    opacity: 0;
    bottom: 5px;
}

.builder-menu-hover-underline.dropin .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-framed.dropin .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-doubleline.dropin .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-doubleline.dropin .builder-wp_menu-ul>li>a:hover:after,
.builder-menu-hover-overline.dropin .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-underline.dropout .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-framed.dropout .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-doubleline.dropout .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-doubleline.dropout .builder-wp_menu-ul>li>a:hover:after,
.builder-menu-hover-overline.dropout .builder-wp_menu-ul>li>a:hover:before {
    bottom: 0px;
}

.builder-menu-hover-underline.grow .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-framed.grow .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.grow .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.grow .builder-wp_menu-ul>li>a:after,
.builder-menu-hover-overline.grow .builder-wp_menu-ul>li>a:before {
    width: 100%;
    transform: scale(0);
}

.builder-menu-hover-underline.fade .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-framed.fade .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.fade .builder-wp_menu-ul>li>a:before,
.builder-menu-hover-doubleline.fade .builder-wp_menu-ul>li>a:after,
.builder-menu-hover-overline.fade .builder-wp_menu-ul>li>a:before {
    width: 100%;
    transition-duration: 1000ms;
    opacity: 0;
}

.builder-menu-hover-underline .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-framed .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-doubleline .builder-wp_menu-ul>li>a:hover:before,
.builder-menu-hover-doubleline .builder-wp_menu-ul>li>a:hover:after,
.builder-menu-hover-overline .builder-wp_menu-ul>li>a:hover:before {
    transform: scale(1);
    opacity: 1;
    width: 100%;
}

.builder-menu-hover-text .builder-wp_menu-ul>li>a:hover {
    transform: scale(1.2);
}

.builder-wp_menu .sub-menu,
.builder-menu-type-dropdown {
    z-index: 999;
}

.builder-menu-type-dropdown {
    position: absolute;
}

.builder-togglt-on .builder-wp_menu-ul,
.builder-active-sub-menu:not(.builder-mega-menu-item)>ul.sub-menu,
.builder-menu-type-horizontal .menu-item-has-children:not(.builder-mega-menu-item):hover>ul.sub-menu,
.builder-wp_menu .builder-menu-type-vertical[class*='builder-submenu-position-'] .menu-item-has-children:not(.builder-mega-menu-item):hover>ul.sub-menu {
    display: block !important;
}

.builder-menu-type-dropdown.builder-wp_menu-ul,
.builder-menu-type-dropdown.builder-wp_menu-right,
.builder-menu-type-dropdown.builder-wp_menu-left,
.builder-menu-type-dropdown.builder-wp_menu-full {
    position: fixed;
    z-index: 999;
    height: 100%;
    top: 0;
    transition: all 0.4s;
}

.builder-menu-type-dropdown.builder-wp_menu-right {
    right: -100%;
}

.builder-menu-type-dropdown.builder-wp_menu-left {
    left: -100%;
}

.builder-wp_menu-left.builder-togglt-on {
    left: 0;
}

.builder-wp_menu-right.builder-togglt-on {
    right: 0;
}

.builder-menu-type-dropdown.builder-wp_menu-full {
    left: 0;
    right: 0;
    top: -100%;
}

.builder-wp_menu-full.builder-togglt-on {
    top: 0;
}

.builder-wp_menu-close {
    cursor: pointer;
}

.builder-menu-type-dropdown .builder-wp_menu-close {
    display: block;
}

.builder-wp_menu-close,
.builder-wp_menu-down .builder-wp_menu-close {
    display: none;
}

.builder-wp_menu-close i {
    position: absolute;
    z-index: 99;
}

.builder-menu-type-dropdown.builder-wp_menu-right .builder-wp_menu-ul,
.builder-menu-type-dropdown.builder-wp_menu-left .builder-wp_menu-ul,
.builder-menu-type-dropdown.builder-wp_menu-full .builder-wp_menu-ul {
    position: absolute;
    width: 100%;
}

.builder-menu-type-dropdown .builder-wp_menu-ul li.menu-item>a {
    white-space: normal !important;
}

.builder-menu-type-dropdown .builder-wp_menu-ul {
    height: 100%;
    max-height: -webkit-fill-available;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.builder-menu-type-dropdown .builder-wp_menu-ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.builder-menu-type-dropdown .builder-wp_menu-ul::-webkit-scrollbar-track {
    background-color: transparent;
}

.builder-menu-type-dropdown .builder-wp_menu-ul::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Mega menu css start */

.builder-wp_menu-ul .builder-mega-menu {
    transition: none;
    position: absolute;
    max-width: 100vw;
    z-index: 999;
    padding: 10px;
    background: #fff;
    color: #000;
    display: none;
    border-radius: 2px;
    left: 0;
    text-align: initial;
    overflow-y: auto;
}

.builder-wp_menu .builder-menu-type-vertical .builder-mega-menu-item,
.builder-wp-menu-container:not(.builder-menu-type-horizontal) .menu-item>.builder-mega-menu {
    position: relative;
    width: 100%;
}

.builder-wp_menu-ul .builder-mega-menu * {
    transition: none;
}

/* To avoid row widget full width feature */
.builder-wp_menu-ul .builder-mega-menu .builder-wrap-inner-row,
.builder-wp_menu-ul .builder-mega-menu .builder-inner_row {
    max-width: 100% !important;
    left: auto !important;
}

.builder-wp_menu-ul .builder-set-position {
    display: block !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.builder-active-sub-menu.builder-mega-menu-item>.builder-mega-menu,
.builder-active-mega-menu.builder-mega-menu-item>.builder-mega-menu,
:not(.builder-ele-wrap)>.builder-wp_menu .builder-menu-type-horizontal .builder-mega-menu-item:hover>.builder-mega-menu,
:not(.builder-ele-wrap)>.builder-wp_menu .builder-menu-type-vertical[class*='builder-submenu-position-'] .builder-mega-menu-item:hover>.builder-mega-menu {
    display: block !important;
}

@keyframes builder-submenu-fade {
    0% {
        opacity: 0
    }

    75% {
        opacity: 1
    }
}

@keyframes builder-submenu-pulse {
    50% {
        transform: scale3d(1.04, 1.04, 1.04);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes builder-submenu-fadeindown {
    0% {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes builder-submenu-fadeinup {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes builder-submenu-slideindown {
    0% {
        transform: translate3d(0, -10px, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes builder-submenu-slideinup {
    0% {
        transform: translate3d(0, 20px, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes builder-submenu-zoomin {
    0% {
        opacity: 0;
        transform: scale3d(.5, .5, .5);
    }

    50% {
        opacity: 1;
    }
}

@keyframes builder-submenu-flip {
    0% {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        transform: perspective(400px);
    }
}

.builder-wp-menu-container.builder-menu-type-vertical.builder-submenu-position-right .builder-mega-menu,
.builder-menu-type-vertical.builder-submenu-position-right .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    right: auto;
}

.builder-wp-menu-container.builder-menu-type-vertical.builder-submenu-position-left .builder-mega-menu,
.builder-menu-type-vertical.builder-submenu-position-left .sub-menu {
    position: absolute;
    right: 100%;
    top: 0;
    left: auto;
}

.builder-menu-type-vertical:not(.builder-submenu-position-right, .builder-submenu-position-left) .builder-mega-menu,
.builder-menu-type-vertical:not(.builder-submenu-position-right, .builder-submenu-position-left) .sub-menu {
    width: 100% !important;
}

.builder-menu-icon {
    align-self: center;
    text-align: center;
    margin: 0 5px 0 0;
}

.builder-nav-menu-icon-right .builder-menu-icon {
    margin: 0 0 0 5px;
    order: 1;
}

.builder-nav-menu-icon-right .builder-menu-icon~.builder-nav-menu-title {
    order: 0;
}

.builder-nav-menu-icon-right .builder-menu-icon~ :not(.builder-nav-menu-title, .builder-menu-icon) {
    order: 2;
}

.builder-menu-highlight {
    font-size: 0.7em;
    margin-left: 5px;
    padding: 3px 6px;
    border-radius: 2px;
}

/* Mega menu css ends */

/* Column Menu css*/
.builder-mega-column-item>.sub-menu {
    columns: 2;
}

.builder-mega-column-item .sub-menu .sub-menu .builder-nav-menu-title {
    font-size: 0.85em;
}

.builder-mega-column-item .sub-menu .sub-menu {
    display: block;
    position: static;
}

.builder-mega-column-item .sub-menu li.menu-item {
    break-inside: avoid;
}

.builder-mega-column-item ul.sub-menu span.after-icon {
    display: none;
}

/* Primary Menu End */

/* Contact Form start */
.builder-contact-form-note {
    margin-bottom: 10px;
}

.builder-contact_item input,
.builder-contact_item textarea,
.builder-contact_item select {
    width: 100%;
    outline: none;
}

.builder-contact_item textarea {
    height: auto;
}

.builder-contact-holder input[type="checkbox"] {
    visibility: hidden;
    display: contents;
}

.builder-contact-holder label {
    cursor: pointer;
    display: block;
}

.builder-contact-holder input[type="checkbox"]+label:before {
    border: 1px solid #333;
    content: "\00a0";
    display: inline-block;
    font: 16px/1em sans-serif;
    margin-right: 0.25em;
    padding: 0;
    vertical-align: middle;
}

.builder-contact-holder input[type="checkbox"]:checked+label:before {
    content: "\2713";
    text-align: center;
}

.builder-contact-holder input[type="checkbox"]:checked+label:after {
    font-weight: bold;
}

.builder-contact-holder input[type="checkbox"]:focus+label::before {
    outline: rgb(59, 153, 252) auto 5px;
}

.builder-contact-holder input[type='radio'] {
    -webkit-appearance: none;
    border-radius: 50%;
    outline: none;
    vertical-align: middle;
    box-shadow: 0 0 5px 0px gray inset;
    padding: 0 !important;
}

.builder-contact-holder input[type="radio"]:checked:before {
    background: #333333;
}

.builder-contact-holder input[type='radio']:hover {
    box-shadow: 0 0 5px 0px orange inset;
}

.builder-contact-holder input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%;
}

.builder-contact-submit-btn {
    cursor: pointer;
}

.builder-cf-msg-suc,
.builder-cf-msg-err {
    padding: 10px;
    padding: 10px;
    margin: 10px 0px;
    background: #a4f4ad;
    border: 1px solid #6fc16f;
    border-radius: 4px;
}

.builder-cf-msg-err {
    background: #f9dacb;
    border: 1px solid #ff746e;
}

/* Contact Form End */

/*** Post Excerpt ***/

.builder-empty-widget {
    height: 30px;
    width: 100%;
    background-color: #dedddd;
    text-align: center;
}

.builder-empty-widget:after {
    font-family: "FontAwesome", "Font Awesome 5 Free";
    font-weight: 900;
}

.builder-post-excerpt.builder-empty-widget:after {
    content: '\f15c';
}

.builder-featured-img.builder-empty-widget:after {
    content: '\f03e';
}

/*** Post Excerpt End ***/

/* Post info*/
.builder-post-info-vertical>div {
    display: inline-block;
}

/* Post info end*/


/* Post Nav */
.builder-post-nav-container {
    display: flex;
    align-items: center;
}

.builder-prev-post a,
.builder-next-post a {
    display: inline-flex;
    align-items: center;
}

.builder-next-post a .builder-post-nav-icon {
    padding-left: 12px;
}

.builder-prev-post a .builder-post-nav-icon {
    padding-right: 12px;
}

.builder-next-post {
    text-align: right;
}

.builder-prev-post a:hover,
.builder-next-post a:hover {
    text-decoration: none;
}

.builder-prev-post,
.builder-next-post {
    width: calc(50% - 1px);
}

.builder-post-nav-container .builder-prev-holder,
.builder-post-nav-container .builder-next-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.builder-post-nav-separator {
    align-self: stretch;
}

/* Post Nav end */

/*Flipbox css start*/
.builder-flipbox-container {
    margin: 0 auto;
}

.builder-flipbox-flipper {
    position: relative;
    height: 300px;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.builder-flipbox-front {
    background-color: #bc1a1a;
    border-radius: inherit;
}

.builder-flipbox-back {
    background-color: #f9e73f;
    display: block;
    border-radius: inherit;
}

.builder-flipbox-flipper:hover .builder-flipbox-front,
.builder-flipbox-flipper .builder-flipbox-back {
    opacity: 0;
}

.builder-flipbox-flipper:hover .builder-flipbox-back {
    opacity: 1;
}

.builder-flipbox-box {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .8s ease-in-out;
    -webkit-transition: all .8s ease-in-out;
}

.builder-flipbox-box-overlay {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    width: 100%;
    height: 100%;
    align-items: stretch;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-direction: normal;
    text-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    padding: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
}

.builder-flipbox-3d .builder-flipbox-box-inner {
    transform: translateZ(90px) scale(.91);
    -webkit-transform: translateZ(90px) scale(.91);
}

.builder-flipbox-3d .builder-flipbox-box-overlay {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: translateZ(.1px);
    -webkit-transform: translateZ(.1px);
}

.builder-flipbox-flip .builder-flipbox-flipper {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.builder-flipbox-flip .builder-flipbox-box {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.builder-flipbox-flip .builder-flipbox-front {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 1
}

.builder-flipbox-flip .builder-flipbox-flipper:hover .builder-flipbox-back {
    transform: none;
    -webkit-transform: none;
}

.builder-flipbox-flip.builder-flipbox-direction-right .builder-flipbox-back {
    transform: rotateX(0) rotateY(-180deg);
    -webkit-transform: rotateX(0) rotateY(-180deg);
}

.builder-flipbox-flip.builder-flipbox-direction-left .builder-flipbox-back,
.builder-flipbox-flip.builder-flipbox-direction-right .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: rotateX(0) rotateY(180deg);
    -webkit-transform: rotateX(0) rotateY(180deg);
}

.builder-flipbox-flip.builder-flipbox-direction-left .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: rotateX(0) rotateY(-180deg);
    -webkit-transform: rotateX(0) rotateY(-180deg);
}

.builder-flipbox-flip.builder-flipbox-direction-up .builder-flipbox-back {
    transform: rotateX(-180deg) rotateY(0);
    -webkit-transform: rotateX(-180deg) rotateY(0);
}

.builder-flipbox-flip.builder-flipbox-direction-down .builder-flipbox-back,
.builder-flipbox-flip.builder-flipbox-direction-up .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: rotateX(180deg) rotateY(0);
    -webkit-transform: rotateX(180deg) rotateY(0);
}

.builder-flipbox-flip.builder-flipbox-direction-down .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: rotateX(-180deg) rotateY(0);
    -webkit-transform: rotateX(-180deg) rotateY(0);
}

.builder-flipbox-push .builder-flipbox-flipper,
.builder-flipbox-slide .builder-flipbox-flipper {
    overflow: hidden;
}

.builder-flipbox-push .builder-flipbox-front {
    transform: none;
    -webkit-transform: none;
}

.builder-flipbox-push.builder-flipbox-direction-right .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: translateX(100%) translateY(0);
    -webkit-transform: translateX(100%) translateY(0);
}

.builder-flipbox-push.builder-flipbox-direction-left .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: translateX(-100%) translateY(0);
    -webkit-transform: translateX(-100%) translateY(0);
}

.builder-flipbox-push.builder-flipbox-direction-up .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: translateX(0) translateY(-100%);
    -webkit-transform: translateX(0) translateY(-100%);
}

.builder-flipbox-push.builder-flipbox-direction-down .builder-flipbox-flipper:hover .builder-flipbox-front {
    transform: translateX(0) translateY(100%);
    -webkit-transform: translateX(0) translateY(100%);
}

.builder-flipbox-push .builder-flipbox,
.builder-flipbox-slide .builder-flipbox {
    overflow: hidden;
}

.builder-flipbox-push .builder-flipbox-flipper:hover .builder-flipbox-back,
.builder-flipbox-slide .builder-flipbox-flipper:hover .builder-flipbox-back {
    transform: none;
    -webkit-transform: none;
}

.builder-flipbox-push.builder-flipbox-direction-right .builder-flipbox-back,
.builder-flipbox-slide.builder-flipbox-direction-right .builder-flipbox-back {
    transform: translateX(-100%) translateY(0);
    -webkit-transform: translateX(-100%) translateY(0);
}

.builder-flipbox-push.builder-flipbox-direction-left .builder-flipbox-back,
.builder-flipbox-slide.builder-flipbox-direction-left .builder-flipbox-back {
    transform: translateX(100%) translateY(0);
    -webkit-transform: translateX(100%) translateY(0);
}

.builder-flipbox-push.builder-flipbox-direction-up .builder-flipbox-back,
.builder-flipbox-slide.builder-flipbox-direction-up .builder-flipbox-back {
    transform: translateX(0) translateY(100%);
    -webkit-transform: translateX(0) translateY(100%);
}

.builder-flipbox-push.builder-flipbox-direction-down .builder-flipbox-back,
.builder-flipbox-slide.builder-flipbox-direction-down .builder-flipbox-back {
    transform: translateX(0) translateY(-100%);
    -webkit-transform: translateX(0) translateY(-100%);
}

.builder-flipbox-zoom-out .builder-flipbox-flipper .builder-flipbox-front {
    transition: opacity .45s, width .1ms, -webkit-transform .8s;
    -webkit-transition: opacity .45s, width .1ms, -webkit-transform .8s;
    transition: transform .8s, opacity .45s, width .1ms;
    transition: transform .8s, opacity .45s, width .1ms, -webkit-transform .8s;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    z-index: 1;
    width: 100%
}

.builder-flipbox-zoom-out .builder-flipbox-flipper:hover .builder-flipbox-front {
    width: 0;
    opacity: 0;
    transform: scale(.7);
    -webkit-transform: scale(.7);
    transition: opacity .8s .1s, width .1ms .8s, -webkit-transform .8s;
    -webkit-transition: opacity .8s .1s, width .1ms .8s, -webkit-transform .8s;
    transition: transform .8s, opacity .8s .1s, width .1ms .8s;
    transition: transform .8s, opacity .8s .1s, width .1ms .8s, -webkit-transform .8s
}

.builder-flipbox-zoom-in .builder-flipbox-flipper .builder-flipbox-back {
    -webkit-transition: opacity .5s .2s, -webkit-transform .7s;
    transition: opacity .5s .2s, -webkit-transform .7s;
    transition: transform .7s, opacity .5s .2s;
    transition: transform .7s, opacity .5s .2s, -webkit-transform .7s;
    opacity: 0;
    transform: scale(.7);
    -webkit-transform: scale(.7);
}

.builder-flipbox-zoom-in .builder-flipbox-flipper:hover .builder-flipbox-back {
    -webkit-transition: opacity .5s, -webkit-transform .7s;
    transition: opacity .5s, -webkit-transform .7s;
    transition: transform .7s, opacity .5s;
    transition: transform .7s, opacity .5s, -webkit-transform .7s;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.builder-flipbox-fade .builder-flipbox-flipper .builder-flipbox-back {
    opacity: 0
}

.builder-flipbox-fade .builder-flipbox-flipper:hover .builder-flipbox-back {
    opacity: 1
}

.builder-flipbox-container.builder-flipbox-flipped .builder-flipbox-main .builder-flipbox-front {
    display: none
}

.builder-flipbox-container.builder-flipbox-flipped .builder-flipbox-main .builder-flipbox-back {
    transform: none;
    -webkit-transform: none;
    opacity: 1;
}

.builder-flipbox-image {
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
}

.builder-flipbox-image img {
    width: 50%;
    object-fit: cover;
    -o-object-fit: cover;
}

.builder-flipbox[back_section="true"] .builder-flipbox-front {
    display: none;
}

.builder-flipbox[back_section="true"] .builder-flipbox-back {
    transform: rotateX(0) rotateY(0deg) !important;
    -webkit-transform: rotateX(0) rotateY(0deg) !important;
    opacity: 1 !important;
}

.builder-flipbox-back .builder-service-btn.builder-btn-link {
    background-color: transparent;
}

/*Flipbox End*/




/* Animated Heading */

.builder-aheading-holder {
    display: inline-block;
    position: relative;
}

.builder-animated-heading {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    -webkit-background-clip: text;
}

[class*="builder-blobs"] {
    display: block;
    position: absolute;
    mix-blend-mode: color;
    animation: builder-blobs 10s ease-in-out infinite alternate;
}

.builder-blobs_1 {
    width: 9%;
    height: 47%;
    top: 12%;
    left: 4%;
}

.builder-blobs_2 {
    width: 10%;
    height: 50%;
    top: 60%;
    left: 34%;
}

.builder-blobs_3 {
    width: 20%;
    height: 46%;
    top: 10%;
    left: 20%;
}

.builder-blobs_4 {
    width: 30%;
    height: 40%;
    top: 30%;
    left: 70%;
}

.builder-blobs_5 {
    width: 12%;
    height: 40%;
    top: 61%;
    left: 12%;
}

.builder-blobs_6 {
    width: 25%;
    height: 45%;
    top: 5%;
    left: 45%;
}

.builder-blobs_7 {
    width: 32%;
    height: 45%;
    top: 67%;
    left: 46%;
}

.builder-hEffect-none [class*="builder-blobs"] {
    display: none;
}

@keyframes builder-blobs {
    0% {
        border-radius: 26% 74% 61% 39% / 54% 67% 33% 46%
    }

    10% {
        border-radius: 74% 26% 47% 53% / 68% 46% 54% 32%
    }

    20% {
        border-radius: 48% 52% 30% 70% / 27% 37% 63% 73%
    }

    30% {
        border-radius: 73% 27% 57% 43% / 28% 67% 33% 72%
    }

    40% {
        border-radius: 63% 37% 56% 44% / 25% 28% 72% 75%
    }

    50% {
        border-radius: 39% 61% 70% 30% / 61% 29% 71% 39%
    }

    60% {
        border-radius: 27% 73% 29% 71% / 73% 51% 49% 27%
    }

    70% {
        border-radius: 39% 61% 65% 35% / 74% 65% 35% 26%
    }

    80% {
        border-radius: 55% 45% 37% 63% / 38% 30% 70% 62%
    }

    90% {
        border-radius: 25% 75% 70% 30% / 39% 50% 50% 61%
    }

    100% {
        border-radius: 66% 34% 33% 67% / 65% 73% 27% 35%
    }
}

.builder-hEffect-blobs,
.builder-hEffect-none,
.builder-heading-rotating {
    -webkit-text-fill-color: transparent;
}

.builder-heading-rotating .builder-animated-heading {
    display: inline;
}

.builder-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.builder-words-wrapper span {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.builder-words-wrapper span.builder-is-visible {
    position: relative;
}

/*** xrotate-1 ***/
.builder-aheading-rotate1 .builder-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.builder-aheading-rotate1 span {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.builder-aheading-rotate1 span.builder-is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: builder-rotate-1-in 1.2s;
    -moz-animation: builder-rotate-1-in 1.2s;
    animation: builder-rotate-1-in 1.2s;
}

.builder-aheading-rotate1 span.builder-is-hidden {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: builder-rotate-1-out 1.2s;
    -moz-animation: builder-rotate-1-out 1.2s;
    animation: builder-rotate-1-out 1.2s;
}

@-webkit-keyframes builder-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -webkit-transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(360deg);
        opacity: 1;
    }
}

@-moz-keyframes builder-rotate-1-in {
    0% {
        -moz-transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -moz-transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -moz-transform: rotateX(360deg);
        opacity: 1;
    }
}

@keyframes builder-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -webkit-transform: rotateX(120deg);
        -moz-transform: rotateX(120deg);
        -ms-transform: rotateX(120deg);
        -o-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(360deg);
        -moz-transform: rotateX(360deg);
        -ms-transform: rotateX(360deg);
        -o-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}

@-webkit-keyframes builder-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }
}

@-moz-keyframes builder-rotate-1-out {
    0% {
        -moz-transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -moz-transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -moz-transform: rotateX(180deg);
        opacity: 0;
    }
}

@keyframes builder-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        -moz-transform: rotateX(-40deg);
        -ms-transform: rotateX(-40deg);
        -o-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}

/*** xrotate-2 ***/
.builder-aheading-rotate2 .builder-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.builder-aheading-rotate2 strong,
.builder-aheading-rotate2 b {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.builder-aheading-rotate2 span {
    opacity: 0;
}

.builder-aheading-rotate2 strong {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
}

.builder-is-visible .builder-aheading-rotate2 strong {
    opacity: 1;
}

.builder-aheading-rotate2 strong.builder-aheading-in {
    -webkit-animation: builder-rotate-2-in 0.4s forwards;
    -moz-animation: builder-rotate-2-in 0.4s forwards;
    animation: builder-rotate-2-in 0.4s forwards;
    -webkit-background-clip: text;
}

.builder-aheading-rotate2 strong.builder-aheading-out {
    -webkit-animation: builder-rotate-2-out 0.4s forwards;
    -moz-animation: builder-rotate-2-out 0.4s forwards;
    animation: builder-rotate-2-out 0.4s forwards;
    -webkit-background-clip: text;
}

.builder-aheading-rotate2 b {
    -webkit-transform: translateZ(20px);
    -moz-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    -o-transform: translateZ(20px);
    transform: translateZ(20px);
    -webkit-text-fill-color: transparent;
}

.builder-no-csstransitions .builder-aheading-rotate2 strong {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 0;
}

.builder-no-csstransitions .builder-aheading-rotate2 strong b {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.builder-no-csstransitions .builder-aheading-rotate2 .builder-is-visible strong {
    opacity: 1;
}

@-webkit-keyframes builder-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
    }
}

@-moz-keyframes builder-rotate-2-in {
    0% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(0deg);
    }
}

@keyframes builder-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        -moz-transform: translateZ(-20px) rotateX(90deg);
        -ms-transform: translateZ(-20px) rotateX(90deg);
        -o-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        -moz-transform: translateZ(-20px) rotateX(-10deg);
        -ms-transform: translateZ(-20px) rotateX(-10deg);
        -o-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        -moz-transform: translateZ(-20px) rotateX(0deg);
        -ms-transform: translateZ(-20px) rotateX(0deg);
        -o-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg);
    }
}

@-webkit-keyframes builder-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
    }
}

@-moz-keyframes builder-rotate-2-out {
    0% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(-90deg);
    }
}

@keyframes builder-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        -moz-transform: translateZ(-20px) rotateX(0);
        -ms-transform: translateZ(-20px) rotateX(0);
        -o-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        -moz-transform: translateZ(-20px) rotateX(-100deg);
        -ms-transform: translateZ(-20px) rotateX(-100deg);
        -o-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        -moz-transform: translateZ(-20px) rotateX(-90deg);
        -ms-transform: translateZ(-20px) rotateX(-90deg);
        -o-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg);
    }
}

/*** xloading-bar ***/
.builder-aheading-loading-bar .builder-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.builder-aheading-loading-bar .builder-words-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #0096a7;
    z-index: 2;
    -webkit-transition: width 0.3s -0.1s;
    -moz-transition: width 0.3s -0.1s;
    transition: width 0.3s -0.1s;
}

.builder-aheading-loading-bar .builder-words-wrapper.builder-is-loading:after {
    width: 100%;
    -webkit-transition: width 3s;
    -moz-transition: width 3s;
    transition: width 3s;
}

.builder-aheading-loading-bar span {
    top: .2em;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.builder-aheading-loading-bar span.builder-is-visible {
    opacity: 1;
    top: 0;
}

/*** xslide ***/
.builder-aheading-slide .builder-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.builder-aheading-slide span {
    opacity: 0;
    top: .2em;
}

.builder-aheading-slide span.builder-is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: builder-slide-in 0.6s;
    -moz-animation: builder-slide-in 0.6s;
    animation: builder-slide-in 0.6s;
}

.builder-aheading-slide span.builder-is-hidden {
    -webkit-animation: builder-slide-out 0.6s;
    -moz-animation: builder-slide-out 0.6s;
    animation: builder-slide-out 0.6s;
}

@-webkit-keyframes builder-slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes builder-slide-in {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes builder-slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        -moz-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -o-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes builder-slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
}

@-moz-keyframes builder-slide-out {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
}

@keyframes builder-slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
        -ms-transform: translateY(120%);
        -o-transform: translateY(120%);
        transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

/*** xclip ***/
.builder-aheading-clip .builder-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.builder-aheading-clip .builder-words-wrapper:after {
    /* line */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background-color: #aebcb9;
}

.builder-aheading-clip span {
    opacity: 0;
}

.builder-aheading-clip span.builder-is-visible {
    opacity: 1;
}

/*** xzoom ***/
.builder-aheading-zoom .builder-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.builder-aheading-zoom span {
    opacity: 0;
}

.builder-aheading-zoom span.builder-is-visible {
    opacity: 1;
    -webkit-animation: builder-zoom-in 0.8s;
    -moz-animation: builder-zoom-in 0.8s;
    animation: builder-zoom-in 0.8s;
}

.builder-aheading-zoom span.builder-is-hidden {
    -webkit-animation: builder-zoom-out 0.8s;
    -moz-animation: builder-zoom-out 0.8s;
    animation: builder-zoom-out 0.8s;
}

@-webkit-keyframes builder-zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
    }
}

@-moz-keyframes builder-zoom-in {
    0% {
        opacity: 0;
        -moz-transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(0);
    }
}

@keyframes builder-zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        -moz-transform: translateZ(100px);
        -ms-transform: translateZ(100px);
        -o-transform: translateZ(100px);
        transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes builder-zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
    }
}

@-moz-keyframes builder-zoom-out {
    0% {
        opacity: 1;
        -moz-transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateZ(-100px);
    }
}

@keyframes builder-zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        -moz-transform: translateZ(-100px);
        -ms-transform: translateZ(-100px);
        -o-transform: translateZ(-100px);
        transform: translateZ(-100px);
    }
}

/*** xrotate-3 ***/
.builder-aheading-rotate3 .builder-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.builder-aheading-rotate3 span {
    opacity: 0;
}

.builder-aheading-rotate3 strong {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.builder-is-visible .builder-aheading-rotate3 strong {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.builder-aheading-rotate3 strong.builder-aheading-in {
    -webkit-animation: builder-rotate-3-in 0.6s forwards;
    -moz-animation: builder-rotate-3-in 0.6s forwards;
    animation: builder-rotate-3-in 0.6s forwards;
}

.builder-aheading-rotate3 strong.builder-aheading-out {
    -webkit-animation: builder-rotate-3-out 0.6s forwards;
    -moz-animation: builder-rotate-3-out 0.6s forwards;
    animation: builder-rotate-3-out 0.6s forwards;
}

.builder-no-csstransitions .builder-aheading-rotate3 strong {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 0;
}

.builder-no-csstransitions .builder-aheading-rotate3 .builder-is-visible strong {
    opacity: 1;
}

@-webkit-keyframes builder-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-moz-keyframes builder-rotate-3-in {
    0% {
        -moz-transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
    }
}

@keyframes builder-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes builder-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(-180deg);
    }
}

@-moz-keyframes builder-rotate-3-out {
    0% {
        -moz-transform: rotateY(0);
    }

    100% {
        -moz-transform: rotateY(-180deg);
    }
}

@keyframes builder-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
        -moz-transform: rotateY(0);
        -ms-transform: rotateY(0);
        -o-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(-180deg);
        -moz-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
        -o-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

/*** xscale ***/
.builder-aheading-scale span {
    opacity: 0;
}

.builder-aheading-scale strong {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.builder-is-visible .builder-aheading-scale strong {
    opacity: 1;
}

.builder-aheading-scale strong.builder-aheading-in {
    -webkit-animation: builder-scale-up 0.6s forwards;
    -moz-animation: builder-scale-up 0.6s forwards;
    animation: builder-scale-up 0.6s forwards;
}

.builder-aheading-scale strong.builder-aheading-out {
    -webkit-animation: builder-scale-down 0.6s forwards;
    -moz-animation: builder-scale-down 0.6s forwards;
    animation: builder-scale-down 0.6s forwards;
}

.builder-no-csstransitions .builder-aheading-scale strong {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
}

.builder-no-csstransitions .builder-aheading-scale .builder-is-visible strong {
    opacity: 1;
}

@-webkit-keyframes builder-scale-up {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        opacity: 1;
    }

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

@-moz-keyframes builder-scale-up {
    0% {
        -moz-transform: scale(0);
        opacity: 0;
    }

    60% {
        -moz-transform: scale(1.2);
        opacity: 1;
    }

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

@keyframes builder-scale-up {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes builder-scale-down {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    60% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
}

@-moz-keyframes builder-scale-down {
    0% {
        -moz-transform: scale(1);
        opacity: 1;
    }

    60% {
        -moz-transform: scale(0);
        opacity: 0;
    }
}

@keyframes builder-scale-down {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    60% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}

/*** xpush ***/
.builder-aheading-push span {
    opacity: 0;
}

.builder-aheading-push span.builder-is-visible {
    opacity: 1;
    -webkit-animation: builder-push-in 0.6s;
    -moz-animation: builder-push-in 0.6s;
    animation: builder-push-in 0.6s;
}

.builder-aheading-push span.builder-is-hidden {
    -webkit-animation: builder-push-out 0.6s;
    -moz-animation: builder-push-out 0.6s;
    animation: builder-push-out 0.6s;
}

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

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
    }

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

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

    60% {
        opacity: 1;
        -moz-transform: translateX(10%);
    }

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

@keyframes builder-push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        -moz-transform: translateX(10%);
        -ms-transform: translateX(10%);
        -o-transform: translateX(10%);
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes builder-push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
    }

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

@-moz-keyframes builder-push-out {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateX(110%);
    }

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

@keyframes builder-push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        -moz-transform: translateX(110%);
        -ms-transform: translateX(110%);
        -o-transform: translateX(110%);
        transform: translateX(110%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/* Animated Heading End */
/* Page Break Start */

.builder-page-links {
    text-align: center;
    margin-top: 50px;
}

.builder-page-links .post-page-numbers {
    padding: 0;
    margin: 0 0 .3em .3em;
    border: 1px solid;
    color: #000;
    background: 0 0;
    font-size: .8em;
    width: 2.5em;
    height: 2.5em;
    line-height: calc(2.5em - 4px);
    display: inline-block;
    text-align: center;
    transition: all .2s linear;
}

.builder-arc-layout-left .builder-wposts-col .builder-wposts-content,
.builder-arc-layout-right .builder-wposts-col .builder-wposts-featured,
.builder-arc-layout-alt .builder-wposts-col:nth-of-type(2n+1) .builder-wposts-content,
.builder-arc-layout-alt .builder-wposts-col:nth-of-type(2n) .builder-wposts-featured {
    width: 48%;
    float: left;
}

.builder-arc-layout-right .builder-wposts-col .builder-wposts-content,
.builder-arc-layout-left .builder-wposts-col .builder-wposts-featured,
.builder-arc-layout-alt .builder-wposts-col:nth-of-type(2n) .builder-wposts-content,
.builder-arc-layout-alt .builder-wposts-col:nth-of-type(2n+1) .builder-wposts-featured {
    width: 48%;
    float: right;
}

.builder-arc-layout-left .builder-wposts-thumb,
.builder-arc-layout-right .builder-wposts-thumb,
.builder-arc-layout-alt .builder-wposts-thumb {
    display: block;
}

.builder-wposts-thumb,
.builder-wposts-featured,
.builder-wposts-col {
    overflow: hidden;
}

.builder-loader-holder {
    width: auto;
    height: auto;
    display: none;
}

.builder-post-max,
.builder-infinite-scroll-auto~.builder_load_button .builder-btn-load {
    display: none;
}

/* Page Break End */

/********************/
/*** Freemium End ***/
/********************/

/*!
 * Nivo Lightbox v1.3.1
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.nivo-lightbox-overlay.nivo-lightbox-open {
    visibility: visible;
    opacity: 1;
}

.nivo-lightbox-wrap {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
}

.nivo-lightbox-content {
    width: 100%;
    height: 100%;
}

.nivo-lightbox-title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    text-align: center;
}

.nivo-lightbox-nav {
    display: none;
}

.nivo-lightbox-prev {
    position: absolute;
    top: 50%;
    left: 0;
}

.nivo-lightbox-next {
    position: absolute;
    top: 50%;
    right: 0;
}

.nivo-lightbox-close {
    position: absolute;
    top: 2%;
    right: 2%;
}

.nivo-lightbox-image {
    text-align: center;
}

.nivo-lightbox-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

.nivo-lightbox-content iframe {
    width: 100%;
    height: 100%;
}

.nivo-lightbox-inline,
.nivo-lightbox-ajax {
    max-height: 100%;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}

.nivo-lightbox-error {
    display: table;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-shadow: 0 1px 1px #000;
}

.nivo-lightbox-error p {
    display: table-cell;
    vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}

.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
    -webkit-transform: translateX(-10%);
    -moz-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%);
}

.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    transform: translateX(10%);
}

.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
    -webkit-transform: translateY(-10%);
    -moz-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
}

.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
}

.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}

.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: translateZ(300px);
    -moz-transform: translateZ(300px);
    -ms-transform: translateZ(300px);
    transform: translateZ(300px);
}

.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-theme-default.nivo-lightbox-overlay {
    background: #666;
    background: rgba(0, 0, 0, 0.6);
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
    background: url(../images/nivo-icons/loading.gif) no-repeat 50% 50%;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav {
    top: 10%;
    width: 8%;
    height: 80%;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.nivo-lightbox-theme-default .nivo-lightbox-prev {
    background-image: url(../images/nivo-icons/prev.png);
    border-radius: 0 3px 3px 0;
}

.nivo-lightbox-theme-default .nivo-lightbox-next {
    background-image: url(../images/nivo-icons/next.png);
    border-radius: 3px 0 0 3px;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
    display: block;
    background: url(../images/nivo-icons/close.png) no-repeat;
    width: 48px;
    height: 48px;
    text-indent: -9999px;
    padding: 5px;
    opacity: 0.5;
}

.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
    opacity: 1;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap {
    bottom: -7%;
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
    font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    background: #000;
    color: #fff;
    padding: 7px 15px;
    border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
    background: #fff;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
    background: #fff;
    padding: 40px;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}

@media (-webkit-min-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6/2),
(min--moz-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx) {

    .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
        background-image: url(../images/nivo-icons/loading@2x.gif);
        -webkit-background-size: 32px 32px;
        background-size: 32px 32px;
    }

    .nivo-lightbox-theme-default .nivo-lightbox-prev {
        background-image: url(../images/nivo-icons/prev@2x.png);
        -webkit-background-size: 48px 48px;
        background-size: 48px 48px;
    }

    .nivo-lightbox-theme-default .nivo-lightbox-next {
        background-image: url(../images/nivo-icons/next@2x.png);
        -webkit-background-size: 48px 48px;
        background-size: 48px 48px;
    }

    .nivo-lightbox-theme-default .nivo-lightbox-close {
        background-image: url(../images/nivo-icons/close@2x.png);
        -webkit-background-size: 16px 16px;
        background-size: 16px 16px;
    }

}

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

@-webkit-keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    -webkit-transform-origin: center bottom;
    animation-name: bounce;
    transform-origin: center bottom
}

@-webkit-keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-name: headShake;
    -webkit-animation-timing-function: ease-in-out;
    animation-name: headShake;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.swing {
    -webkit-animation-name: swing;
    -webkit-transform-origin: top center;
    animation-name: swing;
    transform-origin: top center
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    -webkit-transform-origin: center;
    animation-name: jello;
    transform-origin: center
}

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

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

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

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

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

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

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

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

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

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

.heartBeat {
    -webkit-animation-duration: 1.3s;
    -webkit-animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-duration: 1.3s;
    animation-name: heartBeat;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        -webkit-transform: scaleX(1);
        opacity: 1;
        transform: scaleX(1)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        -webkit-transform: scaleX(1);
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    -webkit-animation-duration: .75s;
    -webkit-animation-name: bounceIn;
    animation-duration: .75s;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, -3000px, 0);
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, 25px, 0);
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, -3000px, 0);
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, 25px, 0);
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(-3000px, 0, 0);
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(25px, 0, 0);
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(-3000px, 0, 0);
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(25px, 0, 0);
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(3000px, 0, 0);
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(-25px, 0, 0);
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(3000px, 0, 0);
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(-25px, 0, 0);
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, 3000px, 0);
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, 3000px, 0);
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    -webkit-animation-duration: .75s;
    -webkit-animation-name: bounceOut;
    animation-duration: .75s;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        -webkit-transform: translate3d(20px, 0, 0);
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        -webkit-transform: translate3d(20px, 0, 0);
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        -webkit-transform: translate3d(-20px, 0, 0);
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        -webkit-transform: translate3d(-20px, 0, 0);
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, 20px, 0);
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, 20px, 0);
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }

    40% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }

    80% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg)
    }

    to {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)
    }
}

@keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }

    40% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }

    80% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg)
    }

    to {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)
    }
}

.animated.flip {
    -webkit-animation-name: flip;
    -webkit-backface-visibility: visible;
    animation-name: flip;
    backface-visibility: visible
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-animation-name: flipInX;
    -webkit-backface-visibility: visible !important;
    animation-name: flipInX;
    backface-visibility: visible !important
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        opacity: 1;
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        opacity: 1;
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-animation-name: flipInY;
    -webkit-backface-visibility: visible !important;
    animation-name: flipInY;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

.flipOutX {
    -webkit-animation-duration: .75s;
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    animation-duration: .75s;
    animation-name: flipOutX;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

.flipOutY {
    -webkit-animation-duration: .75s;
    -webkit-animation-name: flipOutY;
    -webkit-backface-visibility: visible !important;
    animation-duration: .75s;
    animation-name: flipOutY;
    backface-visibility: visible !important
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(-30deg)
    }

    60% {
        -webkit-transform: skewX(20deg);
        opacity: 1;
        transform: skewX(20deg)
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(-30deg)
    }

    60% {
        -webkit-transform: skewX(20deg);
        opacity: 1;
        transform: skewX(20deg)
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(30deg)
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(30deg)
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(-200deg);
        transform-origin: center
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: center;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: center
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(-200deg);
        transform-origin: center
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: center;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: center
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        opacity: 1;
        transform-origin: center
    }

    to {
        -webkit-transform: rotate(200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(200deg);
        transform-origin: center
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        opacity: 1;
        transform-origin: center
    }

    to {
        -webkit-transform: rotate(200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(200deg);
        transform-origin: center
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: right bottom
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: right bottom
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: right bottom
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: right bottom
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform-origin: top left
    }

    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
        transform: rotate(60deg);
        transform-origin: top left
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        opacity: 0;
        transform: translate3d(0, 700px, 0)
    }
}

@keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform-origin: top left
    }

    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
        transform: rotate(60deg);
        transform-origin: top left
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        opacity: 0;
        transform: translate3d(0, 700px, 0)
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-duration: 2s;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    0% {
        -webkit-transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        -webkit-transform: scale(1);
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        -webkit-transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        -webkit-transform: scale(1);
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }
}

@keyframes zoomInDown {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
    }
}

@keyframes zoomInLeft {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
    }
}

@keyframes zoomInRight {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }
}

@keyframes zoomInUp {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom
    }
}

@keyframes zoomOutDown {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom
    }
}

@keyframes zoomOutUp {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.animated.fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s
}

.animated.faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

@media (prefers-reduced-motion),
(print) {
    .animated {
        -webkit-animation: unset !important;
        -webkit-transition: none !important;
        animation: unset !important;
        transition: none !important
    }
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.builder-owl-carousel,
.builder-owl-carousel .builder-owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.builder-owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.builder-owl-carousel .builder-owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.builder-owl-carousel .builder-owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.builder-owl-carousel .builder-owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.builder-owl-carousel .builder-owl-item,
.builder-owl-carousel .builder-owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.builder-owl-carousel .builder-owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.builder-owl-carousel .builder-owl-item img {
    display: block;
    width: 100%
}

.builder-owl-carousel .builder-owl-dots.disabled,
.builder-owl-carousel .builder-owl-nav.disabled {
    display: none
}

.no-js .builder-owl-carousel,
.builder-owl-carousel.builder-owl-loaded {
    display: block
}

.builder-owl-carousel .builder-owl-dot,
.builder-owl-carousel .builder-owl-nav .builder-owl-next,
.builder-owl-carousel .builder-owl-nav .builder-owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.builder-owl-carousel .builder-owl-nav button.builder-owl-next,
.builder-owl-carousel .builder-owl-nav button.builder-owl-prev,
.builder-owl-carousel button.builder-owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
}

.builder-owl-carousel.builder-owl-loading {
    opacity: 0;
    display: block
}

.builder-owl-carousel.builder-owl-hidden {
    opacity: 0
}

.builder-owl-carousel.builder-owl-refresh .builder-owl-item {
    visibility: hidden
}

.builder-owl-carousel.builder-owl-drag .builder-owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.builder-owl-carousel.builder-owl-grab {
    cursor: move;
    cursor: grab
}

.builder-owl-carousel.builder-owl-rtl {
    direction: rtl
}

.builder-owl-carousel.builder-owl-rtl .builder-owl-item {
    float: right
}

.builder-owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.builder-owl-carousel .builder-owl-animated-in {
    z-index: 0
}

.builder-owl-carousel .builder-owl-animated-out {
    z-index: 1
}

.builder-owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.builder-owl-height {
    transition: height .5s ease-in-out
}

.builder-owl-carousel .builder-owl-item .builder-owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.builder-owl-carousel .builder-owl-item .builder-owl-lazy:not([src]),
.builder-owl-carousel .builder-owl-item .builder-owl-lazy[src^=""] {
    max-height: 0
}

.builder-owl-carousel .builder-owl-item img.builder-owl-lazy {
    transform-style: preserve-3d
}

.builder-owl-carousel .builder-owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.builder-owl-carousel .builder-owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.builder-owl-carousel .builder-owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.builder-owl-carousel .builder-owl-video-playing .builder-owl-video-play-icon,
.builder-owl-carousel .builder-owl-video-playing .builder-owl-video-tn {
    display: none
}

.builder-owl-carousel .builder-owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.builder-owl-carousel .builder-owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.builder-owl-theme .builder-owl-dots,
.builder-owl-theme .builder-owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.builder-owl-theme .builder-owl-nav {
    margin-top: 10px
}

.builder-owl-theme .builder-owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.builder-owl-theme .builder-owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.builder-owl-theme .builder-owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.builder-owl-theme .builder-owl-nav.disabled+.builder-owl-dots {
    margin-top: 10px
}

.builder-owl-theme .builder-owl-dots .builder-owl-dot {
    display: inline-block;
    zoom: 1
}

.builder-owl-theme .builder-owl-dots .builder-owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.builder-owl-theme .builder-owl-dots .builder-owl-dot.active span,
.builder-owl-theme .builder-owl-dots .builder-owl-dot:hover span {
    background: #869791
}
