* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  text-decoration: none;
  list-style: none;
  color: black;
}

:root {
  --color-Ellipse-1: #c8aad3;
  --color-Ellipse-2: #799dcb;
  --color-Ellipse-3: #7c38bd;
  --color-Ellipse-4: #bd6df2;
  --color-Ellipse-5: #a696c7;
}

/* main */

.container-main {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  background-image: url("../images/SpicaSol/background.svg");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* 1 */

.container-main-1-back {
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: -2;
}

.container-main-1 {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
}

.container-main-1-left {
  width: 40%;
  height: fit-content;
  margin: auto;
  margin: 100px 0;
}

.container-main-1-left h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 33px;
}

.container-main-1-left p {
  color: var(--color-Ellipse-2);
  font-size: 30px;
  font-weight: bold;
}

.container-main-1-right {
  width: 60%;
  background-image: url("../images/SpicaSol/Group 1171275146.png");
  background-size: 800px;
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
  padding-top: 700px;
}

@keyframes starTwinkle {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.container-main-1-right-stars1,
.container-main-1-right-stars2,
.container-main-1-right-stars3 {
  animation: starTwinkle 3s infinite;
}

.container-main-1-right-stars1 {
  position: absolute;
  top: 250px;
  left: 50px;
  width: 50px;
}

.container-main-1-right-stars2 {
  position: absolute;
  bottom: 0px;
  left: 180px;
  width: 74px;
}

.container-main-1-right-stars3 {
  position: absolute;
  top: 90px;
  right: 0px;
  width: 50px;
}

.container-main-1-circle {
  width: 700px;
  position: absolute;
  right: 320px;
  top: 25px;
  transform: translate(50%, 0);
  transform-origin: center center;
  animation: rotateQuarter 8s forwards infinite;
  z-index: -1;
}

@keyframes rotateQuarter {
  0% {
    transform: translate(50%, 0) rotate(0deg);
  }
  25% {
    transform: translate(50%, 0) rotate(90deg);
  }
  50% {
    transform: translate(50%, 0) rotate(180deg);
  }
  75% {
    transform: translate(50%, 0) rotate(270deg);
  }
  100% {
    transform: translate(50%, 0) rotate(360deg);
  }
}

.container-main-1-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 50px;
}

.container-main-1-box > ul li {
  list-style: disc;
  margin-left: 25px;
  color: white;
  font-size: 22px;
  font-weight: 400;
}

.container-main-1-box > button {
  font-size: 18px;
  padding: 10px 25px;
  outline: unset;
  color: white;
  background-color: #bd6df2;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 80px;
  font-weight: 300;
  border: 3px solid #bd6df2;
}

/* 3 */

.container-main-3 {
  max-width: 1440px;
  width: 100%;
  height: fit-content;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 45px;
  margin-top: 130px;
  padding: 0 100px;
}

.container-main-3-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container-main-3-left > h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
}

.container-main-3-left > p {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

#video-container {
  position: relative;
  width: 640px;
  height: 360px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 15px;
}
#play-overlay {
  position: absolute;
  width: 640px;
  height: 100%;
  background-color: #bdbdbd26;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #799dcb;
}
#play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  clip-path: polygon(25% 20%, 25% 80%, 75% 50%);
}
video {
  width: 640px;
  height: 100%;
  border-radius: 15px;
}

/* 4 */

.container-main-4 {
  max-width: 1440px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  margin-top: 130px;
  padding: 0 100px;
}

.container-main-4 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container-main-4-type2,
.container-main-4-type1 {
  display: flex;
  align-items: center;
  height: 455px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.container-main-4-type1 > img {
  width: 450px;
  position: absolute;
  left: -450px;
  transition: 2s ease;
  opacity: 0;
}

.container-main-4-type1-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  right: -790px;
  width: 790px;
  transition: 2s ease;
  opacity: 0;
}

.container-main-4-type2 > img {
  width: 450px;
  position: absolute;
  right: -450px;
  transition: 2s ease;
  opacity: 0;
}

.container-main-4-type2-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  left: -790px;
  width: 790px;
  transition: 2s ease;
  opacity: 0;
}

.scrolled-500 .container-main-4-type1 > img {
  left: 0;
  opacity: 1;
}

.scrolled-500 .container-main-4-type1-box {
  right: 0;
  opacity: 1;
}

.scrolled-500 .container-main-4-type2 > img {
  right: 0;
  opacity: 1;
}

.scrolled-500 .container-main-4-type2-box {
  left: 0;
  opacity: 1;
}

.container-main-4-type2-box > h1,
.container-main-4-type1-box > h1 {
  color: var(--color-Ellipse-2);
  font-size: 30px;
  font-weight: bold;
}

.container-main-4-type2-box-bottom,
.container-main-4-type1-box-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.container-main-4-type2-box-bottom span,
.container-main-4-type1-box-bottom span {
  display: flex;
  align-items: center;
  gap: 15px;
}

.container-main-4-type2-box-bottom span img,
.container-main-4-type1-box-bottom span img {
  width: 36px;
}
.container-main-4-type2-box-bottom span h2,
.container-main-4-type1-box-bottom span h2 {
  color: white;
  font-size: 20px;
}
.container-main-4-type2-box-bottom ul,
.container-main-4-type1-box-bottom ul {
  margin-left: 25px;
}
.container-main-4-type2-box-bottom li,
.container-main-4-type1-box-bottom li {
  color: white;
  font-size: 16px;
  padding: 10px;
  list-style: disc;
  margin-left: 15px;
}

/* 5 */

.container-main-5 {
  max-width: 1440px;
  padding: 0 100px;
  width: 100%;
  height: fit-content;
  margin-top: 130px;
}

.container-main-5 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.gallery-container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-track {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  width: 1000px;
}

.image-item {
  position: absolute;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  width: 300px;
  height: 300px;
  filter: brightness(0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-image: url("../images/SpicaSol/5.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-position: center center;
  display: grid;
  place-items: center;
}

.image-item img {
  width: 200px;
  height: auto;
}

.image-item.active {
  transform: translateX(0) scale(1.2);
  z-index: 2;
  filter: brightness(1);
}

.image-item.prev {
  transform: translateX(-120%) scale(0.8);
}

.image-item.next {
  transform: translateX(120%) scale(0.8);
}

.details-container {
  display: grid;
  place-items: center;
}

.details-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 15px;
}

.details-content h2 {
  color: var(--color-Ellipse-2);
  font-size: 30px;
  font-weight: bold;
}

.specs-list {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}

.specs-list li {
  font-size: 20px;
  color: white;
  list-style: disc;
}

.nav-button {
  display: none;
}

.prev-btn {
  visibility: hidden;
}
.next-btn {
  visibility: hidden;
}

/* 6 */
.container-main-6 {
  max-width: 1440px;
  padding: 0 100px;
  width: 100%;
  margin-top: 230px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 200px;
}

.container-main-6 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
  z-index: 1;
}

.container-main-6-bottom {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.container-main-6-bottom span {
  display: flex;
  align-items: center;
  gap: 15px;
}
.container-main-6-bottom span img {
  width: 25px;
}
.container-main-6-bottom span p {
  color: white;
  font-size: 18px;
}

.container-main-6-circle {
  width: 900px;
  position: absolute;
  right: 10%;
  top: -20%;
  transform: translate(50%, 0);
  transform-origin: center center;
  animation: rotateQuarter 6s forwards infinite;
}

@keyframes rotateQuarter {
  0% {
    transform: translate(50%, 0) rotate(0deg);
  }
  25% {
    transform: translate(50%, 0) rotate(90deg);
  }
  50% {
    transform: translate(50%, 0) rotate(180deg);
  }
  75% {
    transform: translate(50%, 0) rotate(270deg);
  }
  100% {
    transform: translate(50%, 0) rotate(360deg);
  }
}

/* 7 */
.container-main-7 {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  margin-top: 130px;
}

.container-main-7 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container-main-7-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  cursor: pointer;
  overflow: hidden;
}

.container-main-7-bottom a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-main-7-bottom a img {
  width: 100%;
  transform: scale(1);
  transition: 0.3s;
}

.container-main-7-bottom a img:hover {
  transform: scale(1.01);
}

.container-main-7-bottom a p {
  width: 100%;
  text-align: left;
  font-size: 18px;
  color: white;
}

/* 8 */

.container-main-8 {
  max-width: 1440px;
  width: 100%;
  margin-top: 130px;
  margin-bottom: 200px;
  padding: 0 100px;
}

.container-main-8 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container-main-8-bottom {
  width: 100%;
  display: flex;
  gap: 25px;
  overflow: hidden;
  cursor: pointer;
}

.container-main-8-bottom img {
  width: 194px;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.container-main-8-bottom:active {
  cursor: grabbing;
}

/* 9 */

/* .container-main-9 {
  background-image: url("../images/SpicaSol/background\ part\ 2svg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 1240px;
  width: 100%;
  height: 585px;
  border: 1px solid #8894c8;
  border-radius: 15px;
  outline: none;
  margin-bottom: 250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  gap: 45px;
}

.container-main-9-left {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-between;
}

.container-main-9-left-top h1 {
  color: white;
  font-size: 36px;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 16px;
}

.container-main-9-left-top p {
  color: white;
  font-size: 20px;
}

.container-main-9-left-bottom {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.container-main-9-left-bottom a img {
  width: 57px;
}

.container-main-9-right {
  width: 60%;
  height: 470px;
  background-image: url("../images/SpicaSol/container-main-2-right-background.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 15px;
  padding: 30px;
}
.form-container {
  width: 100%;
  padding: 20px;
}
.input-container {
  position: relative;
  margin-bottom: 30px;
}
.input-container label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}
.input-container input,
.input-container textarea {
  width: 100%;
  padding: 12px 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  color: white;
  font-size: 16px;
  outline: none;
}
.input-container textarea {
  resize: vertical;
  max-height: 100px;
}
.input-container input:focus ~ label,
.input-container input:not(:placeholder-shown) ~ label,
.input-container textarea:focus ~ label,
.input-container textarea:not(:placeholder-shown) ~ label {
  top: 10px;
  font-size: 10px;
  color: white;
}

.input-container input:focus {
  padding: 15px 10px;
  padding-bottom: 9px;
}
.button-container {
  width: 100%;
  height: fit-content;
  text-align: right;
  margin: 0;
  padding: 0;
}

.submit-btn2 {
  width: 180px;
  padding: 11px 58px;
  background-color: transparent;
  color: #c084fc;
  border: 2px solid #c084fc;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn2:hover {
  background-color: #a855f7;
} */

.container-main-9-back {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 250px;
}

.container-main-9 {
  width: 100%;
  max-width: 1240px;
  margin: 0 100px;

  padding: 45px;
  box-shadow: 0px 0px 10px rgba(27, 19, 59, 0.15);
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  background-color: #d9d9d91c;
  border: 1px solid #799dcb;
}

.container-main-92-left {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.container-main-92-right {
  width: 55%;
  background-color: #130b3f;
  border-radius: 15px;
}

.container-main-92-left > h1 {
  font-size: 36px;
  color: white;
  font-weight: 500;
  margin-bottom: 30px;
}

.container-main-92-left > p {
  font-size: 20px;
  color: white;
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 1.5;
}

.container-main-92-left > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.container-main-92-left > div > a {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 2px solid #799dcb;
  border-radius: 15px;
}

.container-main-92-left > div > a > i {
  color: #799dcb;
  font-size: 20px;
}

.container-main-1-mobile,
.container-main-3-mobile,
.container-main-4-mobile,
.container-main-9-mobile {
  display: none;
}

@media screen and (max-width: 1440px) {
  .container-main {
    margin-top: 6.94vw;
  }

  /* 1 */
  .container-main-1 {
    padding: 0 6.94vw;
  }

  .container-main-1-left {
    margin: 6.94vw 0;
  }

  .container-main-1-left h1 {
    font-size: 3.33vw;
    margin-bottom: 2.29vw;
  }

  .container-main-1-left p {
    font-size: 2.08vw;
  }

  .container-main-1-right {
    background-size: 55.56vw;
    padding-top: 48.61vw;
  }

  .container-main-1-right-stars1 {
    top: 17.36vw;
    left: 3.47vw;
    width: 3.47vw;
  }

  .container-main-1-right-stars2 {
    bottom: 0vw;
    left: 12.5vw;
    width: 5.14vw;
  }

  .container-main-1-right-stars3 {
    top: 6.25vw;
    right: 0vw;
    width: 3.47vw;
  }

  .container-main-1-circle {
    width: 48.61vw;
    right: 22.22vw;
    top: 1.74vw;
  }

  .container-main-1-box {
    margin-top: 3.47vw;
  }

  .container-main-1-box > ul li {
    margin-left: 1.74vw;
    font-size: 1.53vw;
  }

  .container-main-1-box > button {
    font-size: 1.25vw;
    padding: 0.69vw 1.74vw;
    border-radius: 0.35vw;
    margin-top: 5.56vw;
    border: 0.21vw solid #bd6df2;
  }

  /* 3 */

  .container-main-3 {
    gap: 3.125vw;
    margin-top: 9.027vw;
    padding: 6.944vw;
  }

  .container-main-3-left {
    gap: 2.778vw;
  }

  .container-main-3-left > h1 {
    font-size: 3.333vw;
  }

  .container-main-3-left > p {
    font-size: 1.25vw;
  }

  #video-container {
    width: 44.444vw;
    height: 25vw;
    border-radius: 1.042vw;
  }

  #play-overlay {
    width: 44.444vw;
    border-radius: 1.042vw;
  }

  #play-button {
    width: 5.556vw;
    height: 5.556vw;
  }

  video {
    width: 44.444vw;
    border-radius: 1.042vw;
  }

  /* 4 */
  .container-main-4 {
    margin-top: 9.03vw;
    padding: 0 6.94vw;
  }

  .container-main-4 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-4-type2,
  .container-main-4-type1 {
    height: 31.6vw;
  }

  .container-main-4-type2 > img {
    width: 31.25vw;
    right: -31.25vw;
  }

  .container-main-4-type1 > img {
    width: 31.25vw;
    left: -31.25vw;
  }

  .container-main-4-type2-box {
    gap: 2.78vw;
    width: 54.86vw;
    left: -54.86vw;
  }

  .container-main-4-type1-box {
    gap: 2.78vw;
    width: 54.86vw;
    right: -54.86vw;
  }

  .container-main-4-type2-box > h1,
  .container-main-4-type1-box > h1 {
    font-size: 2.08vw;
  }

  .container-main-4-type2-box-bottom,
  .container-main-4-type1-box-bottom {
    gap: 1.04vw;
  }

  .container-main-4-type2-box-bottom span,
  .container-main-4-type1-box-bottom span {
    gap: 1.04vw;
  }

  .container-main-4-type2-box-bottom span img,
  .container-main-4-type1-box-bottom span img {
    width: 2.5vw;
  }

  .container-main-4-type2-box-bottom span h2,
  .container-main-4-type1-box-bottom span h2 {
    font-size: 1.39vw;
  }

  .container-main-4-type2-box-bottom ul,
  .container-main-4-type1-box-bottom ul {
    margin-left: 1.74vw;
  }

  .container-main-4-type2-box-bottom li,
  .container-main-4-type1-box-bottom li {
    font-size: 1.11vw;
    padding: 0.69vw;
    margin-left: 1.04vw;
  }

  /* 5 */

  .container-main-5 {
    padding: 0 6.94vw;
    margin-top: 9.03vw;
  }

  .container-main-5 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .image-track {
    height: 27.78vw;
    width: 69.44vw;
  }

  .image-item {
    width: 20.83vw;
    height: 20.83vw;
    box-shadow: 0 0.28vw 1.04vw rgba(0, 0, 0, 0.2);
  }

  .image-item img {
    width: 17.36vw;
  }

  .details-content {
    gap: 1.04vw;
  }

  .details-content h2 {
    font-size: 2.08vw;
  }

  .specs-list {
    margin-left: 2.78vw;
  }

  .specs-list li {
    font-size: 1.39vw;
  }

  /* 6 */
  .container-main-6 {
    padding: 0 6.94vw;
    margin-top: 15.97vw;
    padding-bottom: 13.89vw;
  }

  .container-main-6 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-6-bottom {
    gap: 1.74vw;
  }

  .container-main-6-bottom span {
    gap: 1.04vw;
  }

  .container-main-6-bottom span img {
    width: 1.74vw;
  }

  .container-main-6-bottom span p {
    font-size: 1.25vw;
  }

  .container-main-6-circle {
    width: 62.5vw;
  }

  /* 7 */
  .container-main-7 {
    padding: 0 6.94vw;
    margin-top: 9.03vw;
  }

  .container-main-7 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-7-bottom {
    gap: 5.56vw;
  }

  .container-main-7-bottom a {
    gap: 0.69vw;
  }

  .container-main-7-bottom a p {
    font-size: 1.25vw;
  }

  /* 8 */

  .container-main-8 {
    padding: 0 6.94vw;
    margin-top: 9.03vw;
    margin-bottom: 13.89vw;
  }

  .container-main-8 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-8-bottom img {
    width: 13.47vw;
  }

  .container-main-8-bottom {
    gap: 1.5vw;
  }

  /* 9 */

  /* .container-main-9 {
    max-width: 86.11vw;
    height: 40.63vw;
    border: 1px solid #8894c8;
    border-radius: 1.04vw;
    margin-bottom: 17.361vw;
    padding: 3.47vw;
    gap: 3.13vw;
  }

  .container-main-9-left-top h1 {
    font-size: 2.5vw;
    margin-bottom: 1.11vw;
  }

  .container-main-9-left-top p {
    font-size: 1.39vw;
  }

  .container-main-9-left-bottom {
    gap: 2.08vw;
  }

  .container-main-9-left-bottom a img {
    width: 3.95vw;
  }

  .container-main-9-right {
    height: 32.64vw;
    border-radius: 1.04vw;
    padding: 2.08vw;
  }

  .form-container {
    padding: 1.39vw;
  }

  .input-container {
    margin-bottom: 1.4vw;
  }

  .input-container label {
    left: 0.69vw;
    font-size: 0.97vw;
  }

  .input-container input,
  .input-container textarea {
    padding: 0.83vw 0.69vw;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.35vw;
    font-size: 1.11vw;
  }

  .input-container textarea {
    max-height: 6.94vw;
  }

  .input-container input:focus ~ label,
  .input-container input:not(:placeholder-shown) ~ label,
  .input-container textarea:focus ~ label,
  .input-container textarea:not(:placeholder-shown) ~ label {
    top: 0.69vw;
    font-size: 0.69vw;
  }

  .input-container input:focus {
    padding: 1.04vw 0.69vw;
    padding-bottom: 0.63vw;
  }

  .submit-btn2 {
    width: 12.5vw;
    padding: 0.76vw 4.03vw;
    font-size: 1.11vw;
    border-radius: 0.35vw;
  } */

  .container-main-9-back {
    margin-bottom: 17.36vw;
  }

  .container-main-9 {
    width: 100%;
    padding: 3.13vw;
    margin: 0 6.94vw;
    box-shadow: 0px 0px 0.69vw rgba(27, 19, 59, 0.15);
    border-radius: 1.04vw;
    border: 0.07vw solid #799dcb;
  }

  .container-main-92-right {
    border-radius: 1.04vw;
  }

  .container-main-92-left > h1 {
    font-size: 2.5vw;
    margin-bottom: 2.08vw;
  }

  .container-main-92-left > p {
    font-size: 1.39vw;
    margin-bottom: 3.47vw;
  }

  .container-main-92-left > div {
    gap: 1.39vw;
  }

  .container-main-92-left > div > a {
    width: 3.13vw;
    height: 3.13vw;
    border: 0.14vw solid #799dcb;
    border-radius: 1.04vw;
  }

  .container-main-92-left > div > a > i {
    font-size: 1.39vw;
  }
}

@media screen and (max-width: 501px) {
  /* .container-main-1-back,
  .container-main-4,
  .container-main-9 {
    display: none;
  } */

  .container-main-1-back,
  .container-main-4 {
    display: none;
  }

  .container-main {
    margin-top: 9vw;
  }

  /* 1 */
  .container-main-1-mobile {
    background-image: url("../images/SpicaSol/background\ co\ 1\ mobile.png");
    background-size: 99.8vw;
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    padding: 0 5.988vw;
    display: flex;
    flex-direction: column;
    gap: 2.994vw;
    padding-top: 9.98vw;
    padding-bottom: 2.994vw;
    margin-top: 6vw;
  }

  .container-main-1-mobile h1 {
    font-size: 6.387vw;
    color: white;
  }

  .container-main-1-mobile p {
    color: var(--color-Ellipse-2);
    font-size: 4.79vw;
    font-weight: bold;
    margin-bottom: 5.988vw;
  }

  .container-main-1-mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 2.994vw;
  }

  .container-main-1-mobile-bottom a,
  .container-main-1-mobile-bottom a img {
    width: 8.383vw;
  }

  .container-main-1-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 103.793vw;
  }

  .container-main-1-box > ul li {
    list-style: disc;
    margin-left: 4.991vw;
    color: white;
    font-size: 3.592vw;
    line-height: 2;
    font-weight: 400;
  }

  .container-main-1-box > button {
    color: white;
    width: 100%;
    padding: 1.996vw 0;
    background-color: #bd6df2;
    border: unset;
    outline: unset;
    border-radius: 1vw;
    cursor: pointer;
    margin-top: 15.968vw;
    font-size: 3.592vw;
    font-weight: 400;
  }

  /* 3 */
  .container-main-3 {
    flex-direction: column;
    gap: 7.98vw;
  }

  .container-main-3-left > h1 {
    font-size: 6.39vw;
  }

  .container-main-3-left > p {
    font-size: 3.59vw;
  }

  #video-container {
    width: 100%;
    height: fit-content;
    border-radius: 2.99vw;
  }

  #play-button {
    width: 15.97vw;
    height: 15.97vw;
  }

  #play-overlay {
    width: 100%;
  }

  video {
    width: 100%;
    border-radius: 2.99vw;
  }

  /* 4 */

  .container-main-4-mobile {
    display: flex;
    flex-direction: column;
    gap: 7.984vw;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 5.988vw;
    margin-top: 27.944vw;
  }

  .container-main-4-mobile > h1 {
    width: 100%;
    font-size: 6.387vw;
    color: white;
    margin-bottom: 5.988vw;
  }

  .container-main-4-mobile-type2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .container-main-4-mobile-type2 h1 {
    font-size: 4.79vw;
    color: #799dcb;
  }

  .container-main-4-mobile-type2 > img {
    width: 47.904vw;
  }

  .container-main-4-mobile-type2-bottom {
    display: flex;
    flex-direction: column;
    gap: 2.994vw;
  }

  .container-main-4-mobile-type2-bottom span {
    display: flex;
    align-items: center;
    gap: 2.994vw;
  }

  .container-main-4-mobile-type2-bottom span img {
    width: 7.186vw;
  }

  .container-main-4-mobile-type2-bottom span h2 {
    color: white;
    font-size: 3.992vw;
  }

  .container-main-4-mobile-type2-bottom ul {
    margin-left: 4.99vw;
  }

  .container-main-4-mobile-type2-bottom li {
    color: white;
    font-size: 3.194vw;
    padding: 1.996vw;
    list-style: disc;
    margin-left: 2.994vw;
    line-height: 4.99vw;
  }

  .container-main-4-mobile > img {
    width: 6.986vw;
  }

  /* 5 */
  .container-main-5 {
    padding: 0 5.988vw;
    width: 100%;
    height: fit-content;
    margin-top: 27.944vw;
  }

  .container-main-5 > h1 {
    font-size: 6.387vw;
    color: white;
    margin-bottom: 11.976vw;
  }

  .image-track {
    height: 49.9vw;
  }

  .image-item {
    width: 47.904vw;
    height: 47.904vw;
  }

  .image-item img {
    width: 39.92vw;
    height: auto;
  }

  .details-content h2 {
    margin-top: 5.988vw;
    font-size: 3.992vw;
  }

  .specs-list {
    margin-left: 4.99vw;
  }

  .specs-list li {
    font-size: 3.194vw;
  }

  /* 6 */
  .container-main-6 {
    padding: 0 5.988vw;
    width: 100%;
    margin-top: 27.944vw;
  }

  .container-main-6 > h1 {
    font-size: 6.387vw;
    margin-bottom: 8.982vw;
  }

  .container-main-6-bottom {
    gap: 4.99vw;
  }

  .container-main-6-bottom span {
    gap: 2.994vw;
  }

  .container-main-6-bottom span img {
    width: 4.391vw;
  }

  .container-main-6-bottom span p {
    font-size: 3.592vw;
  }

  .container-main-6-circle {
    display: none;
  }

  /* 7 */
  .container-main-7 {
    padding: 0 5.988vw;
    width: 100%;
    margin-top: 27.944vw;
  }

  .container-main-7 > h1 {
    font-size: 6.387vw;
    margin-bottom: 8.982vw;
  }

  .container-main-7-bottom {
    width: 100%;
    display: flex;
    justify-content: start;
    gap: 2.594vw;
    overflow: hidden;
    cursor: pointer;
  }

  .container-main-7-bottom a {
    width: 59.88vw;
  }

  .container-main-7-bottom a img {
    width: 59.88vw;
  }

  .container-main-7-bottom a p {
    text-align: left;
    font-size: 2.994vw;
  }

  /* 8 */
  .container-main-8 {
    padding: 0 5.988vw;
    width: 100%;
    margin-top: 27.944vw;
  }

  .container-main-8 > h1 {
    font-size: 6.387vw;
    margin-bottom: 8.982vw;
  }

  .container-main-8-bottom {
    width: 100%;
    display: flex;
    gap: 2.594vw;
    overflow: hidden;
    cursor: pointer;
  }

  .container-main-8-bottom img {
    width: 21.956vw;
  }

  .container-main-8-bottom:active {
    cursor: grabbing;
  }

  /* 9 */
  /* .container-main-9-mobile {
    display: block;
    width: 95%;
    border-radius: 2.994vw;
    padding: 7.984vw 4.79vw;
    margin-bottom: 23.95vw;
  }

  .container-main-9-mobile h1 {
    color: white;
    font-size: 4.79vw;
    margin-bottom: 7vw;
  }

  .container-main-9-mobile p {
    color: white;
    font-size: 2.994vw;
    margin-bottom: 7.984vw;
  }

  .form-container {
    background-image: url("../images/SpicaSol/container-main-2-right-background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 2.994vw;
    padding: 3.992vw;
    border: 1px solid #799dcbb0;
  }

  .input-container {
    position: relative;
    margin-bottom: 5.988vw;
  }

  .input-container label {
    position: absolute;
    top: 50%;
    left: 1.996vw;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.794vw;
    transition: 0.3s;
    pointer-events: none;
  }

  .input-container input,
  .input-container textarea {
    width: 100%;
    padding: 2.395vw 1.996vw;
    background: none;
    border: 0.1996vw solid rgba(255, 255, 255, 0.5);
    border-radius: 0.998vw;
    color: white;
    font-size: 3.194vw;
    outline: none;
  }

  .input-container textarea {
    resize: vertical;
    max-height: 19.96vw;
  }

  .input-container input:focus ~ label,
  .input-container input:not(:placeholder-shown) ~ label,
  .input-container textarea:focus ~ label,
  .input-container textarea:not(:placeholder-shown) ~ label {
    top: 1.996vw;
    font-size: 1.996vw;
    color: white;
  }

  .input-container input:focus {
    padding: 2.994vw 1.996vw;
    padding-bottom: 1.796vw;
  }

  .button-container {
    width: 100%;
    height: fit-content;
    text-align: right;
    margin: 0;
    padding: 0;
  }

  .submit-btn2 {
    width: 100%;
    padding: 2.195vw 11.576vw;
    background-color: transparent;
    border: 1px solid #c084fc;
    color: #c084fc;
    font-size: 3.194vw;
    border-radius: 0.998vw;
    cursor: pointer;
    transition: 0.3s;
  }

  .submit-btn2:hover {
    background-color: #a855f7;
  } */
  .container-main-9 {
    margin: 0 4.99vw;
    max-width: 100%;
    flex-direction: column;
    gap: 4.99vw;
    border-radius: 2.99vw;
    border: unset;
    background-color: unset;
  }

  .container-main-92-left,
  .container-main-92-right {
    width: 100%;
  }

  .container-main-92-right {
    margin-bottom: 15vw;
    border: 1px solid #799dcb;
    border-radius: 15px;
    padding-bottom: 9.98vw;
  }

  .container-main-92-left > div {
    display: none;
  }

  .container-main-92-left > h1 {
    font-size: 5vw;
    color: white;
    font-weight: 500;
    margin-bottom: 3.19vw;
    margin-top: 2vw;
  }

  .container-main-92-left > p {
    font-size: 3.4vw;
    color: white;
    font-weight: 500;
    line-height: 1.5;
  }

  .submit-btn2 {
    left: 50%;
    transform: translate(-50%, 0);
    width: 75%;
    bottom: 2.8%;
  }
}
