* {
    box-sizing: border-box;
}

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #143f8b; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #57bde5; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #57bde5; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #143f8b;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none !important;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--heading-color);
  text-decoration-line:none;
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/************************************************************
공통하단 :footer 
************************************************************/

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
    display: inline-block;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin: 10px 0 10px 0;
  font-size: 13px;
  text-align: center;
}

.footer .credits .containerbox{
    display: inline-block;
}

.footer .credits .containerbox i{
  padding: 0px 5px 0px 10px;    
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.page-title h1 {
  font-size: 24px;
  font-weight: 400;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #444;
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 82px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .hero {
    min-height: calc(100vh - 68px);
  }
}

.hero img {
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 10px 10px 10px 30px;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  border: 3px solid #fff;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}



/************************************************************
 배경화면  (페이드 전환 효과) 점차적으로 전환되는 효과
************************************************************/
.background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      animation: fadeBackground 10s infinite;
    }

    .background:nth-child(1) {
      background-image: url('hero-bg2.jpg');
      animation-delay: 0s;
    }

    .background:nth-child(2) {
      background-image: url('hero-bg1.jpg');
      animation-delay: 5s;
    }

    @keyframes fadeBackground {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
    }



/*--------------------------------------------------------------
# notice > board
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# program icon Section
--------------------------------------------------------------*/

.program_icon{
    text-align: center;
}
.program_icon .icon_column{
    display: inline-flex;
    height: 250px;
    flex-direction: column;
}
.program_icon .icon_column img{
    padding: 10px;
    max-width: 200px;
}

@media (max-width: 991px) {
   .program_icon .icon_column{
        width: 45%;
   }
}
/*--------------------------------------------------------------
# 주최 미디어파트너 Section
--------------------------------------------------------------*/

@media (max-width: 1270px) {
    .cont .desc {
        
        flex-direction: column;
        align-items: center;
    }
    .cont .desc .con {
        display: block;
        text-align: center;
        
    }
    .hostlogoitem {
        box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
        border-radius: 2px;
        margin: 0px auto 14px auto;
        text-align: center;
        width: 50%;
    }
     .hostlogoitem img {
        height: 50px;
        margin: 0px auto 0px auto;
    }
    .cont .desc .con img {
        display: inline-block;
        width: auto;
        padding: 10px 0 10px 0;
    }
    .hostlogo_bottom{
        padding-bottom: 100px;
    }
}

@media (min-width: 1270px) {
     .cont .desc {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
    }
    .cont .desc .con {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* justify-content: space-between; */
        align-items: center;
        text-align: center;
        width: 100%;
        padding-bottom: 100px;
    }
    
    .hostlogoitem {
        width: 19%;
        box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
        border-radius: 2px;
        margin: 0px 5px 0 5px;
        
    }
    
    .cont .desc .con .hostlogoitem > img {
        width: auto;
        height: 50px;
        margin: 10px 0 10px 0;
        padding: 5px;
    }
}






/*--------------------------------------------------------------
# 행사개요 about Section
--------------------------------------------------------------*/

.about_table {
    font-size: 18px;
    font-family: var(--nav-font);
}

.about_table .table_top{
    border-top: 2px #333333 solid;
}

.about_table .table_title_box{
    border-bottom: 1px #cccccc solid;
    border-right: none;
    text-align: center;
    vertical-align: middle;
    height: 70px;
    background: #eee;
    font-weight: 600;
    width: 20%;
}

.about_table .table_input_box{
    border-top: 0px #cccccc solid;
    border-bottom: 1px #cccccc solid;
    vertical-align: middle;
    min-height: 70px;
    word-break: keep-all;
    padding: 0px 0px 0px 10px;
}

.sns a{
    background-color: #143f8b;
    padding: 5px 20px;
    border-radius: 20px;
    color: #fff;
    width: 210px;
    display: block;
    text-align: center;
}
.sns a:hover{
    background-color: #57bde5;
    transition: 0.5s;
    transform: scale(1.1);
}
/*--------------------------------------------------------------
# 프로그램 소개 Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon > img{
    max-width: 150px;
    max-height: 100px;
}
.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  font-family: var(--nav-font) ;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #444;
}

.services .service-item.item-cyan:hover .icon i {
  color: #57bde5;
}

.services .section-title p{
    font-size: 16px;
    font-family: var(--nav-font);
}


/*--------------------------------------------------------------
# 프로그램 상세설명
--------------------------------------------------------------*/

.paddingpage{
     padding: 50px 0 0 0;
    font-family: var(--nav-font) ;
    font-size: 18px;
}

.text_size16{
    font-size: 16px;
}

.text_size24{
    font-size: 24px;
}

/*--------------------------------------------------------------
# movie_1 Section
--------------------------------------------------------------*/

.movie_1 {
    display: flex;
    justify-content: center;
}


/*--------------------------------------------------------------
# 버튼
--------------------------------------------------------------*/

#helloButton{
    font-size: 18pt; 
    display: inline-block; 
    padding: 20px 50px; 
    border-radius: 50px; 
    margin: 10px; 
    color: rgb(255, 255, 255); 
    font-weight: 600;
    font-family: var(--heading-font);
    background-color: #143f8b;
}

#helloButton:hover{
    background-color: #57bde5;
    transition: 0.5s;
    transform: scale(1.1);
    font-family: var(--nav-font) ;
}


#moreButton{
    font-size: 12pt; 
    display: inline-block; 
    padding: 5px 20px; 
    border-radius: 50px; 
    margin: 20px 0px 0 0; 
    color: rgb(255, 255, 255); 
    font-weight: 600;
    font-family: var(--heading-font);
    background-color: #143f8b;
}

#moreButton:hover{
    background-color: #57bde5;
    transition: 0.5s;
    transform: scale(1.1);
}



@media (max-width: 468px) {
    #helloButton {
        font-size: 14pt;
        padding: 10px 30px;
    }
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.doctors .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.doctors .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .team-member a:visited{
    color: var(--heading-color);
}

.doctors .team-member:hover {
  transform: translateY(-10px);
  font-family: var(--nav-font) ;
}

.doctors .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .doctors .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.doctors .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
    color: #444;
    font-family: var(--nav-font) ;
}

.doctors .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .doctors .team-member span::after {
    left: calc(50% - 25px);
  }
}

.doctors .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #444;
  font-family: var(--nav-font);
}

.doctors .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member .social {
    justify-content: center;
  }
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.doctors .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.doctors .team-member .social a:hover {
  background: var(--accent-color);
}

.doctors .team-member .social a:hover i {
  color: var(--contrast-color);
}

.doctors .team-member .social a+a {
  margin-left: 8px;
}




/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
    box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  max-height: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p, .faq .faq-container .faq-item .faq-content ul {
  margin-bottom: 0;
  overflow: hidden;
  color: var(--nav-dropdown-color);
  font-family: var(--default-font);
  font-size: 18px;  
  font-family: var(--nav-font);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: #dee;
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--accent-color);
  font-weight: 600;
}

.faq .faq-container .faq-active .faq-content {
  max-height: 1000px;  
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# 오시는길 Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}





/*****************************************************************
게시판 공통 전체
*****************************************************************/

.n_board_gallery,
.n_board_txt {
    width: 100%;
    overflow-x: auto;
}


.n_board_gallery table,
.n_board_txt table {
    max-width: 100%;
    table-layout: fixed;
    word-break: break-word;
}

.n_board_gallery img {
    max-width: 100%;
    height: auto;
}


/*****************************************************************
글목록 : 전체선택(관리자로그인시)
*****************************************************************/
.n_board_txt #check_all,
.n_board_gallery #check_all {
    width: 18px;
    height: 18px;
    margin: 5px;
}


/*****************************************************************
글보기, 글쓰기 : tr > td(좌측/우측)
*****************************************************************/
.n_board_txt .board_bgcolor,
.n_board_gallery .board_bgcolor {
    width: 20%;
    padding: 8px;
    background-color: #f7f7f7;
    border-top: 1px solid #fff;
    text-align: center;
    
}
.n_board_txt .board_desc,
.n_board_gallery .board_desc {
    width: auto;
    text-align: left;
    border-top: 1px solid #fff;
    font-size: 18px;
}


/*****************************************************************
글쓰기 : 하단 공지글체크
*****************************************************************/
.n_board_txt .board_desc input[type=checkbox],
.n_board_gallery .board_desc input[type=checkbox]{
    max-width: 17px;
    max-height: 17px;
    margin: 0 3px 0 10px;
    vertical-align: middle;
}


/*****************************************************************
글쓰기 : 상단입력내용(작성자,비번,제목등..) & 글목록 : 관리자체크박스
*****************************************************************/
.n_board_txt .board td input,
.n_board_gallery .board td input{
    width: 100%;
    border: 1px solid #ddd;
    background-color: transparent;
    height: 34px;
    padding: 3px 5px;
    margin: 1px 0;
}

.n_board_txt .board td input[type=file],
.n_board_gallery .board td input[type=file]{
    max-width: 500px;
    border: 0px solid #ddd;
}

.n_board_txt .seLayout,
.n_board_gallery .seLayout{
    border: none;
}


/*****************************************************************
글쓰기 : 전화번호, 휴대폰, 라디오버튼, 체크박스
*****************************************************************/
.n_board_txt .board td input[name^=phone],
.n_board_txt .board td input[name^=mobile],
.n_board_gallery .board td input[name^=phone],
.n_board_gallery .board td input[name^=mobile]{
    max-width: 80px;
    width: 100%;
}

.n_board_txt .board td input[type=radio],
.n_board_txt .board td input[type=checkbox],
.n_board_gallery .board td input[type=radio],
.n_board_gallery .board td input[type=checkbox]{
    width: 20px;
    margin: 0 3px 0 10px;
    vertical-align: middle;
}


/*****************************************************************
글쓰기 : textarea
*****************************************************************/
.n_board_txt .seLayout #descriptionView_IFRAME,
.n_board_gallery .seLayout #descriptionView_IFRAME{
    border: 1px solid #ddd;
}


/*****************************************************************
글쓰기 : 확인버튼
*****************************************************************/
.n_board_txt .bbsnewf5 input[type=image],
.n_board_gallery .bbsnewf5 input[type=image]{
    width: auto;
    vertical-align: top;
    padding: 0px;
    border: 0px solid #f00;
}


/*****************************************************************
글쓰기 : 취소버튼 & 글보기 : 버튼들
*****************************************************************/
.n_board_txt .bbsnewf5 > a img,
.n_board_gallery .bbsnewf5 > a img{
    border: 0px solid #f00;
    vertical-align: top;
}


/*****************************************************************
글목록 : 셀렉트박스
*****************************************************************/
.n_board_txt .est_cate_cell select,
.n_board_gallery .est_cate_cell select{
    width: 120px;
    height: 34px;
    margin: 1px 0;
    border: 1px solid #c3c3c3;
    font-size: 14px;
}


/*****************************************************************
글쓰기 : 셀렉트박스
*****************************************************************/
.n_board_txt .board_desc > select,
.n_board_gallery .board_desc > select{
    width: 180px;
    height: 34px;
    margin: 1px 0;
    border: 1px solid #c3c3c3;
}


/*****************************************************************
글목록 : 검색어입력
*****************************************************************/
.n_board_txt .est_keyword_cell input[name=com_board_search_value],
.n_board_gallery .est_keyword_cell input[name=com_board_search_value]{
    max-width: 150px;
    height: 34px;
    margin: 0 1px;
    padding: 0 5px;
    border: 1px solid #c3c3c3;
}


/*****************************************************************
글목록 : 검색버튼
*****************************************************************/
.n_board_txt .est_btn_cell input[title=input],
.n_board_gallery .est_btn_cell input[title=input]{
    border: 0px solid #ddd;
    padding: 0px;
}


/*****************************************************************
글목록 : 관리자 로그인시 게시물체크박스
*****************************************************************/
.n_board_txt .bbschk input[type=checkbox] {
    width: 17px;
    height: 17px;
}


/*****************************************************************
갤러리목록 : 관리자 로그인시 게시물체크박스
*****************************************************************/
.n_board_gallery .adminCheck {
    position: relative;
    width: auto;
}
.n_board_gallery .adminCheck .adminCheckBox{
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 0px;
    width: 20px;
}


/*****************************************************************
갤러리목록 > 댓글목록 : 관리자 로그인시 게시물체크박스
*****************************************************************/
.n_board_gallery .comment_name > .adminCheckBox{
    position: relative;
    display: inline-block;
}


/*****************************************************************
갤러리목록 : 이미지사이즈
*****************************************************************/
.n_board_gallery .nSize img {
    width: 100%;
    max-height: 300px;
    
}

.n_board_gallery .nSize:hover img {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    opacity: 0.8;
    transform: scale(1.1);
}

    .nSize {
     -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 100%;
    height: auto;
    }
    
.nSize>td{
    overflow: hidden;
}


/*****************************************************************
갤러리목록 : 텍스트컬러(기타&추가항목)
*****************************************************************/
.gallery_etc {
   padding-bottom: 10px;
   color: #888 !important;
}

.gallery_subject {
    padding: 5px;
    height: 50px;
}

/*****************************************************************
갤러리형 게시판 : 각각의 칸영역(2단,3단,4단 등..)
*****************************************************************/
.n_board_gallery .boxArea{
    padding-bottom: 10px;
    padding-right: 5px;
    padding-left: 5px;
}

/*****************************************************************
갤러리형 게시판 > 목록페이지 : 최상단라인
*****************************************************************/
.n_board_gallery .boxArea > font > font > font > table:first-child td{
    background-color: #fff;
}

/*****************************************************************
갤러리형 게시판 > 최상단라인 & 기타영역 컬러
*****************************************************************/
.n_board_gallery > table .boxArea > table > tbody > tr > td {
    background-color: #fff;
    vertical-align: top;
    font-size: 14px;
}


.n_board_gallery .boxArea .bbsnewf5{
    border: 1px solid #eee;
    padding: 0;
}



/*****************************************************************
글목록 : 최상단 라인영역
*****************************************************************/
.board_top_line {
    background-color: #368ca5;
    height: 2px;
}


/*****************************************************************
글목록 : 최상단 구분영역
*****************************************************************/
.n_board_txt .board .boardTitBar {
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-size: 0.875em;
    height: 40px;
}

.n_board_txt .board .boardTitBar .att_title {
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 18px;
}

.n_board_txt .boardTitBar td:first-child {
    width: 80px;
}



/*****************************************************************
텍스트형 게시판 : 롤오버 선택컬러
*****************************************************************/
.n_board_txt .tr_line,
.n_board_gallery .tr_line{
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.n_board_txt .tr_line:hover {
    background-color: #eee;
}


/*****************************************************************
글목록 : 행 높이
*****************************************************************/
.n_board_txt .tr_line td {
    font-size: 1.0em;
    padding: 10px 5px;
}


/*****************************************************************
글목록 : 항목들 : 작성자,작성일자,조회수 등
*****************************************************************/
/* 제목 */
.n_board_txt .tr_line td.bbsnewf5 {
   
    width: 40%;
}

/* 기타 : 제목 이외 항목들 */
.n_board_txt .tr_line td:not(.bbsnewf5) {
    font-size: 0.875em;
    color: #888;
    white-space: nowrap;
    text-overflow: ellipsis;

}
 .n_board_txt .tr_line td.bbswriter {

  /*  background-image: url(http://www.koraia.org/bizdemo79551/img/_images/logo-1.png);
    color: rgba(255, 255, 255, 0);
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center; */
    }

.n_board_txt .bbsupload_image {
    width: 100px;
    height: 100px;
    padding: 10px;
}


/*****************************************************************
글 : 첨부파일
*****************************************************************/
.n_board_txt .board_desc div,
.n_board_gallery .board_desc div{
    height: auto !important;
}




/*****************************************************************
글보기 : 이미지사이즈 100%
*****************************************************************/
.n_board_txt #post_area,
.n_board_gallery #post_area{
    width: 100%;
    height: auto;
    padding: 10px 0px 30px;
    border: 1px solid #e5e5e5;
    border-width: 1px 0;
    text-align: left;
    font-family: auto;
    font-size: 18px;
}

.n_board_txt #post_area > img,
.n_board_gallery #post_area > img{
    width: 100% !important;
    height: 100% !important;
}

@media screen and (max-width: 425px) {
    .n_board_txt #post_area img,
    .n_board_gallery #post_area img {
        width: 100% !important;
       
    }
}

/* 하단 목록이미지 */
.n_board_gallery .image_sublist{
    display: none;
}




/*****************************************************************
글보기 : embed : 동영상게시판
*****************************************************************/
.n_board_txt #post_area embed,
.n_board_gallery #post_area embed{
    width: 100%;
    border: 0px solid #f00;
}
@media screen and (max-width: 991px) {
    embed {
        height: 500px;
    }
}
@media screen and (max-width: 768px) {
    embed {
        height: 400px;
    }
}
@media screen and (max-width: 425px) {
    embed {
        height: 250px;
    }
}



/*****************************************************************
글보기 : 에디터 테이블
*****************************************************************/
.board_description table {
    border-collapse: collapse !important;
}
.board_description table,
.board_description tr,
.board_description td {
    border: 1px solid #ccc;
    padding: 3px;
}




/*****************************************************************
셀렉트박스 : 공통
*****************************************************************/
.n_board_txt select,
.n_board_gallery select{
    width: 100px;
    max-width: 100%;
    padding: 3px;
    font-size: 0.875em;
    color: #555;
}


/*****************************************************************
글쓰기 : 하단버튼그룹의 상단여백
*****************************************************************/
.n_board_txt .nbButton,
.n_board_gallery .nbButton{
    margin-top: 30px;
    border: 0px solid #f00;
}


/*****************************************************************
글보기 : 게시물평가기능
*****************************************************************/
.board_rate {
    width: 100%;
}


/*****************************************************************
글보기 : 하단버튼영역
*****************************************************************/

.veiwBottonArea a {
    display: ;
}


/*****************************************************************
카테고리 영역 : 셀렉트박스형
*****************************************************************/
.categoryArea {
    text-align: left;/* left, right, center */
    margin-bottom: 10px;
}

.categoryArea img {
    display: none;
}

.categoryArea b {
    display: none;/* none, inline-block */
    vertical-align: top;/* top, middle, bottom */
    font-weight: normal;
    font-size: 0.875em;
    color: #555;
}

.categoryArea select {
    width: 180px;
    height: 34px;
}


/*****************************************************************
카테고리 영역 : 탭버튼형(가로노출형)
*****************************************************************/
.sul_menu {
    overflow: hidden;
    zoom: 1;
    margin: 0 0 30px;
    padding: 20px 10px;
    border: 1px solid #ccc;
}
.sul_menu a,
.sul_menu a font {
/*    vertical-align: middle;*/
    font-family: 'Noto Sans KR';
    font-size: 13px !important;
    padding: 0 0 0 3px;
}
.sul_menu a:hover,
.sul_menu a font:hover {
    color: #d80000 !important;
}
.sul_menu a.on {
    color: #d80000;
}
.sul_menu img  {
    padding: 0 0 5px 5px;
    display: none;
}


/*****************************************************************
게시판 : 페이징
*****************************************************************/
.paging {
    font-size: 0.875em;
}

.paging b {
    display: inline-block;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 3px 8px;
    text-align: center;
    font-weight: normal;
    color: #000;
}

.paging a {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 3px 8px;
    text-align: center;
    color: #888;
}



/*****************************************************************
댓글영역 : 이름,내용,시간
*****************************************************************/
.commentArea {
    font-size: 0.875em;
    color: #888;
    border: 1px solid #eee !important;
}

.comment_name {
    width: 150px !important;
}

.comment_view {
/*    width: auto;*/
    overflow-x: hidden;
    padding: 10px;
}

.comment_hour {
    width: 100px;
    padding: 3px 0;
}

@media (max-width:991px) {
 .n_board_txt .tr_line td.bbswriter {
       background-size: 60px;
    }
}

@media (max-width:768px) {
    
    /*****************************************************************
    텍스트형 게시판 : 노출항목 & 목록사이즈
    *****************************************************************/
    .n_board_txt .board .boardTitBar{
        display: none;
    }
    
    .n_board_txt .tr_line td:not(.bbsetc_add4){
         display: none;
    }
    
    /*****************************************************************
    글목록 : 노출항목
    *****************************************************************/
    .n_board_txt .tr_line td.bbschk {
        position: absolute;
        left: 5px;
        display: inline-block;
    }
    
    .n_board_txt .tr_line td.bbsno {
        width: 15%;
        display: inline-block;
        float: left;
    }
    
    .n_board_txt .tr_line td.bbsnewf5 {
        width: 80%;
        display: inline-block;
        margin-top: -1px;
        float: left;
/*
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
*/
    }
    
    .n_board_txt .tr_line td.bbswriter {
        width: 25%;
        display: inline-block;
       float: right;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      
    }
    
    
    /*****************************************************************
    갤러리형 게시판 : 목록이미지
    *****************************************************************/
      .n_board_gallery tbody tr td[width="33%"] {
         width: 100% !important;
        max-width: none !important;
        display: block;
         }

     .n_board_gallery  .boxArea {
        width: auto !important;
     }
   
    .n_board_gallery .nSize img{
        height: auto !important;
        width: 100% !important;
    }
    

    /*****************************************************************
    댓글영역 : 이름,내용,시간
    *****************************************************************/
    .comment_name {
        width: 150px;
        display: block;
        border: 0px solid #f00;
    }
    
    .comment_view {
/*        width: 100px;*/
        display: block;
        border: 0px solid #f00;
    }
    
    .comment_hour {
        width: 100px;
        border: 0px solid #f00;
    }
    
}


/*****************************************************************
카테고리 영역 : 셀렉트박스형
*****************************************************************/
.categoryArea {
    text-align: left;/* left, right, center */
    margin-bottom: 10px;
}

.categoryArea img {
    display: none;
}

.categoryArea b {
    display: none;/* none, inline-block */
    vertical-align: top;/* top, middle, bottom */
    font-weight: normal;
    font-size: 0.875em;
    color: #555;
}

.categoryArea select {
    width: 180px;
    height: 34px;
}


/*****************************************************************
카테고리 영역 : 탭버튼형(가로노출형)
*****************************************************************/
.sul_menu {
    overflow: hidden;
    zoom: 1;
    margin: 0 0 30px;
    padding: 20px 10px;
    border: 1px solid #ccc;
}
.sul_menu a,
.sul_menu a font {
/*    vertical-align: middle;*/
    font-family: 'Noto Sans KR';
    font-size: 13px !important;
    padding: 0 0 0 3px;
}
.sul_menu a:hover,
.sul_menu a font:hover {
    color: #d80000 !important;
}
.sul_menu a.on {
    color: #d80000;
}
.sul_menu img  {
    padding: 0 0 5px 5px;
    display: none;
}








/*****************************************************************
추출게시물 : 공통
*****************************************************************/
/**/
.nav-tabs {
    margin: 0 0 8px;
}
.nav-tabs > li {
    margin-top: 2px;
}

/**/
.n_output {
    position: relative;
    font-size: 1.0em;
    padding-bottom: 20px;
}

.n_output h3 {
    height: 40px;
    margin: 2px 0 8px;
    padding: 15px 5px 10px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: 1.0em;
}

.n_output span.more {
    position: absolute;
    top: 12px;
    right: 0px;
    font-size: 0.875em;
}
.tab-content .n_output span.more {
    position: absolute;
    top: -36px;
    right: 0px;
    font-size: 0.875em;
}

.n_output table {
    width: 100%;
}


/*****************************************************************
추출게시물 : 텍스트형
*****************************************************************/
.n_output_txt .board_output {
    text-align: left;
}


/* 추출게시물 : 게시글 상하줄간격 */
.n_output_txt .board_output .board_output tbody > tr > td {
    padding: 3px 0;
    height: 36px;
    font-size: 1.0em;
    border-bottom: 1px dotted #ccc;
}

.n_output_txt .board_output tbody > tr > td:nth-child(3) {
    
    font-size: 0.875em;
    color: #888;
    line-height: normal;
}

.n_output_txt .board_output img {
    display: none;
}




/*****************************************************************
추출게시물 : 갤러리형
*****************************************************************/
.n_output_gallery, .n_output_gallery2{
    padding: 0px 0px 20px 0px;
}
.n_output_gallery .board_output {
    text-align: center;
}


/* 갤러리형 : 게시물 칸칸수 (관리자설정페이지 설정값 적용) */
.n_output_gallery .board_output > tbody > tr > td{
    padding: 5px 3px 5px;
    vertical-align: top;
   
}


/* 갤러리형 : 텍스트정보 */
.n_output_gallery .board_output > tbody > tr > td span a{
    display: inline-block;
    padding: 5px;
    line-height: 140%;
    font-size: 1.0em;
    color: #555;
}


/* 갤러리형 : 배경컬러 (마우스오버시 보임) */
.n_output_gallery .board_output .board_output_gallery_img{
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 170px;
}


/* 갤러리형 : 이미지사이즈 */
.n_output_gallery .board_output .board_output_gallery_img .board_output_imgs{
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    
    height: 170px !important;
}


/* 갤러리형 : 마우스오버시 투명도 */
.n_output_gallery .board_output .board_output_gallery_img .board_output_imgs:hover{
    opacity: 0.5;
}


@media screen and (max-width: 768px) {
    .n_output_gallery .board_output > tbody > tr > td {
        display: block;
        width: 100%;
        padding: 0 0 30px;
    }
    .n_output_gallery .board_output .board_output_gallery_img .board_output_imgs{
        height: auto !important;
        max-width: 100% !important;
        width: 600px;
    }
    
}




/*****************************************************************
스팸등록방지 : 게시판 & 폼메일
*****************************************************************/
.captcha td {
    padding: 10px !important;
    font-size: 0.875em;
    border: 0px solid #f00;
}

.captcha td:first-child {
    background-color: #f7f7f7;
}

.captcha td img {
    max-width: 100%;
    display: inline-block;
}

.captcha input[name=captcha_code] {
    width: auto !important;
    height: 36px;
}

/**/
.comment_txt {
    background-color: #fff !important;
    padding: 10px 0 !important;
    width: 1000px;
}
.comment_txt input[type=text],
.comment_txt input[type=password],
.comment_txt input[name=captcha_code] {
    height: 36px;
    border: 1px solid #ccc;
}

.comment_txt input[name=com_board_comment_name],
.comment_txt input[name=com_board_comment_password] {
    width: 100px;
}

.comment_txt > div {
    width: 100%;
    margin: 5px 0;
    text-align: left !important;
}



@media screen and (max-width: 768px) {
    .comment_txt {
        width: 100%;
    }
}





