/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
section.intro {
  overflow: hidden;
}
section.intro picture {
  position: absolute;
  width: 912px;
  bottom: -64px;
  left: 33%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  section.intro picture {
    width: 668px;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
}
section.intro .c_checkmarks_list {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: 12px 24px;
  margin: 24px 0 8px;
}
@media screen and (max-width: 768px) {
  section.intro .c_checkmarks_list {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 600px) {
  section.intro .c_checkmarks_list {
    grid-template-columns: auto;
    margin: 16px 0 0;
  }
}
section.intro .portfolios_slider {
  overflow: visible;
  margin: 64px 0 24px;
}
@media screen and (max-width: 600px) {
  section.intro .portfolios_slider {
    margin: 24px 0;
  }
}
section.intro .portfolios_slider .swiper-slide:nth-child(odd) .c_portfolio_card {
  background-color: rgba(255, 255, 255, 0.15);
}
section.intro .portfolios_slider .c_portfolio_card {
  width: 282px;
  height: 100%;
  padding: 24px;
}

section.profitability .circle {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  section.profitability .circle {
    display: none;
  }
}
section.profitability .calculator {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  section.profitability .calculator {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  section.profitability .calculator > * {
    grid-column: span 2;
  }
}
@media screen and (max-width: 767px) {
  section.profitability .calculator > * {
    grid-column: auto;
  }
}
section.profitability .calculator > *:nth-child(3n+1) {
  grid-column: span 2;
}
@media screen and (max-width: 1024px) {
  section.profitability .calculator > *:nth-child(3n+1) {
    grid-column: span 4;
  }
}
@media screen and (max-width: 767px) {
  section.profitability .calculator > *:nth-child(3n+1) {
    grid-column: auto;
  }
}
section.profitability .total_profit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
}
section.profitability .total_profit > *:first-child {
  font-size: 14px;
  width: min-content;
}
section.profitability .total_profit > *:last-child {
  flex-shrink: 0;
}