header {
  background-color:white;
  display: flex;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 2000;
}

.container-fluid {
  padding-right: 27px;
  padding-left: 27px;
  min-height: 100vh;
}

.spacer {
  width: 100%;
  height: 60px;
}
.model_container {
  display: block;
  position: relative;
}
.landing_slide_category {
  max-width: 95%;
  margin: 0 auto;
  padding-bottom: 10px;
}
.model_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px;
  color: #fff;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.6);*/
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  word-break: break-word;
  /*opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;*/
}
/*.model_caption:hover {
  opacity: 1;
}*/
.model_caption h5 {
  font-size: 35px;
  font-weight: bold;
  text-align: start;
}
.landing_discount_label {
  position: absolute;
  bottom: 0;
  left: 0;
  /* padding: 10px; */
  color: red;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.6);*/
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  word-break: break-word;
  text-transform:uppercase;
  /*opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;*/
}
.landing_discount_label h5 {
  font-size: 28px;
  font-weight: bold;
  text-align: start;
  width:100%;
  padding:5px;
  text-align:center;
  color:#fff;
  background-color:#464444;
}
/*responsive box categorie*/
@media screen and (max-width: 1130px) {
  .model_caption {
    padding: 30px;
  }
  .model_caption h5 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .model_caption {
    padding: 30px;
  }
  .model_caption h5 {
    font-size: 35px;
  }
  .swiper-button-prev {
    left: 5px;
  }
  .swiper-button-next {
    right: 5px;
  }
}
@media screen and (max-width: 500px) {
  .model_caption {
    padding: 25px;
  }
  .model_caption h5 {
    font-size: 20px;
  }
  .swiper-button-prev {
    left: 0px;
    --swiper-navigation-size: 30px;
  }
  .swiper-button-next {
    right: 0px;
    --swiper-navigation-size: 30px;
  }
	.landing_discount_label h5 {
	  font-size: 20px;
	  font-weight: bold;
	  text-align: start;
	  width:100%;
	  padding:5px;
	  text-align:center;
	  color:#fff;
	  background-color:#ae3f5a;
	}  
}
@media screen and (max-width: 320px) {
  .model_caption {
    padding: 20px;
  }
  .model_caption h5 {
    font-size: 15px;
  }
  .swiper-button-prev {
    left: 0px;
  }
  .swiper-button-next {
    right: 0px;
  }
}

.logo-img {
  height: 55px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.main-title {
  font-size: 25px;
  padding-left: 10px;
  font-weight: bold;
  color: #7c243a;
  font-family: "Noto Sans";
}

h4.landing_category_name {
  color: #444444;
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 5px;
}
a.model_container.coming_soon {
  cursor: default;
  background-color: black;
}
a.model_container.coming_soon img {
  opacity: 0.6;
}

a.model_container.coming_soon p {
  color: #f0d0b4;
  font-size: 1.55rem;
}

.coming_soon .model_caption {
  opacity: 1;
  align-items: center;
}
.claim {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #444444;
  padding-bottom: 20px;
}
@media screen and (max-width: 800px) {
    .claim {
      font-size: 17px;
    }
}

.swiper-container {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev {
  color: #fff;
  animation: button-prev-anim 1s ease-in-out infinite;
}
.swiper-button-next {
  color: #fff;
  animation: button-next-anim 1s ease-in-out infinite;
}

@keyframes button-prev-anim {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 0);
  }
}
@keyframes button-next-anim {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 0);
  }
}


.scrollToTopBtn {
  background-color: #ae3f5a;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 18px;
  line-height: 48px;
  width: 48px;
  /* place it at the bottom right corner */
  position: fixed;
  bottom: 30px;
  right: 30px;
  /* keep it at the top of everything else */
  z-index: 100;
  /* hide with opacity */
  opacity: 0;
  /* also add a translate effect */
  transform: translateY(100px);
  /* and a transition */
  transition: all 0.5s ease;
  display: flex;
  /* text-align: center; */
  justify-content: center;
  align-items: center;
}

.scrollToTopBtn:focus {
  outline: none;
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 800px) {
  header {
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .logo-img {
    height: 45px;
  }
  .spacer {
    height: 50px;
  }
  .main-title {
    font-size: 20px;
    padding: 7px;
  }
  h4.landing_category_name {
    text-align: center;
    font-size: 1rem;
  }
  a.navbar-brand img {
    margin-top: 0px;
    vertical-align: baseline;
  }
  /*.model_caption h5 {
    font-size: 13px;
    margin: 0;
  }*/
  a.model_container.coming_soon p {
    font-size: 20px;
    margin: 0;
  }
  /*.model_caption {
    opacity: 1;
    height: auto;
    text-align: center;
  }*/
  .coming_soon .model_caption {
    height: 100%;
  }
}

@media screen and (min-width: 2100px) {
  h4.landing_category_name {
    font-size: 1.7rem;
  }
  .claim {
    font-size: 28px;
  }
}

@media screen and (min-width: 2500px) {
  h4.landing_category_name {
    font-size: 1.8rem;
  }

  .claim {
    font-size: 35px;
  }
}
