@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Noto Sans KR', sans-serif;    
    color: #000;
    font-size: 18px;
    font-weight:300;
    word-break: keep-all;
}

a { color: inherit;}
a:hover { color: #144ea2; text-decoration:none;}

h1, h2, h3, h4, h5, h6 { }

h2 {font-size: 38px;line-height: 38px;}

@media (max-width: 1200px) {
  h2 {font-size: 30px;line-height: 30px;}  
}


h3 {font-size: 1.75rem;line-height: 1.75rem;}
h4 {font-size: 1.5rem;line-height: 1.5rem;}


p {font-size:18px;line-height:24px;}
p.lead-text {font-size:20px;line-height:26px;}
p.small-text {font-size:16px;line-height:22px;}

strong, bold{font-weight: 600;}
strong, semiBold{font-weight: 500;}

.text-blue {color: #144ea2;}
.text-red {color: #cc0000;}
.text-yellow {color: #ffdd00;}
.text-light-grey {color: #f2f2f2;}
.text-grey {color:#6c757d;}

.bg-blue {background-color: #144ea2;}
.bg-red {background-color: #cc0000;}
.bg-yellow {background-color: #ffdd00;}
.bg-grey {background-color: #f2f2f2;}

.number{
    width:30px;
    height:30px;
    border-radius:999px;
    display:inline-block;
    font-size:18px;
    line-height:30px;
    background:#144ea2;
    color:#fff;
    text-align: center;
}

.btn-outline-yellow{
  font-size:32px;
    line-height:32px;
    padding:15px 35px;
    border:2px solid #ffdd00;
    background:transparent;
    color:#ffdd00;
    border-radius:999px;
    font-weight:600;
}

.btn-outline-yellow:hover{
    background:#ffdd00;
    color:#000;
    border:2px solid #ffdd00;
}

.btn-outline-blue{
  font-size:32px;
    line-height:32px;
    padding:15px 35px;
    border:2px solid #144ea2;
    background:transparent;
    color:#144ea2;
    border-radius:999px;
    font-weight:600;
}

.btn-outline-blue:hover{
    background:#144ea2;
    color:#fff;
    border:2px solid #144ea2;
}

.border-outline-blue{
    border:1px solid #144ea2;
    border-radius:30px;
    padding:30px 15px;
}

.border-outline-blue-ex{
    border:1px solid #144ea2;
    border-radius:30px;
    padding:30px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #37517e;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 999;
}

.back-to-top i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #9dc545;
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #144ea2;
    color: #fff;
}


/*--------------------------------------------------------------
# Print
--------------------------------------------------------------*/

.print ul, .print ol{
    margin:0;
    padding:0;
}

.print ul li, .print ol li{
    margin-left:25px;
    margin-bottom:10px;
    margin-top:10px
}

.print .form-check-input{
    
    margin-top:5px;
    width:20px;
    height:20px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 1px 23px -8px rgba(0, 0, 0, 0.34);
    box-shadow: 0px 1px 23px -8px rgba(0, 0, 0, 0.34);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #9dc545;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 600;    
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: #144ea2;  
}

.nav-menu .drop-down ul {
    border-radius: 8px;
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #0c3c53;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: #47b2e4;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Get Startet Button */
.get-started-btn {
    margin-left: 25px;
    color: #fff;
    border-radius: 50px;
    padding: 6px 25px 7px 25px;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.get-started-btn:hover {
    background: #31a9e1;
    color: #fff;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 20px 7px 20px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #333;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    -webkit-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #9dc545;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #144ea2;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 58, 90, 0.6);
    overflow: hidden;
    display: none;
    -webkit-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}



/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/


label {
    font-size:14px;
    font-weight:600;
    margin-bottom:15px
}

.policy label{
    font-size:24px;
    line-height:30px;
    font-weight:500;
}

.form-check-input{
    margin-top:10px;
    width:20px;
    height:20px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    height: 655px;
    background: #f2f2f2;
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 58px;
    font-weight: 600;
    line-height: 64px;
    color: #000;
     
}

#hero h2 {
    color: rgba(0, 0, 0, 1);
    margin-bottom: 50px;
    font-size: 32px;
    line-height: 32px;
}

#hero .brandTag{
    /*
    border-top:3px solid #9dc545;
    border-bottom:3px solid #9dc545;
    */
    padding-top:10px;
    padding-bottom:10px;
    display:block;
    color:#000;
    font-size:19px;
    line-height:25px
}

#hero .btn-get-started {
    /* font-family: 'Noto Sans KR', sans-serif; */
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 10px 0 0 0;
    background: rgba(255, 221, 0, 1);
    padding-left: 50px;
    padding-right: 50px;
}

#hero .btn-get-started:hover {
    background: rgba(20, 78, 162, 1);
    color:#fff;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 0 8px 40px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    position: relative;
}

#hero .btn-watch-video i {
    color: #fff;
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 7px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#hero .btn-watch-video:hover i {
    color: #47b2e4;
}

#hero .animated {
    -webkit-animation: up-down 2s ease-in-out infinite alternate-reverse both;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 1200px) {
    #hero h1 {
        font-size: 36px;
        line-height: 42px;
    }

    #hero h2 {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }

    #hero .btn-watch-video {
        font-size: 16px;
        padding: 10px 0 8px 40px;
        margin-left: 20px;
    }

    #hero .btn-watch-video i {
        font-size: 32px;
        top: 7px;
    }
}

@-webkit-keyframes up-down {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 52px;
    line-height: 52px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top:10px;
    position: relative;
    color: #134a9a;
}

@media (max-width: 1200px) {
  .section-title h2 {
        font-size: 36px;
        line-height: 36px;        
    }  
}

.section-title h2::before {   
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #ffdd00;
    bottom: 0;
    left: calc(50% - 20px);
}

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



/*--------------------------------------------------------------
# Event Benefit
--------------------------------------------------------------*/

.event-benefit{
    width:200px; 
    background:#144ea2;
    padding:85px 15px 20px 15px;
    position:relative; 
    border-radius:8px;
}

.event-number{
    width:80px;
    height:65px;
    position:absolute;
    font-size:14px;
    line-height:14px;  
    top:0;
    left:0;
    color:#000;
    text-align: center;
    background:#ffdd00;
    padding:10px;
    font-weight:600
}
.event-number span{
    font-size:30px;
    line-height:30px;    
}


.event-benefit-m{
    width:100%; 
    background:#144ea2;
    padding:85px 15px 20px 15px;
    position:relative;    
}

.event-number-m{
    width:80px;
    height:65px;
    position:absolute;
    font-size:14px;
    line-height:14px;  
    top:0;
    left:0;
    color:#000;
    text-align: center;
    background:#ffdd00;
    padding:10px;
    font-weight:600
}
.event-number-m span{
    font-size:30px;
    line-height:30px;    
}



/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/

.process{
    width:255px; 
    background:#144ea2;
    padding:85px 15px 20px 15px;
    position:relative;    
    border-radius:8px;
}

.process-number{
    width:80px;
    height:65px;
    position:absolute;
    font-size:14px;
    line-height:14px;  
    top:0;
    left:0;
    color:#000;
    text-align: center;
    background:#ffdd00;
    padding:10px;
    font-weight:600
}
.process-number span{
    font-size:30px;
    line-height:30px;    
}



/*--------------------------------------------------------------
# Service-Info
--------------------------------------------------------------*/
.service-info .icon-box {
    -webkit-box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    background: #fff;
    width: 100%;
}

.service-info .icon-box .icon {
    margin-bottom: 10px;
}

.service-info .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.service-info .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-info .icon-box h4 a {
    color: #37517e;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
}

.service-info .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.service-info .icon-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.service-info .icon-box:hover h4 a {
    color: #47b2e4;
}


/* 특장점 */
.superBenefit{
    border-radius:8px;
    border-top-left-radius: 0;
    background:#f2f2f2;
    position:relative;   
    padding:30px;
    margin-bottom:30px;
    font-size:24px;
    line-height:30px;
    font-weight:500; 
    min-height:200px;
}

.superBenefit img{
    position:absolute;
    bottom:30px;
    right:30px;    
}


/*--------------------------------------------------------------
# procedure
--------------------------------------------------------------*/
.procedure .icon-box {
    -webkit-box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

.procedure .icon-box .icon {
    margin-bottom: 10px;
}

.procedure .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.procedure .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.procedure .icon-box h4 a {
    color: #37517e;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
}

.procedure .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.procedure .icon-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.procedure .icon-box:hover h4 a {
    color: #47b2e4;
}


/*--------------------------------------------------------------
# 이용 절차 및 안내서
--------------------------------------------------------------*/

.how-to-use{
    
}

.how-to-use ol {
    margin:0;
    padding:0;
    padding-left:25px;
}

.how-to-use ol > li {
    margin-bottom:15px;
}

.how-to-use ol li ul li{
    margin-top:5px;
}







/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 78, 162, 0.9)), to(rgba(20, 78, 162, 0.9))), url("../img/cta-consult.jpg") fixed center center;
    background: linear-gradient(rgba(20, 78, 162, 0.9), rgba(20, 78, 162, 0.9)), url("../img/cta-consult.jpg") fixed center center;
    
    background-size: cover;
    padding: 120px 0;
}

.cta-yellow {
    
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 221, 0, 0.9)), to(rgba(255, 221, 0, 0.9))), url("../img/cta-partner.jpg") fixed center center;
    background: linear-gradient(rgba(255, 221, 0, 0.9), rgba(255, 221, 0, 0.9)), url("../img/cta-partner.jpg") fixed center center;
    
    background-size: cover;
    padding: 120px 0;
}




.cta-yellow h2 {
    
    font-size: 38px;
    line-height:46px;
    font-weight: 600;
}

.cta-blue h2 {
    
    font-size: 58px;
    line-height:66px;
    font-weight: 500;
}

.cta-blue p, .cta-blue p {
    
    font-weight:300;
}


.cta-yellow ul, .cta-blue ul{
    
}

.cta-yellow ul li, .cta-blue ul li{
    list-style: none;
    margin-bottom:10px;
}

.cta-yellow ul li, .cta-blue ul li{
    list-style: none;
    margin-bottom:10px;
}

.cta-yellow ul li span, .cta-blue ul li span{
    
}




.cta .cta-btn {

    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}



/*--------------------------------------------------------------
# Cta - free consulting
--------------------------------------------------------------*/
.cta-free-consulting {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(40, 58, 90, 0.9)), to(rgba(40, 58, 90, 0.9))), url("../img/cta-bg.jpg") fixed center center;
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), 
    background-size: cover;
    
}


.cta-free-consulting h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
}

.cta-free-consulting h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.cta-free-consulting p {
    color: #fff;
    font-weight:300;
}

.cta-free-consulting .cta-free-consulting-btn {

    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta-free-consulting .cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
    .cta-free-consulting {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta-free-consulting .cta-btn-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}



@-webkit-keyframes animate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@keyframes animate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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


/*--------------------------------------------------------------
# 가입신청
--------------------------------------------------------------*/

.application textarea{
    white-space: pre-line;
}


.application label{
    font-size:18px;
    line-height:18px;
    font-weight:400;
}


.application .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.application .info i {
    font-size: 20px;
    color: #47b2e4;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.application .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}

.application .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}

.application .info .email p {
    padding-top: 5px;
}

.application .info .social-links {
    padding-left: 60px;
}

.application .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-right: 10px;
}

.application .info .social-links a:hover {
    background: #47b2e4;
    color: #fff;
}

.application .info .email:hover i,
.application .info .address:hover i,
.application .info .phone:hover i {
    background: #47b2e4;
    color: #fff;
}

.application .php-email-form {
    width: 100%;
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.application .php-email-form .form-group {
    padding-bottom: 8px;
}

.application .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.application .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.application .php-email-form .error-message br + br {
    margin-top: 25px;
}

.application .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.application .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.application .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.application .php-email-form input,
.application .php-email-form textarea {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.application .php-email-form input:focus,
.application .php-email-form textarea:focus {
    border-color: #47b2e4;
}

.application .php-email-form input {
    height: 44px;
}

.application .php-email-form textarea {
    padding: 10px 12px;
}

.application .php-email-form button[type="submit"] {
    background: #47b2e4;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50px;
}

.application .php-email-form button[type="submit"]:hover {
    background: #209dd8;
}

@-webkit-keyframes animate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@keyframes animate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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




/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.form-control {
    border:1px solid #000;
}

.input-group-text{
    border:1px solid #000;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #333333;
    color:#f2f2f2;
    padding:70px 0;
}

#footer p {
    font-size:14px;
    line-height:22px;
    margin-bottom:5px;
    font-weight:300;
}

#footer a {
    color:inherit;
}

#footer a:hover {
    color:#ffffff;
    text-decoration:underline;
}

