@font-face {
  font-family: arco;
  src: url("../fonts/arco/ARCO.ttf");
}

@font-face {
  font-family: japanese_3017;
  src: url("../fonts/japanese_3017/Japanese\ 3017.ttf");
}

@font-face {
  font-family: alvina_demo;
  src: url("../fonts/alvina/Alvina_Demo.ttf");
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

:root {
  --yellow-color: rgba(255, 226, 1, 1);
  --red-color: #ff2323;
  --black-color: #000000;
  --light-black-color: #080808;
  --white-color: #ffffff;

  --font-arco: "arco", sans-serif;
  --font-japanese_3017: "japanese_3017", sans-serif;
  --font-alvina_demo: "alvina_demo", sans-serif;

  --pushWithLeftSide: -103px;

  --drop-shadow: drop-shadow(-147.16px 67.45px 45.65px rgba(0, 0, 0, 0))
    drop-shadow(-94.02px 43.6px 41.56px rgba(0, 0, 0, 0.01))
    drop-shadow(-53.14px 24.53px 34.74px rgba(0, 0, 0, 0.05))
    drop-shadow(-23.84px 10.9px 25.89px rgba(0, 0, 0, 0.09))
    drop-shadow(-6.13px 2.73px 14.31px rgba(0, 0, 0, 0.1));
}

.textYellow {
  color: var(--yellow-color);
}

.btnStyle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 8px;
  background-color: var(--yellow-color);
  color: var(--black-color);
  font-size: 20px;
  line-height: 20px;
  font-family: var(--font-arco);
  font-weight: 400;
  letter-spacing: -0.2px;
}
.btnStyle:hover {
  background-color: var(--white-color);
}
.scrollbar-container {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: relative;
  transition: 0.3s;
}
.scrollbar-container::-webkit-scrollbar {
  width: 0px;
}
.scrollbar-container.active::-webkit-scrollbar {
  width: 10px;
}
.scrollbar-container::-webkit-scrollbar-track {
  background: var(--black-color);
}

.scrollbar-container::-webkit-scrollbar-thumb {
  background-color: var(--red-color);
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.noSelect:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
:focus {
  outline: none !important;
}

.animateElement {
  transform: scale(0.9) translateY(10px);
}

/* HEADER */
/* ====== */

header {
  width: 100%;
  min-height: 868px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 26px;
  position: relative;
  overflow: hidden;
  background-color: #080808;
}
header .shape_01 {
  position: absolute;
  bottom: 0;
  left: 0;
}
header .shape_01 img.desktopView,
header .shape_02 img.desktopView {
  width: 329px;
  height: 840px;
}
header .shape_02 {
  position: absolute;
  bottom: 0;
  right: 0;
}
header .shape_03 {
  position: absolute;
  top: 28px;
  left: 0;
}
header .shape_03 img,
header .shape_04 img {
  width: 332px;
}
header .shape_04 {
  position: absolute;
  top: 28px;
  right: 0;
}
header .shape_05 {
  width: 644px;
  height: 644px;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
header .shape_05 img {
  width: 100%;
  height: 75%;
  margin-top: 120px;
  object-fit: contain;
}
header .shadow {
  position: absolute;
  bottom: -361px;
  transform: translateX(50%);
  width: 559px;
  height: 576px;
  background-color: #ff9900;
  border-radius: 50%;
  filter: blur(876px);
}
header .topPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 18.72px;
  z-index: 1;
}
header .topPart .copyIcon,
.copyIcon01 {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
header .topPart .copyIcon .copyMessage,
.copyIcon01 .copyMessage01 {
  height: 32px;
  border-radius: 5px;
  padding: 6px 10px;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -44px;
  visibility: hidden;
  opacity: 0;
}
.copyIcon01 .copyMessage01 {
  bottom: 0;
  top: -44px;
}
header .topPart .copyIcon .copyMessage.active,
header .topPart .copyIcon:hover .copyMessage,
.copyIcon01:hover .copyMessage01,
.copyIcon01 .copyMessage01.active {
  visibility: visible;
  opacity: 1;
}
header .topPart .copyIcon .copyMessage::before,
.copyIcon01 .copyMessage01::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: var(--white-color);
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
}
.copyIcon01 .copyMessage01::before {
  top: unset;
  bottom: -6px;
}
header .topPart .copyIcon .copyMessage p,
.copyIcon01 .copyMessage01 p {
  font-size: 12px !important;
  color: var(--black-color) !important;
  font-family: var(--font-arco) !important;
}
header .topPart .row01 {
  width: 100%;
  background-color: var(--red-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}
header .topPart .row01 p {
  font-family: var(--font-arco);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: var(--yellow-color);
}
header .topPart .row01 img {
  width: 22px;
}
header .topPart .row02 {
  margin-right: 161px;
}
header .topPart .row02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: var(--yellow-color);
  border-radius: 8px;
  font-family: var(--font-arco);
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: var(--black-color);
  font-weight: 400;
}
header .bottomPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 1;
}
header .bottomPart ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
header .bottomPart ul li a {
  width: 53.56px;
  height: 53.56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff1825;
  box-shadow: 3.35px 3.35px 0 0 var(--black-color);
}
header .bottomPart ul li a:hover {
  background-color: var(--yellow-color);
}
header .bottomPart ul li a:hover svg path,
header .bottomPart ul li a:hover svg path {
  fill: var(--red-color);
}
header .bottomPart ul li:nth-child(2) a:hover svg path {
  stroke: var(--red-color);
  fill: unset;
}
header .bottomPart ul li:first-child a svg {
  position: relative;
  left: -3px;
}
header .bottomPart ul li:nth-child(4) a svg {
  position: relative;
  left: -2px;
  top: -2px;
}
header .bottomPart ul li:nth-child(5) a svg {
  width: 28px;
}
header .bottomPart ul li:last-child a svg {
  width: 28px;
}
header .bottomPart h1 {
  position: relative;
  font-size: 114.65px;
  font-family: var(--font-japanese_3017);
  font-weight: 400;
  line-height: 91.72px;
  letter-spacing: -0.2px;
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
}
header .bottomPart .shape01 {
  position: absolute;
  bottom: -146px;
  right: 31px;
}
header .bottomPart .shape01 img {
  width: 203px;
}

/* Section 01 */
/* ========= */

.section01 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 109.49px;
  background-color: #080808;
  position: relative;
}
.section01 .shape_01 {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.section01 .shape_01 img.desktopView {
  width: 1198px;
}
/* .section01 .shape_01 img:nth-child(2) {
  left: calc(var(--pushWithLeftSide) * 1);
  filter: var(--drop-shadow);
}
.section01 .shape_01 img:nth-child(3) {
  left: calc(var(--pushWithLeftSide) * 2);
  filter: var(--drop-shadow);
}
.section01 .shape_01 img:nth-child(4) {
  left: calc(var(--pushWithLeftSide) * 3);
  filter: var(--drop-shadow);
}
.section01 .shape_01 img:nth-child(5) {
  left: calc(var(--pushWithLeftSide) * 4);
  filter: var(--drop-shadow);
}
.section01 .shape_01 img:nth-child(6) {
  left: calc(var(--pushWithLeftSide) * 5);
  filter: var(--drop-shadow);
} */
.section01 .topPart {
  width: 100%;
  max-width: 1356px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 52.98px;
  margin-top: 92px;
}
.section01 .topPart .leftSide {
  position: relative;
}
.section01 .topPart .leftSide #mainImage01 {
  width: 545px;
  z-index: 1;
  position: relative;
}
.section01 .topPart .leftSide .cloudBottomImg {
  position: absolute;
  bottom: -120px;
  right: 0;
  z-index: 1;
}
.section01 .topPart .leftSide .cloudBottomImg img.desktopView {
  width: 710px;
}
/* .section01 .topPart .leftSide .cloudBottomImg img {
  width: 302.79px;
  height: 107.02px;
  position: relative;
}
.section01 .topPart .leftSide .cloudBottomImg img:nth-child(2) {
  filter: var(--drop-shadow);
  left: calc(-100px * 1);
}
.section01 .topPart .leftSide .cloudBottomImg img:nth-child(3) {
  filter: var(--drop-shadow);
  left: calc(-100px * 2);
}
.section01 .topPart .leftSide img {
  width: 543.05px;
  height: 543.05px;
  object-fit: contain;
} */
.section01 .topPart .leftSide .shadow01 {
  position: absolute;
  bottom: 0;
  right: 30.02px;
  width: 356px;
  height: 367px;
  background-color: #ff9900;
  border-radius: 50%;
  filter: blur(876px);
}
.section01 .topPart .rightSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  align-items: flex-start;
}
.section01 .topPart .rightSide h1 {
  font-size: 64px;
  font-family: var(--font-japanese_3017);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  color: var(--yellow-color);
  line-height: 51.2px;
}
.section01 .topPart .rightSide p {
  font-size: 18px;
  font-family: var(--font-alvina_demo);
  font-weight: 400;
  color: var(--white-color);
  line-height: 21.6px;
}
.section01 .topPart .rightSide a {
  margin-top: 32px;
}

.section01 .bottomPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 88px;
}
.section01 .bottomPart .row01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  z-index: 1;
}
.section01 .bottomPart .row01 .topContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.section01 .bottomPart .row01 .topContent h1 {
  text-transform: uppercase;
  font-size: 64px;
  line-height: 51.2px;
  letter-spacing: -0.2px;
  font-weight: 400;
  font-family: var(--font-japanese_3017);
  color: var(--yellow-color);
  position: relative;
  text-align: center;
}
.section01 .bottomPart .row01 .topContent h1 .shape {
  position: absolute;
  top: 42px;
  right: 28px;
}
.section01 .bottomPart .row01 .topContent h1 .shape img {
  width: 105px;
}
.section01 .bottomPart .row01 .topContent p {
  font-size: 18px;
  line-height: 21.599999999999998px;
  font-family: var(--font-alvina_demo);
  font-weight: 400;
  color: var(--white-color);
  text-align: center;
}
.section01 .bottomPart .row01 .bottomContent {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  align-items: center;
}
.section01 .bottomPart .row01 .bottomContent .bottomContent_row01 {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
}
.section01
  .bottomPart
  .row01
  .bottomContent
  .bottomContent_row01
  .bottomContent_row01_col01,
.section01
  .bottomPart
  .row01
  .bottomContent
  .bottomContent_row01
  .bottomContent_row01_col02 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section01
  .bottomPart
  .row01
  .bottomContent
  .bottomContent_row01
  .bottomContent_row01_col01
  h4 {
  font-size: 24px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-japanese_3017);
  color: var(--white-color);
}
.section01
  .bottomPart
  .row01
  .bottomContent
  .bottomContent_row01
  .bottomContent_row01_col02
  h1 {
  font-size: 32px;
  font-family: var(--font-japanese_3017);
  font-weight: 400;
  line-height: 20px;
  color: var(--white-color);
}
.section01
  .bottomPart
  .row01
  .bottomContent
  .bottomContent_row01
  .bottomContent_row01_col01
  p,
.section01
  .bottomPart
  .row01
  .bottomContent
  .bottomContent_row01
  .bottomContent_row01_col02
  p {
  font-size: 24px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-arco);
  color: var(--red-color);
  text-transform: uppercase;
}

.section01 .bottomPart .row01 .bottomContent .bottomContent_row02 a {
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-arco);
  color: var(--white-color);
}
.section01 .bottomPart .row01 .bottomContent .bottomContent_row02 a:hover {
  opacity: 0.8;
}
.section01 .bottomPart .row02 {
  width: 100%;
  background-color: var(--red-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  z-index: 1;
}
.section01 .bottomPart .row02 p {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.3px;
  font-weight: 400;
  font-family: var(--font-arco);
  color: var(--yellow-color);
}
.section01 .bottomPart .row02 img {
  width: 22px;
}
.section01 .bottomPart {
  position: relative;
}
.section01 .bottomPart .shape__01,
.section01 .bottomPart .shape__02 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.section01 .bottomPart .shape__01 img.desktopView,
.section01 .bottomPart .shape__02 img.desktopView {
  width: 338px;
}
.section01 .bottomPart .shape__02 {
  left: unset;
  right: 0;
}

.mobileView {
  display: none;
}
.desktopView {
  display: block;
}

/* Media Query */
/* *********** */

@media screen and (max-width: 1280px) {
  .section01 .topPart {
    gap: 20.98px;
  }
}

@media screen and (max-width: 1240px) {
  .section01 .topPart {
    flex-direction: column-reverse;
  }
  .section01 .topPart .rightSide {
    justify-content: center;
    align-items: center;
  }
  .section01 .topPart .rightSide h1,
  .section01 .topPart .rightSide p {
    text-align: center;
  }
  .section01 .topPart .leftSide .cloudBottomImg {
    left: -13%;
  }
}

@media screen and (max-width: 1145px) {
  header .bottomPart h1 {
    font-size: 85.65px;
    line-height: calc(85.65px * 0.8);
  }
  header .bottomPart .shape01 img {
    width: 145px;
  }
  header .bottomPart .shape01 {
    bottom: -107px;
    right: 29px;
  }
  header .topPart .row01 p {
    font-size: 16px;
    line-height: 16px;
  }
  header .topPart .row01 img {
    width: 18px;
  }
  header .topPart .row02 a {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.1px;
  }
  header .bottomPart ul li a {
    width: 46.56px;
    height: 46.56px;
  }
  header .bottomPart ul li a svg {
    transform: scale(0.9);
  }
  header .shape_05 {
    width: 546px;
    height: 546px;
  }
  header {
    min-height: 740px;
  }
  .section01 .shape_01 {
    top: -76px;
  }
  .section01 .topPart .rightSide h1 {
    font-size: 54px;
    line-height: calc(54px * 0.8);
    letter-spacing: -0.1px;
  }
  .section01 .topPart .rightSide p {
    font-size: 16px;
    line-height: calc(16px * 1.2);
  }
  .btnStyle {
    font-size: 18px;
    line-height: 18px;
  }
  .section01 .topPart .leftSide #mainImage01 {
    width: 445px;
  }
  .section01 .topPart .leftSide {
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .section01 .topPart .leftSide .cloudBottomImg {
    bottom: -104px;
    left: 0;
  }
  .section01 .topPart .leftSide .cloudBottomImg img {
    width: 100%;
  }
  .section01 .bottomPart .row01 .topContent h1 {
    font-size: 54px;
    line-height: calc(54px * 0.8);
  }
  .section01 .bottomPart .row01 .topContent p {
    font-size: 16px;
    line-height: calc(16px * 1.2);
  }
  .section01 .bottomPart .row01 .topContent h1 .shape img {
    width: 86px;
  }
  .section01 .bottomPart .row01 .topContent h1 .shape {
    top: 34px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    h4,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    p,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    p {
    font-size: 22px;
    line-height: 18px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    h1 {
    font-size: 30px;
    line-height: 18px;
  }
  .section01 .bottomPart .row01 .bottomContent .bottomContent_row02 a {
    font-size: 18px;
    line-height: 18px;
  }
  .section01 .bottomPart .row02 p {
    font-size: 16px;
    line-height: 16px;
  }
  .section01 .bottomPart .row02 img {
    width: 18px;
  }
  header .shape_01,
  header .shape_02,
  .section01 .bottomPart .shape__01,
  .section01 .bottomPart .shape__02 {
    overflow: hidden;
  }
  header .shape_01 img {
    transform: translateX(-58px);
  }
  header .shape_02 img {
    transform: translateX(58px);
  }
  .section01 .bottomPart .shape__01 img {
    transform: translateX(-94px);
  }
  .section01 .bottomPart .shape__02 img {
    transform: translateX(94px);
  }
  header .shape_03 img,
  header .shape_04 img {
    width: 250px;
  }
}

@media screen and (max-width: 855px) {
  header .bottomPart h1 {
    font-size: 58.65px;
    line-height: calc(58.65px * 0.8);
  }
  header .bottomPart .shape01 {
    bottom: -59px;
    right: 20px;
  }
  header .bottomPart .shape01 img {
    width: 82px;
  }
  header .shape_01 img {
    transform: translateX(-95px);
  }
  header .shape_02 img {
    transform: translateX(126px);
  }
  header .shape_03,
  header .shape_04 {
    top: 36px;
  }
  header .shape_03 img,
  header .shape_04 img {
    width: 185px;
  }
  header .bottomPart ul li a {
    width: 36.56px;
    height: 36.56px;
  }
  header .bottomPart ul li a svg {
    transform: scale(0.7);
  }
  header .topPart .row02 a {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0px;
  }
  header .topPart .row01 p {
    font-size: 14px;
    line-height: 14px;
  }
  header .topPart .row01 img {
    width: 16px;
  }
  header .shape_05 {
    width: 446px;
    height: 446px;
  }
  header {
    min-height: 610px;
    gap: 14px;
  }
  .section01 .shape_01 img.desktopView {
    width: 100%;
  }
  header .shadow {
    width: 376px;
    height: 376px;
    filter: blur(576px);
  }
  header .topPart .row01 {
    gap: 14px;
    padding: 14px 22px;
  }
  header .topPart {
    gap: 14.72px;
  }
  header .topPart .row02 {
    margin-right: 76px;
  }
  header .shape_03,
  header .shape_04 {
    top: 29px;
  }
  .section01 .topPart .rightSide h1 {
    font-size: 44px;
    line-height: calc(44px * 0.8);
  }
  .section01 .topPart .rightSide p {
    font-size: 14px;
    line-height: calc(14px * 1.2);
  }
  .section01 .topPart .rightSide {
    gap: 16px;
  }
  .section01 .topPart .rightSide a {
    margin-top: 22px;
  }
  .btnStyle {
    font-size: 16px;
    line-height: 16px;
  }
  .section01 .topPart .leftSide .shadow01 {
    width: 200px;
    height: 200px;
    filter: blur(576px);
  }
  .section01 .topPart .leftSide #mainImage01 {
    width: 345px;
  }
  .section01 .topPart .leftSide {
    width: 500px;
  }
  .section01 .topPart .leftSide .cloudBottomImg img.desktopView {
    width: 100%;
  }
  .section01 .bottomPart .row01 .topContent h1 {
    font-size: 44px;
    line-height: calc(44px * 0.8);
  }
  .section01 .bottomPart .row01 .topContent h1 .shape img {
    width: 60px;
  }
  .section01 .bottomPart .row01 .topContent h1 .shape {
    top: 29px;
    right: 16px;
  }
  .section01 .bottomPart .row01 .topContent p {
    font-size: 14px;
    line-height: calc(14px * 1.2);
  }
  .section01 .bottomPart .row01 .topContent {
    gap: 16px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02 {
    gap: 14px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    h4,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    p,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    p {
    font-size: 20px;
    line-height: 16px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    h1 {
    font-size: 28px;
    line-height: 16px;
  }
  .section01 .bottomPart .row01 .bottomContent .bottomContent_row02 a {
    font-size: 16px;
    line-height: 16px;
  }
  .section01 .bottomPart .row01 .bottomContent {
    gap: 34px;
  }
  .section01 .bottomPart {
    gap: 60px;
  }
  .section01 .bottomPart .row02 p {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
  }
  .section01 .bottomPart .row02 img {
    width: 16px;
  }
  .section01 .bottomPart .row02 {
    gap: 14px;
    padding: 14px 22px;
  }
  .section01 .bottomPart .shape__01 img {
    transform: translateX(-128px);
  }
  .section01 .bottomPart .shape__02 img {
    transform: translateX(128px);
  }
  .section01 .shape_01 {
    top: -60px;
    height: 129px;
  }
}

@media screen and (max-width: 650px) {
  .section01 .bottomPart .row01 .topContent p br {
    display: none;
  }
  .section01 .bottomPart .row01 {
    width: 90%;
  }
  .section01 .bottomPart .row01 .topContent h1 br {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  header .topPart .row01 p {
    font-size: 12px;
    line-height: 20px;
    margin: 0 16px;
  }
  header .topPart .row01 img {
    width: 22px;
  }
  header .topPart .row01 {
    gap: 16px;
    padding: 8px 24px;
  }
  header .topPart .row02 a {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.2px;
    padding: 8px 16px;
    transform: unset;
    margin-left: 18px;
  }
  header .topPart {
    gap: 8.72px;
  }
  header .topPart .row02 {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  header .shape_03 {
    display: none;
  }
  header .shape_01 img,
  header .shape_02 img {
    width: unset;
    height: unset;
    transform: unset;
  }
  header .shape_02 img {
    transform: unset;
  }
  header .shape_01,
  header .shape_02 {
    bottom: unset;
    top: 0;
  }
  header .shape_03 img,
  header .shape_04 img {
    width: 93.32px;
  }
  header .shape_03,
  header .shape_04 {
    top: 31px;
  }
  header .bottomPart h1 {
    font-size: 32px;
    line-height: calc(32px * 0.8);
  }
  header .bottomPart .shape01 img {
    width: 55px;
  }
  header .bottomPart .shape01 {
    bottom: -38px;
    right: 25%;
  }
  header .bottomPart {
    width: 90%;
    margin: 0 auto;
    gap: 16px;
  }
  header .bottomPart ul li a {
    width: 24.3px;
    height: 24.3px;
  }
  header .bottomPart ul {
    gap: 4px;
  }
  header .bottomPart ul li a svg {
    transform: unset;
  }
  header .bottomPart ul li:nth-child(1) a svg {
    width: 10.18px;
    height: 8.69px;
    left: unset;
  }
  header .bottomPart ul li:nth-child(2) a svg {
    width: 12.15px;
    height: 12.15px;
  }
  header .bottomPart ul li:nth-child(3) a svg {
    width: 11.01px;
    height: 12.66px;
  }
  header .bottomPart ul li:nth-child(4) a svg {
    width: 13.19px;
    height: 15.19px;
  }
  header .bottomPart ul li:last-child a svg {
    left: -1px;
    top: -1px;
  }
  header .bottomPart h1 br {
    display: none;
  }
  header .shape_05 {
    width: 294.02px;
    height: 294.02px;
    bottom: 0px;
  }
  header {
    min-height: 503.56px;
    gap: 16px;
  }
  .mobileView {
    display: block;
  }
  .desktopView {
    display: none;
  }
  header .shape_05 img {
    width: 295px;
    height: 295px;
    object-fit: contain;
  }
  header .shape_05 {
    width: unset;
    height: unset;
  }
  header .shadow {
    width: 134.91px;
    height: 139.01px;
    filter: blur(211.41px);
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
  }
  .section01 .topPart {
    max-width: 100%;
    width: 100%;
    margin-top: 68px;
  }
  .section01 .topPart .rightSide h1 {
    font-size: 32px;
    line-height: calc(32px * 0.8);
    letter-spacing: -0.2px;
  }
  .section01 .topPart .rightSide p {
    font-size: 16px;
    line-height: calc(16px * 1.2);
  }
  .section01 .topPart .rightSide p br {
    display: none;
  }
  .btnStyle {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.2px;
    padding: 16px 24px;
  }
  .section01 .topPart .rightSide a {
    margin-top: 8px;
  }
  .section01 .topPart .rightSide {
    width: 90%;
    gap: 24px;
  }
  .section01 .shape_01 {
    top: -42px;
    height: 98px;
  }
  .section01 .topPart {
    gap: 60px;
  }
  .section01 .topPart .leftSide {
    width: 100%;
  }
  .section01 .topPart .leftSide #mainImage01 {
    /* width: 349.55px; */
    width: 90%;
  }
  .section01 .topPart .leftSide .cloudBottomImg {
    bottom: -80px;
  }
  .section01 .topPart .leftSide .shadow01 {
    width: 229.15px;
    height: 236.23px;
    filter: blur(563.86px);
  }
  .section01 .bottomPart .row01 .topContent h1 {
    font-size: 32px;
    line-height: calc(32px * 0.8);
    letter-spacing: -0.2px;
  }
  .section01 .bottomPart .row01 .topContent p {
    font-size: 16px;
    line-height: calc(16px * 1.2);
  }
  .section01 .bottomPart .row01 .topContent h1 .shape img {
    width: 47px;
  }
  .section01 .bottomPart .row01 .topContent h1 .shape {
    top: 43px;
    right: 60px;
  }
  .section01 .bottomPart .row01 .topContent {
    gap: 24px;
  }
  .section01 .bottomPart .row01 .bottomContent .bottomContent_row01 {
    flex-direction: column;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02 {
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02 {
    text-align: center;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    h4,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    p,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    p {
    font-size: 24px;
    line-height: 20px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    h1 {
    font-size: 32px;
    line-height: 20px;
  }
  .section01 .bottomPart .row01 .bottomContent .bottomContent_row02 a {
    font-size: 20px;
    line-height: 20px;
  }
  .section01 .bottomPart .row01 .bottomContent {
    gap: 24px;
  }

  .section01 .bottomPart .row02 {
    gap: 16px;
    padding: 8px 24px;
  }
  .section01 .bottomPart .row02 p {
    font-size: 12px;
    line-height: 20px;
    margin: 0 16px;
    letter-spacing: -0.3px;
  }
  .section01 .bottomPart .row02 img {
    width: 22px;
  }
  .section01 .bottomPart .shape__01 img {
    transform: translateX(0px);
  }
  .section01 .bottomPart .shape__02 img {
    transform: translateX(0px);
  }
  header .topPart .copyIcon .copyMessage,
  .copyIcon01 .copyMessage01 {
    height: 28px;
  }
  header .topPart .copyIcon .copyMessage p,
  .copyIcon01 .copyMessage01 p {
    font-size: 9px !important;
    margin: unset !important;
  }
  .copyIcon01 .copyMessage01 {
    top: -40px;
  }
  header .topPart .copyIcon .copyMessage {
    bottom: -40px;
  }
  header .bottomPart ul li a {
    background: var(--yellow-color);
  }
  header .bottomPart ul li a:hover {
    background-color: #ff1825;
  }
  header .bottomPart ul li a svg path {
    fill: #ff1825;
  }
  header .bottomPart ul li a:hover svg path {
    fill: var(--yellow-color);
  }
  header .bottomPart ul li:nth-child(2) a:hover svg path {
    fill: unset;
    stroke: var(--yellow-color);
  }
  header .bottomPart ul li:nth-child(2) a svg path {
    stroke: var(--red-color);
    fill: unset;
  }
  header .bottomPart ul li:last-child a svg g path {
    fill: #ff1825 !important;
  }
  header .bottomPart ul li:nth-child(4) a svg {
    width: 13.19px;
    height: 15.19px;
    position: unset;
  }
  header .bottomPart ul li:nth-child(5) a svg,
  header .bottomPart ul li:last-child a svg {
    width: 14px;
  }
}

@media screen and (max-width: 400px) {
  .section01 .bottomPart .row02 p,
  header .topPart .row01 p {
    margin: 0;
  }
  .section01 .bottomPart .row02 p {
    font-size: 11px;
  }
  .section01 .bottomPart .row02 img {
    width: 16px;
  }
  .section01 .bottomPart .row02,
  header .topPart .row01 {
    gap: 10px;
    flex-wrap: wrap;
  }
  header .topPart .row01 img {
    width: 16px;
  }
  header .topPart .row01 p {
    font-size: 11px;
  }
}

@media screen and (max-width: 375px) {
  .section01 .topPart .rightSide p {
    font-size: 14px;
    line-height: calc(14px * 1.2);
  }
  .section01 .topPart .rightSide h1 {
    font-size: 30px;
    line-height: calc(30px * 0.8);
  }
  .btnStyle {
    font-size: 18px;
    line-height: 18px;
  }
  .section01 .bottomPart .row01 .topContent h1 {
    font-size: 30px;
    line-height: calc(30px * 0.8);
  }
  .section01 .bottomPart .row01 .topContent p {
    font-size: 14px;
    line-height: calc(14px * 1.2);
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    h4,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col01
    p,
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    p {
    font-size: 22px;
    line-height: 18px;
  }
  .section01
    .bottomPart
    .row01
    .bottomContent
    .bottomContent_row01
    .bottomContent_row01_col02
    h1 {
    font-size: 30px;
    line-height: 18px;
  }
  .section01 .bottomPart .row01 .bottomContent .bottomContent_row02 a {
    font-size: 18px;
    line-height: 18px;
  }
  .section01 .bottomPart .row01 .topContent h1 .shape {
    top: 41px;
    right: 51px;
  }
  .section01 .bottomPart .row01 .topContent h1 .shape img {
    width: 45px;
  }
}
