.input-field {
  border: none;
  border-bottom: 1px solid #838383;
  border-radius: 0px;
}

.btn-submit-test {
  background-color: #6dbe45;
  width: 50%;
  border-radius: 8px;
  color: white;
}

.content-with-images .content-image-border-left {
  width: 20px;
  height: 100%;
  background-color: red;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.content-with-images .content-image-border-right {
  width: 20px;
  height: 100%;
  background-color: red;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.content-with-images .content-image-right {
  transform: translateX(-25px);
}

.content-with-images .content-image-left {
  transform: translateX(25px);
}

.content-with-images .content-typography.content-left > div {
  width: 90%;
  text-align: justify;
  position: relative;
  left: 0;
}
.content-with-images .content-typography.content-right > div {
  width: 90%;
  text-align: justify;
  position: relative;
  right: 0;
}

.content-with-images {
  position: relative;
}

.content-with-images .row {
  margin-bottom: 10vh;
}

.content-with-images .img-text {
  width: 100%;
  padding: 0 20px 10px 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  z-index: 3;
}

.content-with-images img {
  width: 100%;
}

.content-with-images .image-overlay-container {
  position: relative;
  display: inline-block; /* Adjust as needed */
  width: 100%;
}

.content-with-images .image-overlay-container img {
  display: block;
}

.content-with-images .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Adjust the opacity as needed */
  pointer-events: none; /* This ensures the overlay doesn't block interactions with the image */
  z-index: 1; /* Ensures the overlay is on top of the image */
}

.our-work .top-corner-bg{
  background-image: url('../img/bg/triangle-bg.png');
  background-repeat: no-repeat;
  background-size: auto;
  top: 0;
  left: 0;
  width: 218px;
  height: 151px;
}

.our-work .bottom-corner-bg{
  background-image: url('../img/bg/triangle-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  right: 0;
  width: 218px;
  height: 151px;
  transform: rotate(180deg);
}


@media (max-width: 768px) {
  .content-with-images .content-image-border-left,
  .content-with-images .content-image-border-right {
    width: 0;
    height: 0;
  }

  .content-with-images .content-image-left,
  .content-with-images .content-image-right {
    transform: translateX(0);
  }

  .content-with-images .content-typography.content-left > div,
  .content-with-images .content-typography.content-right > div {
    margin-top: 50px;
  }
}