@charset "utf-8";
/* CSS Document */

/**********************************************

* Project   : 
* File name : basic.css
* Author    : Hightouch

**********************************************/


/*--------------------------------------------------------------------------------

	Reset 

--------------------------------------------------------------------------------*/

html {
    margin: 0 auto;
}

div, body{
	word-wrap: normal;
	word-break: keep-all;
}

h1, h2, h3, h4, h5, h6, p, span, a{
	margin: 0;
	padding: 0;
}

a:hover {
	text-decoration: none;
}

strong {
	font-weight: 500;
}

/* 커서 */
.cursor{
	cursor:none;
}


.portfolio-thumb {
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.portfolio-thumb img {
    max-width: 360px;
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    transform-origin: 90% center;
}

.portfolio-item:hover .portfolio-thumb {
    transform: translateX(-1.75rem);
}

.portfolio-item:hover .portfolio-thumb img {
    opacity: 0.8;
    transform: scale(1.2);
}


/*--------------------------------------------------------------------------------

	Alert

--------------------------------------------------------------------------------*/

.sa-desc{
    display: inline-block;
    padding: 15px 0px 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.sa-desc strong{
    font-weight: 600;
    color: #ff4f51;
}

.sa-desc.info strong{
    font-weight: 600;
    color: #44b571;
}


/*--------------------------------------------------------------------------------

	Alert Box


--------------------------------------------------------------------------------*/

.wrap-alert{
    padding: 15px 20px;
    border-radius: 5px;
}

.wrap-alert.caution{
    border: 1px solid #ff4f51;
    background: #fff6f6;
}

.wrap-alert.caution .text{
    font-size: 13px;
    font-weight: 600;
    color: #ff4f51;    
}


/*--------------------------------------------------------------------------------

	Accent

--------------------------------------------------------------------------------*/

.under_line{
	border-bottom:1px dotted #373f99;
}


/*--------------------------------------------------------------------------------

	Font [ family, size, weight, letter-spacing, align ]

--------------------------------------------------------------------------------*/

.en{
	font-family: 'Poppins', sans-serif;
}


/* 머리글 폰트 */
h1, h2, h3, h4, h5, h6{
	color: #333;
}

h1{
	font-size: 32px;
	font-weight: 500;
	line-height: 42px;
}

h2{
    font-size: 24px;
	font-weight: 700;
	color: #1c2d61;
}

h3{
	font-size: 19px;
	font-weight: 700;
    letter-spacing: -1px;
}

h3 .small{
	font-size: 14px;
	font-weight: 700;
	color: #666;
}

h4{
	font-size: 17px;
	font-weight: 500;
	line-height: 23px;
}

h5{
	font-size: 17px;
	line-height: 23px;
}

h6{
	font-size: 15px;
	line-height: 21px;
}

p{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #666;
}


/* 두께 */
.ft_ultrathin {
	font-weight: 100;
}

.ft_thin {
	font-weight: 300;
}

.ft_normal {
	font-weight: 400;
}

.ft_semibold {
	font-weight: 500;
}

.ft_bold {
	font-weight: 700;
}

/* 자간 */
.ft_letters_05{
	letter-spacing:-.5px;
}

.ft_letters_1{
	letter-spacing:-1px;
}

/* 정렬 */
.txt_center {
	text-align: center;
}

.txt_center_left {
	text-align: center;
}

.txt_center_right {
	text-align: center;
}

.txt_left_right {
	text-align: left;
}

.txt_right_left {
	text-align: right;
}

.txt_right_center {
	text-align: right;
}

.txt_left {
	text-align: left;
}

.txt_right {
	text-align: right;
}

.txt_justify {
	text-align: justify;
}


/*--------------------------------------------------------------------------------

	Object display [ display, float, overflow ]

--------------------------------------------------------------------------------*/

/* 디스플레이 */
.slider_view_full{
	display:block;
}

.slider_view{
	display:none;
}
	
.all_hidden {
	display: none;
}

.pc_show {
	display: block;
}

.pc_hidden {
	display: none;
}

.pc_tablet_show {
	display: block;
}

.mobile_show {
	display: none;
}

.mobile_hidden {
	display: block ;
}

.tablet_show {
	display: none;
}

.tablet_mobile_show {
	display: none;
}

.medium_hidden{
	display:block;
}

.medium_block{
	display:none;
}

.small_pc_show{
	display:none;
}

.blind{
	display:none;
}


/* 정렬 */
.floatL {
	float: left;
}

.floatR {
	float: right;
}

.clr_both {
	clear: both;
}


/* 넘침 */
.overflow_xScroll{
	overflow:scroll-x;
}

.overflow_yScroll{
	overflow:scroll-y;
}

::-webkit-scrollbar {
      width: 7px;
	  -ms-width: 7px;
} /* this targets the default scrollbar (compulsory) */

::-webkit-scrollbar-track {
      background-color: #efefef;
} /* the new scrollbar will have a flat appearance with the set background color */
 
::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.2); 
} /* this will style the thumb, ignoring the track */
 
::-webkit-scrollbar-button {
      background-color: #efefef;
} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
 
::-webkit-scrollbar-corner {
      background-color: #ddd;
} /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */


/*--------------------------------------------------------------------------------

	Layout, Grid

--------------------------------------------------------------------------------*/

/* 넓이 */
.width_third{
	width:33%;
}

.width_third:last-child{
	width:34%;
}

.width_half{
	width:50%;
}

/* 높이 */
.min_hgt130{
	min-height:130px;
}

.min_hgt198{
	min-height:198px !important;
}

.min_hgt250{
	min-height:250px;
}

.min_hgt360{
	min-height:360px;
}

.min_hgt420{
	min-height:420px;
}


/*--------------------------------------------------------------------------------

	Section

--------------------------------------------------------------------------------*/

.section{
	width:1180px;
	margin:0 auto;
}

.section-1810{
	width:95%;
	min-height:860px;
	margin:0 auto;
}

.section.first{
	padding:50px 0px 30px;
}

.section.second{
	padding:90px 0px 0px;
}

.section.endContents{
	border-top:1px solid #dfdfdf;
	margin-top:0px;
	padding:45px 0px;
}

.section.border_bottom{
	margin-bottom:10px;
	padding:30px 0px 10px;
	border-bottom:1px solid #bdbdbd;
}


/*--------------------------------------------------------------------------------

	Row

--------------------------------------------------------------------------------*/

.inner_fix{
	padding:0px 15px 0px;
}

.inner_fix.last{
	padding:0px 15px 0px;
}

.inner_fix30{
	padding:0px 30px;
}

.row_pd_20b{
	padding-bottom:20px;
}

@media only screen and (max-width: 959px) {
	.row_pd_20b{
		padding-bottom:10px;
	}
}

.row_pd_30{
	padding:30px;
}

.row_pd_30b{
	padding-bottom:30px;
}

.row_pd_70tb{
	padding-top:70px;
	padding-bottom:70px;
}

.row_pd_20t{
	padding-top:20px;
}

.row_pd_100t{
	padding-top:100px !important;
}

.row_pd_200t{
	padding-top:200px;
}

.row_mg_70b{
	margin-bottom:70px !important;
}



/* row paragraph */

.row_section{
	padding:50px 0px;
	margin-bottom:20px;
}

/* row paragraph */

.row_paragraph_mgb50{
	margin-bottom:50px;
}

.row_paragraph_mgb70{
	margin-bottom:70px;
}

.row_paragraph_border{
	padding-bottom:15px;
	margin:0px 0px 15px;
	border-bottom:1px solid #cecece;
}

.row_paragraph_bottomLine{
	padding-bottom:60px;
	margin-bottom:40px;
	border-bottom:1px solid #dcdcdc;
}


/*--------------------------------------------------------------------------------

	Padding & Margin

--------------------------------------------------------------------------------*/

/* zero padding & margin */
.pd0 {
	padding: 0 !important;
}

.mg0 {
	margin: 0 !important;
}

/* padding */

.pd_20 {
	padding: 20px;
}

.pd_30 {
	padding: 30px;
}

.pd_60 {
	padding: 60px;
}

.pd_5t{
	padding-top: 5px;
}

.pd_10t{
	padding-top: 10px;
}

.pd_70tb {
	padding: 70px 0 70px;
}

.pd_200tb {
	padding: 200px 0 200px;
}

.pd_30L {
	padding-left: 30px;
}

.pd_60L {
	padding-left: 60px;
}

.pd_40b {
	padding-bottom: 40px;
}

.pd_70b {
	padding-bottom: 70px;
}

.pd_380L {
	padding-left: 380px;
}

.pd_15r{
	padding-right:15px;
}

.pd_45R {
	padding-right: 45px;
}


/* margin */

.mg_15t{
	margin-top: 15px;
}

.mg_20t {
	margin-top: 20px;
}

.mg_25t{
	margin-top: 25px;
}

.mg_90t{
	margin-top: 90px;
}

.mg_130t{
	margin-top: 50px;
}

.mg_10b{
	margin-bottom: 10px;
}

.mg_15b{
	margin-bottom: 15px;
}

.mg_20b{
	margin-bottom: 20px !important;
}

.mg_30b{
	margin-bottom: 30px !important;
}

.mg_35b{
	margin-bottom: 35px;
}

.mg_40b{
	margin-bottom: 40px;
}

.mg_55b{
	margin-bottom: 55px;
}


/*--------------------------------------------------------------------------------

	Color

--------------------------------------------------------------------------------*/

.bg_blue{
	background:#333;
}

/* Accent */
.color_accent {
	color: #3e74a1;
}

.color_accent2 {
	color: #c7a979;
}



/*--------------------------------------------------------------------------------

	Button
	
	1. Button Group
	
	2. Pre, Next
	
	3. Outline button
	
	4. Underline button
	
	5. Flat button
	
	6. All button
	
	7. More button
	
--------------------------------------------------------------------------------*/

/* 버튼그룹 */
.wrap_buttons{
	text-align:center;
}

/* Underline Button */
.btn_underline{
	display:inline-block;
	padding:.3em .4em;
	border-bottom:1px solid #737373;
	font-size: 14px;
	font-weight:400;
	color: #737373;
	transition: all 0.3s ease 0s;
}

.btn_underline.download{
	float:right;
	padding-left:30px;
	background:url('/wp-content/themes/total-child-theme/images/icon_download.png')no-repeat 0 6px;
}

.btn_underline:hover{
	/*border-bottom:1px solid #3f60aa;*/
}

.btn_underline.blue{
	color:#4a73cf;
}

.btn_underline.cobaltBlue{
	margin-top:35px;
	border-bottom:1px solid #014271;
	color:#014271;
}

.btn_underline.white{
	/*border-bottom:5px solid #fff;*/
	color:#fff;
}

.btn_underline.white:hover{
	color:#fff;
}

a.btn_underline.white:before {
    content: '';
    width: 100%;
    height: 5px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
	z-index:7;
}

a.btn_underline.white:hover:before {
    content: '';
    width: 0%;
	left:100%;
    transition: all 0.3s ease 0s;
}

a.btn_underline.white:after {
    content: '';
    width: 0;
    transition: all 0.3s ease 0s;
}

.btn_underline.white:hover:after {
    content: '';
    width: 100%;
    height: 5px;
    background: #d4ae6a;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: all 0.3s ease 0s;
	z-index:5;
}

.btn_underline.white.arrow{
	padding-right:30px;
	background:url('/wp-content/themes/total-child-theme/css/images/main/icon_btnArrow.png')no-repeat 100% 8px;
}


/* Flat button */
.btn_flat{
	display:inline-block;
	margin:40px auto 0px;
	padding:20px 30px;
	border:0;
	border-radius: 50px;
	outline:0;
	background:#5fccb6;
	font-size:14px;
	font-weight:700;
	color:#fff;
	text-align:center;
	transition: all 0.2s ease 0s;
}

.btn_flat.round{
	border-radius:50px;
}


/* Flat button */
.btn_basic{
	display:inline-block;
	margin:40px auto 0px;
	padding:20px 40px;
	border:0;
	border-radius: 5px;
	outline:0;
	background:#333;
	font-size:15px;
	font-weight:500;
	color:#fff;
	text-align:center;
	transition: all 0.2s ease 0s;
}

.btn_basic .text{
	display: inline-block;
	margin-right: 5px;
}

/* Flat button */
.btn_basic:hover{
	outline:0;
	background:#000;
	color:#fff;
}


/* Flat button */
.btn_subscribe{
	display:inline-block;
	margin:10px auto 0px;
	padding:15px 30px;
	border:0;
	border-radius: 5px;
	outline:0;
	background:#333;
	font-size:15px;
	font-weight:500;
	color:#fff;
	text-align:center;
	transition: all 0.2s ease 0s;
}

.btn_subscribe .text{
	display: inline-block;
	margin-right: 5px;
}

/* Flat button */
.btn_subscribe:hover{
	outline:0;
	background:#000;
	color:#fff;
}


a.btn-return {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	background: #fff;
	box-shadow: 8px 9px 20px 0 rgba(0, 0, 0, 0.03);
    text-align: center;
}

a.btn-return img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/*--------------------------------------------------------------------------------

	List

--------------------------------------------------------------------------------*/

/* 기본 리스트 */
.wrap_lst_basic{
	margin-bottom:20px !important;
}

.wrap_lst_basic h4{
	font-size:16px;
	font-weight:400;
	margin-bottom:5px !important;
}

.lst_basic li{
	position: relative;
	padding-left:10px;
	margin-bottom:4px;
	font-size:14px;
	font-weight:300;
	line-height:22px;
	color:#666;
}

.lst_basic li::before{	
	content: '';
	position: absolute;
	top: 7px;
	left: 0px;
	width: 4px;
	height: 4px;
	background: #888;
}

.lst_basic li a{
	color:#333;
}

.lst_basic li a:hover{
	color:#e60013;
}


/* 페이지 리스트 */
.wrap_lst_pagenation{
    padding:20px 0px;   
}
.wrap_lst_pagenation .lst_pagenation li{
    padding:10px;
    border-bottom: 1px dotted #ddd;
}
.wrap_lst_pagenation .lst_pagenation li a{
    color:#333;
}
.wrap_lst_pagenation .lst_pagenation li a:hover{
    color:#18ab82;
}


/* 가로 리스트 */
.lst_category li{
	position:relative;
	float:left;
}

.lst_category li:after{
	content:'';
	position:absolute;
	top:5px;
	width:1px;
	height:16px;
	background:#c3c3c3;
}

.lst_category li:last-child:after{
	background:#fff;
}

.lst_category li span{
	padding:0px 20px;
	font-size:17px;
	font-weight:700;
	color:#676767;
	cursor:pointer;
}

.lst_category li span.active{
	color:#18ab82;
}

/* 체크 리스트 */
.lst_check li{
	padding-left:30px;
	margin-bottom:5px;
	font-size:15px;
	line-height:25px;
	background:url('/wp-content/themes/total-child-theme/images/icn_check2.png')no-repeat 0px 2px;
}

.lst_check.dot_style2 li{
	background:url('/wp-content/themes/total-child-theme/images/icn_check.png')no-repeat 0px 2px;
}

.lst_check.dot_style2.horizontal li{
	float:left;
	width:33.3%;
	background:url('/wp-content/themes/total-child-theme/images/icn_check.png')no-repeat 0px 2px;
}


/*--------------------------------------------------------------------------------

	Table

--------------------------------------------------------------------------------*/

.table-responsive{
	width: 100%;
	overflow-x: scroll;
}

.table-responsive::-webkit-scrollbar{
	margin-top: -1px;
    height: 0px;
}

.table{
	width: 100%;
	margin-top: 50px;
}

.table td{
	border: 1px solid #dedede;
}

.table thead {
	background: #fff;
}

.table thead tr th {
    font-weight: 500;
    color: #333;
    padding: 15px 0px;
	border: 1px solid #dedede;
	border-top: 1px solid #3b3b3b;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
    vertical-align: middle;
}

.table tbody tr.total{
    background: #f7f7f7;
}

.table tbody tr.total td{
    font-weight: 500;
    color: #333;
}

.table.blue thead tr td {
	border-top: 2px solid #338ae2;
	background: #ebf1f7;
}

.table.blue tbody tr td {
	background: #f3f6f9;
}

.table.green thead tr td {
	border-top: 2px solid #42b87a;
	background: #ecf7df;
}

.table.green tbody tr td {
	background: #f4fbec;
}

.table.yellow thead tr td {
	border-top: 2px solid #cea454;
	background: #f5ecdc;
}

.table.yellow tbody tr td {
	background: #fffbf4;
}

.table thead tr td {
    font-weight: 500;
    color: #000;	
    padding: 15px 0px;
	border-top: 2px solid #42b87a;
	font-size: 14px;
	text-align: center;
}

.table tbody tr td{
	padding: 15px 0px;
	font-weight: 400;
	text-align: center;
    vertical-align: middle;
	color: #999;	
}

.table tbody tr td.tit_tbRow{
    font-size: 23px;
	font-weight: 500;
    color: #333;
}

.table.stripe tbody tr:nth-child(2n){
	background: #f8f8f8;
}