@charset "UTF-8";
section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-overlay .popup-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.popup-overlay .popup-container iframe {
  width: 100%;
  height: 60vh;
  max-height: 600px;
  border: none;
}
.popup-overlay .popup-container .popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.popup-overlay .popup-container .popup-close:hover {
  background: #ff0098;
}

.q_btn {
  position: fixed;
  right: 5%;
  bottom: 20%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  z-index: 999;
}
@media (max-width: 1700px) {
  .q_btn {
    bottom: 10%;
  }
}
.q_btn > a {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 20px;
  border-radius: 50px;
  background-color: #000;
  padding: 10px 20px;
  font-weight: 500;
  font-family: Recipekorea;
  color: white;
  opacity: 0.5;
  transition: 0.3s;
}
@media (max-width: 1700px) {
  .q_btn > a {
    font-size: 40px;
    width: 330px;
    padding: 20px;
  }
}
.q_btn > a > img {
  width: 50px;
}
.q_btn > a:hover {
  opacity: 1;
  transition: 0.3s;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal .modal-content {
  background: #000;
  width: 100%;
  max-width: 610px;
  height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal .modal-content > .top {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.4509803922);
  position: relative;
}
.modal .modal-content > .top .close {
  position: absolute;
  top: -17px;
  right: 10px;
  font-size: 50px;
  cursor: pointer;
  color: white;
}
.modal .modal-content > .bot_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  padding: 31px 0;
}
.modal .modal-content > .bot_wrap > .tit {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}
.modal .modal-content > .bot_wrap > .tit > h2 {
  font-size: 35px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.modal .modal-content > .bot_wrap > .tit > h3 {
  font-size: 19px;
  font-weight: 300;
  color: white;
  line-height: 1.8;
}
.modal .modal-content > .bot_wrap > form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.modal .modal-content > .bot_wrap > form > .form-group {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.modal .modal-content > .bot_wrap > form > .form-group > label {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal .modal-content > .bot_wrap > form > .form-group > input {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  line-height: 1;
  color: #000;
  background: white;
  border: none;
  outline: none;
  font-weight: 500;
}
.modal .modal-content > .bot_wrap > form > .agree {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 20px;
}
.modal .modal-content > .bot_wrap > form > .agree > input {
  width: auto;
}
.modal .modal-content > .bot_wrap > form > .agree > label {
  margin-bottom: 0;
}
.modal .modal-content > .bot_wrap > form > .full-width > textarea {
  padding: 10px;
  font-size: 18px;
  line-height: 1.2;
  color: black;
  background-color: white;
  border: 1px solid black;
  resize: none;
  max-height: 100px;
  font-weight: 500;
}
.modal .modal-content > .bot_wrap > form > .form-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.modal .modal-content > .bot_wrap > form > .form-buttons > button {
  background-color: transparent;
  width: 100%;
  max-width: 220px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.548);
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.top_btn {
  position: fixed;
  right: 5%;
  bottom: 11%;
  width: 70px;
  height: 70px;
  background-color: #ff0098;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0.4;
  transition: 0.3s;
  z-index: 999;
}
@media (max-width: 1700px) {
  .top_btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    bottom: 3%;
  }
}
.top_btn > h2 {
  font-size: 18px;
  color: white;
  font-weight: 500;
  font-family: Recipekorea;
}
@media (max-width: 1700px) {
  .top_btn > h2 {
    font-size: 25px;
  }
}

.top_btn:hover {
  opacity: 1;
  transition: 0.3s;
}

.sec_1 {
  background-image: url(../img/sec_1.png);
  height: 1073px;
}
@media (max-width: 1024px) {
  .sec_1 {
    height: 800px;
  }
}
.sec_1 .tit_wrap {
  width: 100%;
  max-width: 1695px;
  height: 623px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.sec_1 .tit_wrap > .tit > h2 {
  font-size: 38px;
  font-weight: 300;
  color: #FF0098;
  font-family: "GmarketSans";
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .sec_1 .tit_wrap > .tit > h2 {
    font-size: 25px;
  }
}
.sec_1 .tit_wrap > .tit > h2 > span {
  font-size: 58px;
  font-weight: 900;
  font-family: "GangwonEduPowerExtraBoldA";
}
@media (max-width: 1024px) {
  .sec_1 .tit_wrap > .tit > h2 > span {
    font-size: 30px;
  }
}
.sec_1 .tit_wrap > .cen {
  width: 100%;
  max-width: 1695px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
}
@media (max-width: 1024px) {
  .sec_1 .tit_wrap > .cen {
    flex-direction: column;
    padding: 0;
    gap: 240px;
  }
}
@media (max-width: 1024px) {
  .sec_1 .tit_wrap > .cen img {
    width: 10%;
  }
}
.sec_1 .tit_wrap > .cen > .left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sec_1 .tit_wrap > .cen > .right {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .sec_1 .tit_wrap > .cen > .right {
    height: 50px;
    width: 100%;
    max-width: 480px;
  }
}
.sec_1 .tit_wrap > .bot {
  text-align: center;
  line-height: 1.5;
}
.sec_1 .tit_wrap > .bot > h2 {
  font-size: 20px;
  color: #E3E3E0;
  font-weight: 500;
  animation: scaleAnimation 1s infinite ease-in-out;
}
@keyframes scaleAnimation {
  0%, 100% {
    transform: scale(0.4);
  }
  50% {
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .sec_1 .tit_wrap > .bot > h2 {
    font-size: 16px;
  }
}

.sec_ {
  background-image: url(../img/sec_.png);
}
.sec_2 {
  background-image: url(../img/sec_2.png);
  height: 2175px;
  padding: 143px 0;
  background-color: rgba(0, 0, 0, 0.3647058824);
  background-blend-mode: multiply;
}
.sec_2 > .tit {
  margin-bottom: 110px;
}
.sec_2 > .tit > h2 {
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 17px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .sec_2 > .tit > h2 {
    font-size: 20px;
  }
}
.sec_2 > .tit > p {
  font-family: Recipekorea;
  font-size: 65px;
  color: white;
  display: flex;
}
@media (max-width: 1024px) {
  .sec_2 > .tit > p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .sec_2 > .tit > p > img {
    width: 50%;
  }
}
.sec_2 > .tit > p > br {
  display: none;
}
@media (max-width: 1024px) {
  .sec_2 > .tit > p > br {
    display: block;
  }
}
.sec_2 > .tit > p > span {
  color: #FF0098;
}
.sec_2 > .tit > h3 {
  font-size: 25px;
  color: white;
  text-align: center;
}
.sec_2 > .tit > h3 > span {
  color: #ff0098;
  font-weight: 700;
  border-bottom: 2px solid #ff0098;
}
.sec_2 > .con {
  width: 100%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
  margin-bottom: 95px;
}
.sec_2 > .con > .box {
  width: 100%;
  max-width: 344px;
  height: 365px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.6039215686);
  border-radius: 14px;
}
.sec_2 > .con > .box > img {
  width: 30%;
}
.sec_2 > .con > .box > .word > h2 {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
}
.sec_2 > .con > .box > .word > h2 > span {
  color: #FF0098;
}
.sec_2 > .con_2 {
  width: 100%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
  margin-bottom: 30px;
}
.sec_2 > .con_2 > .box {
  width: 100%;
  max-width: 344px;
  height: auto;
}
.sec_2 > .con_2 > .box > img {
  width: 100%;
  height: 470px;
}
.sec_2 > .bot_word {
  width: 100%;
  max-width: 1150px;
}
.sec_2 > .bot_word > h2 {
  font-size: 22px;
  font-weight: 500;
  color: white;
}

.sec_3 {
  background-image: url(../img/sec_3.png);
  background-color: rgba(0, 0, 0, 0.6588235294);
  background-blend-mode: multiply;
  height: 1800px;
  padding: 110px 0;
}
.sec_3 > img {
  width: 100%;
  max-width: 1000px;
  animation: scaleAnimation 2s infinite ease-in-out;
  margin-bottom: 60px;
}
@keyframes scaleAnimation {
  0%, 100% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
}
.sec_3 > .bot {
  width: 100%;
  max-width: 1250px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sec_3 > .bot > .tit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sec_3 > .bot > .tit > .left > h2 {
  font-size: 55px;
  font-weight: 800;
  color: #FF0098;
}
.sec_3 > .bot > .tit > .left > h3 {
  font-size: 35px;
  font-weight: 400;
  color: #FFFFFF;
}
.sec_3 > .bot > .tit > .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec_3 > .bot > .tit > .right > .word {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 540px;
  justify-content: space-between;
}
.sec_3 > .bot > .tit > .right > .word > h2 {
  color: white;
  font-weight: 700;
  font-size: 35px;
}
.sec_3 > .bot > .tit > .right > .word > h3 {
  font-size: 45px;
  font-weight: 800;
  color: #FF0098;
}
.sec_3 > .bot table {
  border-collapse: collapse;
  width: 100%;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align: center;
}
.sec_3 > .bot table th {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
  border-bottom: 2px solid #fff;
  padding: 20px 0;
}
.sec_3 > .bot table td {
  font-weight: 500;
  font-size: 25px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5490196078);
  padding: 28px 0;
}
.sec_3 > .bot table td > span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5215686275);
}

.sec_4 {
  background-image: url(../img/sec_4.png);
  height: 514px;
  background-color: #8A2562;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec_4 > .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_4 > .box .sec_4_2 {
  margin-bottom: 50px;
}

.sec_5 {
  background-image: url(../img/sec_5.png);
  height: 1323px;
  background-color: rgba(0, 0, 0, 0.4784313725);
  background-blend-mode: multiply;
}
.sec_5 > .tit {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_5 > .tit > h2 {
  font-size: 18px;
  letter-spacing: 10px;
  color: #FF0098;
}
.sec_5 > .tit > img {
  margin: 40px 0;
}
.sec_5 > .tit > h3 {
  font-size: 65px;
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: Recipekorea;
}
.sec_5 > .tit > h3 > span {
  color: #FF0098;
}
.sec_5 > .cen {
  margin-bottom: 40px;
  width: 100%;
  max-width: 560px;
}
.sec_5 > .cen > .word > h2 {
  font-size: 16px;
  font-weight: 300;
  color: white;
}
.sec_5 > .bot {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(90, 26, 64, 0.6705882353);
  padding: 40px;
  border-radius: 10px;
}
.sec_5 > .bot > h2 {
  font-size: 22px;
  font-weight: 500;
  color: white;
  word-break: keep-all;
  text-align: center;
}
.sec_5 > .bot > h2 > span {
  font-weight: 900;
  color: #FF0098;
}

.sec_6 {
  background-image: url(../img/sec_6.png);
  height: 1315px;
  background-color: rgba(0, 0, 0, 0.2392156863);
  background-blend-mode: multiply;
}
.sec_6 > .tit {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_6 > .tit > h2 {
  font-size: 18px;
  letter-spacing: 10px;
  color: #FF0098;
}
.sec_6 > .tit > img {
  margin: 40px 0;
}
.sec_6 > .tit > h3 {
  font-size: 65px;
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: Recipekorea;
}
.sec_6 > .tit > h3 > span {
  color: #FF0098;
}
.sec_6 > .con {
  width: 100%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  place-items: center;
}
.sec_6 > .con > .box {
  width: 100%;
  max-width: 265px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.431372549);
  border-radius: 19px;
  gap: 60px;
  padding: 58px 0;
}
.sec_6 > .con > .box > h2 {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-align: center;
}
.sec_6 > .con > .box > h2 > span {
  color: #FF0098;
  font-weight: 700;
}

.sec_6_1 {
  background-image: url(../img/sec_6_1_back.png);
  height: 1053px;
}
.sec_6_1 > .tit {
  width: 100%;
  max-width: 1150px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec_6_1 > .tit > h2 {
  font-size: 18px;
  letter-spacing: 10px;
  color: #FF0098;
}
.sec_6_1 > .tit > img {
  margin: 50px 0;
}
.sec_6_1 > .tit > h3 {
  font-size: 65px;
  font-weight: 500;
  color: white;
  font-family: Recipekorea;
}
.sec_6_1 > .tit > h3 > span {
  color: #FF0098;
}
.sec_6_1 > .word {
  width: 100%;
  max-width: 1150px;
}
.sec_6_1 > .word > p {
  font-size: 25px;
  font-weight: 400;
  color: white;
}
.sec_6_1 > .word > p > span {
  color: #FF0098;
  font-weight: 700;
  border-bottom: 2px solid #FF0098;
}

.sec_7_1 {
  background-image: url(../img/sec_7_1_back.png);
  height: 1053px;
  background-color: rgba(38, 7, 25, 0.6352941176);
  background-blend-mode: multiply;
}
.sec_7_1 > .tit {
  width: 100%;
  max-width: 1350px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec_7_1 > .tit > h2 {
  font-size: 18px;
  letter-spacing: 10px;
  color: #FF0098;
}
.sec_7_1 > .tit > img {
  margin: 50px 0;
}
.sec_7_1 > .word {
  display: flex;
  gap: 95px;
  width: 100%;
  max-width: 1350px;
}
.sec_7_1 > .word > .left > h2 {
  font-size: 65px;
  font-weight: 500;
  color: white;
  font-family: Recipekorea;
  margin-bottom: 60px;
}
.sec_7_1 > .word > .left > h2 > span {
  color: #FF0098;
}
.sec_7_1 > .word > .left > p {
  font-size: 25px;
  font-weight: 400;
  color: white;
}
.sec_7_1 > .word > .left > p > span {
  color: #FF0098;
  font-weight: 700;
  border-bottom: 2px solid #FF0098;
}
.sec_7 {
  background-image: url(../img/sec_7.png);
  height: 1600px;
  background-color: rgba(38, 7, 25, 0.6352941176);
  background-blend-mode: multiply;
}
.sec_7 > .tit {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_7 > .tit > h2 {
  font-size: 18px;
  letter-spacing: 10px;
  color: #FF0098;
}
.sec_7 > .tit > img {
  margin: 40px 0;
}
.sec_7 > .tit > h3 {
  font-size: 65px;
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: Recipekorea;
}
.sec_7 > .tit > h3 > span {
  color: #FF0098;
}
.sec_7 > .cen {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
.sec_7 > .cen > img {
  margin-bottom: 40px;
}
.sec_7 > .cen > h2 {
  font-size: 25px;
  font-weight: 300;
  color: #E3E3E0;
  text-align: center;
  line-height: 2;
}
.sec_7 > .cen > h2 > span {
  font-weight: 800;
  color: #FF0098;
  border-bottom: 4px solid #ff0098;
}
.sec_7 .bot_tit {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.sec_7 .bot_tit > h2 {
  font-size: 35px;
  font-weight: 500;
  font-family: Recipekorea;
  padding-bottom: 10px;
  color: #FF0098;
  max-width: 460px;
  width: 100%;
  text-align: center;
  border-bottom: 3px solid #FF0098;
}
.sec_7 > .bot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.sec_7 > .bot > .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.sec_7 > .bot > .box > h2 {
  font-size: 25px;
  font-weight: 700;
  color: #E3E3E0;
}

.sec_8 {
  background-image: url(../img/sec_8.png);
  height: 944px;
}
.sec_8 > .tit {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_8 > .tit > h2 {
  font-size: 18px;
  letter-spacing: 10px;
  color: #FF0098;
}
.sec_8 > .tit > img {
  margin: 40px 0;
}
.sec_8 > .tit > h3 {
  font-size: 65px;
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: Recipekorea;
}
.sec_8 > .tit > h3 > span {
  color: #FF0098;
}
.sec_8 > .con {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.sec_8 > .con > .box {
  width: 100%;
  max-width: 280px;
  position: relative;
}
.sec_8 > .con > .box .sec_8_1_img {
  position: absolute;
  right: 16%;
  top: -14px;
}
.sec_8 > .con > .box > h2 {
  color: white;
  font-size: 35px;
  padding-bottom: 28px;
  font-family: Recipekorea;
  font-weight: 500;
  width: 100%;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5058823529);
  margin-bottom: 54px;
  height: 120px;
  position: relative;
}
.sec_8 > .con > .box > h2 > span {
  font-size: 25px;
}
.sec_8 > .con > .box > h2 > img {
  position: absolute;
  top: 0;
  right: 0;
}
.sec_8 > .con > .box > p {
  font-size: 21px;
  font-weight: 500;
  color: rgba(227, 227, 224, 0.6235294118);
}

.sec_9 {
  height: 1090px;
  position: relative;
  background-image: url(../img/sec_9_back.png);
}
.sec_9 > .word {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 1500px;
}
.sec_9 > .word > h2 {
  font-size: 40px;
  font-weight: 600;
  color: white;
}
.sec_9 > .word > h3 {
  font-size: 65px;
  font-family: Recipekorea;
  color: white;
  font-weight: 500;
}
.sec_9 > .word > h3 > span {
  color: #FF0098;
}
.sec_9 > .word > p {
  font-size: 25px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5764705882);
}
.sec_9 > img {
  position: absolute;
  right: 7%;
  bottom: 0%;
}

.sec_10 {
  background-image: url(../img/sec_10_back.png);
  height: 1040px;
}
.sec_10 > .word {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.sec_10 > .word > .word_top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}
.sec_10 > .word > .word_top > h2 {
  font-size: 55px;
  font-family: Recipekorea;
  color: #FF0098;
  font-weight: 500;
}
.sec_10 > .word > .word_top > p {
  font-size: 25px;
  font-weight: 400;
  color: white;
}
.sec_10 > .word > .word_top > p > span {
  font-weight: 700;
  color: #FF0098;
}
.sec_10 > .word > h2 {
  font-size: 35px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
}
.sec_10 > .word > h2 > span {
  color: #FF0098;
  font-weight: 500;
}
.sec_10 > .word > h3 {
  font-size: 65px;
  font-family: Recipekorea;
  color: white;
  font-weight: 500;
  margin-bottom: 30px;
}
.sec_10 > .word > h3 > span {
  color: #FF0098;
  margin-right: 40px;
}
.sec_10 > .word > p {
  font-size: 25px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5764705882);
}
.sec_10 > .con {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: center;
}
.sec_10 > .con > .box {
  display: flex;
  flex-direction: column;
  height: 436px;
  gap: 30px;
  width: 100%;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.4235294118);
  border: 0.5px dotted #ccc;
  border-radius: 29px;
  padding: 80px 120px;
}
.sec_10 > .con > .box > .word {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
}
.sec_10 > .con > .box > .word > img {
  width: 40px;
  height: 40px;
}
.sec_10 > .con > .box > .word > h2 {
  font-size: 32px;
  color: white;
  font-family: Recipekorea;
  font-weight: 500;
}

.sec_11 {
  background-image: url(../img/sec_11.png);
  height: 1080px;
  background-color: rgba(0, 0, 0, 0.3647058824);
  background-blend-mode: multiply;
  position: relative;
}
.sec_11 > .tit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_11 > .tit > h2 {
  font-size: 18px;
  letter-spacing: 10px;
  color: #FF0098;
}
.sec_11 > .tit > img {
  margin: 40px 0;
}
.sec_11 > .word {
  display: flex;
  flex-direction: column;
  margin-bottom: 90px;
}
.sec_11 > .word > h2 {
  font-size: 35px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
}
.sec_11 > .word > h3 {
  font-size: 55px;
  font-family: Recipekorea;
  color: white;
  font-weight: 500;
  position: relative;
}
.sec_11 > .word > h3 > span {
  color: #FF0098;
}
.sec_11 > .con {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-left: 245px;
}
.sec_11 > .con > .left {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.sec_11 > .con > .left > .box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 47px;
}
.sec_11 > .con > .left > .box > .word {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec_11 > .con > .left > .box > .word > h2 {
  font-size: 25px;
  font-family: Recipekorea;
  font-weight: 500;
  color: white;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.4117647059);
}
.sec_11 > .con > .left > .box > .word > p {
  font-size: 18px;
  font-weight: 500;
  color: #E3E3E0;
}
.sec_12 {
  background-image: url(../img/sec_2.png);
  height: 1080px;
  background-color: rgba(0, 0, 0, 0.3647058824);
  background-blend-mode: multiply;
}
.sec_12 > .word {
  margin-bottom: 90px;
}
.sec_12 > .word > h2 {
  font-size: 65px;
  color: white;
  font-family: Recipekorea;
  font-weight: 500;
}
.sec_12 > .word > h2 > span {
  color: #FF0098;
}
.sec_12 > .con {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.sec_12 > .con > .box {
  width: 310px;
  height: 297px;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 10px;
}
.sec_12 > .con > .box > h2 {
  color: #FF0098;
  font-size: 30px;
  font-family: Recipekorea;
  font-weight: 500;
}
.sec_12 > .con > .box > p {
  font-size: 23px;
  font-weight: 500;
}

.sec_13 {
  background-image: url(../img/sec_13.png);
  height: 930px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec_13 > .word {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.sec_13 > .word > .box {
  width: 100%;
  max-width: 1100px;
  background-color: white;
  border: 12px solid #EB1053;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 50px;
}
.sec_13 > .word > .box > h2 {
  font-size: 62px;
  color: #000;
  font-weight: 700;
  width: 365px;
  text-align: center;
}
.sec_13 > .word > .box > p {
  color: #EB1053;
  font-size: 62px;
  font-weight: 900;
  width: 120px;
  text-align: center;
}
.sec_13 > .word > h2 {
  font-size: 50px;
  font-family: Recipekorea;
  color: #EB1053;
  margin-top: 90px;
  font-weight: 500;
}

.sec_14 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 800px;
  background-image: url(../img/sec_14_back.png);
}
.sec_14 .form-container {
  width: 100%;
  max-width: 1400px;
  margin: 50px auto;
}
@media (max-width: 768px) {
  .sec_14 .form-container {
    padding: 20px;
  }
}
.sec_14 .form-container > .tit {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .sec_14 .form-container > .tit {
    margin-bottom: 40px;
  }
}
.sec_14 .form-container > .tit > h2 {
  font-size: 55px;
  font-weight: 500;
  font-family: Recipekorea;
  color: white;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sec_14 .form-container > .tit > h2 {
    font-size: 23px;
  }
}
.sec_14 .form-container > .tit > p {
  color: white;
  font-size: 23px;
  font-weight: 500;
}
.sec_14 #onlineFrm {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 100px;
}
.sec_14 #onlineFrm > .left {
  width: 62%;
}
.sec_14 #onlineFrm .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}
.sec_14 #onlineFrm .form-group label {
  width: 120px; /* 고정된 라벨 너비 */
  font-weight: bold;
  font-size: 25px;
  font-family: "Pretendard Variable";
  color: white;
}
@media (max-width: 768px) {
  .sec_14 #onlineFrm .form-group label {
    font-size: 15px;
    width: 100px;
  }
}
.sec_14 #onlineFrm .form-group input, .sec_14 #onlineFrm .form-group textarea {
  width: calc(100% - 150px + 30px); /* 입력 필드의 너비 계산 */
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.568627451);
  resize: none;
}
.sec_14 #onlineFrm .form-group textarea {
  border: 1px solid rgba(201, 201, 201, 0.2862745098);
  border-top: none;
  border-left: none;
  border-right: none;
}
.sec_14 #onlineFrm .form-group.full-width {
  display: flex;
  align-items: center;
}
.sec_14 #onlineFrm .form-group.full-width span {
  font-size: 20px;
  font-weight: 500;
}
.sec_14 #onlineFrm .form-group.full-width label {
  width: 150px; /* 다른 필드와 동일한 라벨 크기 */
  font-weight: bold;
}
@media (max-width: 768px) {
  .sec_14 #onlineFrm .form-group.full-width label {
    width: 100px;
  }
}
.sec_14 #onlineFrm .form-group.full-width input, .sec_14 #onlineFrm .form-group.full-width textarea {
  width: calc(100% - 150px + 180px); /* 다른 필드와 동일하게 너비 설정 */
  padding: 5px;
}
.sec_14 #onlineFrm .form-group.agree {
  justify-content: center; /* 중앙 정렬 */
}
.sec_14 #onlineFrm .form-group.agree input[type=checkbox] {
  margin-left: 15px;
  width: auto; /* 체크박스 크기 조정 */
}
.sec_14 #onlineFrm .form-group.agree label {
  width: auto; /* 체크박스 옆에 텍스트 */
  font-weight: normal;
}
.sec_14 #onlineFrm .form-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 20px;
}
.sec_14 #onlineFrm .form-buttons button {
  padding: 20px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #2C38A8;
  color: #fff;
  font-family: Recipekorea;
  color: white;
  font-size: 23px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sec_14 #onlineFrm .form-buttons button {
    padding: 10px;
    font-size: 15px;
  }
}
.sec_14 #onlineFrm .form-buttons button:hover {
  background-color: #232e91;
}
.sec_14 #onlineFrm .form-buttons button:last-child {
  background-color: #E42222;
  border-radius: 10px;
}
.sec_14 #onlineFrm .form-buttons button:last-child:hover {
  background-color: #ad1b1b;
}

.policy_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.policy_modal.active {
  display: flex;
  opacity: 1;
}
.policy_modal .modal_content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  height: 600px;
  overflow-y: auto;
  text-align: center;
}
.policy_modal .modal_content h2 {
  margin-bottom: 10px;
  font-size: 18px;
}
.policy_modal .modal_content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
  background-color: rgba(204, 204, 204, 0.3843137255);
  padding: 10px;
  border-radius: 10px;
}
.policy_modal .modal_content a {
  color: #ff0098;
  text-decoration: none;
  font-weight: bold;
}

.new_sec_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 2103px;
  background-image: url(../img/new_sec_1_back.png);
}
.new_sec_1 > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1700px;
}
.new_sec_1 > .wrap > .top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new_sec_1 > .wrap > .top > .tit {
  text-align: center;
  color: white;
  margin-bottom: 117px;
}
.new_sec_1 > .wrap > .top > .tit > h2 {
  font-size: 50px;
  margin-bottom: 25px;
  font-family: Recipekorea;
  font-weight: 500;
}
.new_sec_1 > .wrap > .top > .tit > h3 {
  font-size: 65px;
  font-family: Recipekorea;
  font-weight: 500;
}
.new_sec_1 > .wrap > .top > .tit > h3 > span {
  color: #FF0098;
}
.new_sec_1 > .wrap > .top > .top_word {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
}
.new_sec_1 > .wrap > .top > .top_word > .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new_sec_1 > .wrap > .top > .top_word > .left > .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.new_sec_1 > .wrap > .top > .top_word > .left > .top > h2 {
  color: #ff0098;
  font-family: Recipekorea;
  font-weight: 500;
  font-size: 35px;
}
.new_sec_1 > .wrap > .top > .top_word > .left > .top > p {
  color: white;
  font-size: 25px;
  line-height: 1.6;
}
.new_sec_1 > .wrap > .top > .top_word > .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.new_sec_1 > .wrap > .top > .top_word > .right > p {
  font-size: 18px;
  color: #B8B8B8;
}
.new_sec_1 > .wrap > .top .line {
  width: 100%;
  height: 0.5px;
  background-color: rgba(249, 249, 249, 0.231372549);
  margin: 80px 0;
}
.new_sec_1 > .wrap > .top > .last_word {
  width: 100%;
  max-width: 1400px;
  margin-top: 80px;
}
.new_sec_1 > .wrap > .top > .last_word > h2 {
  color: #ff0098;
  font-family: Recipekorea;
  line-height: 2;
  font-size: 30px;
  font-weight: 500;
}

.new_sec_2 {
  width: 100%;
  height: 787px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/new_sec_2_back.png);
}
.new_sec_2 > .tit {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.new_sec_2 > .tit > h2 {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 50px;
  font-weight: 500;
  color: white;
  font-family: Recipekorea;
  margin-bottom: 25px;
}
.new_sec_2 > .tit > h3 {
  color: white;
  font-size: 22px;
  font-weight: 500;
}
.new_sec_2 > .bot {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 50px;
}
.new_sec_2 > .bot > h2 {
  font-size: 30px;
  color: white;
  font-weight: 500;
  padding: 49px 150px;
  border: 3px solid #fff;
  border-radius: 17px;
  margin-bottom: 50px;
  font-family: Recipekorea;
}

.sec_swip {
  width: 100%;
  height: 1160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/swip_back.png);
}
.sec_swip > .tit {
  text-align: center;
  margin-bottom: 130px;
}
.sec_swip > .tit > h2 {
  font-size: 65px;
  font-weight: 500;
  color: white;
  font-family: Recipekorea;
  margin-bottom: 50px;
}
.sec_swip > .tit > h2 > span {
  color: #ff0098;
  font-family: Recipekorea;
  font-weight: 500;
}
.sec_swip > .tit > h3 {
  font-size: 25px;
  color: white;
}
.sec_swip > .swiper {
  width: 100%;
}
.sec_swip > .swiper .swiper-wrapper {
  width: 100%;
  max-width: 1570px;
}
.sec_swip > .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_swip > .swiper .swiper-slide > img {
  width: 100%;
  max-width: 500px;
  height: 500px;
}
.sec_swip > .swiper .swiper-button-prev, .sec_swip > .swiper .swiper-button-next {
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .sec_swip > .swiper .swiper-button-prev, .sec_swip > .swiper .swiper-button-next {
    padding: 23px;
  }
}
.sec_swip > .swiper .swiper-button-prev::after, .sec_swip > .swiper .swiper-button-next::after {
  font-size: 25px;
}
@media (max-width: 1024px) {
  .sec_swip > .swiper .swiper-button-prev::after, .sec_swip > .swiper .swiper-button-next::after {
    font-size: 15px;
  }
}/*# sourceMappingURL=main.css.map */