* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Core Sans C;
}
body {
  scroll-behavior: smooth;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
.scrollTotop {
  position: fixed;
  right: 100px;
  bottom: 70px;
  font-size: 20px;
  width: 40px;
  color: #000;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #eee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  padding: 10px;
  display: none;
}

.scrollTotop:hover {
  color: #fff;
  background-color: crimson;
}

.specialArticle {
  position: relative;
  padding: 10px 0;
  font-weight: bold;
  font-size: 30px;
}
.specialArticle::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 100%;
  left: -30px;
  top: 0;
  background-color: #8a33fd;
}

.hero {
  position: relative;
}
.hero header {
  background-color: #fff;
  width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: fixed;
  z-index: 999;
  top: 0;
  box-shadow: 6px 3px 13px 4px #00000069;
}
.hero header .links {
  display: flex;
  justify-content: space-between;
}
.hero header .links a {
  color: #807d7e;
  font-size: 22px;
  margin-right: 8px;
  padding: 8px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .links a.active {
  color: #3c4242;
}
.hero header .links a:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}

.hero header .search {
  display: flex;
  align-items: center;
  position: relative;
  width: 200px;
}
.hero header .search input {
  padding: 10px 5px 10px 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  outline: none;
  margin: 0 5px;
  border: 1px solid #f6f6f6;
  background-color: #f6f6f6;
  width: 40%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .search input:focus {
  border: 2px solid #8a33fd;
  width: 100%;
}
.hero header .search img {
  position: absolute;
  left: 10px;
}
.hero header .buttons i {
  padding: 10px;
  margin-right: 10px;
  background-color: #eee;
  border-radius: 10px;
  color: #3c4242;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .buttons i:hover {
  color: #fff;
  background-color: #3c4242;
}
.hero header .buttons i.active {
  color: #fff;
  background-color: #3c4242;
}
.hero header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .header-content.active {
  left: 0%;
}
.bar {
  display: none;
  font-size: 25px;
  cursor: pointer;
}
@media (width < 992px) {
  .hero header .header-content {
    position: fixed;
    height: 100%;
    width: 67%;
    top: 0;
    left: -100%;
    z-index: 999;
    background-color: rgb(0 0 0 / 60%);
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .hero header .links {
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
  }
  .hero header .links li a {
    color: #fff;
  }
  .hero header .bar {
    display: block;
  }
}
.landing {
  height: 100vh;
  background-image: url(../images/bg_landing_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 85px;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.landing .text {
  width: 60%;
  margin: auto;
  color: #3c4242;
}

.landing .text h3 {
  font-size: 30px;
}
.landing .text h1 {
  font-size: 78px;
  font-style: normal;
  font-weight: bold;
  margin: 30px 0;
}
.landing .text p {
  font-size: 35px;
  margin-bottom: 30px;
}
.landing .text button {
  padding: 20px 30px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: #fff;
  font-size: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.landing .text button:hover {
  color: white;
  background-color: #30a5bc;
}
@media (width < 1200px) {
  .landing {
    background-position: 60%;
  }
}
@media (width < 768px) {
  .landing .text {
    text-align: center;
  }
}
.landing > i {
  position: absolute;
  cursor: pointer;
  top: 50%;
  color: white;
  font-size: 40px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.landing > i:hover {
  color: #3c4242;
}

.landing > i.disabled {
  color: rgba(220, 20, 60, 0.253);
  cursor: no-drop;
}
.landing > i.active {
  color: rgba(220, 20, 60, 0.253);
  cursor: no-drop;
}
.landing #nextBtn {
  right: 40px;
}
.landing #previousBtn {
  left: 40px;
}
.landing .bullets {
  width: 400px;
  margin: 0 auto 30px;
}
.landing .bullets span {
  display: inline-block;
  cursor: pointer;
  width: calc(80% / 4);
  height: 6px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.512);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.landing .bullets span.active {
  background-color: white;
}
.price-presents {
  margin-top: 100px;
  display: flex;
  justify-content: space-evenly;
}
.price-presents > div {
  width: calc(80% / 2);
  height: 400px;
  padding: 30px 20px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  color: #fff;
}
.price-presents .text {
  margin: 40px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.price-presents div a {
  color: #fff;
}
.price-presents div:hover .text {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.price-presents div h1 {
  margin-bottom: 25px;
}
.price-presents div p {
  margin-bottom: 20px;
}
.price-presents .price {
  background-image: url(../images/bg_price.jpg);
}
.price-presents .presents {
  background-image: url(../images/bg_present.jpg);
}
.price-presents div a {
  display: inline-block;
  position: relative;
}
.price-presents div a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #ffff;
}
@media (width < 992px) {
  .price-presents {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .price-presents div {
    width: 80%;
  }
}
.big-saving-zone {
  margin: 100px auto 0;
  width: 80%;
}

.big-saving-zone .cards {
  display: flex;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.big-saving-zone .cards .card {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(90% / 3);
  margin-bottom: 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.big-saving-zone .cards .card:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.big-saving-zone .cards .card .text {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #3c4242;
}
.big-saving-zone .cards .card-1 {
  background-image: url(../images/bg_savingzone1.png);
  justify-content: flex-start;
}
.big-saving-zone .cards .card-1 .text {
  text-align: start;
  color: white;
}
.big-saving-zone .cards .card-2 {
  background-image: url(../images/bg_savingzone2.png);
  color: white;
}
.big-saving-zone .cards .card-2 .text {
  color: white;
}
.big-saving-zone .cards .card-2 .hint {
  background-color: #3c4242;
  align-self: end;
  text-align: center;
  width: fit-content;
  padding: 20px 25px;
}
.big-saving-zone .cards .card-3 {
  background-image: url(../images/bg_savingzone3.png);
}

.big-saving-zone .cards .card-4 {
  background-image: url(../images/bg_savingzone4.png);
  width: 48%;
}
.big-saving-zone .cards .card-5 {
  background-image: url(../images/bg_savingzone5.png);
  width: 48%;
}

@media (width <992px) {
  .big-saving-zone .cards .card {
    width: 47%;
  }
}

@media (width < 768px) {
  .big-saving-zone .cards .card {
    width: 100%;
  }
}
.big-saving-zone .cards .card .text p {
  margin: 25px 0;
}
.big-saving-zone .cards .card img {
  width: 30px;
  margin-bottom: 15px;
  align-self: center;
}
.big-saving-zone .cards .card-1 img {
  align-self: flex-start;
}
.big-saving-zone .cards .card-2 img {
  align-self: center;
}
.big-saving-zone .cards .card a {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #3c4242;
  width: fit-content;
  color: #3c4242;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  align-self: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.big-saving-zone .cards .card a:hover {
  background-color: #3c4242;
  color: #fff;
}
.big-saving-zone .cards .card-1 a,
.big-saving-zone .cards .card-2 a {
  border-color: #fff;
  color: #fff;
  align-self: self-start;
}
.big-saving-zone .cards .card-1 a:hover,
.big-saving-zone .cards .card-2 a:hover {
  background-color: #fff;
  color: #3c4242;
  align-self: self-start;
}
.products {
  margin: 100px auto 50px;
  width: 80%;
}
.products > button {
  display: inline-block;
  font-size: 30px;
  margin-right: 20px;
  padding: 20px 25px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  position: relative;
  color: #3c4242;
  border: none;
  cursor: pointer;
  background-color: #fff;
}
.products > button:before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #30a5bc;
  bottom: 0;
  left: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.products > button:hover:before {
  width: 100%;
}
.products > button.active:before {
  width: 100%;
}
.products .cards {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.products .cards .card {
  width: 270px;

  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.products .cards .card > img {
  width: 274px;
  height: 400px;
}
.products .cards .card:hover {
  transform: translateY(-10px);
  -webkit-transform: translatey(-10px);
  -moz-transform: translatey(-10px);
  -ms-transform: translatey(-10px);
  -o-transform: translatey(-10px);
}
.products .cards .text {
  padding: 20px 5px;
}
.products .cards .text p {
  margin-bottom: 10px;
  font-size: 22px;
}
.products .cards .text img {
  float: right;
}

.brands {
  color: #fff;
  width: 80%;
  margin: auto;
  background-color: #3c4242;
  padding: 30px 25px;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.brands h1 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 50px;
}
.brands p {
  margin-bottom: 40px;
  font-size: 20px;
}
.brands p span {
  color: #fbd103;
}
.brands .images {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.brands .images img {
  margin-bottom: 15px;
}
.footer {
  padding: 30px 20px 0;
  background-color: #3c4242;
  color: #f6f6f6;
  margin-top: 30px;
}
.footer a {
  color: #f6f6f6;
}
.footer .our-links {
  display: flex;
  justify-content: space-evenly;

  flex-wrap: wrap;
}
.footer .our-links h2 {
  font-size: 30px;
  margin: 20px 0;
}
.footer .our-links li {
  margin-bottom: 10px;
  font-size: 20px;
}
@media (width <992px) {
  .footer .our-links {
    justify-content: space-between;
  }
}
@media (width <768px) {
  .footer .our-links {
    flex-direction: column;
  }
}
.footer .contact-us {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.footer .contact-us .social-media {
  display: flex;
  justify-content: space-between;
}
.footer .contact-us .social-media a {
  margin-right: 10px;
}
.footer .contact-us .apps {
  margin-bottom: 30px;
}
.footer .contact-us .apps h1 {
  margin-bottom: 20px;
}
.footer .contact-us .apps ul {
  display: flex;
}
@media (width <768px) {
  .footer .contact-us {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .copywrite {
  text-align: center;
  padding: 20px 0;
}
