@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

.main_content {
	width:100%;
}

.main_content1 {
	max-width:1400px; 
	min-width:1400px; 
	height:454px; 
	margin:auto;
	display: flex;
	margin-top: 48px;
}

.cate_menu1 {
	flex: 1.5;
	border: solid 1px #e3e3e3;
	border-radius: 10px;
}

.cate_menu1 > div:first-child {
	display: flex;
 	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 37px;
    background-color: #4286f4;
}

.cate_menu1 > div:first-child > div:first-child {
	margin:auto 0px;
	margin-left:10px;
	margin-top:12px;
}

.cate_menu1 > div:first-child > div:nth-child(2) {
	font-size: 1rem;
	margin-left:5px;
	display: flex;
    font-family: 'Pretendard-Regular';
}

.cate_menu1 > div:first-child > div:first-child span {
	display: block;
  	width: 14px;
  	height: 2px;
  	margin-bottom: 3px;
  	position: relative;
  	background: white;
  	border-radius: 3px;
  	margin-left: 10px;
}

.cate_menu1 > div:first-child > div:nth-child(2) span {
	margin: auto 0px;
	font-weight: bold;
	color: white;
	margin-left: 6px;
    font-family: 'Pretendard-Regular';
}

.cate_menu1 > div:nth-child(2) ul {
	margin-top: 16px;
	position: relative;
}

.cate_menu1 > div:nth-child(2) li {
	display: flex;
	font-size: 1rem;
	cursor: pointer;
    font-family: 'Pretendard-Regular';
}

.cate_menu1 > div:nth-child(2) img {
	width: 24px;
	height: 24px;
	margin: auto 0px;
	margin-left: 20px;
}

.cate_menu1 > div:nth-child(2) a {
	margin: auto 0px;
	margin-left: 15px;
	width: 100%;
	padding: 6px 0px;
}

.cate_menu1 > div:nth-child(2) a:hover {
	text-decoration: underline;
	color: #4286f4;
    font-family: 'Pretendard-Regular';
}

.cate_detail {
	opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    width: 880px;
    height: 454px;
    top: -54px;
    left: 205px;
    z-index: 10;
    cursor: default;
   	box-shadow: 1px 1px 4px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: 'Pretendard-Regular';
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    box-sizing: border-box;
    padding-bottom: 40px;
}

.cate_detail::-webkit-scrollbar {
    width: 10px;
}

.cate_detail::-webkit-scrollbar-thumb {
    background-color: #c2c2c2;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.cate_detail::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}

.cate_detail h3 {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    margin-top: 20px;
}

.cate_items {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
}

.cate_items span {
    flex: 1 1 22%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.cate_items span:hover {
    color: #4286f4;
    transition: 0.3s;
}

.cate_menu1 > div:nth-child(2) li:hover .cate_detail {
    opacity: 1;
    visibility: visible;
	transition: opacity 0.3s, visibility 0.3s;
}

.main_banner {
	flex:6;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 8px;
}

.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
}

.banner.active {
    opacity: 1;
    pointer-events: auto;
}

.controls-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lefty,
.righty {
    cursor: pointer;
    background: grey;
	width: 28px;
	height: 28px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    color: white;
    font-family: 'Pretendard-Regular';
}

.banner_count {
    background: grey;
    opacity: 0.8;
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    font-family: 'Pretendard-Regular';
}

.register_area {
	flex:2.5;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.register_area_top {
	flex: 7;
	border: solid 1px #e3e3e3;
	border-radius: 10px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.register_area_top div {
	margin: 5px 0px;
}

.register_area_top > div:first-child {
	margin-bottom: 10px;
}

.register_area_top > div:nth-child(3) {
	margin-bottom: 10px;
}

.register_area_top button {
	width: 300px;
	padding: 16px 16px 16px 15px;
  	border-radius: 8px;
  	background-color: #575757;
  	border: none;
  	font-size: 1.1rem;
  	color: white;
    font-family: 'Pretendard-Regular';
    font-weight: bold;
}

.register_area_top button:hover {
    background-color: #2f2f2f;
    transition: 0.3s;
}

.register_area_top img {
	width: 300px;
	height: 60px;
}

.register_area_top ul {
	display: flex;
}

.register_area_top li a {
	margin: auto;
	padding: 0px 18px;
    font-family: 'Pretendard-Regular';
}

.register_area_top li:first-child a{
    font-family: 'Pretendard-Regular';
}

.register_area_top li:nth-child(2) a{
	border-left: 1px solid black;
    font-family: 'Pretendard-Regular';
}

.register_area_bottom {
    display: flex;
    text-align: center;
    font-family: 'Pretendard-Regular';
}

.register_area_bottom a {
    flex: 1;
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    border: solid 1px #e3e3e3;
    border-radius: 10px;
    margin-top: 8px;
    margin-right: 4px;
    transition: background-size 0.3s ease;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 150px;
    position: relative;
    padding: 20px;
}

.register_area_bottom > a:first-child {
    background-image: url('../../new_asset/purchase_icon.png');
    background-size: 100%; /* 기본 이미지 크기 줄임 */
    background-position: center 30%;
    background-color: #648eff;
}

.register_area_bottom > a:first-child:hover {
    background-size: 110%; /* 호버 시 이미지 약간 커짐 */
    background-color: #9ab5ff;
    transition: 0.3s;
}

.register_area_bottom > a:nth-child(2) {
    background-image: url('../../new_asset/transport_icon.png');
    background-size: 110%;
    background-position: center 20%;
    margin-right: 0;
    background-color: #7b7b7b;
}

.register_area_bottom > a:nth-child(2):hover {
    background-size: 120%;
    background-color: #cdcdcd;
    transition: 0.3s;
}

.register_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.register_item span {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: block;
    text-align: center;
    font-family: 'Pretendard-Regular';
    color: #fff;
}


.user_area {
    flex: 7;
    border: solid 1px #e3e3e3;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    font-size: 0.9rem;
}

.user_area.enter {
    background-color: #f3f8fd;
}

.user_area div {
    margin: 2px 20px;
    font-family: 'Pretendard-Regular';
}

.user_area > div:first-child {
    margin-bottom: 5px;
    font-size: 1rem;
    display: flex;
    font-family: 'Pretendard-Regular';
}

.user_area > div:first-child > img {
    width: 30px;
    margin: auto 0px;
    margin-top: -5px;
}

.user_area > div:first-child > a {
    color: rgb(87, 158, 239);
    margin-left: 5px;
    max-width: 160px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: 'Pretendard-Regular';
}

.user_area > div:nth-child(3) > span {
    color: rgb(87, 158, 239);
    font-family: 'Pretendard-Regular';
}

.user_area_count {
    display: flex;
}

.user_area_count ul {
    margin: 20px auto;
    display: flex;
}

.user_area_count li {
    margin: auto 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    background-color: #ebebeb;
    border-radius: 5px;
}

.user_area_count.enter li {
    background-color: #fff;
    border: 1px solid #ccc;
}

.user_area_count li > div {
    margin: 5px auto;
    font-family: 'Pretendard-Regular';
}

.user_area_count li > div:nth-child(2) > a {
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.user_area_logout {
    display: flex;
    margin-top: 5px;
}

.user_area_logout li {
    margin: auto
}

.user_area_logout li a {
    margin: auto;
    padding: 0px 18px;
    font-family: 'Pretendard-Regular';
}

.main_content2 {
	max-width:1400px; 
	min-width:1400px; 
	height:	117px; 
	margin:	auto;
	margin-top:	48px;
	border-radius: 10px;
  	background-color: #f2f7ff;
  	display: flex;
}

.main_search {
	flex: 6.5;
    display: flex;
}

.search_form_word {
    margin: auto 0px;
    margin-left: 30px;
    width: 640px;
    height: 58px;
    padding: 5px 24px;
    border-radius: 36px;
    background-color: #fff;
    display: flex;
}
.search_icon1 {
    width: 60px;
}
.search_input {
    width: 480px;
    padding: 0px 20px;
    border: none;
    font-size: 1rem;
    font-family: 'Pretendard-Regular';
}
.search_icon2 {
    width: 40px;
    cursor: pointer;
}
.search_icon3 {
    width: 40px;
}
.search_form_img {
    margin: auto 16px;
    width: 200px;
    height: 58px;
    padding: 5px 24px;
    border-radius: 36px;
    background-color: #fff;
    display: flex;
    cursor: pointer;
}
.search_form_img span {
    margin: auto;
    font-family: 'Pretendard-Regular';
    font-weight: bold;
}

.main_keyword {
	flex: 3;
    display: flex;
}

.keyword_title {
	margin: auto 0px;
	font-weight: bold;
	padding-right: 12px;
    font-family: 'Pretendard-Regular';
}

.keyword_title span {
	color: red;
}

.hot_keyword {
    position: relative;
    display: inline-block;
    height: 40px;
    margin: auto 0px;
}

.hot_keyword:hover .keyword_wrap_detail {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s, visibility 0.2s;
}

.keyword_wrap {
    width: 240px;
    height: 38px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 18px;
}

.keyword_list {
    padding: 0;
    position: relative;
    margin: auto;
}

.keyword_unit {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
    padding: 2px 16px;
}

.keyword_unit div {
    margin: auto;
    padding: 5px 5px;
}

.keyword_unit > div:first-child {
    padding-left: 10px;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.keyword_unit > div:nth-child(2) {
    width: 120px;
    padding-left: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: 'Pretendard-Regular';
}

.keyword_icon {
	color: #3aff43;
}

.keyword_wrap_detail {
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0px;
    width: 240px;
    z-index: 10;
    border-radius: 18px;
    background-color: #fff;
    box-shadow: 1px 1px 4px 4px rgba(0, 0, 0, 0.1);
}

.keyword_list_detail {
    margin: auto;
}
.keyword_unit_detail {
    display: flex;
    padding: 2px 2px;
    margin-left: -28px;
    
}
.keyword_unit_detail div {
    margin: auto;
    padding: 5px 5px;
}

.keyword_unit_detail > div:first-child {
    font-weight: bold;
    width: 40px;
    text-align: center;
    font-family: 'Pretendard-Regular';
}

.keyword_unit_detail > div:nth-child(2) {
    width: 120px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: -4px;
    font-family: 'Pretendard-Regular';
}
.keyword_unit_detail > div:nth-child(3) {
	width: 40px
}

.main_content3 {
    width: 1400px;
    overflow: hidden;
    position: relative;
    margin: 60px auto;
}

.hot_ranking_title {
    width: 100%; 
    display: flex;
}

.hot_ranking_title > div {
    margin: auto; 
    display: flex; 
    width: 1300px;
}

.hot_ranking_title > div > div:first-child {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.hot_ranking_title > div > div:nth-child(2) { 
    font-size: 1rem;
    margin: auto 0; 
    margin-left: 12px;
    font-family: 'Pretendard-Regular';
}

.hot_ranking_menu {
    width: 100%; 
    display: flex; 
    padding: 40px 0px;
}

.hot_ranking_menu > div {
    width: 1300px; 
    margin: auto; 
    font-size: 1.1rem;
    font-family: 'Pretendard-Regular';
}

.ranking_menu_btn > button {
    background: transparent; 
    border: none; 
    cursor: pointer; 
    font-size: 1.1rem;
    color: black;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
    padding: 5px 20px;
    border: 1px solid #ebebeb;
    border-radius: 15px;
}

.ranking_menu_btn > button:hover {
    color: #7093fd;
    border: 1px solid #719eff;
    background-color: #eaf4ff;
}

.ranking_menu_btn > button.active {
    color: #579eef;
}

.btn_divide {
    display: none;
}

.ranking_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cards_wrapper {
    overflow: hidden;
    width: 1300px;
}

.cards {
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform: translateX(-1296px);
}

.group {
    display: flex;
    gap: 20px;
    margin-left: 14px;
}

.card {
    width: calc(260px - 20px);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 8px;
    background-color: #f3f8fd;
    overflow: hidden;
    font-family: 'Pretendard-Regular';
}

.move_button {
    background-color: #ccc;
    color: white;
    padding: 30px 5px;
    cursor: pointer;
    border: none;
    opacity: 0.7;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'Pretendard-Regular';
}

.card_path {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card_path > div {
    width: 100%;
}

.card_path > div:first-child {
    flex: 5;
    height: 240px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: relative;
}

.card_path > div:first-child img {
    width: 240px;
    height: 240px;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.card:hover .card_path > div:first-child img {
    transform: scale(1.1); 
  }

.ranking_label {
    padding: 8px 20px 8px 12px;
    font-size: 1rem;
    color: #fff;
    background-color: rgb(97, 97, 97);
    opacity: 0.7;
    position: absolute;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    top: 8px;
    left: 0;
    z-index: 10;
    font-family: 'Pretendard-Regular';
}

.card_path > div:nth-child(2) {
    flex: 1.5;
}

.card_path > div:nth-child(3) {
    flex: 2;
}

.card_title {
    display: flex;
}

.card_title div {
    margin: auto;
    width: 230px;
    max-height: 36px;
    padding: 3px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 16px;
    overflow: hidden;
    font-size: 0.9rem;
    font-family: 'Pretendard-Regular';
}

.card_info {
    display: flex;
    margin: auto;
    width: 230px;
    font-size: 0.9rem;
    font-family: 'Pretendard-Regular';
}

.card_info_left {
    flex: 1;
    display: flex;
}

.card_info_left > div {
    margin: auto;
    border-right: 1px solid #ccc;
    width: 100%;
}

.card_info_left > div > div:first-child {
    flex: 1;
    display: flex;
}

.card_info_left > div >  div:first-child span {
    margin: auto;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.card_info_left > div >  div:nth-child(2) {
    flex: 1;
    display: flex;
}

.card_info_left > div >  div:nth-child(2) span {
    margin: auto;
}

.card_info_left > div >  div:nth-child(2) span > span {
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Pretendard-Regular';
}

.card_info_right {
    flex: 1;
    display: flex;
}

.card_info_right > div {
    margin: auto;
    width: 100%;
}

.card_info_right > div >  div:first-child {
    flex: 1;
    display: flex;
}

.card_info_right > div >  div:first-child span {
    margin: auto;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.card_info_right > div >  div:nth-child(2) {
    flex: 1;
    display: flex;
}

.card_info_right > div >  div:nth-child(2) span {
    margin: auto;
}

.card_info_right > div >  div:nth-child(2) span > span {
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Pretendard-Regular';
}


.main_content4 {
    width: 1400px;
    height: 400px;
    position: relative;
    display: flex;
    margin: auto;
}

.main_content4_left {
    border: 1px solid #ccc;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 8px 20px;
    border-radius: 8px;
}

.main_content4_left > div:first-child {
    display: flex;
    flex: 1;
}

.main_content4_left > div:first-child > div {
    flex: 1;
    display: flex;
}

.main_content4_left > div:first-child > div > a {
    margin: auto;
    display: flex;
    flex-direction: column;
}

.main_content4_left > div:first-child > div > a > div {
    font-family: 'Pretendard-Regular';
    font-weight: bold;
}

.main_content4_left > div:first-child > div > a > img {
    margin: auto;
    margin-bottom: 20px;
    cursor: pointer;
    max-width: 90px;
}

.main_content4_left > div:nth-child(2) {
    display: flex;
    flex: 1;
}

.main_content4_left > div:nth-child(2) > div {
    flex: 1;
    display: flex;
}

.main_content4_left > div:nth-child(2) > div > a {
    margin: auto;
    display: flex;
    flex-direction: column;
}

.main_content4_left > div:nth-child(2) > div > a > div {
    font-family: 'Pretendard-Regular';
    font-weight: bold;
}

.main_content4_left > div:nth-child(2) > div > a > img {
    margin: auto;
    margin-bottom: 20px;
    cursor: pointer;
    max-width: 90px;
}

.main_content4_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.main_content4_right > div {
    flex: 1.4;
    margin: 8px 0px;
    border-radius: 8px;
    background-color: #f0f7ff;
    display: flex;
}

.main_content4_right > div > div {
    margin: auto;
    display: flex;
    width: 86%;
}

.main_content4_right > div > div > div {
    flex: 1;
    text-align: center;
    margin: 0px 10px;
}

.main_content4_right > div > div > div > div:first-child {
    border-bottom: 1px solid black;
    padding: 10px;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.main_content4_right > div > div > div > div:nth-child(2) {
    padding: 10px;
}

.main_content4_right > div > div > div > div:nth-child(2) > span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #1789ed;
    font-family: 'Pretendard-Regular';
}

.main_content4_right > a {
    flex: 1.2;
    margin: 8px 0px;
    border-radius: 8px;
    background-image: url("../../new_asset/inquiry.jpg");
    background-size: contain;
    background-position: center;
}

.main_content5 {
    width: 1400px;
    height: 200px;
    position: relative;
    display: flex;
    margin: 40px auto;
}

.main_content5 > div {
    width: 100%;
    margin: 30px 20px;
    display: flex;
}

.main_content5 > div > div:first-child {
    flex: 1;
    border-right: 1px solid #ccc;
    background-image: url('../../new_asset/relative01.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content5 > div > div:nth-child(2) {
    flex: 1;
    border-right: 1px solid #ccc;
    background-image: url('../../new_asset/relative02.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content5 > div > div:nth-child(3) {
    flex: 1;
    border-right: 1px solid #ccc;
    background-image: url('../../new_asset/relative03.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content5 > div > div:nth-child(4) {
    flex: 1;
    background-image: url('../../new_asset/relative04.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content6 {
    width: 1400px;
    height: 300px;
    position: relative;
    display: flex;
    margin: auto;
}

.main_content6 > div {
    width: 100%;
    margin: 8px 20px;
    display: flex;
}

.main_content6 > div > div:first-child {
    flex: 2;
    display: flex;
    background-color: #f0f7ff;
    border-radius: 8px;
}

.main_content6 > div > div:first-child > div:first-child {
    flex: 1;
    display: flex;
}

.main_content6 > div > div:first-child > div:first-child > div {
    height: 200px;
    margin: auto;
}

.main_content6 > div > div:first-child > div:first-child > div > div {
    margin: 8px 0px;
}

.main_content6 > div > div:first-child > div:first-child > div > div:first-child {
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(2) {
    font-size: 1.9rem;
    font-weight: bold;
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(4) {
    display: flex;
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(4) img {
    margin: auto 0px;
    width: 20px;
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(4) span {
    margin: auto 0px;
    padding: 0px 5px;
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(4) span:nth-child(4) {
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    margin-left: 10px;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(5) {
    display: flex;
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(5) img {
    margin: auto 0px;
    width: 20px;
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(5) span {
    margin: auto 0px;
    padding: 0px 5px;
}

.main_content6 > div > div:first-child > div:first-child > div > div:nth-child(5) > span:nth-child(4) {
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    margin-left: 10px;
    font-family: 'Pretendard-Regular';
}

.office {
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:first-child > div:nth-child(2) {
    flex: 1;
    display: flex;
}

.main_content6 > div > div:first-child > div:nth-child(2) > div {
    height: 200px;
    margin: auto;
    width: 80%;
}

.main_content6 > div > div:first-child > div:nth-child(2) > div > div {
    margin: 8px 0px;
}

.main_content6 > div > div:first-child > div:nth-child(2) > div > div:first-child {
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:first-child > div:nth-child(2) > div > div:nth-child(2) {
	height: 50px;
    background-image: url('../../new_asset/woori_bank.svg');
    background-repeat: no-repeat;
    background-position: left;
}

.main_content6 > div > div:first-child > div:nth-child(2) > div > div:nth-child(3) {
    font-size: 1.9rem;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:first-child > div:nth-child(2) > div > div:nth-child(4) {
    font-size: 1.1rem;
    font-weight: bold;
    padding-top: 10px;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:nth-child(2) {
    flex: 1;
    display: flex;
}

.main_content6 > div > div:nth-child(2) > div {
    margin: auto;
}

.main_content6 > div > div:nth-child(2) > div > div:first-child {
    display: flex;
    font-size: 1.1rem;
    padding: 10px 0px;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:nth-child(2) > div > div:first-child > div:first-child {
    padding: 0px 10px;
    border-right: 1px solid #ccc;
}

.main_content6 > div > div:nth-child(2) > div > div:first-child > div:nth-child(2) {
    padding: 0px 10px;
}

.notice > a {
    display: block;
    padding: 8px 10px;
    display: flex;
}

.notice > a > span:nth-child(2) {
    max-width: 320px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}

.main_content6 > div > div:nth-child(2) > div > div:nth-child(2) {
    display: flex;
    font-size: 1.1rem;
    padding: 10px 0px;
    width: 420px;
    font-family: 'Pretendard-Regular';
}

.main_content6 > div > div:nth-child(2) > div > div:nth-child(2) > div:first-child {
    padding: 0px 10px;
}

.main_content6 > div > div:nth-child(2) > div > div:nth-child(2) > div:nth-child(2) {
    padding: 0px 10px;
}

.qna > a {
    display: block;
    padding: 8px 10px;
    display: flex;
}

.qna > a > span {
    max-width: 380px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    font-family: 'Pretendard-Regular';
}

.main_content7 {
    width: 1400px;
    position: relative;
    display: flex;
    padding: 40px 0px;
    margin: auto;
}

.main_content7 > div {
    margin: auto 20px;
    width: 100%;
    height: 100px;
    display: flex;
}

.main_content7 > div > div:first-child {
    flex: 1;
    background-image: url('../../new_asset/award01.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content7 > div > div:nth-child(2) {
    flex: 1;
    background-image: url('../../new_asset/award02.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content7 > div > div:nth-child(3) {
    flex: 1;
    background-image: url('../../new_asset/award03.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content7 > div > div:nth-child(4) {
    flex: 1;
    background-image: url('../../new_asset/award04.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content7 > div > div:nth-child(5) {
    flex: 1;
    background-image: url('../../new_asset/award05.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.main_content7 > div > div:nth-child(6) {
    flex: 1;
    background-image: url('../../new_asset/award06.jpg');
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width: 1400px) {
    .main_content {
        display: none;
    }
}

