.section-videoBg__title {
  font-family: var(--font-family-title);
  font-weight: var(--tg-font-weight-h2);
  font-size: var(--tg-font-size-h2);
  line-height: var(--tg-line-height-h2);
  letter-spacing: var(--tg-letter-spacing-h2);
  color: var(--color-grey-darker);
}

.section-videoBg__subtitle {
  font-family: var(--font-family-title);
  font-weight: var(--tg-font-weight-h3);
  font-size: var(--tg-font-size-h3);
  line-height: var(--tg-line-height-h3);
  letter-spacing: var(--tg-letter-spacing-h3);
  color: var(--color-grey-darker);
}

/**
 *
 * Section: VideoBg
 *
 */
.section-videoBg {
  --section-padding: 50px;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  --section-playbutton-color: var(--color-blue);
  --section-bg-color: var(--color-blue-dark);
  --section-title-color: #fff;
  margin-top: 60px;
}
.section-videoBg[data-background-mode=full] {
  margin-top: 0;
}
.section-videoBg[data-background-mode=full] .section-videoBg__wrapper:after {
  display: none;
}
.section-videoBg[data-background-mode=full] .section-videoBg__video {
  max-width: 100%;
}
.section-videoBg:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background-color: var(--section-bg-color);
}
.section-videoBg:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: var(--section-bg-image);
  background-repeat: repeat;
  background-position: center;
  opacity: var(--section-bg-opacity);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-videoBg .container {
    width: 934px;
  }
}
@media (max-width: 767px) {
  .section-videoBg .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 500px;
  }
}
.section-videoBg__title {
  font-size: 32px;
  line-height: 1.44;
  color: var(--section-title-color);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-videoBg__title {
    font-size: 24px;
    padding-inline: 15px;
  }
}
.section-videoBg__subtitle {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--section-title-color);
}
.section-videoBg__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  align-content: center;
  text-align: center;
}
.section-videoBg__wrapper {
  position: relative;
}
.section-videoBg__wrapper:after {
  content: "";
  width: 100vw;
  height: calc(50% + var(--section-padding));
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
}
.section-videoBg__video {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.section-videoBg__video:after {
  --play-size: 100px;
  content: "";
  display: block;
  width: var(--play-size);
  height: var(--play-size);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: calc(var(--play-size) / 2 * -1);
  margin-left: calc(var(--play-size) / 2 * -1);
  pointer-events: none;
  z-index: 1;
  transition: var(--tg-transition-medium);
  border-radius: 50%;
  box-shadow: var(--tg-box-shadow-medium);
  background-color: var(--section-playbutton-color);
  background-image: url("https://connecteam.com/wp-content/themes/connecteam/inc/sections/sections/section-videobg/images/icon-play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.section-videoBg__video:hover:after {
  transform: scale(1.1);
}
.section-videoBg__video.video-opened:after {
  opacity: 0;
}
.section-videoBg__video.video-opened .section-videoBg__image {
  opacity: 0;
  pointer-events: none;
}
.section-videoBg__video.video-opened .section-videoBg__embed {
  opacity: 1;
  pointer-events: auto;
}
.section-videoBg__image img {
  max-width: 100%;
}
.section-videoBg__embed {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: var(--tg-transition-medium);
}
.section-videoBg__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
/*# sourceMappingURL=section-videobg.css.map */
