.bck-divider {
  display: flex;
}

.bck-divider__text {
  margin-bottom: 0;
  padding-bottom: 0;
}

.bck-divider__element img,
.bck-divider__element i {
  border-style: solid;
}

.bck-divider__icon i {
  display: inline-block !important;
}

.bck-divider__border {
  flex: 1;
}

.bck-advanced-heading-wrap{
    width: 100%;
    position: relative;
    display: block;
}

.bck-module .bck-advanced-heading{
    display: flex;
    line-height: 1;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.bck-module .bck-advanced-heading-border{
    position: absolute;
    z-index: -1;
}



.bck-team {
  overflow: hidden;
  border-style: solid;
}

.bck-team-content {
  border-style: solid;
  z-index: 99;
}

.bck-team figure .figure-wrap {
  overflow: hidden;
  height: 100%;
}

.bck-team figure {
  border-width: 0;
  position: relative;
}

.bck-team figure img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  transition: 0.3s;
  border-style: solid;
}

.et-db #et-boc .bck-team .bck-team-social,
.bck-team .bck-team-social {
  list-style: none !important;
  padding-left: 0;
}

.bck-team .bck-team-social {
  display: flex;
  padding-bottom: 0;
  transition: 0.3s;
  margin-bottom: 0;
}

.bck-team .bck-team-social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  padding: 3px;
}

.bck-team .content-left {
  text-align: left;
}

.bck-team .content-right {
  text-align: right;
}

.bck-team .content-center {
  text-align: center;
}

.bck-team .item-center {
  justify-content: center;
}

.bck-team .item-right {
  justify-content: flex-end;
}

.bck-team .bck-team-content p {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Hover style 1*/
.bck-team.hover_1 {
  position: relative;
}

.bck-team.hover_1 .bck-team-content {
  position: absolute;
  bottom: 50px;
  left: 25px;
  width: calc(100% - 50px);
  opacity: 0;
}

.bck-team.hover_1:hover .bck-team-content {
  bottom: 25px;
  opacity: 1;
}

/* Hover style 2*/
.bck-team.hover_2 {
  position: relative;
}

.bck-team.hover_2 .bck-team-content {
  position: absolute;
  top: 25px;
  left: 25px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bck-team.hover_2:hover .bck-team-content {
  opacity: 1;
}

/* Hover style 3*/
.bck-team.hover_3 {
  position: relative;
}

.bck-team.hover_3 .bck-team-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
}

.bck-team.hover_3:hover .bck-team-content {
  opacity: 1;
  transform: translateY(0);
}

/* Hover style 4*/
.bck-team.hover_4 {
  position: relative;
}

.bck-team.hover_4 .bck-team-content {
  position: absolute;
  top: 50%;
  left: 25px;
  width: calc(100% - 50px);
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
}

.bck-team.hover_4:hover .bck-team-content {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.bck-animated-text-head {
    line-height: 1;
}

.bck-animated-text .typed-cursor {
    opacity: 0;
    visibility: hidden;
    max-width: 1px;
    min-width: 1px;
}

.bck-animated-text-suffix span,
.bck-animated-text-prefix span {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}
.bck-animated-text-main {
    list-style-type: none !important;
}
.bck-animated-text-slide li {
    display: none;
    list-style: none;
    line-height: 1;
}

.bck-animated-text-slide li.text-in {
    display: block;
}

.bck-text-animation {
    position: relative;
}

.bck-text-animation:after {
    position: absolute;
    content: "";
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    animation: bck-blink 0.7s infinite;
    display: none;
}

@keyframes bck-blink {
    50% {
        opacity: 0;
    }
}

.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@-moz-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@-o-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    -moz-animation-name: flash;
    -o-animation-name: flash;
    animation-name: flash;
}
@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
    }
}

@-moz-keyframes shake {
    0%,
    100% {
        -moz-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -moz-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -moz-transform: translateX(10px);
    }
}

@-o-keyframes shake {
    0%,
    100% {
        -o-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -o-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -o-transform: translateX(10px);
    }
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.shake {
    -webkit-animation-name: shake;
    -moz-animation-name: shake;
    -o-animation-name: shake;
    animation-name: shake;
}
@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-30px);
    }
    60% {
        -o-transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
}
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
    }
}

@-moz-keyframes tada {
    0% {
        -moz-transform: scale(1);
    }
    10%,
    20% {
        -moz-transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -moz-transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -moz-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -moz-transform: scale(1) rotate(0);
    }
}

@-o-keyframes tada {
    0% {
        -o-transform: scale(1);
    }
    10%,
    20% {
        -o-transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -o-transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -o-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -o-transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.tada {
    -webkit-animation-name: tada;
    -moz-animation-name: tada;
    -o-animation-name: tada;
    animation-name: tada;
}
@-webkit-keyframes swing {
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transform-origin: top center;
    }
    20% {
        -webkit-transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes swing {
    20% {
        -moz-transform: rotate(15deg);
    }
    40% {
        -moz-transform: rotate(-10deg);
    }
    60% {
        -moz-transform: rotate(5deg);
    }
    80% {
        -moz-transform: rotate(-5deg);
    }
    100% {
        -moz-transform: rotate(0deg);
    }
}

@-o-keyframes swing {
    20% {
        -o-transform: rotate(15deg);
    }
    40% {
        -o-transform: rotate(-10deg);
    }
    60% {
        -o-transform: rotate(5deg);
    }
    80% {
        -o-transform: rotate(-5deg);
    }
    100% {
        -o-transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -o-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    -moz-animation-name: swing;
    -o-animation-name: swing;
    animation-name: swing;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes wobble {
    0% {
        -moz-transform: translateX(0%);
    }
    15% {
        -moz-transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -moz-transform: translateX(20%) rotate(3deg);
    }
    45% {
        -moz-transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -moz-transform: translateX(10%) rotate(2deg);
    }
    75% {
        -moz-transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -moz-transform: translateX(0%);
    }
}

@-o-keyframes wobble {
    0% {
        -o-transform: translateX(0%);
    }
    15% {
        -o-transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -o-transform: translateX(20%) rotate(3deg);
    }
    45% {
        -o-transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -o-transform: translateX(10%) rotate(2deg);
    }
    75% {
        -o-transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -o-transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    -moz-animation-name: wobble;
    -o-animation-name: wobble;
    animation-name: wobble;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
    }
}
@-o-keyframes pulse {
    0% {
        -o-transform: scale(1);
    }
    50% {
        -o-transform: scale(1.1);
    }
    100% {
        -o-transform: scale(1);
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -o-animation-name: pulse;
    animation-name: pulse;
}
@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg)
            scale(1);
        -webkit-animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in;
    }
}
@-moz-keyframes flip {
    0% {
        -moz-transform: perspective(400px) rotateY(0);
        -moz-animation-timing-function: ease-out;
    }
    40% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -moz-animation-timing-function: ease-out;
    }
    50% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg)
            scale(1);
        -moz-animation-timing-function: ease-in;
    }
    80% {
        -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
        -moz-animation-timing-function: ease-in;
    }
    100% {
        -moz-transform: perspective(400px) scale(1);
        -moz-animation-timing-function: ease-in;
    }
}
@-o-keyframes flip {
    0% {
        -o-transform: perspective(400px) rotateY(0);
        -o-animation-timing-function: ease-out;
    }
    40% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -o-animation-timing-function: ease-out;
    }
    50% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(190deg)
            scale(1);
        -o-animation-timing-function: ease-in;
    }
    80% {
        -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
        -o-animation-timing-function: ease-in;
    }
    100% {
        -o-transform: perspective(400px) scale(1);
        -o-animation-timing-function: ease-in;
    }
}
@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) rotateY(360deg) scale(0.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: perspective(400px) scale(1);
        animation-timing-function: ease-in;
    }
}

.flip {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flip;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flip;
    -o-backface-visibility: visible !important;
    -o-animation-name: flip;
    backface-visibility: visible !important;
    animation-name: flip;
}
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -moz-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -moz-transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -o-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -o-transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: flipOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: flipOutX;
    -o-backface-visibility: visible !important;
    animation-name: flipOutX;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -moz-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -moz-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -o-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -o-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInY;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInY;
    backface-visibility: visible !important;
    animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-moz-keyframes flipOutY {
    0% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-o-keyframes flipOutY {
    0% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipOutY;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipOutY;
    backface-visibility: visible !important;
    animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }

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

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px);
    }

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

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }

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

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px);
    }

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

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

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

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    -moz-animation-name: fadeInUpBig;
    -o-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    -moz-animation-name: fadeInDownBig;
    -o-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

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

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

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

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

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

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

@-moz-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

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

@-o-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

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

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
}
@-moz-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }
}
@-o-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    -moz-animation-name: fadeOutUp;
    -o-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
}

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

    100% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }
}

@-o-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    -moz-animation-name: fadeOutDown;
    -o-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
}

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

    100% {
        opacity: 0;
        -moz-transform: translateX(-20px);
    }
}

@-o-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-20px);
    }
}

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

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    -moz-animation-name: fadeOutLeft;
    -o-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
}

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

    100% {
        opacity: 0;
        -moz-transform: translateX(20px);
    }
}

@-o-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(20px);
    }
}

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

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    -moz-animation-name: fadeOutRight;
    -o-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

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

    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
}

@-o-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    -moz-animation-name: fadeOutUpBig;
    -o-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

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

    100% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
}

@-o-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    -moz-animation-name: fadeOutDownBig;
    -o-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

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

    100% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }
}

@-o-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
}

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

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    -moz-animation-name: fadeOutLeftBig;
    -o-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

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

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

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

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    -moz-animation-name: fadeOutRightBig;
    -o-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -moz-transform: scale(1.05);
    }

    70% {
        -moz-transform: scale(0.9);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -o-transform: scale(1.05);
    }

    70% {
        -o-transform: scale(0.9);
    }

    100% {
        -o-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes bounceInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(-30px);
    }

    80% {
        -moz-transform: translateY(10px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes bounceInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateY(-30px);
    }

    80% {
        -o-transform: translateY(10px);
    }

    100% {
        -o-transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(-30px);
    }

    80% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    -moz-animation-name: bounceInUp;
    -o-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes bounceInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(30px);
    }

    80% {
        -moz-transform: translateY(-10px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes bounceInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateY(30px);
    }

    80% {
        -o-transform: translateY(-10px);
    }

    100% {
        -o-transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(30px);
    }

    80% {
        -moz-transform: translateX(-10px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(30px);
    }

    80% {
        -o-transform: translateX(-10px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(-30px);
    }

    80% {
        -moz-transform: translateX(10px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(-30px);
    }

    80% {
        -o-transform: translateX(10px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }
}

@-moz-keyframes bounceOut {
    0% {
        -moz-transform: scale(1);
    }

    25% {
        -moz-transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -moz-transform: scale(0.3);
    }
}

@-o-keyframes bounceOut {
    0% {
        -o-transform: scale(1);
    }

    25% {
        -o-transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -o-transform: scale(0.3);
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    -moz-animation-name: bounceOut;
    -o-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@-moz-keyframes bounceOutUp {
    0% {
        -moz-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
}

@-o-keyframes bounceOutUp {
    0% {
        -o-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    -moz-animation-name: bounceOutUp;
    -o-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

@-moz-keyframes bounceOutDown {
    0% {
        -moz-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
}

@-o-keyframes bounceOutDown {
    0% {
        -o-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    -moz-animation-name: bounceOutDown;
    -o-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@-moz-keyframes bounceOutLeft {
    0% {
        -moz-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }
}

@-o-keyframes bounceOutLeft {
    0% {
        -o-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    -moz-animation-name: bounceOutLeft;
    -o-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@-moz-keyframes bounceOutRight {
    0% {
        -moz-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }
}

@-o-keyframes bounceOutRight {
    0% {
        -o-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    -moz-animation-name: bounceOutRight;
    -o-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}
@-moz-keyframes rotateIn {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}
@-o-keyframes rotateIn {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1;
    }
}
@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    -moz-animation-name: rotateIn;
    -o-animation-name: rotateIn;
    animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    -moz-animation-name: rotateInUpLeft;
    -o-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    -moz-animation-name: rotateInDownLeft;
    -o-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    -moz-animation-name: rotateInUpRight;
    -o-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    -moz-animation-name: rotateInDownRight;
    -o-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(200deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOut {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(200deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOut {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    -moz-animation-name: rotateOut;
    -o-animation-name: rotateOut;
    animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    -moz-animation-name: rotateOutUpLeft;
    -o-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    -moz-animation-name: rotateOutDownLeft;
    -o-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    -moz-animation-name: rotateOutUpRight;
    -o-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    -moz-animation-name: rotateOutDownRight;
    -o-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}
@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        opacity: 0;
    }
}

@-moz-keyframes hinge {
    0% {
        -moz-transform: rotate(0);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -moz-transform: rotate(80deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }
    40% {
        -moz-transform: rotate(60deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }
    80% {
        -moz-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }
    100% {
        -moz-transform: translateY(700px);
        opacity: 0;
    }
}

@-o-keyframes hinge {
    0% {
        -o-transform: rotate(0);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -o-transform: rotate(80deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }
    40% {
        -o-transform: rotate(60deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }
    80% {
        -o-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }
    100% {
        -o-transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        transform: rotate(0);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    40% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    80% {
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    -moz-animation-name: hinge;
    -o-animation-name: hinge;
    animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }
}

@-moz-keyframes rollIn {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0px) rotate(0deg);
    }
}

@-o-keyframes rollIn {
    0% {
        opacity: 0;
        -o-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    -moz-animation-name: rollIn;
    -o-animation-name: rollIn;
    animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
    }
}

@-moz-keyframes rollOut {
    0% {
        opacity: 1;
        -moz-transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(100%) rotate(120deg);
    }
}

@-o-keyframes rollOut {
    0% {
        opacity: 1;
        -o-transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    -moz-animation-name: rollOut;
    -o-animation-name: rollOut;
    animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@-moz-keyframes lightSpeedIn {
    0% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -moz-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -moz-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -moz-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@-o-keyframes lightSpeedIn {
    0% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -o-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -o-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -o-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -moz-animation-name: lightSpeedIn;
    -o-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;

    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@-moz-keyframes lightSpeedOut {
    0% {
        -moz-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@-o-keyframes lightSpeedOut {
    0% {
        -o-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -moz-animation-name: lightSpeedOut;
    -o-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    -o-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg);
    }
    10% {
        -webkit-transform: skewX(-8deg);
    }
    20% {
        -webkit-transform: skewX(7deg);
    }
    30% {
        -webkit-transform: skewX(-6deg);
    }
    40% {
        -webkit-transform: skewX(5deg);
    }
    50% {
        -webkit-transform: skewX(-4deg);
    }
    60% {
        -webkit-transform: skewX(3deg);
    }
    70% {
        -webkit-transform: skewX(-2deg);
    }
    80% {
        -webkit-transform: skewX(1deg);
    }
    90% {
        -webkit-transform: skewX(0deg);
    }
    100% {
        -webkit-transform: skewX(0deg);
    }
}

@-moz-keyframes wiggle {
    0% {
        -moz-transform: skewX(9deg);
    }
    10% {
        -moz-transform: skewX(-8deg);
    }
    20% {
        -moz-transform: skewX(7deg);
    }
    30% {
        -moz-transform: skewX(-6deg);
    }
    40% {
        -moz-transform: skewX(5deg);
    }
    50% {
        -moz-transform: skewX(-4deg);
    }
    60% {
        -moz-transform: skewX(3deg);
    }
    70% {
        -moz-transform: skewX(-2deg);
    }
    80% {
        -moz-transform: skewX(1deg);
    }
    90% {
        -moz-transform: skewX(0deg);
    }
    100% {
        -moz-transform: skewX(0deg);
    }
}

@-o-keyframes wiggle {
    0% {
        -o-transform: skewX(9deg);
    }
    10% {
        -o-transform: skewX(-8deg);
    }
    20% {
        -o-transform: skewX(7deg);
    }
    30% {
        -o-transform: skewX(-6deg);
    }
    40% {
        -o-transform: skewX(5deg);
    }
    50% {
        -o-transform: skewX(-4deg);
    }
    60% {
        -o-transform: skewX(3deg);
    }
    70% {
        -o-transform: skewX(-2deg);
    }
    80% {
        -o-transform: skewX(1deg);
    }
    90% {
        -o-transform: skewX(0deg);
    }
    100% {
        -o-transform: skewX(0deg);
    }
}

@keyframes wiggle {
    0% {
        transform: skewX(9deg);
    }
    10% {
        transform: skewX(-8deg);
    }
    20% {
        transform: skewX(7deg);
    }
    30% {
        transform: skewX(-6deg);
    }
    40% {
        transform: skewX(5deg);
    }
    50% {
        transform: skewX(-4deg);
    }
    60% {
        transform: skewX(3deg);
    }
    70% {
        transform: skewX(-2deg);
    }
    80% {
        transform: skewX(1deg);
    }
    90% {
        transform: skewX(0deg);
    }
    100% {
        transform: skewX(0deg);
    }
}

.wiggle {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.wiggle {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

.bck-bp-grid-layout {
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 35px;
    grid-template-columns: repeat(3, 1fr);
}

.bck-bp-post {
    overflow: hidden;
    background-color: #f6f6f6;
    border-style: solid;
    border-width: 0px;
}

.bck-bp-post a:hover {
    color: #1d39d8;
}

/** Thumb. **/
.bck-bp-thumb-wrap {
    line-height: 0;
    position: relative;
}

.bck-bp-classic-skin .bck-bp-thumb-wrap {
    position: relative;
    width: 100%;
    height: 250px;
}

.bck-bp-creative-skin .bck-bp-thumb-wrap {
    position: relative;
    height: 250px;
}

.bck-bp-thumb {
    display: inline-flex;
    overflow: hidden;
}

.bck-bp-elegant-skin .bck-bp-thumb {
    width: 200px;
    height: 200px;
    border-radius: 100%;
}

.bck-bp-elegant-skin .bck-bp-post {
    padding-top: 20px;
}

.bck-bp-elegant-skin .bck-bp-thumb-wrap {
    margin-bottom: 20px;
}

.bck-bp-classic-skin .bck-bp-thumb,
.bck-bp-classic-skin .bck-bp-thumb:before {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.bck-bp-card-skin .bck-bp-thumb {
    width: 100%;
    height: 100%;
}

.bck-bp-creative-skin .bck-bp-thumb {
    width: 100%;
    height: 100%;
}

.bck-bp-classic-skin .bck-bp-thumb img,
.bck-bp-card-skin .bck-bp-thumb img,
.bck-bp-creative-skin .bck-bp-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bck-bp-badge {
    line-height: 1.6;
    transition: all .4s;
    margin-bottom: 20px;
    color: #1d39d8;
    border-radius: 1px;
    padding: 5px 10px 5px 10px;
    background-color: #e4e4e4;
    display: inline-block;
    font-weight: 600;
}

.bck-bp-badge a {
    text-transform: capitalize;
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
}

.bck-bp-thumb-wrap .bck-bp-badge {
    margin: 0;
    position: absolute;
    border-style: solid;
}

.bck-bp-card-skin .bck-bp-thumb-wrap .bck-bp-badge,
.bck-bp-classic-skin .bck-bp-thumb-wrap .bck-bp-badge {
    bottom: 20px;
    left: 20px;
}

.bck-bp-creative-skin .bck-bp-thumb-wrap .bck-bp-badge {
    top: 20px;
    right: 20px;
}

.bck-bp-creative-skin .bck-bp-thumb-wrap .bck-bp-avatar {
    position: absolute;
    bottom: -12px;
    left: 0;
    padding: 0 30px;
    pointer-events: none;
}

.bck-bp-creative-skin .bck-bp-thumb-wrap .bck-bp-avatar img {
    left: 50%;
    transform: translateX(-50%);
}

.bck-bp-creative-skin .bck-bp-thumb-wrap .bck-bp-avatar img {
    position: absolute;
    top: 8px;
    z-index: 10;
    max-width: 100%;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    pointer-events: all;
}

.bck-bp-creative-skin .bck-bp-thumb-wrap .bck-bp-avatar svg {
    z-index: 1;
    width: 127px;
    height: 47px;
}

.bck-bp-creative-skin .bck-bp-avatar svg {
    fill: #fff;
}

/** Title. **/
.bck-bp-title {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 1;
}

.bck-bp-title a {
    color: #444;
    word-break: break-word;
    font-weight: 700;
    transition: all .4s;
}

/** Meta. **/
.bck-bp-meta-wrap {
    line-height: 1.3em;
    color: rgb(173, 173, 173);
    font-size: 15px;
}

.bck-bp-meta-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bck-bp-meta-wrap ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
}

.bck-bp-meta-wrap ul li a {
    color: rgb(173, 173, 173);
}

.bck-bp-meta-wrap ul li svg {
    width: auto;
    height: .9em;
    margin-right: 5px;
    fill: #8c8c8c !important;
}

.bck-bp-meta-wrap ul li a,
.bck-bp-meta-wrap ul li span,
.bck-bp-meta-wrap ul li svg path,
.bck-bp-readmore a {
    transition: all .4s;
}

.bck-bp-meta-wrap ul li:last-child {
    margin-right: 0;
}

.bck-bp-excerpt {
    margin-bottom: 20px;
}

.bck-bp-readmore a {
    display: inline-block;
    color: #8c8c8c;
    font-weight: 700;
    transition: all .4s;
}

/**
* Pagination
*/
.bck-bp-infinite,
.bck-bp-pagination {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 50px;
    clear: both;
}

.bck-bp-pagination .page-numbers.current {
    pointer-events: none;
}

.bck-bp-pagination .page-numbers.next,
.bck-bp-pagination .page-numbers.prev {
    padding: 5px 18px;
}

.bck-bp-pagination .page-numbers:hover,
.bck-bp-pagination .page-numbers.current {
    background: #eee;
}

.bck-bp-pagination .page-numbers,
.bck-bp-infinite .bck-bp-infinite-button {
    flex: 0 1 auto;
    font-size: 15px;
    line-height: 24px;
    color: #666;
    padding: 5px 15px;
    margin: 0 2px;
    border: 1px solid #dcdcdc;
    margin-bottom: 10px;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease-in-out 0s;
}

/**
* No found
**/
.bck-bp-no-results,
.bck-bp-search-box {
    display: flex;
    flex-direction: column;
    min-width: 100%;
}

.bck-bp-search-box form {
    margin-top: 1em;
    position: relative;
    display: -webkit-box;
    display: flex;
    width: 400px;
    max-width: 100%;
}

.bck-bp-input {
    position: relative;
    display: flex;
    width: 400px;
    max-width: 100%;
}

.bck-bp-input input[type=text] {
    border: 1px solid rgba(109, 124, 144, .1);
    padding: 2px;
    color: #4e4e4e;
    position: relative;
    display: block;
    border: none;
    border-radius: 5px;
    background: rgba(109, 124, 144, .1);
    width: 100%;
    margin: 16px 0;
    padding: 8px 12px;
    text-align: left;
    border: 2px solid transparent;
    transition: 300ms all cubic-bezier(.4, 0, .2, 1);
    font-size: .9em;
    font-family: lato, sans-serif;
    line-height: 1.8em;
    letter-spacing: .5px;
    font-weight: 700;
    color: #20292f;
    outline: none;
}

.bck-bp-input label,
.bck-bp-input .et_filled {
    text-align: left;
    font-size: 10px;
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    top: -.2em;
    left: 0;
    pointer-events: none;
    transition: all, .4s;
    opacity: 0;
    color: rgba(109, 124, 144, .6);
}

.bck-bp-search-box .search-icon {
    height: 28px;
    width: auto;
    right: 8px;
    z-index: 2;
    top: 24px;
    position: absolute;
}

/** Carousel 
*
**/
.bck-carousel * {
    vertical-align: middle !important;
}

.bck-carousel .slick-arrow:before,
.bck-carousel .slick-arrow:after {
    color: inherit !important;
}

.bck-carousel .slick-arrow {
    z-index: 999;
}

.bck-carousel .slick-dots {
    padding: 0 !important;
}

.bck-carousel .slick-arrow:before {
    font-family: ETmodules !important;
    line-height: .5;
    line-height: 1.35;
    vertical-align: middle;
}

.bck-carousel .slick-arrow:before {
    content: attr(data-icon);
}

.bck-carousel .slick-dots li button:before {
    opacity: 1 !important;
}

.bck-carousel .slick-arrow.slick-disabled:before {
    opacity: 1 !important;
}

.bck-carousel .slick-arrow.slick-disabled {
    cursor: not-allowed !important;
}

.bck-carousel .slick-dots li button:before {
    display: none;
}

.bck-carousel .slick-dots li button {
    padding: 0 !important;
    transition: all 0.2s ease;
}

.bck-carousel .slick-dots li {
    height: initial !important;
    width: initial !important;
    padding: 0 !important;
}

.bck-carousel .et_pb_button {
    display: inline-block;
}

.bck-carousel .slick-arrow {
    height: 40px;
    width: 40px;
    color: #000;
    background-color: #ddd;
}

.bck-equal-height-on .slick-track {
    display: flex !important;
}

.bck-equal-height-on .slick-slide {
    height: inherit !important;
}

.bck-equal-height-on .slick-slide>div {
    height: 100% !important;
}

.bck-equal-height-on .slick-slide .bck-bp-post {
    height: 100% !important;
}

/** Skin **/
.bck-bp-creative-skin .bck-bp-meta-wrap,
.bck-bp-card-skin .bck-bp-meta-wrap {
    padding: 15px 30px 0;
    border-top: 1px solid #ddd;
}

.bck-bp-creative-skin .bck-bp-post,
.bck-bp-card-skin .bck-bp-post {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
}

/** Masonry **/
.bck-bp-masonry-layout .bck-bp-thumb-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.bck-bp-masonry-layout .bck-bp-thumb,
.bck-bp-masonry-layout .bck-bp-thumb:before {
   position: relative;
}
.bck-business-hour-day,
.bck-business-hour-hour{
	line-height: 1;
}

.bck-business-hour-title{
	border-style: solid;
}

.bck-business-hour-title h2{
	margin: 0;
	padding: 0;
}

.bck_business_hour .bck-business-hour .bck-business-hour-content .bck_business_hour_child:last-child{
	margin-bottom: 0!important;
}

.bck_business_hour .bck-business-hour .bck-business-hour-content .bck_business_hour_child:last-child:after{
	display: none;
	opacity: 0;
}

.bck_business_hour_child{
	position: relative;
}

.bck_business_hour_child:after{
	width: 100%;
	left: 0;
}

.bck-business-hour-child{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bck-business-hour-separator{
	flex: 1 1;
}
.bck-card {
    display: flex;
    overflow: initial !important;
    color: inherit;
    position: relative;
}

.bck-card-icon{
    border-style: solid;
}

.bck-card.image--right.use-icon-off,
.bck-card.image--left.use-icon-off{
    align-items: center;
}

.bck-card-figure{
    position: relative;
}


.use-icon-on .bck-card-figure {
    display: inline-block;
}

.image--left .bck-card-icon-wrap,
.image--left .bck-card-figure {
    order: 1;
}

.bck-card-figure img {
    transition: 0.2s cubic-bezier(0.95, 0.05, 0.795, 0.035);
    border-style: solid;
}

.bck-card-figure {
    position: relative;
}

.bck-card img{
    vertical-align: middle;
}

.image--right .bck-card-icon{
    margin-left: auto;
}

.bck-card-icon{
    display: inline-block;
}


.image--top .bck-card-content {
    width: 100%;
}

.image--left .bck-card-content {
    order: 2;
    flex: 1 1;
}

.image--right .bck-card-content {
    order: 1;
    flex: 1 1;
}

.image--right .bck-card-icon-wrap,
.image--right .bck-card-figure {
    order: 2;
}

.bck-card.image--top {
    flex-direction: column;
}

.bck-card-badge {
    font-size: 13px;
    border-style: solid;
    white-space: nowrap;
}

.bck-card.align--center {
    text-align: center;
}

.bck-card.align--center.image--top{
    align-items: center;
}

.bck-card.align--right.image--top{
    align-items: flex-end;
}

.bck-card.align--left {
    text-align: left;
}

.bck-card.align--right {
    text-align: right;
}

.image-align-left {
    align-items: flex-start;
}

.image-align-right {
    align-items: flex-end;
}

.image-align-center {
    align-items: center;
}

.bck-card .bck-card-title{
    margin-bottom: 0;
}
.bck-cf7-styler * {
    box-sizing: border-box;
}

.bck-cf7-styler .wpcf7 form {
    position: relative;
}

.bck-cf7-styler .wpcf7-form .wpcf7-submit {
    display: block !important;
}

.bck-cf7-styler .wpcf7 form > div,
.bck-cf7-styler .wpcf7 form > p {
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.bck-cf7-styler .wpcf7 .bck-cf7-styler .wpcf7-control-wrap {
    width: 100%;
    display: block;
}

.bck-cf7-styler .wpcf7 input:not([type="submit"]):focus,
.bck-cf7-styler .wpcf7 select:focus,
.bck-cf7-styler .wpcf7 textarea:focus {
    border-color: #eaeaea;
    outline: 0;
    box-shadow: none;
}

.bck-cf7-styler
    .wpcf7
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.bck-cf7-styler .wpcf7 select,
.bck-cf7-styler .wpcf7 textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75em;
}

.bck-cf7-styler .wpcf7 input[type="file"] {
    color: #666;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    background: #fafafa;
    box-shadow: none;
    transition: all 0.2s linear;
    border-radius: 2px;
    box-sizing: border-box;
}

.bck-cf7-styler.bck-cf7-styler-cr .wpcf7 input[type="checkbox"],
.bck-cf7-styler.bck-cf7-styler-cr .wpcf7 input[type="radio"] {
    display: inline-block;
    position: relative;
    visibility: hidden;
    clear: none;
    cursor: pointer;
    line-height: 0;
    height: 1.2em;
    margin: -3px 4px 0 0;
    outline: 0;
    padding: 0;
    border-radius: 0.2em;
    text-align: center;
    vertical-align: middle;
    width: 1.4em;
    min-width: 1.4em;
    transition: all 0.2s linear;
}

.bck-cf7-styler input[type="range"] {
    background: 0 0 !important;
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]:checked
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]:checked
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    box-sizing: content-box;
}

.bck-cf7-styler.bck-cf7-styler-cr .wpcf7-acceptance input[type="checkbox"],
.bck-cf7-styler.bck-cf7-styler-cr .wpcf7-checkbox input[type="checkbox"],
.bck-cf7-styler.bck-cf7-styler-cr .wpcf7-radio input[type="radio"] {
    display: none;
}

.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]:not(:checked)
    + span:before {
    background-color: #ffffff;
}

.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    border-width: 1px;
    border-style: solid;
    border-color: #d1d8de;
    width: 14px;
    height: 14px;
}

.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]:checked
    + span:before {
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-color: #d1d8de;
}

.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    text-align: center;
}

.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]:checked
    + span:before,
.bck-cf7-styler.bck-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]:checked
    + span:before {
    content: "\2714";
    line-height: 1.2;
}

.bck-cf7-styler-button-center input.wpcf7-form-control.wpcf7-submit,
.bck-cf7-styler-button-justify input.wpcf7-form-control.wpcf7-submit,
.bck-cf7-styler-button-left input.wpcf7-form-control.wpcf7-submit,
.bck-cf7-styler-button-right input.wpcf7-form-control.wpcf7-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: auto;
}
.bck-cf7 .wpcf7 input[type="submit"][disabled] {
    cursor: not-allowed;
}

.bck-cf7-styler .wpcf7 input[type="submit"] {
    font-size: 14px;
    letter-spacing: 0.6px;
    width: auto;
    font-size: 16px;
    padding: 10px 22px 10px 22px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-style: solid;
    border-color: #2ea3f2;
    color: #fff;
    background-color: #2ea3f2;
    -webkit-appearance: button;
    cursor: pointer;
}

.bck-cf7-styler .wpcf7 div.wpcf7-response-output {
    margin: 0;
}

.bck-form-header {
    display: flex;
    align-items: center;
}

.bck-form-header-icon,
.bck-form-header-image {
    position: relative;
    display: flex;
    flex: auto 0 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 50% 50%;
}

.bck-form-header-title {
    font-size: 32px;
    font-weight: 600;
}

.bck-form-header-text {
    margin-top: 8px;
    opacity: 0.7;
    font-size: 15px;
}

.bck-cf7-styler-button-center .wpcf7-form input[type="submit"],
.bck-cf7-styler-button-center .wpcf7-form button.wpcf7-submit {
    margin-left: auto !important;
    margin-right: auto !important;
}

.bck-cf7-styler-button-right .wpcf7-form input[type="submit"],
.bck-cf7-styler-button-right .wpcf7-form button.wpcf7-submit {
    margin-left: auto !important;
}

.bck-cf7-styler-button-left .wpcf7-form input[type="submit"],
.bck-cf7-styler-button-left .wpcf7-form button.wpcf7-submit {
    margin-right: auto !important;
}

.bck-toggle label{
    cursor: pointer;
}

.bck-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.bck-toggle-left, .bck-toggle-right {
    cursor: pointer;
}

.bck-toggle-head-1 {
    margin: 0;
    padding: 0;
}

.bck-toggle-btn {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bck-switch-label {
    position: relative;
    display: inline-block;
    width: 4.5em;
    vertical-align: middle;
}

.bck-switch-label .bck-toggle-switch {
    display: none;
}

.bck-switch-inner {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

.bck-switch-inner:before {
    position: absolute;
    content: "";
    height: 1.8em;
    width: 1.8em;
    left: .25em;
    bottom: .25em;
    -webkit-transition: .4s;
    transition: .4s;
}

.bck-toggle-head-2 {
    margin: 0;
    padding: 0;
}

.bck-toggle-switch:checked+.bck-switch-inner:before {
    -webkit-transform: translateX(2.1em);
    -ms-transform: translateX(2.1em);
    transform: translateX(2.1em);
}

.bck-content-toggle-body .et-waypoint:not(.et_pb_counters){
    opacity: 1!important;
}
.content-center {
  justify-content: center;
}
.content-left {
  justify-content: flex-start;
}
.content-right {
  justify-content: flex-end;
}
.bck-dual-btn {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.bck-btn-wrap {
  position: relative;
  display: flex;
}
.bck-btn__connector {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bck-btn__connector--icon,
.bck-btn__connector--text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  z-index: 99;
}

.btn-el {
  display: inline-block;
}

.bck-flipbox-icon-front .bck-et-icon {
    font-family: ETmodules !important;
    font-weight: 400 !important;
}
/* Common */
.bck-flipbox-card-container {
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.bck-flipbox-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* -webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg); */
}

.bck-flipbox-front-card {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    -webkit-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bck-flipbox-card-inner {
    width: 100%;
}

.bck-flipbox-card-content {
    width: 100%;
    padding: 30px;
}

.bck-flipbox-back-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: center;
}

/* Animation Flip */
/* .bck-flipbox .bck-flipbox--flip .bck-flipbox-back-card{
	transition: initial!important;
}

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

  .bck-flipbox--flip.bck-flip-left .bck-flipbox-front-card,
  .bck-flipbox--flip.bck-flip-left .bck-flipbox-back-card,
  .bck-flipbox--flip.bck-flip-right .bck-flipbox-front-card,
  .bck-flipbox--flip.bck-flip-right .bck-flipbox-back-card,
  .bck-flipbox--flip.bck-flip-up .bck-flipbox-front-card,
  .bck-flipbox--flip.bck-flip-up .bck-flipbox-back-card,
  .bck-flipbox--flip.bck-flip-down .bck-flipbox-front-card,
  .bck-flipbox--flip.bck-flip-down .bck-flipbox-back-card {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  }

  .bck-flipbox--flip.bck-flip-left,
  .bck-flipbox--flip.bck-flip-right,
  .bck-flipbox--flip.bck-flip-up,
  .bck-flipbox--flip.bck-flip-down {
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
  }

  .bck-flipbox--flip.bck-flip-right .bck-flipbox-back-card {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
  }

  .bck-flipbox--flip.bck-flip-right
	.bck-flipbox-inner:hover
	.bck-flipbox-card-container,
  .bck-flipbox--flip.bck-flip-right .bck-flipbox-back-card {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
  }

  .bck-flipbox--flip.bck-flip-left .bck-flipbox-back-card {
	  -webkit-transform: rotateY(-180deg);
	  transform: rotateY(-180deg);
	}

	.bck-flipbox--flip.bck-flip-left
	  .bck-flipbox-inner:hover
	  .bck-flipbox-card-container,
	.bck-flipbox--flip.bck-flip-left .bck-flipbox-back-card {
	  -webkit-transform: rotateY(-180deg);
	  transform: rotateY(-180deg);
	}

  .bck-flipbox--flip.bck-flip-up .bck-flipbox-back-card {
	  -webkit-transform: rotateX(180deg);
	  transform: rotateX(180deg);
	}

	.bck-flipbox--flip.bck-flip-up
	  .bck-flipbox-inner:hover
	  .bck-flipbox-card-container,
	.bck-flipbox--flip.bck-flip-up .bck-flipbox-back-card {
	  -webkit-transform: rotateX(180deg);
	  transform: rotateX(180deg);
	}

  .bck-flipbox--flip.bck-flip-down .bck-flipbox-back-card {
	  -webkit-transform: rotateX(-180deg);
	  transform: rotateX(-180deg);
	}

	.bck-flipbox--flip.bck-flip-down
	  .bck-flipbox-inner:hover
	  .bck-flipbox-card-container,
	.bck-flipbox--flip.bck-flip-down .bck-flipbox-back-card {
	  -webkit-transform: rotateX(-180deg);
	  transform: rotateX(-180deg);
	} */
.bck-flipbox--flip .bck-flipbox-card-container {
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.bck-flipbox--flip .bck-flipbox-back-card,
.bck-flipbox--flip .bck-flipbox-front-card {
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.bck-flipbox--flip .bck-flipbox-front-card {
    position: relative;
    bottom: 0;
    z-index: 10;
}
.bck-flipbox--flip .bck-flipbox-back-card {
    position: absolute;
    z-index: -1;
    padding: 30px;
}
.bck-flipbox--flip.bck-flip-right .bck-flipbox-front-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.bck-flipbox--flip.bck-flip-right .bck-flipbox-back-card {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.bck-flipbox--flip.bck-flip-right:hover .bck-flipbox-back-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.bck-flipbox--flip.bck-flip-right:hover .bck-flipbox-front-card {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.bck-flipbox--flip.bck-flip-left .bck-flipbox-front-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.bck-flipbox--flip.bck-flip-left .bck-flipbox-back-card {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.bck-flipbox--flip.bck-flip-left:hover .bck-flipbox-back-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.bck-flipbox--flip.bck-flip-left:hover .bck-flipbox-front-card {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.bck-flipbox--flip.bck-flip-up .bck-flipbox-front-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.bck-flipbox--flip.bck-flip-up .bck-flipbox-back-card {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.bck-flipbox--flip.bck-flip-up:hover .bck-flipbox-back-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.bck-flipbox--flip.bck-flip-up:hover .bck-flipbox-front-card {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.bck-flipbox--flip.bck-flip-down .bck-flipbox-front-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.bck-flipbox--flip.bck-flip-down .bck-flipbox-back-card {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.bck-flipbox--flip.bck-flip-down:hover .bck-flipbox-back-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.bck-flipbox--flip.bck-flip-down:hover .bck-flipbox-front-card {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.bck-flipbox--flip:hover .bck-flipbox-front-card {
    z-index: -1;
}
.bck-flipbox--flip:hover .bck-flipbox-back-card {
    z-index: 1;
}

/* Design */
.bck-flipbox-title-front,
.bck-flipbox-title-back,
.bck-flipbox-subtitle-back,
.bck-flipbox-subtitle-front {
    margin-bottom: 0;
    padding-bottom: 0;
}

.bck-flipbox-figure-back .bck-flipbox-icon,
.bck-flipbox-figure-front .bck-flipbox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.bck-flipbox-figure-back,
.bck-flipbox-figure-front {
    border-style: solid;
    display: inline-block;
}

.bck-flipbox-figure-back img,
.bck-flipbox-figure-front img {
    width: 100%;
    object-fit: cover;
}

.bck-flipbox-card {
    border-style: solid;
}

/* Flip 3d */
/* .bck-flipbox-3d .bck-flipbox-card-inner {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(0.1px);
    transform: translateZ(0.1px);
}

.bck-flipbox-3d .bck-flipbox-content {
    -webkit-transform: translateZ(90px) scale(0.91);
    transform: translateZ(90px) scale(0.91);
} */
.bck-flipbox--flip.bck-flipbox-3d .bck-flipbox-front-card,
.bck-flipbox--flip.bck-flipbox-3d .bck-flipbox-back-card {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.bck-flipbox--flip.bck-flipbox-3d .bck-flipbox-card-inner {
    -webkit-transform: translateZ(50px) scale(0.9);
    transform: translateZ(50px) scale(0.9);
}

.bck-flipbox--flip.bck-flipbox-3d .bck-flipbox-card-container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Animation Push & Slide */
.bck-flipbox--slide,
.bck-flipbox--push {
    overflow: hidden;
    position: relative;
}

.bck-flipbox--slide .bck-flipbox-back-card {
    z-index: 9999;
}

.bck-flipbox--slide.bck-slide-up .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-up .bck-flipbox-back-card {
    top: 100%;
}

.bck-flipbox--slide.bck-slide-up:hover .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-up:hover .bck-flipbox-back-card {
    top: 0;
}

.bck-flipbox--push.bck-push-up:hover .bck-flipbox-front-card {
    top: -100%;
}

.bck-flipbox--slide.bck-slide-down .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-down .bck-flipbox-back-card {
    top: -100%;
}

.bck-flipbox--slide.bck-slide-down:hover .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-down:hover .bck-flipbox-back-card {
    top: 0;
}

.bck-flipbox--push.bck-push-down:hover .bck-flipbox-front-card {
    top: 100%;
}

.bck-flipbox--slide.bck-slide-left .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-left .bck-flipbox-back-card {
    left: 100%;
}

.bck-flipbox--slide.bck-slide-left:hover .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-left:hover .bck-flipbox-back-card {
    left: 0;
}

.bck-flipbox--push.bck-push-left:hover .bck-flipbox-front-card {
    left: -100%;
}

.bck-flipbox--slide.bck-slide-right .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-right .bck-flipbox-back-card {
    left: -100%;
}

.bck-flipbox--slide.bck-slide-right:hover .bck-flipbox-back-card,
.bck-flipbox--push.bck-push-right:hover .bck-flipbox-back-card {
    left: 0;
}

.bck-flipbox--push.bck-push-right:hover .bck-flipbox-front-card {
    left: 100%;
}

/* Animation Fade*/
.bck-flipbox--fade .bck-flipbox-back-card {
    z-index: 999;
    opacity: 0;
}

.bck-flipbox--fade:hover .bck-flipbox-back-card {
    opacity: 1;
}

/* Animation Zoom In*/
.bck-flipbox--zoom_in .bck-flipbox-back-card {
    z-index: 999;
    opacity: 0;
    transform: scale(0.3);
}

.bck-flipbox--zoom_in:hover .bck-flipbox-back-card {
    opacity: 1;
    transform: scale(1);
}

/* Animation Zoom Out*/
.bck-flipbox--zoom_out .bck-flipbox-front-card {
    z-index: 999;
    transform: scale(1);
}

.bck-flipbox--zoom_out:hover .bck-flipbox-front-card {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

/* Animation Rotate 3D*/
.bck-flipbox--rotate_3d .bck-flipbox-inner {
    position: relative;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
}
.bck-flipbox--rotate_3d .bck-flipbox-inner .bck-flipbox-card-container {
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -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(-75px);
    -moz-transform: translateZ(-75px);
    -ms-transform: translateZ(-75px);
    -o-transform: translateZ(-75px);
    transform: translateZ(-75px);
}
.bck-flipbox--rotate_3d .bck-flipbox-inner .bck-flipbox-card-container:hover {
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform: translateZ(-75px) rotateY(180deg);
    -moz-transform: translateZ(-75px) rotateY(180deg);
    -ms-transform: translateZ(-75px) rotateY(180deg);
    -o-transform: translateZ(-75px) rotateY(180deg);
    transform: translateZ(-75px) rotateY(180deg);
}
.bck-flipbox--rotate_3d .bck-flipbox-inner .bck-flipbox-front-card {
    z-index: 1;
    -webkit-transform: rotateY(0deg) translateZ(75px);
    -moz-transform: rotateY(0deg) translateZ(75px);
    -ms-transform: rotateY(0deg) translateZ(75px);
    -o-transform: rotateY(0deg) translateZ(75px);
    transform: rotateY(0deg) translateZ(75px);
}
.bck-flipbox--rotate_3d .bck-flipbox-inner .bck-flipbox-back-card {
    z-index: 0;
    -webkit-transform: rotateY(180deg) translateZ(75px);
    -moz-transform: rotateY(180deg) translateZ(75px);
    -ms-transform: rotateY(180deg) translateZ(75px);
    -o-transform: rotateY(180deg) translateZ(75px);
    transform: rotateY(180deg) translateZ(75px);
}
.bck-flipbox--rotate_3d .bck-flipbox-inner .bck-flank {
    width: 150px;
    height: 100%;
    left: 75px;
    -webkit-transform: rotateY(-90deg) translateZ(150px);
    -moz-transform: rotateY(-90deg) translateZ(150px);
    -ms-transform: rotateY(-90deg) translateZ(150px);
    -o-transform: rotateY(-90deg) translateZ(150px);
    transform: rotateY(-90deg) translateZ(150px);
    display: block;
    overflow: hidden;
    position: absolute;
}
.bck-flipbox--rotate_3d.bck-rotate_3d-v
    .bck-flipbox-inner
    .bck-flipbox-card-container:hover {
    -webkit-transform: translateZ(-75px) rotateX(180deg);
    -moz-transform: translateZ(-75px) rotateX(180deg);
    -ms-transform: translateZ(-75px) rotateX(180deg);
    -o-transform: translateZ(-75px) rotateX(180deg);
    transform: translateZ(-75px) rotateX(180deg);
}
.bck-flipbox--rotate_3d.bck-rotate_3d-v
    .bck-flipbox-inner
    .bck-flipbox-back-card {
    -webkit-transform: rotateX(180deg) translateZ(75px);
    -moz-transform: rotateX(180deg) translateZ(75px);
    -ms-transform: rotateX(180deg) translateZ(75px);
    -o-transform: rotateX(180deg) translateZ(75px);
    transform: rotateX(180deg) translateZ(75px);
}
.bck-flipbox--rotate_3d.bck-rotate_3d-v .bck-flipbox-inner .bck-flank {
    width: 100%;
    height: 150px;
    left: 0;
    top: 25px;
}

.bck-flipbox-card-container,
.bck-flipbox--rotate_3d .bck-flipbox-inner .bck-flipbox-card {
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Animation Open Window*/
.bck-flipbox--open_up .bck-flipbox-card-container {
    perspective: 800px;
}
.bck-flipbox--open_up .bck-flipbox-front-card {
    transform-origin: top left;
}
.bck-flipbox--open_up:hover .bck-flipbox-front-card {
    transform: rotateX(77deg);
}

/* Animation Flip Diagonal */

.bck-flipbox--diagonal.bck-diagonal-right .bck-flipbox-back-card {
    -webkit-transform: rotate3d(-1, 1, 0, 180deg);
    transform: rotate3d(-1, 1, 0, 180deg);
}
.bck-flipbox--diagonal.bck-diagonal-left .bck-flipbox-back-card {
    -webkit-transform: rotate3d(1, 1, 0, 180deg);
    transform: rotate3d(1, -1, 0, 180deg);
}

.bck-flipbox--diagonal.bck-diagonal-right:hover .bck-flipbox-card-container {
    -webkit-transform: rotate3d(-1, 1, 0, 180deg);
    transform: rotate3d(-1, 1, 0, 180deg);
}

.bck-flipbox--diagonal.bck-diagonal-left:hover .bck-flipbox-card-container {
    -webkit-transform: rotate3d(1, -1, 0, 180deg);
    transform: rotate3d(1, -1, 0, 180deg);
}

/* Animation Flip Shake */
.bck-flipbox--shake .bck-flipbox-inner {
    perspective: 1500px;
}
.bck-flipbox--shake .bck-flipbox-card-container .bck-flipbox-back-card {
    transform: rotateY(180deg);
}

.bck-flipbox--shake:hover .bck-flipbox-card-container {
    transform: rotateX(180deg) rotateZ(180deg);
}

.bck-flipbox--shake .bck-flipbox-card-container {
    /* will-change: transform; */
}

.bck-floating-image {
  position: relative;
}

.bck_floating_image_child img{
	width: 100%;
	max-width: 100%;
}

.bck_floating_image .bck_floating_image_child {
  position: absolute !important;
  animation-iteration-count: infinite;
  margin-bottom: 0!important;
}
.bck-horizontal-timeline-frontend .slick-arrow:before {
    content: attr(data-icon) !important;
}

.bck-horizontal-timeline .slick-arrow:before {
    font-family: ETmodules !important;
    line-height: .5;
    line-height: 1.35;
    vertical-align: middle;
}
.bck-horizontal-timeline  .slick-arrow:before, .bck-horizontal-timeline  .slick-arrow:after {
    color: inherit !important;
}
.bck-horizontal-timeline-title h4{
	margin-bottom: 0;
	padding-bottom: 0;
}

.bck-horizontal-timeline .slick-arrow{
	z-index: 99!important;
}

.bck-horizontal-timeline-icon-wrap{
	position: relative;
}

.bck-horizontal-timeline-icon-wrap:before{
	content: "";
	width: 150%;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}

.bck-horizontal-timeline-icon{
	border: 0px solid;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 99;
	border-radius: 6px;
}

.bck-horizontal-timeline-figure {
	max-width: 100%;
	overflow: hidden;
	display: inline-block;
}
.bck-horizontal-timeline-figure img{
	object-fit: cover;
	width: 100%;
	max-width: 100%;
}
.bck-horizontal-timeline-content-wrap{
	position: relative;
}
.bck-horizontal-timeline .bck-horizontal-timeline-arrow:before {
	display: block;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: inherit;
    transition: inherit;
}
.bck-horizontal-timeline .bck-horizontal-timeline-arrow {
    position: absolute;
    bottom: 100%;
    box-sizing: content-box;
    width: 15px;
    height: 15px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-transition: inherit;
    transition: inherit;
}
/* .bck-et-icon {
    display: inline-block;
    transition: .2s all ease !important;
    transform-origin: center;
    vertical-align: middle!important;
    line-height: 1;
}

.et-db #et-boc .bck-et-icon:after, .bck-et-icon:after {
    content: attr(data-icon) !important;
    font-family: "ETmodules" !important;
    line-height: inherit;
    font-size: inherit !important;
    display: inline-block;
    text-shadow: none;
    font-weight: 400;
    font-style: normal;
    font-variant: none;
    text-transform: none;
    transition: all .2s ease;
} */

.bck-hotspot-label .bck-et-icon {
    font-family: ETmodules !important;
    font-weight: 400 !important;
}

.bck-hotspots {
    position: relative;
}

.bck-hotspot .bck-hotspot-tooltip {
    display: none;
}

.bck-hotspots-img-root {
    width: 100%;
}

.bck-hotspots .bck_hotspots_child {
    position: absolute !important;
    border-radius: 50%;
    margin-bottom: 0 !important;
}

.bck-hotspot-label {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-style: solid;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
}

.bck-hotspot-title,
.bck-hotspot-desc {
    color: #ffffff;
}

.bck-hotspot-tp-figure {
    border-style: solid;
    display: inline-block;
}

.bck-hotspot-tp-img,
.bck-hotspot-tp-icon {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bck-hotspot-btn {
    font-size: 20px;
}

@keyframes hpAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    to {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Tippy core */
.tippy-box[data-animation="fade"][data-state="hidden"] {
    opacity: 0;
}
[data-tippy-root] {
    max-width: calc(100vw - 10px);
}
.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    outline: 0;
    transition-property: transform, visibility, opacity;
}
.tippy-box[data-placement^="top"] > .tippy-arrow {
    bottom: 0;
}
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    transform-origin: center top;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow {
    top: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    transform-origin: center bottom;
}
.tippy-box[data-placement^="left"] > .tippy-arrow {
    right: 0;
}
.tippy-box[data-placement^="left"] > .tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    transform-origin: center left;
}
.tippy-box[data-placement^="right"] > .tippy-arrow {
    left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    transform-origin: center right;
}
.tippy-box[data-inertia][data-state="visible"] {
    transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}
.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333;
}
.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid;
}
.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1;
}

/* Tippy animation */
.tippy-box[data-animation="scale"][data-placement^="top"] {
    transform-origin: bottom;
}
.tippy-box[data-animation="scale"][data-placement^="bottom"] {
    transform-origin: top;
}
.tippy-box[data-animation="scale"][data-placement^="left"] {
    transform-origin: right;
}
.tippy-box[data-animation="scale"][data-placement^="right"] {
    transform-origin: left;
}
.tippy-box[data-animation="scale"][data-state="hidden"] {
    transform: scale(0.5);
    opacity: 0;
}

.tippy-box[data-animation="perspective"][data-placement^="top"] {
    transform-origin: bottom;
}
.tippy-box[data-animation="perspective"][data-placement^="top"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="top"][data-state="hidden"] {
    transform: perspective(700px) translateY(8px) rotateX(60deg);
}
.tippy-box[data-animation="perspective"][data-placement^="bottom"] {
    transform-origin: top;
}
.tippy-box[data-animation="perspective"][data-placement^="bottom"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="bottom"][data-state="hidden"] {
    transform: perspective(700px) translateY(-8px) rotateX(-60deg);
}
.tippy-box[data-animation="perspective"][data-placement^="left"] {
    transform-origin: right;
}
.tippy-box[data-animation="perspective"][data-placement^="left"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="left"][data-state="hidden"] {
    transform: perspective(700px) translateX(8px) rotateY(-60deg);
}
.tippy-box[data-animation="perspective"][data-placement^="right"] {
    transform-origin: left;
}
.tippy-box[data-animation="perspective"][data-placement^="right"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="right"][data-state="hidden"] {
    transform: perspective(700px) translateX(-8px) rotateY(60deg);
}
.tippy-box[data-animation="perspective"][data-state="hidden"] {
    opacity: 0;
}

.tippy-box[data-animation="shift-away-extreme"][data-state="hidden"] {
    opacity: 0;
}
.tippy-box[data-animation="shift-away-extreme"][data-state="hidden"][data-placement^="top"] {
    transform: translateY(20px);
}
.tippy-box[data-animation="shift-away-extreme"][data-state="hidden"][data-placement^="bottom"] {
    transform: translateY(-20px);
}
.tippy-box[data-animation="shift-away-extreme"][data-state="hidden"][data-placement^="left"] {
    transform: translateX(20px);
}
.tippy-box[data-animation="shift-away-extreme"][data-state="hidden"][data-placement^="right"] {
    transform: translateX(-20px);
}

.tippy-box[data-animation="shift-toward-extreme"][data-state="hidden"] {
    opacity: 0;
}
.tippy-box[data-animation="shift-toward-extreme"][data-state="hidden"][data-placement^="top"] {
    transform: translateY(-20px);
}
.tippy-box[data-animation="shift-toward-extreme"][data-state="hidden"][data-placement^="bottom"] {
    transform: translateY(20px);
}
.tippy-box[data-animation="shift-toward-extreme"][data-state="hidden"][data-placement^="left"] {
    transform: translateX(-20px);
}
.tippy-box[data-animation="shift-toward-extreme"][data-state="hidden"][data-placement^="right"] {
    transform: translateX(20px);
}

.bck-hover-box{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-style: solid;
}

.bck-hover-box-content{
    position: absolute;
    z-index: 9999;
}

.bck-hover-box-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bck-hover-box .bck-hover-box-desc{
    margin-bottom: 0;
    padding-bottom: 0;
}

/* style 3 */
.bck-hover-box.style_3 .bck-hover-box-content{
    left: 0;
    bottom: 0;
    transform: translateY(101%);
}

.bck-hover-box.style_3:hover .bck-hover-box-content{
    transform: translateY(0);
}

/* style 4 */
.bck-hover-box.style_4 .bck-hover-box-content{
    left: 0;
    bottom: 0;
}

.bck-hover-box.style_4:hover .bck-hover-box-content{
    transform: translateY(102%);
}

/* style 1 */
.bck-hover-box.style_1:hover .bck-hover-box-content{
    opacity: 0;
}

/* style 2 */
.bck-hover-box.style_2 .bck-hover-box-content{
    opacity: 0;
}

.bck-hover-box.style_2:hover .bck-hover-box-content{
    opacity: 1;
}

/* style 5 */
.bck-hover-box.style_5 .bck-hover-box-content{
    left: 0;
    top: 0;
    transform: translateY(-101%);
}

.bck-hover-box.style_5:hover .bck-hover-box-content{
    transform: translateY(0);
}

/* style 6 */
.bck-hover-box.style_6 .bck-hover-box-content{
    left: 0;
    top: 0;
}

.bck-hover-box.style_6:hover .bck-hover-box-content{
    transform: translateY(-102%);
}

/* style 7 */
.bck-hover-box.style_7 .bck-hover-box-content{
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
}

.bck-hover-box.style_7 .bck-hover-box-desc,
.bck-hover-box.style_7 .bck-hover-box-subtitle{
    opacity: 0;
}

.bck-hover-box.style_7:hover .bck-hover-box-desc,
.bck-hover-box.style_7:hover .bck-hover-box-title,
.bck-hover-box.style_7:hover .bck-hover-box-subtitle{
    opacity: 1;
    transform: translateY(0);
}

.bck-hover-box.style_7 .bck-hover-box-desc,
.bck-hover-box.style_7 .bck-hover-box-title,
.bck-hover-box.style_7 .bck-hover-box-btn-wrap{
    transform: translateY(30px);
}
.bck-hover-box.style_7:hover .bck-hover-box-desc{
    transition-delay: .1s;
}


/* style 8 */
.bck-hover-box.style_8 .bck-hover-box-content{
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 25px;
    height: 100%;
}

.bck-hover-box.style_8 .bck-hover-box-content:after,
.bck-hover-box.style_8 .bck-hover-box-content:before{
    position: absolute;
    top: 25px;
    right: 25px;
    bottom: 25px;
    left: 25px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s,-webkit-transform 0.35s;
    transition: opacity 0.35s,transform 0.35s;
}

.bck-hover-box.style_8 .bck-hover-box-content:before{
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
}

.bck-hover-box.style_8 .bck-hover-box-content:after{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
}

.bck-hover-box.style_8:hover .bck-hover-box-content:after,
.bck-hover-box.style_8:hover .bck-hover-box-content:before{
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    opacity: 1;
}

.bck-hover-box.style_8 .bck-hover-box-subtitle,
.bck-hover-box.style_8 .bck-hover-box-desc{
    opacity: 0;
}

.bck-hover-box.style_8:hover .bck-hover-box-subtitle,
.bck-hover-box.style_8:hover .bck-hover-box-desc{
    opacity: 1;
}

.bck-hover-box.style_8 .bck-hover-box-subtitle{
    transform: translateY(-15px);
}
.bck-hover-box.style_8 .bck-hover-box-title{
    transform: translateY(-30px);
}

.bck-hover-box.style_8:hover .bck-hover-box-subtitle{
    transition-delay: .1s;
}

.bck-hover-box.style_8:hover .bck-hover-box-subtitle,
.bck-hover-box.style_8:hover .bck-hover-box-title{
    transform: translateY(0px);
}


/* style 8 */
.bck-hover-box.style_9 .bck-hover-box-content{
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 25px;
    height: 100%;
}

.bck-hover-box.style_9 .bck-hover-box-content:after,
.bck-hover-box.style_9 .bck-hover-box-content:before{
    position: absolute;
    top: 25px;
    right: 25px;
    bottom: 25px;
    left: 25px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s,-webkit-transform 0.35s;
    transition: opacity 0.35s,transform 0.35s;
}

.bck-hover-box.style_9 .bck-hover-box-content:before{
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}

.bck-hover-box.style_9 .bck-hover-box-content:after{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}

.bck-hover-box.style_9:hover .bck-hover-box-content:after,
.bck-hover-box.style_9:hover .bck-hover-box-content:before{
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    opacity: 1;
}

.bck-hover-box.style_9 .bck-hover-box-desc{
    opacity: 0;
    transform: scale(1.2);
}

.bck-hover-box.style_9:hover .bck-hover-box-desc{
    opacity: 1;
    transform: scale(1);
}


.bck-iconbox{
    position: relative;
    display: block;
    color: initial;
}

.bck-iconbox-inner{
    border-style: solid;
}
.bck-iconbox__icon-wrap {
    display: flex;
}
.bck-iconbox__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all ease;
    border-style: solid;
    justify-content: center;
    align-items: center;
}

.bck-iconbox__icon img {
    transform-origin: center;
    display: inline-block;
    transition: 0.2s all ease;
    vertical-align: middle;
}

.bck-iconbox__badge {
    position: absolute;
    border-style: solid;
}

.bck-iac{
	display: flex;
}

.bck_image_accordion_child{
	margin-bottom: 0!important;
}

.bck_image_accordion_child{
	flex: 1;
	height: 100%;
	transition: flex .4s ease-in-out;
	position: relative;
	z-index: 9;
	display: flex;
	background-position: center;
	background-size: cover;
}

.bck_image_accordion_child>div{
	height: initial!important;
	width: 100%;
}

.bck_image_accordion_child::before{
	position: absolute;
	z-index: -1;
	height: 100%;
	width: 100%;
	content: '';
	opacity: 0;
	transition: .4s ease-in-out;
	top: 0;
	left: 0;
}
.bck-iac-figure,
.bck-iac-img{
	display: inline-block;
}

.bck-iac-title,
.bck-iac-subtitle{
	margin: 0;
	padding: 0;
	line-height: 1em;
}
.bck-iac-btn{
	display: inline-block;
}

.bck-active .bck-iac-content{
	visibility: visible;
	pointer-events: initial;
}
.bck-iac-content{
	visibility: hidden;
	pointer-events: none;
}

.bck-iac-el{
	opacity: 0;
	transform-origin: center;
}

.bck_image_accordion_child.bck-active .bck-iac-el{
	opacity: 1;
	transform: translateY(0px) scale(1);
	transition: .3s ease-in-out;
}

.seq-off .bck-active .bck-iac-el{
	transition-delay: .5s;
}

.seq-on .bck-active .bck-iac-el:nth-child(1){
	transition-delay: .5s;
}

.seq-on .bck-active .bck-iac-el:nth-child(2){
	transition-delay: .7s;
}

.seq-on .bck-active .bck-iac-el:nth-child(3){
	transition-delay: .9s;
}

.seq-on .bck-active .bck-iac-el:nth-child(4){
	transition-delay: 1.1s;
}

.seq-on .bck-active .bck-iac-el:nth-child(5){
	transition-delay: 1.3s;
}

/* Active */
.bck_image_accordion_child.bck-active{
	flex: 6;
}
.bck-image-compare .twentytwenty-horizontal .twentytwenty-handle:before,
.bck-image-compare .twentytwenty-horizontal .twentytwenty-handle:after,
.bck-image-compare .twentytwenty-vertical .twentytwenty-handle:before,
.bck-image-compare .twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.bck-image-compare .twentytwenty-horizontal .twentytwenty-handle:before,
.bck-image-compare .twentytwenty-horizontal .twentytwenty-handle:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.bck-image-compare .twentytwenty-vertical .twentytwenty-handle:before,
.bck-image-compare .twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.bck-image-compare .twentytwenty-overlay div:before{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 0 solid;
}

.bck-image-compare .twentytwenty-before-label,
.bck-image-compare .twentytwenty-after-label,
.bck-image-compare .twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.bck-image-compare .twentytwenty-before-label,
.bck-image-compare .twentytwenty-after-label,
.bck-image-compare .twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.bck-image-compare .twentytwenty-before-label,
.bck-image-compare .twentytwenty-after-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
}

.bck-image-compare .twentytwenty-before-label:before,
.bck-image-compare .twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.bck-image-compare .twentytwenty-before-label:before,
.bck-image-compare .twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
}

.bck-image-compare .twentytwenty-horizontal .twentytwenty-before-label:before,
.bck-image-compare .twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  transform: translateY(-50%);
}

.bck-image-compare .twentytwenty-vertical .twentytwenty-before-label:before,
.bck-image-compare .twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}

.bck-image-compare .twentytwenty-left-arrow,
.bck-image-compare .twentytwenty-right-arrow,
.bck-image-compare .twentytwenty-up-arrow,
.bck-image-compare .twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.bck-image-compare .twentytwenty-left-arrow,
.bck-image-compare .twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.bck-image-compare .twentytwenty-up-arrow,
.bck-image-compare .twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.bck-image-compare .twentytwenty-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.bck-image-compare .twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}

.bck-image-compare .twentytwenty-container.active .twentytwenty-overlay,
.bck-image-compare .twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}

.bck-image-compare
  .twentytwenty-container.active
  .twentytwenty-overlay
  .twentytwenty-before-label,
.bck-image-compare
  .twentytwenty-container.active
  .twentytwenty-overlay
  .twentytwenty-after-label,
.bck-image-compare
  .twentytwenty-container.active
  :hover.twentytwenty-overlay
  .twentytwenty-before-label,
.bck-image-compare
  .twentytwenty-container.active
  :hover.twentytwenty-overlay
  .twentytwenty-after-label {
  opacity: 0;
}

.bck-image-compare .twentytwenty-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.bck-image-compare .twentytwenty-before-label:before {
  content: attr(data-content);
}

.bck-image-compare .twentytwenty-after-label:before {
  content: attr(data-content);
}

.bck-image-compare .twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.bck-image-compare .twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.bck-image-compare .twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.bck-image-compare .twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.bck-image-compare .twentytwenty-overlay {
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25;
}

.bck-image-compare .twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.bck-image-compare .twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}

.bck-image-compare .twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.bck-image-compare .twentytwenty-before {
  z-index: 20;
}

.bck-image-compare .twentytwenty-after {
  z-index: 10;
}

.bck-image-compare .twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.bck-image-compare .twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  /* -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); */
  /* -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); */
  /* box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); */
}

.bck-image-compare .twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  /* -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); */
  /* -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); */
  /* box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); */
}

.bck-image-compare .twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.bck-image-compare .twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.bck-image-compare .twentytwenty-left-arrow {
  left: 50%;
  margin-left: -17px;
}

.bck-image-compare .twentytwenty-right-arrow {
  right: 50%;
  margin-right: -17px;
}

.bck-image-compare .twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}

.bck-image-compare .twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}

html.magnifying > body {
  overflow-x: hidden !important;
}

.bck-image-magnifier .magnify {
  position: relative;
}

.bck-image-magnifier .magnify-lens {
  position: absolute;
  border-radius: 100%;
  cursor: none;
  display: none;
  z-index: 999;
  border-style: solid;
}

.bck-image-magnifier .magnify > .magnify-lens.loading {
  background: #333 !important;
  opacity: 0.8;
}

.bck-image-magnifier .magnify > .magnify-lens.loading:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  content: "Loading...";
  font-size: 16px;
  font-style: italic;
  letter-spacing: 1px;
  margin-top: -8px;
  text-align: center;
  text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
  text-transform: none;
}

.bck-image-magnifier img{
	border-style: solid;
	width: 100%;
	max-width: 100%;
}
.bck-image-masking-image{
    background-attachment: initial;
    background-repeat: no-repeat;
    background-size: cover;
    transform-origin: center;
	mix-blend-mode: overlay;
}

.bck-image-masking-figure{
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: unset;
    -webkit-mask-size: unset;
}

.bck-image-masking{
    position: relative;
}

.bck-image-masking-subtitle{
    padding-bottom: 0!important;
}

.bck-image-masking-content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.bck-info-box .figure{
    overflow: hidden;
    position: relative;
}

.bck-info-box .et_pb_video, .bck-info-box .et_pb_video_box{
	overflow: hidden;
}

.bck-info-box .figure img{
    transition: .3s;
    width: 100%;
    vertical-align: middle;
}

.bck-info-box .figure{
    display: inline-block;
}

.bck-info-box-icon{
    transition: 0.2s all ease !important;
}

.bck-info-box .figure, .bck-info-box .bck-info-box-icon, .bck-info-box .bck-content-video{
    border-style: solid;
}

.bck-mce-content p,
.bck-mce-content h1,
.bck-mce-content h2,
.bck-mce-content h3,
.bck-mce-content h4,
.bck-mce-content h5,
.bck-mce-content h6{
    color: inherit!important;
}

.fluid-video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bck-content-video{
    border-style: solid;
}

.bck-inline-svg-wrap {
    text-align: center;
}

.bck-inline-svg {
    min-width: 40px;
}

.bck-inline-svg svg {
    min-width: 40px;
}

.bck-inline-svg {
    display: inline-block;
}

.bck-inline-svg-custom-width svg {
    width: 100%;
    height: auto;
    display: block;
}

.bck-inline-svg-custom-width {
    width: 100%;
}

.bck-inline-svg-custom-color svg {
    fill: currentColor;
    stroke: currentColor;
}
.bck-insta-grid-layout,
.bck-insta-highlight-layout {
    display: grid;
    grid-auto-flow: dense;
}

.bck-insta-highlight-layout .bck-insta-layout-cell,
.bck-insta-grid-layout .bck-insta-layout-cell {
    position: relative;
}

.bck-insta-highlight-layout .bck-insta-layout-flex-column,
.bck-insta-grid-layout .bck-insta-layout-flex-column {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: stretch;
    justify-content: stretch;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.bck-insta-masonry-layout .bck-insta-layout-flex-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

.bck-insta-media-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.bck-insta-link {
    width: 100%;
    height: 100%;
}

.bck-insta-image {
    width: 100% !important;
    height: 100% !important;
}

.bck-insta-overlay {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.bck-insta-overlay .bck-insta-icon {
    position: absolute;
    opacity: 0;
    animation-name: bck-fade-in-animation;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    transition: .4s all ease;
    bottom: 15px;
    right: 20px;
    z-index: 1;
}

.bck-insta-overlay .bck-insta-icon svg {
    fill: currentColor;
    stroke: currentColor;
}

.bck-insta-overlay .bck-insta-caption {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 1.5rem;
    width: 100%;
    color: #fff;
    z-index: 1;
    opacity: 0;
    animation-name: bck-fade-in-animation;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    transition: .4s all ease;
    transform: translateY(-40%);
}

.bck-insta-overlay:hover,
.bck-insta-overlay:hover .bck-insta-icon,
.bck-insta-overlay:hover .bck-insta-caption {
    opacity: 1;
    transition: .4s all ease;
}

.bck-insta-overlay .bck-insta-caption p {
    display: block;
    overflow: hidden;
    margin: 0;
    max-height: 84px;
    text-overflow: ellipsis;
}

.bck-insta-layout-cell-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 solid transparent !important;
    outline: 0 solid transparent !important;
    box-shadow: 0 0 0 transparent !important;
    animation-name: bck-fade-in-animation;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    box-sizing: content-box !important;
    pointer-events: none;
    user-select: none;
}

.bck-insta-layout-cell-content,
.bck-insta-layout-cell-content img {
    animation-duration: .3s;
}

@keyframes bck-fade-in-animation {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.bck-insta-masonry-layout .grid-item {
    overflow: hidden !important;
    border-style: solid;
}

.bck-insta-masonry-layout .grid-item a {
    display: block;
    overflow: hidden;
}

.bck-insta-masonry-layout .grid-item img {
    display: block;
}

.bck-insta-highlight {
    grid-row: span 2;
    grid-column: span 2;
}
.bck-list-group{
	display: grid;
	display: -ms-grid;
}

.bck-list-group .et_pb_module{
	margin-bottom: 0!important;
}

.bck_list_group_child{
    border-style: solid;
}

.bck_list_group .bck-list-group.bck-module .bck_list_group_child:last-child{
    margin-bottom: 0!important;
}

.bck-list-group-child{
    display: flex;
    width: 100%;
    align-items: center;
}

.bck-list-group-direction{
    margin-left: auto;
}

.bck-list-group-direction,
.bck-list-group-figure{
    border-style: solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bck-list-group-figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.bck-list-group-subtitle,
.bck-list-group-title{
	padding: 0;
}

.bck-logo-grid {
  display: grid;
  list-style: none;
  padding: 0;
}

.bck_logo_grid_child {
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  width: 100%;
  border-style: solid;
}

.bck_logo_grid_child>div{
	height: initial!important;
	width: 100%;
}

.bck_logo_grid_child figure {
  margin: 0;
  text-align: center;
  height: 100%;
}

.bck-logo-grid__item a {
  display: block;
  height: 100%;
}

.bck-logo-grid__item img {
  vertical-align: middle;
  transition: 0.2s ease;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.zoom_in .bck-logo-grid__item:hover img {
  transform: scale(1.2);
}

.zoom_out .bck-logo-grid__item:hover img {
  transform: scale(0.8);
}

.fade .bck-logo-grid__item:hover img {
  opacity: 0.65;
}

.black_n_white .bck-logo-grid__item:hover img {
  filter: grayscale(100%);
}

.bck-logo-grid .et_pb_module {
  margin-bottom: 0 !important;
}

.bck-logo-grid__item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-style: solid;
}


/* React Tippy*/

.tippy-touch{cursor:pointer!important}.tippy-notransition{transition:none!important}.tippy-popper{max-width:400px;-webkit-perspective:800px;perspective:800px;z-index:9999;outline:0;transition-timing-function:cubic-bezier(.165,.84,.44,1);pointer-events:none}.tippy-popper.html-template{max-width:96%;max-width:calc(100% - 20px)}.tippy-popper[x-placement^=top] [x-arrow]{border-top:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;bottom:-7px;margin:0 9px}.tippy-popper[x-placement^=top] [x-arrow].arrow-small{border-top:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;bottom:-5px}.tippy-popper[x-placement^=top] [x-arrow].arrow-big{border-top:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;bottom:-10px}.tippy-popper[x-placement^=top] [x-circle]{-webkit-transform-origin:0 33%;transform-origin:0 33%}.tippy-popper[x-placement^=top] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-55%);transform:scale(1) translate(-50%,-55%);opacity:1}.tippy-popper[x-placement^=top] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow]{border-top:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-top:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-top:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow]{border-top:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-top:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-top:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] [data-animation=perspective]{-webkit-transform-origin:bottom;transform-origin:bottom}.tippy-popper[x-placement^=top] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateY(-10px) rotateX(0);transform:translateY(-10px) rotateX(0)}.tippy-popper[x-placement^=top] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateY(0) rotateX(90deg);transform:translateY(0) rotateX(90deg)}.tippy-popper[x-placement^=top] [data-animation=fade].enter{opacity:1;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=fade].leave{opacity:0;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].enter{opacity:1;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].leave{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}.tippy-popper[x-placement^=top] [data-animation=scale].enter{opacity:1;-webkit-transform:translateY(-10px) scale(1);transform:translateY(-10px) scale(1)}.tippy-popper[x-placement^=top] [data-animation=scale].leave{opacity:0;-webkit-transform:translateY(0) scale(0);transform:translateY(0) scale(0)}.tippy-popper[x-placement^=bottom] [x-arrow]{border-bottom:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;top:-7px;margin:0 9px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small{border-bottom:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;top:-5px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big{border-bottom:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;top:-10px}.tippy-popper[x-placement^=bottom] [x-circle]{-webkit-transform-origin:0 -50%;transform-origin:0 -50%}.tippy-popper[x-placement^=bottom] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-45%);transform:scale(1) translate(-50%,-45%);opacity:1}.tippy-popper[x-placement^=bottom] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-5%);transform:scale(.15) translate(-50%,-5%);opacity:0}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow]{border-bottom:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-bottom:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-bottom:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow]{border-bottom:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-bottom:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-bottom:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] [data-animation=perspective]{-webkit-transform-origin:top;transform-origin:top}.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateY(10px) rotateX(0);transform:translateY(10px) rotateX(0)}.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateY(0) rotateX(-90deg);transform:translateY(0) rotateX(-90deg)}.tippy-popper[x-placement^=bottom] [data-animation=fade].enter{opacity:1;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=fade].leave{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].enter{opacity:1;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].leave{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}.tippy-popper[x-placement^=bottom] [data-animation=scale].enter{opacity:1;-webkit-transform:translateY(10px) scale(1);transform:translateY(10px) scale(1)}.tippy-popper[x-placement^=bottom] [data-animation=scale].leave{opacity:0;-webkit-transform:translateY(0) scale(0);transform:translateY(0) scale(0)}.tippy-popper[x-placement^=left] [x-arrow]{border-left:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;right:-7px;margin:6px 0}.tippy-popper[x-placement^=left] [x-arrow].arrow-small{border-left:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;right:-5px}.tippy-popper[x-placement^=left] [x-arrow].arrow-big{border-left:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;right:-10px}.tippy-popper[x-placement^=left] [x-circle]{-webkit-transform-origin:50% 0;transform-origin:50% 0}.tippy-popper[x-placement^=left] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-50%);transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=left] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow]{border-left:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-left:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-left:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow]{border-left:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-left:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-left:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] [data-animation=perspective]{-webkit-transform-origin:right;transform-origin:right}.tippy-popper[x-placement^=left] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateX(-10px) rotateY(0);transform:translateX(-10px) rotateY(0)}.tippy-popper[x-placement^=left] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateX(0) rotateY(-90deg);transform:translateX(0) rotateY(-90deg)}.tippy-popper[x-placement^=left] [data-animation=fade].enter{opacity:1;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=fade].leave{opacity:0;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].enter{opacity:1;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].leave{opacity:0;-webkit-transform:translateX(0);transform:translateX(0)}.tippy-popper[x-placement^=left] [data-animation=scale].enter{opacity:1;-webkit-transform:translateX(-10px) scale(1);transform:translateX(-10px) scale(1)}.tippy-popper[x-placement^=left] [data-animation=scale].leave{opacity:0;-webkit-transform:translateX(0) scale(0);transform:translateX(0) scale(0)}.tippy-popper[x-placement^=right] [x-arrow]{border-right:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;left:-7px;margin:6px 0}.tippy-popper[x-placement^=right] [x-arrow].arrow-small{border-right:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;left:-5px}.tippy-popper[x-placement^=right] [x-arrow].arrow-big{border-right:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;left:-10px}.tippy-popper[x-placement^=right] [x-circle]{-webkit-transform-origin:-50% 0;transform-origin:-50% 0}.tippy-popper[x-placement^=right] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-50%);transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=right] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow]{border-right:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-right:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-right:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow]{border-right:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-right:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-right:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] [data-animation=perspective]{-webkit-transform-origin:left;transform-origin:left}.tippy-popper[x-placement^=right] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateX(10px) rotateY(0);transform:translateX(10px) rotateY(0)}.tippy-popper[x-placement^=right] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateX(0) rotateY(90deg);transform:translateX(0) rotateY(90deg)}.tippy-popper[x-placement^=right] [data-animation=fade].enter{opacity:1;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=fade].leave{opacity:0;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].enter{opacity:1;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].leave{opacity:0;-webkit-transform:translateX(0);transform:translateX(0)}.tippy-popper[x-placement^=right] [data-animation=scale].enter{opacity:1;-webkit-transform:translateX(10px) scale(1);transform:translateX(10px) scale(1)}.tippy-popper[x-placement^=right] [data-animation=scale].leave{opacity:0;-webkit-transform:translateX(0) scale(0);transform:translateX(0) scale(0)}.tippy-popper .tippy-tooltip.transparent-theme{background-color:rgba(0,0,0,.7)}.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill]{background-color:transparent}.tippy-popper .tippy-tooltip.light-theme{color:#26323d;box-shadow:0 4px 20px 4px rgba(0,20,60,.1),0 4px 80px -8px rgba(0,20,60,.2);background-color:#fff}.tippy-popper .tippy-tooltip.light-theme[data-animatefill]{background-color:transparent}.tippy-tooltip{position:relative;color:#fff;border-radius:4px;font-size:.95rem;padding:.4rem .8rem;text-align:center;will-change:transform;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#333}.tippy-tooltip--small{padding:.25rem .5rem;font-size:.8rem}.tippy-tooltip--big{padding:.6rem 1.2rem;font-size:1.2rem}.tippy-tooltip[data-animatefill]{overflow:hidden;background-color:transparent}.tippy-tooltip[data-interactive]{pointer-events:auto}.tippy-tooltip[data-inertia]{transition-timing-function:cubic-bezier(.53,2,.36,.85)}.tippy-tooltip [x-arrow]{position:absolute;width:0;height:0}.tippy-tooltip [x-circle]{position:absolute;will-change:transform;background-color:#333;border-radius:50%;width:130%;width:calc(110% + 2rem);left:50%;top:50%;z-index:-1;overflow:hidden;transition:all ease}.tippy-tooltip [x-circle]:before{content:"";padding-top:90%;float:left}@media (max-width:450px){.tippy-popper{max-width:96%;max-width:calc(100% - 20px)}}


.tippy-box[data-theme=light]{
    color: #26323d;
    box-shadow: 0 4px 20px 4px rgba(0,20,60,.1), 0 4px 80px -8px rgba(0,20,60,.2);
    background-color: #fff;
	border-radius: 4px;
}

.tippy-tooltip,
.tippy-box{
    font-size: 14px;
    padding: 5px 10px!important;
    line-height: 24px;
}
.tippy-content {
    position: relative;
    padding: 0;
    z-index: 1;
}
.tippy-box[data-theme=light] .tippy-arrow{
    color: #fff;
}

.tippy-box[data-theme=dark] .tippy-arrow{
    color: #262626;
}

.tippy-box[data-theme=dark]{
    color: #ffffff;
    background-color: #262626;
	border-radius: 4px;
}

.bck-lottie-wrap{
    display: flex;
	align-content: center;
    align-items: center;
    transition-duration: 300ms;
}

.bck-lottie-container {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    opacity: 1;
}

.bck-lottie-container:hover {
    opacity: 1;
    transition-duration: 300ms;
}

.bck-lottie-container svg,
.bck-lottie-container svg * {
    transition: none !important
}
.bck-lottie-caption {
    color: inherit;
    margin-top: 0;
    text-align: center;
}
.et-db #et-boc .et-l .et-fb-modules-list li[class^="bck"]:hover,
.et-db #et-boc .et-l .et-fb-modules-list li[class^="bck"]:focus,
.et-db #et-boc .et-l .et-fb-modules-list li[class^="bck"]:active {
	background: rgba(29, 57, 215, .15) !important;
	color: #333333 !important;
}

.et-db #et-boc .et-l .et-fb-modules-list li[class^="bck"] {
	font-size: 11px;
	color: #333333 !important;
	background: rgba(29, 57, 215, .15) !important;
	position: relative;
}

.et-db #et-boc .et-fb-modules-list li[class^="bck"]:before {
	color: #fff !important;
}

.et-db #et-boc .et-l .et-fb-modules-list li[class^="bck"]:before {
	color: #fff;
}

.et-db #et-boc .et-l .et-fb-modules-list li[class^="bck"] .et-fb-icon.et-fb-icon--svg {
	fill: #fff !important;
	width: 16px !important;
	min-width: 16px !important;
	height: 22px !important;
	margin: 2px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}
.bck-number{
    display: flex;
}
.bck-number-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
	border-style: solid;
	text-align: center;
}

.bck-number-text{
    font-size: 26px;
}
.bck-price-menu-image{
    border-style: solid;
    display: inline-block!important;
}

.bck-price-menu-header h3{
	padding-bottom: 0;
	margin-bottom: 0;
}

.bck-price-menu-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.bck-price-menu .bck-price-menu-desc{
    margin-bottom: 0;
    padding-bottom: 0;
}

.bck_price_menu_child{
    border-style: solid;
}

.bck_price_menu .bck-price-menu.bck-module .bck_price_menu_child:last-child{
    margin-bottom: 0!important;
}
.bck-price-menu-child{
    width: 100%;
}


.bck-review{
    display: flex;
}

.bck-stars-wrap{
    font-size: 30px;
    position: relative;
    display: inline-block;
    line-height: .9;
}

.bck-stars-wrap .bck-star{
    display: inline-block;
    line-height: .9;
}

.bck-stars-inact{
    white-space: nowrap;
}

.bck-stars-act{
    position: absolute;
    left: 0;
    top: 0;
    width: var(--active-width);
    overflow: hidden;
    white-space: nowrap;
}

.bck-ratings{
    display: flex;
    align-items: center;
}

.bck-ratings-number{
    padding-top: 5px;
}

.bck-rating-figure{
    border-style: solid;
    position: relative;
}

.bck-rating-figure img{
    border-style: solid;
}

.bck-rating-star-desc{
    font-size: 14px;
}
.bck-scroll-image{
    cursor: pointer;
}

.scroll-figure-wrap{
    position: relative;
}

.bck-scroll-image-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    transition: .3s all ease-in-out;
}

.bck-scroll-image-icon img{
    width: 50px;
}
.bck-scroll-image-icon{
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: .3s all ease-in-out;
}
.bck-scroll-image:hover .bck-scroll-image-overlay,
.bck-scroll-image:hover .bck-scroll-image-icon{
    opacity: 0;
}

@keyframes bck-scroll-X{
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
}

@keyframes bck-scroll-Y{
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

.bck_skill_bar .bck-skill .bck_skill_bar_child:last-child{
    margin-bottom: 0!important;
}
.bck-skillbar{
    position: relative;
}

.bck-skillbar__wrapper{
    background: #ddd;
    overflow: hidden;
}

.bck-skillbar__inner{
    transition: .3s;
	white-space: nowrap;
	background-color: #add8e6;
}

.bck-skillbar__inner__text{
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.bck-skillbar__inner span{
    color: #333;
}

.bck-social-share {
  display: flex;
  box-sizing: border-box;
  flex: 0 1 auto;
  flex-wrap: wrap;
}

.bck-social-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-style: solid;
}

.bck-social-share .bck-social-share-btn a {
  display: flex;
  align-items: center;
}

.bck-social-share-btn-inner {
  border-style: solid;
}

.bck-social-share-text {
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bck_social_share_child {
  margin-bottom: 0 !important;
}

.bck-social-share-btn-inner,
.bck-social-share-text,
.bck-social-share-icon,
.bck-social-share-icon svg {
  transition: all.3s;
}

.bck-testimonial-img {
  border-style: solid;
  overflow: hidden;
  border-width: 0;
  display: inline-block !important;
}

.bck-img-right .bck-testimonial-reviewer figure {
  order: 2;
}

.bck-testimonial {
  position: relative;
}

.bck-testimonial.bck-align-left * {
  text-align: left;
}

.bck-testimonial.bck-align-center * {
  text-align: center;
}

.bck-testimonial.bck-align-right * {
  text-align: right;
}

.bck-img-left .bck-testimonial-reviewer,
.bck-img-right .bck-testimonial-reviewer {
  display: flex;
  align-items: center;
}

.bck-testimonial-review p {
  padding-bottom: 0 !important;
}

.bck-align-right .bck-testimonial-reviewer {
  justify-content: flex-end;
}

.bck-align-center .bck-testimonial-reviewer {
  justify-content: center;
}

.bck-testimonial-icon i {
  display: inline-block;
  border-style: solid;
}

.bck-testimonial-inner {
  position: relative;
  z-index: 1;
  border-style: solid;
  min-height: 110px;
}

.bck-testimonial-inner .bck-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
}

.bck-testimonial .bck-icon-absolute {
  position: absolute;
  z-index: 9999999;
}

/*Image left & right*/

.bck-testimonial-content {
  width: 100%;
}
.bck-testimonial-inner.img-pos-left,
.bck-testimonial-inner.img-pos-right {
  display: flex;
}


.bck-twitter-grid{
    display: flex;
    flex-wrap: wrap;
}

.bck-twitter-grid *{
    box-sizing: border-box!important;
}

.bck-twitter-grid .bck-twitter-grid-item {
	position: relative;
	z-index: 0;
	display: flex;
    border-style: solid;
    word-break: break-word;
}

.bck-twitter-grid .bck-twitter-grid-inner-wrapper {
	flex-direction: column;
}

.bck-twitter-grid .bck-twitter-grid-item .bck-twitter-grid-item-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible!important;
}

.bck-twitter-grid-item-inner {
    border-style: solid;
    position: relative;
}

.bck-twitter-grid .bck-twitter-grid-author,
.bck-twitter-grid .bck-twitter-grid-inner-wrapper,
.bck-twitter-grid .bck-twitter-grid-user {
    display: flex;
}

.bck-twitter-grid.bck-twitter-right .bck-twitter-grid-icon span {
	right: auto;
	left: 5px;
	transform: rotateY(-180deg);
}

.bck-twitter-grid .bck-twitter-grid-icon span {
	position: absolute;
	top: 15px;
	right: 15px;
}

.bck-twitter-grid .bck-twitter-grid-author {
	margin-bottom: 15px;
}

.bck-twitter-grid .bck-twitter-grid-author {
	align-items: center;
	flex-direction: row;
	margin-bottom: 10px;
}

.bck-twitter-grid.bck-twitter-center .bck-twitter-grid-author {
	align-items: center;
	flex-direction: column;
}

.bck-twitter-grid.bck-twitter-right .bck-twitter-grid-author {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.bck-twitter-center .bck-twitter-grid-user {
	text-align: center;
}

.bck-twitter-grid .bck-twitter-grid-user {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

.bck-twitter-grid.bck-twitter-center .bck-twitter-grid-avatar{
   vertical-align: middle;
}
.bck-twitter-grid .bck-twitter-grid-avatar {
	border-style: solid;
}

.bck-twitter-grid .bck-twitter-grid-content {
	position: relative;
	color: #222;
}

.bck-twitter-grid .bck-twitter-grid-content p {
	margin-bottom: 5px;
}

.bck-twitter-grid.bck-twitter-left .bck-twitter-grid-content {
	text-align: left;
}

.bck-twitter-grid.bck-twitter-center .bck-twitter-grid-content {
	text-align: center;
}

.bck-twitter-grid.bck-twitter-right .bck-twitter-grid-content {
	text-align: right;
}

/* footer */
.bck-twitter-grid .bck-twitter-grid-footer {
	width: 100%;
}

.bck-twitter-grid-footer *{
    vertical-align: middle;
}

.bck-twitter-grid .bck-tweet-favorite {
	margin-right: 12px;
}

.bck-twitter-grid .bck-tweet-favorite,
.bck-twitter-grid .bck-tweet-retweet {
	display: inline-block;
	color: #a7a7a7;
}

.bck-twitter-right .bck-twitter-grid-user{
    text-align: right;
}

.bck-twitter-grid .bck-twitter-grid-footer-wrapper {
    margin-top: auto!important;
}

.bck-vertical-timeline .et_pb_module.bck_vertical_timeline_child:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.bck-vt-content-inner{
	position: relative;
}

.bck-vertical-timeline h4,
.bck-vertical-timeline h5 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.bck-vertical-timeline {
  position: relative;
  overflow: hidden;
}

.bck-vt-date-time .bck-vt-time,
.bck-vt-date-time .bck-vt-date{
	display: inline-block;
}

.bck-vt-figure{
	display: inline-block;
}

.bck-vt-figure img {
  border-style: solid;
  object-fit: cover;
  width: 100%;
}

.bck-vt-content {
  border-style: solid;
}

.bck-vt-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 0 solid #333333;
  z-index: 9999;
  position: absolute;
}

.bck-vt-title h4 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.bck_vertical_timeline_child:not(.is-scroll) .bck-vt-scroll-inner{
	display: none;
}

.bck-vt-circle i:after{
	transition: 0s!important;
}

.bck-vt-scroll {
  position: absolute;
  height: 300%;
  left: 0px;
  top: 5px;
  z-index: 99;
}

.bck-vt-scroll-inner {
  width: 100%;
  position: static;
}

.bck-vt-circle-date {
  font-size: 14px;
  text-align: center;
  line-height: 1;
}

.bck-vt-circle-date .date-day {
  font-size: 13px;
}

.bck-vt-circle-date .date-month {
  font-size: 16px;
}

.bck-vt-circle-date .date-year {
  font-size: 11px;
}

.bck-vt-time{
	margin-left: 8px;
}

/* template 1 */
.template-1 .bck-vt-scroll {
  left: 100%;
  transform: translateX(-50%);
}

.template-1 .bck_vertical_timeline_child:nth-child(2n) .bck-vt-scroll {
  left: auto;
  right: 100%;
  transform: translateX(50%);
}

.template-1 .bck_vertical_timeline_child {
  position: relative;
  margin: 0px 50% 0 0;
}

.template-1 .bck_vertical_timeline_child:nth-child(2n) {
  margin: 0 0 0 50%;
}

.template-1 .bck-vt-content {
  position: relative;
}

.template-1 .bck_vertical_timeline_child:nth-child(2n) .bck-vt-content-inner:before {
  right: auto;
  left: -9px;
}

.template-1 .bck-vt-content-inner:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  transform: rotate(-45deg);
  position: absolute;
  right: -9px;
  background-color: inherit;
}

.template-1 .bck-vt-circle {
  position: absolute;
  transform: translateX(50%);
}

.template-1 .bck_vertical_timeline_child:nth-child(2n) .bck-vt-circle {
  right: auto;
  transform: translateX(-50%);
}

/* template 2*/
.template-2 .bck-vt-content-inner:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  transform: rotate(-45deg);
  position: absolute;
  left: -9px;
  background-color: inherit;
}

.template-2 .bck_vertical_timeline_child {
  position: relative;
  margin: 0px 0 0px 0px;
}

.template-2 .bck-vt-content {
  position: relative;
}

.template-2 .bck-vt-circle {
  transform: translateX(-50%);
}

.template-2 .bck-vt-scroll {
  left: 0;
  transform: translateX(-50%);
}

/* template 3*/
.template-3 .bck_vertical_timeline_child {
  position: relative;
  padding-bottom: 40px;
}

.template-3 .bck-vt-content {
  position: relative;
}

.template-3 .bck-vt-content-inner:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  transform: rotate(-45deg);
  position: absolute;
  left: -9px;
  background-color: inherit;
}

.template-3 .bck-vt-scroll {
  left: 0;
  transform: translateX(-50%);
}

.template-3 .bck-vt-circle {
  transform: translateX(-50%);
}

.template-3 .bck-vt-content-left {
  position: absolute;
  position: absolute;
  text-align: right;
  top: 0px;
  transform: translateX(-100%);
}

/* Media Queries*/
@media (max-width: 767px) {

  .bck-vertical-timeline.template-1 .bck-vt-circle {
    transform: translateX(-50%) translateY(-50%);
  }

  .bck-vertical-timeline.template-1 .bck-vt-scroll {
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
  }

  .bck-vertical-timeline.template-1 .bck_vertical_timeline_child {
    margin: 0 0 0 0 !important;
  }

  .bck-vertical-timeline.template-1 .bck-vt-content-inner:before {
    left: 50%!important;
    top: -10px!important;
    right: auto !important;
    margin-left: -10px;
  }

  .bck-vertical-timeline.template-1
    .bck_vertical_timeline_child:nth-child(2n)
    .bck-vt-content,
  .bck-vertical-timeline.template-1 .bck-vt-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .template-1 .bck_vertical_timeline_child:nth-child(2n) .bck-vt-circle {
    transform: translateX(-50%) translateY(-50%) !important;
  }

  .template-1 .bck-vt-content {
    z-index: 9999;
  }

  .template-1 .bck_vertical_timeline_child .bck-vt-circle {
    right: auto !important;
    left: 50% !important;
  }

  .bck-vertical-timeline.template-3 .bck-vt-title {
    position: static !important;
    text-align: inherit;
    top: initial;
    left: initial;
    transform: translateX(0%) translateY(0%);
    margin-bottom: 15px;
  }
  .bck-vertical-timeline.template-3 .bck-vt-content-left {
    width: calc(250px - 84px)!important;
    position: static!important;
    width: initial!important;
    transform: translateX(0) translateY(0)!important;
    text-align: left!important;
}
}

/* .bck-et-icon {
    display: inline-block;
    transition: .2s all ease !important;
    transform-origin: center;
    vertical-align: middle!important;
    line-height: 1;
}

.et-db #et-boc .bck-et-icon:after, .bck-et-icon:after {
    content: attr(data-icon) !important;
    font-family: "ETmodules" !important;
    line-height: inherit;
    font-size: inherit !important;
    display: inline-block;
    text-shadow: none;
    font-weight: 400;
    font-style: normal;
    font-variant: none;
    text-transform: none;
    transition: all .2s ease;
} */

.bck-vertical-timeline .et_pb_module {
    margin-bottom: 0 !important;
}

.bck_video_popup{
    overflow: hidden;
}

.bck-video-popup-inner{
    position: relative;
}

.bck-video-popup-icon i{
    transition: .2s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.bck-video-popup-icon i:after {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-animation: videoAnimation 2s infinite;
    animation: videoAnimation 2s infinite;
}

@keyframes videoAnimation{
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.bck-video-popup-icon{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 99;
    left: 0;
    top: 0;
}

.bck-video-popup-figure{
    position: relative;
    cursor: pointer;
    display: block;
}

.bck-video-popup-figure:before{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.bck-video-popup-figure img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.bck-video-open .mfp-iframe-holder .mfp-close {
    width: 52px;
    top: -51px!important;
    opacity: 1!important;
    font-size: 46px;
}

.bck-video-open .mfp-iframe-holder .mfp-close:focus{
    outline: none;
    border: none;
}

.bck-modal{
    max-width: 700px;
    margin: 30px auto;
    position: relative;
    padding: 0px;
    background: #fff;
    opacity: 0;
    transition: .1s!important;
}

.bck-video-wrap {
    overflow: hidden;
}

.bck-modal video{
    width: 100%;
    vertical-align: middle;
}

.bck-video-open .mfp-wrap .bck-modal .mfp-close:active{
    top: 0!important;
}

.bck-modal.open{
    opacity: 1;
}

.bck-modal-open .mfp-close-btn-in .mfp-close {
    color: #fff;
    top: -42px;
    opacity: 1;
    font-size: 40px;
}