/***********
  ** Override CSS goes here
  ** Typically added to live sites that aren't compiled anymore
************/
.video-container {
    display: flex;        /* Aligns children (video divs) in a row */
    justify-content: space-around; /* Spreads the children evenly with space around them */
    align-items: center;  /* Vertically aligns the children in the middle */
    flex-wrap: wrap;      /* Allows items to wrap onto the next line if space is not enough */
}

.video {
    flex: 1;              /* Allows each video to grow and take up equal space */
    margin: 10px;         /* Adds some space between the videos */
}
@media (max-width: 800px) {
    .video-container {
        flex-direction: column;
    }
    .video iframe {
        width: 100%;       /* Sets video width to 100% of its container */
        height: auto;      /* Adjusts the height automatically */
    }
}
.hero-coupon-cta {
	border-radius: 30px;
    padding: 10px 10px;
    border: 2px dashed #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background: #1B3C6E;
}

.hero-coupon-cta > a{
	background: none;
    box-shadow: none;
}