/* ------------------------------------------------------------------------

  ANIMATIONS

 ------------------------------------------------------------------------*/
.yem-animated, .portfolio-item, .play-video, .toggle-map {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.yem-animated {
  opacity: 1;
}

.yem-animated[data-animation-delay="200"] {
  animation-delay: 0.2s;
}

.yem-animated[data-animation-delay="400"] {
  animation-delay: 0.4s;
}

.yem-animated[data-animation-delay="600"] {
  animation-delay: 0.6s;
}

.yem-animated[data-animation-delay="800"] {
  animation-delay: 0.8s;
}

.yem-animated[data-animation-delay="1000"] {
  animation-delay: 1s;
}

@-webkit-keyframes yem-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes yem-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
.zoomIn.yem-animate, .toggle-map.yem-animate {
  -webkit-animation-name: yem-zoomIn;
  animation-name: yem-zoomIn;
}

@-webkit-keyframes yem-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes yem-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn.yem-animate {
  -webkit-animation-name: yem-fadeIn;
  animation-name: yem-fadeIn;
}

@-webkit-keyframes yem-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes yem-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown.yem-animate {
  -webkit-animation-name: yem-fadeInDown;
  animation-name: yem-fadeInDown;
}

@-webkit-keyframes yem-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes yem-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft.yem-animate {
  -webkit-animation-name: yem-fadeInLeft;
  animation-name: yem-fadeInLeft;
}

@-webkit-keyframes yem-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes yem-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight.yem-animate {
  -webkit-animation-name: yem-fadeInRight;
  animation-name: yem-fadeInRight;
}

@-webkit-keyframes yem-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes yem-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp.yem-animate {
  -webkit-animation-name: yem-fadeInUp;
  animation-name: yem-fadeInUp;
}

@media (max-width: 960px) {
  .no-mobile-animation .wpb_animate_when_almost_visible,
.no-mobile-animation .yem-animated, .no-mobile-animation .play-video {
    animation-duration: 0s !important;
    animation-name: none !important;
    opacity: 1 !important;
  }
}
.wpb_animate_when_almost_visible[data-animation-delay="200"] {
  animation-delay: 0.2s;
}

.wpb_animate_when_almost_visible[data-animation-delay="400"] {
  animation-delay: 0.4s;
}

.wpb_animate_when_almost_visible[data-animation-delay="600"] {
  animation-delay: 0.6s;
}

.wpb_animate_when_almost_visible[data-animation-delay="800"] {
  animation-delay: 0.8s;
}

.wpb_animate_when_almost_visible[data-animation-delay="1000"] {
  animation-delay: 1s;
}

.animated.wpb_animate_when_almost_visible {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.wpb_animate_when_almost_visible.fadeInLeft {
  animation-name: yem-fadeInLeft;
}

.wpb_animate_when_almost_visible.fadeInRight {
  animation-name: yem-fadeInRight;
}

.wpb_animate_when_almost_visible.fadeInUp {
  animation-name: yem-fadeInUp;
}

.wpb_animate_when_almost_visible.fadeInDown {
  animation-name: yem-fadeInDown;
}

.br-5 {
  border-radius: 5px;
}

.br-10 {
  border-radius: 10px;
}

.br-15 {
  border-radius: 15px;
}

.br-20 {
  border-radius: 20px;
}

.br-25 {
  border-radius: 25px;
}

.vc_row.vc_row-shadow {
  box-shadow: 0 5px 70px rgba(38, 42, 76, 0.1);
}

.vc_column_container.extra-large-column .vc_column-inner {
  width: calc(100% + 60px);
}

.vc_row.vc_row-bg-position-top {
  background-position: top !important;
}

.vc_row.vc_row-bg-position-center {
  background-position: center !important;
}

.vc_row.vc_row-bg-position-bottom {
  background-position: bottom !important;
}

.vc_row > .yem-overlay,
.vc_column-inner > .yem-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.vc_row > .yem-overlay + .wpb_wrapper, .vc_row > .yem-overlay + .wpb_column,
.vc_column-inner > .yem-overlay + .wpb_wrapper,
.vc_column-inner > .yem-overlay + .wpb_column {
  position: relative;
}

.yem-row-separator {
  position: relative;
}

.zindex {
  z-index: 101;
}

.zindex0 {
  z-index: 0;
}

.yem-row-separator-clear {
  clear: both;
  display: block;
  height: 1px;
  font-size: 0;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}

.yem-row-separator {
  position: absolute !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.yem-row-separator.shape-behind {
  z-index: 90;
}

.vc_row:not(.vc_inner) > .wpb_column {
  z-index: 105;
}

.vc_row-small-triangle-sep .yem-row-separator {
  width: auto;
  text-align: center;
}

.yem-row-separator svg {
  width: 100%;
  fill: #fff;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.vc_row-small-triangle-sep .yem-row-separator svg {
  width: auto;
}

.yem-row-separator-top {
  top: 0;
}

.yem-row-separator-bottom {
  bottom: 0;
}

.separator-height-small, .separator-height-small svg {
  height: 50px;
}

.separator-height-medium, .separator-height-medium svg {
  height: 100px;
}

.separator-height-large, .separator-height-large svg {
  height: 150px;
}

.yem-row-separator.yem-row-separator-right,
.yem-row-separator.yem-row-separator-left {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: inherit;
  right: inherit;
  height: 100%;
  z-index: 1;
  width: 100px;
}

.yem-row-separator.yem-row-separator-right svg,
.yem-row-separator.yem-row-separator-left svg {
  height: 100%;
  right: 0;
  width: 50px;
  position: absolute !important;
}

.vc_row-top-sep-flip-y .yem-row-separator-top, .vc_row-bottom-sep-flip-y .yem-row-separator-bottom {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.vc_row-top-sep-flip-x .yem-row-separator-top, .vc_row-bottom-sep-flip-x .yem-row-separator-bottom {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.yem-row-separator.separator-width-small {
  width: 100px;
}

.yem-row-separator.separator-width-medium {
  width: 150px;
}

.yem-row-separator.separator-width-large {
  width: 200px;
}

.yem-row-separator.yem-row-separator-left {
  left: 0;
}

.yem-row-separator.yem-row-separator-right {
  right: 0;
}

.separator-waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.separator-waves-parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.separator-waves-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.separator-waves-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.separator-waves-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.separator-waves-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.container-dropshadow {
  box-shadow: 0 5px 50px rgba(38, 42, 76, 0.2);
}

.vc_col-has-overlay {
  position: relative;
}

.vc_row.vc_row-o-equal-height.vc_row-o-children-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.vc_row.vc_row-o-equal-height.vc_row-o-content-middle > .wpb_column > .vc_column-inner > .wpb_wrapper {
  justify-content: center;
}

.vc_row.vc_rtl-columns-reverse {
  flex-direction: row-reverse;
}

.vc_row[data-vc-full-width] {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  left: 50% !important;
  margin-left: -50vw;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.vc_row[data-vc-full-width] > .outer-row-box {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
}
.vc_row[data-vc-full-width].vc_row-o-content-top > .outer-row-box {
  align-items: start;
}
.vc_row[data-vc-full-width].vc_row-o-content-middle > .outer-row-box {
  align-items: center;
}
.vc_row[data-vc-full-width].vc_row-o-content-top > .outer-row-box {
  align-items: end;
}

.vc_row[data-vc-stretch-content] > .outer-row-box {
  max-width: 100%;
}
.vc_row[data-vc-stretch-content].vc_row-no-padding > .outer-row-box {
  padding-left: 0;
  padding-right: 0;
}

.vc_row.vc_row-yem-background-fixed {
  background-attachment: fixed !important;
  background-size: cover !important;
}

.vc_row.vc_row-clip-path {
  margin-top: -101px;
  padding-top: 150px;
  padding-bottom: 150px;
}
.vc_row.vc_row-clip-path.yem_row_clip_sr_pl {
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 calc(100% - 100px));
}
.vc_row.vc_row-clip-path.yem_row_clip_sr_pr {
  clip-path: polygon(0 0, 100% 100px, 100% calc(100% - 100px), 0 100%);
}
.vc_row.vc_row-clip-path.yem_row_clip_or_pl {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
  top: -1px;
  margin-top: -1px;
  padding-top: 50px;
}
.vc_row.vc_row-clip-path.yem_row_clip_or_pr {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
  top: -1px;
  margin-top: -1px;
  padding-top: 50px;
}
.vc_row.vc_row-clip-path.yem_row_clip_cr_pl {
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  padding-bottom: 250px;
}
.vc_row.vc_row-clip-path.yem_row_clip_cr_pr {
  clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
  padding-bottom: 250px;
}
@media (max-width: 767px) {
  .vc_row.vc_row-clip-path.yem_row_clip_sr_pl {
    padding-top: 50px;
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 calc(100% - 50px));
  }
  .vc_row.vc_row-clip-path.yem_row_clip_sr_pr {
    padding-top: 50px;
    clip-path: polygon(0 0, 100% 50px, 100% calc(100% - 50px), 0 100%);
  }
  .vc_row.vc_row-clip-path.yem_row_clip_or_pl {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
  }
  .vc_row.vc_row-clip-path.yem_row_clip_or_pr {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
  }
  .vc_row.vc_row-clip-path.yem_row_clip_cr_pl {
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  }
  .vc_row.vc_row-clip-path.yem_row_clip_cr_pr {
    clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
  }
}

.owl-nav div.owl-next,
.owl-nav div.owl-prev {
  background: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  opacity: 1;
  box-sizing: border-box;
  position: absolute;
  pointer-events: auto;
  border: none !important;
  font-size: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s ease;
}

.owl-nav div.owl-next:hover,
.owl-nav div.owl-prev:hover {
  color: #fff !important;
}

.owl-nav div.owl-next:before,
.owl-nav div.owl-prev:before {
  font-size: 16px;
  box-sizing: border-box;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  line-height: 40px;
}

.owl-carousel .owl-nav div.owl-prev {
  opacity: 0;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}

.owl-carousel .owl-nav div.owl-next {
  opacity: 0;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}

.owl-carousel:hover .owl-nav div.owl-prev,
.owl-carousel:hover .owl-nav div.owl-next {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.owl-nav.disabled {
  display: none;
}

.owl-dots.disabled {
  display: none;
}

.owl-carousel {
  display: block !important;
  opacity: 1 !important;
}

.yem-section-title .has-text-shadow {
  text-shadow: 3px 3px 3px #1f1f1f;
}

ul.breadcrumbs {
  list-style: none;
  padding-left: 0;
}
ul.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
ul.breadcrumbs li a {
  color: #fff;
  font-size: 24px;
}
ul.breadcrumbs li i {
  color: #fff;
  font-size: 18px;
  margin: 0 5px 0 10px;
}

.cb-container {
  position: relative;
  z-index: 101;
}
.cb-container > a {
  width: 100%;
}
.cb-container .cb-wrapper {
  position: relative;
  text-align: left;
  margin: 0px;
  margin-bottom: 30px;
  padding: 40px;
  background: #fff;
  transition: 0.2s;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 10px 35px rgba(38, 42, 76, 0.1);
  transition: 0.15s ease-in-out;
  border-radius: 8px;
}
.cb-container .cb-wrapper.cb-padding-sm {
  padding: 10px;
}
.cb-container .cb-wrapper.cb-padding-md {
  padding: 20px;
}
.cb-container .cb-wrapper.cb-padding-lg {
  padding: 40px;
}
.cb-container .cb-wrapper[data-hover-bar]:after {
  content: attr(data-hover-bar) !important;
}
.cb-container .cb-title-with-icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cb-container .cb-title-with-icon .cb-img-area {
  flex: 0 0 70px;
  margin-bottom: 0;
}
.cb-container .cb-title-with-icon .cb-heading {
  flex: 1;
  margin-bottom: 0;
  padding: 0 15px;
}
.cb-container .cb-img-area img {
  margin-bottom: 5px;
  max-height: 60px;
  width: auto;
}
.cb-container .cb-heading.with-subtitle {
  margin-bottom: 10px;
}
.cb-container.compact-cb .cb-wrapper {
  padding: 15px 25px;
}
.cb-container.compact-cb .cb-wrapper.cb-padding-sm {
  padding: 10px;
}
.cb-container.compact-cb .cb-wrapper.cb-padding-md {
  padding: 20px;
}
.cb-container.compact-cb .cb-wrapper.cb-padding-lg {
  padding: 40px;
}
.cb-container.compact-cb .cb-title-with-icon {
  margin-bottom: 0;
}
.cb-container.compact-cb .cb-text-area {
  display: block;
}

.cb-container.disable-box-shadow .cb-wrapper {
  box-shadow: none !important;
}

.cb-container .cb-wrapper .cb-hover-bar {
  transition: 0.2s all ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  left: 50%;
  height: 5px;
  width: 0;
  bottom: 0px;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ccc;
}

.cb-container:not(.cst-hover-bar) .cb-wrapper:after {
  content: "";
  transition: 0.2s all ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  left: 50%;
  height: 5px;
  width: 0;
  bottom: 0px;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ccc;
}

.cb-container:hover .cb-wrapper:after,
.cb-container:hover .cb-wrapper .cb-hover-bar {
  width: 100%;
}

.cb-container.with-bg-img {
  background-size: cover;
}

.cb-container.cb-no-icon {
  padding-bottom: 40px;
}

.cb-container.content-center * {
  text-align: center;
}

.cb-container.content-right * {
  text-align: right;
}
.cb-container.content-right .cb-title-with-icon {
  flex-direction: row-reverse;
}

.cb-container .cb-heading {
  font-size: 20px;
}

.cb-container.content-center a p {
  margin-bottom: 0 !important;
  color: #696969;
}

.cb-container .cb-wrapper:hover {
  z-index: 100;
  box-shadow: 0 10px 35px rgba(38, 42, 76, 0.1);
  transform: translateY(-10px) !important;
  border-color: transparent !important;
  border-bottom: none;
}

.cb-btncontainer {
  margin-top: 30px;
}

.cb-container.cb_transparent_color:hover {
  background: transparent;
}

.cb-container.cb_transparent_color:hover .cb-text-area p,
.cb-container.cb_transparent_color:hover .cb-heading {
  color: inherit;
}

.cb-container.cb_transparent_color img {
  opacity: 0.6;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.cb-container.cb_transparent_color:hover img {
  opacity: 1;
}

.cb-text-area p {
  transition: 0.25s;
  font-family: inherit !important;
}

.cb-text-area p,
#single-page .cb-text-area p {
  position: relative;
}

.cb-no-icon .cb-text-area p,
#single-page .cb-no-icon .cb-text-area p {
  margin-bottom: 10px;
}

.cb-img-area, .cb-text-area {
  vertical-align: bottom;
  transition: transform 0.2s ease-in-out;
}

.cb-img-area {
  margin-bottom: 25px;
  margin-right: 0;
  width: 100%;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

a.cb-btn-link {
  margin-bottom: 20px;
}

.cb-simple-link {
  display: block;
  margin-top: 20px;
  font-weight: 500;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.vc_row.vc_row-no-padding .cb-container {
  margin-left: 15px;
  margin-right: 15px;
}

.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper .cb-container {
  flex-grow: 1;
  display: flex;
  margin-bottom: 30px;
}
.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper .cb-container .cb-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.yem-photo-group {
  display: flex;
  position: relative;
  z-index: 10;
}
.yem-photo-group .yem-group-image img {
  border-radius: 12px;
}
@media (max-width: 767px) {
  .yem-photo-group .yem-group-image img {
    max-width: 200px;
  }
}

.yem-photo-group.small-shadow img {
  box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.1);
}

.yem-photo-group.large-shadow img {
  box-shadow: 0 20px 70px rgba(38, 42, 76, 0.2);
}

.first-image-wrapper {
  margin-left: auto;
}

.second-image-wrapper {
  position: absolute;
  bottom: -25%;
}

.yem-photo-group.group-layout-left .first-image-wrapper {
  margin-left: 0;
}

.yem-photo-group.group-layout-right .second-image-wrapper {
  right: 0;
}

.yem-photo-group.group-layout-center {
  justify-content: center;
}

.yem-photo-group.group-layout-center .first-image-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.yem-photo-group.group-layout-right .second-image-wrapper,
.yem-photo-group.group-layout-center .second-image-wrapper,
.yem-photo-group.group-layout-left .second-image-wrapper {
  bottom: 0;
}

.yem-photo-group.group-layout-left-right .first-image-wrapper {
  margin-right: auto;
  margin-left: 0;
}

.yem-photo-group.group-layout-left-right .second-image-wrapper {
  right: 0;
}

.yem-photo-group.group-layout-center-left .first-image-wrapper,
.yem-photo-group.group-layout-center-right .first-image-wrapper {
  margin-right: auto;
  margin-left: auto;
}

.yem-photo-group.group-layout-center-right .second-image-wrapper {
  right: -15%;
}

.yem-photo-group.group-layout-center-left .second-image-wrapper {
  left: -15%;
}

.wpb_single_image {
  position: relative;
  z-index: 10;
}

.yem-image-link-box {
  min-height: 15vh;
  position: relative;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  transition: all 300ms ease-in-out;
  box-shadow: 1px 3px 9px rgba(0, 0, 0, 0.4);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.yem-image-link-box:hover {
  transform: translateY(-20px);
}
.yem-image-link-box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(36, 36, 36, 0.5));
  z-index: 1;
}
.yem-image-link-box span {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  position: relative;
  z-index: 5;
  text-align: center;
}

.yem-process-steps {
  display: block;
  position: relative;
  text-align: center;
}

.yem-process-steps ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
}

.yem-process-steps ul li:last-child::after {
  display: none;
}

.yem-process-steps.process_three_elem li {
  width: calc(33.3333% - 30px);
}

.yem-process-steps.process_three_elem li .pss-text-area {
  padding-left: 40px;
  padding-right: 40px;
}

.yem-process-steps.process-number-template li {
  width: 33.33%;
  padding-left: 0;
  padding-right: 0;
  padding: 40px;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  margin: 0;
}

.yem-process-steps.process-checkbox-template.process_four_elem li {
  width: calc(25% - 30px);
}

.yem-process-steps.process-checkbox-template.process_five_elem li {
  width: 20%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.yem-process-steps.process-number-template.process_four_elem li {
  width: 25%;
}

.yem-process-steps.process-number-template.process_five_elem li {
  width: 20%;
  padding: 40px 0 20px 0;
}

.yem-process-steps.process_four_elem li .pss-text-area {
  padding-left: 0;
  padding-right: 0;
}

.yem-process-steps ul li {
  display: block;
  position: relative;
  float: left;
  margin: 15px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 30px 0px;
  padding-top: 45px;
  border: none;
  border-radius: 0px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.yem-process-steps.process-number-template ul li:hover {
  box-shadow: 0 44px 98px 0 rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.yem-process-steps .pss-step-number {
  display: block;
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
}

.yem-process-steps .pss-step-number span {
  position: relative;
  font-weight: 400;
  text-align: center;
  font-size: 42px;
  line-height: 1;
  display: block;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.yem-process-steps .pss-img-area {
  position: relative;
  margin: 0 auto;
}

.yem-process-steps .pss-img-area .process-customimg {
  line-height: 160px;
}

.yem-process-steps .pss-img-area .process-customimg img {
  border-radius: 0;
}

.yem-process-steps.process_five_elem .pss-img-area .process-customimg {
  line-height: 140px;
}

.yem-process-steps .pss-img-area .process-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.yem-process-steps .pss-img-area .process-icon i {
  font-size: 48px;
}

.yem-process-steps.process_three_elem .pss-img-area,
.yem-process-steps.process_four_elem .pss-img-area {
  width: 80px;
  height: 80px;
  margin-top: 50px;
  text-align: center;
  margin-bottom: -60px;
}

.feature-sections-wrapper .feature-sections-tabs .nav-tabs a .nav-number {
  width: 20px;
  height: 20px;
  color: #fff;
  background: #ccc;
  border-radius: 90px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.yem-process-steps.process_five_elem .pss-img-area {
  width: 140px;
  height: 140px;
  text-align: center;
}

.yem-process-steps .pss-text-area h4 {
  margin: 0;
  text-transform: none;
  margin-bottom: 10px;
}

#single-page .yem-process-steps .pss-text-area p, .yem-process-steps .pss-text-area p {
  color: inherit;
  margin-bottom: 30px;
}

.yem-process-steps.process_three_elem .pss-text-area p, .yem-process-steps.process_four_elem .pss-text-area p {
  padding: 0;
}

.yem-process-steps.process_three_elem .pss-text-area p {
  margin-top: 0;
}

.yem-process-steps.process_five_elem .pss-text-area p {
  padding: 0 20px;
}

.yem-process-steps .pss-text-area .pss-link {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.yem-process-steps.process-checkbox-template {
  text-align: left;
  padding-bottom: 0;
  border-top: 0px solid transparent;
  z-index: 10;
}

.yem-process-steps.process-checkbox-template ul li {
  box-shadow: none !important;
  background: none;
  border: none;
  padding-bottom: 0;
}

.yem-process-steps.process-checkbox-template ul li .pss-container:before {
  display: block;
  width: 64%;
  height: 1px;
  position: absolute;
  content: "";
  border-bottom: 1px solid rgba(125, 125, 125, 0.25);
  top: 45px;
  left: 74%;
}

.yem-process-steps.process-checkbox-template ul li:last-child .pss-container:before {
  display: none;
}

.yem-process-steps.process-checkbox-template .pss-text-area h4 {
  margin-bottom: 25px;
}

.yem-process-steps.process-checkbox-template .pss-step-number span:before,
.yem-process-steps.process-checkbox-template .pss-step-number:before,
.yem-process-steps.process-checkbox-template .pss-item:before {
  content: "";
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -35px;
  -webkit-transition: 0.3s cubic-bezier(0.5, 0.58, 0.55, 1);
  transition: 0.3s cubic-bezier(0.5, 0.58, 0.55, 1);
}

.yem-process-steps.process-checkbox-template .pss-step-number span:before,
.yem-process-steps.process-checkbox-template .pss-step-number:before {
  width: 100px;
  height: 100px;
  opacity: 0;
  margin-left: -50px;
  top: -15px;
  z-index: -1;
  transform: scale(0.6);
}

.yem-process-steps.process-checkbox-template .pss-item:hover .pss-step-number:before {
  opacity: 0.1;
  transform: scale(1);
}

.yem-process-steps.process-checkbox-template .pss-item:hover .pss-step-number span:before {
  opacity: 0.2;
  transform: scale(1);
}

.yem-process-steps.process-checkbox-template .pss-step-number span:before {
  width: 85px;
  height: 85px;
  top: -7px;
  margin-left: -42px;
  opacity: 0;
}

.yem-process-steps.process-checkbox-template .pss-item:hover .pss-step-number span:before {
  opacity: 0.2;
}

.yem-process-steps.process-checkbox-template .pss-step-number span {
  position: relative;
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  display: block;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  color: #fff;
  line-height: 70px;
  font-size: 22px;
}

.yem-process-steps.process-checkbox-template .pss-step-number {
  display: block;
  position: absolute;
  margin-bottom: 0;
  line-height: 1;
  top: 10px;
  left: 50%;
  font-weight: 400;
  margin-left: -35px;
  width: 70px;
  height: 70px;
  text-align: center;
}

.yem-process-steps.process-checkbox-template .pss-text-area {
  padding-top: 65px;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 7px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  text-align: center;
  padding-bottom: 0;
}

/* ------------------------------------------------------------------------

  30. PROMO BOX

 ------------------------------------------------------------------------*/
.yem-promobox {
  position: relative;
  float: left;
  width: 100%;
}

.yem-promobox .prb-content h3 {
  margin-top: 5px !important;
  margin-bottom: 20px;
  font-size: 22px;
  text-align: left;
  transition: 0.25s;
}

.yem-promobox .prb-content p {
  margin-bottom: 35px;
  text-align: left;
}

.yem-promobox.prb_image_left .prb-img {
  width: 36%;
  float: left;
  text-align: left;
  line-height: 0;
  max-width: 370px;
  border-radius: 10px;
  max-height: 220px;
  overflow: hidden;
}

.yem-promobox.prb_image_left .prb-content {
  width: 56%;
  margin: 0 2% 0 6%;
  float: left;
}

.yem-promobox.prb_image_right .prb-img {
  width: 36%;
  float: right;
  text-align: left;
  line-height: 0;
  max-height: 220px;
  max-width: 370px;
  border-radius: 10px;
  overflow: hidden;
}

.yem-promobox .prb-img img {
  width: 100%;
  height: auto;
}

.yem-promobox.prb_image_right .prb-content {
  width: 56%;
  margin: 0 6% 0 0%;
  float: left;
  text-align: left;
}

.yem-promobox .prb-btncontainer .prb-button {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: -45px;
  transition: 0.25s;
}

.yem-promobox:hover .prb-btncontainer .prb-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  position: absolute;
}

.prb-btncontainer {
  float: left;
  height: 0;
}

.yem-promobox:hover .prb-content h3 {
  margin-top: 0;
}

.yem-promobox.prb_image_right .prb-btncontainer {
  float: left;
}

.yem_counter_number {
  margin: 0;
  margin-bottom: 0 !important;
  display: flex;
  line-height: 1 !important;
  justify-content: center;
  align-items: center;
}

.yem_counter {
  text-align: center;
}

.yem_counter.count_left {
  text-align: left;
}

.yem_counter.count_center {
  text-align: center;
}

.yem_number_string {
  font-size: 42px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 500;
  font-family: inherit;
  line-height: 1;
  display: block;
}

.yem_counter_text {
  text-transform: none;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.yem_counter_units {
  font-size: 42px;
  font-weight: 500;
  margin-left: 2px;
}

.wpb_column:last-child .yem_counter_number:after {
  display: none;
}

.yem_counter_text {
  margin-top: 22px;
}

.yem_counter_icon {
  font-size: 48px;
  margin: auto;
  position: relative;
  margin-bottom: 20px;
  margin-left: 2px;
}

.yem_counter .yem_counter_icon img {
  border-radius: 0;
  width: auto;
}

.large-counter .yem_number_string {
  display: inline-block;
  float: none;
  width: auto;
  margin: 0;
  color: inherit;
  font-size: 62px;
  font-weight: 300;
  text-align: center;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.03em;
}

.large-counter .yem_counter_number:after {
  display: none;
}

.icon-left.yem_counter .yem_counter_content {
  text-align: left;
  display: inline-block;
}

.icon-left.yem_counter .yem_counter_icon {
  display: inline-block;
  margin-right: 30px;
  font-size: 52px;
}

.large-counter .yem_counter_icon {
  width: 60px;
  height: 60px;
  margin: auto;
  position: relative;
  margin-bottom: 10px;
  font-size: 60px;
}

.large-counter .yem_counter_units {
  font-size: 62px;
  margin-top: 0;
  font-weight: 300;
  line-height: 1;
}

.large-counter .yem_counter_number {
  margin-top: 0;
  margin-bottom: 15px;
}

.large-counter .yem_counter_text {
  float: none;
  width: 100%;
  text-align: center;
}

.count_left .yem_number_string,
.count_left .yem_counter_text {
  text-align: left;
}

.parallax.with-overlay .large-counter .yem_counter_text,
.parallax.with-overlay .large-counter .yem_counter_units,
.parallax.with-overlay .large-counter .yem_number_string,
.vc_parallax .large-counter .yem_counter_text,
.vc_parallax .large-counter .yem_counter_units,
.vc_parallax .large-counter .yem_number_string {
  color: #fff;
}

.yem_counter.align-left {
  text-align: left;
}

.yem_counter.align-left .yem_counter_number {
  justify-content: flex-start;
}

.yem_button {
  border-radius: 0;
  -webkit-transition: 0.1s !important;
  -moz-transition: 0.1s !important;
  -ms-transition: 0.1s !important;
  -o-transition: 0.1s !important;
  transition: 0.1s !important;
  text-align: center;
  color: #fff;
  padding: 18px 35px 18px 35px;
  margin: auto;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 11;
  position: relative;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}
.yem_button:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.yem_button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.38, 0.32, 0.36, 0.98) 0s;
  transition: -webkit-transform 0.2s cubic-bezier(0.38, 0.32, 0.36, 0.98) 0s;
  -o-transition: transform 0.2s cubic-bezier(0.38, 0.32, 0.36, 0.98) 0s;
  transition: transform 0.2s cubic-bezier(0.38, 0.32, 0.36, 0.98) 0s;
  transition: transform 0.25s cubic-bezier(0.38, 0.32, 0.36, 0.98) 0s, -webkit-transform 0.25s cubic-bezier(0.38, 0.32, 0.36, 0.98) 0s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}
.yem_button .yem-btn-icon {
  display: block;
  width: auto;
  height: auto;
  margin: auto 0;
  color: #fff;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-size: inherit;
}
.yem_button.btn-align-left {
  margin-left: 0;
  margin-right: 10px;
  display: inline-flex;
}
.yem_button.button-center {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.yem_button.icon_right .yem-btn-icon {
  margin-right: 0;
  margin-left: 12px;
  font-size: 12px;
}
.yem_button.icon_left .yem-btn-icon {
  margin-right: 12px;
  margin-left: 0;
  font-size: 12px;
}
.yem_button span.prim_text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.yem_button.yem_primary_button.btn_white_color {
  border-color: #fff;
  background-color: #fff;
}
.yem_button.yem_primary_button.hover_outline_white:hover {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.yem_button.yem_primary_button.hover_solid_white:before {
  background-color: #fff;
}
.yem_button.yem_primary_button.hover_solid_white:hover {
  border-color: #fff !important;
}
.yem_button.yem_secondary_button.btn_white_color {
  border-color: #fff;
}
.yem_button.yem_secondary_button.hover_solid_white:before {
  background-color: #fff;
}

.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper .yem_button.btn-align-left {
  margin-left: 0;
  margin-right: auto;
}
.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper .yem_button.btn-align-left + .yem_button {
  margin-left: 10px;
}
.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper .yem_button.btn-align-right {
  margin-left: auto;
  margin-right: 0;
}
.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper .yem_button.btn-align-right + .yem_button {
  margin-right: 10px;
}

.vc_row .vc_toggle {
  display: block;
  font-size: 1em;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 0;
  line-height: 1.3em;
  -moz-transition: 0.2s !important;
  -ms-transition: 0.2s !important;
  transition: 0.2s !important;
  background: #fff;
  border: 1px solid #e7e7e7;
  z-index: 10;
  position: relative;
}

.vc_row .vc_toggle.vc_toggle_simple {
  background: transparent;
  margin-bottom: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.vc_row .vc_toggle.transparent {
  background-color: transparent;
}

.vc_row .vc_toggle.vc_toggle_default.transparent .vc_toggle_title:after,
.vc_row .vc_toggle_size_md.vc_toggle_default.transparent .vc_toggle_title:after {
  color: #fff;
}

.vc_row .vc_toggle_size_md.vc_toggle_default.transparent .vc_toggle_title:hover h4 {
  color: rgba(255, 255, 255, 0.75);
}

.vc_row .vc_toggle.vc_toggle_simple:last-of-type {
  border-bottom: none;
}

.vc_row .vc_toggle_size_md.vc_toggle_simple .vc_toggle_title {
  padding: 25px 25px;
}

.vc_row .vc_toggle_simple .vc_toggle_title .vc_toggle_icon::after,
.vc_row .vc_toggle_simple .vc_toggle_title .vc_toggle_icon::before {
  transition: 0.25s;
}

.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title {
  padding-left: 0;
  padding: 25px 35px;
}

.vc_row .vc_toggle_size_md.vc_toggle_simple .vc_toggle_content {
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
}

.vc_row .vc_toggle_size_md.vc_toggle_simple .vc_toggle_icon {
  margin: 0;
  margin-left: -5px;
}

.vc_row .vc_toggle_size_md.vc_toggle_simple .vc_toggle_title h4,
.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title h4 {
  font-size: 17px;
  transition: 0.25s;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: inherit;
  text-transform: inherit;
}

.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_content {
  padding-left: 0;
  margin: 0;
  margin-bottom: 0;
  padding: 35px;
  padding-top: 0;
}

.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_content p,
.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_content ul li,
.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_content ol li {
  line-height: 1.5em;
}

.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title .vc_toggle_icon {
  display: none;
  right: 20px;
  left: auto;
  background: none;
  transform: none !important;
  border: none !important;
  width: auto;
  height: auto;
}

.vc_row .vc_toggle_default .vc_toggle_icon,
.vc_row .vc_toggle_default .vc_toggle_icon::after, .vc_row .vc_toggle_default .vc_toggle_icon::before {
  border: none !important;
}

.vc_row .vc_toggle_default .vc_toggle_icon::before {
  display: none !important;
}

.vc_row .vc_toggle.vc_toggle_default .vc_toggle_title:after,
.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title:after {
  display: block;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2339364e' d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z'/%3E%3C/svg%3E") !important;
  background-size: 14px !important;
  position: absolute;
  width: 14px;
  height: 14px;
  line-height: 14px;
  top: 50%;
  margin-top: -6px;
  right: 35px;
  transform: rotate(270deg) !important;
}

.vc_row .vc_toggle.vc_toggle_default.vc_toggle_active .vc_toggle_title:after,
.vc_row .vc_toggle_size_md.vc_toggle_default.vc_toggle_active .vc_toggle_title:after {
  content: " " !important;
  transform: rotate(90deg) !important;
}

.vc_toggle_default.vc_toggle_active .vc_toggle_icon::after {
  visibility: visible !important;
  content: "\f077" !important;
}

.vc_toggle_default.vc_toggle_active .vc_toggle_icon::before {
  display: none !important;
}

.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_icon {
  height: 2px;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-tabs-container {
  box-shadow: none;
  padding: 40px;
  margin-right: 40px !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels {
  border: none !important;
  background: transparent !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
  padding: 0;
  background: none !important;
  opacity: 0;
  visibility: hidden;
  height: auto !important;
  transition: 0.25s;
  display: none !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-body {
  opacity: 1;
  visibility: visible;
  display: block !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels .vc_toggle_content p {
  color: inherit;
  margin-bottom: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels ul {
  list-style-type: none;
  /* line-height: 17px; */
  padding-left: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab:before {
  height: 0;
  border-bottom: 9px solid transparent;
  border-top: 9px solid transparent;
  width: 0;
  display: block;
  display: none;
  position: absolute;
  content: "\f105";
  font-size: 0;
  right: -81px;
  top: 26px;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab.vc_active:before {
  opacity: 1;
  visibility: visible;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels ul li:before {
  display: inline-block;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab > a:focus, .wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab > a:hover {
  background-color: transparent;
  opacity: 0.6;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab.vc_active > a, .wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab > a {
  border-color: transparent;
  background-color: transparent;
  color: inherit;
  font-weight: bold;
  font-size: 14px;
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  line-height: 1.5;
  opacity: 1;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}

.wpb-js-composer .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tabs-list {
  background: transparent;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left {
  overflow: hidden;
  padding: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab.vc_active > a {
  opacity: 1;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tabs-list {
  overflow: visible;
  width: 100%;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-controls-align-left .vc_tta-tabs-container {
  padding: 0;
  min-width: 30%;
  border-radius: 10px;
  overflow: visible;
  margin-right: 0 !important;
  border-right: none;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab {
  display: block;
  position: relative;
  background: transparent;
  margin-left: 0;
  margin-right: 0;
  border-bottom: 1px solid #ddd;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab.vc_active a,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab.vc_active a {
  background: transparent;
  border-color: #ddd;
  border-bottom: 2px solid #ddd;
}

.wpb-js-composer .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panels-container,
.wpb-js-composer .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panels-container {
  border: 1px solid #ddd;
  padding: 100px 0;
  align-items: center;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab a,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab a {
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 96px;
  text-align: center;
  padding: 0;
  color: #1a1a1a;
  border-radius: 0 !important;
  border: 1px solid #ddd;
  border-right: 0;
  border-bottom: 2px solid transparent;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab a {
  border-right: 1px solid #ddd;
  border-left: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab a:hover,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab a:hover {
  background: #fff;
}

.aem_icon_element.icon_inline {
  display: inline-flex;
}
.aem_icon_element.icon_align_center {
  text-align: center;
}
.aem_icon_element.icon_align_left {
  text-align: left;
}
.aem_icon_element.icon_align_right {
  text-align: right;
}

.yem-icon-box {
  border-radius: 8px;
  z-index: 10;
  position: relative;
  margin-bottom: 15px;
}

.yem-icon-box .ib-badge {
  display: block;
  padding: 6px 12px;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50em;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  z-index: 10;
}

.ib-hover-2.yem-icon-box:hover .ib-badge {
  background: #fff;
}

.yem-icon-box.with-bg-img {
  background-size: cover;
}

.yem-icon-box.with-bg-img.ib-no-effect {
  padding: 60px;
}

.yem-icon-box.with-bg-img .ib-wrapper {
  padding: 60px;
}

.yem-icon-box.with-bg-img:hover .ib-wrapper {
  background: rgba(0, 0, 0, 0.15);
}

.yem-icon-box.with-border {
  margin: 0;
}

.yem-icon-box i {
  display: block;
  margin: auto;
  margin-bottom: 35px;
  font-size: 48px;
  width: 100px;
  height: 100px;
  line-height: 105px;
  border-radius: 0;
}

.yem-icon-box .ib-wrapper {
  padding: 40px;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  border-radius: 5px;
  border: none;
}

.yem-icon-box.ib-hover-1:hover {
  border-color: transparent !important;
}

.yem-icon-box.ib-hover-1:hover .ib-wrapper {
  border-bottom-width: 1px;
  box-shadow: 0 5px 70px rgba(38, 42, 76, 0.1);
  border-color: transparent !important;
}

.yem-icon-box p {
  margin-bottom: 0 !important;
}

.yem-icon-box .ib-link {
  margin-top: 20px;
  font-weight: 400;
  margin-bottom: 0 !important;
  line-height: 1;
}

.yem-icon-box.icon-default.icon-top.cont-left .ib-link,
.yem-icon-box.icon-default.icon-top.cont-center .ib-link {
  margin-top: 35px;
}

.yem-icon-box.icon-default.icon-top.cont-center .ib-icon-wrapper {
  margin: auto;
}

.yem-icon-box .ib-link a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-weight: 500;
  color: #acacac;
}

.yem-icon-box.icon-circle.icon-left .ib-link {
  margin-left: 135px;
}

.yem-icon-box .service-heading {
  margin-top: 0;
}

.yem-icon-box h6.service-heading {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

.yem-icon-box h5.service-heading,
.yem-icon-box h4.service-heading {
  margin-bottom: 15px;
}

.yem-iconbox-customimg {
  width: 100px;
  height: 100px;
  line-height: 105px;
  border-radius: 90px;
  margin: auto;
  position: relative;
  margin-bottom: 35px;
}

.icon-default .yem-iconbox-customimg {
  margin-bottom: 25px;
}

.icon-default .yem-iconbox-customimg {
  margin-bottom: 25px;
}

.yem-iconbox-customimg img {
  position: absolute;
  left: 50%;
  margin-left: -22px;
  max-width: 45px;
  top: 50%;
  margin-top: -21px;
  height: auto;
}

.icon-default {
  text-align: center;
}

.yem-icon-box.icon-top .ib-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
}

.yem-icon-box.icon-top.cont-left .ib-wrapper {
  align-items: flex-start;
}

.yem-icon-box.icon-top .ib-wrapper .ib-button-wrapper {
  margin-top: 35px;
}

.yem-icon-box.icon-top .ib-wrapper .ib-button-wrapper .yem_button {
  line-height: 45px;
  height: 45px;
}

.vc_col-sm-3 .yem-icon-box.icon-top.cont-center p {
  padding: 0;
}

.yem-icon-box.icon-top.cont-center i, .yem-icon-box.icon-top.cont-center .yem-iconbox-customimg {
  margin: 0;
}

.yem-icon-box.icon-left {
  text-align: left;
}

.yem-icon-box.icon-left.icon-default i {
  text-align: center;
  float: left;
}

.yem-icon-box.icon-left.icon-default i, .yem-icon-box.icon-left.icon-default .yem-iconbox-customimg {
  margin-top: 0px;
  line-height: 100%;
  display: inline-block;
}

.yem-icon-box.icon-left.icon-default .yem-iconbox-customimg {
  max-width: 45px;
}

.yem-icon-box.icon-left.icon-default .yem-iconbox-customimg img {
  max-width: 45px;
  margin: 0;
  position: relative;
  left: 0;
  width: 100%;
}

.yem-icon-box.icon-left.icon-default p {
  margin-bottom: 0 !important;
}

.yem-icon-box.icon-left.ib-no-effect:after {
  content: "";
  display: table;
  clear: both;
}

.yem-icon-box.cont-left {
  text-align: left;
}

.yem-icon-box.icon-left .ib-simple-icon-wrapper {
  float: left;
}

.yem-icon-box.with-shadow {
  box-shadow: 0 5px 70px rgba(38, 42, 76, 0.1);
  display: block;
}

.yem-icon-box.icon-left .ib-icon-wrapper {
  display: inline-flex;
  float: left;
}

.yem-icon-box.icon-with-border .ib-icon-wrapper {
  border-radius: 15px;
}

.ib-icon-wrapper {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullwidth-image .yem-iconbox-customimg,
.fullwidth-image .yem-iconbox-customimg img {
  max-width: 100% !important;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  border-radius: 0;
}

.container .fullwidth-image .yem-iconbox-customimg {
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.fullwidth-image .yem-iconbox-customimg + .ib-wrapper {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.ib-icon-wrapper i {
  float: none;
  margin-right: 0;
}

.yem-icon-box.cont-right {
  text-align: right;
}

.yem-icon-box.cont-left i, .yem-icon-box.cont-left .yem-iconbox-customimg {
  margin-left: 0;
}

.yem-icon-box.icon-default i, .yem-icon-box.icon-default .yem-iconbox-customimg {
  width: auto;
  height: auto;
  line-height: 1;
  margin: 0;
}

.yem-icon-box.icon-default.icon-top i, .yem-icon-box.icon-default.icon-top .yem-iconbox-customimg {
  width: auto;
}

.yem-icon-box.icon-default.icon-top .yem-iconbox-customimg img {
  max-width: 100%;
  margin-left: 0;
  position: relative;
  margin-top: 0;
  border-radius: 0;
  top: inherit;
  left: inherit;
}

.yem-icon-box.icon-default.icon-top .yem-iconbox-customimg.img_medium_size img {
  max-width: 90px;
}

.yem-icon-box.icon-default.icon-top .yem-iconbox-customimg.img_big_size img {
  max-width: 120px;
}

.small-iconbox .yem-icon-box p {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.ib-hover-2.yem-icon-box .ib-wrapper {
  border: none;
  position: relative;
  overflow: hidden;
}

.ib-hover-2.yem-icon-box .ib-wrapper * {
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  z-index: 10;
  position: relative;
}

.ib-hover-2.yem-icon-box .ib-wrapper::before {
  display: block;
  content: "";
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  background: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 90%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

.ib-hover-2.yem-icon-box:hover .ib-wrapper::before {
  opacity: 0.4;
}

.ib-hover-2.yem-icon-box:hover .ib-wrapper * {
  color: #fff !important;
}

.ib-no-effect.yem-icon-box .ib-wrapper,
.ib-no-effect.yem-icon-box:hover .ib-wrapper {
  box-shadow: none;
  border: none !important;
  background: none;
}

.yem-icon-box a p, .yem-icon-box a:hover p {
  color: #6d6d6d;
}

.yem-icon-box.icon-left.cont-left .service-heading,
.yem-icon-box.icon-left.cont-left p {
  width: calc(100% - 70px);
  float: right;
  text-align: left;
}

.vc_row.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper .yem-icon-box {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.hotspot-item {
  position: absolute;
  margin-top: -16px;
  margin-left: -16px;
  z-index: 15;
}

.hotspot-item:hover {
  z-index: 99;
}

.hotspot-wrapper {
  font-size: 15px;
  font-weight: 600;
  height: 32px;
  width: 32px;
  justify-content: center;
  display: inline-flex;
  line-height: 32px;
  background: #fff;
  border-radius: 100%;
  color: #39364e;
  align-items: center;
}

.hotspot-wrapper a {
  width: 32px;
  text-align: center;
  border-radius: 100%;
}

.hotspot-text {
  cursor: default;
}

.hotspot-wrapper i {
  color: #39364e;
}

.hotspot-wrapper i[class^=iconsmind-], .hotspot-wrapper i[class*=" iconsmind-"] {
  font-weight: bold;
}

.hotspot-wrapper i.fa, .hotspot-wrapper i.fas {
  font-size: 14px;
}

.hotspot-item.enable-pulse .hotspot-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  -webkit-transform: scale(1);
  transform: scale(1);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  pointer-events: none;
  -webkit-animation: pulse-animation 2s ease-in-out;
  animation: pulse-animation 2s ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
  border: none;
  background: #fff;
}

@-webkit-keyframes pulse-animation {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes pulse-animation {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
.hotspot-item .hotspot-tooltip {
  position: absolute;
  max-width: 270px;
  background-color: white;
  padding: 25px;
  padding-bottom: 5px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(38, 42, 76, 0.2);
  width: -webkit-fill-available;
  transition: transform 0.8s, opacity 0.8s, visibility 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 15px);
  left: 16px;
  width: max-content;
}

.hotspot-item:hover .hotspot-tooltip {
  opacity: 1;
  border-radius: 5px;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hotspot-tooltip h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: inherit;
  font-family: inherit;
  margin-bottom: 15px;
}

.hotspot-tooltip p {
  margin-bottom: 20px;
}

.tooltip-text-center {
  text-align: center;
}

.tooltip-top .hotspot-tooltip {
  bottom: 100%;
  margin-bottom: 20px;
}

.tooltip-bottom .hotspot-tooltip {
  top: 52px;
}

.hotspot-item.tooltip-right .hotspot-tooltip {
  left: 32px;
  top: 16px;
  transform: translate(0, -50%);
}

.hotspot-item.tooltip-right:hover .hotspot-tooltip {
  transform: translate(15px, -50%);
}

.hotspot-item.tooltip-left .hotspot-tooltip {
  right: 32px;
  left: auto;
  top: 16px;
  transform: translate(0, -50%);
}

.hotspot-item.tooltip-left:hover .hotspot-tooltip {
  transform: translate(-15px, -50%);
}

.vc_row .vc_toggle {
  display: block;
  font-size: 1em;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 8px;
  line-height: 1.3em;
  -moz-transition: 0.2s !important;
  -ms-transition: 0.2s !important;
  transition: 0.2s !important;
  background: #fff;
  border: 1px solid #e7e7e7;
  z-index: 10;
  position: relative;
}

.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title {
  padding-left: 0;
  padding: 25px 35px;
}

.vc_row .vc_toggle.vc_toggle_default.vc_toggle_active .vc_toggle_title:after,
.vc_row .vc_toggle_size_md.vc_toggle_default.vc_toggle_active .vc_toggle_title:after {
  content: "\f106";
}

.vc_row .vc_toggle_default .vc_toggle_icon,
.vc_row .vc_toggle_default .vc_toggle_icon::after,
.vc_row .vc_toggle_default .vc_toggle_icon::before {
  border: none !important;
}

.vc_row .vc_toggle_default .vc_toggle_icon::before {
  display: none !important;
}

.vc_toggle_default.vc_toggle_active .vc_toggle_icon::before {
  display: none !important;
}

.vc_row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title .vc_toggle_icon {
  display: none;
  right: 20px;
  left: auto;
  background: none;
  transform: none !important;
  border: none !important;
  width: auto;
  height: auto;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-tabs-container {
  box-shadow: none;
  padding: 40px;
  margin-right: 40px !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels {
  border: none !important;
  background: transparent !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
  padding: 0;
  background: none !important;
  opacity: 0;
  visibility: hidden;
  height: auto !important;
  transition: 0.25s;
  display: none !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-body {
  opacity: 1;
  visibility: visible;
  display: block !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels .vc_toggle_content p {
  color: inherit;
  margin-bottom: 10px;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels ul {
  list-style-type: none;
  /* line-height: 17px; */
  padding-left: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab:before {
  height: 0;
  border-bottom: 9px solid transparent;
  border-top: 9px solid transparent;
  width: 0;
  display: block;
  display: none;
  position: absolute;
  content: "\f105";
  font-size: 0;
  right: -81px;
  top: 26px;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab.vc_active:before {
  opacity: 1;
  visibility: visible;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs .vc_tta-panels ul li:before {
  display: inline-block;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab > a:focus, .wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab > a:hover {
  background-color: transparent;
  opacity: 0.6;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab.vc_active > a, .wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab > a {
  border-color: transparent;
  background-color: transparent;
  color: inherit;
  font-weight: bold;
  font-size: 14px;
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  line-height: 1.5;
  opacity: 1;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}

.wpb-js-composer .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tabs-list {
  background: transparent;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left {
  overflow: hidden;
  padding: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab.vc_active > a {
  opacity: 1;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tabs-list {
  overflow: visible;
  width: 100%;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-controls-align-left .vc_tta-tabs-container {
  padding: 0;
  min-width: 30%;
  border-radius: 10px;
  overflow: visible;
  margin-right: 0 !important;
  border-right: none;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab {
  display: block;
  position: relative;
  background: transparent;
  margin-left: 0;
  margin-right: 0;
  border-bottom: 1px solid #ddd;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab.vc_active a,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab.vc_active a {
  background: transparent;
  border-color: #ddd;
  border-bottom: 2px solid #ddd;
}

.wpb-js-composer .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panels-container,
.wpb-js-composer .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panels-container {
  border: 1px solid #ddd;
  padding: 100px 0;
  align-items: center;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab a,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab a {
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 96px;
  text-align: center;
  padding: 0;
  color: #1a1a1a;
  border-radius: 0 !important;
  border: 1px solid #ddd;
  border-right: 0;
  border-bottom: 2px solid transparent;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab a {
  border-right: 1px solid #ddd;
  border-left: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tab a:hover,
.wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab a:hover {
  background: #fff;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top {
  position: relative;
  border-radius: 10px;
  box-shadow: none;
  z-index: 2;
}

.wpb-js-composer .vc_row[data-vc-full-width=true] .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top {
  margin: 0 -15px;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container {
  margin: 0;
  padding: 0;
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
  background: transparent;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list {
  border: none;
  box-shadow: none;
  flex-direction: row;
  overflow: visible;
  text-align: center;
  justify-content: center;
  display: flex;
  max-width: 1210px;
  margin: auto;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li {
  text-align: center;
  font-weight: 500;
  background: none;
  position: relative;
  border: none;
  margin: 0;
}

.wpb-js-composer .vc_tta-panels-container .vc_tta-panel-title a,
.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
  border: beige;
  border-right: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 76px;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.01em;
  opacity: 1;
  padding: 0 35px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #777;
  border: none;
  position: relative;
}

.wpb-js-composer .vc_tta.vc_tta-spacing-1 .vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta.vc_tta-spacing-1 .vc_tta-panel:not(:last-child) .vc_tta-panel-heading {
  border-radius: 0;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li a:hover {
  opacity: 1;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li:last-child a {
  border: none;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-grey.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 1210px;
  margin: 0 auto !important;
  overflow: visible !important;
  padding: 15px;
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-tabs-position-top .vc_tta-panel-body {
  height: auto !important;
}

.wpb-js-composer .vc_tta-container .vc_tta-color-grey.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body .kd-animated {
  opacity: 1;
}

.vc_tta-panels .vc_tta-panel {
  background: transparent;
}

.vc_tta-panels .vc_tta-panel.medium-section {
  background: #f5f5f5;
}

.vc_tta-panels .vc_tta-panel.dark-section {
  background: #212240;
}

.vc_tta-panels .vc_tta-panel.image-section {
  background: url("../img/section-bg.jpg");
  background-size: cover;
  background-position: center;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li.vc_active a {
  color: #fff;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li.vc_active a {
  border-bottom: none;
  color: #777;
  opacity: 1;
}

.feature-sections-wrapper .feature-sections-tabs .nav-tabs a:before,
.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li a:before {
  content: "";
  width: 0px;
  transition: 0.2s all ease;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  display: block;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: inherit;
  bottom: -1px;
}

.feature-sections-wrapper .feature-sections-tabs .nav-tabs .active a:before,
.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li.vc_active a:before {
  width: 100px;
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-tabs-position-top .vc_tta-icon.vc_li {
  color: inherit;
  font-size: 18px;
}

.wpb-js-composer .vc_tta-container {
  margin-bottom: 0px !important;
}

.wpb_wrapper .es-accordion:last-child {
  border: none;
}

.wpb-js-composer .es-accordion {
  border-bottom: 1px solid #e5e7f2;
  margin: 0 -15px;
  padding: 0 15px;
}

.wpb-js-composer .es-accordion .es-time {
  display: inline-block;
  font-size: 17px;
  line-height: 35px;
  font-weight: 500;
  min-width: 190px;
}

.wpb-js-composer .es-accordion .es-heading {
  position: relative;
  padding: 21px 0;
}

.wpb-js-composer .es-accordion .es-heading h4 {
  display: inline-block;
  margin-top: 0;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 30px;
}

.wpb-js-composer .es-accordion .es-heading h4 a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li:before {
  height: 0;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  width: 0;
  display: block;
  position: absolute;
  content: "\f105";
  font-size: 0;
  bottom: -9px;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  left: 50%;
  margin-left: -5px;
  visibility: visible;
  display: none;
}

.wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list li.vc_active:before {
  opacity: 1;
  display: none;
}

.vc_tta-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
  border: 0;
  background-color: transparent;
}
.vc_tta-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: transparent !important;
}
.vc_tta-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
  line-height: 1;
  font-weight: 700;
  text-align: left;
  padding: 25px 35px;
}
.vc_tta-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon {
  font-size: 15px;
}
.vc_tta-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:before {
  border-color: #39364e;
  bottom: 4px;
}
.vc_tta-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_tta-controls-icon-position-right .vc_tta-controls-icon {
  right: 40px;
}
.vc_tta-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
  border: 0;
  background-color: transparent !important;
  padding: 0;
}

.case-studies-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.case-studies-list .case-study-item {
  flex: 0 0 25%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .case-studies-list .case-study-item {
    flex: 0 0 50%;
  }
}
@media (max-width: 480px) {
  .case-studies-list .case-study-item {
    flex: 0 0 100%;
  }
}
.case-studies-list .case-study-item .cs-thumb a {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
  position: relative;
}
.case-studies-list .case-study-item .cs-thumb a img {
  max-width: none;
  height: auto;
  display: block;
  position: absolute;
  width: 120%;
  left: -20%;
  top: -20%;
}
.case-studies-list .case-study-item .cs-meta {
  margin-top: 1rem;
}
.case-studies-list .case-study-item .cs-meta .cs-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.case-studies-pagination {
  margin-top: 30px;
  text-align: center;
}

.case-studies-pagination .page-numbers {
  display: flex;
  justify-content: center;
  padding: 5px 10px;
  margin: 0 2px;
  text-decoration: none;
  list-style: none;
}

.case-studies-pagination .page-numbers.current {
  background-color: purple;
  color: white;
  border-color: #007bff;
}

.case-studies-list.loading {
  opacity: 0.5;
  pointer-events: none;
}

.mg-sizer, .mg-single-img.small-masonry-img {
  width: calc(33.3333% - 30px);
  height: auto;
  margin-bottom: 30px;
}

.four-columns .mg-sizer, .four-columns .mg-single-img.small-masonry-img {
  width: calc(25% - 30px);
}

.five-columns .mg-sizer, .five-columns .mg-single-img.small-masonry-img {
  width: calc(20% - 30px);
}

.mg-single-img.big-masonry-img {
  width: calc(66.6667% - 30px);
  height: auto;
  margin-bottom: 30px;
}

.four-columns .mg-single-img.big-masonry-img {
  width: calc(50% - 30px);
}

.five-columns .mg-single-img.big-masonry-img {
  width: calc(40% - 30px);
}

.mg-single-img img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  border: none;
  transition: 0.2s ease;
}

.mg-single-img {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.mg-single-img a {
  display: block;
}

.mg-single-img a:hover img {
  z-index: 10;
  position: relative;
  transition: 0.2s ease;
  box-shadow: 0 10px 35px rgba(38, 41, 77, 0.1);
  border: 1px solid #e7e7e7;
  padding: 10px;
  cursor: zoom-in;
}

.yem-reviews {
  background-color: white;
  padding: 50px 40px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  text-align: left;
  overflow: hidden;
  border-radius: 7px;
  padding-bottom: 45px;
  box-shadow: 0 2px 8px rgba(38, 42, 76, 0.2);
  display: inline-block;
  width: -webkit-fill-available;
}

.yem-reviews.single-review-box {
  margin: 15px;
}

.rw_message {
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
  margin-bottom: 0;
}

.rw_img_wrapper {
  width: 75px;
}

.yem-reviews .rw_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: inherit;
  font-family: inherit;
}

.rw-author-details h4 {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  margin: 0;
  text-align: center;
}

#single-page .rw-author-details p,
.rw-author-details p {
  text-align: left;
  font-weight: 400;
  color: #acacac;
  margin-bottom: 0;
}

.rw-authorimg {
  display: block;
  float: left;
  max-width: 60px;
  max-height: 100%;
  margin-right: 15px;
}

.rw-authorimg img {
  float: left;
  height: auto;
  border-radius: 100% !important;
  margin-bottom: 20px;
}

.rw-author-details {
  vertical-align: top;
  text-align: left;
  margin-bottom: 0;
  min-height: 60px;
  margin-bottom: 20px;
}

.container .rw-author-details h5 {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.2;
  font-weight: 500;
  padding-top: 8px;
}

.rw_header {
  height: 60px;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.rw-link {
  padding-top: 16px;
}

.rw-link a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-weight: 600;
}

.rw_rating {
  text-align: left;
  margin-top: 0;
  padding-top: 25px;
}

.rw_rating .yem-empty-star,
.rw_rating .yem-full-star {
  font-size: 15px;
  margin-right: 5px;
  color: #fb690c;
}

.rw_rating .rating_intro {
  color: #fb690c;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  margin-right: 8px;
  display: inline-block;
}

.rw-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.review-carousel .owl-wrapper-outer {
  margin-bottom: 0px;
  overflow: hidden;
  padding: 50px 0;
}

.review-carousel .owl-item {
  padding: 0 15px;
}

.review-carousel {
  text-align: center;
  position: relative;
}

.with-overlay .review-carousel .owl-dot span {
  background: #fff;
}

.review-carousel .owl-carousel .owl-item {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}

.review-carousel .owl-carousel .owl-item.active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}

.review-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  height: 40px;
  z-index: 10;
  width: 100%;
  margin-top: -45px;
  overflow: visible;
  pointer-events: none;
}
.review-carousel .owl-nav div.owl-prev {
  left: -85px;
}
@media (max-width: 991px) {
  .review-carousel .owl-nav div.owl-prev {
    left: -5px;
  }
}
.review-carousel .owl-nav div.owl-next {
  right: -85px;
}
@media (max-width: 991px) {
  .review-carousel .owl-nav div.owl-next {
    right: -5px;
  }
}

.yem-review-grid {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}
.yem-review-grid.display_grid_normal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.yem-review-grid.yem_rg_col_1 .review-item {
  width: 100%;
}
.yem-review-grid.yem_rg_col_2 .review-item {
  width: 50%;
}
.yem-review-grid.yem_rg_col_3 .review-item {
  width: 33.3333333333%;
}
.yem-review-grid.yem_rg_col_4 .review-item {
  width: 25%;
}
@media (max-width: 767px) {
  .yem-review-grid[class*=yem_rg_col_] .review-item {
    width: 100%;
  }
}
.yem-review-grid .stamp {
  position: absolute;
}
@media (max-width: 767px) {
  .yem-review-grid .stamp {
    display: none;
  }
}
.yem-review-grid .stamp1 {
  right: 25%;
  width: 75%;
  top: 0;
  height: 50px;
}
.yem-review-grid .stamp2 {
  left: 25%;
  width: 25%;
  height: 100px;
}
.yem-review-grid .review-item {
  width: 25%;
  padding: 15px;
}
@media (max-width: 767px) {
  .yem-review-grid .review-item {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .yem-review-grid .review-item {
    width: 50%;
  }
}
.yem-review-grid .review-item .review-item-inner {
  background: #fff;
  padding: 15px;
}
.yem-review-grid .review-item .review-item-inner .review-stars {
  margin-bottom: 5px;
}
.yem-review-grid .review-item .review-item-inner .review-stars span {
  font-size: 24px;
  color: #ffc94e;
}
.yem-review-grid .review-item .review-item-inner .review-source {
  margin-bottom: 25px;
}
.yem-review-grid .review-item .review-item-inner .review-meta {
  border-top: 1px solid #eee;
  margin-top: 15px;
  padding-top: 10px;
  display: flex;
  align-items: center;
}
.yem-review-grid .review-item .review-item-inner .review-meta .review-author {
  flex: 1;
  font-weight: 700;
  color: #a1345b;
}
.yem-review-grid .review-item .review-item-inner .review-meta .review-date {
  text-align: right;
  flex: 1;
  color: #7c7c7c;
}

.logos-carousel {
  text-align: center;
  width: 100%;
  top: 0;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
}
.logos-carousel.opacity-effect .logos-content img {
  opacity: 1;
}
.logos-carousel.opacity-effect .logos-content img:hover {
  opacity: 0.65;
}
.logos-carousel .owl-wrapper-outer {
  width: calc(100% - 2px);
  padding: 10px 0;
  overflow: hidden;
}
.logos-carousel .owl-wrapper {
  align-items: center;
  display: flex;
}
.logos-carousel .logos-content {
  margin: 0;
}
.logos-carousel .logos-content img {
  display: block;
  margin: auto;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  width: auto;
  max-width: 100%;
  height: auto;
  cursor: pointer;
}
.logos-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  height: 40px;
  z-index: 10;
  width: 100%;
  margin-top: -25px;
  overflow: visible;
  pointer-events: none;
}
.logos-carousel .owl-nav div.owl-prev {
  left: -85px;
}
.logos-carousel .owl-nav div.owl-next {
  right: -85px;
}

.logos-carousel.max-img-10 .logos-content img {
  max-width: 10%;
}
.logos-carousel.max-img-20 .logos-content img {
  max-width: 20%;
}
.logos-carousel.max-img-30 .logos-content img {
  max-width: 30%;
}
.logos-carousel.max-img-40 .logos-content img {
  max-width: 40%;
}
.logos-carousel.max-img-50 .logos-content img {
  max-width: 50%;
}
.logos-carousel.max-img-60 .logos-content img {
  max-width: 60%;
}
.logos-carousel.max-img-70 .logos-content img {
  max-width: 70%;
}
.logos-carousel.max-img-80 .logos-content img {
  max-width: 80%;
}
.logos-carousel.max-img-90 .logos-content img {
  max-width: 90%;
}
.logos-carousel.max-img-100 .logos-content img {
  max-width: 100%;
}

.logos-carousel.slider.opacity-effect .clients-content img {
  opacity: 1;
}

.logos-carousel.slider.opacity-effect .clients-content img:hover {
  opacity: 0.65;
}

.logos-carousel.slider.grayscale-effect .clients-content img {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  opacity: 1;
}

.logos-carousel.slider.lift-effect .owl-item img {
  -webkit-transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
}

.logos-carousel.slider.lift-effect .owl-item img:hover {
  transform: translateY(-10px);
}

.logos-carousel.slider.zoomin-effect .clients-content img {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.logos-carousel.slider.zoomin-effect .clients-content img:hover {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.pricing-table {
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  border: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  .pricing-table {
    margin-bottom: 25px;
  }
}

.pricing-table.MinimalStyle {
  box-shadow: 0 20px 70px rgba(38, 42, 76, 0.05);
  background: #fff;
}

.pricing-table .pricing-img {
  width: 100%;
  text-align: center;
  padding-top: 35px;
  margin-bottom: -20px;
}

.pricing-table .pricing-img i {
  font-size: 48px;
  margin: auto;
  float: none;
}

.pricing-table.active {
  box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.1);
}

.pricing-table.MinimalStyle .pricing-title {
  padding-top: 45px;
}

.pricing-meta {
  padding-bottom: 0;
  margin-bottom: 0;
  display: inline-block;
  margin-top: 0;
  line-height: 1;
}

.pricing-table.DetailedStyle .pricing-meta {
  opacity: 1;
}

.pricing-table .yem_button {
  background: transparent;
}

.pricing-table .yem_button:hover,
.pricing-table.active .yem_button,
.pricing-table .pricing-table-secondary-link {
  color: #fff;
}

.pricing-table .pricing-table-secondary-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
}

.pricing-table.MinimalStyle .pricing-options-container {
  background: rgba(0, 0, 0, 0.07);
}

.pricing-table.active.MinimalStyle .pricing-options-container {
  background: rgba(0, 0, 0, 0.2);
}

.pricing-table.active.MinimalStyle.has-bg-color .pricing .pricing-subtitle,
.pricing-table.active.MinimalStyle.has-bg-color .pricing-time {
  opacity: 1;
}

.pricing-wrapper .pricing {
  overflow: hidden;
  position: relative;
  border-top: none;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 24px;
  padding-bottom: 45px;
}

.pricing-wrapper .pricing.active {
  opacity: 0.85;
  border-top: 0;
}

.pricing-title {
  text-align: center;
  color: inherit;
  font-size: 30px;
  padding: 10px 0 0 0;
}
.pricing-title .pricing-title-subtitle {
  font-size: 18px;
}

.pricing-table.light-scheme .pricing-title {
  background: #fafafa;
}

.pricing-title .other-text {
  font-weight: bold;
  margin-top: 0px;
  color: inherit;
  font-size: initial;
  text-transform: capitalize;
}

.pricing .pricing-row {
  padding: 5px 0;
  float: left;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  position: relative;
}

.pricing .pricing-row:last-child {
  border-bottom: 0;
}

.pricing .pricing-row.selected {
  background-color: whitesmoke;
  font-weight: bold;
  color: #666;
  font-size: 14px;
  padding-top: 13px;
  margin-top: 10px;
  margin-bottom: -13px;
  padding-bottom: 13px;
}

.pricing.active .pricing-row.selected {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pricing .col-lg-3 {
  display: block;
  width: 100% !important;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(181, 181, 181, 0.3);
}

.pricing .pricing-subtitle {
  display: block;
  font-size: 18px;
  padding: 0 30px;
}

.pricing .pricing-subtitle-subtitle {
  font-weight: 800;
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 20px;
  display: block;
}

.pricing .pricing-price.sale-yes .pt-normal-price {
  position: relative;
  margin-right: 10px;
  font-size: 0.8em;
  vertical-align: initial;
}

.pricing .pricing-price.sale-yes .pt-normal-price:after {
  top: 50%;
  background: #777af2;
  opacity: 0.8;
  content: "";
  width: 110%;
  position: absolute;
  height: 0.12em;
  border-radius: 30px;
  left: -10%;
  white-space: nowrap;
  display: block;
  transform: rotate(-15deg);
}

.pricing .col-lg-3 .row {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing.active .col-lg-3 {
  color: #fff;
}

.pricing .pricing-price {
  display: inline-block;
  font-size: 43px;
  font-weight: 400;
  width: auto;
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.pricing .pricing-price .price-pre-text {
  font-size: 24px;
  position: relative;
  bottom: 20px;
  margin-right: 3px;
}

.pricing.secondary-price .pricing-time.default-plan,
.pricing.secondary-price .pricing-price.default-plan,
.pricing.secondary-price .pricing-option-text.default-plan,
.pricing .pricing-time.secondary-plan,
.pricing .pricing-price.secondary-plan,
.pricing .pricing-option-text.secondary-plan {
  display: none;
}

.pricing.secondary-price .pricing-time.secondary-plan,
.pricing.secondary-price .pricing-price.secondary-plan {
  display: block;
}

.pricing.secondary-price .pricing-option-text.secondary-plan {
  display: inherit;
  display: contents;
}

.pricing .pricing-time {
  font-family: inherit;
  text-align: center;
  margin-bottom: 0;
  font-size: 20px;
  color: #cccccc;
  /* font-weight: 500; */
}

.pricing .iconita {
  font-size: 48px;
  height: 52px;
}

.pricing .pricing-option {
  font-weight: inherit;
  font-size: 17px;
  font-weight: 500;
  display: flex;
}

.pricing .DetailedStyle .pricing-option strong,
.pricing .DetailedStyle .pricing-option {
  font-weight: 700;
}

.pricing .pricing-option-text span {
  font-weight: 400;
  color: #696969;
}

.pricing .pricing-row.selected .pricing-option {
  font-size: 14px;
}

.pricing.active .pricing-option {
  color: #fff;
}

.pricing .pricing-row.selected .fa {
  font-size: 13px;
  top: 0;
}

.pricing .pricing-row i {
  position: relative;
  margin-right: 0;
  font-size: 14px;
  line-height: 20px;
  color: #00d664;
  margin-right: 20px;
}

.pricing .DetailedStyle .pricing-row i {
  margin-right: 10px;
}

.pricing .fa-check {
  line-height: 20px;
}

.pricing .pricing-row .pricing-opt-x-icon i {
  color: #ff3366;
}

.pricing.active .fa {
  color: #fff;
}

.pricing .currency {
  margin-right: 0;
}

.pricing .billing-time {
  color: #b3b3b3;
  font-size: 14px;
  line-height: 14px;
  margin-top: 8px;
}

.pricing.active .billing-time {
  color: #fff;
}

.pricing .secondary-button {
  background: transparent;
}

.pricing-table.active .yem_button:hover, .pricing-table .yem_button:hover {
  background: transparent;
}

.pricing-table.transparent-scheme {
  background: transparent !important;
}

.pricing-options-container {
  float: left;
  margin-bottom: 45px;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(181, 181, 181, 0.3);
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.pricing-options-container.MinimalStyle {
  padding-left: 60px;
  padding-right: 60px;
}

.pricing .pricing-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.pricing-table.DetailedStyle.active .pricing-options-container {
  padding-top: 45px;
  margin-bottom: 55px;
  padding-bottom: 45px;
}

.pricing .pricing-list-title {
  line-height: 25px;
  max-width: 90%;
  margin: auto;
  float: none;
}

.pricing .yem_button {
  margin-bottom: 0;
  margin-top: 0;
  display: flex;
  width: max-content;
}

.pricing-table.DetailedStyle {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  background: #fff;
  z-index: 9;
  position: relative;
  box-shadow: 0 20px 70px rgba(38, 42, 76, 0.05);
}

.pricing-table.DetailedStyle.active .pricing .col-lg-3 {
  padding-bottom: 45px;
  padding-top: 5px;
}

.pricing-table.DetailedStyle .pricing-title {
  padding-top: 0;
}

.pricing-table.DetailedStyle.active {
  background: #fff;
  z-index: 10;
  position: relative;
  border: none;
  margin: -30px -40px;
  padding-bottom: 15px;
  box-shadow: 0 20px 70px rgba(38, 42, 76, 0.15);
}

.pricing-table.DetailedStyle.active .pricing {
  padding-top: 39px;
}

.pricing-table.DetailedStyle .pricing-title {
  font-size: 28px;
}

.pricing-table.DetailedStyle .pricing .pricing-price {
  font-size: 38px;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.pricing-table.DetailedStyle .pricing-title .pricing-title-content {
  padding: 0 40px;
  line-height: 70px;
  font-size: 22px;
  font-weight: 400;
  background: #e7e7e7;
}

.pricing-table.DetailedStyle.active .pricing-title .pricing-title-content {
  color: #fff;
}

.pricing-table.DetailedStyle .pricing .currency {
  margin-right: 3px;
  top: 0;
  color: inherit !important;
}

.pricing-table.DetailedStyle .pricing {
  padding-top: 35px;
  padding-left: 0;
  padding-right: 0;
}

.pricing-options-container.DetailedStyle {
  text-align: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

.pricing-options-container.DetailedStyle .pricing-row:last-child {
  border-bottom: none;
}

.pricing-options-container.DetailedStyle .pricing-row .fa {
  display: none;
  margin-right: 10px;
}

.container .pricing-title-content {
  margin-bottom: 0;
  font-size: 30px;
}

.pricing-options-container .pricing-tooltip-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  position: absolute;
  background-color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 30px;
  font-family: inherit;
  width: auto;
  display: block;
  right: 10px;
  top: 42px;
  border-radius: 0;
  -webkit-box-shadow: 0 20px 70px rgba(38, 42, 76, 0.1);
  -moz-box-shadow: 0 20px 70px rgba(38, 42, 76, 0.1);
  box-shadow: 0 20px 70px rgba(38, 42, 76, 0.1);
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  width: 300px;
  z-index: 100;
  font-weight: 500;
  left: 50%;
  margin-left: -150px;
  pointer-events: none;
}

#single-page p.pricing-option-tooltip {
  margin-bottom: 0;
}

.pricing-options-container .pricing-option-text.with-tooltip {
  cursor: pointer;
  border-bottom: 2px dotted #a7a7a7;
}

.pricing-options-container .pricing-option:hover .pricing-tooltip-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.vc_row.vc_row-o-equal-height .pricing-wrapper, .vc_row.vc_row-o-equal-height .pricing-wrapper .pricing-table {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-container {
  position: relative;
  min-height: 120px;
  z-index: 10;
}

.video-container a {
  display: block;
  cursor: pointer;
  margin: auto;
}

.video-container img {
  margin: auto;
  display: block;
  height: auto;
  width: 100%;
  max-width: 1210px;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border-radius: 0px;
  /*box-shadow: 0 5px 70px rgba(38, 42, 76, 0.1);*/
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.video-container.yt-short img {
  max-width: 400px;
  width: auto;
}

.video-container.no-shadow img {
  box-shadow: none;
}

.video-container.cover-image-leaf img {
  border-radius: 60px 0;
}

.video-container.cover-image-circle img {
  border-radius: 100%;
}

.play-video {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -60px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  transition: 0.2s ease-out !important;
  margin-top: -60px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  box-sizing: border-box;
  width: 120px;
  height: 120px;
  box-shadow: 0 15px 30px rgba(55, 126, 249, 0.15);
}

.tp-bullet-title {
  display: none !important;
}

.play-video.dark-style {
  background: #1f1f1f;
  box-shadow: 0 0 0 15px rgba(31, 31, 31, 0.4);
}

.play-video.dark-style .fa-play {
  color: #fff;
}

.play-video {
  border: 60px solid rgba(255, 255, 255, 0.9) !important;
}

.play-video:hover {
  border: 4px solid rgba(255, 255, 255, 0.9) !important;
  transform: scale(0.9);
}

.play-video .yem-play {
  font-size: 23px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.2s ease-out !important;
  transform: translate3d(-50%, -50%, 0);
  margin-left: 0;
}

.play-video:hover .yem-play {
  color: #fff;
}

#video .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.video-social-text {
  display: none;
}

.share-icon {
  -webkit-transition: 250ms ease-in;
  -moz-transition: 250ms ease-in;
  -ms-transition: 250ms ease-in;
  -o-transition: 250ms ease-in;
  transition: 250ms ease-in;
  display: block;
  width: 14px;
  height: 16px;
  background: url(../img/share.png) no-repeat;
  margin: 0;
  margin-bottom: 50px;
}

.video-modal {
  padding: 0 !important;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 9999 !important;
  background: rgba(183, 187, 197, 0);
}

.video-modal.in {
  background: rgba(183, 187, 197, 0.7);
}

.vc_tta-panels .video-modal.in {
  background: none;
}

.video-modal iframe {
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow: 0 0px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  max-width: 100%;
  margin: 0;
}

.video-modal .modal-content {
  padding: 0;
  border: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  border-radius: 0;
  text-align: center;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: 0 0;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  transform: translate(-50%, -50%) !important;
  max-width: 100%;
  width: auto;
}
@media (max-width: 767px) {
  .video-modal .modal-content {
    width: 100%;
  }
}
.video-modal .modal-content.yt-short {
  max-width: 25.125rem;
  width: 100%;
}

.video-modal .modal-content .close {
  position: absolute;
  background-color: #fff;
  right: -35px;
  top: -35px;
  z-index: 999;
  border-radius: 90px;
  height: 30px;
  width: 30px;
  outline: none;
  font-size: 20px;
  text-shadow: none;
  opacity: 1;
  color: #1f1f1f;
  text-align: center;
  transition: 0.25s;
  font-weight: bold;
  font-family: arial;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-modal .modal-content .close span {
  margin-top: -1px;
}

.video-modal .modal-content .close:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .video-modal .modal-content .close {
    top: 15px;
    right: 15px;
  }

  .video-modal .video-modal-local {
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
.video-modal.in .modal-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.play-button-left .play-video {
  margin-left: 0px !important;
  left: 0;
  margin-top: 0 !important;
  top: 0 !important;
}

.video-container.small-video-btn {
  min-height: 80px;
  min-width: 80px;
}

.video-container.small-video-btn .play-video {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  border: 40px solid rgba(255, 255, 255, 0.9) !important;
}

.video-container.small-video-btn .play-video .fa-play {
  width: 10px;
  height: 18px;
  font-size: 20px;
}

.video-container.small-video-btn a:not(.play-btn-hover-primary-color) .play-video:hover {
  border: 4px solid #fff !important;
}

.big-video-btn {
  min-width: 120px;
}

.play-button-left {
  display: inline-flex;
  margin-right: 20px;
}

.play-btn-hover-primary-color .play-video {
  border-width: 60px !important;
}

.yt-short-embed {
  margin-bottom: 2.5rem;
}
.yt-short-embed.rounded .embed-responsive {
  border-radius: 15px;
  overflow: hidden;
}
.yt-short-embed.drop-shadow .embed-responsive {
  box-shadow: 7px 7px 40px rgba(0, 0, 0, 0.7);
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive:before {
  display: block;
  content: "";
}
.embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-9by16 {
  max-width: 25.125rem;
  margin: 0 auto;
}
.embed-responsive-9by16:before {
  padding-top: 177.5%;
}

.team-carousel .owl-carousel[data-vc-items="3"] .owl-item {
  padding: 0 15px;
}

.team-carousel {
  text-align: center;
  position: relative;
}

.with-overlay .team-carousel .owl-dot span {
  background: #fff;
}

.team-carousel .owl-carousel .owl-item {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}

.team-carousel .owl-carousel .owl-item.active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}

.team-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  height: 40px;
  z-index: 10;
  width: 100%;
  margin-top: -45px;
  overflow: visible;
  pointer-events: none;
}
.team-carousel .owl-nav div.owl-prev {
  left: -85px;
}
.team-carousel .owl-nav div.owl-next {
  right: -85px;
}

.team-member {
  text-align: center;
  position: relative;
  margin: 15px 0;
  border-radius: 5px;
}

.team-image {
  width: auto;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.team-member.design-classic .team-image img {
  margin: 0 auto;
  border: none;
  height: auto;
  width: 100%;
  display: block;
  margin-right: 0;
  padding-bottom: 0;
  border-radius: 5px;
  margin: auto;
  margin-top: 15px;
  max-width: calc(100% - 30px);
}

.team-content {
  padding: 0;
  position: relative;
  z-index: 100;
  margin-top: 0;
  margin-bottom: 0;
}

.team-member-down .team-content {
  margin-top: 0;
  margin-bottom: -50px;
}

.team-content h5 {
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
}

.team-content .team-subtitle {
  margin-bottom: 20px;
  display: block;
  font-style: normal;
  color: inherit;
}

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

.team-link a {
  font-weight: 600;
}

.team-content-hover {
  z-index: 100;
  width: auto;
  margin-left: 0;
  text-align: left;
  display: block;
  padding: 35px;
  float: right;
  opacity: 1;
  max-width: 335px;
  padding-left: 0;
}

.team-content-hover p {
  font-weight: inherit;
  position: relative;
}

.team-content-hover .gradient-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4d000000", endColorstr="#00000000", GradientType=0);
}

.team-content .team-content-hover h5 {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

.team-content .team-content-hover .team-subtitle {
  position: relative;
  opacity: 0.6;
  line-height: 1;
}

.team-socials {
  position: relative;
  margin: auto;
  margin-top: 20px;
  width: 100%;
  z-index: 101;
  text-align: left;
  line-height: 1;
}

.team-socials a {
  color: inherit;
  opacity: 0.7;
}

.team-socials a:hover {
  opacity: 1;
}

.team-socials .fab, .team-socials .fa {
  color: inherit;
  margin: 0 20px 0 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.team-socials .fab:hover, .team-socials .fa:hover {
  opacity: 1;
}

.email-wrapper,
.phone-wrapper {
  font-weight: bold;
  color: #fff;
  position: absolute;
  cursor: pointer;
  bottom: 41px;
  height: 36px;
  padding-right: 15px;
  display: inline-block;
  white-space: nowrap;
  line-height: 36px;
  width: auto;
  left: 100%;
  -webkit-transform: translateX(-36px);
  -moz-transform: translateX(-36px);
  transform: translateX(-36px);
  -webkit-transition: transform 0.25s ease;
  -moz-transition: transform 0.25s ease;
  transition: transform 0.25s ease;
}

.phone-wrapper .team-phone,
.email-wrapper .team-email {
  padding-left: 5px;
}

.email-wrapper {
  bottom: 0;
}

.design-classic .email-wrapper {
  top: 41px;
}

.design-classic .phone-wrapper {
  top: 0;
}

.email-wrapper:hover,
.phone-wrapper:hover {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.email-wrapper .iconsmind-Mail,
.phone-wrapper .iconsmind-Telephone {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0;
  font-size: 18px;
  text-align: center;
  line-height: 36px;
}

.team-member.design-creative .team-image {
  -webkit-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
}

.team-member.design-classic {
  border: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(38, 42, 76, 0.1);
  border: 1px solid #e7e7e7;
  background: #fff;
}

.four-elem-team .team-member.design-classic {
  margin-left: 10px;
  margin-right: 10px;
}

.team-member.design-classic .team-content p {
  color: inherit;
  margin-bottom: 20px;
  text-align: center;
}

.team-member.design-classic .team-socials {
  position: relative;
  margin: auto;
  width: 100%;
  background: none;
  padding: 0;
  border-radius: 0;
  max-width: 100%;
  text-align: left;
  margin-bottom: 0;
  line-height: 1;
  color: inherit;
  z-index: 10;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
}

.team-member.design-classic .kd-team-contact {
  z-index: 10;
  position: relative;
  width: 100%;
  display: flex;
}

.team-member.design-classic .kd-team-contact .kd-team-email,
.team-member.design-classic .kd-team-contact .kd-team-phone {
  position: relative;
  display: block;
  padding: 0;
  color: inherit;
  transition: 1s cubic-bezier(0.25, 1, 0.2, 1);
  opacity: 1;
  width: 50%;
  text-align: center;
}

.vc_col-sm-3 .team-member.design-classic .kd-team-contact {
  flex-direction: column;
}

.vc_col-sm-3 .team-member.design-classic .kd-team-contact .kd-team-email,
.vc_col-sm-3 .team-member.design-classic .kd-team-contact .kd-team-phone {
  width: 100%;
  max-width: 100%;
  margin-bottom: 5px;
}

.team-member.design-classic .kd-team-contact .kd-team-phone {
  margin-right: 0;
}

.team-member.design-classic .kd-team-contact a {
  z-index: 1;
  position: relative;
  width: 100%;
  display: block;
  padding-right: 0;
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
}

.team-member.design-classic .kd-team-contact span {
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  margin-right: 8px;
  font-size: 15px;
  font-weight: 400;
}

.team-member.design-classic .kd-team-contact .kd-team-email:before,
.team-member.design-classic .kd-team-contact .kd-team-phone:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  opacity: 0.2;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  display: none;
}

.team-member.design-classic .team-socials a {
  color: inherit;
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin: 0 5px;
  opacity: 1;
  transition: background 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  border-radius: 100%;
  font-size: 16px;
}

.team-member.design-classic .team-socials a:hover .fa, .team-member.design-classic .team-socials a:hover .fab {
  color: #fff;
}

.team-member.design-classic .team-socials a:hover:after {
  opacity: 1;
}

.team-member.design-classic .team-content .team-subtitle {
  margin-bottom: 20px;
  display: block;
  color: #7c7c7c;
  font-weight: inherit;
  opacity: 1;
  text-align: center;
  /* font-size: 16px; */
}

.team-member.design-classic .team-content h4 {
  margin-bottom: 10px;
  line-height: 1;
}

.team-member.design-classic .team-socials .fab, .team-member.design-classic .team-socials .fa {
  margin: auto;
  font-size: 15px;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 1, 0.2, 1);
  -moz-transition: color 0.3s cubic-bezier(0.25, 1, 0.2, 1);
  -o-transition: color 0.3s cubic-bezier(0.25, 1, 0.2, 1);
  transition: color 0.3s cubic-bezier(0.25, 1, 0.2, 1);
  line-height: 40px;
}

.team-member.design-classic .team-socials .fab:hover, .team-member.design-classic .team-socials .fa:hover {
  opacity: 1;
}

.team-member.design-classic img {
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.team-member.design-classic .team-image {
  max-height: 100%;
  border: none;
}

.team-member.design-classic .team-content-text {
  text-align: left;
  padding: 35px 30px;
  padding-top: 32px;
  border-top: none;
  background: #fff;
}

.team-member.design-classic .team-content-text .team-content-text-inner {
  z-index: 10;
  position: relative;
}

.team-member.design-creative .team-content-hover {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -100%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-left: 0;
  padding: 30px;
  text-align: center;
  opacity: 0;
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 100%;
  box-sizing: border-box;
  -webkit-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  -o-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  z-index: 100;
}

.team-member.design-creative .team-content-hover:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  background: #030f27;
}

.team-member.design-creative img {
  padding-top: 0;
  border-radius: 100%;
}

.team-member.design-creative .team-image:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  top: 0;
  left: 0;
  border-radius: 100%;
  -webkit-transition: 0.4s cubic-bezier(0.3, 0.58, 0.55, 1);
  transition: 0.4s cubic-bezier(0.3, 0.58, 0.55, 1);
  display: none;
}

.team-member.design-creative .team-image:hover .team-content-hover {
  opacity: 1;
}

.team-member.design-creative .team-image:hover:before {
  opacity: 0.2;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  left: -15px;
  top: -15px;
}

.team-member.design-creative .team-content-hover p {
  position: relative;
  -webkit-transition: 0.25s ease-in;
  -o-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}

.team-member.design-creative .team-content-hover p a {
  color: #fff;
  font-size: 13px;
}

.team-member.design-creative .team-content-hover .team-link a:hover {
  text-decoration: underline;
}

.team-member.design-creative .team-image:hover .team-content-hover p {
  opacity: 1;
}

.team-member.design-creative .team-content .team-content-hover h4 {
  position: absolute;
  top: 72%;
  left: 0;
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transform: translateY(15px);
  letter-spacing: 0.01em;
  font-family: inherit;
  text-transform: inherit;
}

.team-member.design-creative.team-with-link .team-content .team-content-hover h4 {
  top: 65%;
}

.team-member.design-creative .team-image .team-content-hover .team-subtitle,
.team-member.design-creative .team-content .team-content-hover .team-link {
  -webkit-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transform: translateY(15px);
}

.team-member.design-creative .team-image:hover .team-content-hover .team-subtitle,
.team-member.design-creative .team-image:hover .team-content-hover h4,
.team-member.design-creative .team-content .team-content-hover .team-link {
  transform: translateY(0);
}

.team-member.design-creative .team-content .team-content-hover .team-link {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
}

.team-member.design-creative .team-content .team-content-hover .team-link .fa {
  color: #FFF;
}

.team-member.design-creative .team-content .team-content-hover .team-link .fa:hover {
  opacity: 0.5;
}

.team-member.design-creative .team-content .team-content-hover .team-subtitle {
  color: #fefefe;
  font-size: inherit;
  position: absolute;
  top: 80%;
  width: 100%;
  left: 0;
  letter-spacing: 0.01em;
}

.team-member.design-creative.team-with-link .team-content .team-content-hover .team-subtitle {
  top: 73%;
}

.team-member.design-creative {
  max-width: 335px;
  margin: 20px 40px;
  border-radius: 100%;
}

.four-elem-team .team-member.design-creative,
.vc_col-sm-3 .team-member.design-creative {
  margin: 20px;
}

.team-member.design-creative .team-socials {
  text-align: center;
  position: absolute;
  left: 0;
  margin: 0;
  -webkit-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  opacity: 0.5;
  transform: translateY(-15px);
  top: 57%;
}

.team-member.design-creative .team-image:hover .team-socials {
  opacity: 1;
  transform: translateY(0px);
}

.team-member.design-creative .kd-team-contact {
  text-align: center;
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  margin: 0;
}

.team-member.design-creative .team-socials a,
.team-member.design-creative .kd-team-contact a {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  line-height: 33px;
  font-size: 14px;
  border-radius: 100%;
  margin: 0 5px;
  -webkit-transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.2, 0.58, 0.55, 1);
}

.team-member.design-creative .team-socials a .fa,
.team-member.design-creative .kd-team-contact a .fa,
.team-member.design-creative .team-socials a .fab,
.team-member.design-creative .kd-team-contact a .fab {
  color: #fff;
}

.team-member.design-creative .team-socials a:hover,
.team-member.design-creative .kd-team-contact a:hover {
  background: #fff;
}

.team-member.design-creative .team-socials a:hover span,
.team-member.design-creative .kd-team-contact a:hover span {
  color: #1a1a1a;
}

.team-member.design-creative .team-socials a .fa,
.team-member.design-creative .kd-team-contact a .fa,
.team-member.design-creative .team-socials a .fab,
.team-member.design-creative .kd-team-contact a .fab {
  margin: 0;
}

.team-member.design-creative .kd-team-contact .kd-team-phone,
.team-member.design-creative .kd-team-contact .kd-team-email {
  display: inline-block;
}

.team-member.design-minimal {
  border: 1px solid #e5e7f2;
  border-radius: 0px;
  background: #fff;
}

.team-member.design-minimal h4 {
  line-height: 1;
  margin-bottom: 7px;
  font-size: 20px;
}

.team-member.design-minimal .team-subtitle {
  font-weight: 400;
  opacity: 1;
}

.team-member.design-minimal .team-socials {
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
  padding-right: 10px;
  margin-top: 35px;
}

.team-member.design-minimal .team-socials a {
  opacity: 1;
}

.team-member.design-minimal img {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  padding-top: 50px;
}

.team-member.design-minimal:hover img {
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}

.team-member.design-minimal:hover .team-content-hover {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.team-member.design-minimal .team-content-hover {
  position: absolute;
  width: 100%;
  padding: 30px;
  text-align: center;
  text-align: left;
  height: 100%;
  background: none;
  max-width: 100%;
  -webkit-transition-duration: 250ms !important;
  transition-duration: 250ms !important;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0.05, 0.55, 0.9) !important;
  transition-timing-function: cubic-bezier(0.4, 0.05, 0.55, 0.9) !important;
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
  opacity: 0;
}

.kd-team-phone .team-phone-label, .kd-team-email .team-email-label {
  padding-right: 4px;
  color: inherit;
  font-weight: bold;
}

.team-member.design-classic.socials-disabled .kd-team-contact {
  z-index: 10;
  position: relative;
  bottom: inherit;
  right: inherit;
  width: 100%;
  display: inline-block;
}

.team-member.design-classic.socials-disabled .kd-team-contact .kd-team-email,
.team-member.design-classic.socials-disabled .kd-team-contact .kd-team-phone {
  float: left;
}

.yem-icon-list {
  padding: 0;
  list-style-type: none;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
}
.yem-icon-list.list-1col {
  grid-template-columns: 1fr;
}
.yem-icon-list.list-2col {
  grid-template-columns: 1fr 1fr;
}
.yem-icon-list.list-3col {
  grid-template-columns: 1fr 1fr 1fr;
}
.yem-icon-list.list-4col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.yem-icon-list.list-5col {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .yem-icon-list.list-1col, .yem-icon-list.list-2col, .yem-icon-list.list-3col, .yem-icon-list.list-4col, .yem-icon-list.list-5col {
    grid-template-columns: 1fr;
  }
}

.yem-icon-list .yem-icon-list-item a {
  transition: 0.2s;
}

.yem-icon-list .yem-icon-list-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.yem-icon-list .yem-icon-list-item:last-child {
  margin-bottom: 0;
}

.yem-icon-list-item > i {
  margin-right: 10px;
}

.yem-icon-wrapper {
  min-width: 18px;
  height: 18px;
  margin-right: 15px;
  text-align: center;
  line-height: 15px;
  font-weight: 100 !important;
  margin-top: 3px;
}

.yem-icon-wrapper i {
  font-size: 10px;
}

.yem-icon-wrapper.icon-circle {
  border-radius: 50%;
}

.dl-product-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 -15px;
}
@media (min-width: 992px) {
  .dl-product-list {
    margin: 0 -30px;
  }
}
.dl-product-list li {
  flex: 0 1 33.3333333333%;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .dl-product-list li {
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dl-product-list li {
    flex: 0 0 50%;
  }
}
.dl-product-list .dl-product {
  border-radius: 15px;
  border: 1px solid #eee;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}
.dl-product-list .dl-product h5 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}
.dl-product-list .dl-product .product-image img {
  display: block;
  margin: 0 auto 25px;
  max-width: 50%;
}
.dl-product-list .dl-product ul > li a {
  font-size: 15px;
}

.yem_shape {
  position: absolute;
  pointer-events: none;
}
.yem_shape img {
  width: 100%;
}

.yem-responsive-table table {
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .yem-responsive-table {
    overflow-x: scroll;
  }
  .yem-responsive-table table {
    position: static;
    width: 750px;
  }
}
@media (max-width: 480px) {
  .yem-responsive-table.yem-responsive-table-xs {
    overflow-x: scroll;
  }
  .yem-responsive-table.yem-responsive-table-xs table {
    position: static;
    width: 450px;
  }
}
@media (max-width: 767px) {
  .yem-responsive-table.yem-responsive-table-sm {
    overflow-x: scroll;
  }
  .yem-responsive-table.yem-responsive-table-sm table {
    position: static;
    width: 750px;
  }
}
@media (max-width: 991px) {
  .yem-responsive-table.yem-responsive-table-md {
    overflow-x: scroll;
  }
  .yem-responsive-table.yem-responsive-table-md table {
    position: static;
    width: 900px;
  }
}

.accordion.transcript .accordion-heading {
  padding: 15px;
  background-color: #fff;
}
.accordion.transcript .accordion-heading a {
  display: block;
  color: #000;
  font-size: 16px;
  text-decoration: none;
}
.accordion.transcript .accordion-body .accordion-inner {
  background-color: #fff;
  padding: 15px;
  color: #000;
}

/*******************
  General
********************/
.yem-gf-modal-btn {
  width: max-content;
}

.modal .modal-dialog {
  max-width: 100%;
}

.modal-backdrop {
  z-index: 2000;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  display: none;
}

.modal-backdrop.show {
  opacity: 0.7;
  display: block;
}

.modal-subheading {
  margin-bottom: 38px;
}

.modal-content-inner {
  padding: 100px;
  padding-bottom: 74px;
  height: 100%;
  right: 0;
  background-size: cover;
}

.modal-content-inner p {
  text-align: left;
  line-height: 1.6;
  margin: 0 0 10px;
}

/*******************
  Popup modal
********************/
.yem-gf-modal .modal-dialog {
  transition: none;
}

.yem-gf-modal {
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.yem-gf-modal.show {
  visibility: visible;
  align-items: center;
}
.yem-gf-modal.show .modal-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.yem-gf-modal .modal-dialog {
  max-width: 100%;
  max-height: 100%;
  width: 1100px;
  margin: auto;
}
.yem-gf-modal .modal-dialog.modal-dialog-centered {
  align-items: flex-start;
  justify-content: center;
  margin-top: 85px;
}
.yem-gf-modal .modal-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: auto;
  margin-left: 0;
  position: relative;
  border: none;
  box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  cursor: default;
}

.yem-gf-modal .modal-form-container {
  padding: 6rem 4rem 4rem;
}

.yem-gf-modal .close {
  position: absolute;
  background-color: transparent;
  right: 15px;
  top: 20px;
  z-index: 999;
  height: 40px;
  width: 40px;
  padding: 0;
  outline: none;
  opacity: 1;
  text-align: center;
  transition: 0.25s;
  border: 0;
}
@media (max-width: 960px) {
  .yem-gf-modal .close {
    font-size: 22px;
    top: 10px;
    right: 10px;
  }
}

.yem-gf-modal .modal-content h2 {
  text-align: left;
  font-style: normal;
  margin-bottom: 25px;
  margin-top: 0;
}

.modal-content-inner:before {
  width: 0;
  height: 0;
  content: "-";
  text-indent: -9999px;
  position: absolute;
  z-index: 9999;
  top: 50%;
  margin-top: -6px;
  left: -12px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  display: none;
}

@media (max-width: 767px) {
  .yem-gf-modal .modal-content {
    top: 20px;
    left: auto;
    right: auto;
    width: auto;
    margin-left: 0;
    max-height: 90%;
  }
  .yem-gf-modal .modal-content .modal-content-inner {
    padding: 35px;
  }
}
/*******************
  General
********************/
.yem-gpuf-modal-btn {
  width: max-content;
}

.modal .modal-dialog {
  max-width: 100%;
}

.modal-backdrop {
  z-index: 2000;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  display: none;
}

.modal-backdrop.show {
  opacity: 0.7;
  display: block;
}

.modal-subheading {
  margin-bottom: 38px;
}

.modal-content-inner {
  padding: 100px;
  padding-bottom: 74px;
  height: 100%;
  right: 0;
  background-size: cover;
}

.modal-content-inner p {
  text-align: left;
  line-height: 1.6;
  margin: 0 0 10px;
}

/*******************
  Popup modal
********************/
.yem-gpuf-modal .modal-dialog {
  transition: none;
}

.yem-gpuf-modal {
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.yem-gpuf-modal.show {
  visibility: visible;
  align-items: center;
}
.yem-gpuf-modal.show .modal-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.yem-gpuf-modal .modal-dialog {
  max-width: 100%;
  max-height: 100%;
  width: 1100px;
  margin: auto;
}
.yem-gpuf-modal .modal-dialog.modal-dialog-centered {
  align-items: flex-start;
  justify-content: center;
  margin-top: 85px;
}
.yem-gpuf-modal .modal-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: auto;
  margin-left: 0;
  position: relative;
  border: none;
  box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  cursor: default;
}

.yem-gpuf-modal .modal-form-container {
  padding: 6rem 4rem 4rem;
  background: #ffffff;
}

.yem-gpuf-modal .close {
  position: absolute;
  background-color: transparent;
  right: 15px;
  top: 20px;
  z-index: 999;
  height: 40px;
  width: 40px;
  padding: 0;
  outline: none;
  opacity: 1;
  text-align: center;
  transition: 0.25s;
  border: 0;
}
@media (max-width: 960px) {
  .yem-gpuf-modal .close {
    font-size: 22px;
    top: 10px;
    right: 10px;
  }
}

.yem-gpuf-modal .modal-content h2 {
  text-align: left;
  font-style: normal;
  margin-bottom: 25px;
  margin-top: 0;
}

.modal-content-inner:before {
  width: 0;
  height: 0;
  content: "-";
  text-indent: -9999px;
  position: absolute;
  z-index: 9999;
  top: 50%;
  margin-top: -6px;
  left: -12px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  display: none;
}

@media (max-width: 767px) {
  .yem-gpuf-modal .modal-content {
    top: 20px;
    left: auto;
    right: auto;
    width: auto;
    margin-left: 0;
    max-height: 90%;
  }
  .yem-gpuf-modal .modal-content .modal-content-inner {
    padding: 35px;
  }
}
.yem-content-slider.owl-carousel .owl-stage-outer, .yem-content-slider.owl-carousel .owl-stage, .yem-content-slider.owl-carousel .owl-item {
  height: 100%;
}
.yem-content-slider.owl-carousel .yem-content-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.yem-content-slider.owl-carousel .yem-content-slide:hover {
  cursor: pointer;
}
.yem-content-slider.owl-carousel .yem-content-slide .slide-content {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.yem-content-slider.owl-carousel .yem-content-slide .slide-content-container {
  width: 100%;
}
@media (min-width: 992px) {
  .yem-content-slider.owl-carousel .yem-content-slide .slide-content-container {
    width: 50%;
  }
}
.yem-content-slider.owl-carousel .yem-content-slide .slide-title {
  font-size: 4rem;
}
.yem-content-slider.owl-carousel .yem-content-slide .slide-button {
  margin-top: 1.5rem;
}
.yem-content-slider.owl-carousel .owl-nav {
  padding-left: 2rem;
  padding-right: 2rem;
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  top: 50%;
  margin: 0;
}
.yem-content-slider.owl-carousel .owl-nav .owl-prev, .yem-content-slider.owl-carousel .owl-nav .owl-next {
  transform: translateX(0px);
  opacity: 1;
  background-color: transparent !important;
}
.yem-content-slider.owl-carousel .owl-nav .owl-prev:before {
  content: "\f104";
}
.yem-content-slider.owl-carousel .owl-nav .owl-next:before {
  content: "\f105";
}

.vc_tta-container .vc_tta-tabs.tabs-vertical {
  display: flex;
}
.vc_tta-container .vc_tta-tabs.tabs-vertical .vc_tta-tabs-container {
  width: 30%;
  flex-shrink: 0;
  padding: 0;
  margin-right: 0 !important;
}
.vc_tta-container .vc_tta-tabs.tabs-vertical .vc_tta-tabs-container .vc_tta-tabs-list {
  display: flex;
  flex-direction: column;
}
.vc_tta-container .vc_tta-tabs.tabs-vertical .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  font-style: normal;
}
.vc_tta-container .vc_tta-tabs.tabs-vertical .vc_tta-panels-container {
  flex-grow: 1;
}
.vc_tta-container .vc_tta-tabs.tabs-vertical .vc_tta-panel {
  margin: 0 !important;
}
.vc_tta-container .vc_tta-tabs.tabs-vertical .vc_tta-panel.vc_active {
  padding: 0;
}
@media (min-width: 768px) {
  .vc_tta-container .vc_tta-tabs.tabs-vertical .vc_tta-panel.vc_active {
    padding: 0 2rem;
  }
}

.vc_tta.vc_general .vc_tta-tabs-container {
  margin-bottom: 0 !important;
}
.vc_tta.vc_general .vc_tta-panel {
  margin: 0 !important;
}

/* ------------------------------------------------------------------------

46. PARTICLES

 ------------------------------------------------------------------------*/
#particles-js, .particles-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}

.particles-wrapper div {
  height: 100%;
}

/*# sourceMappingURL=yem_vc_front.css.map */
