.wrapper {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

.wrapper.main {
  background-color: #8EBC41;
}

/* 상단 메뉴 */
.wrapper .navbar {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  box-shadow: 0px 1px 5px rgb(0, 0, 0, 0.2);
  z-index: 99;
  /* visibility: hidden; */
}

.wrapper .navbar-group {
  display: flex;
  width: 1920px;
  height: 70px;
  gap: 10px;
  padding: 0px 60px;
  align-items: center;
  position: relative;
}

.navbar .logo {
  display: inline-flex;
  flex-direction: column;
  height: 70px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 220px 0px 0px;
  position: relative;
  flex: 0 0 auto;
}

.navbar .logo img {
  position: relative;
  width: 60px;
  height: 52.34px;
  object-fit: cover;
}

.navbar .menu {
  display: flex;
  gap: 10px;
  position: relative;
}

.navbar .menu li {
  position: relative;
  width: 166px;
  text-align: center;
  color: var(--color-db0007);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-700);
  letter-spacing: 0;
  line-height: 70px;
}

/* 플로팅 배너 */
.wrapper .float-banner {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 120px;
  height: 261px;
  top: 594px;
  transform: translate(790px, 0);
  z-index: 99;
  /* visibility: hidden; */
}

.float-banner .banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  padding: 30px 22px;
  position: relative;
}

.float-banner .banner img {
  position: relative;
  width: 26px;
  height: 26px;
}

.float-banner .banner span {
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
  /*letter-spacing: -1px; 수정*/
  letter-spacing: -2px;
}

.float-banner .banner:nth-child(1) {
  gap: 8px;
  background-color: var(--color-db0007);
  border-radius: 60px;
}
.float-banner .banner:nth-child(2) {
  gap: 6px;
  margin-top: 20.84px;
  background-color: var(--color-white);
  border-radius: 60px;
  border: 1px solid;
  border-color: var(--color-db0007);
}

.float-banner .banner:nth-child(1) span {
  color: var(--color-white);
}
.float-banner .banner:nth-child(2) span {
  color: var(--color-db0007);
}

.float-banner .top {
  margin-top: 21px;
  position: relative;
  text-align: center;
  color: var(--color-db0007);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* 메인 */
/* 메인 컨텐츠 */
.wrapper .container {
  background-color: var(--color-white);
  width: 1920px;
  position: relative;
}

.wrapper.main .container {
  background-color: #8EBC41;
}

/* 메인 - KV */
.wrapper .section-kv {
  width: 100%;
  height: 3118px;
  background: url("../images/main/bg-kv.png?v=20260403") no-repeat center top;
  position: relative;
  padding-top: 340px;
}

.section-kv .kv-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 962px;
}

.section-kv .title {
  width: 667px;
  height: 550px;
  object-fit: cover;
}

.section-kv .description {
  position: relative;
  text-align: center;
  color: #2d2d2d;
  font-family: var(--font-family-kr);
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 0;
}

.section-kv .description strong {
  color: var(--color-black);
  font-weight: var(--font-weight-700);
  font-size: 40px;
}

.section-kv .description small {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

.section-kv .description em {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.section-kv .btn-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 20px 0;
}

.section-kv .btn-group button {
  display: flex;
  width: 300px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 69px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.section-kv .btn-group button.register {
  background-color: var(--color-db0007);
}
.section-kv .btn-group button.search {
  background-color: var(--color-white);
  border: 1px solid;
  border-color: var(--color-db0007);
}

.section-kv .btn-group button span {
  position: relative;
  width: fit-content;
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-700);
  letter-spacing: 0;
  line-height: normal;
}

.section-kv .btn-group button.register span {
  color: var(--color-white);
}
.section-kv .btn-group button.search span {
  color: var(--color-db0007);
}

.section-kv .notice {
  position: relative;
  text-align: center;
  color: #2d2d2d;
  font-family: var(--font-family-kr);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.section-kv .btn-group .ico-arrow {
  position: relative;
  width: 10px;
  height: 18px;
}

.section-kv .navigation {
  display: flex;
  width: 100%;
  padding: 0 150px;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 380px;
}

.section-kv .navigation button {
  position: relative;
  width: 30px;
  height: 30px;
}

/* 메인 - 행사 안내 */
h2.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  width: 100%;
  padding-top: 20px;
}

h2.title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 57px;
  height: 18px;
  background: url("../images/common/ico-mac.png") no-repeat center;
  background-size: contain;
}

.wrapper .section-event {
  position: relative;
  margin-top: -1900px;
  padding: 0px 250px;
}

.section-event .intro {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 100px;
  border-radius: 50px;
  background-color: #fff;
}

.section-event .intro h2 img {
  position: relative;
  width: 202.09px;
  height: 47.28px;
}

.intro-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.intro-info li {
  display: flex;
  padding: 24px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--90BD42, #90BD42);
}

.intro-info li span {
  display: flex;
  width: 400px;
  align-items: center;
  padding-left: 34px;
  position: relative;
  border-radius: 3px;
  text-align: center;
  color: var(--color-db0007);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  letter-spacing: 0;
  line-height: normal;
}

.intro-info li span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 19px;
  background: url("../images/main/ico-flower.png") no-repeat center;
  background-size: contain;
}

.intro-info li .description {
  position: relative;
  width: 100%;
  color: var(--color-454545);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-22);
  line-height: 2;
  padding-top: 3px;
}

.intro-info li .description p {
  position: relative;
  width: 100%;
  margin-top: -1px;
  line-height: 40px;
  letter-spacing: 0;
}

.section-event .intro-info li span.top-1 {
  top: -22px;
}
.section-event .intro-info li span.top-2 {
  top: -44px;
}
.section-event .intro-info li span.top-3 {
  top: -40px;
}

.section-event .intro-info li .description .notice {
  position: relative;
  padding-top: 10px;
  width: 100%;
  color: #db0007;
  font-family: var(--font-family-kr);
  font-size: 18px;
  line-height: 30px;
}

/* 메인 - 참가 방법 */
.wrapper .section-how {
  position: relative;
  padding: 50px 250px;
}

.section-how .intro {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 100px;
  border-radius: 50px;
  background-color: #fff;
}

.section-how .intro h2 img {
  position: relative;
  width: 202.09px;
  height: 47.28px;
}

.section-how .intro .title-desc {
  position: relative;
  width: 100%;
  text-align: center;
  color: var(--color-black);
  font-family: SpeedeeKR;
  font-size: var(--font-size-24);
  line-height: normal;
}

.section-how .intro-info li .description .notice {
  position: relative;
  padding-top: 10px;
  width: 100%;
  color: #db0007;
  font-family: var(--font-family-kr);
  font-size: 18px;
  line-height: 25px;
}

/* 메인 - 행사 취지 */
.wrapper .section-purpose {
  position: relative;
  padding: 0px 350px 100px;
}

.section-purpose .purpose {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 100px;
  border-radius: 50px;
  background-color: #fff;
}

.section-purpose .purpose h2 img {
  position: relative;
  width: 202.09px;
  height: 47.28px;
}

.section-purpose .purpose-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.section-purpose .purpose-info .youtube {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 676px;
  object-fit: cover;
}

.section-purpose .purpose-info .description {
  position: relative;
  align-self: stretch;
  padding-bottom: 53px;
  text-align: center;
  color: var(--color-454545);
  font-size: var(--font-size-22);
  font-family: var(--font-family-kr);
  letter-spacing: -1px;
  line-height: 33px;
}

/* 메인 - 기념품 안내 */
.wrapper .section-souvenir {
  position: relative;
  padding: 0px 250px 50px;
}

.section-souvenir .souvenir {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 100px;
  border-radius: 50px;
  background-color: #fff;
}

.section-souvenir .souvenir h2 img {
  position: relative;
  width: 249.133px;
  height: 45.6px;
}

.section-souvenir .souvenir-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.sub-title {
  position: relative;
  height: 51px;
  gap: 10px;
  display: flex;
  align-items: center;
  border-radius: 3px;
  text-align: center;
  color: var(--color-525252);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
  padding: 0 25px;
}

.sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 19.676px;
  background: url("../images/main/ico-arrow-right-orange.png") no-repeat center;
  background-size: contain;
}

.sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 19.676px;
  background: url("../images/main/ico-arrow-left-orange.png") no-repeat center;
  background-size: contain;
}

.section-souvenir .souvenir-info .picture {
  position: relative;
  padding: 20px 0 34px 0;
  object-fit: cover;
}

.section-souvenir .souvenir-info .picture .swiper-wrap {
  position: relative;
  width: 1220px;
  height: 655px;
}

.section-souvenir .souvenir-info .picture .swiper-wrap .swiper-button-prev,
.section-souvenir .souvenir-info .picture .swiper-wrap .swiper-button-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}

.section-souvenir .souvenir-info .picture .swiper-wrap .swiper-button-prev {
  background: url("../images/main/arrow-left.svg") no-repeat center center;
  left: 28px;
}

.section-souvenir .souvenir-info .picture .swiper-wrap .swiper-button-next {
  background: url("../images/main/arrow-right.svg") no-repeat center center;
  right: 28px;
}

.section-souvenir .souvenir-info .picture .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 130px;
  left: 22px;
  gap: 13px;
}

.section-souvenir .souvenir-info .picture .btn-group button {
  display: flex;
  width: 150px;
  height: 33px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
  border: 1px solid #db0007;
}

.section-souvenir .souvenir-info .picture .btn-group button:nth-child(1) {
  color: #db0007;
}

.section-souvenir .souvenir-info .picture .btn-group button:nth-child(2) {
  color: #fff;
  background: #db0007;
}

.section-souvenir .souvenir-info .picture-list {
  display: flex;
  gap: 129px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
  flex: 0 0 auto;
}

.section-souvenir .souvenir-info .picture-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  position: relative;
  color: var(--color-454545);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-22);
  font-style: normal;
  line-height: normal;
}

.section-souvenir .souvenir-info .picture-list .item span {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.section-souvenir .souvenir-info .picture-list .item span::before {
  content: "";
  position: absolute;
  background-image: url(../images/main/ico-circle.png);
  background-size: contain;
  width: 6.03px;
  height: 6.03px;
  transform: translateX(-10px);
}

.section-souvenir .souvenir-info .notice {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  gap: 10px;
  padding-top: 44.66px;
  color: #454545;
  font-family: var(--font-family-kr);
}

.section-souvenir .souvenir-info .notice-1 {
  text-align: center;
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  letter-spacing: 0;
  line-height: 30px;
}

.section-souvenir .souvenir-info .notice-2 {
  font-size: var(--font-size-18);
}

/* 메인 - 프로그램 소개 */
.wrapper .section-program {
  position: relative;
  padding: 0px 250px 50px;
}

.section-program .program {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 100px;
  position: relative;
  padding: 100px 50px 120px;
  border-radius: 50px;
  background-color: #fff;
}

.section-program .program h2 img {
  position: relative;
  width: 297.133px;
  height: 45.12px;
}

.section-program .program-new {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 50px;
}

.section-program .program-intro {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
}

.section-program .program-intro-1,
.section-program .program-intro-2 {
  flex: 1;
}

.section-program .program-intro-1 {
  border-right: 1px solid #FFBC0D;
}

.section-program .sub-title-flower {
  position: relative;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  text-align: center;
  color: var(--color-525252);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
  padding: 10px 25px;
}

.sub-title-flower span{
  display: flex;
  position: relative;
}

.sub-title-flower span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 14px;
    height: 19px;
    background: url(../images/main/ico-flower.png) no-repeat center;
    background-size: contain;
}

.sub-title-flower span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 14px;
    height: 19px;
    background: url(../images/main/ico-flower.png) no-repeat center;
    background-size: contain;
}

.section-program .sub-title-flower ul {
  width: 313px;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  line-height: 60px;
  letter-spacing: -1px;
  padding-top: 50px;
}

.section-program .sub-title-flower ul.event-info {
  width: 477px;
  line-height: 40px;
}

.section-program .sub-title-flower ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  font-family: var(--font-family-kr);
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-400);
}

.section-program .sub-title-flower ul li ul {
  padding-top: 0px;
  padding-left: 20px;
  line-height: 50px;
}

.section-program .sub-title-flower ul.event-info li ul {
  width: 100%;
  margin-left: 0px;
  line-height: 30px;
}

.section-program .sub-title-flower ul li ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  font-family: var(--font-family-kr);
  color: #929292;
  font-size: 23px;
  font-weight: 400;
  padding-left: 20px;
  text-align: left;
}

.section-program .sub-title-flower ul li ul li::before {
  content: "•";
  position: absolute;
  color: #454545;
  font-size: 15px;
  left: 0;
}

.section-program .program-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.section-program .time-table {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  gap: 9px;
  position: relative;
  padding: 22px 0 0px;
}

.section-program .time-table .time-table-info {
  position: relative;
  border-collapse: collapse;
  text-align: center;
  color: var(--color-454545);
  font-size: 22px;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.16px;
}

.time-table-info thead tr {
  background: var(--90BD42, #90BD42);
  color: var(--color-white);
}

.time-table-info th,
.time-table-info td {
  height: 54px;
  padding-top: 5px;
  vertical-align: middle;
  text-align: center;
  font-family: "SpeedeeKR";
  font-weight: 400;
  line-height: 22px;
}

.time-table-info th {
  border: 0;
  box-sizing: border-box;
}
.time-table-info td {
  border: 1px solid var(--90BD42, #90BD42);
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
}

.time-table-info th:nth-child(1),
.time-table-info td:nth-child(1) {
  width: 152px;
}

.time-table-info th:nth-child(2),
.time-table-info td:nth-child(2) {
  width: 220px;
}

.time-table-info th:nth-child(3),
.time-table-info td:nth-child(3) {
  width: 342px;
}

.time-table-info th:nth-child(4),
.time-table-info td:nth-child(4) {
  width: 506px;
}

.program-info .intro-info {
  padding-top: 22px;
}

.section-program .time-table .notice {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
  color: #2d2d2d;
  line-height: 30px;
}

.section-program .program-intro .notice {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  font-family: var(--font-family-kr);
  font-size: 18px;
  font-weight: 300;
  color: #454545;
  line-height: 18px;
  padding-top: 20px;
}

/* 메인 - 행사 장소 / 교통 정보 */
.wrapper .section-place {
  position: relative;
  padding: 0px 250px 50px;
}

.section-place .place {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 100px;
  border-radius: 50px;
  background-color: #fff;
}

.section-place .place h2 img {
  position: relative;
  width: 436.339px;
  height: 47.28px;
}

.section-place .place-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.section-place .place-info .course {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  gap: 20px;
  width: 100%;
  padding: 22px 0 100px;
}

.section-place .place-info .course p {
  position: relative;
  align-self: stretch;
  height: 66px;
  text-align: center;
  color: var(--color-454545);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-22);
  letter-spacing: 0;
  line-height: 26px;
}

.section-place .place-info .course p span {
  color: var(--color-db0007);
  font-family: var(--font-family-kr);
  font-size: 18px;
}

.section-place .intro-info li span.top-1 {
  top: -262px;
}

.section-place .intro-info li .description {
  position: relative;
  width: 100%;
  color: var(--color-454545);
  font-size: var(--font-size-22);
  line-height: 40px;
}

.section-place .intro-info li .description strong {
  font-weight: var(--font-weight-700);
}

.section-place .intro-info li .description small {
  position: relative;
  top: -10px;
  color: var(--color-db0007);
  font-size: var(--font-size-18);
}

.section-place .root_daum_roughmap {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.section-place .place-info iframe {
  padding: 20px 0 0;
}

/* 메인 - 앰배서더 소개 */
.wrapper .section-ambassador {
  position: relative;
  padding: 0px 250px 50px;
}

.section-ambassador .ambassador {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 100px;
  border-radius: 50px;
  background-color: #fff;
}

.section-ambassador .ambassador h2 img {
  position: relative;
  width: 580px;
  height: 48px;
}

.section-ambassador .ambassador-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.section-ambassador .ambassador-info .sub-title {
  color: #525252;
  font-family: var(--font-family-kr);
  font-size: 26px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
}

.section-ambassador .ambassador-info .sub-title strong {
  font-weight: 700;
}

.section-ambassador .ambassador-info .description {
  position: relative;
  color: #454545;
  text-align: center;
  font-family: "SpeedeeKR";
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
}

.section-ambassador .ambassador-info .description strong {
  font-weight: 700;
}

.section-ambassador .ambassador-info .ambassador-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 0px 0 40px;
  color: var(--color-black);
  font-size: var(--font-size-22);
  letter-spacing: 0;
  line-height: normal;
}

.section-ambassador .ambassador-info .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 20px;
  color: var(--color-454545);
  font-size: var(--font-size-22);
  font-weight: 700;
  font-style: normal;
  line-height: normal;
}

.section-ambassador .ambassador-info p {
  position: relative;
  width: 100%;
  text-align: center;
  color: var(--color-454545);
  font-family: "SpeedeeKR";
  font-size: var(--font-size-22);
  font-weight: 400;
  line-height: 33px;
  padding-top: 60px;
}

.section-ambassador .ambassador-info p.pt-100 {
  padding-top: 160px;
}

.section-ambassador .ambassador-info p strong {
  font-weight: var(--font-weight-700);
}

.section-ambassador .ambassador-info .youtube {
  position: relative;
  padding: 53px 0;
  width: 100%;
  height: 676px;
  object-fit: cover;
}

/* 메인 - 후원사 소개 */
.wrapper .section-sponsor {
  position: relative;
  padding: 0px 250px 50px;
}

.section-sponsor .sponsor {
  display: flex;
  flex-direction: column;
  width: 1420px;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 100px;
  border-radius: 50px;
  background-color: #fff;
}

.section-sponsor .sponsor h2 img {
  position: relative;
  width: 249.133px;
  height: 46.08px;
}

.section-sponsor .sponsor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.section-sponsor .sponsor-info .sponsor-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 20px 0 0;
}

.section-sponsor .sponsor-info .sponsor-list.item {
  padding-top: 60px;
  gap: 70px;
}

.section-sponsor .sponsor-info .sponsor-list.item:nth-child(3) {
  gap: 33px;
}

.section-sponsor .sponsor-info .sponsor-list.item.pt-0 {
  padding-top: 0px;
}

/* 메인 - RMHC 소개 */
.wrapper .section-rmhc {
  width: 1420px;
  height: 1133px;
  background-image: url(../images/main/bg-rmhc.jpg);
  background-size: cover;
  background-position: 50% 0%;
  position: relative;
  padding-top: 100px;
  margin: 0 auto;
  margin-bottom: 50px;
  border-radius: 50px;
}

.section-rmhc .rmhc {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  position: relative;
}

.section-rmhc .rmhc em {
  position: relative;
  color: #454545;
  font-size: 18px;
  line-height: 33px;
  letter-spacing: -1px;
}

.section-rmhc .rmhc-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  padding-top: 20px;
}

.section-rmhc .rmhc-info .introduce {
  text-align: center;
  color: var(--color-454545);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
}

.section-rmhc .rmhc-info .introduce small {
  color: var(--color-80470d);
}

.section-rmhc .rmhc-info .description {
  position: relative;
  padding-top: 42px;
  text-align: center;
  color: var(--color-503c28);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-20);
  font-style: normal;
  line-height: 30px;
}

.section-rmhc .rmhc-info .picture {
  position: relative;
  padding: 86px 0 90px;
}

.section-rmhc .rmhc-info .comment {
  position: relative;
  color: var(--color-2d2d2d);
  font-family: var(--font-family-kr);
  font-size: var(--font-size-20);
  font-style: normal;
  line-height: 30px;
  text-align: center;
}

.section-rmhc .rmhc-info .comment strong {
  font-weight: var(--font-weight-700);
}

.section-rmhc .rmhc-info .more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 75px;
  padding: 25px 70px;
  gap: 10px;
  background: #ffbc0d;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
}

.section-rmhc .rmhc-info .more span {
  text-align: center;
  color: var(--color-2d2d2d);
  font-size: var(--font-size-34);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
}

.section-rmhc .rmhc-info .more button {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-2d2d2d);
}

.section-rmhc .rmhc-info .more button em {
  padding: 0 3px;
  vertical-align: middle;
  color: var(--color-ffbc0d);
  font-size: var(--font-size-26);
}

/* 서브 - 공통 */
.wrapper .kv-sub {
  display: flex;
  justify-content: center;
  width: 1920px;
  height: 557px;
  background-image: url(../images/common/bg-kv-sub.jpg);
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  padding-top: 140px;
  /* visibility: hidden; */
}

/* 서브 - 안내사항 */
.wrapper .section-notification {
  position: relative;
  padding: 100px 350px;
}

.section-notification .notification {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  position: relative;
}

.section-notification .notification .tab {
  display: flex;
  gap: 124px;
  position: relative;
  color: #929292;
  text-align: center;
  text-overflow: ellipsis;
  font-family: Speedee;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 100px 0;
}

.section-notification .notification .tab .active {
  color: #db0007;
  font-weight: 700;
  border-bottom: 1px solid #db0007;
}

.section-notification .notification .operation {
  position: relative;
}

.section-notification .notification .note {
  position: relative;
  display: none;
}

.section-notification .notification .info-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding-bottom: 80px;
}

.section-notification .notification .info-group span {
  position: relative;
  color: #db0007;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 20px;
}

.section-notification .notification .info-group span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 19.676px;
  background: url("../images/main/ico-arrow-right-orange.png") no-repeat center;
  background-size: contain;
}

.section-notification .notification .info-group .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  color: #454545;
  font-size: 24px;
  font-style: normal;
  line-height: 40px;
  padding: 30px 0 0 10px;
}

.section-notification .notification .info-group .description li {
  position: relative;
  padding-left: 20px;
}

.section-notification .notification .info-group .description li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: url("../images/main/ico-circle.png") no-repeat center;
  background-size: contain;
}

.section-notification .notification .info-group .description li.line-1 {
  line-height: 40px;
}

.section-notification .notification .info-group .description li.line-1::before {
  top: 16px;
}

.section-notification .notification .info-group .description li.line-2 {
  color: #db0007;
  font-family: Speedee;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  top: -10px;
}
.section-notification .notification .info-group .description li.line-2::before {
  background: none;
}
.section-notification .notification .info-group:last-child {
  padding-bottom: 0;
}

/* 서브 - 갤러리 */
.wrapper .section-gallery {
  position: relative;
  padding: 100px 350px;
}

.section-gallery .gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  position: relative;
}

.section-gallery .gallery .title {
  position: relative;
  padding-bottom: 100px;
  /* border-bottom: 2px solid #ffbc0d; */
}

/* 20250711 추가 */
.section-gallery .gallery-tab-years {
  display: flex;
  padding: 5px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.section-gallery .gallery-tab-years ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 190px;
  position: relative;
}

.section-gallery .gallery-tab-years ul li {
  overflow: hidden;
  color: #929292;
  text-align: center;
  text-overflow: ellipsis;
  font-family: Speedee;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-gallery .gallery-tab-years ul li.active {
  color: #DB0007;
  border-bottom: 1px solid #DB0007;
}
/* //20250711 추가 */

.section-gallery .gallery-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  padding: 100px 0;
}

.section-gallery .gallery-info .youtube {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 676px;
  object-fit: cover;
}

.section-gallery .gallery-info .picture {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  padding-top: 100px;
}
.section-gallery .gallery-info .picture img {
  width: 600px;
}

.section-gallery .gallery-info span {
  color: #db0007;
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  letter-spacing: -1px;
  padding-top: 20px;
}

/* 서브 - 참가 안내 */
.wrapper .section-participation {
  position: relative;
  padding: 100px 350px 0px;
}

.section-participation .participation {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  position: relative;
}

.section-participation .participation .title {
  position: relative;
  padding-bottom: 16px;
}

.section-participation .participation-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}
.section-participation .intro-info li .char-1 {
  position: absolute;
  width: 75px;
  height: 56px;
  right: 17.65px;
  bottom: 0px;
}
.section-participation .intro-info li .char-2 {
  position: absolute;
  width: 72px;
  height: 68px;
  left: 82.92px;
  bottom: 0px;
}

.section-participation .intro-info li span.top-1 {
  top: -20px;
}
.section-participation .intro-info li span.top-2 {
  top: -160px;
}
.section-participation .intro-info li .description {
  line-height: 40px;
}
.section-participation .intro-info li .description small {
  position: relative;
  color: var(--color-db0007);
  font-size: var(--font-size-18);
  line-height: 40px;
}
.section-participation .intro-info li .description small p.line-1 {
  line-height: 40px;
}

.section-participation .input-group button.add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 70px;
  padding: 10px 20px;
  /* background: #ffbc0d; */
  border: 2px solid #efefef;
  cursor: pointer;
  color: #454545;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1px;
}

.section-participation .input-group button.add-btn img {
  position: relative;
  top: 2px;
}

.wrapper .section-step {
  position: relative;
  width: 100%;
  height: 610px;
  background: url("../images/participation/bg-step.jpg") no-repeat center;
}
.section-step .step-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
  position: relative;
  width: 100%;
  padding: 100px 0 100px;
}
.section-step .step-info .step {
  position: relative;
  display: flex;
  width: 260px;
  height: 120px;
  padding-top: 10px 0 24px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 2px solid #db0007;
  background: rgba(255, 255, 255, 0.5);
}
.section-step .step-info .step::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 57px;
  height: 18px;
  background: url("../images/common/ico-mac.png") no-repeat center;
  background-size: contain;
}
.section-step .step-info .step h3 {
  position: relative;
  color: #db0007;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.section-step .step-info .step p {
  position: relative;
  color: #db0007;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.section-step .step-info .step p small {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: center;
}
.section-step .step-info .step:last-child p {
  top: 15px;
}

.section-step .btn-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.section-step .btn-group button {
  display: flex;
  width: 300px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.section-step .btn-group button.register {
  background-color: var(--color-db0007);
}
.section-step .btn-group button.search {
  background-color: var(--color-white);
  /* border: 1px solid var(--color-db0007); */
}

.section-step .btn-group button span {
  position: relative;
  width: fit-content;
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-700);
  letter-spacing: 0;
  line-height: normal;
}

.section-step .btn-group button.register span {
  color: var(--color-white);
}
.section-step .btn-group button.search span {
  color: var(--color-db0007);
}

.section-step .btn-group .ico-arrow {
  position: relative;
  width: 10px;
  height: 18px;
}

/* 공통 */
/* checkbox, radio 스타일링 */
.custom-checkbox,
.custom-radio {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  color: #454545;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1px;
}

.custom-checkbox input,
.custom-radio input {
  display: none;
}

.custom-checkbox span,
.custom-radio span {
  width: 32px;
  height: 34px;
  display: inline-block;
  margin-right: 8px;
  background-size: contain;
  background-position: center;
  background-image: url("../images/common/radio.png");
  background-repeat: no-repeat;
  position: relative;
  top: 1px;
}

.custom-checkbox input:checked + span::after,
.custom-radio input:checked + span::after {
  content: "";
  width: 32px;
  height: 34px;
  background-image: url("../images/common/radio-on.png");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Select Box (Dropdown) 스타일링 */
.dropdown-group {
  display: flex;
  gap: 20px;
  position: relative;
  padding-top: 30px;
  z-index: 20;
}
.custom-dropdown {
  position: relative;
  width: 394px;
  color: #454545;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1px;
}
.dropdown-button {
  width: 100%;
  height: 70px;
  padding: 10px 20px;
  background: #fff;
  border: 2px solid #efefef;
  cursor: pointer;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1px;
  text-align: left;
}
.dropdown-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 16px;
  height: 10px;
  background: url("../images/common/arrow-down.png") no-repeat center;
  background-size: contain;
}
.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 393px;
  background: #fff;
  border: 2px solid #efefef;
  display: none;
}
.dropdown-list li {
  display: flex;
  height: 70px;
  cursor: pointer;
  border: 1px solid #efefef;
  transition: background 0.2s;
}
.dropdown-list li:hover {
  background: #ffbc0d;
  color: #454545;
}
.dropdown-list li span {
  margin: auto 0;
  padding: 0 20px;
}

/* input box 스타일링 */
.custom-input {
  position: relative;
  width: 100%;
  height: 70px;
  padding: 25px 39px;
  border: 2px solid #efefef;
  background: #fff;
  border-radius: 4px;
  color: #454545;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1px;
  outline: none;
}

.custom-input.readonly {
  background: #f8f8f8;
}

/* Kakao 주소 검색 API */
.address_wrap {
  display: none;
  border: 1px solid;
  width: 100%;
  height: 300px;
  margin: 5px 0;
  position: relative;
}

/* textarea 스타일링 */
.custom-textarea {
  width: 100%;
  height: 320px;
  margin: 10px 0;
  padding: 10px 20px;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  color: #929292;
  font-size: 20px;
  line-height: 30px;
  resize: none;
  outline: none;
  text-align: center;
  overflow-y: scroll;
}
.custom-textarea.type2 {
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0px 20px;
}
.custom-textarea::-webkit-scrollbar {
  width: 8px;
}
.custom-textarea::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 4px;
}
.custom-textarea::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.custom-textarea::placeholder {
  font-size: 16px;
  color: #929292;
}
.custom-textarea strong {
  font-size: 24px;
  font-weight: 700;
}
.custom-textarea b {
  font-weight: 700;
}
.custom-textarea .txt-left {
  text-align: left;
}
.custom-textarea .pt-10 {
  padding-top: 10px;
}
.custom-textarea .pt-20 {
  padding-top: 20px;
}
.custom-textarea .line-height-40 {
  line-height: 40px;
}
.custom-textarea em {
  color: #db0007;
}
.custom-textarea .color-blue {
  color: #6eadff;
}
.custom-textarea small {
  position: relative;
  top: -3px;
  font-size: 12px;
  line-height: 12px;
}

.custom-textarea table {
  position: relative;
  margin-top: 20px;
  border-collapse: collapse;
  color: #929292;
  font-size: 18px;
  font-style: normal;
  letter-spacing: -0.16px;
  width: 100%;
}

.custom-textarea th,
.custom-textarea td {
  height: 54px;
  padding-top: 5px;
  vertical-align: middle;
  text-align: center;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  padding: 10px 10px;
}

.custom-textarea th {
  border: 0;
  box-sizing: border-box;
}
.custom-textarea td {
  border: 1px solid rgba(146, 146, 146, 0.8);
}

.custom-textarea th:nth-child(1),
.custom-textarea td:nth-child(1) {
  width: 24%;
}

.custom-textarea th:nth-child(2),
.custom-textarea td:nth-child(2) {
  width: 74%;
}

.custom-textarea table.table-type2 th:nth-child(1),
.custom-textarea table.table-type2 td:nth-child(1) {
  width: 50%;
  text-align: center;
}

.custom-textarea table.table-type2 th:nth-child(2),
.custom-textarea table.table-type2 td:nth-child(2) {
  width: 50%;
  text-align: center;
}

.custom-textarea table.table-type3 th:nth-child(1),
.custom-textarea table.table-type3 td:nth-child(1) {
  width: 30%;
  text-align: center;
}

.custom-textarea table.table-type3 th:nth-child(2),
.custom-textarea table.table-type3 td:nth-child(2) {
  width: 50%;
  text-align: center;
}

.custom-textarea table.table-type3 th:nth-child(3),
.custom-textarea table.table-type3 td:nth-child(3) {
  width: 20%;
  text-align: center;
}

/* 약관 동의 */
.section-participation .agreement-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  padding: 84px 0 100px;
}

.section-participation .agreement-info .agreement-group {
  padding-bottom: 50px;
}

.section-participation .agreement-info .info-group label {
  position: relative;
  color: #454545;
  font-size: 26px;
  font-style: normal;
  line-height: 34px;
  letter-spacing: -1px;
}

.section-participation .agreement-info .info-group label em {
  color: #db0007;
}

.section-participation .agreement-info .agreement-all {
  position: relative;
}
.section-participation .agreement-info .agreement-all p {
  color: #db0007;
  font-size: 18px;
  line-height: 33px;
}

.section-participation .btn-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  position: relative;
  width: 100%;
  padding: 100px 0 0;
  margin: 0 auto;
}

.section-participation .btn-group button {
  display: flex;
  width: 376px;
  height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 45px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.section-participation .btn-group button.next,
.section-participation .btn-group button.confirm {
  background-color: #dc0109;
}
.section-participation .btn-group button .ico-arrow {
  position: relative;
  top: 2px;
}

.section-participation .btn-group button span {
  position: relative;
  width: fit-content;
  text-align: center;
  color: var(--color-white);
  font-size: 30px;
  font-weight: var(--font-weight-700);
  letter-spacing: 0;
  line-height: normal;
}

.section-participation .btn-group button.next span {
  color: var(--color-white);
}

.section-participation .btn-group button.prev {
  background-color: #ffffff;
}

.section-participation .btn-group button.prev span,
.section-participation .btn-group button.receipt span {
  color: #db0007;
}

/* 개인 참가 신청 */
.section-participation .form-wrapper,
.section-search .form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  padding: 84px 0 100px;
}

.section-participation .form-wrapper .btn-group.pt-0,
.section-search .form-wrapper .btn-group.pt-0 {
  padding-top: 0;
}

.section-participation .form-wrapper .btn-group.pt-40,
.section-search .form-wrapper .btn-group.pt-40 {
  padding-top: 40px;
}

.section-participation .form-wrapper .form-group,
.section-search .form-wrapper .form-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding-bottom: 60px;
}

.section-participation .form-wrapper .form-group h2,
.section-search .form-wrapper .form-group h2 {
  position: relative;
  color: #454545;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  line-height: normal;
  padding-left: 20px;
}

.section-participation .form-wrapper .form-group h2::before,
.section-search .form-wrapper .form-group h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 19.676px;
  background: url("../images/main/ico-arrow-right-orange.png") no-repeat center;
  background-size: contain;
}

.section-participation .form-wrapper .form-group .user-info,
.section-search .form-wrapper .form-group .user-info {
  display: flex;
  position: relative;
  padding: 30px 24px 0;
  color: #929292;
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
}

.section-participation .form-wrapper .form-group .user-info tbody,
.section-search .form-wrapper .form-group .user-info tbody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-participation .form-wrapper .form-group .user-info td:nth-child(1),
.section-search .form-wrapper .form-group .user-info td:nth-child(1) {
  width: 200px;
}

.section-participation .form-wrapper .form-group .user-info td span,
.section-search .form-wrapper .form-group .user-info td span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.section-participation .form-wrapper .form-group .address-group,
.section-search .form-wrapper .form-group .address-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  width: 100%;
  padding-top: 30px;
}
.section-participation .form-wrapper .form-group .address-group button,
.section-search .form-wrapper .form-group .address-group button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 70px;
  padding: 10px 20px;
  background: #ffbc0d;
  border: 2px solid #efefef;
  cursor: pointer;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1px;
  text-align: left;
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 10;
}

.section-participation .form-wrapper .form-group .address-description,
.section-search .form-wrapper .form-group .address-description {
  position: relative;
  color: #db0007;
  font-size: 18px;
  line-height: 33px;
}

.section-search .form-wrapper .form-group .address-description {
  padding-top: 10px;
  letter-spacing: -1px;
}

.section-participation .form-wrapper .form-group .receipt-group {
  display: flex;
  gap: 64px;
  position: relative;
  padding-top: 30px;
}

.section-participation .form-wrapper .form-group .receipt-notice {
  position: relative;
  color: #db0007;
  font-size: 18px;
  line-height: 33px;
  padding-top: 10px;
}
.section-participation .form-wrapper .form-group .total-amount,
.section-search .form-wrapper .form-group .total-amount {
  position: relative;
  padding-top: 20px;
  color: #454545;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  padding-left: 24px;
}

/* 단체 참가 신청 */
.section-participation .form-wrapper .form-group .association_area,
.section-search .form-wrapper .form-group .association_area {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  width: 100%;
}

.section-participation .form-wrapper .form-group .association_area h2,
.section-search .form-wrapper .form-group .association_area h2 {
  text-align: left;
}

.section-participation
  .form-wrapper
  .form-group
  .association_area
  .association_list,
.section-search .form-wrapper .form-group .association_area .association_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.section-participation .form-wrapper .form-group .input-association,
.section-search .form-wrapper .form-group .input-association {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.section-participation .form-wrapper .form-group .input-association .h-group,
.section-search .form-wrapper .form-group .input-association .h-group {
  display: flex;
  justify-content: space-between;
  color: #454545;
  font-size: 20px;
  letter-spacing: -1px;
}

.section-participation .form-wrapper .form-group .input-association h3,
.section-search .form-wrapper .form-group .input-association h3 {
  padding-left: 24px;
}

.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group,
.section-search .form-wrapper .form-group .input-association .input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 24px;
  color: #929292;
  font-size: 24px;
  line-height: normal;
  letter-spacing: -1px;
}

.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .line-group,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .line-group {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .line-group:nth-child(2),
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .line-group:nth-child(2) {
  justify-content: end;
}

.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .line-group
  span,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .line-group
  span {
  width: 108px;
}

.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  input,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  input {
  width: 360px;
}
.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  input.custom-input.readonly,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  input.custom-input.readonly {
  background: #f8f8f8;
}
.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .dropdown-group,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .dropdown-group {
  gap: 5px;
  padding-top: 0;
}
.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-dropdown,
.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-dropdown
  .dropdown-list,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-dropdown,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-dropdown
  .dropdown-list {
  width: 359px;
}
.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-dropdown
  .dropdown-list
  li
  span,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-dropdown
  .dropdown-list
  li
  span {
  width: 100%;
}
.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .radio-group,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .radio-group {
  display: flex;
  gap: 20px;
  position: relative;
  width: 364px;
}
.section-participation
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-radio
  span,
.section-search
  .form-wrapper
  .form-group
  .input-association
  .input-group
  .custom-radio
  span {
  width: 34px;
  padding-left: 20px;
}

.section-participation .form-wrapper .add-wrap {
  position: relative;
  width: 100%;
  padding: 0 0 0 24px;
}

.section-participation .form-wrapper .add-wrap .add-btn {
  display: flex;
  width: 100%;
  height: 70px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #ffbc0d;
  color: #454545;
  font-size: 22px;
}
.section-participation .form-wrapper .form-group .association_area p,
.section-search .form-wrapper .form-group .association_area p {
  color: #db0007;
  font-size: 18px;
  font-weight: 400;
  line-height: 33px;
  margin: -20px 0 0 24px;
}

/* 참가 신청 - 완료 */
.section-participation .form-wrapper .form-group .complete-info {
  display: flex;
  position: relative;
  padding: 20px 24px 0;
  color: #929292;
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
}

.section-participation .form-wrapper .form-group .complete-info tbody {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-participation .form-wrapper .form-group .complete-info .pt-10 {
  padding-top: 10px;
}

.section-participation .form-wrapper .form-group .complete-info .gubun {
  color: #454545;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -1px;
}

.section-participation
  .form-wrapper
  .form-group
  .complete-info
  td:nth-child(1) {
  width: 260px;
}

.section-participation .form-wrapper .form-group .complete-info td span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.section-participation .form-wrapper .form-group .complete-info td.notice {
  width: 100%;
  color: #db0007;
  font-size: 18px;
  line-height: 33px;
}

/* 서브 - 참가신청 조회 */
.wrapper .section-search {
  position: relative;
  padding: 100px 350px 0px;
}

.section-search .search {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  position: relative;
}

.section-search .search .title {
  position: relative;
}

.section-search .search p {
  position: relative;
  padding: 100px 0 37px;
  color: #454545;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
}

.section-search .search .info-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding-bottom: 80px;
  border-bottom: 1px solid #ffbc0d;
}

.section-search .search .info-group span {
  position: relative;
  color: #db0007;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 20px;
}

.section-search .search .info-group span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 19.676px;
  background: url("../images/main/ico-arrow-right-orange.png") no-repeat center;
  background-size: contain;
}

.section-search .search .info-group .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  color: #454545;
  font-size: 24px;
  font-style: normal;
  line-height: 40px;
  padding: 0 0 0 10px;
}

.section-search .search .info-group .description li {
  position: relative;
  padding-left: 20px;
}

.section-search .search .info-group .description li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: url("../images/main/ico-circle.png") no-repeat center;
  background-size: contain;
}

.section-search .search .info-group .description li.line-1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #db0007;
  font-family: Speedee;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -1px;
}

.section-search .search .info-group .description li.line-1::before {
  background: none;
}

.section-search .search .info-group:last-child {
  padding-bottom: 0;
}

.section-search .input-association .input-group button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 70px;
  padding: 10px 20px;
  background: #ffbc0d;
  border: 2px solid #efefef;
  cursor: pointer;
  color: #454545;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1px;
}

.section-search .input-association .input-group button img {
  position: relative;
  top: 2px;
}

.section-search .btn-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  position: relative;
  width: 100%;
  padding: 100px 0 0;
  margin: 0 auto;
}

.section-search .btn-group button {
  display: flex;
  width: 376px;
  height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 69px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.section-search .btn-group button.update {
  background-color: #dc0109;
}
.section-search .btn-group button.search {
  background-color: #dc0109;
  margin-bottom: 100px;
}
.section-search .btn-group button .ico-arrow {
  position: relative;
  top: 2px;
}

.section-search .btn-group button span {
  position: relative;
  width: fit-content;
  text-align: center;
  color: var(--color-white);
  font-size: 30px;
  font-weight: var(--font-weight-700);
  letter-spacing: 0;
  line-height: normal;
}

.section-search .btn-group button.next span {
  color: var(--color-white);
}

.section-search .btn-group button.prev {
  background-color: #ffffff;
}

.section-search .btn-group button.cancel span {
  color: #db0007;
}

/* 푸터 */
.footer {
  position: relative;
  width: 100%;
  background-color: var(--color-454545);
  /* visibility: hidden; */
}

.footer .footer-group {
  display: flex;
  width: 1220px;
  padding: 59.58px 0px 47px;
  align-items: start;
  justify-content: space-between;
  position: relative;
  color: var(--color-white);
  font-size: var(--font-size-default);
  line-height: 40px;
  margin: 0 auto;
}

.footer .company-info {
  display: flex;
  flex-direction: column;
  gap: 48.2px;
  position: relative;
}

.footer .company-info .contact {
  display: flex;
  flex-direction: column;
  position: relative;
}

.footer .company-info .contact li {
  display: flex;
  align-items: center;
  gap: 58px;
  position: relative;
}

.footer .company-info .contact li:nth-child(1) {
  font-weight: var(--font-weight-700);
}

.footer .company-info .contact .tel,
.footer .company-info .contact .email,
.footer .company-info .contact .copyright {
  font-size: 16px;
  font-weight: 300;
}

.footer .company-agreement {
  display: flex;
  position: relative;
}

/* ---------------------------------------
    POPUP
--------------------------------------- */
.popup {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: none;
  z-index: 100;
  text-align: center;
  border-radius: 10px;
  background: var(--color-white);
}

.popup .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  width: 100%;
  padding-top: 94.4px;
}

.popup .title::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: 57px;
  height: 18px;
  background: url("../images/common/ico-mac.png") no-repeat center;
  background-size: contain;
}

.popup.wearing-cut {
  width: 600px;
  height: 960px;
}

.popup.wearing-cut .swiper-wrap {
  width: 430px;
  height: 540px;
  margin: 72px 0 0 85px;
}

.popup.wearing-cut .swiper-wrap .swiper-button-prev,
.popup.wearing-cut .swiper-wrap .swiper-button-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}

.popup.wearing-cut .swiper-wrap .swiper-button-prev {
  background: url("../images/main/arrow-left.svg") no-repeat center center;
  left: 28px;
}

.popup.wearing-cut .swiper-wrap .swiper-button-next {
  background: url("../images/main/arrow-right.svg") no-repeat center center;
  right: 28px;
}

.popup.wearing-cut .btn-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  top: 93px;
}

.popup.wearing-cut .btn-group .btn-confirm {
  display: flex;
  width: 192px;
  height: 51px;
  padding: 25px 69px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #dc0109;
}

.popup.wearing-cut .btn-group .btn-confirm span {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-default);
  font-size: var(--font-size-20);
  font-style: normal;
  font-weight: var(--font-weight-700);
  line-height: normal;
}

.popup.size-info {
  width: 786px;
  height: 960px;
}

.popup.size-info .shirt-desc {
  position: relative;
  width: 574px;
  top: 51.16px;
  left: 106px;
}

.popup.size-info .shirt-desc .sub-title {
  position: relative;
  height: 51px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  text-align: center;
  color: var(--color-525252);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
  padding: 0 25px;
}

.popup.size-info .shirt-desc .unit {
  color: var(--color-454545, #454545);
  text-align: center;
  font-family: var(--font-family-kr);
  font-size: 14px;
  font-style: normal;
  font-weight: var(--font-weight-default);
  line-height: 22px;
  position: absolute;
  top: 41px;
  right: 0px;
}

.popup.size-info .shirt-desc .shirt-info {
  position: relative;
  width: 574px;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 22px;
  position: relative;
  top: 20px;
}

.popup.size-info .shirt-desc .shirt-info .shirt-table {
  position: relative;
  border-collapse: collapse;
  text-align: center;
  color: var(--color-454545);
  font-size: 14px;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.16px;
  background-color: var(--color-ffbc0d);
  border-radius: 4px;
  border-style: hidden;
  box-shadow: 0 0 0 1px var(--color-ffbc0d);
}

.popup.size-info .shirt-desc .shirt-info .shirt-table thead tr {
  /*background-color: var(--color-ffbc0d);*/
  color: var(--color-white);
}

.popup.size-info .shirt-desc .shirt-info .shirt-table th,
.popup.size-info .shirt-desc .shirt-info .shirt-table td {
  height: 30px;
  width: 82px;
  vertical-align: middle;
  text-align: center;
  font-weight: var(--font-weight-default);
  line-height: 22px;
}

.popup.size-info .shirt-desc .shirt-info .shirt-table th {
  border: 0;
  box-sizing: border-box;
}

.popup.size-info .shirt-desc .shirt-info .shirt-table td {
  border: 1px solid rgba(255, 188, 13, 0.8);
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
}

.popup.size-info
  .shirt-desc
  .shirt-info
  .shirt-table
  tr:last-child
  td:first-child {
  border-radius: 0px 0px 0px 4px;
}

.popup.size-info
  .shirt-desc
  .shirt-info
  .shirt-table
  tr:last-child
  td:last-child {
  border-radius: 0px 0px 4px 0px;
}

.popup.size-info .hat-desc {
  position: relative;
  width: 574px;
  top: 90px;
  left: 106px;
}

.popup.size-info .hat-desc .sub-title {
  position: relative;
  height: 51px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  text-align: center;
  color: var(--color-525252);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
  padding: 0 25px;
}

.popup.size-info .hat-desc .hat-info {
  position: relative;
  width: 574px;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 22px;
  position: relative;
  top: 20px;
}

.popup.size-info .hat-desc .hat-info .hat-table {
  position: relative;
  border-collapse: collapse;
  text-align: center;
  color: var(--color-454545);
  font-size: 14px;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.16px;
  background-color: var(--color-ffbc0d);
  border-radius: 4px;
  border-style: hidden;
  box-shadow: 0 0 0 1px var(--color-ffbc0d);
}

.popup.size-info .hat-desc .hat-info .hat-table thead tr {
  /*background-color: var(--color-ffbc0d);*/
  color: var(--color-white);
}

.popup.size-info .hat-desc .hat-info .hat-table th,
.popup.size-info .hat-desc .hat-info .hat-table td {
  height: 32px;
  width: 192px;
  vertical-align: middle;
  text-align: center;
  font-weight: var(--font-weight-default);
  line-height: 22px;
}

.popup.size-info .hat-desc .hat-info .hat-table th {
  border: 0;
  box-sizing: border-box;
}

.popup.size-info .hat-desc .hat-info .hat-table td {
  border: 1px solid rgba(255, 188, 13, 0.8);
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
}

.popup.size-info .hat-desc .hat-info .hat-table tr:last-child td:first-child {
  border-radius: 0px 0px 0px 4px;
}

.popup.size-info .hat-desc .hat-info .hat-table tr:last-child td:last-child {
  border-radius: 0px 0px 4px 0px;
}

.popup.size-info .socks-desc {
  position: relative;
  width: 574px;
  top: 130px;
  left: 106px;
}

.popup.size-info .socks-desc .sub-title {
  position: relative;
  height: 51px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  text-align: center;
  color: var(--color-525252);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-700);
  font-style: normal;
  line-height: normal;
  padding: 0 25px;
}

.popup.size-info .socks-desc .socks-info {
  position: relative;
  width: 574px;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 22px;
  position: relative;
  top: 20px;
}

.popup.size-info .socks-desc .socks-info .socks-table {
  position: relative;
  border-collapse: collapse;
  text-align: center;
  color: var(--color-454545);
  font-size: 14px;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.16px;
  background-color: var(--color-ffbc0d);
  border-radius: 4px;
  border-style: hidden;
  box-shadow: 0 0 0 1px var(--color-ffbc0d);
}

.popup.size-info .socks-desc .socks-info .socks-table thead tr {
  /*background-color: var(--color-ffbc0d);*/
  color: var(--color-white);
}

.popup.size-info .socks-desc .socks-info .socks-table th,
.popup.size-info .socks-desc .socks-info .socks-table td {
  height: 32px;
  width: 192px;
  vertical-align: middle;
  text-align: center;
  font-weight: var(--font-weight-default);
  line-height: 22px;
}

.popup.size-info .socks-desc .socks-info .socks-table th {
  border: 0;
  box-sizing: border-box;
}

.popup.size-info .socks-desc .socks-info .socks-table td {
  border: 1px solid rgba(255, 188, 13, 0.8);
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
}

.popup.size-info
  .socks-desc
  .socks-info
  .socks-table
  tr:nth-child(2)
  td:first-child {
  border-radius: 0px 0px 0px 4px;
}

.popup.size-info
  .socks-desc
  .socks-info
  .socks-table
  tr:last-child
  td:last-child {
  border-radius: 0px 0px 4px 0px;
}

.popup.size-info .btn-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  top: 210px;
}

.popup.size-info .btn-group .btn-confirm {
  display: flex;
  width: 192px;
  height: 51px;
  padding: 25px 69px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #dc0109;
}

.popup.size-info .btn-group .btn-confirm span {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-default);
  font-size: var(--font-size-20);
  font-style: normal;
  font-weight: var(--font-weight-700);
  line-height: normal;
}

.popup.alert {
  width: 400px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  padding-bottom: 20px;
}

.popup.alert .char {
  position: relative;
  margin-top: 15px;
}

.popup.alert .txt {
  position: relative;
  margin-top: 15px;
  color: var(--color-454545);
  text-align: center;
  font-family: var(--font-family-default);
  font-size: var(--font-size-18);
  font-style: normal;
  font-weight: var(--font-weight-default);
  line-height: normal;
}

.popup.alert .txt .bold {
  font-weight: var(--font-weight-700);
}

.popup.alert .btn-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.popup.alert .btn-group .btn-confirm {
  display: flex;
  width: 100px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--color-db0007);
}

.popup.alert .btn-group .btn-confirm span {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  font-style: normal;
  font-weight: var(--font-weight-700);
  line-height: normal;
}

.popup.notice {
  position: relative;
  width: 540px;
  height: 780px;
  border-radius: 0;
}

.popup.notice.event {
  height: 600px;
}

.popup.notice h1 {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 14px 0;
  color: #454545;
  text-align: center;
  font-size: 34px;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
  background: #ffbc0d;
}

.popup.notice h1 strong {
  font-weight: 700;
}

.popup.notice .desc {
  position: relative;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #454545;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

.popup.notice .contents {
  position: relative;
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #66524f;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
}

.popup.notice .contents .txt {
  position: relative;
  padding: 0 0 20px;
}

.popup.notice .btn-group {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #454545;
  padding: 10px 0;
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}

.popup.notice .btn-group button {
  width: 50%;
}

.popup.notice .btn-group button:nth-child(1) {
  border-right: 1px solid #fff;
}

/* ---------------------------------------
    RESPONSIVE
--------------------------------------- */
/*----IE10+ Browser CSS Start----*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
}
/*----IE10+ Browser CSS End----*/

/*----Tablet CSS Start----*/
@media (max-width: 1450px) {
  .wrapper .navbar-group {
    width: 100%;
  }

  .navbar .logo {
    padding: 0;
  }

  .wrapper .float-banner {
    top: 100px;
    transform: translate(0, 0);
    right: 10px;
  }

  .footer .footer-group {
    width: initial;
    padding: 59.58px 30px 47px;
  }
}
/*----Tablet CSS End----*/

/*----NoteBook CSS Start----*/
@media (max-height: 900px) {
  .wrapper .navbar-group {
    width: 100%;
  }

  .navbar .logo {
    padding: 0;
  }

  .wrapper .float-banner {
    top: 100px;
    transform: translate(0, 0);
    right: 10px;
  }
}

@media (max-height: 700px) {
}
/*----NoteBook CSS End----*/

/*----Default Monitor CSS Start----*/
@media (max-height: 1000px) {
}
/*----Default Monitor CSS Start----*/

/*----Wide Monitor CSS Start----*/
@media (min-height: 1400px) {
}
/*----Wide Monitor CSS End----*/
