/** Shopify CDN: Minification failed

Line 39:8 Expected identifier but found whitespace
Line 39:10 Unexpected "{"
Line 39:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.commonPd{
      padding: 100px 0;
}
.video-with-text-section {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    max-width: 1600px;
    justify-content: center;
    align-items: center;
}
.video-with-text-media {
  flex: 1 1 50%;
  position: relative;  
}
.video-with-text-media iframe,
.video-with-text-media video {
  width: 100%;
  max-width: 100%;
  height: 500px;
  max-height: 500px;
  border: 0;
  display: block;
  
}
.video-with-text-content {
  flex: 1 1 50%;
  padding: 0px 2rem;
  color: {{ section.settings.text_color }};
}
.video-with-text-content h2 {
 
  margin-bottom: 1rem;
}
.video-with-text-content p {
 
  margin-bottom: 1.5rem;
  
}
.video-with-text-content a.button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}
.video-with-text-content a.button:hover{
    background-color: #fff;
    border: 1px solid #ddd;
    color:#000;
}
@media screen and (max-width: 768px) {
  .video-with-text-section {
    flex-direction: column;
  }
  .video-with-text-content, .video-with-text-media {
    flex: 1 1 100%;
    padding: 1rem;
  }
}