@font-face {
  font-family: "Gotham_Light";
  src: url("../fonts/GothamLight.eot");
  src: url("../fonts/GothamLight.eot") format("embedded-opentype"),
    url("../fonts/GothamLight.woff2") format("woff2"),
    url("../fonts/GothamLight.woff") format("woff"),
    url("../fonts/GothamLight.ttf") format("truetype"),
    url("../fonts/GothamLight.svg#GothamLight") format("svg");
}

/*********************************************************/
/*********************************************************/
/*********************************************************/
.dp-howto {
  width: 100%;
  margin: 0 auto;
  max-width: 1050px;
  text-align: center;
  background-color: #fff;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  --FONT-CLARINS: "ClarinsRegular", "Clarins";
  --FONT-GOTHAM-LIGHT: "Gotham_Light";
  --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
  --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", "GothamMedium", Helvetica, Arial, sans-serif;
  font-family: var(--FONT-GOTHAM-BOOK);
  padding-top: 64px;
}


.dp-howto-cta {

  background-color: #fff;
  display: inline-block;
  color: #333;
  padding: 10px 20px;
  text-transform: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  cursor: pointer;
  border: 1px solid #B0A9A5;
  min-width: 180px;
  text-align: center;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  outline: 0;
}

.dp-howto-cta * {
  color: #333;
  text-decoration: none;
}

.dp-howto-cta:hover {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, .15);
}

.dp-howto-cta:focus-visible {
  box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

.dp-howto__title {
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
  font-family: var(--FONT-GOTHAM-BOOK);
  text-align: center;
  display: inline-block;
  background-color: #fff;
  font-weight: normal;
  padding: 20px;
}

.dp-howto__title::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #f1f0f0;
  display: block;
  z-index: -1;
  left: 0;
  margin-top: calc(0.5em - 1px);
}

.dp-howto__steps {
  display: flex;
  width: 100%;
  max-width: 1048px;
  margin: 0 auto;
  --swiper-pagination-bottom: 24px;
  --swiper-pagination-color: #333;
}

.dp-howto__steps .swiper-wrapper {
  padding-bottom: 64px;
  display: flex;
}

.dp-howto__steps .swiper-slide {
  background-color: #fdfaf8;
  height: auto;
}

.dp-howto-step {
  width: 335px;
  padding: 35px;
  box-sizing: border-box;
  text-align: left;
  margin: 0 auto;
  margin-top: 120px;
  position: relative;

}

.dp-howto-step__num {
  font-family: var(--FONT-GOTHAM-LIGHT);
  color: #333;
  text-align: right;
  position: absolute;
  font-size: 270px;
  top: -120px;
  pointer-events: none;
  line-height: 1em;
  right: 0;
}

.dp-howto-step:first-child .dp-howto-step__num {
  right: 40px;
}

.dp-howto-step__visual {
  display: block;
  max-width: 100%;
  margin-top: -140px;
  margin-bottom: -20px;
}

.dp-howto-step__duration {
  font-family: var(--FONT-CLARINS);
  color: #333;
  font-size: 18px;
  text-transform: uppercase;
  background-color: #fff;
  transform: rotate(-4deg);
  transform-origin: top left;
  display: inline-block;
  box-shadow: -3px 3px 4px rgba(0, 0, 0, 0.2);
  margin: 10px 25px;
  padding: 6px 10px;
}

.dp-howto-step__name {
  font-family: var(--FONT-GOTHAM-MEDIUM);
  font-size: 16px;
  margin: 0;
  font-weight: normal;
  line-height: 1.2em;
}

.dp-howto-step__text {
  font-family: var(--FONT-GOTHAM-BOOK);
  font-size: 14px;
  margin: 0;
  margin-top: 15px;
  font-weight: normal;
  line-height: 1.4em;
}

@media(max-width:1023px) {
  .dp-howto__steps {
    width: 335px;
    padding: 0;
    margin-bottom: 70px;
  }

  .dp-howto-step {
    width: 335px;
  }

}