html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
.roboto-serif-medium {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}
.dm-sans-regular {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.text-blue {
  color: #1252A0
}
.text-red {
  color: #F32A2A
}
.text-secondary {
  color: #FBFBFB!important
}
.hero {
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center center;
}
.hero-product {
  background-image: url(../images/hero-bg-product.webp);
  background-size: cover;
  background-position: center center;
}
.supremex-banner {
  background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/supremex-banner-bg.webp);
  background-size: cover;
  background-position: center center;
}

.arrow-button {
  display: flex;
  color: #212529;
  background-color: transparent;
  padding: 10px 16px;
  border-radius: 20px;
  transition: all .3s ease;
  font-weight: bold;
  cursor: pointer;
  align-items: center;
  font-size: 14px;
}

.arrow-button > .arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #212529;
  border-bottom: 2px solid #212529;
  position: relative;
  transform: rotate(-45deg);
  margin: 0 6px;
  transition: all .3s ease;
}

.arrow-button > .arrow::before {
  display: block;
  background-color: currentColor;
  width: 3px;
  transform-origin: bottom right;
  height: 2px;
  position: absolute;
  opacity: 0;
  bottom: calc(-2px / 2);
  transform: rotate(45deg);
  transition: all .3s ease;
  content: "";
  right: 0;
}

.arrow-button:hover > .arrow {
    transform: rotate(-45deg) translate(4px, 4px);
    border-color: text-hover-color;   
}.arrow-white {
    border-right: 2px solid #fff!important;
    border-bottom: 2px solid #fff!important;
}
.arrow-button:hover > .arrow::before {
  opacity: 1;
  width: 8px;
}

.arrow-button:hover {
  background-color: transparent;
  color: #212529;
}

/*Carousel*/
.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.btn-number {
    background: #fff;
    border-radius: 0;
    font-weight: 600;
}
.btn-number:hover {
  background: #1252A0;
  color: #fff;
}

/*checkout page*/
.form-header {
  gap: 5px;
  text-align: center;
  font-size: .9em;
}
.form-header .stepIndicator {
  position: relative;
  flex: 1;
  padding-bottom: 45px;
}
.form-header .stepIndicator.active {
  font-weight: 600;
}
.form-header .stepIndicator.finish {
  font-weight: 600;
  color: #009688;
}
.form-header .stepIndicator::before {
  content:"";
  background-image: url('../images/check-mark-svgrepo-com.svg');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9;
  width: 40px;
  height: 40px;
  background-color: #8baeef;
  border-radius: 50%;
  border: 3px solid #ecf5f4;
}
.confirm::before {
  content:"";
  background: none!important;
  border: 3px solid #8baeef!important;
}
.form-header .stepIndicator.active::before {
  background-color: #a7ede8;
  border: 3px solid #d5f9f6;
}
.form-header .stepIndicator.finish::before {
  background-color: #8baeef;
  border: 3px solid #b7e1dd;
}
.form-header .stepIndicator::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 100%;
  height: 3px;
  background-color: #f3f3f3;
}
.form-header .stepIndicator.active::after {
  background-color: #a7ede8;
}
.form-header .stepIndicator.finish::after {
  background-color: #8baeef;
}
.form-header .stepIndicator:last-child:after {
  display: none;
}
.step {
display: none;
}
.added-cart {
  color: #999;
}