.powers {
  background-image: url(../img/workshop.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  padding: 11vh 0;
  /* height: 100vh; */
}

.powers-heading {
  font-size: 85px;
  text-align: center;
}

.powers-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  width: 90%;
  margin: 40px auto;
}

.powers-content .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 50px 25px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  background: linear-gradient(
    165.17deg,
    rgba(255, 255, 255, 0.45) -12.54%,
    rgba(255, 255, 255, 0.18) -12.53%,
    rgba(255, 255, 255, 0.045) 117.09%
  );
  backdrop-filter: blur(5px);

  border-radius: 20px;
}

.powers-content .item .logo {
  width: 50%;
  aspect-ratio: 1/1;
}

.powers-content .item .logo img {
  width: 100%;
}

.powers-content .item .heading {
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.powers-content .item .inner {
  color: white;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
}

@media only screen and (max-width: 970px)
{
  .powers-content
  {
    width: 100%;
    padding: 0 20px;
  }
  .powers-content .item .inner
  {
    padding: 0;
  }
}

@media only screen and (max-width: 850px)
{
  .powers-content
  {
    flex-direction: column;
    width: 50%;
    gap: 45px;
  }
  .powers-content .item .inner
  {
    padding: 0 30px;
  }
}


@media only screen and (max-width: 800px)
{
  .powers-content
  {
    width: 60%;
  }
  .powers-content .item .inner
  {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 650px)
{
  .powers-content
  {
    width: 65%;
  }
  .powers-content .item .inner
  {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 510px)
{
  .powers-content
  {
    width: 75%;
  }
  .powers-content .item .inner
  {
    padding: 0;
  }
}

@media only screen and (max-width: 450px)
{
  .powers-content
  {
    width: 90%;
  }
}