.section-coverCentered__buttons-text, .section-coverCentered__checklistItem {
  font-family: var(--font-family-primary);
  font-weight: var(--tg-font-weight-text);
  font-size: var(--tg-font-size-text);
  line-height: var(--tg-line-height-text);
  letter-spacing: var(--tg-letter-spacing-text);
  color: var(--color-grey-darker);
}

.section-coverCentered__label {
  font-family: var(--font-family-primary);
  font-size: var(--label-font-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--color-grey);
  margin-bottom: 1.25em;
  margin-top: 0;
}

.section-coverCentered {
  position: relative;
  z-index: 50;
  padding: 90px 0 0;
  overflow: hidden;
  text-align: center;
  --title-color: var(--primary-color, #000);
  --text-color: var(--primary-color, #101010);
  --bg-color: #fff;
  --playBtn-color: #2997FF;
  background-color: var(--bg-color);
}
@media (max-width: 1439px) {
  .section-coverCentered {
    padding-top: 80px;
  }
}
@media (max-width: 1199px) {
  .section-coverCentered {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .section-coverCentered {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .section-coverCentered {
    padding-top: 50px;
  }
}
.section-coverCentered[data-theme=purple] {
  --bg-color: var(--color-purple-light);
  --playBtn-color: var(--color-purple);
  --title-color: var(--color-purple-dark);
}
.section-coverCentered[data-theme=purple] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=pink] {
  --bg-color: var(--color-pink-light);
  --playBtn-color: var(--color-pink);
  --title-color: var(--color-pink-dark);
}
.section-coverCentered[data-theme=pink] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=coral] {
  --bg-color: var(--color-coral-light);
  --playBtn-color: var(--color-coral);
  --title-color: var(--color-coral-dark);
}
.section-coverCentered[data-theme=coral] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=red] {
  --bg-color: var(--color-red-light);
  --playBtn-color: var(--color-red);
  --title-color: var(--color-red-dark);
}
.section-coverCentered[data-theme=red] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=orange] {
  --bg-color: var(--color-orange-light);
  --playBtn-color: var(--color-orange);
  --title-color: var(--color-orange-dark);
}
.section-coverCentered[data-theme=orange] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=mustard] {
  --bg-color: var(--color-mustard-light);
  --playBtn-color: var(--color-mustard);
  --title-color: var(--color-mustard-dark);
}
.section-coverCentered[data-theme=mustard] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=green] {
  --bg-color: var(--color-green-light);
  --playBtn-color: var(--color-green);
  --title-color: var(--color-green-dark);
}
.section-coverCentered[data-theme=green] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=turquoise] {
  --bg-color: var(--color-turquoise-light);
  --playBtn-color: var(--color-turquoise);
  --title-color: var(--color-turquoise-dark);
}
.section-coverCentered[data-theme=turquoise] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=blue] {
  --bg-color: var(--color-blue-light);
  --playBtn-color: var(--color-blue);
  --title-color: var(--color-blue);
}
.section-coverCentered[data-theme=blue] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered[data-theme=blueMagent] {
  --bg-color: var(--color-blueMagent-light);
  --playBtn-color: var(--color-blueMagent);
  --title-color: var(--color-blueMagent-dark);
}
.section-coverCentered[data-theme=blueMagent] .section-coverCentered__image:after {
  opacity: 0;
}
.section-coverCentered:not([data-bg-full-color]):before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.51);
}
.section-coverCentered .container {
  position: relative;
  z-index: 1;
}
.section-coverCentered__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1439px) {
  .section-coverCentered__bg {
    max-height: 901px;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__bg {
    max-height: 800px;
  }
}
@media (max-width: 767px) {
  .section-coverCentered__bg {
    max-height: 685px;
  }
}
.section-coverCentered__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 1199px) {
  .section-coverCentered__bg img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__bg img {
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 767px) {
  .section-coverCentered__bg img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
.section-coverCentered__content {
  max-width: 927px;
  margin: 0 auto 20px;
}
@media (max-width: 1439px) {
  .section-coverCentered__content {
    max-width: 845px;
  }
}
@media (max-width: 1199px) {
  .section-coverCentered__content {
    max-width: 647px;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__content {
    margin-bottom: 14px;
    max-width: 556px;
  }
}
.section-coverCentered__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.21;
  text-align: center;
  color: var(--title-color);
}
@media (max-width: 1199px) {
  .section-coverCentered__title {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.36;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__title {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 1.43;
  }
}
@media (max-width: 767px) {
  .section-coverCentered__title {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.29;
  }
}
.section-coverCentered__text {
  margin-bottom: 20px;
}
.section-coverCentered__text p {
  margin-top: 0;
  font-family: var(--text-font);
  font-weight: normal;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  color: var(--text-color);
}
.section-coverCentered__text p:not(:last-child) {
  margin-bottom: 1em;
}
@media (max-width: 1199px) {
  .section-coverCentered__text p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__text {
    margin-bottom: 23px;
  }
  .section-coverCentered__text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.section-coverCentered__checklist {
  display: inline-grid;
  text-align: start;
  max-width: 500px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
  grid-template-columns: var(--checklist-grid-columns);
  grid-gap: 30px;
}
@media (max-width: 1199px) {
  .section-coverCentered__checklist {
    margin: 10px 0;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__checklist {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .section-coverCentered__checklist {
    grid-gap: 15px;
    margin-bottom: 20px;
  }
}
.section-coverCentered__checklist, .section-coverCentered__checklist[data-columns="1"] {
  --checklist-grid-columns: 1fr;
}
.section-coverCentered__checklist[data-columns="2"] {
  --checklist-grid-columns: var(--checklist-two-columns-cols);
}
.section-coverCentered__checklistItem {
  padding-left: 34px;
  position: relative;
}
body.rtl .section-coverCentered__checklistItem {
  padding-left: 0;
  padding-right: 34px;
}
.section-coverCentered__checklistItem[data-icon-type=number]:before, .section-coverCentered__checklistItem[data-icon-type=icon_svg]:before {
  display: none;
}
.section-coverCentered__checklistItem-iconSvg, .section-coverCentered__checklistItem-number {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
.rtl .section-coverCentered__checklistItem-iconSvg, .rtl .section-coverCentered__checklistItem-number {
  left: auto;
  right: 0;
}
.section-coverCentered__checklistItem-iconSvg img, .section-coverCentered__checklistItem-number img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.section-coverCentered__checklistItem-number {
  background: #C3FDEB;
  border-radius: 100px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 15px;
}
.section-coverCentered__checklistItem:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("https://connecteam.com/wp-content/themes/connecteam/inc/sections/sections/section-covercentered/images/icon-check.svg");
}
body.rtl .section-coverCentered__checklistItem:before {
  left: unset;
  right: 0;
}
@media (max-width: 767px) {
  body.rtl .section-coverCentered__checklistItem:before {
    margin-right: 0;
    margin-left: 10px;
  }
}
.section-coverCentered__buttons-row {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  align-items: start;
  grid-gap: 20px;
}
@media (max-width: 767px) {
  .section-coverCentered__buttons-row a {
    min-width: 185px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .section-coverCentered__buttons-row {
    grid-gap: 15px;
    grid-auto-flow: unset;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.section-coverCentered__buttons-buttonWrapper {
  text-align: center;
}
.section-coverCentered__buttons-text {
  margin-top: 10px;
  font-weight: 550;
  color: var(--color-grey);
  font-size: var(--label-font-size);
}
.section-coverCentered__buttons-text img {
  height: 24px;
  width: auto;
}
.section-coverCentered__button {
  margin-top: 10px;
  margin-bottom: 2px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 999em;
  background-color: #2998FF;
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
  text-align: center;
  color: #fff;
}
.section-coverCentered__button:after {
  content: "";
  width: 20px;
  height: 14px;
  display: inline-block;
  margin-left: 10px;
  background-image: url("https://connecteam.com/wp-content/themes/connecteam/inc/sections/sections/section-covercentered/images/button-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.rtl .section-coverCentered__button:after {
  margin-right: 10px;
  margin-left: 0;
  transform: rotate(180deg);
}
.section-coverCentered__button:hover {
  color: #fff;
  background-color: #02369B;
}
.section-coverCentered__button:focus {
  background-color: #0083e6;
  box-shadow: none;
}
@media (max-width: 1439px) {
  .section-coverCentered__button {
    margin-bottom: 11px;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__button {
    margin-bottom: 12px;
  }
}
.section-coverCentered__nocard {
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.69;
  text-align: center;
  color: #2998FF;
}
@media (max-width: 767px) {
  .section-coverCentered__nocard {
    margin-top: 6px;
    font-weight: 500;
  }
}
.section-coverCentered__image {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 1048px;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .section-coverCentered__image {
    width: 819px;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__image {
    width: 669px;
  }
}
.section-coverCentered__image picture {
  display: inline-block;
}
.section-coverCentered__image img {
  max-width: 100%;
}
.section-coverCentered__image:after {
  content: "";
  width: 100vw;
  height: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  transform: translateX(-50%);
  z-index: -1;
  background-color: #fff;
  pointer-events: none;
}
.section-coverCentered__image:hover .section-coverCentered__image-playBtn {
  transform: scale(1.15);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}
.section-coverCentered__image-playBtn {
  width: 13em;
  height: 13em;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -6.5em;
  margin-left: -6.5em;
  background-color: var(--playBtn-color);
  border-radius: 50%;
  transition: 0.2s;
  font-size: 10px;
}
.section-coverCentered__image-playBtn:after {
  content: "";
  font-size: inherit;
  display: block;
  width: 3.5em;
  height: 4.6em;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1.35em;
  margin-top: -2.3em;
  background-position: center;
  background-image: url("https://connecteam.com/wp-content/themes/connecteam/inc/sections/sections/section-covercentered/images/icon-play.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1199px) {
  .section-coverCentered__image-playBtn {
    font-size: 9.4px;
  }
}
@media (max-width: 991px) {
  .section-coverCentered__image-playBtn {
    font-size: 5.85px;
  }
}
@media (max-width: 1439px) {
  .section-coverCentered__image.animatedImage {
    width: unset;
    max-width: unset;
  }
}
.section-coverCentered__image.animatedImage img {
  width: auto !important;
  max-width: unset !important;
}
@media (max-width: 1439px) {
  .section-coverCentered__image.animatedImage img {
    max-height: 641px;
  }
}
@media (max-width: 1199px) {
  .section-coverCentered__image.animatedImage img {
    max-height: 489px;
  }
}
@media (max-width: 767px) {
  .section-coverCentered__image.animatedImage img {
    max-height: 399px;
  }
}
.section-coverCentered__image.animatedImage .section-coverCentered__image-playBtn {
  display: none;
}
.section-coverCentered__image.animatedImage .slick-track {
  display: flex;
}
.section-coverCentered__image.animatedImage .slick-slide {
  outline: none;
}
.section-coverCentered__image.is-clickable {
  cursor: pointer;
}
.section-coverCentered__video {
  width: 100%;
  text-align: center;
  position: relative;
}
.section-coverCentered__video video {
  max-width: 100%;
  height: auto;
}
.section-coverCentered .lottie-animation {
  margin-inline: auto;
  max-width: calc(var(--width) * 1px);
}
.section-coverCentered__embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-color);
  overflow: hidden;
}
.section-coverCentered__embed:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.51);
}
.section-coverCentered__embed:not(.is-active) {
  pointer-events: none;
  opacity: 0;
}
.section-coverCentered__arrow {
  display: inline-block;
  margin: 38px 0;
  animation: bounce 2s infinite ease;
  background-image: url("https://connecteam.com/wp-content/themes/connecteam/inc/sections/sections/section-covercentered/images/arrow-bottom.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 33px;
  height: 30px;
}
@media (max-width: 767px) {
  .section-coverCentered__arrow {
    width: 24px;
    margin: 10px 0 21px 0;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.section-coverCentered .videoWrapper {
  position: static;
  padding-bottom: 0;
  padding-top: 0;
  height: auto;
}

@media (min-width: 670px) {
  .section-coverCentered__image img,
  .section-coverCentered__embed {
    border-radius: 12px;
  }
}
body.show-mobile-sticky-cta-button {
  --mobile-sticky-cta-button-bottom: 0px;
}
body.show-mobile-sticky-cta-button.cookies-popup-is-open {
  --mobile-sticky-cta-button-bottom: 50px;
}
@media (max-width: 767px) {
  body.show-mobile-sticky-cta-button.cookies-popup-is-open {
    --mobile-sticky-cta-button-bottom: 52px;
  }
}
@media (max-width: 767px) {
  body.show-mobile-sticky-cta-button.cookies-popup-is-open {
    --mobile-sticky-cta-button-bottom: 47px;
  }
}
@media (max-width: 991px) {
  body.show-mobile-sticky-cta-button .section-coverCentered__buttons-buttonWrapper {
    position: fixed;
    bottom: var(--mobile-sticky-cta-button-bottom);
    left: 0;
    right: 0;
    padding: 12px 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 90;
  }
  body.show-mobile-sticky-cta-button .section-coverCentered__buttons-buttonWrapper .section-coverCentered__button {
    margin: 0;
  }
  body.show-mobile-sticky-cta-button .section-coverCentered__image,
  body.show-mobile-sticky-cta-button .section-coverCentered__video {
    z-index: 91;
  }
  body.show-mobile-sticky-cta-button .section-coverCentered {
    overflow: revert;
  }
}
/*# sourceMappingURL=section-covercentered.css.map */
