/* mob */

.main-screen__title {
  word-break: break-word;
}

.desk {
  display: none;
}


.calculation__h2 {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 10px;
}

.calculation__subtitile {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #242424;
  margin-bottom: 30px;
}

.calculation__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;


}

.calculation__item {
  background: #f4f4f4;
  padding: 16px;
}


.listing {
  position: relative;
  padding-left: 20px;
}

.listing::before {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #69cccb;
}

.calculation__subtitle {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 15px;

}


.calculation-text {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  color: #242424;
  margin-bottom: 10px;
}

.calculation-text-nobold {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #242424;
}

.offset-compensation {
  margin-top: 10px;
}

.calculation__sublist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;

}

.calculation__subitem {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #242424;

}

.sublisting {
  position: relative;
  padding-left: 20px;
}

.sublisting::before {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #69cccb;
}

#calculation .recount__image {
  margin-bottom: 30px;
}

/* ------------------------------------------------------------- */


@media (min-width: 630px) {
  .mob {
    display: none;
  }

  .desk {
    display: block;
  }
}

@media screen and (min-width: 993px) {
  .calculation__h2 {
    margin-bottom: 20px;
  }

  .calculation__item {
    padding: 30px;
  }

  .calculation__item::before {
    top: 12px;
  }

  .calculation__subtitle {
    line-height: 1.5;

  }

  .calculation__sublist {
    padding-left: 20px;
  }

  .calculation__subitem {}

  #calculation .recount__image {
    margin-bottom: 50px;
  }
}