.video-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.video-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  font-family: sans-serif;
}
.video-text-left {
  position: absolute;
  top: 50%;
  left: 25%; /* center of left half */
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  font-family: sans-serif;
}
.video-text-right {
  position: absolute;
  top: 50%;
  right: 5%; /* center of left half */
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  font-family: sans-serif;
}

.video-text-left h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.video-text-right button {
  background-color: #f47b30;
  color: white;
  padding: 12px 50px;
  border-radius: 32px;
  font-size: 1.8rem;
  border: none;
  outline: none;
  transition: all 0.5s linear;
}
.video-text-right button:hover {
  background-color: black;
  color: #fff;
  border: 1px solid #fff;
}
.primary-orange{
  color: #ff904b;
}
.trans{
  opacity: 0.2;
}
.careers-form-row{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.careers-form-row input{
  width: 320px;
  margin: 4px;
}
.careers-form-row div, .careers-form-row textarea, .careers-form-row .single-careers-form-row{
  width: 648px;
  margin: 4px;
}
.careers-form-row input, .careers-form-row textarea, .careers-form-row select{
  background: transparent;
  border: 1px solid #ff904b;
  padding: 4px 6px;
  border-radius: 2px;
  outline: none;
}
.careers-form-row .careers-form-submit-btn{
  background-color: #ff904b;
  color: white;
  border: none;
  outline: none;
  border-radius: 24px;
  font-size: 15px;
  padding: 8px 12px;
  cursor: pointer;
}
.careers-form-row .careers-form-submit-btn:hover{
  background: transparent;
  color: #ff904b;
  border: 1px solid #ff904b;
}
#content-creation-banner-img{
  opacity: 0.8;
  filter: brightness(70%);
}
#content-quality-check-banner-img{
  opacity: 0.8;
  filter: saturate(110%) brightness(70%);
}
#alt-text-banner-img{
  opacity: 0.8;
  filter: saturate(110%) brightness(70%);
}
#qna-banner-img{
  opacity: 1;
  filter: saturate(200%) brightness(100%);
}
#video-solutions-banner-img{
  opacity: 1;
  filter: saturate(100%) brightness(75%);
}
.service-banner-btn{
  background-color: #f47b30;
  color: white;
  padding: 8px 36px;
  border-radius: 26px;
  font-size: 1.5rem;
  outline: none;
  border: 1px solid #f47b30;
  transition: all 0.3s linear;
}
.service-banner-btn:hover{
  background: transparent;
  border: 1px solid #fff;
}
.skillName-orange{
  background-color: #ff904b;
  padding: 1px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 320px;
  height: fit-content;
  border-radius: 50px;
  margin: 10px 0px;
  cursor: pointer;
  color: white;
}
.skillName-orange:hover{
  background-color: #e9ecef;
}
.skillName-orange:hover > .skillName{
  color: black;
}
.skillName-orange > .skillIcon{
  font-size: 40px;
}
.skillName-orange > .skillName{
  font-size: 20px;
  vertical-align: middle;
  height: 100%;
}
.skillName-gray{
  background-color: #e9ecef;
  color: white;
  padding: 1px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 320px;
  height: fit-content;
  border-radius: 50px;
  margin: 10px 0px;
  cursor: pointer;
}
.skillName-gray:hover{
  background-color: #ff904b;
}
.skillName-gray:hover > .skillName{
  color: white;
}
.skillName-gray > .skillIcon{
  color: white;
  font-size: 40px;
}
.skillName-gray > .skillName{
  color: black;
  font-size: 20px;
  vertical-align: middle;
  height: 100%;
}
.connect_section{
  position: relative;
  overflow: hidden;
}
.connect_section div{
  position: absolute;
  top: 10%;
  min-width: 100%;
  min-height: 100%;
  margin-left: 70px;
}
.connect_section div h1{
  color: white;
  font-weight: bolder;
  font-size: 50px;
}
.connect_section p{
  font-style: italic;
  color: white;
  font-size: 30px;
}
.contactBtnServicePageConnectSection_Btn{
  background-color: #ff904b;
  color: white;
  border: 2px solid white;
  padding: 10px 24px;
  font-size: 20px;
  border-radius: 12px;
  cursor: pointer;
}
.contactBtnServicePageConnectSection_Btn:hover{
  background-color: #f9a069;
}
@media (max-width: 768px) {
  .video-text-left{
    left: 50%;
  }
  .video-text-right{
    left: 50%;
    top: 90%;
  }
  .video-text-right button {
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 1.2rem;
}
.careers-form-row div, .careers-form-row textarea, .careers-form-row .single-careers-form-row{
  width: 320px;
}
}