/* Custom Scroll Bar */
body::-webkit-scrollbar-thumb {
  background: linear-gradient(#1d4fb3, #538cfd);
}

/* Products */
.products {
  width: 100%;
  height: 100%;
  margin-top: 30rem;
}

.products-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-header {
  text-align: center;
}

.products-header h1 {
  font-family: 'Mooli', cursive;
  font-size: 6rem;
  letter-spacing: .2rem;
  color: #263b53;
}

.products-header h3 {
  font-size: 3rem;
  font-weight: 300;
  color: #567599;
  margin: 2rem 0 15rem 0;
}

.products-content {
  width: 80%;
  height: 90rem;
  box-shadow: 0 1rem 10rem rgba(130, 162, 235, 0.4);
  padding: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  position: relative;
}

.products-content-left {
  width: 40%;
  height: 100%;
  padding: 15rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.products-content-left h1 {
  font-family: 'Croissant One', cursive;
  font-size: 10rem;
  background: linear-gradient(to right, #3573f0, #2250a9 80%);
  -webkit-background-clip: text;
  color: transparent;
}

.products-content-left p {
  font-family: 'Mooli', cursive;
  font-size: 1.6rem;
  color: #5379a3;
  margin-top: -5rem;
  line-height: 2.5rem;
}

.products-content-left button {
  width: 50%;
  height: 6rem;
  background: linear-gradient(to right, #3573f0, #2250a9 80%);
  border: none;
  border-radius: 5rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .2rem;
  cursor: pointer;
}

.products-content-right {
  width: 60%;
}

.products-content-right img {
  position: absolute;
  border-radius: 1rem;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.5);

}

.products-content-right img:nth-child(1) {
  width: 35rem;
  height: 70rem;
  object-fit: cover;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
}

.products-content-right img:nth-child(2) {
  width: 20rem;
  top: 20%;
  right: 33%;
}

.products-content-right img:nth-child(3) {
  width: 30rem;
  bottom: 20%;
  right: 3%;
}

.products-promo {
  width: 100%;
  height: 150vh;
  position: relative;
  perspective: 50rem;
  transition: all 0.3s;
}

.animate.products-promo {
  background-color: rgba(10, 59, 156, 0.7);
}

.promo-rectangle {
  width: 60rem;
  height: 60rem;
  background: linear-gradient(135deg, #184fbb, transparent 80%);
  position: absolute;
  top: 25%;
  left: 10%;
  border-radius: 10rem;
  transform: rotateZ(45deg);
  opacity: 0.2;
  transition: all 0.3s;
}

.animate .promo-rectangle {
  opacity: .8;
  transform: rotateZ(45deg)scale(1.4);
}

.small-circle {
  width: 4rem;
  height: 4rem;
  background-color: #ffad00;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  right: 40%;
  opacity: 0.7;
  transition: all 0.3s;
}

.animate .small-circle {
  opacity: 1;
  transform: scale(1.4);
}

.large-circle {
  width: 50rem;
  height: 50rem;
  background-color: #34dc87;
  border-radius: 50%;
  position: absolute;
  bottom: 25%;
  right: 12%;
  transition: all 0.3s;
}

.animate .large-circle {
  transform: scale(1.4);
}

.promo-content {
  width: 60%;
  height: 45rem;
  background: linear-gradient(to right, #184fbb, #13036d);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1.5rem;
  padding: 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.5s;
}

.promo-content:hover {
  transform: translate(-50%, -50%) translateZ(10rem);
}

.promo-content h1 {
  font-family: 'Mooli', cursive;
  font-size: 4rem;
  letter-spacing: .2rem;
  text-transform: capitalize;
  color: #fff;
}

.promo-content button {
  width: 25rem;
  height: 6rem;
  background-color: #34dc87;
  margin: 7rem 0 5rem 0;
  border: none;
  border-radius: 5rem;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.2rem;
  cursor: pointer;
}

.promo-content p {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
}

.promo-shadow {
  width: 90%;
  height: 10rem;
  background-color: #052b5c;
  position: absolute;
  bottom: -12%;
  border-radius: 10rem;
  transform: rotateX(20deg);
  filter: blur(3rem);
  opacity: 0.7rem;
  transition: all 0.3s;
}

.animate .promo-shadow {
  height: 13em;
  bottom: -15%;
  filter: blur(2.5rem);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1600px) {
  .products-content {
    width: 90%;
  }

  .promo-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 1440px) {
  .promo-content {
    width: 70%;
  }

  .promo-rectangle {
    top: 25%;
    left: 8%;
  }

  .large-circle {
    bottom: 25%;
    right: 8%;
  }
}

@media (max-width: 1366px) {
  .products-content-right img:nth-child(1) {
    width: 30rem;
    height: 60rem;
    top: 45%;
    right: 13%;
  }

  .products-content-right img:nth-child(2) {
    width: 17rem;
    top: 20%;
    right: 29%;
  }

  .products-content-right img:nth-child(3) {
    width: 26rem;
    bottom: 28%;
    right: 3%;
  }

  .promo-content {
    width: 60%;
    height: 40rem;
  }

  .promo-content h1 {
    font-size: 3rem;
  }

  .animate .large-circle {
    transform: scale(1.3);
  }

  .promo-shadow {
    bottom: -14%;
  }

  .animate .promo-shadow {
    bottom: -17%;
  }
}

@media (max-width: 1024px) {
  .products-content-left h1 {
    font-size: 8rem;
  }

  .products-content-left p {
    font-size: 1.5rem;
  }

  .products-content-right img:nth-child(1) {
    width: 28rem;
    height: 55rem;
  }

  .products-content-right img:nth-child(2) {
    width: 15rem;
  }

  .products-content-right img:nth-child(3) {
    width: 24rem;
  }

  .promo-content {
    width: 70%;
  }

  .promo-content h1 {
    font-size: 2.5rem;
  }

  .promo-rectangle {
    width: 50rem;
    height: 50rem;
  }

  .small-circle {
    top: 25%;
    right: 40%;
  }

  .large-circle {
    width: 40rem;
    height: 40rem;
  }

  .animate .large-circle {
    right: -2%;
  }
}

@media (max-width: 820px) {
  .products-content {
    height: 115rem;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0 5rem 10rem;
  }

  .products-content-left {
    width: 60%;
    height: auto;
    padding: 5rem 0;
  }

  .products-content-left p {
    margin: 3rem 0 5rem 0;
  }

  .products-content-right img:nth-child(1) {
    width: 22rem;
    height: 44rem;
    top: 65%;
    right: 24%;
  }

  .products-content-right img:nth-child(2) {
    width: 12rem;
    top: 50%;
    right: 43%;
  }

  .products-content-right img:nth-child(3) {
    width: 20rem;
    bottom: 21%;
    right: 11%;
  }

  .products-promo {
    height: 120vh;
  }

  .promo-rectangle {
    width: 40rem;
    height: 40rem;
    top: 32%;
    left: 6%;
  }

  .small-circle {
    top: 30%;
    right: 40%;
  }

  .large-circle {
    bottom: 30%;
    right: 5%;
  }

  .promo-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 430px) {
  .products-header h1 {
    font-size: 4rem;
  }

  .products-header h3 {
    font-size: 2.5rem;
    width: 80%;
    margin: 2rem auto 15rem auto;
  }

  .products-content {
    padding: 5rem 0;
  }

  .products-content-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .products-content-left p {
    width: 80%;
    text-align: center;
  }

  .products-content-right img:nth-child(1) {
    width: 18rem;
    height: 36rem;
    top: 75%;
    right: 30%;
  }

  .products-content-right img:nth-child(2) {
    width: 10rem;
    top: 63%;
    right: 57%;
  }

  .products-content-right img:nth-child(3) {
    width: 18rem;
    bottom: 13%;
    right: 7%;
  }

  .products-promo {
    height: 100vh;
  }

  .promo-content {
    width: 80%;
  }

  .promo-content:hover {
    transform: translate(-50%, -50%) translateZ(6rem);
  }

  .promo-rectangle {
    width: 35rem;
    height: 35rem;
    top: 28%;
    left: -3%;
  }

  .large-circle {
    width: 35rem;
    height: 35rem;
    bottom: 27%;
    right: -8%;
  }

  .small-circle {
    top: 26%;
    right: 30%;
  }

  .promo-content h1 {
    font-size: 1.8rem;
  }

  .promo-content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 375px) {
  .promo-rectangle {
    width: 30rem;
    height: 30rem;
    top: 25%;
  }

  .large-circle {
    width: 30rem;
    height: 30rem;
    bottom: 20%;
    right: -11%;
  }

  .small-circle {
    top: 20%;
  }
  .animate .small-circle {
    top: 13%;
  }
}
