

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #0394fe;
  --secondary-color:              #80d0c7;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --orange-color:                 #ff8040;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --body-font-family:             sans-serif;
  --title-font-family:            sans-serif;

  --h1-font-size:                 32px;
  --h2-font-size:                 28px;
  --h3-font-size:                 24px;
  --h4-font-size:                 20px;
  --h5-font-size:                 20px;
  --h6-font-size:                 20px;
  --p-font-size:                  20px;
  --menu-font-size:               16px;
  --mmenu-font-size:              14px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}
html{overflow:auto;}
body {
  font-family: sans-serif; 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

img {
    max-width: 100%;
    overflow: hidden;
}
ol, ul, li {
    list-style: none;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding_footer {
  padding-top: 40px;
  padding-bottom: 40px;
}


.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: #0072fd;
}

.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(128, 208, 199, 0.35);
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  font-size:32px;
  color:#fff;
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand {
}

.navbar-expand-lg .navbar-nav h2 {
  border-radius: var(--border-radius-large);
  margin: 0px;
  padding: 0px;
}
.navbar-nav > li {
	padding:10px;
}
.navbar-nav h2 {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
.navbar-nav h2.on {
	color:#ff8000;
}
.navbar-nav h2:hover {
  color: var(--dark-color);
}


.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


.sc_form {
  background-image: linear-gradient(180deg, #0072fd 0%, #80d0c7 100%);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 50px;
}
.db-section_detail {
    background-image: linear-gradient(180deg, #137dff 0%, #93d7ce 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 50px;
}

.form-control {
  border-radius: 18px;
  color: var(--p-color);
  margin-bottom: 15px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}




/* sc_con1 ============================================== */
.sc_con1 {
  background:#fff;
	padding:30px 0;
}
.sc_con1 .container {
}
.sc_con1 .headline_area {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    width: 100%;
		text-align:center;
}
.sc_con1 .sub_headline {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #444;
    padding-top: 15px;
}
.sc_con1 .con_area{}
.sc_con1 .con_area .top_list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
	margin:30px 0;
	padding:0;
}
.sc_con1 .con_area .top_list .top_item {
  transition: 0.3s;
  position: relative;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    gap: 15px;
		box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.sc_con1 .con_area .top_list .top_item a {
  padding: 10px;
  transition: all 0.3s;
  border-radius: 10px;
  background: #fff;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sc_con1 .con_area .top_list .top_item .img_box {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_con1 .con_area .top_list .top_item .textarea {
  flex: 1;
}
.sc_con1 .con_area .top_list .top_item .img_box img {
  max-width: 100%;
}
.sc_con1 .con_area .top_list .top_item .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align:center;
}
.sc_con1 .con_area .top_list .top_item .plus {
  display: block;
  width: 100%;
  font-size: 17px;
  text-align: right;
  color: #777777;
  margin-top: 25px;
}


.site-footer {
padding:30px 0;
  position: relative;
  background:#0394fe;
}


.site-footer-title {
  color: #000; 
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: #fff;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}
.site-footer-link_policy {
  color:#fd9f28;
  font-size: var(--copyright-font-size);
  font-weight:700;
  line-height: normal;
}
.site-footer-link_gaip {
  color: #ff80ff;
  font-size: var(--copyright-font-size);
  font-weight:700;
  line-height: normal;
}


.copyright-text {
  font-size: var(--copyright-font-size);
  color:#ddd;
  text-align:center;
}
.copyright-text a{
	color:#fff;
}
.copyright-text a:hover {
	color:#000000;
}




.sc_bohum_info {
    background:#28292b;
    padding: 40px 0;
    text-align: center;
}
.sc_bohum_info .title_wrap {
}
.sc_bohum_info .title_wrap h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
}
.sc_bohum_info .title_wrap p {
    color: #fff;
}


.sc_bohum {
    background:#e8f5ff;
		padding:50px 0 30px 0;
}
.sc_bohum .bohum_list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
	margin:30px 0;
}
.sc_bohum .bohum_list .bohum_item {
  transition: 0.3s;
  position: relative;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
		box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.sc_bohum .bohum_list .title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}
.sc_bohum .btn_box {
    display: flex;
    gap: 20px;
}
.sc_bohum .btn_box .btn {
    padding: 13px 20px;
    font-size: 17px;
    font-weight: 600;
    background: #0058d8;
    color: #fff;
    border-radius: 10px;
}
.sc_bohum .btn_box .btn:hover {
	background:#000000;
}
.sc_bohum .title_wrap {
		text-align:center;
}
.sc_bohum .title_wrap h2 {
    font-size: 45px;
    letter-spacing: -2px;
    color: #0058d8;
    margin-bottom: 25px;
}


.sc_content {
    background: #cfecfc;
    position: relative;
    overflow: hidden;
		padding:50px 0;
}
.sc_content h2{
    text-align:center;
		font-size:2.5rem;
		padding:1.0rem 0;
}
.sc_content .box{
	height:auto;
	min-height:100px;
	max-height:400px;
	overflow-y:scroll;
	border:1px solid #ccc;
	padding:0;
}

.sc_content .box li {
  border-bottom: 1px solid #ccc;
	background:#fff;
}
.sc_content .box li:hover{
	background:#0072fd;
}
.sc_content .box li:hover a{
  color: #fff;
}
.sc_content .box li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    transition: background-color 0.2s;
    text-align: center;
		font-size:16px;
  color: #333;
}


.sc_need4 {
    padding: 80px 0;
}
.sc_need4 .title_wrap {
    text-align: center;
    margin-bottom: 80px;
}
.sc_need4 .title_wrap h2 {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -2px;
    color: #181818;
    margin-bottom: 30px;
}
.sc_need4 .title_wrap p {
    font-size: 25px;
    letter-spacing: -1px;
    color: #555;
}
.sc_need4 .content_wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.sc_need4 .content_wrap ul li {
    background: #edf1f8;
    padding: 25px 20px;
    border-radius: 30px;
    text-align: center;
		box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.sc_need4 .content_wrap ul li .title_box {
    height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}
.sc_need4 .content_wrap ul li .title_box span{
    color: #0676ff;
		font-size:24px;
}
.sc_need4 .content_wrap ul li p {
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 1.5;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
}

.indispensable_area{
    width: 100%;
    height: auto;
    padding: 10px 0;
    display: block;
	text-align:justify !important;
	margin-bottom:20px;
	color:#333 !important;
}
.indispensable_area .indispensable_box {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px;
}

.indispensable_area  .title  {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
	color:#333 !important;
}
.indispensable_area ul {
		line-height:22px;
}
.indispensable_area ul li{
	color:#333 !important;
	font-weight:normal !important;
	font-size: 13px !important;
	letter-spacing:0px !important;
	text-align:justify !important;
	width:100%;
	word-break: break-all;
}


.sc_qna {
    padding: 50px 0px;
    position: relative;
    background: #fff;
}
.qna_list {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.qna_list .qna_item {
    border-top: 1px solid #ddd;
    cursor: pointer;
}
.qna_list .qna_item .q_box {
    background: #fff;
}
.qna_list .qna_item .a_box .a_wrap, .qna_list .qna_item .q_box {
    padding: 30px;
}
.qna_list .qna_item .q_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.qna_list .qna_item .q_box .q_wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.qna_list .qna_item .q_box .q_wrap em {
    background: #000;
}
.qna_list .qna_item .a_box em {
    background:#0058d8;
}
.qna_list .qna_item .a_box em, .qna_list .qna_item .q_box .q_wrap em {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qna_list .qna_item .q_box .q_wrap p {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.sc_qna .qna_item .q_box img {
    width: 20px;
    transition: all 0.3s;
}
.qna_list .qna_item .a_box.show {
    display: block;
}
.qna_list .qna_item .a_box {
    display: none;
}
.qna_list .qna_item .a_box .a_wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-top: 1px dashed #ddd;
    padding: 30px;
    background:#f7f7fe;
    overflow: auto;
}
.qna_list .qna_item .a_box .a_wrap, .qna_list .qna_item .q_box {
    padding: 30px;
}
.qna_list .qna_item .a_box .txt_box {
    flex: 1;
}
.qna_list .qna_item .a_box .txt_box li, .qna_list .qna_item .a_box .txt_box p {
    font-size: 17px;
    line-height: 1.6;
}
.qna_list .qna_item .a_box .txt_box p, .qna_list .qna_item .a_box .txt_box ul {
    padding-bottom: 5px;
}
.sc_contents .content_wrap h2 {
    font-size: 2.5rem;
    font-weight: bold;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    line-height: 3rem;
    margin-bottom: 30px;
    text-align: center;
}


/* ¾Æ·¡´Â ¹ÝÀÀÇü ¼Ò½º */




@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  
  .navbar {
    background-color: #0072fd;
  }
	.navbar-nav > li {
		text-align: center;
		padding:5px 0;
	}
  .navbar-expand-lg .navbar-nav {
    padding-bottom: 0px;
  }

  .navbar-expand-lg .navbar-nav h2 {
    padding: 0;
	color:#333;
  }
  .navbar-expand-lg .navbar-nav h2:hover {
	color:#0072fd;
  }
	.navbar-collapse{
		background:#e7ecf1;
	}
	.navbar-brand h1{
		font-size:24px;
	}

	.navbar-collapse.show{
		position:relative;
		top:0;
		left:0;
	}
	.sc_con1 .con_area .top_list {
		grid-template-columns: repeat(2, 1fr);
	}

}


@media (max-width: 767px) {
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
	.sc_con1 .con_area .top_list {
		grid-template-columns: repeat(1, 1fr);
	}
	.sc_bohum .bohum_list {
		grid-template-columns: repeat(1, 1fr);
	}
	.sc_need4 .content_wrap ul {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}
	.site-footer {
		text-align: center;
	}
}

