@charset "utf-8";

@import url("https://fonts.googleapis.com/css?family=Open+Sans");
*{
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
body{
    
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,h6,p,span,ul,li,a,body,button{
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 100%;
}
ul,li,ol{
    list-style: none;
}
a{
    text-decoration: none;
    color: #555;
}
img{
    vertical-align: middle;
    border: 0;
}

/* pc view display : none; */
#nav-mobile{
    display: none;
}


#wrapper{
    width: 100%;
    height: 100%;
 }

header .container {
    padding: 0px 15px 0px 15px;
  }
  @media (min-width: 0) {
      header .container {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    header .container:after {
      content: " ";
      display: block;
      clear: both;
    }
  }
  @media (min-width: 576px) {
      header .container {
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }
    header .container:after {
      content: " ";
      display: block;
      clear: both;
    }
  }
  @media (min-width: 768px) {
      header .container {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    header .container:after {
      content: " ";
      display: block;
      clear: both;
    }
  }
  @media (min-width: 992px) {
      header .container {
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }
    header  .container:after {
      content: " ";
      display: block;
      clear: both;
    }
  }
  @media (min-width: 1200px) {
      header  .container {
      max-width: 1170px;
      margin-left: auto;
      margin-right: auto;
    }
    header  .container:after {
      content: " ";
      display: block;
      clear: both;
    }
  }
  
  
  header a {
    text-decoration: none;
    color: rgba(34, 34, 34, 0.8);
  }
  header a:hover, header a :focus {
    color: black;
  }
  
  .menu-left a {
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    transition: color .35s ease;
  }
  .menu-left a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    transition: width 0s ease, background .35s ease;
  }
  .menu-left a:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #000;
    transition: width .35s ease;
  }
  .menu-left a:hover:before {
    width: 100%;
    background: #000;
    transition: width .35s ease;
  }
  .menu-left a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: .5rem 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 3;
    will-change: transform;
    transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
    transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  header nav .logo {
    float: left;
    padding-top: .25rem;
    padding-bottom: .25rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    font-weight: 500;
    color: black;
  }
  header nav .logo:after {
    content: '';
    display: table;
    clear: both;
  }
  header nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  header nav ul li {
    float: none;
    margin-left: 0;
  }
  @media (min-width: 768px) {
    header nav ul li {
      float: left;
      margin-left: 1rem;
    }
  }
  header nav ul li a {
    display: block;
  }
  @media (min-width: 576px) {
    header nav ul li a {
      display: block;
      padding: .425rem 0rem;
    }
  }
  
  @media (max-width: 768px) {
    ul {
      clear: both;
    }
    ul li {
      padding: .5em 0;
    }
  }
  .hide-nav {
    transform: translateY(-120% !important);
    -webkit-transform: translateY(-120%) !important;
  }
  
  ul.menu-left {
    display: block;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
  }
  @media (min-width: 768px) {
    ul.menu-left {
      display: block !important;
      float: right;
      max-height: none;
    }
  }
  ul.menu-left:before {
    content: '';
    display: table;
    clear: both;
  }
  ul.menu-left.collapse {
    max-height: 15em !important;
  }
  
  .nav-toggle {
    display: block;
    border-radius: 5px;
    background-color: transparent;
    float: right;
    height: 38px;
    width: 38px;
    cursor: pointer;
    padding: 8px 8px;
  }
  .nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(4.4px, 4.4px);
  }
  .nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  .nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(4.4px, -4.4px);
  }
  @media (min-width: 768px) {
    .nav-toggle {
      display: none;
    }
  }
  .nav-toggle span {
    position: relative;
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 4px;
    background-color: #000;
    transition: all .25s;
  }
  
  .signature {
    position: fixed;
    font-weight: 100;
    bottom: 10px;
    color: #000;
    left: 0;
    letter-spacing: 4px;
    font-size: 10px;
    width: 100vw;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
  }
/* intro style sheet */

.container{
    width: 1300px;
    height: inherit;
    margin: auto;
    position: relative;
    border: 1px solid transparent;
}


/* faq contet*/


#contact-section{
    width: 100%;
    height: 550px;
    background:url(../images/background/content_bg.png) no-repeat;
    background-position: center;
    background-size: 100%;
    overflow: hidden;
}
#contact-section .container{
    height: 262px;
    padding-top: 130px;
}
#contact-section .container>img{
    margin: auto;
    text-align: center;
    display: block;
}
#contact-section .container h1{
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    display: block;
}
#contact-section .container h1 span{
    color: #FFE353;
}
#contact-section .container p{
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -1px;
    padding-top: 25px;
}
#contact-section .container a{
    width: 500px;
    height: 67px;
    text-align: center;
    color: #222222;
    display: block;
    box-sizing: border-box;
    border-radius: 20px;  
    background-color: #FFE353;
    font-size: 25px;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 67px;
    margin:50px auto;
    z-index: 5555;
    position: relative;

}
main #sub_page{
    width: 100%;
    height: 4126px;
    position: relative;
    background: url(../images/background/bg_sub.png) no-repeat;
    background-size: cover;
    background-position: center;
}
main #sub_page > .container{
    width: 1000px;
    height: 3655px;
    position: relative;
    top: 400px;
}
main #sub_page > .container .section p{
    padding-top: 15px;
    letter-spacing: -1px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}

main #sub_page > .container .section1{
    width: 100%;
    height: 118px;
}
main #sub_page > .container .section1 h1{
    display: block;
    width: 255px;
    height: 58px;
    font-size: 32px;
    color: #FF4356;
    font-weight: 700;
    letter-spacing: -1px;
    border-bottom: 1px solid #FF4356;
    text-align: left;
    position: relative;
   
}

main #sub_page > .container .section1 h1 .bottom_line{
    width: 40px;
    height: 5px;
    background-color: #FF4356;
    position: absolute;
    bottom: -5px;
    left: -1px;
}

main #sub_page > .container .section2{
    width: 100%;
    height: 412px;
    margin-top: 80px;
    position: relative;
}
main #sub_page > .container .section{
    position: relative;
}
main #sub_page > .container .section .nomber{
    position: absolute;
    top: 0;
    left: -10px;
    font-size: 50px;
    color: #FF4356;
    display: block;
    line-height: 1;
    font-family: 'GmarketSansMedium';
}
main #sub_page > .container .section .text-container{
    width: 957px;
    height: 100%;
    float: right;
}
main #sub_page > .container .section{
   
}
main #sub_page > .container .section p{
    color: #484848;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.5;
}
main #sub_page > .container .section .text-container{
    
}
main #sub_page > .container .section .text-container h2{
    font-size: 20px;
    color: #222222;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}
main #sub_page > .container .section .text-container h3{
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    line-height: 1;
    display: block;
    padding-top: 27px;
}
main #sub_page > .container .section .text-container p{
    padding-top: 5px;
}

/*footer*/

footer{
  width: 100%;
  height: auto;
  background-color: #444;
  position: relative;
  z-index: 999;

}
.container2{width: 1300px; margin: 0 auto;}
footer .foot_menu{
  width: 100%;
  height: 70px;
  line-height: 70px;
  color: #ffffff;
  border-bottom: 1px solid #666;
  }
footer .foot_menu ul{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 70px;
}
footer .foot_menu ul li{
  float: left;
  margin-right: 25px;
}
footer .foot_menu ul li:last-child{margin-right: 0;}
footer .foot_menu ul li a{
  cursor: pointer;
  color: #ffffff;
  font-size: 400;
  letter-spacing: -1px;
  padding-top: 1px;
}
footer .foot_menu ul li:hover a{
color: #FFE353;
}
footer .sns_button{
  width: 100%;
  height: 50px;
  margin-top: 30px;
}
footer .sns_button ul{
  width: 215px;
  height: 40px;
  margin: 0 auto;
}
footer .sns_button ul li{
  float: left;
  width: 35px;
  height: 35px;
  display: block;
  cursor: pointer;
  margin-right: 8px;   
}
footer .sns_button ul li a{
  width: 100%;
  height: 100%;
  display: block;
}
footer .sns_button svg{
width:35px; 
height:35px; 
fill:#ffffff;
}
footer .sns_button svg:hover{
fill:#FFE353;
}
footer .ad{
  width: 100%;
  height: 60px;
  font-size: 15px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 300;
  text-align: center;
}
footer .foot_mark{
  width: 100%;
  height: 90px;
}
footer .foot_mark ul{
  width: 460px;
  height: 50px;
  margin: 0 auto;
}
footer .foot_mark ul li{
  float: left;
  width: 130px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-right: 50px;
  opacity: 0.3;
}
footer .foot_mark ul li:last-child{margin-right:0;}
footer .foot_mark ul li:hover{opacity:1;}





main #sub_page > .container .section2{
    margin-top: 60px;
    width: 100%;
    height: 415px;
    position: relative;
}
main #sub_page > .container .section3{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 350px;
}
main #sub_page > .container .section4{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 710px;
}
main #sub_page > .container .section5{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 310px;
}
main #sub_page > .container .section6{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 80px;
}
main #sub_page > .container .section7{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 405px;
}
main #sub_page > .container .section8{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 180px;
}
main #sub_page > .container .section9{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 280px;
}
main #sub_page > .container .section10{
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 260px;
}
.fa-circle{
    font-size: 5px;
    padding: 5px;
    line-height: 1;
    position: relative;
    top:-4px;
}
.text-container .pd-15{
    padding-top: 15px;
}
.text-container .pd-30{
    padding-top: 30px;
}