/* --------Font--------------- */
/* 이사만루 */
@font-face {
    font-family: 'gg';
    src: url('../fonts/ESAMANRU-BOLD.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'gg';
    src: url('../fonts/ESAMANRU-MEDIUM.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'gg';
    src: url('../fonts/ESAMANRU-LIGHT.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
/* montserrat */
@font-face {
    font-family: 'mont';
    src: url('../fonts/Montserrat-ExtraBoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
/* pretendard */
@font-face {
    font-family: 'pre';
    src: url('../fonts/PRETENDARD-MEDIUM.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'pre';
    src: url('../fonts/PRETENDARD-LIGHT.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}



/* -----------Css-variable------ */

:root {
    --light-purple: #F6F4FE;
    --purple: #6A49F2;
    --bg-purple: #6A49F2;
    --dark-purple: #32236F;
    --body-text-purple: #3E3F66;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --slider-dots-color: #D4D2DD;
    --light-bg: #DFDAF3;
}



/* ------Common-Css------------- */

html{scroll-behavior:smooth; min-width: 360px;}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    color: var(--body-text-purple);
    background-color: var(--bg-white);
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--body-text-purple);
}

a:hover {
    text-decoration: none;
    color: var(--body-text-purple);
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1340px;
    }
}

.section_title {
    text-align: center;
}

.guide-title {
	font-size: 22px;
	color: #0d1170;
	font-family: 'gg';
	font-weight: 500;
}

/* section heading h2 */
.section_title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-purple);
}

.section_title h2 span {
    color: var(--purple);
}

.row_am {
    padding: 100px 0;
}

/* purple button */
.puprple_btn {
    background-color: var(--purple);
    color: var(--text-white);
    border-radius: 50px;
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--purple);
}

/* white button */
.white_btn {
    padding: 10px 45px;
    border: 1px solid var(--purple);
    color: var(--purple);
    border-radius: 50px;
    background-color: var(--bg-white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
}

.white_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-purple);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.white_btn:hover::before {
    width: 110%;
}

.white_btn:hover {
    color: var(--text-white);
}

.highlited_block .white_btn:hover {
    border-color: var(--bg-white);
}

/* slider controls */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--slider-dots-color);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: #5fbdff;
}

/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--bg-purple);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--body-text-purple);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-purple);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
}
header .container {
	max-width: 1225px;
}
header.fix_style {
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(106, 73, 242, 0.9);
    padding: 15px 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

header.fixed {
   pointer-events: all;
   opacity: 1;
   transition: .4s all;
}

header.fixed .navbar {
    padding: 0;
}

/* navigation bar */
.navbar {
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 42px;
    font-weight: 300;
    color: var(--text-white);
	font-family: 'gg';
	font-size: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--white);
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--purple);
    background-color: var(--bg-white);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    margin-left: 20px;
    position: relative;
    border: 1px solid var(--bg-purple);
}


.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before, 
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
	animation: pulse-blue-medium-sm 3.5s infinite
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after  {
	animation: pulse-blue-small-sm 3.5s infinite
}

.navbar-brand img {
    width: 150px;
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
    background-color: var(--bg-white);
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
    right: 15px;
    color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background-color: var(--bg-white);
    border-radius: 0 0 10px 10px;
    min-width: 222.7px;
    max-width: 230px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 300;
	font-family: 'gg';
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid var(--purple);
    border-radius: 10px;
    margin-right: 5px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    padding-left: 15px;
    color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
    color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: -1px;
}

/* navigation toggle menu */
.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;
    
    /*disable selection*/
    -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }

  .toggle-bar,
  .toggle-bar::before,
  .toggle-bar::after,
  .toggle-wrap.active .toggle-bar,
  .toggle-wrap.active .toggle-bar::before,
  .toggle-wrap.active .toggle-bar::after {
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      -o-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
  }

  .toggle-bar {
      width: 25px;
      margin: 10px 0;
      position: relative;
      border-top: 4px solid var(--bg-white);
      display: block;
  }

  .toggle-bar::before,
  .toggle-bar::after {
      content: "";
      display: block;
      background: var(--bg-white);
      height: 4px;
      width: 30px;
      position: absolute;
      top: -12px;
      right: 0px;
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -ms-transform-origin: 13%;
      -webkit-transform-origin: 13%;
      transform-origin: 13%;
  }

  .toggle-bar::after {
    top: 4px;
  }

  .toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
  }

  .toggle-wrap.active .toggle-bar::before {
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
  }

  .toggle-wrap.active .toggle-bar::after {
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }


/* ---------Hero-banner-Css-Start------------------ */
/* hero banner wraper */
.banner_section {
    margin-top:0px;
    padding-top:100px;
    position: relative;
    background-image: url(../images/main/main-visual.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;

}

@keyframes AnimateBG { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.banner_section .container {
    position: relative;
	max-width: 1200px;
}

/* wave backgound after banner */
.banner_section::after {
    content: "";
    display: block;
    background-image: url(../images/banner-shape.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 385px;
    background-position: center;
    margin-top: -120px;
}

.banner_section .row {
    align-items: center;
}

/* banner text */
.banner_section .banner_text {
    padding-top: 23px;
	margin-left: -258px;
}
.banner_section .banner_text img {
	margin-top: 69px;
}

/* banner btn */
.banner_section .main-visual-btn {
	color: #fff;
	display: inline-block;
    background: linear-gradient( to right, #b28fdd, #6a49f2 );
    font-size: 28px;
    width: 250px;
	line-height: 70px;
    border-radius: 50px;
    position: relative;
	text-align: center;
	/*
    width: 300px;
	margin-top: 60px;
	margin-left: -14px;
	*/
	margin-top: 30px;
	margin-bottom: 10px; 
	margin-left: -14px;
	margin-right: 25px; 
	font-family: 'gg';
	font-weight: 500;
}
.banner_section .main-visual-btn:last-child {
	background: #fff; 
	color: #585cdf; 
}

.banner_section .main-visual-btn::before, 
.banner_section .main-visual-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}
.banner_section .main-visual-btn::after {
	animation: pulse-blue-small-sm 3.5s infinite;
}
.banner_section .main-visual-btn::before {
    animation: pulse-blue-medium-sm 3.5s infinite;
}

/* hero banner list */
.banner_section .app_btn li a {
    display: block;
    padding: 12px 30px;
    background-color: var(--bg-white);
    border: 2px solid var(--purple);
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

.banner_section .app_btn li:last-child {
    margin-left: 25px;
}

.banner_section .app_btn li a img {
    transition: .4s all;
}

.banner_section .app_btn li a .white_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.banner_section .app_btn li a:hover {
    background-color: var(--purple);
    border: 2px solid var(--bg-white);
}

.banner_section .app_btn li a:hover .blue_img {
    opacity: 0;
}

.banner_section .app_btn li a:hover .white_img {
    opacity: 1;
}

/* hero banner images */
.banner_section .banner_img_wrap {
    position: absolute;
    top: -60px;
    right: -122px;
}
.banner_section .banner_image {
    position: relative;
}

.banner_section .banner_image img {
    max-width: 100%;
}

/* how it works video  */
.yt_video {
    max-width: 1170px;
    margin: 0 auto;
    position: absolute;
    /*overflow: hidden;*/
    left: 53%;
    top: 57%;
    transform: translate(-50%, -50%);

}

/* how it works video animation line  */
.yt_video .anim_line {
    z-index: 999;
}

.yt_video .thumbnil {
    /*width: 150px;*/
    height: 150px;
}

.yt_video .thumbnil img {
    max-width: 100%;
}

.yt_video .thumbnil a {
    /*position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
    text-align: center;
    color: var(--text-white);
    font-weight: 600;
    z-index: 999;
    cursor: pointer;
}

.yt_video .thumbnil a span {
    display: block;
    font-weight: 700;
    font-size: 30px;
}

.yt_video .thumbnil a .play_btn {
    background-color: rgba(255, 255, 255, 0.1);
    width: 96px;
    height: 96px;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    line-height: 96px;
    position: relative;
    display: block;
}

.yt_video .thumbnil a .play_btn img {
    width: 50px;
    position: relative;
    z-index: 999;
}

/* how it works video model   */
.modal {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 99999;
    opacity: .7;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1240px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#close-video {
    color: #fff;
    font-size: 30px;
}


/* hero banner control dots */
.banner_section .owl-dots {
    margin-top: 40px;
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}




/* ------------참가방법----------- */
.trusted_section .section_title h2 {
	font-family: 'mont';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 55px;
	color: #0d1170;
	line-height: 1.08;
    display: inline-block;
    position: relative;
    margin-bottom: 60px;
}
.trusted_section .section_title h2 b {
	color: #6a49f2;
}
.trusted_section .section_title h2:before {
	content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -369px;
    background: url('../images/main/tit-effect3.png') center no-repeat;
    width: 738px;
    height: 39px;
    display: block;
    z-index: -1;
}
.trusted_section .apply-box {
	text-align: center;
}
.trusted_section .apply-box .text {
	margin-top: 20px;
}
.trusted_section .apply-box .text h3 {
	font-size: 26px;
	font-weight: 500;
	font-family: 'gg';
	letter-spacing: -0.025em;
	color: #0d1170;
	margin-bottom: 15px;
}
.trusted_section .apply-box .text p {
	font-family: 'pre';
	font-weight: 500;
	letter-spacing: -0.025em;
	color: #222;
	font-size: 20px;
	line-height: 1.6;
}


/* -----------------대회요강------------------ */
.about_app_section {
	background-image: url('../images/main/section1-bg.png');
	background-repeat: no-repeat;
	background-position: bottom;
    background-color:  #fff;
    padding: 100px 0 90px 0;
}

.about_app_section .about_img {
    display: flex;
    align-items: center;
    position: relative;
}

/* about us section images*/
.about_app_section .about_img img {
    max-width: 100%;
}

.about_app_section .about_img .frame_img {
	margin-left: 50px;
}

.about_app_section .about_img .screen_img {
    position: absolute;
	left: 0;
}

.about_app_section .about_text .section_title {
    text-align: left;
}

.about_app_section .about_text .section_title h2 {
	font-size: 55px;
	font-family: 'mont';
	font-weight: 700;
    margin-bottom: 15px;
	text-transform: uppercase;
	color: #0d1170;
	line-height: 1.08;
	position: relative;
	display: inline;
}
.about_app_section .about_text .section_title h2:before {
	content:'';
	position: absolute;
	top: 13px;
    left: -25%;
	background: url('../images/main/tit-effect1.png') center no-repeat;
	width: 573px;
	height: 100px;
	display:block;
	z-index: -1;
}
.about_app_section .about_text .section_title h2 b {
	color: #6a49f2;
}
.about_app_section .box {
	background-color: #fff;
	padding: 40px 50px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px #EDE9FE;
	margin-top: 40px;
	max-width: 560px;
}
.about_app_section .box li:last-child p {
	margin-bottom: 0;
}
.about_app_section .box li:nth-child(2) p:after {
	content:'';
	display: block;
	position: absolute;
	right: 85px;
    top: 15px;
    width: 244px;
	height: 15px;
	background-color: #efe8f8;
	z-index: -1;
}
.about_app_section .box li p {
	font-family: 'pre';
	font-weight: 500;
	font-size: 19px;
	color: #222;
	letter-spacing: -0.025em;
	position: relative;
}
.about_app_section .box li p b {
	font-family: 'gg';
	font-size: 20px;
	color: #0d1170;
	font-weight: 500;
	margin-left: 12px;
}
.about_app_section .box li p b:after {
	content:'';
	display: inline-block;
	width: 1px;
	height: 15px;
	background-color: #ddd;
	margin: 5px 13px 0;
}
.about_app_section .box li p .point {
	color: #6a49f2;
	font-weight: 500;
}


/* -------------기념품------------------ */
.how_it_works {
    background-color:  var(--light-purple);
    padding: 100px 0 100px 0;
}
.how_it_works .container {
    max-width: 1370px;
}

.how_it_works .how_it_inner {
    background: linear-gradient( to right, #a989e0, #6a49f2 );
    padding: 60px 0;
    border-radius: 30px;
    box-shadow: 0px 4px 30px #EDE9FE;
	position: relative;
	overflow: hidden;
}

/* section heading h2 */
.how_it_works .section_title .guide-title {
	color: #fff;
}
.how_it_works .section_title h2 {
	font-size: 55px;
    font-family: 'mont';
    font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.08;
	display: inline-block;
	position: relative;
	margin-bottom: 60px;
}
.how_it_works .section_title h2:before {
	content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -278.5px;
    background: url('../images/main/tit-effect2.png') center no-repeat;
	width: 557px;
    height: 41px;
    display: block;
    z-index: -1;
}

/* how it works list */

.how_it_works .step_block {
    max-width: 1170px;
    margin: 0 auto;
	padding: 10px 10px 0 10px;
    /*display: flex;*/
    position: relative;
}

.how_it_works .step_block .step_box {
    text-align: center;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* how it works image */
.how_it_works .step_block .step_box .step_img {
    display: inline-block;
    /*max-width: 100%;*/
    text-align: center;
    border-radius: 200px;
    background-color: var(--bg-white);
    width: 200px;
    height: 200px;
    position: relative;
    box-shadow: 0px 0px 20px #fff;
}
.how_it_works .step_block .step_box .step_img:before {
	content:'';
	display: block;
	background-color: rgba(255,255,255,.15);
	width: 237px;
	height: 237px;
	border-radius: 237px;
	z-index: -1;
	position: absolute;
    top: -18.5px;
    left: -18.5px;
}
.how_it_works .step_block .step_box.two .step_img {
	width:288px;
	height: 288px;
}
.how_it_works .step_block .step_box.two .step_img:before {
	content:'';
	display: block;
	background-color: rgba(255,255,255,.15);
	width: 336px;
	height: 336px;
	border-radius: 336px;
	z-index: -1;
	position: absolute;
    top: -24px;
    left: -24px;
}

.how_it_works .step_block .step_box .step_img img {
    max-width: 100%;
    text-align: center;
	padding: 40px 0;
}
.how_it_works .step_block .step_box.two .step_img img {
	padding: 0;
	margin-top: -25px;
}

/* how it works heading h4 */
.how_it_works .step_block .step_box .step_text h4 {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-white);
	font-family: 'gg';
}
.how_it_works .step_block .step_box .step_text h4:before {
	content: '';
	display: block;
	width: 25px;
	height: 2px;
	margin: 20px auto;
	background-color: #fff;
}
.how_it_works .step_block .step_box.two .step_text h4 {
	margin-bottom: 0;
}
.how_it_works .step_block .step_box.two .step_text h4:before {
	content: none;
}
.how_it_works .step_block .step_box.two .step_text {
	padding: 50px 30px 0 30px;
}

.how_it_works .step_block .step_box .step_text p {
    color: var(--text-white);
}

.how_it_works .step_block .step_box .step_text.step2 p {
    padding:20px 0 0 0;
    
}

.how_it_works .step_block .step_box .step_text.step3 p {
    padding:20px 0 0 0;
}

.how_it_works .step_block .step_box .step_text .app_icon {
    margin-bottom: 10px;
}

.how_it_works .step_block .step_box .step_text .app_icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--bg-white);
    color: var(--purple);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    transition: .4s all;
    text-decoration: none;
}

.how_it_works .step_block .step_box .step_text .app_icon a:hover {
    background-color: var(--purple);
    border: var(--bg-white) solid 1px;
    color: var(--text-white);
}

.how_it_works .step_block .step_box .step_text  {
    text-align: center;
    padding: 27px 30px 0 30px;
}

.how_it_works .step_block .step_box .step_text span {
    font-weight: 600;
    color: var(--text-white);
}

.how_it_works .step_block .step_box .step_text a {
    color: var(--purple);
    text-decoration: underline;
}


/* how it works numbers */
.how_it_works .step_block .step_box .step_number {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px var(--purple);
    border-radius: 100px;
    padding: 9px 0 0 0;
    top: 15px;
    right: 0;
    background-color: var(--bg-white);
}

/* how it works numbers heading h3 */
.how_it_works .step_block .step_box .step_number h3 {
    font-size: 16px;
    font-weight: normal;
}


/* -------------FAQ----------------- */
.faq_section {
	padding: 100px 0 60px 0;
    background-color:  var(--light-purple);
}
.faq_section .section_title h2 {
	font-family: 'mont';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 55px;
    color: #0d1170;
    line-height: 1.08;
    display: inline-block;
    position: relative;
    margin-bottom: 60px;
}
.faq_section .section_title h2:before {
	content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -414.5px;
    background: url('../images/main/tit-effect4.png') center no-repeat;
    width: 829px;
    height: 49px;
    display: block;
    z-index: -1;
}
.faq_section .section_title h2 b {
	color: #6a49f2;
}

/* faq box */
.faq_section .faq_panel .card {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px #EDE9FE;
	padding: 30px 40px;
}

.faq_section .faq_panel .card:last-child {
    margin-bottom: 0;
}

.faq_section .faq_panel .card-header {
    background-color: transparent;
    border: none;
	padding: 0;
}

.faq_section .faq_panel .card-header .btn {
    padding: 0;
    color: #0d1170;
    font-weight: 500;
    font-size: 22px;
	letter-spacing: -0.025em;
	font-family: 'gg';
}
.faq_section .faq_panel .card-header .btn b {
	color: #6c4cf2;
	font-weight: 500;
}

.faq_panel .accordion button,
.faq_panel .accordion button:hover,
.faq_panel .accordion button:focus {
    text-decoration: none;
}

.faq_section .faq_panel .card-header .icon_faq {
    position: absolute;
    right: 40px;
    color: #839BC0;
	margin-top: 3px;
}
.faq_section .faq_panel .card-header .icofont-minus:before {
	content:'';
	background: url('../images/main/minus.png') center no-repeat;
	width: 22px;
	height: 3px;
	display: block;
}
.faq_section .faq_panel .card-header .icofont-plus:before {
	content:'';
	background: url('../images/main/plus.png') center no-repeat;
	width: 22px;
	height: 23px;
	display: block;
}

/* faq heading h2 */
.faq_section .faq_panel .card-header h2 {
    line-height: 1;
}

/* faq paragraph */
.faq_section .faq_panel .card-body {
    padding: 0;
	margin-top: 20px;
}
.faq_section .faq_panel .card-body p {
	color: #7779ab;
	font-family: 'pre';
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.025em;
	line-height: 1.6;
}
.faq_section .btn-wrap {
	text-align: center;
	margin-top: 50px;
}
.faq_section .faq-btn {
	font-size: 20px;
	font-family: 'gg';
	font-weight: 500;
	color: #6347d6;
	
}
.faq_section .faq-btn b {
	color: #0d1170;
	font-weight: 500;
}


/* -----------코스도------------------ */
.free_app_section {
    position: relative;
	background-color: #3c2e76;
}

.free_app_section .container {
    max-width: 1340px;
}

.free_app_section .container .free_app_inner {
    border-radius: 30px;
    position: relative;
    z-index: 11;
}
.free_app_section .notice {
	margin-bottom: 60px;
}
.free_app_section .notice .guide-title {
	color: #fff;
	margin-bottom: 10px;
}
.free_app_section .notice h2 {
	color: #fff;
	font-size: 50px;
	font-family: 'mont';
	font-weight: 700;
	line-height: 1;
}
.free_app_section .notice h2:before {
	content:'';
	display: block;
	position: absolute;
	right: -13px;
    bottom: 40px;
	width: 34px;
	height: 34px;
	background: url('../images/main/notice-tit.png') center no-repeat;
	z-index: -1;
}
.free_app_section .notice .box {
	background-color: rgba(255,255,255,.05);
	border-radius: 12px;
	padding: 40px 60px;
	margin-left: 60px;
}
.free_app_section .notice .box div {
	padding: 0;
}
.free_app_section .notice .box li {
	position: relative;
}
.free_app_section .notice .box li:first-child {
	margin-bottom: 8px;
}
.free_app_section .notice .box li:before {
	content: '';
	width: 8px;
	height: 8px;
	display: inline-block;
	background: url('../images/main/notice-dot.png') center no-repeat;
	margin-right: 12px;
}
.free_app_section .notice .box li a {
	font-size: 18px;
	font-family: 'pre';
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.025em;
}
.free_app_section .notice .box li .date {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 18px;
	font-family: 'pre';
	color: #fff;
	font-weight: 300;
	letter-spacing: -0.025em;
}
.free_app_section .notice .box .more {
	text-align: center;
	background: url('../images/main/more-bg.png') center no-repeat;
	display: block;
	width: 58px;
    height: 58px;
	margin: 0 80px;
	box-shadow: 0 5px 11px rgb(0 0 0 / 15%);
	border-radius: 58px;
}
.free_app_section .course-box {
	width: 100%;
	min-height: 550px;
	height: 100%;
	background: url('../images/main/course1.png') no-repeat center/contain;
	position: relative;
}
.free_app_section .course-box .txt {
	position: absolute;
	top: 50px;
	left: 50px;
}
.free_app_section .course-box .txt h2 {
	font-family: 'mont';
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}
.free_app_section .course-box .txt p {
	color: #fff;
	font-size: 20px;
	font-family: 'gg';
	font-weight: 500;
}
.free_app_section .course-box a {
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 20px;
	font-family: 'gg';
	font-weight: 500;
	color: #fff;
}

/* 5km 코스 */
.free_app_section .course-box2 {
	width: 100%;
	min-height: 550px;
	height: 100%;
	background: url('../images/main/course2.png') no-repeat center/contain;
	position: relative;
}
.free_app_section .course-box2 .txt {
	position: absolute;
	top: 50px;
	left: 50px;
}
.free_app_section .course-box2 .txt h2 {
	font-family: 'mont';
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}
.free_app_section .course-box2 .txt p {
	color: #fff;
	font-size: 20px;
	font-family: 'gg';
	font-weight: 500;
}
.free_app_section .course-box2 a {
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 20px;
	font-family: 'gg';
	font-weight: 500;
	color: #fff;
}


/* download app dark background */
.free_app_section .container .free_app_inner .dark_bg {
    overflow: hidden;
}

.free_app_section .container .free_app_inner .dark_bg span {
    z-index: 9999;
}

.free_app_section .container .free_app_inner .row {
    align-items: center;
}

.free_app_section .container .free_app_inner .free_text .section_title {
    text-align: left;
}

/* download app heading h2 */
.free_app_section .container .free_app_inner .free_text .section_title h2 {
    margin-bottom: 20px;
}

.free_app_section .container .free_app_inner .free_text .section_title h2,
.free_app_section .container .free_app_inner .free_text .section_title p {
    color: var(--text-white);
}

.free_app_section .container .free_app_inner .free_text .app_btn {
    display: flex;
    align-items: center;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a {
    display: block;
    padding: 12px 30px;
    background-color: var(--bg-white);
    border: 2px solid var(--purple);
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a:hover {
    -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
-moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
}

.free_app_section .container .free_app_inner .free_text .app_btn li:last-child {
    margin-left: 25px;
}

.free_app_section .container .free_app_inner .free_img {
    display: flex;
    align-items: center;
    margin-top: -120px;
}

.free_app_section .container .free_app_inner .free_img img:last-child {
    margin-left: -65px;
}

.purple_backdrop {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(50, 35, 111, 0.95);
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    transition: .4s all;
    pointer-events: none;
}


/* -------------퀵참가신청------------- */
.newsletter_section {
    background-color:  var(--light-purple);
}
.newsletter_box {
    background-image: url('../images/main/apply-box-bg.png');
	background-size: cover;
	padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 10px #0c0c0c21;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -95px;
    position: relative;
    z-index: 99;
}

.newsletter_box .section_title {
    width: 75%;
}

.newsletter_box .quick-apply {
    width: 25%;
}

/* newsletter heading h2 */
.newsletter_box br {
	display: none;
}
.newsletter_box .section_title h2 {
    font-family: 'mont';
	font-size: 34px;
	font-weight: 700;
}
.newsletter_box .section_title h2 b {
	font-family: 'gg';
	font-style: italic;
	font-size: 30px;
}
.newsletter_box .section_title p {
	font-family: 'pre';
	font-size: 16px;
	letter-spacing: -0.025em;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 0;
}
.newsletter_box .section_title h2,
.newsletter_box .section_title p {
    color: var(--text-white);
    text-align: left;
}
.newsletter_section .quick-apply {
	text-align: right;
}
.newsletter_section .quick-apply a {
	display: inline-block;
	background-color: #fff;
	font-size: 28px;
    width: 300px;
    line-height: 70px;
    border-radius: 50px;
	position: relative;
    text-align: center;
	font-family: 'gg';
    font-weight: 500;
	color: #6c4cf2;
}
.newsletter_section .quick-apply a::before, 
.newsletter_section .quick-apply a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}
.newsletter_section .quick-apply a::after {
	animation: pulse-blue-small-sm 3.5s infinite;
}
.newsletter_section .quick-apply a::before {
    animation: pulse-blue-medium-sm 3.5s infinite;
}



/* --------------푸터-------------- */
footer {
    position: relative;
}

footer .top_footer {
    background-color: #0c0d30;
    padding: 150px 0 60px 0;
    position: relative;
    overflow: hidden;
}

/* footer logo */
footer .logo {
	margin-right: 40px;
	display: inline-block;
}
footer .logo img {
	width: 160px
}
footer p {
	color: #8486ad;
	font-family: 'pre';
	font-size: 15px;
	font-weight: 300;
	letter-spacing: -0.025em;
	line-height: 1.6;
	display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
}
footer p .space {
	display: inline-block;
	width: 15px;
}
footer .privacy {
	text-align: right;
}
footer .privacy a {
	color: #fff;
	font-family: 'pre';
	font-size: 15px;
	font-weight: 300;
	letter-spacing: -0.025em;
}

/* footer go top button */
.go_top {
    position: fixed;
    right: 30px;
    bottom: 75px;
    cursor: pointer;
    transition: .4s all;
    opacity: 0;
}

.go_top:hover {
    bottom: 80px;
}

/* -----------Animation-------------- */
.anim_line {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.anim_line span {
    position: absolute;
    z-index: 99999;
    top: -275px;
    animation: star_down_one 6s infinite linear;
    opacity: 0;
}

.anim_line.dark_bg {
    max-width: 1170px;
}

.anim_line.dark_bg span {
    transform: rotate(180deg);
}

.anim_line span:first-child {
    left: -17%;
    animation-delay: 3s;
}

.anim_line span:nth-child(2) {
    left: 0%;
    animation-delay: 5s;
}

.anim_line span:nth-child(3) {
    left: 17%;
    animation-delay: 1s;
}

.anim_line span:nth-child(4) {
    left: 34%;
    animation-delay: 4s;
}

.anim_line span:nth-child(5) {
    left: 51%;
    animation-delay: 7s;
}

.anim_line span:nth-child(6) {
    left: 68%;
}

.anim_line span:nth-child(7) {
    left: 85%;
    animation-delay: 3s;
}

.anim_line span:nth-child(8) {
    left: 99%;
    animation-delay: 2s;
}

.anim_line span:nth-child(9) {
    left: 117%;
    animation-delay: 5s;
}

/* footer .top_footer .anim_line span:first-child {
    left: 5%;
}

footer .top_footer .anim_line span:nth-child(2) {
    left: 13%;
} */

@keyframes star_down_one {
    0% {
        opacity: 0;
        top: -250px;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}


/* --------Object-Moving-Animation----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}

.about_app_section .about_img .screen_img img {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(3) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(2) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(1) {
    animation-delay: 3s;
}

@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}


/* ------------Waves-Animation---------------- */
.waves-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 150px;
    height: 150px;
}

.waves {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    position: absolute;
    top: 0;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    position: absolute;
    top: 0;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}



/*------Header Btn Animation------*/
@keyframes pulse-blue-small-sm {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}

	100%,
	30% {
		box-shadow: 0 0 0 12px transparent
	}
}

@keyframes pulse-blue-medium-sm {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	100%,
	30% {
		box-shadow: 0 0 0 20px transparent
	}
}


/* 서브비주얼 */
.bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { 
    position: absolute; }

.bred_crumb .banner_shape1 {
    top: 200px;
    left: 15%;
    animation: mymove 10s infinite;
}

.bred_crumb .banner_shape2 {
    top: 100px;
    right: 10%;
    animation: mymove 5s infinite;
}

.bred_crumb .banner_shape3 {
    top: 350px;
    right: 20%;
    animation: mymove 3s infinite;
}

.body_color{
  background-color: var(--light-purple);
}


/* CTA section Shape animation */
.query_section .banner_shape1, .banner_shape2, .banner_shape3 { 
    position: absolute; }

.query_section .banner_shape1 {
    top: 200px;
    left: 15%;
    animation: mymove 10s infinite;
}

.query_section .banner_shape2 {
    top: 100px;
    right: 10%;
    animation: mymove 5s infinite;
}

.query_section .banner_shape3 {
    top: 350px;
    right: 20%;
    animation: mymove 3s infinite;
}


@keyframes mymove {
  50% {transform: rotate(180deg);}
}


/* Pagination Css Start */
.pagination_block ul {display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.pagination_block ul li:not(:first-child , :last-child) a {margin: 0 5px;
    transition: .4s all;
    display: block;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50px;
    text-align: center;
    line-height: 35px;
}

.pagination_block ul li:first-child {
    margin-right: 20px;
}

.pagination_block ul li:last-child {
    margin-left: 20px;
}

.pagination_block ul li:not(:first-child , :last-child) a:hover , .pagination_block ul li:not(:first-child , :last-child) a.active {
    background-color: var(--bg-purple);
    color: var(--text-white);
}

.pagination_block ul li:first-child a:hover {
    color: var(--purple);
}

.pagination_block ul li:last-child  a:hover {
    color: var(--purple);
}


/* custom media */
@media all and (max-width: 1200px) {
	/* header */
	.navbar-expand-lg .navbar-nav a.nav-link {
		font-size: 18px;
		padding: 5px 18px;
	}
	/* main-visual */
	.banner_section::after {
		height: 247px;
	}
	.banner_section .banner_image img {
		max-width: 90%;
	}
	/* 코스도 */
	.free_app_section .notice .box li a {
		font-size: 16px;
	}
	/* 퀵참가신청 */
	.newsletter_box .section_title h2 {
		font-size: 30px;
	}
}
@media all and (max-width: 1199px) {
	/* 메인비주얼 */
	.banner_section::after {
		height: 31.25vw;
	}
	.banner_section .banner_text {
		margin-left: -10.4492vw;
	}
	.banner_section .banner_text img {
		max-width: 126%;
	}
	.banner_section .main-visual-btn {
		font-size: 20px;
		width: 200px;
		line-height: 50px;
		margin-left: 8.3984vw;
	}
	.banner_section .banner_img_wrap {
		right: -26.8828vw;
	}
	.banner_section .banner_image img {
		max-width: 70%;
	}
	/* 대회요강 */
	.about_app_section .about_img .frame_img {
		margin-left: 0;
	}
	.about_app_section .box {
		padding: 30px;
	}
	.about_app_section .box li:nth-child(2) p:after {
		content: none;
	}
	.about_app_section .box li p {
		font-size: 16px;
	}
	.about_app_section .box li p b {
		font-size: 18px;
	}
	/* 기념품 */
	.how_it_works .step_block .step_box .step_text h4 {
		font-size: 24px;
	}
	/* 참가방법 */
	.trusted_section .apply-box img {
		width: 100%;
	}
	.trusted_section .apply-box .text h3 {
		font-size: 24px;
	}
	.trusted_section .apply-box .text p {
		font-size: 16px;
	}
	/* 코스도 */
	.free_app_section .notice {
		margin-bottom: 40px;
	}
	.free_app_section .notice h2 {
		font-size: 44px;
	}
	.free_app_section .notice h2:before {
		content: none;
	}
	.free_app_section .notice .box {
		padding: 40px 15px 40px 50px;
	}	
	.free_app_section .notice .box li a {
		font-size: 14px;
	}
	.free_app_section .notice .box li .date {
		font-size: 11px;
	}
	.free_app_section .notice .box .more {
		margin: 0 auto;
	}
	.free_app_section .course-box {
		border-radius: 20px;
		background-size: cover;
		min-height: 53.7109vh;
	}
	.free_app_section .course-box a {
		font-size: 18px;
	}

	.free_app_section .course-box2 {
		border-radius: 20px;
		background-size: cover;
		min-height: 53.7109vh;
	}

	/* 퀵참가신청 */
	.newsletter_box .section_title {
		width: 70%;
	}
	.newsletter_box .quick-apply {
		width: 30%;
	}
	.newsletter_section .quick-apply a {
		font-size: 20px;
		width: 200px;
		line-height: 50px;
	}
}
@media all and (max-width: 992px) {
	/* 공통 */
	.guide-title {
		font-size: 18px;
	}
	.section_title h2:before {
		content: none !important;
	}
	/* 헤더 */
	.navbar-collapse {
		backdrop-filter: blur(5px);
		background-color: rgba(106, 73, 242, 0.9);
		border-radius: 12px;
	}
	.navbar-expand-lg .navbar-nav a.nav-link {
		font-size: 15px;
	}
	.navbar-expand-lg .navbar-nav {
		background: none;
	}
	.nav-item {
		display: contents;
	}
	.navbar-expand-lg .navbar-nav a.nav-link {
		display: inline-block;
	}
	.navbar-expand-lg .navbar-nav .has_dropdown {
		display: contents;
	}
	.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
		padding: 0;
	}
	/* 메인비주얼 */
	.banner_section::after {
		background-image: url(../images/banner-shape.png); 
	}
	.banner_section .banner_img_wrap {
		right: -16.8828vw;
	}
	.banner_section .banner_image {
		margin-top: 0;
	}
	/* 대회요강 */
	.about_app_section .row {
		flex-direction: column;
	}
	.about_app_section .col-lg-6 {
		max-width: 100%;
		flex: 0 0 100%;
	}
	.about_app_section .about_img {
		margin-top: 0;
	}
	.about_app_section .about_text .section_title {
		text-align: center;
		margin-bottom: 30px;
	}
	.about_app_section .about_img .frame_img {
		margin: 0 auto;
	}
	.about_app_section .about_img .screen_img {
		left: 50%;
		margin-left: -310px;
	}
	.about_app_section .box {
		margin: 0 auto;
		max-width: 100%;
		width: 100%;
	}
	/* 기념품 */
	.how_it_works .step_block .step_box .step_text h4 {
		font-size: 21px;
	}
	.how_it_works .step_block .step_box.two .step_text h4:before {
		content: '';
		display: block;
		width: 25px;
		height: 2px;
		margin: 20px auto;
		background-color: #fff;
	}
	.how_it_works .step_block .step_box.two .step_img {
		width: 200px;
		height: 200px;
	}
	.how_it_works .step_block .step_box.two .step_img:before {
		    content: '';
		display: block;
		background-color: rgba(255,255,255,.15);
		width: 237px;
		height: 237px;
		border-radius: 336px;
		z-index: -1;
		position: absolute;
		top: -18.5px;
		left: -18.5px;
	}
	.how_it_works .step_block .step_box.two .step_img img {
		margin-top: 19px;
		max-width: 47%;
	}
	.how_it_works .step_block .step_box.two .step_text {
		padding: 27px 30px 0 30px;
	}
	/* 코스도 */
	.free_app_section .notice .box li .date {
		display: none;
	}
	/* 퀵참가신청 */
	.newsletter_box br {
		display: block;
	}
	.newsletter_box {
		padding: 40px 0px;
		background: linear-gradient( to right, #a989e0, #6a49f2 );
	}
	.newsletter_box .section_title h2,
	.newsletter_box .section_title p {
		text-align: center;
	}
	/* 푸터 */
	footer .logo,
	footer p,
	footer .privacy {
		display: block;
		text-align: center;
	}
}
@media all and (max-width: 768px) {
	/* 메인비주얼 */
	.banner_section::after {
		height: 35.25vw;
	}
	.banner_section .banner_text {
		margin-left: -26.4492vw;
	}
	.banner_section .banner_text img {
		max-width: fit-content;
	}
	.banner_section .main-visual-btn {
		margin-left: 5.3984vw;
		margin-top: 6vw;
	}
	.banner_section .banner_img_wrap {
		display: none;
	}
	/* 코스도 */
	.free_app_section .notice h2 {
		font-size: 40px;
	}
}
@media all and (max-width: 440px) {
	/* 공통 */
	.row_am {
		padding: 40px 0;
	}
	.guide-title {
		font-size: 12px;
		margin-bottom: 5px;
	}
	.section_title h2 {
		font-size: 30px !important;
		line-height: 1 !important;
		margin-bottom: 20px !important;
	}
	/* 헤더 */
	.navbar {
		padding-top: 20px;
	}
	.toggle-wrap {
		padding: 20px 0 20px 0;
	}
	/* 메인비주얼 */
	.banner_section::after {
		height: 50vw;
	}
	.banner_section .col-md-6 {
		padding: 60px 0 90px;
	}
	.banner_section .banner_text {
		margin-left: -22.4492vw;
	}
	.banner_section .banner_text img {
		margin-top: 0;
		max-width: 120%;
	}
	.banner_section .main-visual-btn {
		margin: 20px auto;
		font-size: 18px;
	}
	/* 대회요강 */
	.about_app_section .about_img .frame_img {
		width: 85%;
	}
	.about_app_section .about_img .screen_img {
		margin-left: -5px;
		left: 0;
	}
	.about_app_section .about_text .section_title {
		margin-bottom: 20px;
	}
	.about_app_section .box li p {
		text-align: left;
		font-size: 12px;
		margin-bottom: 10px;
	}
	.about_app_section .box li p b {
		font-size: 12px;
		margin-left: 4px;
	}
	.about_app_section .box li p b:after {
		height: 10px;
		margin: 5px 7px 0;
	}
	.about_app_section .box li p img {
		width: 13px;
	}
	/* 기념품 */
	.how_it_works .how_it_inner {
		padding: 30px 0 0 0;
	}
	.how_it_works .step_block .step_box .step_text h4 {
		font-size: 15px;
	}
	.how_it_works .step_block .step_box .step_text h4:before,
	.how_it_works .step_block .step_box.two .step_text h4:before {
		margin: 10px auto;
	}
	.how_it_works .step_block .step_box:last-child {
	}
	/* 참가방법 */
	.trusted_section .col-md-6 {
		width: calc(100% / 2);
	}
	.trusted_section .apply-box .text {
		margin-top: 10px;
	}
	.trusted_section .apply-box .text h3 {
		font-size: 15px;
		margin-bottom: 5px;
	}
	.trusted_section .apply-box .text p {
		font-size: 11px;
	}
	/* 코스도 */
	.free_app_section .container .free_app_inner {
		padding: 0;
	}
	.free_app_section .notice {
		margin-bottom: 15px;
	}
	.free_app_section .notice .guide-title {
		margin-bottom: 5px;
	}
	.free_app_section .notice h2 {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.free_app_section .notice .box {
		margin-left: 0;
		padding: 30px 42px;
	}
	.free_app_section .notice .box li {
		text-align: left;
		text-indent: -13px;
		margin-left: 13px;
	}
	.free_app_section .notice .box li:before {
		margin-right: 1px;
	}
	.free_app_section .notice .box .more {
		width: 40px;
		height: 40px;
		background-size: contain;
		margin: 10px auto 0;
	}
	.free_app_section .course-box {
		min-height: 300px;
	}
	.free_app_section .course-box .txt {
		position: relative;
		top: auto;
		left: auto;
		text-align: center;
		padding-top: 25px;
	}
	.free_app_section .course-box .txt h2 {
		font-size: 26px;
		margin-bottom: 0;
	}
	.free_app_section .course-box .txt p {
		font-size: 12px;
	}
	.free_app_section .course-box a {
		font-size: 15px;
		top: auto;
		right: auto;
		bottom: 20px;
		left: 50%;
		margin-left: -42.5px;
	}
	/* faq */
	.faq_section {
		padding: 40px 0 30px;
	}
	.faq_section .faq_panel .card {
		padding: 30px 20px;
		margin-bottom: 10px;
	 }
	.faq_section .faq_panel .card-header .btn {
		font-size: 18px;
	}
	.faq_section .faq_panel .card-body p {
		font-size: 12px;
	}
	.faq_section .faq_panel .card-header .icofont-plus:before,
	.faq_section .faq_panel .card-header .icofont-minus:before {
		content: none;
	}
	.faq_section .btn-wrap {
		margin-top: 30px;
	}
	.faq_section .faq-btn {
		font-size: 16px;
	}
	/* 퀵참가신청 */
	.newsletter_box .section_title h2,
	.newsletter_box .section_title h2 b {
		font-size: 20px !important;
	}
	.newsletter_box .section_title p {
		font-size: 12px;
	}
	.newsletter_box .quick-apply {
		width: 100%;
		text-align: center;
	}
	.newsletter_section .quick-apply a {
		font-size: 18px;
		margin-top: 10px;
	}
	/* 푸터 */
	footer .logo {
		margin-right: 0;
	}
	footer .logo img {
		width: 120px;
	}
	footer p,
	footer .privacy a {
		font-size: 12px;
	}
}

/* 참가신청, 참가확인 */

.sub { padding: 15px; }
.sub_intro { padding-top: 5px; }
