/* qestion */
.cargo__qustionWrapper {
  padding: 120px 212px;
}

.cargo__qustion {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.cargo__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cargo__qustionTitle {
  color: #000;
  font-size: 48px;
  font-family: sans-serif;
  font-weight: 800;
  line-height: 90%;
  width: 450px;
}

.cargo__qustionSubtitle {
  max-width: 430px;
  color: #2d2f33;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.cargo__cargoLists {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 550px;
}

.cargo__titleList {
  font-family: "Roboto Bold";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  transition: 0.2s ease-in-out;
}

.cargo__titleList:hover {
  cursor: pointer;
  transition: 0.2s ease-in-out;
  color: #ed7033;
}

.cargo__listQuestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 28px;

  font-family: "Roboto Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  color: #000000;
}

.cargo__listQuestion__number {
  color: #ddd;
  font-size: 24px;
  font-family: "Roboto Bold";
}

.cargo__listQuestion__content {
  display: flex;
  align-items: center;
  gap: 26px;
}

.cargo__listAnswer {
  display: grid;
  gap: 16px;
  overflow: hidden;
  transition: height 500ms ease-out;
  padding-top: 15px;
  color: #000;
  font-family: "Roboto Regular";
  line-height: 110%;
  font-size: 16px;
  padding: 15px 54px 0;
}

.cargo__simvol__wrapper {
  border-radius: 50%;
  background-color: #ddd;
  padding: 12px;
  transition: 0.2s ease-in-out;
}

.cargo__simvol__wrapper.active {
  background-color: #ed7033;
  border-radius: 50%;
  padding: 12px;
  transition: 0.2s ease-in-out;
}

.cargo__simvol {
  position: relative;
  width: 14px;
  height: 14px;
}

.cargo__verticalLine {
  position: absolute;
  height: 100%;
  width: 1px;
  display: block;
  background-color: #fff;

  transition: transform 0.5s;
  left: 49%;
}

.cargo__horizonLine {
  position: absolute;
  height: 100%;
  width: 1px;
  display: block;
  background-color: #fff;

  left: 49%;
}

@media screen and (max-width: 1024px) {
  .cargo__qustionWrapper {
    padding: 60px 20px;
  }

  .cargo__qustion {
    flex-direction: column;
    gap: 20px;
  }

  .cargo__qustionTitle {
    font-size: 24px;
    width: 100%;
  }

  .cargo__qustionSubtitle {
    width: 100%;
    max-width: none;
    font-size: 16px;
  }

  .cargo__cargoLists {
    width: 100%;
    gap: 10px;
  }

  .cargo__simvol__wrapper {
    padding: 9px;
  }

  .cargo__listQuestion {
    padding-bottom: 24px;
  }

  .cargo__simvol__wrapper.active {
    padding: 9px;
  }

  .cargo__listAnswer {
    padding: 16px 0 0 0;
  }
}

@media screen and (max-width: 500px) {

  .cargo__titleList {
    font-size: 14px;
  }
}
