.cpt-video {
    display: flex;
    width: 100%;
    padding: 80px 100px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.video-title {
    font-size: 48px;
    line-height: 54px;
    color: #43435E;
    margin-bottom: 20px;
    max-width: 80%;
}

.video-text {
    color: #43435E;
    margin-bottom: 20px;
    max-width: 80%;
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 960px;
}

.video-container {
  height: 0;
  overflow: hidden;
  width: 100%;
  padding-top: 58%;
  position: relative;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cpt-video .cta-container {
    margin-top: 35px;
}

@media screen and (max-width: 767px) {
    .cpt-video {
        padding: 40px 5%;
    }
    .video-container {
      border-radius: 20px;
    }

    .video-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 500px) {
    .video-container {
      border-radius: 20px;
    }
}