

/** BASE **/

 .DP_BANNER {
  height: 120px;
  max-width: 996px;
  background-color: #151819;
  color: #000;
  display: block;
  position: relative;
  font-family: "Lucas", "NespressoLucas";
  font-weight: 400;
  box-sizing: border-box;
  margin: 0 auto;
  z-index: 1;
}

.DP_BANNER * {
  line-height: 1em;
  box-sizing: border-box;
}

.DP_BANNER .bannerContainer {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.DP_BANNER .modalities {
  font-weight: 300;
  font-size: 10px;
  position: absolute;
  bottom: 2px;
  right: 3px;
  color: #fff;
}

.DP_BANNER .modalities a {
  opacity: 0.8;
  color: #fff;
}

.DP_BANNER .bold {
  font-weight: 700;
}

.DP_BANNER .bannerBase {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.DP_BANNER .bannerContent {
  height: 100%;
  display: block;
  justify-content: center;
  align-items: center;
}

.DP_BANNER .bannerContainer .modalities {
  display: block;
}

.DP_BANNER .orange {
  color: #c89b59;
}

.DP_BANNER .bannerImg {
  width: 50%;
  height: 100%;
}

.DP_BANNER .bannerImg img {
  height: 100%;
  object-fit: contain;
}

.DP_BANNER .bannerTxt {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  padding: 10px;
}

.DP_BANNER .bannerTxt > div {
  line-height: 0.8em;
}

.DP_BANNER .dp_number {
  font-size: 70px;
  padding-right: 10px;
  font-weight: 700;
}

.DP_BANNER .bannerTxt > div:nth-child(2) {
  font-size: 42px;
  font-weight: 500;
}

.DP_BANNER .is_mobile {
  display: none;
}

.DP_BANNER .is_desktop {
  display: block;
}

.DP_BANNER .is_tiny {
  display: none;
}

@media screen and (max-width: 925px) {
  .DP_BANNER .is_tiny {
    display: block;
  }

  .DP_BANNER .bannerImg {
    flex-grow: 1;
  }

  .DP_BANNER .bannerTxt {
    width: 40%;
    justify-self: flex-end;
  }

  .DP_BANNER .bannerTxt > div:nth-child(2) {
    font-size: 30px;
  }
}

@media screen and (max-width: 780px) {
  .DP_BANNER .is_mobile {
    display: block;
  }

  .DP_BANNER .is_desktop {
    display: none;
  }

  .DP_BANNER .bannerImg {
    width: 40%;
    flex-grow: 0;
  }

  .DP_BANNER .bannerTxt {
    width: 70%;
  }
}

@media screen and (max-width: 600px) {
  .DP_BANNER .bannerImg {
    width: 50%;
  }

  .DP_BANNER .bannerTxt {
    width: 50%;
  }
}

/** MOBILE **/

@media screen and (max-width: 500px) {
  .DP_BANNER .is_mobile {
    display: block;
  }

  .DP_BANNER .is_desktop {
    display: none;
  }

  .DP_BANNER .bannerTxt {
    font-size: 25px;
    width: 50%;
  }

  .DP_BANNER .dp_number {
    font-size: 60px;
  }

  .DP_BANNER .bannerTxt > div:nth-child(2) {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  .DP_BANNER .bannerImg {
    z-index: -1;
    position: relative;
    left: -40px;
  }

  .DP_BANNER .bannerTxt {
    font-size: 20px;
  }
}

@media screen and (max-width: 430px) {
  .DP_BANNER .bannerImg {
    left: -50px;
  }
}

@media screen and (max-width: 350px) {
  .DP_BANNER .bannerTxt {
    font-size: 17px;
  }

  .DP_BANNER .dp_number {
    font-size: 40px;
  }
}