/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1600px;
}

/****** Most Used Bootstrap Variables ******/
/* Typography */
/* Layout */
/* Breakpoints */
/****** Other Bootstrap Variables ******/
.custom-video-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.custom-video-container video.custom-video {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.custom-video-container .video-overlay {
  position: absolute;
  margin-left: -50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}
.custom-video-container .play-button {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* Center the button */
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 60px;
  height: 60px;
  border: 5px solid #fff;
  border-radius: 50%; /* This makes it a circle */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1200px) {
  .custom-video-container .play-button {
    width: 10rem;
    height: 10rem;
  }
}
.custom-video-container .play-button:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1); /* Maintain centering and slightly increase size on hover */
}
.custom-video-container .play-button .play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid #fff; /* Adjust the color as needed */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@media only screen and (min-width: 1200px) {
  .custom-video-container .play-button .play-icon {
    border-left: 60px solid #fff; /* Adjust the color as needed */
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
  }
}

.partner-video video {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}