.content-with-image-col .two-col {
  display: flex;
  padding-bottom: 0px;
}
.content-with-image-col .two-col .hs-col {
  display: inline-block;
  vertical-align: top;
  float: left;
  position: relative;
  width: 55%; 
  padding-left: 0;
  padding-right: 1.5%;
}
.content-with-image-col .two-col .col-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 3.5%;
  padding-right: 0;
  width: 45%;
}
.content-with-image-col .two-col h2 {
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 35px;
  padding-bottom: 15px;
  margin: 0;
  font-weight: 600;
}

.content-with-image-col .two-col h2::after {
    content: "";
    display: block;
    width: 12%;
    border-bottom: 2px solid #1e57dd;
    transition: .5s;
    margin-left: 1px;
}

.content-with-image-col .two-col p {
  padding: 2px 0;
  margin: 0;
}
.content-with-image-col.right-align .two-col {
  flex-direction: row-reverse;
}
.content-with-image-col .two-col .col-image img {
  vertical-align: top;
}

/* Video CSS */

.video-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 10px;
  color: #eee;
}
.video-wrapper .video-container {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px auto 0;
}
.video-wrapper .video-container video {
  width: 100%;
  height: 100%;
}
.video-wrapper .play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
  opacity: 1;
  cursor: pointer;
}
.video-wrapper #circle-play-b {
  left: 15px;
  top: 50%;
  margin-top: -50.100px;
  width: 87px;
  height: 87px;
  margin-left: 21.600px;
  background-color: rgba(0,0,0,0.65);
  font-size: 6em;
  display: block;
  position: absolute;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  border-radius: 50%;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 40%);
  transition: all cubic-bezier(.25, .8, .25, 1) .35s;
  z-index: 1;
}
.video-wrapper #circle-play-b:before {
  -webkit-backface-visibility: hidden;
  content: "\e037";
  font-family: bvmaterial;
  line-height: 1.45em;
  text-shadow: 0 0 0.5em rgb(0 0 0 / 50%);
  text-align: center;
  color: #fff;
  opacity: .85;
  position: absolute;
  top: -0.15em;
  bottom: -0.15em;
  left: -0.15em;
  right: -0.15em;
  width: auto;
  height: auto;
  border-radius: 50%;
  border: solid rgba(255,255,255,0.8) .11em;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 40%);
}
.video-wrapper #circle-play-b:after {
  -webkit-backface-visibility: hidden;
  content: "Play";
  font-weight: bold;
  font-family: sans-serif;
  font-size: 1em;
  line-height: 1.45em;
  height: 1.45em;
  color: #fff;
  left: 50%;
  top: 0;
  position: absolute;
  text-shadow: 0 0 0.5em rgb(0 0 0 / 50%);
  width: 200%;
  overflow: hidden;
  opacity: 0;
  transition: left cubic-bezier(.25, .8, .25, 1) .35s,opacity cubic-bezier(.25, .8, .25, 1) .35s,font-size 0s 1s;
}
.video-wrapper:hover .play-button-wrapper {
  opacity: 1;
  transition: opacity cubic-bezier(.25, .8, .25, 1) .35s;
}
.video-wrapper .play-button-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background: linear-gradient(to right,rgba(0,0,0,0.9) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EE000000',endColorstr='#00000000',GradientType=1);
  opacity: 1;
  transition: opacity cubic-bezier(.25,.8,.25,1) .35s;
  color: #eee;
  cursor: pointer;
  content: "";
  z-index: 1;
  pointer-events: none;
}
.video-wrapper .video-container:hover .play-button-wrapper:after {
  opacity: .5;
}
.video-wrapper .video-container:hover #circle-play-b {
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  transform: scale(.8);
}
.video-wrapper .video-container:hover #circle-play-b:after {
  left: 125%;
  opacity: .68;
  transition: left cubic-bezier(.25, .8, .25, 1) .35s,opacity cubic-bezier(.25, .8, .25, 1) .35s;
}
.video-wrapper .play-button-wrapper.active:after {
  display: none;
}

@media (max-width: 767px){
  .video-wrapper .video-container {
    margin: 0 auto;
  }
  .video-wrapper #circle-play-b {
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    margin-left: 0em;
  }
}

/* END Video CSS */

.content-with-image-col.right-align .two-col .col-content {
  padding-left: 0;
  padding-right: 3.5%;
}
.content-with-image-col.right-align .two-col .video-wrapper {
  padding-left: 1.5%;
  padding-right: 0;
}


@media (max-width: 767px){
  .content-with-image-col .two-col .col-image img {
    vertical-align: top;
    width: 100%;
  }
  .content-with-image-col .two-col {
    display: flex;
    flex-direction: column;
  }
  .content-with-image-col {
    padding-top: 15px;
  }
  .content-with-image-col.right-align .two-col .col-content {
    padding: 0;
  }
  .content-with-image-col .two-col .hs-col {
    width: 100%;
    float: none;
    padding: 0;
  }
  .content-with-image-col .two-col h2 {
    font-size: 28px;
    margin: 8px 0;
  }
  .content-with-image-col .two-col p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .content-with-image-col.right-align .two-col .col-content {
    padding: 0;
  }
  .content-with-image-col.right-align .two-col .video-wrapper {
    padding: 0;
  }
  .content-with-image-col.right-align .two-col {
    flex-direction: column-reverse;
  }
  
}


