@font-face {
  font-family: "Shiseido_Bold";
  src: url("./fonts/ShiseidoGinza-Bold.woff2") format("woff2"), url("./fonts/ShiseidoGinza-Bold.woff") format("woff"), url("./fonts/ShiseidoGinza-Bold.eot") format("eot");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shiseido_Light";
  src: url("./fonts/ShiseidoGinza-Light.woff2") format("woff2"), url("./fonts/ShiseidoGinza-Light.woff") format("woff"), url("./fonts/ShiseidoGinza-Light.eot") format("eot");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.dp-men {
  font-family: "ReaderRegular", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0 auto;
  --WIDTH: 1002px;
  --FONT-SHISEIDO-BOLD: "Shiseido_Bold", Arial, sans-serif;
  --FONT-SHISEIDO-LIGHT: "Shiseido_Light", Arial, sans-serif;
  --FONT-READER-BOLD: "ReaderBold", Arial, sans-serif;
}

.dp-men * {
  box-sizing: border-box;
  margin: 0;
}

.dp-men-wrapper {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.dp-men-discover-button {
  font-size: calc(19 / 1002 * var(--WIDTH));
  height: calc(48 / 1002 * var(--WIDTH));
  padding: 0 calc(20 / 1002 * var(--WIDTH));
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background-color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}

.dp-men-shop-now {
  font-size: calc(19 / 1002 * var(--WIDTH));
  text-decoration: none;
  height: calc(49 / 1002 * var(--WIDTH));
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
}

.dp-men-shop-now > span {
  height: 100%;
  padding: 0 calc(10 / 1002 * var(--WIDTH));
  display: flex;
  justify-content: center;
  align-items: center;
}

.dp-men-shop-now > span:first-child {
  color: #000;
  background-color: #fff;
  white-space: nowrap;
}

.dp-men-shop-now > span:nth-child(2) {
  color: #fff;
  background-color: #000;
}

.dp-mobile {
  display: none;
}

@media screen and (max-width: 1002px) {
  .dp-men {
    --WIDTH: 100vw;
  }
}

@media screen and (max-width: 767px) {
  .dp-desktop {
    display: none;
  }

  .dp-mobile {
    display: block;
  }

  .dp-men-shop-now {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .dp-men-discover-button {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 20px;
    height: 40px;
  }

  .dp-men-shop-now > span {
    padding: 0 15px;
    white-space: nowrap;
  }
}

/************/
/** HEADER **/
/************/

.dp-men-header {
  position: relative;
}

.dp-men-header__wrapper {
  max-width: 1002px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.dp-men-header__background {
  width: 100%;
  display: block;
}

.dp-men-header__container-text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: calc(457 / 1002 * var(--WIDTH));
  padding-right: calc(70 / 1002 * var(--WIDTH));
}

.dp-men-header__logo {
  width: calc(301 / 1002 * var(--WIDTH));
  display: block;
}

.dp-men-header__new {
  font-size: calc(30 / 1002 * var(--WIDTH));
  background-color: #db0022;
  font-family: var(--FONT-SHISEIDO-BOLD);
  padding: 0 calc(15 / 1002 * var(--WIDTH));
  height: calc(39 / 1002 * var(--WIDTH));
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(50 / 1002 * var(--WIDTH));
}

.dp-men-header__subtitle {
  font-size: calc(30 / 1002 * var(--WIDTH));
  line-height: calc(38 / 1002 * var(--WIDTH));
  margin-top: calc(20 / 1002 * var(--WIDTH));
  font-weight: normal;
  font-family: var(--FONT-SHISEIDO-BOLD);
  padding-left: calc(15 / 1002 * var(--WIDTH));
}

.dp-men-header__p {
  font-size: calc(18 / 1002 * var(--WIDTH));
  line-height: calc(26 / 1002 * var(--WIDTH));
  margin-top: calc(15 / 1002 * var(--WIDTH));
  padding-left: calc(15 / 1002 * var(--WIDTH));
}

.dp-men-header__discover {
  margin-top: calc(25 / 1002 * var(--WIDTH));
  margin-left: calc(15 / 1002 * var(--WIDTH));
}

@media screen and (min-width: 768px) {
  .dp-men-header__background {
    display: block;
    height: 645px;
    width: auto;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1002px) and (min-width: 768px) {
  .dp-men-header__background {
    height: calc(645 / 1002 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .dp-men-header__wrapper {
    position: initial;
    left: 0;
    transform: none;
  }

  .dp-men-header__container-text {
    top: 0;
    transform: none;
    padding: 0;
    width: 100%;
    padding-top: calc(calc(30 / 375 * var(--WIDTH)) + 50px);
  }

  .dp-men-header__logo {
    width: calc(206 / 375 * var(--WIDTH));
    margin-left: auto;
    margin-right: auto;
  }

  .dp-men-header__new {
    height: calc(27 / 375 * var(--WIDTH));
    font-size: calc(20 / 375 * var(--WIDTH));
    padding: 0 calc(10 / 375 * var(--WIDTH));
    margin-right: 18px;
    margin-left: auto;
    display: flex;
    width: fit-content;
    margin-top: calc(30 / 375 * var(--WIDTH));
  }

  .dp-men-header__subtitle {
    margin-top: calc(300 / 375 * var(--WIDTH));
  }

  .dp-men-header__subtitle {
    font-size: calc(25 / 375 * var(--WIDTH));
    line-height: calc(29 / 375 * var(--WIDTH));
    text-align: center;
  }

  .dp-men-header__p.dp-mobile {
    padding: 20px 20px 30px 20px;
    font-size: 14px;
    line-height: 19px;
  }

  .dp-men-header__discover {
    width: 210px;
    color: #fff;
    background-color: #000;
    height: 40px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }

  .dp-men-header__discover.dp-desktop {
    display: none;
  }
}

/***********/
/** BLOCK **/
/***********/

.dp-men-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dp-men-block[data-direction="row-reverse"] {
  flex-direction: row-reverse;
}

.dp-men-block > div {
  width: 50%;
}

.dp-men-block__container-img {
  position: relative;
  z-index: 1;
}

.dp-men-block__container-img img {
  display: block;
  width: 100%;
}

.dp-men-block__title {
  font-size: calc(27 / 1002 * var(--WIDTH));
  line-height: calc(29 / 1002 * var(--WIDTH));
  text-transform: uppercase;
  font-family: var(--FONT-READER-BOLD);
}

.dp-men-block__p {
  font-size: calc(18 / 1002 * var(--WIDTH));
  line-height: calc(29 / 1002 * var(--WIDTH));
  margin-top: calc(40 / 1002 * var(--WIDTH));
}

.dp-men-block__mention {
  font-size: calc(12 / 1002 * var(--WIDTH));
}

.dp-men-block__container-text {
  padding-left: calc(60 / 1002 * var(--WIDTH));
  padding-right: calc(60 / 1002 * var(--WIDTH));
  position: relative;
}

.dp-men-block__price {
  position: absolute;
  bottom: calc(30 / 1002 * var(--WIDTH));
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .dp-men-block,
  .dp-men-block[data-direction="row-reverse"] {
    flex-direction: column;
  }

  .dp-men-block > div {
    width: 100%;
  }

  .dp-men-block__price {
    bottom: calc(10 / 375 * var(--WIDTH));
  }

  .dp-men-block__container-text {
    padding: 30px 20px 40px 20px;
  }

  .dp-men-block__title {
    font-size: 14px;
    line-height: 15px;
  }

  .dp-men-block__title br {
    display: none;
  }

  .dp-men-block__p {
    font-size: 14px;
    line-height: 19px;
  }

  .dp-men-block__mention {
    font-size: 9px;
  }
}

/*****************/
/** LARGE BLOCK **/
/*****************/

.dp-men-large-block {
  position: relative;
}

.dp-men-large-block__container-img img {
  width: 100%;
  display: block;
}

.dp-men-block-6 .dp-men-large-block__container-img img {
  position: relative;
  left: 100%;
  transform: translateX(-100%);
}

.dp-men-large-block__container-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.dp-men-large-block__p {
  font-size: calc(30 / 1002 * var(--WIDTH));
  line-height: calc(38 / 1002 * var(--WIDTH));
  font-family: var(--FONT-SHISEIDO-LIGHT);
  color: #fff;
}

.dp-men-large-block__discover {
  margin-top: calc(20 / 1002 * var(--WIDTH));
}

.dp-men-large-block__mention {
  font-size: calc(12 / 1002 * var(--WIDTH));
  position: absolute;
  bottom: calc(50 / 1002 * var(--WIDTH));
  left: calc(60 / 1002 * var(--WIDTH));
  color: #fff;
}

@media screen and (min-width: 768px) {
  .dp-men-large-block__container-img img {
    display: block;
    height: 692px;
    width: auto;
    max-width: none;
  }

  .dp-men-block-6 .dp-men-large-block__container-img img {
    height: 695px;
  }
}

@media screen and (max-width: 1002px) and (min-width: 768px) {
  .dp-men-large-block__container-img img {
    height: calc(692 / 1002 * 100vw);
  }

  .dp-men-block-6 .dp-men-large-block__container-img img {
    height: calc(695 / 1002 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .dp-men-large-block__p {
    font-size: calc(12 / 375 * var(--WIDTH));
    line-height: calc(15 / 375 * var(--WIDTH));
  }

  .dp-men-large-block__discover {
    margin-top: 20px;
  }

  .dp-men-large-block__mention {
    font-size: calc(9 / 375 * var(--WIDTH));
    bottom: calc(7 / 375 * var(--WIDTH));
    left: calc(20 / 375 * var(--WIDTH));
  }
}

/************/
/** CUSTOM **/
/************/

.dp-men-block-3 .dp-men-large-block__container-text {
  left: calc(600 / 1002 * var(--WIDTH));
}

.dp-men-block-6 .dp-men-large-block__container-text {
  left: calc(60 / 1002 * var(--WIDTH));
}

.dp-men-block-8 .dp-men-block__container-text {
  position: relative;
}

.dp-men-block-8 .dp-men-block__container-text::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(355 / 1002 * var(--WIDTH));
  height: calc(346 / 1002 * var(--WIDTH));
  right: calc(-127.5 / 1002 * var(--WIDTH));
  top: 50%;
  transform: translateY(-50%);
  background-image: url(./images/texture.jpg);
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}

.dp-men-block-8 .dp-men-block__p {
  max-width: calc(200 / 1002 * var(--WIDTH));
  width: 100%;
}

@media screen and (min-width: 1003px) {
  .dp-men-block-3 .dp-men-large-block__container-text {
    left: calc(700 / 1002 * var(--WIDTH));
  }

  .dp-men-block-6 .dp-men-large-block__container-text {
    left: calc(100 / 1002 * var(--WIDTH));
  }

  .dp-men-block-8 .dp-men-block__p {
    max-width: calc(350 / 1440 * 100vw);
  }

  .dp-men-block-8 .dp-men-block__container-text::before {
    right: calc(-183.5 / 1002 * var(--WIDTH));
  }
}

@media screen and (min-width: 1240px) {
  .dp-men-block-3 .dp-men-large-block__container-text {
    left: calc(800 / 1002 * var(--WIDTH));
  }

  .dp-men-block-6 .dp-men-large-block__container-text {
    left: calc(300 / 1002 * var(--WIDTH));
  }
}

@media screen and (min-width: 1440px) {
  .dp-men-block-8 .dp-men-block__p {
    max-width: calc(385 / 1440 * 1440px);
  }
}

@media screen and (max-width: 767px) {
  .dp-men-block-6 .dp-men-large-block__p br {
    display: none;
  }

  .dp-men-block-6 .dp-men-large-block__p {
    max-width: calc(126 / 375 * var(--WIDTH));
    width: 100%;
  }

  .dp-men-block-6 .dp-men-large-block__container-text {
    left: calc(20 / 375 * var(--WIDTH));
  }

  .dp-men-block-7 {
    margin-top: 38px;
  }

  .dp-men-block-8 .dp-men-block__p {
    max-width: calc(240 / 375 * var(--WIDTH));
  }

  .dp-men-block-8 .dp-men-block__container-text {
    min-height: 275px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }

  .dp-men-block-8 .dp-men-block__container-text::before {
    height: 218px;
    width: 224px;
    top: 15px;
    transform: none;
    right: -112px;
  }
}

/**************/
/** PRODUCTS **/
/**************/

.dp-men-products {
  color: #fff;
  padding: 60px;
  background-color: #000;
}

.dp-men-products__wrapper {
  max-width: 1002px;
  width: 100%;
  margin: 0 auto;
}

.dp-men-products__title {
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.dp-men-products__container {
  margin-top: 60px;
}

.dp-men-products__item-title,
.dp-men-products__item-subtitle {
  font-size: 14px;
}

.dp-men-products__item-title {
  margin-top: 30px;
}

.dp-men-products__item-subtitle {
  font-weight: bold;
  margin-top: 5px;
}

.dp-men-products__item {
  text-align: center;
  padding: 0 20px;
}

.dp-men-products__item-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-right: 10px;
}

.dp-men-products__price {
  margin-top: 30px;
}

.dp-men-block__img {
  width: 100%;
}

.dp-men-products__item[data-product-1] .dp-men-block__img {
  max-width: 187px;
}

.dp-men-products__item[data-product-2] .dp-men-block__img {
  max-width: 105px;
}

.dp-men-products__item[data-product-3] .dp-men-block__img {
  max-width: 76px;
}

.dp-men-products__item-img {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .dp-men-products__item-title,
  .dp-men-products__item-subtitle {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .dp-men-products {
    padding: 35px 0;
  }

  .dp-men-products__title {
    font-size: 14px;
  }

  .dp-men-products__item-img {
    height: 180px;
  }

  .dp-men-products__container {
    padding-bottom: 40px;
  }

  .dp-men-products .slick-dots li.slick-active {
    background: #fff;
    border-color: #fff;
  }

  .dp-men-products .slick-dots {
    bottom: 0;
  }
}

/******************/
/** CUSTOM LANG  **/
/******************/

@media screen and (min-width: 768px) {
  .dp-men[data-lang="FR"] .dp-men-header__container-text,
  .dp-men[data-lang="IT"] .dp-men-header__container-text,
  .dp-men[data-lang="DE"] .dp-men-header__container-text {
    padding-right: calc(20 / 1002 * var(--WIDTH));
  }

  .dp-men[data-lang="FR"] .dp-men-header__subtitle {
    font-size: calc(26 / 1002 * var(--WIDTH));
    line-height: calc(34 / 1002 * var(--WIDTH));
  }

  .dp-men[data-lang="FR"] .dp-men-block__container-text,
  .dp-men[data-lang="IT"] .dp-men-block__container-text,
  .dp-men[data-lang="DE"] .dp-men-block__container-text {
    padding-left: calc(40 / 1002 * var(--WIDTH));
    padding-right: calc(40 / 1002 * var(--WIDTH));
  }
}

@media screen and (max-width: 767px) {
  .dp-men[data-lang="FR"] .dp-men-header__subtitle {
    font-size: calc(22 / 375 * var(--WIDTH));
    line-height: calc(26 / 375 * var(--WIDTH));
  }

  .dp-men[data-lang="DE"] .dp-men-block-6 .dp-men-large-block__p {
    max-width: calc(160 / 375 * var(--WIDTH));
  }
}
