.swot-header {
  margin-left: 0.5rem;
  position: relative;
  padding: 1rem;
}
.swot-header::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(red 0%, #f000 90%);
}
.swot-body {
  display: flex;
}
.swot-body .swot-box {
  --w: 260px;
  --gap: calc(var(--w) * 0.15);
  width: var(--w);
  height: 500px;
  border-radius: 10px 10px calc(var(--w) / 2) calc(var(--w) / 2);
  color: #fff;
  padding: calc(var(--gap) / 2);
  position: relative;
  margin: 5px;
  margin: 20px auto;
}
.swot-body .swot-box > CANVAS {
  position: absolute;
  bottom: var(--gap);
  left: var(--gap);
  border-radius: 50%;
}
.swot-body .swot-box:before, .swot-body .swot-box:after {
  position: absolute;
  max-width: 260px;
  width: calc(var(--w) - 2 * var(--gap));
  height: calc(var(--w) - 2 * var(--gap));
  bottom: var(--gap);
  left: var(--gap);
  border-radius: 50%;
  color: white;
  font-size: 4rem;
  font-weight: 600;
}
.swot-body .swot-box:before {
  content: attr(data-letter);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-indent: 0;
}
.swot-body .swot-box:after {
  content: attr(data-value) "%";
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  font-size: 1em;
  line-height: 4rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-indent: 0;
}
@media screen and (min-width: 576px) {
  .swot-body .swot-box {
    --w: 250px;
    --w: 15rem;
  }
}
@media screen and (min-width: 768px) {
  .swot-body .swot-box {
    --w: 190px;
    --w: 16rem;
  }
}
@media screen and (min-width: 992px) {
  .swot-body .swot-box {
    --w: 240px;
    --w: 15rem;
  }
}
@media screen and (min-width: 1200px) {
  .swot-body .swot-box {
    --w: 260px;
    --w: 16rem;
  }
}
.swot-body .swot-box[data-letter=s i] {
  background-color: #d34;
}
.swot-body .swot-box[data-letter=s i]:before {
  background-color: #bd202f;
}
.swot-body .swot-box[data-letter=w i] {
  background-color: #0cd;
}
.swot-body .swot-box[data-letter=w i]:before {
  background-color: #009daa;
}
.swot-body .swot-box[data-letter=o i] {
  background-color: #ac2;
}
.swot-body .swot-box[data-letter=o i]:before {
  background-color: #86a01b;
}
.swot-body .swot-box[data-letter=t i] {
  background-color: #849;
}
.swot-body .swot-box[data-letter=t i]:before {
  background-color: #693476;
}