@charset "utf-8";
/* CSS Document */

.transformspace_cta {
  background-image: url("../images/trasformspace-cta-bg.png");
  background-position: center center;
  height: 570px;

  & .container {
    /* background: lightgreen; */
    min-height: 570px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;

    & .ctaleft {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      align-content: center;
      width: calc(100% - 600px);
      padding-right: 180px;

      & .ctatitle {
        width: 100%;
        color: var(--white);
      }

      & p {
        color: var(--white) !important;
        margin: 0 0 20px 0;
      }
    }

    & .vid_img_right {
      width: 600px;
      border: 2px solid var(--themecolor);
      border-radius: 10px;
      overflow: hidden;
      background: var(--black);
      
      & .videoslide { 
        display: inline-flex;
        width: 100%;
        height: 100%;
        align-items: center;
        & iframe {
            height: 100%;
        }
      }
      
      & a.videoslide {
        position: relative;

        & img {
          opacity: 0.5;
          transition: all ease-out 0.3s !important;
          -webkit-transition: all ease-out 0.3s !important;
          -moz-transition: all ease-out 0.3s !important;
          -ms-transition: all ease-out 0.3s !important;
        }

        &:hover {
          cursor: url('../images/icon/play-cursor.svg'), auto !important;

          & img {
            opacity: 1;
            transition: all ease-out 0.3s !important;
            -webkit-transition: all ease-out 0.3s !important;
            -moz-transition: all ease-out 0.3s !important;
            -ms-transition: all ease-out 0.3s !important;
          }
        }

        &:after {
          content: '';
          position: absolute;
          background: url(../images/icon/play-button.svg)no-repeat 0 0;
          width: 101px;
          height: 101px;
          left: 50%;
          top: 50%;
          opacity: 1;
          margin: -50px 0 0 -50px;
        }

        &:hover {
          &:after {
            opacity: 0;
          }
        }
      }
    }
  }
}


.ctaleft ul > li {
    color: #fff;
    text-align: left;
    &::after { 
      filter: brightness(0) invert(1);
    }
}
.transformspace_cta.without-popup {
  background-image: url(../images/cta-bg.jpg);
}

.fancybox-content {
  width: 68% !important;
  height: 80% !important;
}


.without-popup.transformspace_cta { 
  & + .threebloc_sec{
    padding-top: 0px;
  }
}

@media (max-width: 1599.98px) {}

@media (max-width: 1439.98px) {
  
  .transformspace_cta {
    & .container {
      & .vid_img_right {
        width: 450px;
      }

      & .ctaleft {
        width: calc(100% - 450px);
        padding-right: 50px;
      }
    }
  }
  .transformspace_cta {
    .container { align-items: center; min-height: 450px; } 
  }
  .transformspace_cta.without-popup {
    height: auto;
  }

}

@media (max-width: 1199.98px) {

  .transformspace_cta {
    height: auto;
    & .container {
      & .vid_img_right {
        & a.videoslide {
          display: inline-block;
          width: 100%;
          & img {
            min-width: 450px;
            height: 100%;
          }
        }
      }
    }
  }
}

@media (max-width: 991.98px) {
  .transformspace_cta {
      & .container {
          & .ctaleft {
              width: calc(50%);
              padding-right: 20px;
          }
          & .vid_img_right {
              width: 50%;
          }
      }
  }
}

@media (max-width: 768px) {

  .transformspace_cta {
    height: auto;
    padding: 30px 0;

    & .container {
      flex-wrap: wrap;
      justify-content: center;

      & .ctaleft {
        width: 100%;
        padding-right: 0;
        margin: 0 0 20px 0;
        text-align: center;
        justify-content: center;
      }
    }
  }
  .transformspace_cta {
        & .container {
            & .vid_img_right {
                width: 100%;
                max-width: 600px;
                & a.videoslide {
                  &:after {
                      width: 80px;
                      height: 80px;
                      background-size: contain;
                  }
                }
            }
        }
    }
}


@media (max-width: 575.98px) {

  .transformspace_cta {
    & .container {
      .vid_img_right {
        width: 100%;
        margin: 0 auto;
      }
    }
  }
}