@charset "utf-8";


body::-webkit-scrollbar {
    display: none; /* 스크롤바를 숨깁니다 */
    
}

.wrap {
	width: 100vw;
	height: auto;
}

.main {
	position: relative;
}

/* first_div 스타일  */
.top_title_text {
	position: relative;
}

.top_title_text h1 {
	position: absolute;
    font-weight: 300;
    font-size: 50px;    
    color: #fff;
    top: 50%;
    left: 50%;
   	transform: translate(-50%, 250%);
   	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.top_title_bg {
	height: 334px;
    width: 100vw;
}

.top_title_bg img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

/* second_div 스타일 */
#second_div {
	display: flex;
    justify-content: center;
}

.top_sub_menu_div {
	display: flex;
    width: 1380px;
    padding: 20px;
    border-bottom: 1px solid #DFE2EE;
}

.sub_logo_div {
	height: 45px;
	margin-right: 40px;
}

.top_sub_right {
	display: flex;
    align-items: center;
}

.top_sub_right div {
	position: relative;
	margin-right: 20px;
}

.top_sub_right div:nth-of-type(1) span {
	width: 90px;
}

.top_sub_right div:nth-of-type(3) span {
	width: 200px;
}

.top_sub_right span {
    display: block;
    font-weight: 300;
	font-size: 18px;
	line-height: 45px;
	cursor: pointer;
}

.top_sub_right span:hover {
	color: #777;
}


.top_menu {
	position: absolute;
    display: none;
    width: 100px;
    padding: 10px;
    flex-direction: column;
    left: -10px;
    top: 70px;
    border-radius: 5px;
    border: 1px solid #DFE2EE;
    background: rgba(255, 255, 255, 0.93);
}

.top_menu li {
	margin-bottom: 20px;
}

.top_menu li:last-child {
	margin-bottom: 0;
}

.top_menu_title a {
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
}

.top_sub_menu {
	position: absolute;
    display: none;
    width: 100%;
    padding: 10px;
    flex-direction: column;
    left: -10px;
    top: 70px;
    border-radius: 5px;
    border: 1px solid #DFE2EE;
    background: rgba(255, 255, 255, 0.93);
}

.top_sub_menu li {
	margin-bottom: 20px;
}

.top_sub_menu li:last-child {
	margin-bottom: 0;
}

.active {
    color: #25A740 !important;
}

.top_sub_menu a {
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
}

.top_arrow img {
	height: 100%;
    object-fit: cover;
}

/* third_div 스타일 */
#third_div {
	display: flex;
    justify-content: center;
    margin: 70px 0;
}

.content_wrap {
	display: flex;
	flex-direction: column;
    width: 1380px;
}

.content_wrap>div {
	margin-bottom: 50px;
}

.content_wrap>div:last-child {
	margin-bottom: 0;
}

.content_title>span {
    font-weight: 300;
    font-size: 33px;
}

.button_box {
	display: flex;
    /* justify-content: space-between; */
    justify-content: start;
    flex-wrap: wrap;
}

.btn_off {
	border: 3px solid #E7EAF6;
    height: 46px;
    color: #121212;
    text-align: center;
    font-family: "SBAggro";
    font-size: 24px;
    font-weight: 300;
    line-height: 45px;
   	padding: 0 20px;
}

.btn_on {
	background: #25A740;
	border: 3px solid #25A740;
	color: #fff;
}

.content_sub_title {
	display: flex;
	flex-direction: column;
}

.content_sub_title>div {
	display: flex;
	margin-bottom: 20px;
}

.title_box {
	display: flex;
}

.border{
	width: 7px;
	height: 27px;
	border-radius: 10px;
	background: #25A740;
	margin-right: 13px;
}

.content_sub_title .title_box > span {
    font-weight: 300;
    font-size: 27px;
}


.text_box {
	display: flex;
	gap: 13px;
	margin-left: 20px;
}

.text_box>div {
	display: flex;
	align-items: center;
	margin-right: 13px;
}

.circle {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #121212;
	line-height: 20px;
}

.content_text {
	font-weight: 300;
	font-size: 20px;
	font-family: 'Noto Sans KR';
}







