body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/********** Privacy Modal CSS **********/
.privacy_overlay {
  display: none;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  background-color: rgba(0, 0, 0, 0.8);
}

.privacy_modal_container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 12px;
}

.privacy_modal {
  padding: 50px;
  border-radius: 12px;
  background-color: #2E2D2D;
}

.privacy_title {
  font-weight: 800;
  font-size: 18px;
}

.privacy_text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  white-space: nowrap;
}

.privacy_close {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg);
  cursor: pointer;
}

/********** Side Modal CSS **********/
.side_modal_container {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  transform: translateX(120%);
  display: flex;
  column-gap: 21px;
  transition: transform 0.5s ease;
  z-index: 10000;
}
.side_modal_container.open {
  transform: translateX(0);
}

.side_close {
  margin-top: 106px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg);
  cursor: pointer;
  box-shadow: -6px -4px 24px 0 rgba(255, 255, 255, 0.25);
}

.side_modal {
  padding: 0 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #2E2D2D;
  box-shadow: -30px 0 46.7px 0 rgba(0, 0, 0, 0.25);
}

.side_text {
  margin-top: 37px;
  font-weight: 800;
  font-size: clamp(21px, 1.094vw, 26px);
}

.side_text2 {
  margin-top: 10px;
  font-size: clamp(14px, 0.729vw, 16px);
  line-height: 1.4;
}

.side_form {
  display: flex;
  flex-direction: column;
}

.side_form label {
  margin-top: 26px;
  font-size: clamp(14px, 0.729vw, 19px);
}

.side_input {
  font-size: clamp(14px, 0.729vw, 17px);
  margin-top: 10px;
  height: 28px;
  background-color: transparent;
  border-bottom: 1px solid white;
  color: white;
}

.side_input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.side_textarea {
  font-size: clamp(14px, 0.729vw, 17px);
  resize: none;
  margin-top: 10px;
  padding: 17px 15px;
  height: 137px;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  background-color: rgba(217, 217, 217, 0.05);
  color: white;
}

.custom_radio_container {
  width: 277px;
  display: flex;
  column-gap: 12px;
  flex-wrap: wrap;
  margin-top: -10px;
}

.side_form .custom_radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-top: 4px;
  padding-left: 30px;
  font-size: clamp(14px, 0.729vw, 18px);
}

.custom_radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio_mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #ccc;
  border-radius: 50%;
}

.custom_radio input[type="radio"]:not(:checked) ~ .radio_mark {
  background-color: rgba(217, 217, 217, 0.05);
  border: 1px solid white;
  margin-top: 3px;
}

.custom_radio input[type="radio"]:not(:checked) ~ .radio_mark:after {
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.custom_radio input[type="radio"]:checked ~ .radio_mark {
  background-color: rgba(252, 52, 39, 0.05);
  border: 1px solid white;
  margin-top: 3px;
}

.radio_mark:after {
  content: "";
  position: absolute;
}

.custom_radio input[type="radio"]:checked ~ .radio_mark:after {
  display: block;
  top: 5px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--point);
}

#monthly_budget {
  display: none;
}

.side_checkbox_container {
  align-self: flex-start;
  display: block;
  position: relative;
  padding-left: 34px;
  margin-top: 12px;
  padding-top: 4px;
  cursor: pointer;
  font-size: clamp(13px, 0.677vw, 14px);
}

.side_checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.side_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 0.75px solid #D9D9D9;
  border-radius: 3px;
}

.side_checkbox_container input:checked ~ .side_checkmark {
  background-color: white;
  border: none;
}

.side_checkbox_container input:not(:checked) ~ .side_checkmark:after {
  display: block;
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.side_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.side_checkbox_container input:checked ~ .side_checkmark:after {
  display: block;
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#privacy_btn {
  cursor: pointer;
  border-bottom: 1px solid white;
}

.side_text3 {
  margin-top: 16px;
  font-size: clamp(14px, 0.729vw, 17px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.side_rqst_btn {
  margin-top: 24px;
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background-color: var(--point);
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  cursor: pointer;
}

.side_rqst_btn:hover {
  background-color: #ff5044;
}

.side_text_box {
  width: 100%;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -22px;
}

.side_text4 {
  margin-left: 6px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.side_text5 {
  margin-left: 16px;
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.side_v_line {
  margin-top: 30px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    #31313100,
    #313131 12%,
    #313131 50%,
    #313131 90%,
    #31313100
  );
}

/********** Main Content CSS **********/
.main {
  width: 100%;
  height: 730px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 89px;
  padding: 0 11%;
  background-image: url(../assets/main_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #1F1E1E;
}


@media (min-width: 2000px) {
  .main {
    padding: 0 22vw;
  }
}


.main_text1 {
  font-weight: 400;
  font-size: clamp(50px, 2.344vw, 45px);
  line-height: 1.5;
}

.main_text2 {
  font-weight: 800;
  font-size: clamp(55px, 2.344vw, 45px);
  line-height: 1.5;
}

.main_underline {
  position: relative;
  display: inline-block;
  font-weight: 800;
}

.main_underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.14);
}

.chart_img {
  width: 25vw;
  max-width: 650px;
  min-width: 360px;
}

/*********** Section1 CSS ***********/
.section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../assets/section1/section1_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 60px 60px;
}

.section1_top {
  z-index: 0;
  width: 100%;
  height: 331px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/section1/top_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.top_text {
  text-align: center;
  font-weight: 300;
  color: var(--bg2);
  font-size: clamp(40px, 1.823vw, 35px);
  line-height: 1.3;
}

.top_underline {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: var(--bg2);
  font-size: clamp(40px, 1.823vw, 35px);
}

.top_underline::after {
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 8px;
  background-color: rgba(252, 52, 39, 0.55);
}

.section1_mid {
  width: 100%;
  padding: 96px 150px;
  display: flex;
  justify-content: center;
  position: relative;
}


@media (min-width: 2000px) {
  .section1_mid {
    padding: 8vw 0;
    padding-left: 30vw;
  }
}

.section1_v_line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: -30px;
  background: linear-gradient(
    to bottom,
    #31313100,
    #313131 12%,
    #313131 50%,
    #313131 90%,
    #31313100
  );
}

.step_container {
  z-index: 10;
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  margin-top: 180px;
}

.step_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1158px;
}

.step_title {
  margin-left: -12%;
  display: flex;
  align-items: center;
  column-gap: 16px;
  font-weight: 700;
  font-size: clamp(20px, 0.99vw, 19px);
}

.dot_img {
  width: 1.667vw;
  min-width: 24px;
}

.step_content {
  width: 30.208vw;
  min-width: 448px;
  margin-top: 13px;
  font-weight: 700;
  font-size: clamp(30px, 1.5vw, 28.8px);
  line-height: 1.5;
}

.step_sub_text {
  margin-top: 12px;
  font-weight: 700;
  font-size: clamp(24px, 0.99vw, 19px);
  line-height: 1.5;
  color: #999696;
}

.step_img {
  width: 24.74vw;
  max-width: 475px;
}

/*********** Section2 CSS ***********/
.section2_text_box {
  margin-top: 208px;
  text-align: center;
}

.title_text1 {
  margin-bottom: 6px;
   font-size: clamp(35px, 1.302vw, 25px);
   color: #FF5F5F;
}

.title_text2 {
  font-size: clamp(27px, 1.667vw, 32px);
  line-height: 1.5;
}

.title_text3 {
  font-weight: 700;
  font-size: clamp(27px, 1.667vw, 32px);
  line-height: 1.5;
}

.title_text4 {
  font-weight: 300;
  font-size: clamp(27px, 1.667vw, 32px);
  line-height: 1.5;
}

.section2_content_box {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
}

.section2_content {
  width: 19.635vw;
  min-width: 280px;
  height: 386px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.content_text {
  font-size: clamp(17px, 1.146vw, 22px);
  line-height: 1.4;
  text-align: center;
}

.point_text {
  background-color: #FC3427;
}

.h_line {
  margin: 174px auto;
  border: none;
  width: 76.25vw;
  height: 1px;
  background: linear-gradient(
    to right,
    #31313100,
    #313131 12%,
    #313131 50%,
    #313131 90%,
    #31313100
  );
}

/*********** Section3 CSS ***********/
.section3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section3_text_box {
  text-align: center;
}

.title_sub_text {
  margin-top: 14px;
  font-size: clamp(15px, 0.885vw, 17px);
  color: var(--sub_text2);
}

.section3_content_box {
  margin-top: 53px;
  width: 62.656vw;
  min-width: 900px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: rgba(217, 217, 217, 0.1);
}

.section3_content {
  margin-top: 5%;
  align-self: baseline;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 58px;
}

.content_text_box {
  text-align: center;
}

.content_sub_text{
  font-size: clamp(19px, 0.885vw, 17px);
  color: var(--sub_text2);
}

.content_text {
  margin-top: 8px;
  font-size: clamp(17px, 0.885vw, 17px);
  line-height: 1.4;
}

.content_text_bold {
  font-weight: 800;
  font-size: clamp(17px, 0.885vw, 17px);
  line-height: 1.4;
}

.section3_v_line {
  margin: 0 4%;
  width: 1px;
  height: 248px;
  background: linear-gradient(
    to bottom,
    #32313100,
    #323131 12%,
    #D9D9D91A 50%,
    #323131 90%,
    #32313100
  );
}

.section3_bottom_text_box {
  margin-top: 49px;
  margin-bottom: 184px;
  text-align: center;
}

.section3_bottom_text {
  font-size: clamp(19px, 1.146vw, 22px);
}

.section3_bottom_text_bold {
  font-weight: 800;
  font-size: clamp(35px, 1.146vw, 22px);
}

.section3_bottom_sub_text {
  font-size: clamp(27px, 0.99vw, 19px);
  line-height: 1.5;
  text-align: left;
}

/*********** Section4 CSS ***********/
.section4 {
  width: 100%;
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg2);
}

.section4_top {
  margin-top: 150px;
  margin-bottom: 95px;
  position: relative;
}

.section4_top_img {
  margin-top: -90px;
  position: absolute;
  top: 40px;
  left: -10%;
}

.section4_content {
  width: 60.313vw;
  min-width: 750px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section4_h_line {
  margin: 80px auto;
  border: none;
  width: 76.25vw;
  height: 1px;
  background: linear-gradient(
    to right,
    #31313100,
    #313131 12%,
    #313131 50%,
    #313131 90%,
    #31313100
  );
}

.content_left {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
}

.bubble {
  margin-top: 10px;
  position: relative;
  padding: 20px 25px;
  border-radius: 16px;
  background-color: var(--bg);
  font-size: clamp(22px, 0.938vw, 19px);
  line-height: 1.4;
}

.bubble::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -20px;
  transform: rotate(90deg);
  border-width: 10px;
  border-style: solid;
  border-color: var(--bg) transparent transparent transparent;
}

.point {
  background-color: var(--point);
}

.section4_sub_text {
  font-size: clamp(22px, 0.885vw, 17px);
  line-height: 1.4;
}

.section4_text {
  font-weight: 800;
  font-size: clamp(25px, 1.042vw, 20px);
  line-height: 1.4;
}

.profile_img {
  width: 15.833vw;
  min-width: 160px;
}

.content_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.kko_img {
  width: 16.354vw;
  min-width: 220px;
}

.kko_img2 {
  position: absolute;
  top: 40px;
  left: -60%;
  width: 11.25vw;
  min-width: 160px;
}

.kko_img3 {
  position: absolute;
  top: 7%;
  left: -21%;
  width: 9.375vw;
  min-width: 160px;
}

.kkotalk_text {
  margin-top: 13px;
  font-size: clamp(13px, 0.781vw, 15px);
  color: rgba(255, 255, 255, 0.7);
}

/*********** Section5 CSS ***********/
.section5 {
  padding: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 14%;
}

.section5_left {
  font-size: clamp(50px, 2.083vw, 40px);
}

.section5_right {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 28px;
}

.circle {
  width: 17vw;
  height: 17vw;
  min-width: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(217, 217, 217, 0.1);
}

.section5_text {
  font-weight: 900;
  font-size: clamp(27px, 1.458vw, 28px);
}

.section5_point {
  font-weight: 900;
  font-size: clamp(40px, 2.708vw, 28px);
  color: var(--point);
}

.section5_text2 {
  margin-top: 22px;
  font-size: clamp(22px, 0.885vw, 17px); 
}

.section5_text3 {
  margin-top: 9px;
  font-size: clamp(16px, 0.781vw, 15px);
}

/*********** Section6 CSS ***********/
.section6 {
  padding: 8.333vw 10.417vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
}

@media (min-width: 2000px) {
  .section6 {
    padding: 15vw 22vw;
  }
}

.section6_top {
  font-size: clamp(45px, 1.771vw, 34px);
  line-height: 1.5;
  color: var(--bg);
  text-align: center;
}

.section6_content {
  margin-top: 45px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 12px;
  column-gap: 20px;
}

.section6_left {
  width: 60%;
  min-width: 540px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url(../assets/section6/img1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(252, 52, 39, 0.8);
  border-radius: 8px;
}

.section6_text1 {
  margin-top: 145px;
  font-size: clamp(35px, 1.354vw, 35px);
  line-height: 1.8;
  font-weight: 400;
}

.section6_text2 {
  font-size: clamp(45px, 1.771vw, 45px);
  line-height: 1.3;
  font-weight: 600;
}

.download_btn {
  width: 70%;
  height: 60px;
  margin-top: 110px;
  margin-bottom: 122px;
  background-color: var(--bg);
  color: white;
  border-radius: 8px;
  font-weight: 800;
  font-size: clamp(19px, 0.885vw, 17px); 
  cursor: pointer;
}



.download_btn:hover {
  background-color: #353535;
}

.section6_right {
  width: 40%;
  min-width: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}

.section6_right_box1 {
  width: 100%;
  height: 305px;
  padding: 60px;
  background-image: url(../assets/section6/img2.svg);
  background-repeat: no-repeat;
  background-position: right -50px bottom -10px;
  background-color: #407BFF;
  border-radius: 8px;
}

.section6_text3 {
  font-weight: 700;
  font-size: clamp(27px, 1.354vw, 28px);
  line-height: 1.5;
}

.section6_text4 {
  font-size: clamp(21px, 1.042vw, 24px);
  line-height: 1.5;
}

.section6_right_box2 {
  width: 100%;
  height: 305px;
  padding: 50px;
  background-color: #E3EEF8;
  border-radius: 8px;
}

.section6_text5 {
  margin-top: 9;
  font-weight: 700;
  font-size: clamp(27px, 1.354vw, 28px);
  line-height: 1.5;
  color: var(--bg);
}

.section6_text6 {
  padding: 0 9px;
  display: inline-block;
  margin-top: 3px;
  font-size: clamp(18px, 1.042vw, 21px);
  line-height: 1.5;
  background-color: #407BFF;
}

.section6_text7 {
  margin-top: 24px;
  font-size: clamp(20px, 0.938vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: #2E2D2D;
}

/*********** Section7 CSS ***********/
.section7 {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 260px;
  margin: 200px 0;
}

.section7 .container {
  text-align: left;
  width: 90%;
  max-width: 600px;
}

.section7 .title-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.section7 .title {
  font-size: 37px;
  font-weight: 400;
  white-space: nowrap;
}

.section7 .dotted {
  position: relative;
  display: inline-block;
}

.section7 .dot {
  position: absolute;
  top: -1em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.5em;
}

.section7 .dot:nth-child(1) { left: 16%; }
.section7 .dot:nth-child(2) { left: 44.33%; }
.section7 .dot:nth-child(3) { left: 78.66%; }

.section7 .highlight {
  font-size: 37px;
  font-weight: bold;
  color: var(--point);
}

.section7 .line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-left: 10px;
}

.section7 .highlight {
  color: var(--point);
  font-size: 92px;
  white-space: nowrap;
  font-weight: 900;
}

.section7 .features {
  margin-top: 20px;
}

.section7 .feature {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.section7 .icon {
  width: 87px;
  height: 87px;
  background-color: rgba(50, 49, 49, 1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  flex-shrink: 0;
}

.section7 .icon1 {
  background-image: url("../assets/section7/icon1.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.section7 .icon2 {
  background-image: url("../assets/section7/icon2.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.section7 .icon3 {
  background-image: url("../assets/section7/icon3.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.section7 .feature-text {
  font-size: 18px;
  font-weight: 400;
}

.section7 .feature-text .number {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}

.feature_underline {
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

/*********** Section8 CSS ***********/
.section8 .container {
  margin: 0 auto;
  margin-bottom: 200px;
}

.section8 .description_box {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 41px;
}

.section8 h1 {
  text-align: center;
  font-size: 56px;
  margin-bottom: 48px;
  font-weight: 400;
}

.section8 .content {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section8 .circle {
  width: 357px;
  height: 357px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 60px;
}

.section8 .circle h2 {
  font-size: 65px;
  font-weight: 900;
  margin-top: 12px;
}

.section8 .circle .plus {
  font-size: 51px;
  font-weight: 900;
  margin-top: 12px;
}

.section8 .circle p {
  font-size: 27px;
  margin-top: 24px;
  font-weight: 400;
}

.section8 .circle p:last-child {
  font-size: 24px;
  margin-top: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.section8 .description {
  font-size: 24px;
  font-weight: 700;
}

.section8 .categories {
  display: flex;
  gap: 6px;
}

.section8 .category {
  background-color: rgba(64, 64, 64, 1);
  color: white;
  padding: 4px 14px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
}

.section8 .logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 27px;
}

.section8 .logo {
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
}

/*********** Bottom Form CSS ***********/
.bottom_container {
  z-index: 2000;
  align-self: center;
  position: fixed;
  bottom: 0;
  width: 66.667vw;
  min-width: 990px;
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 80px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}

.bottom_sub_text {
  font-size: clamp(13px, 0.938vw, 18px);
  color: rgba(255, 255, 255, 0.6);
}

.bottom_text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 4px;
  margin-top: 6px;
  font-weight: 700;
  font-size: clamp(13px, 0.938vw, 18px);
}

.form_box {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}

.cp_name::placeholder,
.hp::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cp_name, .hp {
  padding: 0 16px;
  width: 9.896vw;
  min-width: 140px;
  height: 50px;
  border-radius: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 17px; 
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
}

.cp_name:focus,
.hp:focus {
  padding-left: 16px;
  width: 9.896vw;
  min-width: 140px;
  height: 50px;
  border-radius: 4px;
  border-bottom: 1px solid var(--point);
  font-size: 17px; 
  color: white;
  background-color: rgba(255, 255, 255, 0.12);
}

.custom_select_wrapper {
  position: relative;
  display: inline-block;
  /* user-select: none; */
}

.custom_select {
  position: relative;
  display: inline-block;
}

.custom_select_trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  width: 9.896vw;
  min-width: 82px;
  height: 50px;
  border-radius: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: clamp(15px, 0.885vw, 17px);
}

.custom_select_trigger input {
  opacity: 0;
  display: none;
}

.custom_select_trigger .arrow {
  width: 15px;
  height: 12px;
  margin-right: 18px;
  background-image: url('../assets/polygon.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.select_h_line {
  margin: 13px auto;
  border: none;
  width: 8.646vw;
  min-width: 100px;
  height: 1px;
  background: linear-gradient(
    to right,
    #31313100,
    #313131 12%,
    #313131 50%,
    #313131 90%,
    #31313100
  );
}

.custom_options {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 9.896vw;
  min-width: 140px;
  padding: 24px 20px;
  background-color: #2E2D2D;
  display: none;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
  border-radius: 4px;
}

.custom_option {
  white-space: nowrap;
  cursor: pointer;
  font-size: clamp(12px, 0.729vw, 14px);
}

.custom_select.open .custom_options {
  display: flex;
  flex-direction: column;
}

.custom_option_radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-top: 4px;
  padding-left: 25px;
  margin-left: -10px;
}

.custom_option_radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio_mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #ccc;
  border-radius: 50%;
}

.custom_option_radio input[type="radio"]:not(:checked) ~ .radio_mark {
  background-color: rgba(217, 217, 217, 0.05);
  border: 1px solid white;
}

.custom_option_radio input[type="radio"]:not(:checked) ~ .radio_mark:after {
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.custom_option_radio input[type="radio"]:checked ~ .radio_mark {
  background-color: rgba(252, 52, 39, 0.05);
  border: 1px solid white;
}

.radio_mark:after {
  content: "";
  position: absolute;
}

.custom_option_radio input[type="radio"]:checked ~ .radio_mark:after {
  display: block;
  top: 5px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--point);
}

.checkbox_container {
  align-self: flex-start;
  display: block;
  position: relative;
  padding-left: 34px;
  margin-top: 12px;
  margin-left: 12px;
  padding-top: 4px;
  cursor: pointer;
  font-size: clamp(16px, 0.938vw, 18px);
  color: rgba(255, 255, 255, 0.6);
}

.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  border: 0.75px solid #D9D9D9;
  border-radius: 3px;
}

.checkbox_container input:checked ~ .checkmark {
  background-color: white;
  border: none;
}

.checkbox_container input:not(:checked) ~ .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox_container input:checked ~ .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.rqst_btn {
  width: 124px;
  height: 45px;
  margin-left: 10px;
  border-radius: 4px;
  background-color: var(--point);
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  color: white;
  cursor: pointer;
}

@media (max-width: 1800px) {
  /********** Side Modal CSS **********/
  .side_overlay {
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .side_modal_container {
    position: static;
    display: none;
    flex-direction: column-reverse;
    align-items: center;
    z-index: 10000;
    align-self: center;
    height: 640px;
    column-gap: 21px;
    transform: none;
    transition: none;
  }

  .side_modal_container_pc {
    flex-direction: row;
  }

  .side_close {
    margin-top: 12px;
    width: 60px;
    height: 60px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg);
    box-shadow: none
  }

  .side_close_pc {
    margin-top: -300px;
  }
  
  .side_close img {
    width: 15px;
    height: 15px;
  }
  
  .side_modal {
    padding: 0 29px;
    height: 510px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #2E2D2D;
    border-radius: 12px;
    box-shadow: -30px 0 46.7px 0 rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .side_modal::-webkit-scrollbar {
    display: none;
  }
  
  .side_text {
    margin-top: 20px;
    font-weight: 800;
    font-size: 21px;
  }
  
  .side_text2 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
  }
  
  .side_form {
    display: flex;
    flex-direction: column;
  }
  
  .side_form label {
    margin-top: 26px;
    font-size: 14px;
  }
  
  .side_input {
    width: 277px;
    height: 28px;
    background-color: transparent;
    border-bottom: 1px solid white;
    color: white;
    font-size: 14px;
  }
  
  .side_input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .side_textarea {
    resize: none;
    margin-top: 6px;
    width: 277px;
    padding: 17px 15px;
    height: 137px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: rgba(217, 217, 217, 0.05);
    color: white;
    font-size: 14px;
  }
  
  .custom_radio_container {
    width: 277px;
    display: flex;
    column-gap: 12px;
    flex-wrap: wrap;
  }
   
  .side_form .custom_radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    padding-top: 4px;
    padding-left: 30px;
  }
  
  .custom_radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .radio_mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #ccc;
    border-radius: 50%;
  }
  
  .custom_radio input[type="radio"]:not(:checked) ~ .radio_mark {
    background-color: rgba(217, 217, 217, 0.05);
    border: 1px solid white;
  }
  
  .custom_radio input[type="radio"]:not(:checked) ~ .radio_mark:after {
    top: 7px;
    left: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }
  
  .custom_radio input[type="radio"]:checked ~ .radio_mark {
    background-color: rgba(252, 52, 39, 0.05);
    border: 1px solid white;
  }
  
  .radio_mark:after {
    content: "";
    position: absolute;
  }
  
  .custom_radio input[type="radio"]:checked ~ .radio_mark:after {
    display: block;
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--point);
  }
  
  #monthly_budget {
    display: none;
  }
  
  .side_checkbox_container {
    align-self: flex-start;
    display: block;
    position: relative;
    padding-left: 34px;
    margin-top: 12px;
    padding-top: 4px;
    cursor: pointer;
    font-size: 13px;
  }
  
  .side_checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .side_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    border: 0.75px solid #D9D9D9;
    border-radius: 3px;
  }
  
  .side_checkbox_container input:checked ~ .side_checkmark {
    background-color: white;
    border: none;
  }
  
  .side_checkbox_container input:not(:checked) ~ .side_checkmark:after {
    display: block;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .side_checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .side_checkbox_container input:checked ~ .side_checkmark:after {
    display: block;
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .privacy_btn {
    border-bottom: 1px solid white;
  }
  
  .side_text3 {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .btn_box {
    position: sticky;
    bottom: -2px;
    width: 100%;
    text-align: center;
    background-color: #2E2D2D;
  }

  .side_rqst_btn {
    margin-top: 16px;
    width: 277px;
    height: 50px;
    border-radius: 4px;
    background-color: var(--point);
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    color: white;
  }
  
  .side_text_box {
    align-self: center;
    width: 100%;
    margin: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .side_text4 {
    margin-left: 6px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .side_text5 {
    margin-left: 16px;
    font-weight: 700;
    font-size: 15px;
  }
}
/********************************/
/********** Mobile CSS **********/
/********************************/
@media (max-width: 1024px) {
  body {
    display: flex;
    flex-direction: column;
  }

  .custom_radio input[type="radio"]:not(:checked) ~ .radio_mark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }
  
  .custom_radio input[type="radio"]:checked ~ .radio_mark {
    background-color: rgba(252, 52, 39, 0.05);
    border: 1px solid white;
  }
  
  .radio_mark:after {
    content: "";
    position: absolute;
  }
  
  .custom_radio input[type="radio"]:checked ~ .radio_mark:after {
    display: block;
    top: 5px;
    left: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--point);
  }
  
  /********** Privacy Modal CSS **********/
  .privacy_overlay {
    display: none;
    z-index: 30000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .privacy_modal_container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-self: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    column-gap: 12px;
  }
  
  .privacy_modal {
    padding: 40px 27px;
    border-radius: 12px;
    background-color: #2E2D2D;
  }
  
  .privacy_title {
    font-weight: 800;
    font-size: 18px;
  }
  
  .privacy_text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
  }
  
  .privacy_close {
    margin-top: 12px;
    width: 60px;
    height: 60px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg);
  }

  .privacy_close img {
    width: 15px;
    height: 15px;
  }
  
  /********** Main Content CSS **********/
  .main {
    height: 575px;
    padding: 0 4%;
    margin: 0 auto;
    margin-top: 89px;
  }

  .main_text1 {
    font-size: 33px;
  }
  
  .main_text2 {
    font-size: 33px;
  }
  
  .main_underline {
    position: relative;
    display: inline-block;
    font-weight: 800;
  }
  
  .main_underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.14);
  }
  
  .chart_img {
    width: 100%;
  }
  
  /*********** Section1 CSS ***********/
  .section1 {
    background-image: url(../assets/mobile/section1/section1_bg.svg);
    border-radius: 0px 0px 30px 30px;
  }
  
  .section1_top {
    z-index: 0;
    width: 100%;
    height: 174px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../assets/section1/top_bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .top_text {
    font-size: 23px;
  }
  
  .top_underline {
    font-size: 23px;
  }
  
  .top_underline::after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 8px;
    background-color: rgba(252, 52, 39, 0.55);
  }
  
  .section1_mid {
    width: 100%;
    padding: 80px 15px;
    display: flex;
    justify-content: center;
    position: relative;
  }
  
  .section1_v_line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: -30px;
    background: linear-gradient(
      to bottom,
      #31313100,
      #313131 12%,
      #313131 50%,
      #313131 90%,
      #31313100
    );
  }
  
  .step_container {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
    margin-top: 95px;
  }
  
  .step_item {
    margin-left: 20px;
    width: 344px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .step_title {
    margin-left: 0;
    column-gap: 6px;
    font-size: 14px;
  }
  
  .dot_img {
    width: 20px;
  }
  
  .step_content {
    width: 305px;
    min-width: 0;
    margin-top: 6px;
    margin-left: 6%;
    font-size: 25px;
  }
  
  .step_sub_text {
    margin-top: 10px;
    font-size: 15px;
  }
  
  .step_right {
    margin: 0 auto;
  }

  .step_img {
    margin-top: 40px;
    width: 280px;
  }
  
  /*********** Section2 CSS ***********/
  .section2_text_box {
    margin-top: 80px;
  }
  
  .title_text1 {
    margin-bottom: 12px;
     font-size: 25px;
  }
  
  .title_text2 {
    font-size: 25px;
  }
  
  .title_text3 {
    font-size: 25px;
  }
  
  .title_text4 {
    font-size: 22px;
  }
  
  .section2_content_box {
    margin-top: 40px;
    row-gap: 10px;
  }
  
  .section2_content {
    width: 315px;
    height: 228px;
    /* padding: 40px 0; */
    row-gap: 20px;
  }

  .section2_content img {
    width: 85px;
  }
  
  .section2_content:last-child img {
    width: 95px;
  }

  .content_text {
    font-size: 16px;
  }
  
  .h_line {
    margin: 60px auto;
    width: 315px;
  }
  
  /*********** Section3 CSS ***********/
  .title_sub_text {
    margin-top: 12px;
    font-size: 18px;
  }
  
  .section3_content_box {
    margin-top: 40px;
    width: 315px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    row-gap: 46px;
    height: 1350px;
  }
  
  .section3_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    row-gap: 0;
  }
  
  .content_text_box {
    margin-top: 20px;
    text-align: center;
  }
  
  .content_sub_text{
    font-size: 19px;
  }
  
  .content_text {
    margin-top: 8px;
    font-size: 20px;
  }
  
  .content_text_bold {
    font-size: 22px;
  }
  
  .section3_v_line {
    display: none;
  }
  
  .section3_bottom_text_box {
    margin-top: 47px;
    margin-bottom: 80px;
    text-align: center;
  }
  
  .section3_bottom_text {
    font-size: 18px;
  }
  
  .section3_bottom_text_bold {
    font-size: 18px;
  }
  
  .section3_bottom_sub_text {
    font-size: 19px;
  }
  
  /*********** Section4 CSS ***********/

  .section4_top {
    margin-top: 80px;
    margin-bottom: 50px;
  }
  
  .section4_top_img {
    display: none;
  }
  
  .section4_content {
    width: 335px;
    min-width: 0;
    flex-direction: column;
  }
  
  .section4_h_line {
    margin: 50px auto;
    width: 335px;
  }
  
  .content_left {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 24px;
  }
  
  .bubble {
    margin-top: 5px;
    position: relative;
    padding: 16px 20px;
    border-radius: 16px;
    background-color: var(--bg);
    font-size: 15px;
    line-height: 1.4;
  }
  
  .bubble::after {
    content: "";
    position: absolute;
    transform: rotate(90deg);
    border-width: 10px;
    border-style: solid;
    border-color: var(--bg) transparent transparent transparent;
  }
  
  .point {
    background-color: var(--point);
  }
  
  .section4_sub_text {
    font-size: 20px;
  }
  
  .section4_text {
    font-size: 22px;
  }
  
  .profile_img {
    width: 70px;
    min-width: 70px;
  }
  
  .content_right {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .kko_img {
    width: 270px;
    min-width: 270px;
  }
  
  .kko_img2 {
    position: absolute;
    top: -20px;
    left: 50%;
    width: 161px;
    min-width: 161px;
  }
  
  .kko_img3 {
    position: absolute;
    top: 14%;
    left: -11%;
    width: 122px;
    min-width: 122px;
  }
  
  .kkotalk_text {
    margin-top: 14px;
    font-size: 15px;
  }
  
  /*********** Section5 CSS ***********/
  .section5 {
    padding: 80px 20px;
    row-gap: 40px;
    column-gap: 14%;
  }
  
  .section5_left {
    font-size: 22px;
  }
  
  .section5_right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .circle {
    width: 213px;
    height: 213px;
    margin-left: -45%;
    min-width: 213px;
    min-height: 213px;
  }

  .circle:nth-child(2) {
    margin-top: -60px;
    margin-left: 45%;
  }
  
  .section5_text {
    font-size: 15px;
  }
  
  .section5_point {
    font-size: 34px;
  }
  
  .section5_text2 {
    margin-top: 12px;
    font-size: 16px
  }
  
  .section5_text3 {
    margin-top: 8px;
    font-size: 14px;
  }
  
  /*********** Section6 CSS ***********/
  .section6 {
    padding: 40px 20px;
    padding-bottom: 80px;
  }
  
  .section6_top {
    font-size: 22px;
  }
  
  .section6_content {
    margin: 0 2%;
    margin-top: 30px;
    width: 100%;
    flex-direction: column;
    row-gap: 12px;
  }
  
  .section6_left {
    width: 100%;
    min-width: 100%;
    padding: 40px 30px;
  }
  
  .section6_text1 {
    margin-top: 0;
    font-size: 22px;
  }
  
  .section6_text2 {
    font-size: 24px;
    line-height: 1.5;
  }
  
  .download_btn {
    width: 275px;
    height: 50px;
    margin-top: 40px;
    margin-bottom: 0;
    font-size: 16px; 
  }
  
  .section6_right {
    width: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
  }
  
  .section6_right_box1 {
    width: 100%;
    padding: 40px 30px;
    padding-bottom: 129px;
  }
  
  .section6_text3 {
    font-size: 24px;
  }
  
  .section6_text4 {
    font-size: 22px;
  }
  
  .section6_right_box2 {
    width: 100%;
    height: 200px;
    padding: 40px 15px;
  }
  
  .section6_text5 {
    margin-top: -15px;
    font-size: 22px;
  }
  
  .section6_text6 {
    margin-top: 2px;
    font-size: 16px;
  }
  
  .section6_text7 {
    font-size: 16px;
    margin-bottom: 49px;
  }
  
/*********** Section7 CSS ***********/
.section7 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  column-gap: 260px;
  margin: 80px 0;
}

.section7 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 90%;
  max-width: 600px;
  margin-left: 15px;
}

.section7 .section7_left {
  width: 100%;
  padding: 0 30px;
}

.section7 .title-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.section7 .title {
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.section7 .line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-left: 10px;
}

.section7 .highlight {
  color: var(--point);
  font-size: 50px;
  white-space: nowrap;
  font-weight: 900;
}

.section7 .features {
  margin-top: 39px;
}

.section7 .feature {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.section7 .icon {
  width: 87px;
  height: 87px;
  background-color: rgba(50, 49, 49, 1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  flex-shrink: 0;
}

.section7 .icon1 {
  background-image: url("../assets/section7/icon1.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.section7 .icon2 {
  background-image: url("../assets/section7/icon2.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.section7 .icon3 {
  background-image: url("../assets/section7/icon3.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.section7 .feature-text {
  font-size: 16px;
  font-weight: 400;
}

.section7 .feature-text .number {
  display: block;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.feature_underline {
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

/*********** Section8 CSS ***********/
.section8 .container {
  margin: 0 auto;
  margin-bottom: 80px;
}

.section8 .description_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 4px;
  margin-bottom: 41px;
}

.section8 h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 400;
}

.section8 .content {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 36px;
}

.section8 .circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.section8 .circle h2 {
  font-size: 46px;
  font-weight: 900;
}

.section8 .circle .plus {
  font-size: 30px;
  font-weight: 900;
}

.section8 .circle p {
  font-size: 20px;
  margin-top: 12px;
  font-weight: 400;
}

.section8 .circle p:last-child {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.section8 .description {
  font-size: 24px;
  font-weight: 700;
}

.section8 .categories {
  display: flex;
  gap: 6px;
  margin: 0;
}

.section8 .right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section8 .category {
  background-color: rgba(64, 64, 64, 1);
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.section8 .logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.section8 .logos_container {
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 36px;
}

.section8 .logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  width: 100%;
}

.section8 .logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
/*********** Bottom Form CSS ***********/
  .bottom_container {
    min-width: 0;
    width: 100%;
    height: 95px;
    z-index: 2000;
    border-radius: 10px 10px 0 0;
  }

  .bottom_text_box {
    margin-top: -4px;
  }

  .bottom_sub_text {
    font-size: 11px;
  }

  .bottom_text {
    column-gap: 3px;
    margin-top: 0;
    font-size: 11px;
  }

  .form_box {
    column-gap: 9px;
  }

  .form_left_top {
    display: flex;
    align-items: center;
  }

  .cp_name,
  .hp,
  .cp_name:focus,
  .hp:focus {
    padding: 0 10px;
    min-width: 82px;
    width: 82px;
    height: 30px;
    font-size: 11px;
  }

  .custom_select_trigger {
    padding: 0 8px;
    width: 90px;
    min-width: 85px;
    height: 30px;
    font-size: 11px;
  }

  .custom_select_trigger input {
    opacity: 0;
    height: 0;
  }

  .custom_select_trigger .arrow {
    width: 9px;
    height: 4px;
    margin-right: 7px;
    background-image: url('../assets/polygon.svg');
  }

  .form_left_bottom {
    margin-top: 13px;
  }

  .custom_options {
    width: 335px;
    min-width: 335px;
    padding: 42px 29px;
    background-color: #2E2D2D;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
    z-index: 2;
    border-radius: 12px;
  }

  .custom_select.open .custom_options {
    display: flex;
    flex-direction: column;
  }

  .custom_options.open {
    display: flex;
    flex-direction: column;
    align-self: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .custom_option_radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-top: 4px;
    padding-left: 25px;
    margin-left: -10px;
  }

  .custom_option_radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .radio_mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ccc;
    border-radius: 50%;
  }

  .select_text {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 800;
    margin-left: -10px;
  }

  .select_h_line {
    margin: 13px auto;
    border: none;
    width: 277px;
    height: 1px;
    background: linear-gradient(
      to right,
      #31313100,
      #313131 12%,
      #313131 50%,
      #313131 90%,
      #31313100
    );
  }

  .custom_option_radio input[type="radio"]:not(:checked) ~ .radio_mark {
    background-color: rgba(217, 217, 217, 0.05);
    border: 1px solid white;
  }

  .custom_option_radio input[type="radio"]:not(:checked) ~ .radio_mark:after {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
  }

  .custom_option_radio input[type="radio"]:checked ~ .radio_mark {
    background-color: rgba(252, 52, 39, 0.05);
    border: 1px solid white;
  }

  .custom_option_radio input[type="radio"]:checked ~ .radio_mark:after {
    display: block;
    top: 5px;
    left: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--point);
  }

  .checkbox_container {
    padding-left: 22px;
    margin-top: -4px;
    margin-left: 12px;
    font-size: 11px;
  }

  .checkmark {
    margin-top: 1px;
    height: 17px;
    width: 17px;
  }

  .checkbox_container input:not(:checked) ~ .checkmark:after {
    left: 5px;
    top: 2px;
    width: 3px;
    height: 6px;
  }

  .checkbox_container input:checked ~ .checkmark:after {
    left: 6px;
    top: 3px;
    width: 3px;
    height: 6px;
  }

  .rqst_btn {
    width: 63px;
    height: 61px;
    margin-left: 9px;
    font-size: 12px;
    line-height: 1.5;
  }
}

/*********** 애니메이션 CSS ***********/
/* 애니메이션을 위한 초기 스타일 */
.section2, .section3, .section4, .section5, .section7, .section8 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* 애니메이션 후 스타일 */
.section-visible {
  opacity: 1;
  transform: translateY(0);
}