.beginners-guide-header{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 0px 0px 20px;
}

.beginners-guide-layout {
  display: flex;
  padding: 24px;
  gap: 16px;
  position: relative;
}
.number-title {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: -10px;
}

h6.beginners-guide-number {
  color: var(--text-main-text, #FFF);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.beginners-guide-number{
  display: flex;
  width: 35px;
  height: 35px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--guide-number-bg, #00648F);
}

.beginners-guide-title{
  color: #FFEA00;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.beginners-guide-text{
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-right: 10px;
}

img.beginners-guide-image {
  width: 100px;
  height: 80px;
}

.beginners-guide-layout::after {
  content: "";
  width: calc(100% - 48px);
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  background: #00648F;
}

.beginners-guide-layout:last-child::after{
  display: none;
}
