* {
  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;
}

body {
  background-color: #291a77;
}

/* 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;
}

/* 1 */

.container-main-1 {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-main-1-right {
  width: 50%;
}

.container-main-1-left {
  width: 50%;
  margin: auto;
  margin: 100px 0;
}

.container-main-1-left h1 {
  white-space: normal;
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 45px;
}

.container-main-1-left img {
  display: none;
}

.container-main-1-left > ul {
  margin-bottom: 90px;
}

.container-main-1-left > ul > li {
  list-style: disc;
  margin-left: 30px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.container-main-1-left > a {
  padding: 10px 33px;
  color: white;
  background-color: #bd6df2;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}

.container-main-1-left > a:hover {
  background-color: #bd6df2bb;
}

/* 2 */
.container-main-2 {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 120px;
  margin-bottom: 250px;
}

.container-main-2-mobile {
  display: none;
}

.container-main-2 > h1 {
  color: white;
  font-weight: bold;
  font-size: 48px;
}

.container-main-2-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.container-main-2-box {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px 15px;
  width: 400px;
  background-color: rgba(255, 255, 255, 0.134);
  border-radius: 15px;
  border: 2px solid #799dcb;
}

.container-main-2-box > img {
  width: 62px;
  height: 62px;
}
.container-main-2-box > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.container-main-2-box > div > h1 {
  font-size: 18px;
  font-weight: 500;
  color: #799dcb;
}
.container-main-2-box > div > p {
  color: white;
  font-size: 500;
  font-size: 16px;
}

/* 3 */
.container-main-3 {
  max-width: 1440px;
  padding: 0 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 200px;
}

.container-main-3 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container-main-3-bottom {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.container-main-3-bottom span {
  display: flex;
  align-items: center;
  gap: 15px;
}
.container-main-3-bottom span img {
  width: 25px;
}
.container-main-3-bottom span p {
  color: white;
  font-size: 18px;
}

.container-main-3-circle {
  width: 900px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, 0);
  transform-origin: center center;
  animation: rotateQuarter 8s 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);
  }
}

.container-main-3-bottom-2 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 100px;
}

.container-main-3-bottom-2 > h1 {
  font-size: 36px;
  color: #799dcb;
  font-weight: 400;
}

.container-main-3-bottom-2-details {
  display: flex;
  gap: 50px;
  align-items: center;
}

.container-main-3-bottom-2-details > p {
  color: white;
  font-size: 18px;
  background-color: #799dcb3b;
  border-radius: 15px;
  border: 2px solid #799dcb;
  padding: 25px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.container-main-3-bottom-2-details > p:nth-child(1) {
  animation-delay: 0s;
}

.container-main-3-bottom-2-details > p:nth-child(2) {
  animation-delay: 2s;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

.container-main-3-bottom-2-details > p > span {
  color: #bd6df2;
}

/* 4 */

.container-main-4 {
  width: 100%;
  max-width: 1440px;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.container-main-4 > h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
}

.container-main-4-btns {
  width: fit-content;
  margin: auto;
  display: flex;
  gap: 15px;
  border: 2px solid #799dcb;
  border-radius: 50px;
  padding: 10px 13px;
}

.container-main-4-btns > button {
  width: 50%;
  white-space: nowrap;
  padding: 10px 90px;
  border-radius: 50px;
  border: unset;
  outline: unset;
  font-size: 17px;
  color: white;
  cursor: pointer;
}

.container-main-4-section-1,
.container-main-4-section-2 {
  margin-top: 40px;
}

.container-main-4-section-box {
  display: flex;
  gap: 150px;
  align-items: center;
}

.container-main-4-section-box > img {
  width: 543px;
  height: 255px;
  margin-top: 150px;
}

.container-main-4-box-detail {
  display: flex;
  flex-direction: column;
}

.container-main-4-box-detail > h1 {
  font-size: 24px;
  color: #799dcb;
  font-weight: 500;
  margin-bottom: 40px;
}
.container-main-4-box-detail > h2 {
  font-size: 18px;
  color: white;
  font-weight: 400;
  margin-bottom: 25px;
}
.container-main-4-box-detail > h3 {
  font-size: 16px;
  color: white;
  font-weight: 400;
  margin-bottom: 10px;
}
.container-main-4-box-detail > ul > li {
  font-size: 16px;
  color: white;
  font-weight: 300;
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 5px;
}

.container-main-4-box-detail > ul > li span {
  color: #799dcb;
}

.container-main-4-box-detail > a {
  font-size: 18px;
  color: #bd6df2;
  font-weight: 600;
  margin-top: 27px;
}

.container-main-4-box-detail > a > i {
  color: #bd6df2;
}

.container-main-4-section-box {
  height: 450px;
  transition: opacity 0.5s ease;
}

.container-main-4-mobile {
  display: none;
}

.dot-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(121, 157, 203, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #799dcb;
}

.dot-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.dots-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dots-wrapper > i {
  color: white;
  font-size: 25px;
  cursor: pointer;
  transform: scale(1);
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #799dcb;
}

#prevBtn-desktop {
  margin-right: 270px;
}

#nextBtn-desktop {
  margin-left: 270px;
}
.brain-wrapper,
.spica-wrapper {
  position: relative;
  overflow: hidden;
  height: 450px;
  width: 100%;
}

.brain-wrapper > img,
.spica-wrapper > img {
  width: 543px;
}

.brain-box,
.spica-box {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: row;
  transition: left 0.5s ease;
}

.spica-box h1,
.spica-box h2,
.spica-box h3,
.spica-box ul li,
.spica-box a {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.brain-box h1,
.brain-box h2,
.brain-box h3,
.brain-box ul li,
.brain-box a {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.spica-box.fade-in h1,
.spica-box.fade-in h2,
.spica-box.fade-in h3,
.spica-box.fade-in ul li,
.spica-box.fade-in a {
  opacity: 1;
}

.brain-box.fade-in h1,
.brain-box.fade-in h2,
.brain-box.fade-in h3,
.brain-box.fade-in ul li,
.brain-box.fade-in a {
  opacity: 1;
}

/* 5 */
.container-main-5 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;

  padding: 120px 100px;
}

.container-main-5-left h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  width: 730px;
  margin-bottom: 40px;
  white-space: nowrap;
}

.container-main-5-left p {
  color: white;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 52px;
}

.container-main-5-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.container-main-5-right > a {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #799dcb;
}

.container-main-5-right > a > i {
  color: #799dcb;
  font-size: 24px;
}

/* 6 */
.container-main-6 {
  max-width: 1440px;
  width: 100%;
  margin-top: 130px;
  margin-bottom: 200px;
  padding: 0 100px;
}

.container-main-6 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 32px;
}

.container-main-6 > p {
  width: 70%;
  color: white;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 60px;
}

.container-main-6-bottom {
  width: 100%;
  display: flex;
  gap: 25px;
  overflow: hidden;
  cursor: pointer;
}

.container-main-6-bottom img {
  width: 194px;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.container-main-6-bottom:active {
  cursor: grabbing;
}

/* 7 */
.container-main-7 {
  max-width: 1440px;
  height: 535px;
  width: 100%;
  padding: 0 100px;

  background-image: url("../images/Case-Studies/Group\ 1171275153.png");
  background-size: 800px;
  background-position: right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.container-main-7 h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  width: 730px;
  margin-bottom: 40px;
}

.container-main-7 p {
  color: white;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 52px;
}

.container-main-7 a {
  color: white;
  padding: 10px 26px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 400;
  background-color: var(--color-Ellipse-4);
  transition: 0.5s;
  font-weight: 500;
  background-color: #bd6df2;
}

.container-main-7 a:hover {
  cursor: pointer;
  background-color: #bd6df2a8;
}

@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: 3.13vw;
  }

  .container-main-1-left > ul {
    margin-bottom: 6.25vw;
  }

  .container-main-1-left > ul > li {
    margin-left: 2.08vw;
    font-size: 1.39vw;
  }

  .container-main-1-left > a {
    padding: 0.69vw 2.29vw;
    border-radius: 0.35vw;
    font-size: 1.25vw;
  }

  /* 2 */
  .container-main-2 {
    padding: 0 6.94vw;
    gap: 5.56vw;
    margin-top: 8.33vw;
    margin-bottom: 17.36vw;
  }

  .container-main-2 > h1 {
    font-size: 3.33vw;
  }

  .container-main-2-bottom {
    gap: 0.5vw;
    row-gap: 2vw;
  }

  .container-main-2-box {
    gap: 2.08vw;
    padding: 1.39vw 1.04vw;
    width: 27.78vw;
    border-radius: 1.04vw;
    border: 0.14vw solid #799dcb;
  }

  .container-main-2-box > img {
    width: 4.31vw;
    height: 4.31vw;
  }

  .container-main-2-box > div {
    gap: 0.83vw;
  }

  .container-main-2-box > div > h1 {
    font-size: 1.25vw;
  }

  .container-main-2-box > div > p {
    font-size: 1.11vw;
  }

  /* 3 */
  .container-main-3 {
    padding: 8.33vw 6.94vw;
    margin-bottom: 14vw;
  }

  .container-main-3 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-3-bottom {
    gap: 1.74vw;
  }

  .container-main-3-bottom span {
    gap: 1.04vw;
  }

  .container-main-3-bottom span img {
    width: 1.74vw;
  }

  .container-main-3-bottom span p {
    font-size: 1.25vw;
  }

  .container-main-3-circle {
    width: 31.25vw;
    right: 6.94vw;
    top: -3.47vw;
  }

  .container-main-3-bottom-2 {
    gap: 3.47vw;
    margin-top: 6.94vw;
  }

  .container-main-3-bottom-2 > h1 {
    font-size: 2.5vw;
  }

  .container-main-3-bottom-2-details {
    display: flex;
  }

  .container-main-3-bottom-2-details > p {
    font-size: 1.25vw;
    border-radius: 1.04vw;
    border: 0.14vw solid #799dcb;
    padding: 1.74vw;
  }

  /* 4 */

  .container-main-4 {
    padding: 0 6.94vw;
    gap: 3.47vw;
  }

  .container-main-4 > h1 {
    font-size: 3.33vw;
  }

  .container-main-4-btns {
    gap: 1.04vw;
    border: 0.14vw solid #799dcb;
    border-radius: 3.47vw;
    padding: 0.69vw 0.9vw;
  }

  .container-main-4-btns > button {
    padding: 0.69vw 6.25vw;
    border-radius: 3.47vw;
    font-size: 1.18vw;
  }

  .container-main-4-section-1,
  .container-main-4-section-2 {
    margin-top: 2.78vw;
  }

  .container-main-4-section-box {
    gap: 10.42vw;
    height: 31.25vw;
  }

  .container-main-4-section-box > img {
    width: 37.7vw;
    height: 17.7vw;
    margin-top: 10.42vw;
  }

  .container-main-4-box-detail > h1 {
    font-size: 1.67vw;
    margin-bottom: 2.78vw;
  }
  .container-main-4-box-detail > h2 {
    font-size: 1.25vw;
    margin-bottom: 1.74vw;
  }
  .container-main-4-box-detail > h3 {
    font-size: 1.11vw;
    margin-bottom: 0.69vw;
  }
  .container-main-4-box-detail > ul > li {
    font-size: 1.11vw;
    margin-left: 1.74vw;
    margin-bottom: 0.35vw;
  }

  .container-main-4-box-detail > a {
    font-size: 1.25vw;
    margin-top: 1.88vw;
  }

  .dot-navigation {
    margin-top: 1.39vw;
    gap: 0.69vw;
  }

  .dots-wrapper {
    gap: 0.56vw;
  }

  .dots-wrapper > i {
    font-size: 1.74vw;
  }

  .dot {
    width: 1.04vw;
    height: 1.04vw;
  }

  #prevBtn-desktop {
    margin-right: 18.75vw;
  }

  #nextBtn-desktop {
    margin-left: 18.75vw;
  }

  .brain-wrapper,
  .spica-wrapper {
    height: 31.25vw;
  }

  .brain-wrapper > img,
  .spica-wrapper > img {
    width: 37.7vw;
  }

  /* 5 */
  .container-main-5 {
    padding: 8.33vw 6.94vw;
  }

  .container-main-5-left h1 {
    font-size: 3.33vw;
    width: 50.69vw;
    margin-bottom: 2.78vw;
  }

  .container-main-5-left p {
    font-size: 1.25vw;
    margin-bottom: 3.61vw;
  }

  .container-main-5-right {
    gap: 1.74vw;
  }

  .container-main-5-right > a {
    width: 4.44vw;
    height: 4.44vw;
    border-radius: 0.69vw;
    border: 0.14vw solid #799dcb;
  }

  .container-main-5-right > a > i {
    font-size: 1.67vw;
  }

  /* 6 */
  .container-main-6 {
    margin-top: 9.03vw;
    margin-bottom: 13.89vw;
    padding: 0 6.94vw;
  }

  .container-main-6 > h1 {
    font-size: 2.78vw;
    margin-bottom: 2.22vw;
  }

  .container-main-6 > p {
    font-size: 2vw;
    margin-bottom: 4.17vw;
  }

  .container-main-6-bottom {
    gap: 1.74vw;
  }

  .container-main-6-bottom img {
    width: 13.47vw;
  }

  /* 7 */
  .container-main-7 {
    height: 37.15vw;
    padding: 0 6.94vw;
    background-size: 69.44vw;
  }

  .container-main-7 h1 {
    font-size: 3.33vw;
    width: 50.69vw;
    margin-bottom: 2.78vw;
  }

  .container-main-7 p {
    font-size: 1.25vw;
    margin-bottom: 3.61vw;
  }

  .container-main-7 a {
    padding: 0.69vw 1.81vw;
    border-radius: 0.49vw;
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 501px) {
  /* 1 */
  .container-main-1 {
    padding-top: 9.98vw;
    margin-bottom: 29.94vw;
    padding-right: 0;
  }

  .container-main-1-right {
    width: 0%;
  }

  .container-main-1-left {
    width: 100%;
  }

  .container-main-1-left img {
    width: 100%;
    display: block;
    margin-bottom: 11.98vw;
  }

  .container-main-1-left h1 {
    font-size: 6.39vw;
    margin-bottom: 0;
  }

  .container-main-1-left > ul > li {
    margin-left: 3.99vw;
    font-size: 3.19vw;
    margin-bottom: 1.99vw;
  }

  .container-main-1-left > ul {
    margin-bottom: 9.98vw;
  }

  .container-main-1-left > a {
    padding: 1.99vw 22.95vw;
    color: white;
    background-color: #bd6df2;
    border-radius: 1vw;
    font-size: 3.59vw;
    font-weight: 500;
  }

  /* 2 */
  .container-main-2 {
    display: none;
  }

  .container-main-2-mobile {
    width: 100%;
    padding: 0 5.99vw;
    display: flex;
    flex-direction: column;
    margin-bottom: 30vw;
  }

  .container-main-2-mobile > h1 {
    color: white;
    font-size: 6.39vw;
    margin-bottom: 6.99vw;
  }

  .container-main-2-box {
    height: 27.94vw;
    width: 73.05vw;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding-left: 3.99vw;
    border-radius: 2.99vw;
  }

  .container-main-2-mobile-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 2.99vw;
  }

  .container-main-2-box {
    display: flex;
    width: 100%;
    padding-right: 2vw;
  }

  .container-main-2-box > img {
    width: 11.18vw;
    height: 11.18vw;
  }

  .container-main-2-box > div {
    display: flex;
    flex-direction: column;
    gap: 2.39vw;
  }

  .container-main-2-box > div > h1 {
    font-size: 3.29vw;
  }

  .container-main-2-box > div > p {
    font-size: 2.79vw;
  }

  /* 3 */
  .container-main-3 {
    margin-bottom: 25.95vw;
  }

  .container-main-3 > h1 {
    font-size: 6.39vw;
    margin-bottom: 9.98vw;
  }

  .container-main-3-bottom {
    gap: 5vw;
  }

  .container-main-3-bottom span {
    gap: 3.3vw;
  }

  .container-main-3-bottom span img {
    width: 4.99vw;
  }

  .container-main-3-bottom span p {
    font-size: 3.19vw;
    font-weight: 400;
  }

  .container-main-3-bottom-2 {
    gap: 9.98vw;
    margin-top: 15.97vw;
  }

  .container-main-3-bottom-2 > h1 {
    font-size: 4.79vw;
    color: #799dcb;
    font-weight: bold;
    margin-bottom: 5.99vw;
  }

  .container-main-3-bottom-2 > h1 > br {
    display: none;
  }

  .container-main-3-bottom-2-details {
    display: flex;
    gap: 3.99vw;
    flex-direction: column;
  }

  .container-main-3-bottom-2-details > p {
    color: white;
    font-size: 3.19vw;
    border-radius: 2.99vw;
    border: 0.4vw solid #799dcb;
    background-image: unset;
    background-color: #799dcb34;
    padding: 4.99vw;
    line-height: 1.5;
  }

  .container-main-3-bottom-2-details > p {
    animation: unset;
  }

  .container-main-3-circle {
    width: 60vw;
    position: absolute;
    right: 0;
    top: 20vw;
    opacity: 0.5;
  }

  /* 4 */
  .container-main-4 {
    display: none;
  }

  .container-main-4-mobile {
    width: 100%;
    padding: 0 5.99vw;
    display: flex;
    flex-direction: column;
    gap: 8.98vw;
    margin-bottom: 29.94vw;
  }

  .container-main-4-mobile > h1 {
    color: white;
  }

  .dropdown-wrapper {
    width: 100%;
    border: 0.4vw solid #799dcb;
    padding: 1.99vw;
    border-radius: 9.98vw;
  }

  .dropdown-button {
    background-color: #799dcb;
    border-radius: 9.98vw;
    width: 100%;
    padding: 3vw 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  #selected-label {
    color: white;
    font-size: 3.99vw;
    font-weight: 400;
  }

  .arrow {
    color: white;
    font-size: 3.99vw;
    transition: transform 0.3s;
  }

  .open .arrow {
    transform: rotate(180deg);
  }

  .dropdown-options {
    margin-top: 2vw;
    border-radius: 2vw;
    overflow: hidden;
    display: none;
    flex-direction: column;

    width: 100%;
    border: 0.4vw solid #799dcb;
    padding: 1.99vw;
    border-radius: 9.98vw;
  }

  .dropdown-options button {
    color: white;
    background-color: #799dcb;
    border-radius: 9.98vw;
    padding: 3vw 0;
    font-size: 3.99vw;
    font-weight: 400;
  }

  .navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5.99vw;
  }

  #prevBtn,
  #nextBtn {
    padding: 1.99vw 2.99vw;
    font-size: 4.99vw;
    cursor: pointer;
    color: white;
  }

  .dots {
    display: flex;
    gap: 1.6vw;
  }

  .dot {
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    border: 0.2vw solid gray;
  }

  .dot.active {
    background: #bd6df2;
  }

  .c4-section-mobile-box {
    width: 100%;
    overflow: hidden;
  }

  .c4-section-mobile-box > img {
    width: 100%;
    margin-bottom: 9.98vw;
  }

  .c4-section-mobile-box > h1 {
    font-size: 3.99vw;
    color: #799dcb;
    font-weight: bold;
    margin-bottom: 6.39vw;
  }

  .c4-section-mobile-box > h2 {
    font-size: 3.59vw;
    color: white;
    font-weight: 500;
    margin-bottom: 4.99vw;
  }

  .c4-section-mobile-box > h3 {
    font-size: 2.99vw;
    color: white;
    font-weight: 400;
    margin-bottom: 1.99vw;
  }

  .c4-section-mobile-box > ul > li {
    font-size: 3.19vw;
    color: white;
    font-weight: 300;
    list-style: disc;
    margin-left: 4.99vw;
    margin-bottom: 1.99vw;
  }

  .c4-section-mobile-box > ul > li span {
    color: #799dcb;
  }

  .c4-section-mobile-box > a {
    font-size: 3.59vw;
    color: #bd6df2;
    font-weight: 600;
    margin-top: 5.39vw;
  }

  .c4-section-mobile-box > a > i {
    color: #bd6df2;
    margin-top: 3.99vw;
  }

  /* 5 */
  .container-main-5 {
    position: relative;
    padding-bottom: 50vw;
  }

  .container-main-5-left h1 {
    font-size: 6.39vw;
    font-weight: bold;
    width: 100%;
    margin-bottom: 7.98vw;
    white-space: nowrap;
  }

  .container-main-5-left p {
    color: white;
    font-size: 3.59vw;
    font-weight: 400;
    margin-bottom: 10.38vw;
  }

  .container-main-5-left a {
    padding: 1.99vw 5.19vw;
    border-radius: 1.39vw;
    font-size: 3.59vw;
    font-weight: bold;
    transition: 0.5s;
  }

  .container-main-5-right {
    position: absolute;
    right: 6.94vw;
    top: 59.88vw;
  }

  .container-main-5-right > a {
    width: 12.77vw;
    height: 12.77vw;
    border-radius: 1.99vw;
    border: 1px solid #799dcb;
  }

  .container-main-5-right > a > i {
    font-size: 4.79vw;
  }

  /* 6 */
  .container-main-6 > h1 {
    font-size: 6.39vw;
    margin-bottom: 7.98vw;
  }

  .container-main-6 > p {
    width: 100%;
    color: white;
    font-size: 3.59vw;
    font-weight: 400;
    margin-bottom: 8.58vw;
    line-height: 1.5;
  }

  .container-main-6-bottom {
    width: 100%;
    display: flex;
    gap: 1.99vw;
    overflow: hidden;
    cursor: pointer;
  }

  .container-main-6-bottom img {
    width: 24.15vw;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  /* 7 */
  .container-main-7 {
    height: fit-content;
    width: 100%;
    background-image: unset;
    overflow: hidden;
    padding-top: 15.97vw;
    padding-bottom: 25vw;
  }

  .container-main-7 h1 {
    width: 100%;
    font-size: 6.39vw;
    margin-bottom: 6.39vw;
    line-height: 1.8;
  }

  .container-main-7 p {
    font-weight: 400;
    font-size: 3.99vw;
    margin-bottom: 10vw;
    line-height: 1.8;
  }

  .container-main-7 p br {
    display: none;
  }

  .container-main-7 a {
    width: 100%;
    color: white;
    padding: 2.99vw 22vw;
    border-radius: 1.4vw;
    font-size: 3.59vw;
    font-weight: 500;
    background-color: #bd6df2;
  }
}
