/*--------------------------------------------------------------
# SASS Variables and Mixins. Do not output any css in here. if you need these make sure to @use "variables"
--------------------------------------------------------------*/
/*------- Media Query Sizes. Add your own --------*/
/*------- Add your own breakpoints to the grid --------*/
/*--------------------------------------------------------------
Mixins
--------------------------------------------------------------*/
/*------- Retina --------*/
/*------- Deep Shadow Mixin --------*/
/*------- Lighten and shade colors --------*/
/*------- Fluid Font Lock --------*/
/*------- Sort Map by values --------*/
/*------- Grid --------*/
.what-is-prop-trading-block {
  position: relative;
  background: var(--body-bg);
  contain: layout style paint;
  font-display: swap;
}
.what-is-prop-trading-block.background-light {
  background: var(--background-light);
}
.what-is-prop-trading-block.background-dark {
  background: var(--dark-section-bg);
  color: var(--text-on-dark);
}

.what-is-prop-trading-section {
  position: relative;
}
.what-is-prop-trading-section.text-left .what-is-prop-trading__header, .what-is-prop-trading-section.text-center .what-is-prop-trading__header, .what-is-prop-trading-section.text-right .what-is-prop-trading__header {
  text-align: inherit;
}

.what-is-prop-trading__header {
  margin-bottom: calc(30px * 1.5);
  margin-bottom: calc(var(--gap, 30px) * 1.5);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .what-is-prop-trading__header {
    margin-bottom: 30px;
    margin-bottom: var(--gap, 30px);
  }
}

.what-is-prop-trading__title {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font);
  line-height: normal;
  margin: 0;
  color: var(--main-text-color);
  margin: 0 0 20px 0 !important;
}
@media (max-width: 600px) {
  .what-is-prop-trading__title {
    font-size: 20px;
    font-weight: 500;
  }
}

.what-is-prop-trading__description {
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font);
  line-height: normal;
  margin: 0;
  color: var(--main-text-color);
  margin: 0 0 40px 0;
  text-align: left;
}
@media (max-width: 900px) {
  .what-is-prop-trading__description {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__description {
    font-size: 16px;
  }
}
.what-is-prop-trading__description p {
  margin: 0 0 1em 0;
  line-height: normal;
}
.what-is-prop-trading__description p:last-child {
  margin-bottom: 0;
}
.what-is-prop-trading__description a {
  color: var(--dark-blue);
  text-decoration: underline;
}
.what-is-prop-trading__description a:hover {
  color: var(--highlight);
}
.what-is-prop-trading__description strong, .what-is-prop-trading__description b {
  font-weight: 700;
}
.what-is-prop-trading__description em, .what-is-prop-trading__description i {
  font-style: italic;
}
.what-is-prop-trading__description ul, .what-is-prop-trading__description ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}
.what-is-prop-trading__description ul li, .what-is-prop-trading__description ol li {
  margin-bottom: 0.5em;
  line-height: normal;
}
.what-is-prop-trading__description ul li:last-child, .what-is-prop-trading__description ol li:last-child {
  margin-bottom: 0;
}
.what-is-prop-trading__description ul {
  list-style-type: disc;
}
.what-is-prop-trading__description ol {
  list-style-type: decimal;
}

.what-is-prop-trading__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: 15px;
  gap: 15px;
  grid-gap: var(--gutters, 15px);
  gap: var(--gutters, 15px);
  position: relative;
  min-height: 200px;
  contain: layout style;
}
@media (max-width: 900px) {
  .what-is-prop-trading__steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
    min-height: 240px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
  }
  .what-is-prop-trading__steps::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__steps {
    grid-gap: 30px;
    gap: 30px;
    padding: 0;
    min-height: 220px;
  }
}

.what-is-prop-trading__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 250px;
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .what-is-prop-trading__step {
    min-width: 220px;
    max-width: 220px;
  }
}
@media (max-width: 1200px) and (min-width: 900px) {
  .what-is-prop-trading__step {
    min-width: 280px;
    max-width: 280px;
  }
}
@media (max-width: 900px) and (min-width: 600px) {
  .what-is-prop-trading__step {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 280px;
    max-width: 280px;
    width: 280px;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__step {
    flex-direction: column;
    text-align: center;
    padding: 0;
    min-width: 255px;
    max-width: 255px;
    width: 255px;
    border-radius: 16px;
  }
}

.what-is-prop-trading__step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  grid-gap: 15px;
  gap: 15px;
  grid-gap: var(--gutters, 15px);
  gap: var(--gutters, 15px);
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 4px 20px 0px rgba(40, 40, 40, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 250px;
  will-change: transform;
  contain: layout style paint;
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .what-is-prop-trading__step-content {
    height: 220px;
    padding: 18px;
  }
}
@media (max-width: 1200px) and (min-width: 900px) {
  .what-is-prop-trading__step-content {
    height: 220px;
    padding: 16px;
  }
}
@media (max-width: 900px) {
  .what-is-prop-trading__step-content {
    text-align: center;
    height: 220px;
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__step-content {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    grid-gap: 5px;
    gap: 5px;
    height: 188px;
  }
}
.what-is-prop-trading__step-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.background-dark .what-is-prop-trading__step-content {
  background: var(--dark-section-bg);
  color: var(--text-on-dark);
  border-color: var(--border-color);
}

.what-is-prop-trading__step-icon {
  color: var(--highlight);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-is-prop-trading__step-icon .step-icon-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  max-width: 100%;
  min-height: 100%;
}
.what-is-prop-trading__step-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.5;
  color: var(--highlight);
  min-width: 56px;
  min-height: 56px;
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .what-is-prop-trading__step-icon {
    height: 110px;
  }
  .what-is-prop-trading__step-icon .step-icon-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .what-is-prop-trading__step-icon svg {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }
}
@media (max-width: 1200px) and (min-width: 900px) {
  .what-is-prop-trading__step-icon {
    height: 100px;
  }
  .what-is-prop-trading__step-icon .step-icon-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .what-is-prop-trading__step-icon svg {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}
@media (max-width: 900px) {
  .what-is-prop-trading__step-icon {
    width: 100%;
    height: 100px;
  }
  .what-is-prop-trading__step-icon .step-icon-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .what-is-prop-trading__step-icon svg {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__step-icon {
    width: 100%;
    height: 120px;
  }
  .what-is-prop-trading__step-icon .step-icon-image {
    width: 150px;
    height: 120px;
    max-width: 150px;
    min-height: 120px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .what-is-prop-trading__step-icon svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}

.what-is-prop-trading__step-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: calc(15px / 3);
  gap: calc(15px / 3);
  grid-gap: calc(var(--gutters, 15px) / 3);
  gap: calc(var(--gutters, 15px) / 3);
  flex: 1;
}
@media (max-width: 900px) {
  .what-is-prop-trading__step-text {
    text-align: center;
  }
}

.what-is-prop-trading__step-title {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font);
  line-height: normal;
  margin: 0;
  color: var(--main-text-color);
  padding: 12px 16px;
  border-radius: 20px;
  border: 2px solid var(--main-text-color);
}
@media (max-width: 900px) {
  .what-is-prop-trading__step-title {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__step-title {
    font-size: 14px;
  }
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .what-is-prop-trading__step-title {
    font-size: 17px;
    padding: 11px 15px;
  }
}
@media (max-width: 1200px) and (min-width: 900px) {
  .what-is-prop-trading__step-title {
    font-size: 16px;
    padding: 10px 14px;
  }
}
@media (max-width: 900px) {
  .what-is-prop-trading__step-title {
    padding: 10px 14px;
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__step-title {
    padding: 8px 12px;
  }
}

.what-is-prop-trading__arrow {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  z-index: 1;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--black);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.what-is-prop-trading__arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  pointer-events: none;
}
.what-is-prop-trading__arrow:hover {
  background: var(--dark-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1920px) {
  .what-is-prop-trading__arrow {
    right: -43px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .what-is-prop-trading__arrow {
    right: -55px;
  }
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .what-is-prop-trading__arrow {
    right: -30px;
  }
}
@media (max-width: 1200px) and (min-width: 900px) {
  .what-is-prop-trading__arrow {
    right: -32px;
    width: 24px;
    height: 24px;
  }
  .what-is-prop-trading__arrow svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 900px) {
  .what-is-prop-trading__arrow {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
  }
  .what-is-prop-trading__arrow svg {
    width: 18px;
    height: 18px;
  }
  .what-is-prop-trading__arrow:active {
    background: var(--dark-blue);
  }
}
@media (max-width: 600px) {
  .what-is-prop-trading__arrow {
    width: 25px;
    height: 25px;
    right: -27.5px;
    transform: translateY(-50%);
  }
  .what-is-prop-trading__arrow svg {
    width: 16px;
    height: 16px;
  }
  .what-is-prop-trading__arrow:active {
    background: var(--dark-blue);
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-is-prop-trading__step-content,
.what-is-prop-trading__arrow {
    transition: none !important;
  }

  .what-is-prop-trading__step-content:hover {
    transform: none !important;
  }

  .what-is-prop-trading__steps {
    scroll-behavior: auto !important;
  }
}

/*# sourceMappingURL=what-is-prop-trading.css.map*/