@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap");

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

html,
body,
div,
h2,
p {
  box-sizing: border-box;
}

.project-in-progress-plug {
  width: 100%;
  height: 100%;
  padding: 20px 20vh;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 50vw;
  position: relative;
  z-index: 2;
}

.img {
  width: 100%;
  height: auto;
}

.img-wrapper {
  display: flex;
  max-width: 90%;
}

.text {
  margin-top: 5vh;
  font-family: "Inter";
}

.text-heading {
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.text-description {
  margin-top: 20px;
  font-size: 1.65vw;
  font-weight: 500;
  line-height: 1.2;
  color: #787878;
}

.tape {
  position: absolute;
  right: -350px;
  bottom: -350px;
  z-index: 1;
  max-height: 100%;
}

@media (max-width: 768px) {
  .project-in-progress-plug {
    padding: 10vh 15px 10px;
  }

  .content {
    max-width: 100%;
  }

  .img-wrapper {
    max-width: 100%;
  }

  .text-heading {
    font-size: 48px;
  }

  .text-description {
    font-size: 16px;
    line-height: 25px;
  }

  .tape {
    right: auto;
    bottom: auto;
    width: auto;
    height: 80%;
    top: -38%;
    left: -38%;
  }
}

.bc-tross-animate {
  animation: animateTross 7.5s linear infinite;
}

.bc-dot-1 {
  animation: animateDot1 2.3s ease-in-out infinite;
}

@keyframes animateTross {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(45px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes animateDot1 {
  0% {
    fill: #fff;
  }
  50% {
    fill: red;
  }
  100% {
    fill: #fff;
  }
}
