* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #819d81;
}

.Container {
  width: 95%;
  margin-top: 25px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  padding: 20px;
}

.Content {
  padding: 50px 0px 20px 0px;
  display: flex;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100vh;
}

.Title {
  color: white;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 3px black;
  text-align: right;
}

.TitleContainer {
  text-align: right;
  border-bottom: 2px solid white;
}

.DescriptionContainer {
  text-align: right;
}

.Description {
  font-size: 23px;
  color: white;
  width: 100%;
}

.Descriptionintro {
  font-size: 25px;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0px 0px 5px white;
  text-shadow: 2px 2px 3px black;
}

.Productimg {
  width: 100%;
  height: auto;
  border: 3px solid white;
  border-radius: 20px;
}

.PriceContainer {
  display: flex;
  color: white;
  background-color: rgba(255, 255, 255, 0.187);
  justify-content: space-between;
  border-radius: 5px;
  padding: 30px;
  width: 100%;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0px 4px 10px black;
}

.PriceTitle {
  font-size: 25px;
  font-weight: bold;
  padding: 0 30px 0 30px;
  text-shadow: 2px 2px 3px black;
}

.PriceButton {
  font-size: 20px;
  padding: 10px 80px 10px 80px;
  background-color: transparent;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  border: 2px solid #819580;
  color: white;
  font-weight: bold;
  background-color: #8da98d;
  transition: 0.5s;
  animation-name: grow;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}

.PriceButton:hover {
  scale: 1.1;
  text-shadow: 0px 0px 5px white;
  box-shadow: 0px 4px 10px black;
}

.OtherProduct {
  margin-top: 80px;
  text-align: center;
}

.OtherTitle {
  font-size: 60px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 3px black;
  margin-bottom: 20px;
}

@keyframes grow {
  50% {
    transform: scale(1.2, 1.2);
  }
  50% {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.565);
  }
  50% {
    text-shadow: 0px 0px 5px white;
  }
}
.FlexDiv {
  display: flex;
  flex-direction: row;

  padding: 10px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
}
.LeftDiv {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
  width: 55%;
  height: 90%;
}
.RightDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
  width: 45%;
  height: 90%;
}
.Desc {
  text-align: right;
}
swiper-container {
  width: 100%;
  height: auto;
}

swiper-slide {
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.ProductImage {
  border-radius: 20px;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1200px) {
 .LeftDiv {
  width: 40%;

 }

 .PriceTitle {
  font-size: 15px;
 }

 .PriceButton {
  font-size: 15px;
  padding: 10px 60px 10px 60px;
 }
 
 .PriceContainer {
  justify-content: space-between;
  padding-left: 5px;
  padding-right: 5px;
 }
 

 .RightDiv {
  width: 60%;
 }
}

@media only screen and (max-width: 994px) {
  .LeftDiv {
    width: 50%;
  }

  .RightDiv {
    width: 50%;
  }

  .Container {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 900px) {
  .FlexDiv {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .LeftDiv {
    width: 80%;
  }

  .RightDiv {
    width: 70%;
  }
}

@media only screen and (max-width: 600px) {
  .FlexDiv {
    display: flex;
    flex-direction: column-reverse;

    padding: 10px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
  }
  .LeftDiv {
    padding: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 40%;
  }
  .RightDiv {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 90%;
  }
  .Title {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 3px black;
    width: 100%;

    text-align: center;
  }
  .Desc {
    text-align: right;
    width: 90%;
  }
  .Description {
    font-size: 15px;
    color: white;
    width: 100%;
    height: 90%;
  }
  .PriceContainer {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;

    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0px 4px 10px black;
  }
  .buyBtn {
    display: flex;
    justify-content: space-around;
    justify-items: center;
    align-items: center;
    align-content: space-around;
    margin-top: 40px;
  }
  .OtherTitle {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 3px black;
    margin-bottom: 20px;
  }
  .OtherProduct {
    margin-top: 200px;
  }
}

@media only screen and (max-width: 380px) {

.Content {
  padding: 20px 0px 10px 0px;
  display: flex;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100vh;
}
  .Productimg {
  width: 100%;
  height: auto;
  border: 3px solid white;
  border-radius: 20px;
}
  .FlexDiv {
    display: flex;
    flex-direction: column-reverse;

    padding: 10px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
  }
  .LeftDiv {
    padding: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 40%;
    font-size: 10px !important;
  }
  .RightDiv {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;
    height:700px;
  }
  .Title {
    color: white;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 3px black;
    width: 100%;

    text-align: center;
  }
  .Desc {
    text-align: right;
    width: 90%;
  }
  .Description {
    font-size: 10px;
    color: white;
    width: 100%;
    height: 90%;
  }
  .PriceContainer {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;

    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0px 4px 10px black;
  }
  .buyBtn {
    display: flex;
    justify-content: space-around;
    justify-items: center;
    align-items: center;
    align-content: space-around;
    margin-top: 40px;
  }
  .OtherTitle {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 3px black;
    margin-bottom: 20px;
  }
  .OtherProduct {
    margin-top: 200px;
  }
}
