@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: bold;
}

.display-flex {
  display: flex;
}

.width-100 {
  width: 100%;
}

.display-none {
  display: none;
}

.blur {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  background-color: hsl(0, 0%, 0%);
}

nav {
  padding: 2rem;
  height: 100vh;
  position: fixed;
  z-index: 1;
  background-color: #fff;
  width: 70%;
}

nav ul {
  width: 50%;
  flex-direction: column;
  gap: 20px;
  margin-top: 3rem;
  list-style: none;
}

.header {
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 1rem;
}

.header .left{
  justify-content: center;
  align-items: center;
}

.header .left img{
  width: 20px;
  margin-right: 6px;
}

.header .left h2 {
  font-size: 20px;
  font-weight: 700;
}

.header .left h2 a {
  text-decoration: none;
  color: hsl(26, 100%, 55%);
}

.header .right{
  justify-content: center;
  align-items: center;
}

.header .right img{
  width: 30px;
  margin-right: 6px;
}

.header .right h2 {
  font-size: 16px;
}

.content-wrapper {
  flex-direction: column;
}

.slider {
  width: 100%;
}

.slider img {
  width: 100%;
}

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.content-body {
  padding: 0 1rem;
  flex-direction: column;
  gap: 13px;
}

.content-body h5 {
  color: hsl(26, 100%, 55%);
}

.content-body p {
  line-height: 34px;
  color: hsl(219, 9%, 45%);
}

.price {
  justify-content: space-between;
  align-items: center;
}

.left-price {
  justify-content: space-between;
  width: 40%;
  align-items: center;
}

.span-discount {
  color: (26, 100%, 55%);
  background-color: hsl(25, 100%, 94%);
  padding: 7px;
  border-radius: 9px;
}

.span-price-without-discount {
  color: hsl(220, 14%, 75%);
  text-decoration: line-through;
}

.operator{
  border-radius: 12px;
  justify-content: space-between;
  background-color: hsl(220, 14%, 95%);
  padding: 14px;
}

.operator i {
  color: hsl(26, 100%, 55%);
}

.content-body button {
  border: none;
  outline: none;
  padding: 19px;
  border-radius: 12px;
  background-color: hsl(26, 100%, 55%);
  color: #fff;
  margin-bottom: 2rem;
  font-size: 16px; 
  justify-content: center;
  align-items: center;
}

.content-body button i {
  padding-right: 13px;
}

footer {
  line-height: 30px;
  text-align: center;
  padding: 1rem;
  font-size: 10px;
}

footer a {
  text-decoration: none;
  color: hsl(26, 100%, 55%);
}

@media only screen and (min-width: 768px) and (max-width : 1440px) {
  .display-inline-block {
    display: flex;
  }

  .header {
    padding: 2rem 7rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  }

  .left #menu {
    display: none;
  }

  .left ul {
    list-style: none;
    margin-left: 1rem;
  }

  .left ul li {
    margin-left: 1rem;
  }

  .left ul li:hover {
    border-bottom: 2px solid hsl(26, 100%, 55%);
  }

  .content-wrapper{
    padding: 3rem;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }

  .content-body,
  .slider {
    width: 40%;
  }
  
  footer {
    font-size: 16px;
  }

}